From e8015bfbd4f8e24faa0fd21917b150defcb17a82 Mon Sep 17 00:00:00 2001 From: oogm Date: Mon, 15 Mar 2021 00:19:04 +0100 Subject: [PATCH 1/6] Update emoji_picker_datasource.json to Unicode 13.1 and dynamically filter reactions by renderability --- CHANGES.md | 1 + .../reactions/data/EmojiDataSourceTest.kt | 8 ++--- .../reactions/data/EmojiDataSource.kt | 29 ++++++++++++++++--- .../main/res/raw/emoji_picker_datasource.json | 2 +- 4 files changed, 30 insertions(+), 10 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index e4ff049550..c6f98124d1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -41,6 +41,7 @@ Improvements 🙌: - Sending is now queuing by room and not uniquely to the session - Improve Snackbar duration (#2929) - Improve sending message state (#2937) + - Update reactions to Unicode 13.1 (#1481) Bugfix 🐛: - Try to fix crash about UrlPreview (#2640) diff --git a/vector/src/androidTest/java/im/vector/app/features/reactions/data/EmojiDataSourceTest.kt b/vector/src/androidTest/java/im/vector/app/features/reactions/data/EmojiDataSourceTest.kt index 8959416445..79090c42dd 100644 --- a/vector/src/androidTest/java/im/vector/app/features/reactions/data/EmojiDataSourceTest.kt +++ b/vector/src/androidTest/java/im/vector/app/features/reactions/data/EmojiDataSourceTest.kt @@ -42,17 +42,15 @@ class EmojiDataSourceTest : InstrumentedTest { @Test fun checkNumberOfResult() { val emojiDataSource = EmojiDataSource(context().resources) - - assertEquals("Wrong number of emojis", 1545, emojiDataSource.rawData.emojis.size) - assertEquals("Wrong number of categories", 8, emojiDataSource.rawData.categories.size) - assertEquals("Wrong number of aliases", 57, emojiDataSource.rawData.aliases.size) + assertTrue("Wrong number of emojis", emojiDataSource.rawData.emojis.size >= 500) + assertTrue("Wrong number of categories", emojiDataSource.rawData.categories.size >= 8) } @Test fun searchTestEmptySearch() { val emojiDataSource = EmojiDataSource(context().resources) - assertEquals("Empty search should return 1545 results", 1545, emojiDataSource.filterWith("").size) + assertTrue("Empty search should return at least 500 results", emojiDataSource.filterWith("").size >= 500) } @Test diff --git a/vector/src/main/java/im/vector/app/features/reactions/data/EmojiDataSource.kt b/vector/src/main/java/im/vector/app/features/reactions/data/EmojiDataSource.kt index 891f083644..97f85ea1f5 100644 --- a/vector/src/main/java/im/vector/app/features/reactions/data/EmojiDataSource.kt +++ b/vector/src/main/java/im/vector/app/features/reactions/data/EmojiDataSource.kt @@ -16,6 +16,8 @@ package im.vector.app.features.reactions.data import android.content.res.Resources +import android.graphics.Paint +import androidx.core.graphics.PaintCompat import com.squareup.moshi.Moshi import im.vector.app.R import javax.inject.Inject @@ -25,6 +27,7 @@ import javax.inject.Singleton class EmojiDataSource @Inject constructor( resources: Resources ) { + private val paint = Paint() val rawData = resources.openRawResource(R.raw.emoji_picker_datasource) .use { input -> Moshi.Builder() @@ -34,18 +37,32 @@ class EmojiDataSource @Inject constructor( } ?.let { parsedRawData -> // Add key as a keyword, it will solve the issue that ":tada" is not available in completion + // Only add emojis to emojis/categories that can be rendered by the system parsedRawData.copy( emojis = mutableMapOf().apply { parsedRawData.emojis.keys.forEach { key -> val origin = parsedRawData.emojis[key] ?: return@forEach // Do not add keys containing '_' - if (origin.keywords.contains(key) || key.contains("_")) { - put(key, origin) - } else { - put(key, origin.copy(keywords = origin.keywords + key)) + if (isEmojiRenderable(origin.emoji)) { + if (origin.keywords.contains(key) || key.contains("_")) { + put(key, origin) + } else { + put(key, origin.copy(keywords = origin.keywords + key)) + } } } + }, + categories = mutableListOf().apply { + parsedRawData.categories.forEach { entry -> + add(EmojiCategory(entry.id, entry.name, mutableListOf().apply { + entry.emojis.forEach { e -> + if (isEmojiRenderable(parsedRawData.emojis[e]!!.emoji)) { + add(e) + } + } + })) + } } ) } @@ -53,6 +70,10 @@ class EmojiDataSource @Inject constructor( private val quickReactions = mutableListOf() + private fun isEmojiRenderable(emoji: String): Boolean { + return PaintCompat.hasGlyph(paint, emoji) + } + fun filterWith(query: String): List { val words = query.split("\\s".toRegex()) diff --git a/vector/src/main/res/raw/emoji_picker_datasource.json b/vector/src/main/res/raw/emoji_picker_datasource.json index 431b7d420c..bf33808f2f 100644 --- a/vector/src/main/res/raw/emoji_picker_datasource.json +++ b/vector/src/main/res/raw/emoji_picker_datasource.json @@ -1 +1 @@ -{"compressed":true,"categories":[{"id":"people","name":"Smileys & People","emojis":["grinning","grin","joy","rolling_on_the_floor_laughing","smiley","smile","sweat_smile","laughing","wink","blush","yum","sunglasses","heart_eyes","kissing_heart","kissing","kissing_smiling_eyes","kissing_closed_eyes","relaxed","slightly_smiling_face","hugging_face","star-struck","thinking_face","face_with_raised_eyebrow","neutral_face","expressionless","no_mouth","face_with_rolling_eyes","smirk","persevere","disappointed_relieved","open_mouth","zipper_mouth_face","hushed","sleepy","tired_face","sleeping","relieved","stuck_out_tongue","stuck_out_tongue_winking_eye","stuck_out_tongue_closed_eyes","drooling_face","unamused","sweat","pensive","confused","upside_down_face","money_mouth_face","astonished","white_frowning_face","slightly_frowning_face","confounded","disappointed","worried","triumph","cry","sob","frowning","anguished","fearful","weary","exploding_head","grimacing","cold_sweat","scream","flushed","zany_face","dizzy_face","rage","angry","face_with_symbols_on_mouth","mask","face_with_thermometer","face_with_head_bandage","nauseated_face","face_vomiting","sneezing_face","innocent","face_with_cowboy_hat","clown_face","lying_face","shushing_face","face_with_hand_over_mouth","face_with_monocle","nerd_face","smiling_imp","imp","japanese_ogre","japanese_goblin","skull","skull_and_crossbones","ghost","alien","space_invader","robot_face","hankey","smiley_cat","smile_cat","joy_cat","heart_eyes_cat","smirk_cat","kissing_cat","scream_cat","crying_cat_face","pouting_cat","see_no_evil","hear_no_evil","speak_no_evil","baby","child","boy","girl","adult","man","woman","older_adult","older_man","older_woman","male-doctor","female-doctor","male-student","female-student","male-teacher","female-teacher","male-judge","female-judge","male-farmer","female-farmer","male-cook","female-cook","male-mechanic","female-mechanic","male-factory-worker","female-factory-worker","male-office-worker","female-office-worker","male-scientist","female-scientist","male-technologist","female-technologist","male-singer","female-singer","male-artist","female-artist","male-pilot","female-pilot","male-astronaut","female-astronaut","male-firefighter","female-firefighter","cop","male-police-officer","female-police-officer","sleuth_or_spy","male-detective","female-detective","guardsman","male-guard","female-guard","construction_worker","male-construction-worker","female-construction-worker","prince","princess","man_with_turban","man-wearing-turban","woman-wearing-turban","man_with_gua_pi_mao","person_with_headscarf","bearded_person","person_with_blond_hair","blond-haired-man","blond-haired-woman","man_in_tuxedo","bride_with_veil","pregnant_woman","breast-feeding","angel","santa","mrs_claus","mage","female_mage","male_mage","fairy","female_fairy","male_fairy","vampire","female_vampire","male_vampire","merperson","mermaid","merman","elf","female_elf","male_elf","genie","female_genie","male_genie","zombie","female_zombie","male_zombie","person_frowning","man-frowning","woman-frowning","person_with_pouting_face","man-pouting","woman-pouting","no_good","man-gesturing-no","woman-gesturing-no","ok_woman","man-gesturing-ok","woman-gesturing-ok","information_desk_person","man-tipping-hand","woman-tipping-hand","raising_hand","man-raising-hand","woman-raising-hand","bow","man-bowing","woman-bowing","face_palm","man-facepalming","woman-facepalming","shrug","man-shrugging","woman-shrugging","massage","man-getting-massage","woman-getting-massage","haircut","man-getting-haircut","woman-getting-haircut","walking","man-walking","woman-walking","runner","man-running","woman-running","dancer","man_dancing","dancers","man-with-bunny-ears-partying","woman-with-bunny-ears-partying","person_in_steamy_room","woman_in_steamy_room","man_in_steamy_room","person_climbing","woman_climbing","man_climbing","person_in_lotus_position","woman_in_lotus_position","man_in_lotus_position","bath","sleeping_accommodation","man_in_business_suit_levitating","speaking_head_in_silhouette","bust_in_silhouette","busts_in_silhouette","fencer","horse_racing","skier","snowboarder","golfer","man-golfing","woman-golfing","surfer","man-surfing","woman-surfing","rowboat","man-rowing-boat","woman-rowing-boat","swimmer","man-swimming","woman-swimming","person_with_ball","man-bouncing-ball","woman-bouncing-ball","weight_lifter","man-lifting-weights","woman-lifting-weights","bicyclist","man-biking","woman-biking","mountain_bicyclist","man-mountain-biking","woman-mountain-biking","racing_car","racing_motorcycle","person_doing_cartwheel","man-cartwheeling","woman-cartwheeling","wrestlers","man-wrestling","woman-wrestling","water_polo","man-playing-water-polo","woman-playing-water-polo","handball","man-playing-handball","woman-playing-handball","juggling","man-juggling","woman-juggling","couple","two_men_holding_hands","two_women_holding_hands","couplekiss","woman-kiss-man","man-kiss-man","woman-kiss-woman","couple_with_heart","woman-heart-man","man-heart-man","woman-heart-woman","family","man-woman-boy","man-woman-girl","man-woman-girl-boy","man-woman-boy-boy","man-woman-girl-girl","man-man-boy","man-man-girl","man-man-girl-boy","man-man-boy-boy","man-man-girl-girl","woman-woman-boy","woman-woman-girl","woman-woman-girl-boy","woman-woman-boy-boy","woman-woman-girl-girl","man-boy","man-boy-boy","man-girl","man-girl-boy","man-girl-girl","woman-boy","woman-boy-boy","woman-girl","woman-girl-boy","woman-girl-girl","selfie","muscle","point_left","point_right","point_up","point_up_2","middle_finger","point_down","v","crossed_fingers","spock-hand","the_horns","call_me_hand","raised_hand_with_fingers_splayed","hand","ok_hand","+1","-1","fist","facepunch","left-facing_fist","right-facing_fist","raised_back_of_hand","wave","i_love_you_hand_sign","writing_hand","clap","open_hands","raised_hands","palms_up_together","pray","handshake","nail_care","ear","nose","footprints","eyes","eye","eye-in-speech-bubble","brain","tongue","lips","kiss","cupid","heart","heartbeat","broken_heart","two_hearts","sparkling_heart","heartpulse","blue_heart","green_heart","yellow_heart","orange_heart","purple_heart","black_heart","gift_heart","revolving_hearts","heart_decoration","heavy_heart_exclamation_mark_ornament","love_letter","zzz","anger","bomb","boom","sweat_drops","dash","dizzy","speech_balloon","left_speech_bubble","right_anger_bubble","thought_balloon","hole","eyeglasses","dark_sunglasses","necktie","shirt","jeans","scarf","gloves","coat","socks","dress","kimono","bikini","womans_clothes","purse","handbag","pouch","shopping_bags","school_satchel","mans_shoe","athletic_shoe","high_heel","sandal","boot","crown","womans_hat","tophat","mortar_board","billed_cap","helmet_with_white_cross","prayer_beads","lipstick","ring","gem"]},{"id":"nature","name":"Animals & Nature","emojis":["monkey_face","monkey","gorilla","dog","dog2","poodle","wolf","fox_face","cat","cat2","lion_face","tiger","tiger2","leopard","horse","racehorse","unicorn_face","zebra_face","deer","cow","ox","water_buffalo","cow2","pig","pig2","boar","pig_nose","ram","sheep","goat","dromedary_camel","camel","giraffe_face","elephant","rhinoceros","mouse","mouse2","rat","hamster","rabbit","rabbit2","chipmunk","hedgehog","bat","bear","koala","panda_face","feet","turkey","chicken","rooster","hatching_chick","baby_chick","hatched_chick","bird","penguin","dove_of_peace","eagle","duck","owl","frog","crocodile","turtle","lizard","snake","dragon_face","dragon","sauropod","t-rex","whale","whale2","dolphin","fish","tropical_fish","blowfish","shark","octopus","shell","crab","shrimp","squid","snail","butterfly","bug","ant","bee","beetle","cricket","spider","spider_web","scorpion","bouquet","cherry_blossom","white_flower","rosette","rose","wilted_flower","hibiscus","sunflower","blossom","tulip","seedling","evergreen_tree","deciduous_tree","palm_tree","cactus","ear_of_rice","herb","shamrock","four_leaf_clover","maple_leaf","fallen_leaf","leaves"]},{"id":"foods","name":"Food & Drink","emojis":["grapes","melon","watermelon","tangerine","lemon","banana","pineapple","apple","green_apple","pear","peach","cherries","strawberry","kiwifruit","tomato","coconut","avocado","eggplant","potato","carrot","corn","hot_pepper","cucumber","broccoli","mushroom","peanuts","chestnut","bread","croissant","baguette_bread","pretzel","pancakes","cheese_wedge","meat_on_bone","poultry_leg","cut_of_meat","bacon","hamburger","fries","pizza","hotdog","sandwich","taco","burrito","stuffed_flatbread","egg","fried_egg","shallow_pan_of_food","stew","bowl_with_spoon","green_salad","popcorn","canned_food","bento","rice_cracker","rice_ball","rice","curry","ramen","spaghetti","sweet_potato","oden","sushi","fried_shrimp","fish_cake","dango","dumpling","fortune_cookie","takeout_box","icecream","shaved_ice","ice_cream","doughnut","cookie","birthday","cake","pie","chocolate_bar","candy","lollipop","custard","honey_pot","baby_bottle","glass_of_milk","coffee","tea","sake","champagne","wine_glass","cocktail","tropical_drink","beer","beers","clinking_glasses","tumbler_glass","cup_with_straw","chopsticks","knife_fork_plate","fork_and_knife","spoon","hocho","amphora"]},{"id":"activity","name":"Activities","emojis":["jack_o_lantern","christmas_tree","fireworks","sparkler","sparkles","balloon","tada","confetti_ball","tanabata_tree","bamboo","dolls","flags","wind_chime","rice_scene","ribbon","gift","reminder_ribbon","admission_tickets","ticket","medal","trophy","sports_medal","first_place_medal","second_place_medal","third_place_medal","soccer","baseball","basketball","volleyball","football","rugby_football","tennis","8ball","bowling","cricket_bat_and_ball","field_hockey_stick_and_ball","ice_hockey_stick_and_puck","table_tennis_paddle_and_ball","badminton_racquet_and_shuttlecock","boxing_glove","martial_arts_uniform","goal_net","dart","golf","ice_skate","fishing_pole_and_fish","running_shirt_with_sash","ski","sled","curling_stone","video_game","joystick","game_die","spades","hearts","diamonds","clubs","black_joker","mahjong","flower_playing_cards"]},{"id":"places","name":"Travel & Places","emojis":["earth_africa","earth_americas","earth_asia","globe_with_meridians","world_map","japan","snow_capped_mountain","mountain","volcano","mount_fuji","camping","beach_with_umbrella","desert","desert_island","national_park","stadium","classical_building","building_construction","house_buildings","cityscape","derelict_house_building","house","house_with_garden","office","post_office","european_post_office","hospital","bank","hotel","love_hotel","convenience_store","school","department_store","factory","japanese_castle","european_castle","wedding","tokyo_tower","statue_of_liberty","church","mosque","synagogue","shinto_shrine","kaaba","fountain","tent","foggy","night_with_stars","sunrise_over_mountains","sunrise","city_sunset","city_sunrise","bridge_at_night","hotsprings","milky_way","carousel_horse","ferris_wheel","roller_coaster","barber","circus_tent","performing_arts","frame_with_picture","art","slot_machine","steam_locomotive","railway_car","bullettrain_side","bullettrain_front","train2","metro","light_rail","station","tram","monorail","mountain_railway","train","bus","oncoming_bus","trolleybus","minibus","ambulance","fire_engine","police_car","oncoming_police_car","taxi","oncoming_taxi","car","oncoming_automobile","blue_car","truck","articulated_lorry","tractor","bike","scooter","motor_scooter","busstop","motorway","railway_track","fuelpump","rotating_light","traffic_light","vertical_traffic_light","construction","octagonal_sign","anchor","boat","canoe","speedboat","passenger_ship","ferry","motor_boat","ship","airplane","small_airplane","airplane_departure","airplane_arriving","seat","helicopter","suspension_railway","mountain_cableway","aerial_tramway","satellite","rocket","flying_saucer","bellhop_bell","door","bed","couch_and_lamp","toilet","shower","bathtub","hourglass","hourglass_flowing_sand","watch","alarm_clock","stopwatch","timer_clock","mantelpiece_clock","clock12","clock1230","clock1","clock130","clock2","clock230","clock3","clock330","clock4","clock430","clock5","clock530","clock6","clock630","clock7","clock730","clock8","clock830","clock9","clock930","clock10","clock1030","clock11","clock1130","new_moon","waxing_crescent_moon","first_quarter_moon","moon","full_moon","waning_gibbous_moon","last_quarter_moon","waning_crescent_moon","crescent_moon","new_moon_with_face","first_quarter_moon_with_face","last_quarter_moon_with_face","thermometer","sunny","full_moon_with_face","sun_with_face","star","star2","stars","cloud","partly_sunny","thunder_cloud_and_rain","mostly_sunny","barely_sunny","partly_sunny_rain","rain_cloud","snow_cloud","lightning","tornado","fog","wind_blowing_face","cyclone","rainbow","closed_umbrella","umbrella","umbrella_with_rain_drops","umbrella_on_ground","zap","snowflake","snowman","snowman_without_snow","comet","fire","droplet","ocean"]},{"id":"objects","name":"Objects","emojis":["mute","speaker","sound","loud_sound","loudspeaker","mega","postal_horn","bell","no_bell","musical_score","musical_note","notes","studio_microphone","level_slider","control_knobs","microphone","headphones","radio","saxophone","guitar","musical_keyboard","trumpet","violin","drum_with_drumsticks","iphone","calling","phone","telephone_receiver","pager","fax","battery","electric_plug","computer","desktop_computer","printer","keyboard","three_button_mouse","trackball","minidisc","floppy_disk","cd","dvd","movie_camera","film_frames","film_projector","clapper","tv","camera","camera_with_flash","video_camera","vhs","mag","mag_right","microscope","telescope","satellite_antenna","candle","bulb","flashlight","izakaya_lantern","notebook_with_decorative_cover","closed_book","book","green_book","blue_book","orange_book","books","notebook","ledger","page_with_curl","scroll","page_facing_up","newspaper","rolled_up_newspaper","bookmark_tabs","bookmark","label","moneybag","yen","dollar","euro","pound","money_with_wings","credit_card","chart","currency_exchange","heavy_dollar_sign","email","e-mail","incoming_envelope","envelope_with_arrow","outbox_tray","inbox_tray","package","mailbox","mailbox_closed","mailbox_with_mail","mailbox_with_no_mail","postbox","ballot_box_with_ballot","pencil2","black_nib","lower_left_fountain_pen","lower_left_ballpoint_pen","lower_left_paintbrush","lower_left_crayon","memo","briefcase","file_folder","open_file_folder","card_index_dividers","date","calendar","spiral_note_pad","spiral_calendar_pad","card_index","chart_with_upwards_trend","chart_with_downwards_trend","bar_chart","clipboard","pushpin","round_pushpin","paperclip","linked_paperclips","straight_ruler","triangular_ruler","scissors","card_file_box","file_cabinet","wastebasket","lock","unlock","lock_with_ink_pen","closed_lock_with_key","key","old_key","hammer","pick","hammer_and_pick","hammer_and_wrench","dagger_knife","crossed_swords","gun","bow_and_arrow","shield","wrench","nut_and_bolt","gear","compression","alembic","scales","link","chains","syringe","pill","smoking","coffin","funeral_urn","moyai","oil_drum","crystal_ball","shopping_trolley"]},{"id":"symbols","name":"Symbols","emojis":["atm","put_litter_in_its_place","potable_water","wheelchair","mens","womens","restroom","baby_symbol","wc","passport_control","customs","baggage_claim","left_luggage","warning","children_crossing","no_entry","no_entry_sign","no_bicycles","no_smoking","do_not_litter","non-potable_water","no_pedestrians","no_mobile_phones","underage","radioactive_sign","biohazard_sign","arrow_up","arrow_upper_right","arrow_right","arrow_lower_right","arrow_down","arrow_lower_left","arrow_left","arrow_upper_left","arrow_up_down","left_right_arrow","leftwards_arrow_with_hook","arrow_right_hook","arrow_heading_up","arrow_heading_down","arrows_clockwise","arrows_counterclockwise","back","end","on","soon","top","place_of_worship","atom_symbol","om_symbol","star_of_david","wheel_of_dharma","yin_yang","latin_cross","orthodox_cross","star_and_crescent","peace_symbol","menorah_with_nine_branches","six_pointed_star","aries","taurus","gemini","cancer","leo","virgo","libra","scorpius","sagittarius","capricorn","aquarius","pisces","ophiuchus","twisted_rightwards_arrows","repeat","repeat_one","arrow_forward","fast_forward","black_right_pointing_double_triangle_with_vertical_bar","black_right_pointing_triangle_with_double_vertical_bar","arrow_backward","rewind","black_left_pointing_double_triangle_with_vertical_bar","arrow_up_small","arrow_double_up","arrow_down_small","arrow_double_down","double_vertical_bar","black_square_for_stop","black_circle_for_record","eject","cinema","low_brightness","high_brightness","signal_strength","vibration_mode","mobile_phone_off","female_sign","male_sign","medical_symbol","recycle","fleur_de_lis","trident","name_badge","beginner","o","white_check_mark","ballot_box_with_check","heavy_check_mark","heavy_multiplication_x","x","negative_squared_cross_mark","heavy_plus_sign","heavy_minus_sign","heavy_division_sign","curly_loop","loop","part_alternation_mark","eight_spoked_asterisk","eight_pointed_black_star","sparkle","bangbang","interrobang","question","grey_question","grey_exclamation","exclamation","wavy_dash","copyright","registered","tm","hash","keycap_star","zero","one","two","three","four","five","six","seven","eight","nine","keycap_ten","100","capital_abcd","abcd","1234","symbols","abc","a","ab","b","cl","cool","free","information_source","id","m","new","ng","o2","ok","parking","sos","up","vs","koko","sa","u6708","u6709","u6307","ideograph_advantage","u5272","u7121","u7981","accept","u7533","u5408","u7a7a","congratulations","secret","u55b6","u6e80","black_small_square","white_small_square","white_medium_square","black_medium_square","white_medium_small_square","black_medium_small_square","black_large_square","white_large_square","large_orange_diamond","large_blue_diamond","small_orange_diamond","small_blue_diamond","small_red_triangle","small_red_triangle_down","diamond_shape_with_a_dot_inside","radio_button","black_square_button","white_square_button","white_circle","black_circle","red_circle","large_blue_circle"]},{"id":"flags","name":"Flags","emojis":["checkered_flag","cn","crossed_flags","de","es","flag-ac","flag-ad","flag-ae","flag-af","flag-ag","flag-ai","flag-al","flag-am","flag-ao","flag-aq","flag-ar","flag-as","flag-at","flag-au","flag-aw","flag-ax","flag-az","flag-ba","flag-bb","flag-bd","flag-be","flag-bf","flag-bg","flag-bh","flag-bi","flag-bj","flag-bm","flag-bn","flag-bo","flag-br","flag-bs","flag-bt","flag-bv","flag-bw","flag-by","flag-bz","flag-ca","flag-cc","flag-cd","flag-cf","flag-cg","flag-ch","flag-ci","flag-ck","flag-cl","flag-cm","flag-co","flag-cp","flag-cr","flag-cu","flag-cv","flag-cw","flag-cx","flag-cy","flag-cz","flag-dj","flag-dk","flag-dm","flag-do","flag-dz","flag-ec","flag-ee","flag-eg","flag-england","flag-er","flag-et","flag-eu","flag-fi","flag-fj","flag-fm","flag-fo","flag-ga","flag-gd","flag-ge","flag-gg","flag-gh","flag-gi","flag-gl","flag-gm","flag-gn","flag-gq","flag-gr","flag-gt","flag-gu","flag-gw","flag-gy","flag-hk","flag-hm","flag-hn","flag-hr","flag-ht","flag-hu","flag-ic","flag-id","flag-ie","flag-il","flag-im","flag-in","flag-io","flag-iq","flag-ir","flag-is","flag-je","flag-jm","flag-jo","flag-ke","flag-kg","flag-kh","flag-ki","flag-km","flag-kn","flag-kp","flag-kw","flag-ky","flag-kz","flag-la","flag-lb","flag-lc","flag-li","flag-lk","flag-lr","flag-ls","flag-lt","flag-lu","flag-lv","flag-ly","flag-ma","flag-mc","flag-md","flag-me","flag-mg","flag-mh","flag-mk","flag-ml","flag-mm","flag-mn","flag-mo","flag-mp","flag-mr","flag-ms","flag-mt","flag-mu","flag-mv","flag-mw","flag-mx","flag-my","flag-mz","flag-na","flag-ne","flag-nf","flag-ng","flag-ni","flag-nl","flag-no","flag-np","flag-nr","flag-nu","flag-nz","flag-om","flag-pa","flag-pe","flag-pf","flag-pg","flag-ph","flag-pk","flag-pl","flag-pn","flag-pr","flag-ps","flag-pt","flag-pw","flag-py","flag-qa","flag-ro","flag-rs","flag-rw","flag-sa","flag-sb","flag-sc","flag-scotland","flag-sd","flag-se","flag-sg","flag-sh","flag-si","flag-sj","flag-sk","flag-sl","flag-sm","flag-sn","flag-so","flag-sr","flag-ss","flag-st","flag-sv","flag-sx","flag-sy","flag-sz","flag-ta","flag-tc","flag-td","flag-tg","flag-th","flag-tj","flag-tk","flag-tl","flag-tm","flag-tn","flag-to","flag-tr","flag-tt","flag-tv","flag-tw","flag-tz","flag-ua","flag-ug","flag-um","flag-uy","flag-uz","flag-va","flag-vc","flag-ve","flag-vg","flag-vi","flag-vn","flag-vu","flag-wales","flag-ws","flag-ye","flag-za","flag-zm","flag-zw","fr","gb","it","jp","kr","rainbow-flag","ru","triangular_flag_on_post","us","waving_black_flag","waving_white_flag"]}],"emojis":{"100":{"a":"Hundred Points Symbol","b":"1F4AF","j":["score","perfect","numbers","century","exam","quiz","test","pass","hundred"],"k":[25,26]},"1234":{"a":"Input Symbol for Numbers","b":"1F522","j":["numbers","blue-square"],"k":[27,36]},"monkey_face":{"a":"Monkey Face","b":"1F435","j":["animal","nature","circus"],"k":[13,31],"l":[":o)"]},"grinning":{"a":"Grinning Face","b":"1F600","j":["face","smile","happy","joy",":D","grin"],"k":[30,24],"m":":D"},"earth_africa":{"a":"Earth Globe Europe-Africa","b":"1F30D","j":["globe","world","international"],"k":[6,5]},"checkered_flag":{"a":"Chequered Flag","b":"1F3C1","j":["contest","finishline","race","gokart"],"k":[9,27]},"mute":{"a":"Speaker with Cancellation Stroke","b":"1F507","j":["sound","volume","silence","quiet"],"k":[27,9]},"jack_o_lantern":{"a":"Jack-O-Lantern","b":"1F383","j":["halloween","light","pumpkin","creepy","fall"],"k":[8,17]},"atm":{"a":"Automated Teller Machine","b":"1F3E7","j":["money","sales","cash","blue-square","payment","bank"],"k":[12,4]},"grapes":{"a":"Grapes","b":"1F347","j":["fruit","food","wine"],"k":[7,9]},"earth_americas":{"a":"Earth Globe Americas","b":"1F30E","j":["globe","world","USA","international"],"k":[6,6]},"grin":{"a":"Grinning Face with Smiling Eyes","b":"1F601","j":["face","happy","smile","joy","kawaii"],"k":[30,25]},"melon":{"a":"Melon","b":"1F348","j":["fruit","nature","food"],"k":[7,10]},"triangular_flag_on_post":{"a":"Triangular Flag on Post","b":"1F6A9","j":["mark","milestone","place"],"k":[35,14]},"monkey":{"a":"Monkey","b":"1F412","j":["animal","nature","banana","circus"],"k":[12,48]},"christmas_tree":{"a":"Christmas Tree","b":"1F384","j":["festival","vacation","december","xmas","celebration"],"k":[8,18]},"put_litter_in_its_place":{"a":"Put Litter in Its Place Symbol","b":"1F6AE","j":["blue-square","sign","human","info"],"k":[35,19]},"speaker":{"a":"Speaker","b":"1F508","j":["sound","volume","silence","broadcast"],"k":[27,10]},"earth_asia":{"a":"Earth Globe Asia-Australia","b":"1F30F","j":["globe","world","east","international"],"k":[6,7]},"crossed_flags":{"a":"Crossed Flags","b":"1F38C","j":["japanese","nation","country","border"],"k":[8,31]},"joy":{"a":"Face with Tears of Joy","b":"1F602","j":["face","cry","tears","weep","happy","happytears","haha"],"k":[30,26]},"sound":{"a":"Speaker with One Sound Wave","b":"1F509","j":["volume","speaker","broadcast"],"k":[27,11]},"watermelon":{"a":"Watermelon","b":"1F349","j":["fruit","food","picnic","summer"],"k":[7,11]},"gorilla":{"a":"Gorilla","b":"1F98D","j":["animal","nature","circus"],"k":[42,37],"o":9},"fireworks":{"a":"Fireworks","b":"1F386","j":["photo","festival","carnival","congratulations"],"k":[8,25]},"potable_water":{"a":"Potable Water Symbol","b":"1F6B0","j":["blue-square","liquid","restroom","cleaning","faucet"],"k":[35,21]},"wheelchair":{"a":"Wheelchair Symbol","b":"267F","j":["blue-square","disabled","a11y","accessibility"],"k":[48,10],"o":4},"rolling_on_the_floor_laughing":{"a":"Rolling on the Floor Laughing","b":"1F923","k":[38,26],"o":9},"loud_sound":{"a":"Speaker with Three Sound Waves","b":"1F50A","j":["volume","noise","noisy","speaker","broadcast"],"k":[27,12]},"waving_black_flag":{"a":"Waving Black Flag","b":"1F3F4","k":[12,19],"o":7},"tangerine":{"a":"Tangerine","b":"1F34A","j":["food","fruit","nature","orange"],"k":[7,12]},"dog":{"a":"Dog Face","b":"1F436","j":["animal","friend","nature","woof","puppy","pet","faithful"],"k":[13,32]},"sparkler":{"a":"Firework Sparkler","b":"1F387","j":["stars","night","shine"],"k":[8,26]},"globe_with_meridians":{"a":"Globe with Meridians","b":"1F310","j":["earth","international","world","internet","interweb","i18n"],"k":[6,8]},"smiley":{"a":"Smiling Face with Open Mouth","b":"1F603","j":["face","happy","joy","haha",":D",":)","smile","funny"],"k":[30,27],"l":["=)","=-)"],"m":":)"},"loudspeaker":{"a":"Public Address Loudspeaker","b":"1F4E2","j":["volume","sound"],"k":[26,25]},"sparkles":{"a":"Sparkles","b":"2728","j":["stars","shine","shiny","cool","awesome","good","magic"],"k":[49,48]},"dog2":{"a":"Dog","b":"1F415","j":["animal","nature","friend","doge","pet","faithful"],"k":[12,51]},"waving_white_flag":{"a":"Waving White Flag","b":"1F3F3-FE0F","c":"1F3F3","k":[12,15],"o":7},"world_map":{"a":"World Map","b":"1F5FA-FE0F","c":"1F5FA","j":["location","direction"],"k":[30,18],"o":7},"lemon":{"a":"Lemon","b":"1F34B","j":["fruit","nature"],"k":[7,13]},"mens":{"a":"Mens Symbol","b":"1F6B9","j":["toilet","restroom","wc","blue-square","gender","male"],"k":[36,29]},"womens":{"a":"Womens Symbol","b":"1F6BA","j":["purple-square","woman","female","toilet","loo","restroom","gender"],"k":[36,30]},"rainbow-flag":{"a":"Rainbow Flag","b":"1F3F3-FE0F-200D-1F308","c":"1F3F3-200D-1F308","k":[12,14],"o":7},"smile":{"a":"Smiling Face with Open Mouth and Smiling Eyes","b":"1F604","j":["face","happy","joy","funny","haha","laugh","like",":D",":)"],"k":[30,28],"l":["C:","c:",":D",":-D"],"m":":)"},"banana":{"a":"Banana","b":"1F34C","j":["fruit","food","monkey"],"k":[7,14]},"mega":{"a":"Cheering Megaphone","b":"1F4E3","j":["sound","speaker","volume"],"k":[26,26]},"japan":{"a":"Silhouette of Japan","b":"1F5FE","j":["nation","country","japanese","asia"],"k":[30,22]},"poodle":{"a":"Poodle","b":"1F429","j":["dog","animal","101","nature","pet"],"k":[13,19]},"balloon":{"a":"Balloon","b":"1F388","j":["party","celebration","birthday","circus"],"k":[8,27]},"flag-ac":{"a":"Ascension Island Flag","b":"1F1E6-1F1E8","k":[0,31]},"sweat_smile":{"a":"Smiling Face with Open Mouth and Cold Sweat","b":"1F605","j":["face","hot","happy","laugh","sweat","smile","relief"],"k":[30,29]},"pineapple":{"a":"Pineapple","b":"1F34D","j":["fruit","nature","food"],"k":[7,15]},"restroom":{"a":"Restroom","b":"1F6BB","j":["blue-square","toilet","refresh","wc","gender"],"k":[36,31]},"postal_horn":{"a":"Postal Horn","b":"1F4EF","j":["instrument","music"],"k":[26,38]},"wolf":{"a":"Wolf Face","b":"1F43A","j":["animal","nature","wild"],"k":[13,36]},"tada":{"a":"Party Popper","b":"1F389","j":["party","congratulations","birthday","magic","circus","celebration"],"k":[8,28]},"snow_capped_mountain":{"a":"Snow Capped Mountain","b":"1F3D4-FE0F","c":"1F3D4","k":[11,37],"o":7},"laughing":{"a":"Smiling Face with Open Mouth and Tightly-Closed Eyes","b":"1F606","j":["happy","joy","lol","satisfied","haha","face","glad","XD","laugh"],"k":[30,30],"l":[":>",":->"],"n":["satisfied"]},"apple":{"a":"Red Apple","b":"1F34E","j":["fruit","mac","school"],"k":[7,16]},"flag-ad":{"a":"Andorra Flag","b":"1F1E6-1F1E9","k":[0,32]},"fox_face":{"a":"Fox Face","b":"1F98A","j":["animal","nature","face"],"k":[42,34],"o":9},"confetti_ball":{"a":"Confetti Ball","b":"1F38A","j":["festival","party","birthday","circus"],"k":[8,29]},"bell":{"a":"Bell","b":"1F514","j":["sound","notification","christmas","xmas","chime"],"k":[27,22]},"mountain":{"a":"Mountain","b":"26F0-FE0F","c":"26F0","j":["photo","nature","environment"],"k":[48,38],"o":5},"baby_symbol":{"a":"Baby Symbol","b":"1F6BC","j":["orange-square","child"],"k":[36,32]},"wc":{"a":"Water Closet","b":"1F6BE","j":["toilet","restroom","blue-square"],"k":[36,34]},"wink":{"a":"Winking Face","b":"1F609","j":["face","happy","mischievous","secret",";)","smile","eye"],"k":[30,33],"l":[";)",";-)"],"m":";)"},"no_bell":{"a":"Bell with Cancellation Stroke","b":"1F515","j":["sound","volume","mute","quiet","silent"],"k":[27,23]},"green_apple":{"a":"Green Apple","b":"1F34F","j":["fruit","nature"],"k":[7,17]},"tanabata_tree":{"a":"Tanabata Tree","b":"1F38B","j":["plant","nature","branch","summer"],"k":[8,30]},"flag-ae":{"a":"United Arab Emirates Flag","b":"1F1E6-1F1EA","k":[0,33]},"volcano":{"a":"Volcano","b":"1F30B","j":["photo","nature","disaster"],"k":[6,3]},"cat":{"a":"Cat Face","b":"1F431","j":["animal","meow","nature","pet","kitten"],"k":[13,27]},"flag-af":{"a":"Afghanistan Flag","b":"1F1E6-1F1EB","k":[0,34]},"musical_score":{"a":"Musical Score","b":"1F3BC","j":["treble","clef","compose"],"k":[9,22]},"blush":{"a":"Smiling Face with Smiling Eyes","b":"1F60A","j":["face","smile","happy","flushed","crush","embarrassed","shy","joy"],"k":[30,34],"m":":)"},"pear":{"a":"Pear","b":"1F350","j":["fruit","nature","food"],"k":[7,18]},"bamboo":{"a":"Pine Decoration","b":"1F38D","j":["plant","nature","vegetable","panda","pine_decoration"],"k":[8,32]},"passport_control":{"a":"Passport Control","b":"1F6C2","j":["custom","blue-square"],"k":[36,43]},"mount_fuji":{"a":"Mount Fuji","b":"1F5FB","j":["photo","mountain","nature","japanese"],"k":[30,19]},"cat2":{"a":"Cat","b":"1F408","j":["animal","meow","pet","cats"],"k":[12,38]},"musical_note":{"a":"Musical Note","b":"1F3B5","j":["score","tone","sound"],"k":[9,15]},"dolls":{"a":"Japanese Dolls","b":"1F38E","j":["japanese","toy","kimono"],"k":[8,33]},"lion_face":{"a":"Lion Face","b":"1F981","k":[42,25],"o":8},"camping":{"a":"Camping","b":"1F3D5-FE0F","c":"1F3D5","j":["photo","outdoors","tent"],"k":[11,38],"o":7},"flag-ag":{"a":"Antigua & Barbuda Flag","b":"1F1E6-1F1EC","k":[0,35]},"customs":{"a":"Customs","b":"1F6C3","j":["passport","border","blue-square"],"k":[36,44]},"yum":{"a":"Face Savouring Delicious Food","b":"1F60B","j":["happy","joy","tongue","smile","face","silly","yummy","nom","delicious","savouring"],"k":[30,35]},"peach":{"a":"Peach","b":"1F351","j":["fruit","nature","food"],"k":[7,19]},"tiger":{"a":"Tiger Face","b":"1F42F","j":["animal","cat","danger","wild","nature","roar"],"k":[13,25]},"notes":{"a":"Multiple Musical Notes","b":"1F3B6","j":["music","score"],"k":[9,16]},"flags":{"a":"Carp Streamer","b":"1F38F","j":["fish","japanese","koinobori","carp","banner"],"k":[8,34]},"beach_with_umbrella":{"a":"Beach with Umbrella","b":"1F3D6-FE0F","c":"1F3D6","k":[11,39],"o":7},"cherries":{"a":"Cherries","b":"1F352","j":["food","fruit"],"k":[7,20]},"flag-ai":{"a":"Anguilla Flag","b":"1F1E6-1F1EE","k":[0,36]},"baggage_claim":{"a":"Baggage Claim","b":"1F6C4","j":["blue-square","airport","transport"],"k":[36,45]},"sunglasses":{"a":"Smiling Face with Sunglasses","b":"1F60E","j":["face","cool","smile","summer","beach","sunglass"],"k":[30,38],"l":["8)"]},"left_luggage":{"a":"Left Luggage","b":"1F6C5","j":["blue-square","travel"],"k":[36,46]},"wind_chime":{"a":"Wind Chime","b":"1F390","j":["nature","ding","spring","bell"],"k":[8,35]},"strawberry":{"a":"Strawberry","b":"1F353","j":["fruit","food","nature"],"k":[7,21]},"desert":{"a":"Desert","b":"1F3DC-FE0F","c":"1F3DC","j":["photo","warm","saharah"],"k":[11,45],"o":7},"studio_microphone":{"a":"Studio Microphone","b":"1F399-FE0F","c":"1F399","j":["sing","recording","artist","talkshow"],"k":[8,41],"o":7},"flag-al":{"a":"Albania Flag","b":"1F1E6-1F1F1","k":[0,37]},"tiger2":{"a":"Tiger","b":"1F405","j":["animal","nature","roar"],"k":[12,35]},"heart_eyes":{"a":"Smiling Face with Heart-Shaped Eyes","b":"1F60D","j":["face","love","like","affection","valentines","infatuation","crush","heart"],"k":[30,37]},"desert_island":{"a":"Desert Island","b":"1F3DD-FE0F","c":"1F3DD","j":["photo","tropical","mojito"],"k":[11,46],"o":7},"kiwifruit":{"a":"Kiwifruit","b":"1F95D","k":[42,9],"o":9},"rice_scene":{"a":"Moon Viewing Ceremony","b":"1F391","j":["photo","japan","asia","tsukimi"],"k":[8,36]},"kissing_heart":{"a":"Face Throwing a Kiss","b":"1F618","j":["face","love","like","affection","valentines","infatuation","kiss"],"k":[30,48],"l":[":*",":-*"]},"warning":{"a":"Warning Sign","b":"26A0-FE0F","c":"26A0","j":["exclamation","wip","alert","error","problem","issue"],"k":[48,20],"o":4},"flag-am":{"a":"Armenia Flag","b":"1F1E6-1F1F2","k":[0,38]},"leopard":{"a":"Leopard","b":"1F406","j":["animal","nature"],"k":[12,36]},"level_slider":{"a":"Level Slider","b":"1F39A-FE0F","c":"1F39A","j":["scale"],"k":[8,42],"o":7},"horse":{"a":"Horse Face","b":"1F434","j":["animal","brown","nature"],"k":[13,30]},"children_crossing":{"a":"Children Crossing","b":"1F6B8","j":["school","warning","danger","sign","driving","yellow-diamond"],"k":[36,28]},"ribbon":{"a":"Ribbon","b":"1F380","j":["decoration","pink","girl","bowtie"],"k":[8,14]},"national_park":{"a":"National Park","b":"1F3DE-FE0F","c":"1F3DE","j":["photo","environment","nature"],"k":[11,47],"o":7},"control_knobs":{"a":"Control Knobs","b":"1F39B-FE0F","c":"1F39B","j":["dial"],"k":[8,43],"o":7},"kissing":{"a":"Kissing Face","b":"1F617","j":["love","like","face","3","valentines","infatuation","kiss"],"k":[30,47]},"tomato":{"a":"Tomato","b":"1F345","j":["fruit","vegetable","nature","food"],"k":[7,7]},"flag-ao":{"a":"Angola Flag","b":"1F1E6-1F1F4","k":[0,39]},"stadium":{"a":"Stadium","b":"1F3DF-FE0F","c":"1F3DF","j":["photo","place","sports","concert","venue"],"k":[11,48],"o":7},"flag-aq":{"a":"Antarctica Flag","b":"1F1E6-1F1F6","k":[0,40]},"gift":{"a":"Wrapped Present","b":"1F381","j":["present","birthday","christmas","xmas"],"k":[8,15]},"no_entry":{"a":"No Entry","b":"26D4","j":["limit","security","privacy","bad","denied","stop","circle"],"k":[48,35],"o":5},"kissing_smiling_eyes":{"a":"Kissing Face with Smiling Eyes","b":"1F619","j":["face","affection","valentines","infatuation","kiss"],"k":[30,49]},"coconut":{"a":"Coconut","b":"1F965","k":[42,17],"o":10},"racehorse":{"a":"Horse","b":"1F40E","j":["animal","gamble","luck"],"k":[12,44]},"microphone":{"a":"Microphone","b":"1F3A4","j":["sound","music","PA","sing","talkshow"],"k":[8,50]},"classical_building":{"a":"Classical Building","b":"1F3DB-FE0F","c":"1F3DB","j":["art","culture","history"],"k":[11,44],"o":7},"no_entry_sign":{"a":"No Entry Sign","b":"1F6AB","j":["forbid","stop","limit","denied","disallow","circle"],"k":[35,16]},"reminder_ribbon":{"a":"Reminder Ribbon","b":"1F397-FE0F","c":"1F397","j":["sports","cause","support","awareness"],"k":[8,40],"o":7},"kissing_closed_eyes":{"a":"Kissing Face with Closed Eyes","b":"1F61A","j":["face","love","like","affection","valentines","infatuation","kiss"],"k":[30,50]},"unicorn_face":{"a":"Unicorn Face","b":"1F984","k":[42,28],"o":8},"flag-ar":{"a":"Argentina Flag","b":"1F1E6-1F1F7","k":[0,41]},"headphones":{"a":"Headphone","b":"1F3A7","j":["music","score","gadgets"],"k":[9,1]},"avocado":{"a":"Avocado","b":"1F951","j":["fruit","food"],"k":[41,49],"o":9},"relaxed":{"a":"White Smiling Face","b":"263A-FE0F","c":"263A","j":["face","blush","massage","happiness"],"k":[47,41],"o":1},"zebra_face":{"a":"Zebra Face","b":"1F993","k":[42,43],"o":10},"eggplant":{"a":"Aubergine","b":"1F346","j":["vegetable","nature","food","aubergine"],"k":[7,8]},"radio":{"a":"Radio","b":"1F4FB","j":["communication","music","podcast","program"],"k":[26,50]},"building_construction":{"a":"Building Construction","b":"1F3D7-FE0F","c":"1F3D7","j":["wip","working","progress"],"k":[11,40],"o":7},"flag-as":{"a":"American Samoa Flag","b":"1F1E6-1F1F8","k":[0,42]},"admission_tickets":{"a":"Admission Tickets","b":"1F39F-FE0F","c":"1F39F","k":[8,45],"o":7},"no_bicycles":{"a":"No Bicycles","b":"1F6B3","j":["cyclist","prohibited","circle"],"k":[35,24]},"no_smoking":{"a":"No Smoking Symbol","b":"1F6AD","j":["cigarette","blue-square","smell","smoke"],"k":[35,18]},"slightly_smiling_face":{"a":"Slightly Smiling Face","b":"1F642","j":["face","smile"],"k":[31,38],"l":[":)","(:",":-)"],"o":7},"flag-at":{"a":"Austria Flag","b":"1F1E6-1F1F9","k":[0,43]},"ticket":{"a":"Ticket","b":"1F3AB","j":["event","concert","pass"],"k":[9,5]},"saxophone":{"a":"Saxophone","b":"1F3B7","j":["music","instrument","jazz","blues"],"k":[9,17]},"deer":{"a":"Deer","b":"1F98C","j":["animal","nature","horns","venison"],"k":[42,36],"o":9},"house_buildings":{"a":"House Buildings","b":"1F3D8-FE0F","c":"1F3D8","k":[11,41],"o":7},"potato":{"a":"Potato","b":"1F954","j":["food","tuber","vegatable","starch"],"k":[42,0],"o":9},"guitar":{"a":"Guitar","b":"1F3B8","j":["music","instrument"],"k":[9,18]},"carrot":{"a":"Carrot","b":"1F955","j":["vegetable","food","orange"],"k":[42,1],"o":9},"cityscape":{"a":"Cityscape","b":"1F3D9-FE0F","c":"1F3D9","j":["photo","night life","urban"],"k":[11,42],"o":7},"flag-au":{"a":"Australia Flag","b":"1F1E6-1F1FA","k":[0,44]},"do_not_litter":{"a":"Do Not Litter Symbol","b":"1F6AF","j":["trash","bin","garbage","circle"],"k":[35,20]},"hugging_face":{"a":"Hugging Face","b":"1F917","k":[37,31],"o":8},"cow":{"a":"Cow Face","b":"1F42E","j":["beef","ox","animal","nature","moo","milk"],"k":[13,24]},"medal":{"a":"Medal","b":"1F396-FE0F","c":"1F396","k":[8,39],"o":7},"musical_keyboard":{"a":"Musical Keyboard","b":"1F3B9","j":["piano","instrument","compose"],"k":[9,19]},"corn":{"a":"Ear of Maize","b":"1F33D","j":["food","vegetable","plant"],"k":[6,51]},"derelict_house_building":{"a":"Derelict House Building","b":"1F3DA-FE0F","c":"1F3DA","k":[11,43],"o":7},"non-potable_water":{"a":"Non-Potable Water Symbol","b":"1F6B1","j":["drink","faucet","tap","circle"],"k":[35,22]},"trophy":{"a":"Trophy","b":"1F3C6","j":["win","award","contest","place","ftw","ceremony"],"k":[10,19]},"flag-aw":{"a":"Aruba Flag","b":"1F1E6-1F1FC","k":[0,45]},"star-struck":{"a":"Grinning Face with Star Eyes","b":"1F929","k":[38,49],"n":["grinning_face_with_star_eyes"],"o":10},"ox":{"a":"Ox","b":"1F402","j":["animal","cow","beef"],"k":[12,32]},"trumpet":{"a":"Trumpet","b":"1F3BA","j":["music","brass"],"k":[9,20]},"hot_pepper":{"a":"Hot Pepper","b":"1F336-FE0F","c":"1F336","j":["food","spicy","chilli","chili"],"k":[6,44],"o":7},"sports_medal":{"a":"Sports Medal","b":"1F3C5","k":[10,18],"o":7},"flag-ax":{"a":"Åland Islands Flag","b":"1F1E6-1F1FD","k":[0,46]},"water_buffalo":{"a":"Water Buffalo","b":"1F403","j":["animal","nature","ox","cow"],"k":[12,33]},"no_pedestrians":{"a":"No Pedestrians","b":"1F6B7","j":["rules","crossing","walking","circle"],"k":[36,27]},"thinking_face":{"a":"Thinking Face","b":"1F914","k":[37,28],"o":8},"house":{"a":"House Building","b":"1F3E0","j":["building","home"],"k":[11,49]},"no_mobile_phones":{"a":"No Mobile Phones","b":"1F4F5","j":["iphone","mute","circle"],"k":[26,44]},"flag-az":{"a":"Azerbaijan Flag","b":"1F1E6-1F1FF","k":[0,47]},"first_place_medal":{"a":"First Place Medal","b":"1F947","k":[41,42],"o":9},"house_with_garden":{"a":"House with Garden","b":"1F3E1","j":["home","plant","nature"],"k":[11,50]},"violin":{"a":"Violin","b":"1F3BB","j":["music","instrument","orchestra","symphony"],"k":[9,21]},"face_with_raised_eyebrow":{"a":"Face with One Eyebrow Raised","b":"1F928","k":[38,48],"n":["face_with_one_eyebrow_raised"],"o":10},"cucumber":{"a":"Cucumber","b":"1F952","j":["fruit","food","pickle"],"k":[41,50],"o":9},"cow2":{"a":"Cow","b":"1F404","j":["beef","ox","animal","nature","moo","milk"],"k":[12,34]},"flag-ba":{"a":"Bosnia & Herzegovina Flag","b":"1F1E7-1F1E6","k":[0,48]},"pig":{"a":"Pig Face","b":"1F437","j":["animal","oink","nature"],"k":[13,33]},"drum_with_drumsticks":{"a":"Drum with Drumsticks","b":"1F941","k":[41,37],"o":9},"underage":{"a":"No One Under Eighteen Symbol","b":"1F51E","j":["18","drink","pub","night","minor","circle"],"k":[27,32]},"broccoli":{"a":"Broccoli","b":"1F966","k":[42,18],"o":10},"office":{"a":"Office Building","b":"1F3E2","j":["building","bureau","work"],"k":[11,51]},"second_place_medal":{"a":"Second Place Medal","b":"1F948","k":[41,43],"o":9},"neutral_face":{"a":"Neutral Face","b":"1F610","j":["indifference","meh",":|","neutral"],"k":[30,40],"l":[":|",":-|"]},"third_place_medal":{"a":"Third Place Medal","b":"1F949","k":[41,44],"o":9},"mushroom":{"a":"Mushroom","b":"1F344","j":["plant","vegetable"],"k":[7,6]},"flag-bb":{"a":"Barbados Flag","b":"1F1E7-1F1E7","k":[0,49]},"radioactive_sign":{"a":"Radioactive Sign","b":"2622-FE0F","c":"2622","k":[47,33],"o":1},"pig2":{"a":"Pig","b":"1F416","j":["animal","nature"],"k":[13,0]},"expressionless":{"a":"Expressionless Face","b":"1F611","j":["face","indifferent","-_-","meh","deadpan"],"k":[30,41]},"iphone":{"a":"Mobile Phone","b":"1F4F1","j":["technology","apple","gadgets","dial"],"k":[26,40]},"post_office":{"a":"Japanese Post Office","b":"1F3E3","j":["building","envelope","communication"],"k":[12,0]},"european_post_office":{"a":"European Post Office","b":"1F3E4","j":["building","email"],"k":[12,1]},"soccer":{"a":"Soccer Ball","b":"26BD","j":["sports","football"],"k":[48,26],"o":5},"boar":{"a":"Boar","b":"1F417","j":["animal","nature"],"k":[13,1]},"peanuts":{"a":"Peanuts","b":"1F95C","j":["food","nut"],"k":[42,8],"o":9},"calling":{"a":"Mobile Phone with Rightwards Arrow at Left","b":"1F4F2","j":["iphone","incoming"],"k":[26,41]},"biohazard_sign":{"a":"Biohazard Sign","b":"2623-FE0F","c":"2623","k":[47,34],"o":1},"flag-bd":{"a":"Bangladesh Flag","b":"1F1E7-1F1E9","k":[0,50]},"no_mouth":{"a":"Face Without Mouth","b":"1F636","j":["face","hellokitty"],"k":[31,26]},"face_with_rolling_eyes":{"a":"Face with Rolling Eyes","b":"1F644","k":[31,40],"o":8},"phone":{"a":"Black Telephone","b":"260E-FE0F","c":"260E","j":["technology","communication","dial","telephone"],"k":[47,21],"n":["telephone"],"o":1},"pig_nose":{"a":"Pig Nose","b":"1F43D","j":["animal","oink"],"k":[13,39]},"chestnut":{"a":"Chestnut","b":"1F330","j":["food","squirrel"],"k":[6,38]},"arrow_up":{"a":"Upwards Black Arrow","b":"2B06-FE0F","c":"2B06","j":["blue-square","continue","top","direction"],"k":[50,18],"o":4},"hospital":{"a":"Hospital","b":"1F3E5","j":["building","health","surgery","doctor"],"k":[12,2]},"flag-be":{"a":"Belgium Flag","b":"1F1E7-1F1EA","k":[0,51]},"baseball":{"a":"Baseball","b":"26BE","j":["sports","balls"],"k":[48,27],"o":5},"smirk":{"a":"Smirking Face","b":"1F60F","j":["face","smile","mean","prank","smug","sarcasm"],"k":[30,39]},"arrow_upper_right":{"a":"North East Arrow","b":"2197-FE0F","c":"2197","j":["blue-square","point","direction","diagonal","northeast"],"k":[46,36],"o":1},"flag-bf":{"a":"Burkina Faso Flag","b":"1F1E7-1F1EB","k":[1,0]},"basketball":{"a":"Basketball and Hoop","b":"1F3C0","j":["sports","balls","NBA"],"k":[9,26]},"ram":{"a":"Ram","b":"1F40F","j":["animal","sheep","nature"],"k":[12,45]},"bank":{"a":"Bank","b":"1F3E6","j":["building","money","sales","cash","business","enterprise"],"k":[12,3]},"bread":{"a":"Bread","b":"1F35E","j":["food","wheat","breakfast","toast"],"k":[7,32]},"telephone_receiver":{"a":"Telephone Receiver","b":"1F4DE","j":["technology","communication","dial"],"k":[26,21]},"croissant":{"a":"Croissant","b":"1F950","j":["food","bread","french"],"k":[41,48],"o":9},"pager":{"a":"Pager","b":"1F4DF","j":["bbcall","oldschool","90s"],"k":[26,22]},"sheep":{"a":"Sheep","b":"1F411","j":["animal","nature","wool","shipit"],"k":[12,47]},"arrow_right":{"a":"Black Rightwards Arrow","b":"27A1-FE0F","c":"27A1","j":["blue-square","next"],"k":[50,12],"o":1},"persevere":{"a":"Persevering Face","b":"1F623","j":["face","sick","no","upset","oops"],"k":[31,7]},"flag-bg":{"a":"Bulgaria Flag","b":"1F1E7-1F1EC","k":[1,1]},"volleyball":{"a":"Volleyball","b":"1F3D0","j":["sports","balls"],"k":[11,33],"o":8},"hotel":{"a":"Hotel","b":"1F3E8","j":["building","accomodation","checkin"],"k":[12,5]},"arrow_lower_right":{"a":"South East Arrow","b":"2198-FE0F","c":"2198","j":["blue-square","direction","diagonal","southeast"],"k":[46,37],"o":1},"goat":{"a":"Goat","b":"1F410","j":["animal","nature"],"k":[12,46]},"flag-bh":{"a":"Bahrain Flag","b":"1F1E7-1F1ED","k":[1,2]},"love_hotel":{"a":"Love Hotel","b":"1F3E9","j":["like","affection","dating"],"k":[12,6]},"disappointed_relieved":{"a":"Disappointed but Relieved Face","b":"1F625","j":["face","phew","sweat","nervous"],"k":[31,9]},"baguette_bread":{"a":"Baguette Bread","b":"1F956","j":["food","bread","french"],"k":[42,2],"o":9},"football":{"a":"American Football","b":"1F3C8","j":["sports","balls","NFL"],"k":[10,26]},"fax":{"a":"Fax Machine","b":"1F4E0","j":["communication","technology"],"k":[26,23]},"convenience_store":{"a":"Convenience Store","b":"1F3EA","j":["building","shopping","groceries"],"k":[12,7]},"dromedary_camel":{"a":"Dromedary Camel","b":"1F42A","j":["animal","hot","desert","hump"],"k":[13,20]},"arrow_down":{"a":"Downwards Black Arrow","b":"2B07-FE0F","c":"2B07","j":["blue-square","direction","bottom"],"k":[50,19],"o":4},"battery":{"a":"Battery","b":"1F50B","j":["power","energy","sustain"],"k":[27,13]},"rugby_football":{"a":"Rugby Football","b":"1F3C9","j":["sports","team"],"k":[10,27]},"pretzel":{"a":"Pretzel","b":"1F968","k":[42,20],"o":10},"open_mouth":{"a":"Face with Open Mouth","b":"1F62E","j":["face","surprise","impressed","wow","whoa",":O"],"k":[31,18],"l":[":o",":-o",":O",":-O"]},"flag-bi":{"a":"Burundi Flag","b":"1F1E7-1F1EE","k":[1,3]},"flag-bj":{"a":"Benin Flag","b":"1F1E7-1F1EF","k":[1,4]},"pancakes":{"a":"Pancakes","b":"1F95E","j":["food","breakfast","flapjacks","hotcakes"],"k":[42,10],"o":9},"school":{"a":"School","b":"1F3EB","j":["building","student","education","learn","teach"],"k":[12,8]},"tennis":{"a":"Tennis Racquet and Ball","b":"1F3BE","j":["sports","balls","green"],"k":[9,24]},"zipper_mouth_face":{"a":"Zipper-Mouth Face","b":"1F910","j":["face","sealed","zipper","secret"],"k":[37,24],"o":8},"camel":{"a":"Bactrian Camel","b":"1F42B","j":["animal","nature","hot","desert","hump"],"k":[13,21]},"arrow_lower_left":{"a":"South West Arrow","b":"2199-FE0F","c":"2199","j":["blue-square","direction","diagonal","southwest"],"k":[46,38],"o":1},"electric_plug":{"a":"Electric Plug","b":"1F50C","j":["charger","power"],"k":[27,14]},"cheese_wedge":{"a":"Cheese Wedge","b":"1F9C0","k":[42,48],"o":8},"hushed":{"a":"Hushed Face","b":"1F62F","j":["face","woo","shh"],"k":[31,19]},"computer":{"a":"Personal Computer","b":"1F4BB","j":["technology","laptop","screen","display","monitor"],"k":[25,38]},"giraffe_face":{"a":"Giraffe Face","b":"1F992","k":[42,42],"o":10},"8ball":{"a":"Billiards","b":"1F3B1","j":["pool","hobby","game","luck","magic"],"k":[9,11]},"arrow_left":{"a":"Leftwards Black Arrow","b":"2B05-FE0F","c":"2B05","j":["blue-square","previous","back"],"k":[50,17],"o":4},"department_store":{"a":"Department Store","b":"1F3EC","j":["building","shopping","mall"],"k":[12,9]},"meat_on_bone":{"a":"Meat on Bone","b":"1F356","j":["good","food","drumstick"],"k":[7,24]},"arrow_upper_left":{"a":"North West Arrow","b":"2196-FE0F","c":"2196","j":["blue-square","point","direction","diagonal","northwest"],"k":[46,35],"o":1},"flag-bm":{"a":"Bermuda Flag","b":"1F1E7-1F1F2","k":[1,6]},"sleepy":{"a":"Sleepy Face","b":"1F62A","j":["face","tired","rest","nap"],"k":[31,14]},"bowling":{"a":"Bowling","b":"1F3B3","j":["sports","fun","play"],"k":[9,13]},"factory":{"a":"Factory","b":"1F3ED","j":["building","industry","pollution","smoke"],"k":[12,10]},"desktop_computer":{"a":"Desktop Computer","b":"1F5A5-FE0F","c":"1F5A5","j":["technology","computing","screen"],"k":[29,51],"o":7},"elephant":{"a":"Elephant","b":"1F418","j":["animal","nature","nose","th","circus"],"k":[13,2]},"rhinoceros":{"a":"Rhinoceros","b":"1F98F","j":["animal","nature","horn"],"k":[42,39],"o":9},"arrow_up_down":{"a":"Up Down Arrow","b":"2195-FE0F","c":"2195","j":["blue-square","direction","way","vertical"],"k":[46,34],"o":1},"cricket_bat_and_ball":{"a":"Cricket Bat and Ball","b":"1F3CF","k":[11,32],"o":8},"printer":{"a":"Printer","b":"1F5A8-FE0F","c":"1F5A8","j":["paper","ink"],"k":[30,0],"o":7},"poultry_leg":{"a":"Poultry Leg","b":"1F357","j":["food","meat","drumstick","bird","chicken","turkey"],"k":[7,25]},"tired_face":{"a":"Tired Face","b":"1F62B","j":["sick","whine","upset","frustrated"],"k":[31,15]},"japanese_castle":{"a":"Japanese Castle","b":"1F3EF","j":["photo","building"],"k":[12,12]},"flag-bn":{"a":"Brunei Flag","b":"1F1E7-1F1F3","k":[1,7]},"field_hockey_stick_and_ball":{"a":"Field Hockey Stick and Ball","b":"1F3D1","k":[11,34],"o":8},"sleeping":{"a":"Sleeping Face","b":"1F634","j":["face","tired","sleepy","night","zzz"],"k":[31,24]},"left_right_arrow":{"a":"Left Right Arrow","b":"2194-FE0F","c":"2194","j":["shape","direction","horizontal","sideways"],"k":[46,33],"o":1},"keyboard":{"a":"Keyboard","b":"2328-FE0F","c":"2328","j":["technology","computer","type","input","text"],"k":[46,43],"o":1},"european_castle":{"a":"European Castle","b":"1F3F0","j":["building","royalty","history"],"k":[12,13]},"mouse":{"a":"Mouse Face","b":"1F42D","j":["animal","nature","cheese_wedge","rodent"],"k":[13,23]},"flag-bo":{"a":"Bolivia Flag","b":"1F1E7-1F1F4","k":[1,8]},"cut_of_meat":{"a":"Cut of Meat","b":"1F969","k":[42,21],"o":10},"ice_hockey_stick_and_puck":{"a":"Ice Hockey Stick and Puck","b":"1F3D2","k":[11,35],"o":8},"mouse2":{"a":"Mouse","b":"1F401","j":["animal","nature","rodent"],"k":[12,31]},"three_button_mouse":{"a":"Three Button Mouse","b":"1F5B1-FE0F","c":"1F5B1","k":[30,1],"o":7},"leftwards_arrow_with_hook":{"a":"Leftwards Arrow with Hook","b":"21A9-FE0F","c":"21A9","j":["back","return","blue-square","undo","enter"],"k":[46,39],"o":1},"bacon":{"a":"Bacon","b":"1F953","j":["food","breakfast","pork","pig","meat"],"k":[41,51],"o":9},"relieved":{"a":"Relieved Face","b":"1F60C","j":["face","relaxed","phew","massage","happiness"],"k":[30,36]},"wedding":{"a":"Wedding","b":"1F492","j":["love","like","affection","couple","marriage","bride","groom"],"k":[24,44]},"tokyo_tower":{"a":"Tokyo Tower","b":"1F5FC","j":["photo","japanese"],"k":[30,20]},"arrow_right_hook":{"a":"Rightwards Arrow with Hook","b":"21AA-FE0F","c":"21AA","j":["blue-square","return","rotate","direction"],"k":[46,40],"o":1},"hamburger":{"a":"Hamburger","b":"1F354","j":["meat","fast food","beef","cheeseburger","mcdonalds","burger king"],"k":[7,22]},"stuck_out_tongue":{"a":"Face with Stuck-out Tongue","b":"1F61B","j":["face","prank","childish","playful","mischievous","smile","tongue"],"k":[30,51],"l":[":p",":-p",":P",":-P",":b",":-b"],"m":":p"},"trackball":{"a":"Trackball","b":"1F5B2-FE0F","c":"1F5B2","j":["technology","trackpad"],"k":[30,2],"o":7},"flag-br":{"a":"Brazil Flag","b":"1F1E7-1F1F7","k":[1,10]},"rat":{"a":"Rat","b":"1F400","j":["animal","mouse","rodent"],"k":[12,30]},"table_tennis_paddle_and_ball":{"a":"Table Tennis Paddle and Ball","b":"1F3D3","k":[11,36],"o":8},"minidisc":{"a":"Minidisc","b":"1F4BD","j":["technology","record","data","disk","90s"],"k":[25,40]},"stuck_out_tongue_winking_eye":{"a":"Face with Stuck-out Tongue and Winking Eye","b":"1F61C","j":["face","prank","childish","playful","mischievous","smile","wink","tongue"],"k":[31,0],"l":[";p",";-p",";b",";-b",";P",";-P"],"m":";p"},"fries":{"a":"French Fries","b":"1F35F","j":["chips","snack","fast food"],"k":[7,33]},"badminton_racquet_and_shuttlecock":{"a":"Badminton Racquet and Shuttlecock","b":"1F3F8","k":[12,22],"o":8},"statue_of_liberty":{"a":"Statue of Liberty","b":"1F5FD","j":["american","newyork"],"k":[30,21]},"flag-bs":{"a":"Bahamas Flag","b":"1F1E7-1F1F8","k":[1,11]},"arrow_heading_up":{"a":"Arrow Pointing Rightwards Then Curving Upwards","b":"2934-FE0F","c":"2934","j":["blue-square","direction","top"],"k":[50,15],"o":3},"hamster":{"a":"Hamster Face","b":"1F439","j":["animal","nature"],"k":[13,35]},"stuck_out_tongue_closed_eyes":{"a":"Face with Stuck-out Tongue and Tightly-Closed Eyes","b":"1F61D","j":["face","prank","playful","mischievous","smile","tongue"],"k":[31,1]},"pizza":{"a":"Slice of Pizza","b":"1F355","j":["food","party"],"k":[7,23]},"boxing_glove":{"a":"Boxing Glove","b":"1F94A","j":["sports","fighting"],"k":[41,45],"o":9},"floppy_disk":{"a":"Floppy Disk","b":"1F4BE","j":["oldschool","technology","save","90s","80s"],"k":[25,41]},"arrow_heading_down":{"a":"Arrow Pointing Rightwards Then Curving Downwards","b":"2935-FE0F","c":"2935","j":["blue-square","direction","bottom"],"k":[50,16],"o":3},"flag-bt":{"a":"Bhutan Flag","b":"1F1E7-1F1F9","k":[1,12]},"rabbit":{"a":"Rabbit Face","b":"1F430","j":["animal","nature","pet","spring","magic","bunny"],"k":[13,26]},"church":{"a":"Church","b":"26EA","j":["building","religion","christ"],"k":[48,37],"o":5},"drooling_face":{"a":"Drooling Face","b":"1F924","j":["face"],"k":[38,27],"o":9},"flag-bv":{"a":"Bouvet Island Flag","b":"1F1E7-1F1FB","k":[1,13]},"mosque":{"a":"Mosque","b":"1F54C","j":["islam","worship","minaret"],"k":[28,15],"o":8},"rabbit2":{"a":"Rabbit","b":"1F407","j":["animal","nature","pet","magic","spring"],"k":[12,37]},"hotdog":{"a":"Hot Dog","b":"1F32D","j":["food","frankfurter"],"k":[6,35],"o":8},"martial_arts_uniform":{"a":"Martial Arts Uniform","b":"1F94B","j":["judo","karate","taekwondo"],"k":[41,46],"o":9},"arrows_clockwise":{"a":"Clockwise Downwards and Upwards Open Circle Arrows","b":"1F503","j":["sync","cycle","round","repeat"],"k":[27,5]},"cd":{"a":"Optical Disc","b":"1F4BF","j":["technology","dvd","disk","disc","90s"],"k":[25,42]},"arrows_counterclockwise":{"a":"Anticlockwise Downwards and Upwards Open Circle Arrows","b":"1F504","j":["blue-square","sync","cycle"],"k":[27,6]},"sandwich":{"a":"Sandwich","b":"1F96A","k":[42,22],"o":10},"chipmunk":{"a":"Chipmunk","b":"1F43F-FE0F","c":"1F43F","j":["animal","nature","rodent","squirrel"],"k":[13,41],"o":7},"synagogue":{"a":"Synagogue","b":"1F54D","j":["judaism","worship","temple","jewish"],"k":[28,16],"o":8},"unamused":{"a":"Unamused Face","b":"1F612","j":["indifference","bored","straight face","serious","sarcasm"],"k":[30,42],"m":":("},"goal_net":{"a":"Goal Net","b":"1F945","j":["sports"],"k":[41,41],"o":9},"flag-bw":{"a":"Botswana Flag","b":"1F1E7-1F1FC","k":[1,14]},"dvd":{"a":"Dvd","b":"1F4C0","j":["cd","disk","disc"],"k":[25,43]},"hedgehog":{"a":"Hedgehog","b":"1F994","k":[42,44],"o":10},"dart":{"a":"Direct Hit","b":"1F3AF","j":["game","play","bar"],"k":[9,9]},"taco":{"a":"Taco","b":"1F32E","j":["food","mexican"],"k":[6,36],"o":8},"back":{"a":"Back with Leftwards Arrow Above","b":"1F519","j":["arrow","words","return"],"k":[27,27]},"flag-by":{"a":"Belarus Flag","b":"1F1E7-1F1FE","k":[1,15]},"shinto_shrine":{"a":"Shinto Shrine","b":"26E9-FE0F","c":"26E9","j":["temple","japan","kyoto"],"k":[48,36],"o":5},"movie_camera":{"a":"Movie Camera","b":"1F3A5","j":["film","record"],"k":[8,51]},"sweat":{"a":"Face with Cold Sweat","b":"1F613","j":["face","hot","sad","tired","exercise"],"k":[30,43]},"burrito":{"a":"Burrito","b":"1F32F","j":["food","mexican"],"k":[6,37],"o":8},"flag-bz":{"a":"Belize Flag","b":"1F1E7-1F1FF","k":[1,16]},"pensive":{"a":"Pensive Face","b":"1F614","j":["face","sad","depressed","upset"],"k":[30,44]},"kaaba":{"a":"Kaaba","b":"1F54B","j":["mecca","mosque","islam"],"k":[28,14],"o":8},"film_frames":{"a":"Film Frames","b":"1F39E-FE0F","c":"1F39E","k":[8,44],"o":7},"bat":{"a":"Bat","b":"1F987","j":["animal","nature","blind","vampire"],"k":[42,31],"o":9},"golf":{"a":"Flag in Hole","b":"26F3","j":["sports","business","flag","hole","summer"],"k":[48,41],"o":5},"end":{"a":"End with Leftwards Arrow Above","b":"1F51A","j":["words","arrow"],"k":[27,28]},"film_projector":{"a":"Film Projector","b":"1F4FD-FE0F","c":"1F4FD","j":["video","tape","record","movie"],"k":[27,0],"o":7},"bear":{"a":"Bear Face","b":"1F43B","j":["animal","nature","wild"],"k":[13,37]},"ice_skate":{"a":"Ice Skate","b":"26F8-FE0F","c":"26F8","j":["sports"],"k":[48,45],"o":5},"fountain":{"a":"Fountain","b":"26F2","j":["photo","summer","water","fresh"],"k":[48,40],"o":5},"confused":{"a":"Confused Face","b":"1F615","j":["face","indifference","huh","weird","hmmm",":/"],"k":[30,45],"l":[":\\",":-\\",":/",":-/"]},"flag-ca":{"a":"Canada Flag","b":"1F1E8-1F1E6","k":[1,17]},"on":{"a":"On with Exclamation Mark with Left Right Arrow Above","b":"1F51B","j":["arrow","words"],"k":[27,29]},"stuffed_flatbread":{"a":"Stuffed Flatbread","b":"1F959","j":["food","flatbread","stuffed","gyro"],"k":[42,5],"o":9},"soon":{"a":"Soon with Rightwards Arrow Above","b":"1F51C","j":["arrow","words"],"k":[27,30]},"upside_down_face":{"a":"Upside-Down Face","b":"1F643","j":["face","flipped","silly","smile"],"k":[31,39],"o":8},"fishing_pole_and_fish":{"a":"Fishing Pole and Fish","b":"1F3A3","j":["food","hobby","summer"],"k":[8,49]},"tent":{"a":"Tent","b":"26FA","j":["photo","camping","outdoors"],"k":[49,12],"o":5},"clapper":{"a":"Clapper Board","b":"1F3AC","j":["movie","film","record"],"k":[9,6]},"egg":{"a":"Egg","b":"1F95A","j":["food","chicken","breakfast"],"k":[42,6],"o":9},"flag-cc":{"a":"Cocos (keeling) Islands Flag","b":"1F1E8-1F1E8","k":[1,18]},"koala":{"a":"Koala","b":"1F428","j":["animal","nature"],"k":[13,18]},"foggy":{"a":"Foggy","b":"1F301","j":["photo","mountain"],"k":[5,45]},"tv":{"a":"Television","b":"1F4FA","j":["technology","program","oldschool","show","television"],"k":[26,49]},"panda_face":{"a":"Panda Face","b":"1F43C","j":["animal","nature","panda"],"k":[13,38]},"fried_egg":{"a":"Cooking","b":"1F373","j":["food","breakfast","kitchen","egg"],"k":[8,1],"n":["cooking"]},"top":{"a":"Top with Upwards Arrow Above","b":"1F51D","j":["words","blue-square"],"k":[27,31]},"flag-cd":{"a":"Congo - Kinshasa Flag","b":"1F1E8-1F1E9","k":[1,19]},"money_mouth_face":{"a":"Money-Mouth Face","b":"1F911","j":["face","rich","dollar","money"],"k":[37,25],"o":8},"running_shirt_with_sash":{"a":"Running Shirt with Sash","b":"1F3BD","j":["play","pageant"],"k":[9,23]},"astonished":{"a":"Astonished Face","b":"1F632","j":["face","xox","surprised","poisoned"],"k":[31,22]},"feet":{"a":"Paw Prints","b":"1F43E","k":[13,40],"n":["paw_prints"]},"camera":{"a":"Camera","b":"1F4F7","j":["gadgets","photography"],"k":[26,46]},"flag-cf":{"a":"Central African Republic Flag","b":"1F1E8-1F1EB","k":[1,20]},"place_of_worship":{"a":"Place of Worship","b":"1F6D0","j":["religion","church","temple","prayer"],"k":[37,5],"o":8},"night_with_stars":{"a":"Night with Stars","b":"1F303","j":["evening","city","downtown"],"k":[5,47]},"ski":{"a":"Ski and Ski Boot","b":"1F3BF","j":["sports","winter","cold","snow"],"k":[9,25]},"shallow_pan_of_food":{"a":"Shallow Pan of Food","b":"1F958","j":["food","cooking","casserole","paella"],"k":[42,4],"o":9},"camera_with_flash":{"a":"Camera with Flash","b":"1F4F8","k":[26,47],"o":7},"sunrise_over_mountains":{"a":"Sunrise over Mountains","b":"1F304","j":["view","vacation","photo"],"k":[5,48]},"turkey":{"a":"Turkey","b":"1F983","j":["animal","bird"],"k":[42,27],"o":8},"white_frowning_face":{"a":"White Frowning Face","b":"2639-FE0F","c":"2639","k":[47,40],"o":1},"flag-cg":{"a":"Congo - Brazzaville Flag","b":"1F1E8-1F1EC","k":[1,21]},"stew":{"a":"Pot of Food","b":"1F372","j":["food","meat","soup"],"k":[8,0]},"sled":{"a":"Sled","b":"1F6F7","k":[37,22],"o":10},"atom_symbol":{"a":"Atom Symbol","b":"269B-FE0F","c":"269B","j":["science","physics","chemistry"],"k":[48,18],"o":4},"curling_stone":{"a":"Curling Stone","b":"1F94C","k":[41,47],"o":10},"slightly_frowning_face":{"a":"Slightly Frowning Face","b":"1F641","j":["face","frowning","disappointed","sad","upset"],"k":[31,37],"o":7},"sunrise":{"a":"Sunrise","b":"1F305","j":["morning","view","vacation","photo"],"k":[5,49]},"om_symbol":{"a":"Om Symbol","b":"1F549-FE0F","c":"1F549","k":[28,12],"o":7},"chicken":{"a":"Chicken","b":"1F414","j":["animal","cluck","nature","bird"],"k":[12,50]},"bowl_with_spoon":{"a":"Bowl with Spoon","b":"1F963","k":[42,15],"o":10},"flag-ch":{"a":"Switzerland Flag","b":"1F1E8-1F1ED","k":[1,22]},"video_camera":{"a":"Video Camera","b":"1F4F9","j":["film","record"],"k":[26,48]},"video_game":{"a":"Video Game","b":"1F3AE","j":["play","console","PS4","controller"],"k":[9,8]},"rooster":{"a":"Rooster","b":"1F413","j":["animal","nature","chicken"],"k":[12,49]},"vhs":{"a":"Videocassette","b":"1F4FC","j":["record","video","oldschool","90s","80s"],"k":[26,51]},"city_sunset":{"a":"Cityscape at Dusk","b":"1F306","j":["photo","evening","sky","buildings"],"k":[5,50]},"confounded":{"a":"Confounded Face","b":"1F616","j":["face","confused","sick","unwell","oops",":S"],"k":[30,46]},"green_salad":{"a":"Green Salad","b":"1F957","j":["food","healthy","lettuce"],"k":[42,3],"o":9},"star_of_david":{"a":"Star of David","b":"2721-FE0F","c":"2721","j":["judaism"],"k":[49,47],"o":1},"flag-ci":{"a":"Côte D’ivoire Flag","b":"1F1E8-1F1EE","k":[1,23]},"popcorn":{"a":"Popcorn","b":"1F37F","j":["food","movie theater","films","snack"],"k":[8,13],"o":8},"city_sunrise":{"a":"Sunset over Buildings","b":"1F307","j":["photo","good morning","dawn"],"k":[5,51]},"disappointed":{"a":"Disappointed Face","b":"1F61E","j":["face","sad","upset","depressed",":("],"k":[31,2],"l":["):",":(",":-("],"m":":("},"mag":{"a":"Left-Pointing Magnifying Glass","b":"1F50D","j":["search","zoom","find","detective"],"k":[27,15]},"hatching_chick":{"a":"Hatching Chick","b":"1F423","j":["animal","chicken","egg","born","baby","bird"],"k":[13,13]},"joystick":{"a":"Joystick","b":"1F579-FE0F","c":"1F579","j":["game","play"],"k":[29,20],"o":7},"wheel_of_dharma":{"a":"Wheel of Dharma","b":"2638-FE0F","c":"2638","j":["hinduism","buddhism","sikhism","jainism"],"k":[47,39],"o":1},"flag-ck":{"a":"Cook Islands Flag","b":"1F1E8-1F1F0","k":[1,24]},"canned_food":{"a":"Canned Food","b":"1F96B","k":[42,23],"o":10},"worried":{"a":"Worried Face","b":"1F61F","j":["face","concern","nervous",":("],"k":[31,3]},"baby_chick":{"a":"Baby Chick","b":"1F424","j":["animal","chicken","bird"],"k":[13,14]},"flag-cl":{"a":"Chile Flag","b":"1F1E8-1F1F1","k":[1,25]},"game_die":{"a":"Game Die","b":"1F3B2","j":["dice","random","tabletop","play","luck"],"k":[9,12]},"mag_right":{"a":"Right-Pointing Magnifying Glass","b":"1F50E","j":["search","zoom","find","detective"],"k":[27,16]},"yin_yang":{"a":"Yin Yang","b":"262F-FE0F","c":"262F","j":["balance"],"k":[47,38],"o":1},"bridge_at_night":{"a":"Bridge at Night","b":"1F309","j":["photo","sanfrancisco"],"k":[6,1]},"spades":{"a":"Black Spade Suit","b":"2660-FE0F","c":"2660","j":["poker","cards","suits","magic"],"k":[48,4],"o":1},"hatched_chick":{"a":"Front-Facing Baby Chick","b":"1F425","j":["animal","chicken","baby","bird"],"k":[13,15]},"flag-cm":{"a":"Cameroon Flag","b":"1F1E8-1F1F2","k":[1,26]},"latin_cross":{"a":"Latin Cross","b":"271D-FE0F","c":"271D","j":["christianity"],"k":[49,46],"o":1},"triumph":{"a":"Face with Look of Triumph","b":"1F624","j":["face","gas","phew","proud","pride"],"k":[31,8]},"hotsprings":{"a":"Hot Springs","b":"2668-FE0F","c":"2668","j":["bath","warm","relax"],"k":[48,8],"o":1},"bento":{"a":"Bento Box","b":"1F371","j":["food","japanese","box"],"k":[7,51]},"microscope":{"a":"Microscope","b":"1F52C","j":["laboratory","experiment","zoomin","science","study"],"k":[27,46]},"cry":{"a":"Crying Face","b":"1F622","j":["face","tears","sad","depressed","upset",":'("],"k":[31,6],"l":[":'("],"m":":'("},"bird":{"a":"Bird","b":"1F426","j":["animal","nature","fly","tweet","spring"],"k":[13,16]},"cn":{"a":"China Flag","b":"1F1E8-1F1F3","j":["china","chinese","prc","flag","country","nation","banner"],"k":[1,27],"n":["flag-cn"]},"telescope":{"a":"Telescope","b":"1F52D","j":["stars","space","zoom","science","astronomy"],"k":[27,47]},"rice_cracker":{"a":"Rice Cracker","b":"1F358","j":["food","japanese"],"k":[7,26]},"hearts":{"a":"Black Heart Suit","b":"2665-FE0F","c":"2665","j":["poker","cards","magic","suits"],"k":[48,6],"o":1},"orthodox_cross":{"a":"Orthodox Cross","b":"2626-FE0F","c":"2626","j":["suppedaneum","religion"],"k":[47,35],"o":1},"milky_way":{"a":"Milky Way","b":"1F30C","j":["photo","space","stars"],"k":[6,4]},"rice_ball":{"a":"Rice Ball","b":"1F359","j":["food","japanese"],"k":[7,27]},"satellite_antenna":{"a":"Satellite Antenna","b":"1F4E1","k":[26,24]},"flag-co":{"a":"Colombia Flag","b":"1F1E8-1F1F4","k":[1,28]},"carousel_horse":{"a":"Carousel Horse","b":"1F3A0","j":["photo","carnival"],"k":[8,46]},"sob":{"a":"Loudly Crying Face","b":"1F62D","j":["face","cry","tears","sad","upset","depressed"],"k":[31,17],"m":":'("},"diamonds":{"a":"Black Diamond Suit","b":"2666-FE0F","c":"2666","j":["poker","cards","magic","suits"],"k":[48,7],"o":1},"star_and_crescent":{"a":"Star and Crescent","b":"262A-FE0F","c":"262A","j":["islam"],"k":[47,36],"o":1},"penguin":{"a":"Penguin","b":"1F427","j":["animal","nature"],"k":[13,17]},"dove_of_peace":{"a":"Dove of Peace","b":"1F54A-FE0F","c":"1F54A","k":[28,13],"o":7},"flag-cp":{"a":"Clipperton Island Flag","b":"1F1E8-1F1F5","k":[1,29]},"ferris_wheel":{"a":"Ferris Wheel","b":"1F3A1","j":["photo","carnival","londoneye"],"k":[8,47]},"clubs":{"a":"Black Club Suit","b":"2663-FE0F","c":"2663","j":["poker","cards","magic","suits"],"k":[48,5],"o":1},"peace_symbol":{"a":"Peace Symbol","b":"262E-FE0F","c":"262E","j":["hippie"],"k":[47,37],"o":1},"candle":{"a":"Candle","b":"1F56F-FE0F","c":"1F56F","j":["fire","wax"],"k":[28,42],"o":7},"frowning":{"a":"Frowning Face with Open Mouth","b":"1F626","j":["face","aw","what"],"k":[31,10]},"rice":{"a":"Cooked Rice","b":"1F35A","j":["food","china","asian"],"k":[7,28]},"flag-cr":{"a":"Costa Rica Flag","b":"1F1E8-1F1F7","k":[1,30]},"roller_coaster":{"a":"Roller Coaster","b":"1F3A2","j":["carnival","playground","photo","fun"],"k":[8,48]},"menorah_with_nine_branches":{"a":"Menorah with Nine Branches","b":"1F54E","k":[28,17],"o":8},"black_joker":{"a":"Playing Card Black Joker","b":"1F0CF","j":["poker","cards","game","play","magic"],"k":[0,15]},"eagle":{"a":"Eagle","b":"1F985","j":["animal","nature","bird"],"k":[42,29],"o":9},"curry":{"a":"Curry and Rice","b":"1F35B","j":["food","spicy","hot","indian"],"k":[7,29]},"bulb":{"a":"Electric Light Bulb","b":"1F4A1","j":["light","electricity","idea"],"k":[25,7]},"anguished":{"a":"Anguished Face","b":"1F627","j":["face","stunned","nervous"],"k":[31,11],"l":["D:"]},"flag-cu":{"a":"Cuba Flag","b":"1F1E8-1F1FA","k":[1,31]},"barber":{"a":"Barber Pole","b":"1F488","j":["hair","salon","style"],"k":[24,34]},"duck":{"a":"Duck","b":"1F986","j":["animal","nature","bird","mallard"],"k":[42,30],"o":9},"six_pointed_star":{"a":"Six Pointed Star with Middle Dot","b":"1F52F","j":["purple-square","religion","jewish","hexagram"],"k":[27,49]},"ramen":{"a":"Steaming Bowl","b":"1F35C","j":["food","japanese","noodle","chopsticks"],"k":[7,30]},"flashlight":{"a":"Electric Torch","b":"1F526","j":["dark","camping","sight","night"],"k":[27,40]},"mahjong":{"a":"Mahjong Tile Red Dragon","b":"1F004","j":["game","play","chinese","kanji"],"k":[0,14],"o":5},"fearful":{"a":"Fearful Face","b":"1F628","j":["face","scared","terrified","nervous","oops","huh"],"k":[31,12]},"aries":{"a":"Aries","b":"2648","j":["sign","purple-square","zodiac","astrology"],"k":[47,44],"o":1},"spaghetti":{"a":"Spaghetti","b":"1F35D","j":["food","italian","noodle"],"k":[7,31]},"circus_tent":{"a":"Circus Tent","b":"1F3AA","j":["festival","carnival","party"],"k":[9,4]},"izakaya_lantern":{"a":"Izakaya Lantern","b":"1F3EE","j":["light","paper","halloween","spooky"],"k":[12,11],"n":["lantern"]},"flag-cv":{"a":"Cape Verde Flag","b":"1F1E8-1F1FB","k":[1,32]},"weary":{"a":"Weary Face","b":"1F629","j":["face","tired","sleepy","sad","frustrated","upset"],"k":[31,13]},"flower_playing_cards":{"a":"Flower Playing Cards","b":"1F3B4","j":["game","sunset","red"],"k":[9,14]},"owl":{"a":"Owl","b":"1F989","j":["animal","nature","bird","hoot"],"k":[42,33],"o":9},"performing_arts":{"a":"Performing Arts","b":"1F3AD","j":["acting","theater","drama"],"k":[9,7]},"frog":{"a":"Frog Face","b":"1F438","j":["animal","nature","croak","toad"],"k":[13,34]},"flag-cw":{"a":"Curaçao Flag","b":"1F1E8-1F1FC","k":[1,33]},"notebook_with_decorative_cover":{"a":"Notebook with Decorative Cover","b":"1F4D4","j":["classroom","notes","record","paper","study"],"k":[26,11]},"exploding_head":{"a":"Shocked Face with Exploding Head","b":"1F92F","k":[39,3],"n":["shocked_face_with_exploding_head"],"o":10},"taurus":{"a":"Taurus","b":"2649","j":["purple-square","sign","zodiac","astrology"],"k":[47,45],"o":1},"sweet_potato":{"a":"Roasted Sweet Potato","b":"1F360","j":["food","nature"],"k":[7,34]},"closed_book":{"a":"Closed Book","b":"1F4D5","j":["read","library","knowledge","textbook","learn"],"k":[26,12]},"gemini":{"a":"Gemini","b":"264A","j":["sign","zodiac","purple-square","astrology"],"k":[47,46],"o":1},"frame_with_picture":{"a":"Frame with Picture","b":"1F5BC-FE0F","c":"1F5BC","k":[30,3],"o":7},"flag-cx":{"a":"Christmas Island Flag","b":"1F1E8-1F1FD","k":[1,34]},"grimacing":{"a":"Grimacing Face","b":"1F62C","j":["face","grimace","teeth"],"k":[31,16]},"crocodile":{"a":"Crocodile","b":"1F40A","j":["animal","nature","reptile","lizard","alligator"],"k":[12,40]},"oden":{"a":"Oden","b":"1F362","j":["food","japanese"],"k":[7,36]},"flag-cy":{"a":"Cyprus Flag","b":"1F1E8-1F1FE","k":[1,35]},"book":{"a":"Open Book","b":"1F4D6","k":[26,13],"n":["open_book"]},"turtle":{"a":"Turtle","b":"1F422","j":["animal","slow","nature","tortoise"],"k":[13,12]},"art":{"a":"Artist Palette","b":"1F3A8","j":["design","paint","draw","colors"],"k":[9,2]},"sushi":{"a":"Sushi","b":"1F363","j":["food","fish","japanese","rice"],"k":[7,37]},"cold_sweat":{"a":"Face with Open Mouth and Cold Sweat","b":"1F630","j":["face","nervous","sweat"],"k":[31,20]},"cancer":{"a":"Cancer","b":"264B","j":["sign","zodiac","purple-square","astrology"],"k":[47,47],"o":1},"fried_shrimp":{"a":"Fried Shrimp","b":"1F364","j":["food","animal","appetizer","summer"],"k":[7,38]},"slot_machine":{"a":"Slot Machine","b":"1F3B0","j":["bet","gamble","vegas","fruit machine","luck","casino"],"k":[9,10]},"scream":{"a":"Face Screaming in Fear","b":"1F631","j":["face","munch","scared","omg"],"k":[31,21]},"green_book":{"a":"Green Book","b":"1F4D7","j":["read","library","knowledge","study"],"k":[26,14]},"leo":{"a":"Leo","b":"264C","j":["sign","purple-square","zodiac","astrology"],"k":[47,48],"o":1},"flag-cz":{"a":"Czechia Flag","b":"1F1E8-1F1FF","k":[1,36]},"lizard":{"a":"Lizard","b":"1F98E","j":["animal","nature","reptile"],"k":[42,38],"o":9},"virgo":{"a":"Virgo","b":"264D","j":["sign","zodiac","purple-square","astrology"],"k":[47,49],"o":1},"steam_locomotive":{"a":"Steam Locomotive","b":"1F682","j":["transportation","vehicle","train"],"k":[34,10]},"de":{"a":"Germany Flag","b":"1F1E9-1F1EA","j":["german","nation","flag","country","banner"],"k":[1,37],"n":["flag-de"]},"flushed":{"a":"Flushed Face","b":"1F633","j":["face","blush","shy","flattered"],"k":[31,23]},"blue_book":{"a":"Blue Book","b":"1F4D8","j":["read","library","knowledge","learn","study"],"k":[26,15]},"snake":{"a":"Snake","b":"1F40D","j":["animal","evil","nature","hiss","python"],"k":[12,43]},"fish_cake":{"a":"Fish Cake with Swirl Design","b":"1F365","j":["food","japan","sea","beach","narutomaki","pink","swirl","kamaboko","surimi","ramen"],"k":[7,39]},"railway_car":{"a":"Railway Car","b":"1F683","j":["transportation","vehicle"],"k":[34,11]},"dango":{"a":"Dango","b":"1F361","j":["food","dessert","sweet","japanese","barbecue","meat"],"k":[7,35]},"orange_book":{"a":"Orange Book","b":"1F4D9","j":["read","library","knowledge","textbook","study"],"k":[26,16]},"libra":{"a":"Libra","b":"264E","j":["sign","purple-square","zodiac","astrology"],"k":[47,50],"o":1},"dragon_face":{"a":"Dragon Face","b":"1F432","j":["animal","myth","nature","chinese","green"],"k":[13,28]},"zany_face":{"a":"Grinning Face with One Large and One Small Eye","b":"1F92A","k":[38,50],"n":["grinning_face_with_one_large_and_one_small_eye"],"o":10},"books":{"a":"Books","b":"1F4DA","j":["literature","library","study"],"k":[26,17]},"dragon":{"a":"Dragon","b":"1F409","j":["animal","myth","nature","chinese","green"],"k":[12,39]},"flag-dj":{"a":"Djibouti Flag","b":"1F1E9-1F1EF","k":[1,39]},"dumpling":{"a":"Dumpling","b":"1F95F","k":[42,11],"o":10},"dizzy_face":{"a":"Dizzy Face","b":"1F635","j":["spent","unconscious","xox","dizzy"],"k":[31,25]},"scorpius":{"a":"Scorpius","b":"264F","j":["sign","zodiac","purple-square","astrology","scorpio"],"k":[47,51],"o":1},"bullettrain_side":{"a":"High-Speed Train","b":"1F684","j":["transportation","vehicle"],"k":[34,12]},"bullettrain_front":{"a":"High-Speed Train with Bullet Nose","b":"1F685","j":["transportation","vehicle","speed","fast","public","travel"],"k":[34,13]},"notebook":{"a":"Notebook","b":"1F4D3","j":["stationery","record","notes","paper","study"],"k":[26,10]},"fortune_cookie":{"a":"Fortune Cookie","b":"1F960","k":[42,12],"o":10},"sagittarius":{"a":"Sagittarius","b":"2650","j":["sign","zodiac","purple-square","astrology"],"k":[48,0],"o":1},"sauropod":{"a":"Sauropod","b":"1F995","k":[42,45],"o":10},"flag-dk":{"a":"Denmark Flag","b":"1F1E9-1F1F0","k":[1,40]},"rage":{"a":"Pouting Face","b":"1F621","j":["angry","mad","hate","despise"],"k":[31,5]},"ledger":{"a":"Ledger","b":"1F4D2","j":["notes","paper"],"k":[26,9]},"angry":{"a":"Angry Face","b":"1F620","j":["mad","face","annoyed","frustrated"],"k":[31,4],"l":[">:(",">:-("]},"t-rex":{"a":"T-Rex","b":"1F996","k":[42,46],"o":10},"capricorn":{"a":"Capricorn","b":"2651","j":["sign","zodiac","purple-square","astrology"],"k":[48,1],"o":1},"takeout_box":{"a":"Takeout Box","b":"1F961","k":[42,13],"o":10},"flag-dm":{"a":"Dominica Flag","b":"1F1E9-1F1F2","k":[1,41]},"train2":{"a":"Train","b":"1F686","j":["transportation","vehicle"],"k":[34,14]},"page_with_curl":{"a":"Page with Curl","b":"1F4C3","j":["documents","office","paper"],"k":[25,46]},"whale":{"a":"Spouting Whale","b":"1F433","j":["animal","nature","sea","ocean"],"k":[13,29]},"face_with_symbols_on_mouth":{"a":"Serious Face with Symbols Covering Mouth","b":"1F92C","k":[39,0],"n":["serious_face_with_symbols_covering_mouth"],"o":10},"flag-do":{"a":"Dominican Republic Flag","b":"1F1E9-1F1F4","k":[1,42]},"metro":{"a":"Metro","b":"1F687","j":["transportation","blue-square","mrt","underground","tube"],"k":[34,15]},"icecream":{"a":"Soft Ice Cream","b":"1F366","j":["food","hot","dessert","summer"],"k":[7,40]},"aquarius":{"a":"Aquarius","b":"2652","j":["sign","purple-square","zodiac","astrology"],"k":[48,2],"o":1},"flag-dz":{"a":"Algeria Flag","b":"1F1E9-1F1FF","k":[1,43]},"whale2":{"a":"Whale","b":"1F40B","j":["animal","nature","sea","ocean"],"k":[12,41]},"mask":{"a":"Face with Medical Mask","b":"1F637","j":["face","sick","ill","disease"],"k":[31,27]},"scroll":{"a":"Scroll","b":"1F4DC","j":["documents","ancient","history","paper"],"k":[26,19]},"shaved_ice":{"a":"Shaved Ice","b":"1F367","j":["hot","dessert","summer"],"k":[7,41]},"pisces":{"a":"Pisces","b":"2653","j":["purple-square","sign","zodiac","astrology"],"k":[48,3],"o":1},"light_rail":{"a":"Light Rail","b":"1F688","j":["transportation","vehicle"],"k":[34,16]},"dolphin":{"a":"Dolphin","b":"1F42C","j":["animal","nature","fish","sea","ocean","flipper","fins","beach"],"k":[13,22],"n":["flipper"]},"face_with_thermometer":{"a":"Face with Thermometer","b":"1F912","j":["sick","temperature","thermometer","cold","fever"],"k":[37,26],"o":8},"ophiuchus":{"a":"Ophiuchus","b":"26CE","j":["sign","purple-square","constellation","astrology"],"k":[48,31]},"station":{"a":"Station","b":"1F689","j":["transportation","vehicle","public"],"k":[34,17]},"ice_cream":{"a":"Ice Cream","b":"1F368","j":["food","hot","dessert"],"k":[7,42]},"page_facing_up":{"a":"Page Facing Up","b":"1F4C4","j":["documents","office","paper","information"],"k":[25,47]},"doughnut":{"a":"Doughnut","b":"1F369","j":["food","dessert","snack","sweet","donut"],"k":[7,43]},"face_with_head_bandage":{"a":"Face with Head-Bandage","b":"1F915","j":["injured","clumsy","bandage","hurt"],"k":[37,29],"o":8},"fish":{"a":"Fish","b":"1F41F","j":["animal","food","nature"],"k":[13,9]},"newspaper":{"a":"Newspaper","b":"1F4F0","j":["press","headline"],"k":[26,39]},"tram":{"a":"Tram","b":"1F68A","j":["transportation","vehicle"],"k":[34,18]},"flag-ec":{"a":"Ecuador Flag","b":"1F1EA-1F1E8","k":[1,45]},"twisted_rightwards_arrows":{"a":"Twisted Rightwards Arrows","b":"1F500","j":["blue-square","shuffle","music","random"],"k":[27,2]},"flag-ee":{"a":"Estonia Flag","b":"1F1EA-1F1EA","k":[1,46]},"cookie":{"a":"Cookie","b":"1F36A","j":["food","snack","oreo","chocolate","sweet","dessert"],"k":[7,44]},"monorail":{"a":"Monorail","b":"1F69D","j":["transportation","vehicle"],"k":[34,37]},"tropical_fish":{"a":"Tropical Fish","b":"1F420","j":["animal","swim","ocean","beach","nemo"],"k":[13,10]},"rolled_up_newspaper":{"a":"Rolled Up Newspaper","b":"1F5DE-FE0F","c":"1F5DE","k":[30,12],"o":7},"nauseated_face":{"a":"Nauseated Face","b":"1F922","j":["face","vomit","gross","green","sick","throw up","ill"],"k":[38,25],"o":9},"repeat":{"a":"Clockwise Rightwards and Leftwards Open Circle Arrows","b":"1F501","j":["loop","record"],"k":[27,3]},"bookmark_tabs":{"a":"Bookmark Tabs","b":"1F4D1","j":["favorite","save","order","tidy"],"k":[26,8]},"repeat_one":{"a":"Clockwise Rightwards and Leftwards Open Circle Arrows with Circled One Overlay","b":"1F502","j":["blue-square","loop"],"k":[27,4]},"flag-eg":{"a":"Egypt Flag","b":"1F1EA-1F1EC","k":[1,47]},"mountain_railway":{"a":"Mountain Railway","b":"1F69E","j":["transportation","vehicle"],"k":[34,38]},"birthday":{"a":"Birthday Cake","b":"1F382","j":["food","dessert","cake"],"k":[8,16]},"blowfish":{"a":"Blowfish","b":"1F421","j":["animal","nature","food","sea","ocean"],"k":[13,11]},"face_vomiting":{"a":"Face with Open Mouth Vomiting","b":"1F92E","k":[39,2],"n":["face_with_open_mouth_vomiting"],"o":10},"arrow_forward":{"a":"Black Right-Pointing Triangle","b":"25B6-FE0F","c":"25B6","j":["blue-square","right","direction","play"],"k":[47,10],"o":1},"bookmark":{"a":"Bookmark","b":"1F516","j":["favorite","label","save"],"k":[27,24]},"shark":{"a":"Shark","b":"1F988","j":["animal","nature","fish","sea","ocean","jaws","fins","beach"],"k":[42,32],"o":9},"train":{"a":"Tram Car","b":"1F68B","j":["transportation","vehicle","carriage","public","travel"],"k":[34,19]},"sneezing_face":{"a":"Sneezing Face","b":"1F927","j":["face","gesundheit","sneeze","sick","allergy"],"k":[38,47],"o":9},"cake":{"a":"Shortcake","b":"1F370","j":["food","dessert"],"k":[7,50]},"bus":{"a":"Bus","b":"1F68C","j":["car","vehicle","transportation"],"k":[34,20]},"pie":{"a":"Pie","b":"1F967","k":[42,19],"o":10},"innocent":{"a":"Smiling Face with Halo","b":"1F607","j":["face","angel","heaven","halo"],"k":[30,31]},"fast_forward":{"a":"Black Right-Pointing Double Triangle","b":"23E9","j":["blue-square","play","speed","continue"],"k":[46,45]},"label":{"a":"Label","b":"1F3F7-FE0F","c":"1F3F7","j":["sale","tag"],"k":[12,21],"o":7},"octopus":{"a":"Octopus","b":"1F419","j":["animal","creature","ocean","sea","nature","beach"],"k":[13,3]},"flag-er":{"a":"Eritrea Flag","b":"1F1EA-1F1F7","k":[1,49]},"black_right_pointing_double_triangle_with_vertical_bar":{"a":"Black Right Pointing Double Triangle with Vertical Bar","b":"23ED-FE0F","c":"23ED","k":[46,49]},"chocolate_bar":{"a":"Chocolate Bar","b":"1F36B","j":["food","snack","dessert","sweet"],"k":[7,45]},"oncoming_bus":{"a":"Oncoming Bus","b":"1F68D","j":["vehicle","transportation"],"k":[34,21]},"shell":{"a":"Spiral Shell","b":"1F41A","j":["nature","sea","beach"],"k":[13,4]},"face_with_cowboy_hat":{"a":"Face with Cowboy Hat","b":"1F920","k":[38,23],"o":9},"moneybag":{"a":"Money Bag","b":"1F4B0","j":["dollar","payment","coins","sale"],"k":[25,27]},"es":{"a":"Spain Flag","b":"1F1EA-1F1F8","j":["spain","flag","nation","country","banner"],"k":[1,50],"n":["flag-es"]},"crab":{"a":"Crab","b":"1F980","j":["animal","crustacean"],"k":[42,24],"o":8},"yen":{"a":"Banknote with Yen Sign","b":"1F4B4","j":["money","sales","japanese","dollar","currency"],"k":[25,31]},"flag-et":{"a":"Ethiopia Flag","b":"1F1EA-1F1F9","k":[1,51]},"clown_face":{"a":"Clown Face","b":"1F921","j":["face"],"k":[38,24],"o":9},"black_right_pointing_triangle_with_double_vertical_bar":{"a":"Black Right Pointing Triangle with Double Vertical Bar","b":"23EF-FE0F","c":"23EF","k":[46,51]},"trolleybus":{"a":"Trolleybus","b":"1F68E","j":["bart","transportation","vehicle"],"k":[34,22]},"candy":{"a":"Candy","b":"1F36C","j":["snack","dessert","sweet","lolly"],"k":[7,46]},"lying_face":{"a":"Lying Face","b":"1F925","j":["face","lie","pinocchio"],"k":[38,28],"o":9},"arrow_backward":{"a":"Black Left-Pointing Triangle","b":"25C0-FE0F","c":"25C0","j":["blue-square","left","direction"],"k":[47,11],"o":1},"dollar":{"a":"Banknote with Dollar Sign","b":"1F4B5","j":["money","sales","bill","currency"],"k":[25,32]},"shrimp":{"a":"Shrimp","b":"1F990","j":["animal","ocean","nature","seafood"],"k":[42,40],"o":9},"minibus":{"a":"Minibus","b":"1F690","j":["vehicle","car","transportation"],"k":[34,24]},"flag-eu":{"a":"European Union Flag","b":"1F1EA-1F1FA","k":[2,0]},"lollipop":{"a":"Lollipop","b":"1F36D","j":["food","snack","candy","sweet"],"k":[7,47]},"squid":{"a":"Squid","b":"1F991","j":["animal","nature","ocean","sea"],"k":[42,41],"o":9},"euro":{"a":"Banknote with Euro Sign","b":"1F4B6","j":["money","sales","dollar","currency"],"k":[25,33]},"flag-fi":{"a":"Finland Flag","b":"1F1EB-1F1EE","k":[2,1]},"ambulance":{"a":"Ambulance","b":"1F691","j":["health","911","hospital"],"k":[34,25]},"custard":{"a":"Custard","b":"1F36E","j":["dessert","food"],"k":[7,48]},"shushing_face":{"a":"Face with Finger Covering Closed Lips","b":"1F92B","k":[38,51],"n":["face_with_finger_covering_closed_lips"],"o":10},"rewind":{"a":"Black Left-Pointing Double Triangle","b":"23EA","j":["play","blue-square"],"k":[46,46]},"black_left_pointing_double_triangle_with_vertical_bar":{"a":"Black Left Pointing Double Triangle with Vertical Bar","b":"23EE-FE0F","c":"23EE","k":[46,50]},"face_with_hand_over_mouth":{"a":"Smiling Face with Smiling Eyes and Hand Covering Mouth","b":"1F92D","k":[39,1],"n":["smiling_face_with_smiling_eyes_and_hand_covering_mouth"],"o":10},"flag-fj":{"a":"Fiji Flag","b":"1F1EB-1F1EF","k":[2,2]},"honey_pot":{"a":"Honey Pot","b":"1F36F","j":["bees","sweet","kitchen"],"k":[7,49]},"snail":{"a":"Snail","b":"1F40C","j":["slow","animal","shell"],"k":[12,42]},"pound":{"a":"Banknote with Pound Sign","b":"1F4B7","j":["british","sterling","money","sales","bills","uk","england","currency"],"k":[25,34]},"fire_engine":{"a":"Fire Engine","b":"1F692","j":["transportation","cars","vehicle"],"k":[34,26]},"baby_bottle":{"a":"Baby Bottle","b":"1F37C","j":["food","container","milk"],"k":[8,10]},"butterfly":{"a":"Butterfly","b":"1F98B","j":["animal","insect","nature","caterpillar"],"k":[42,35],"o":9},"money_with_wings":{"a":"Money with Wings","b":"1F4B8","j":["dollar","bills","payment","sale"],"k":[25,35]},"face_with_monocle":{"a":"Face with Monocle","b":"1F9D0","k":[42,49],"o":10},"police_car":{"a":"Police Car","b":"1F693","j":["vehicle","cars","transportation","law","legal","enforcement"],"k":[34,27]},"arrow_up_small":{"a":"Up-Pointing Small Red Triangle","b":"1F53C","j":["blue-square","triangle","direction","point","forward","top"],"k":[28,10]},"flag-fm":{"a":"Micronesia Flag","b":"1F1EB-1F1F2","k":[2,4]},"glass_of_milk":{"a":"Glass of Milk","b":"1F95B","k":[42,7],"o":9},"credit_card":{"a":"Credit Card","b":"1F4B3","j":["money","sales","dollar","bill","payment","shopping"],"k":[25,30]},"oncoming_police_car":{"a":"Oncoming Police Car","b":"1F694","j":["vehicle","law","legal","enforcement","911"],"k":[34,28]},"bug":{"a":"Bug","b":"1F41B","j":["animal","insect","nature","worm"],"k":[13,5]},"nerd_face":{"a":"Nerd Face","b":"1F913","j":["face","nerdy","geek","dork"],"k":[37,27],"o":8},"arrow_double_up":{"a":"Black Up-Pointing Double Triangle","b":"23EB","j":["blue-square","direction","top"],"k":[46,47]},"chart":{"a":"Chart with Upwards Trend and Yen Sign","b":"1F4B9","j":["green-square","graph","presentation","stats"],"k":[25,36]},"flag-fo":{"a":"Faroe Islands Flag","b":"1F1EB-1F1F4","k":[2,5]},"ant":{"a":"Ant","b":"1F41C","j":["animal","insect","nature","bug"],"k":[13,6]},"arrow_down_small":{"a":"Down-Pointing Small Red Triangle","b":"1F53D","j":["blue-square","direction","bottom"],"k":[28,11]},"smiling_imp":{"a":"Smiling Face with Horns","b":"1F608","j":["devil","horns"],"k":[30,32]},"taxi":{"a":"Taxi","b":"1F695","j":["uber","vehicle","cars","transportation"],"k":[34,29]},"coffee":{"a":"Hot Beverage","b":"2615","j":["beverage","caffeine","latte","espresso"],"k":[47,24],"o":4},"fr":{"a":"France Flag","b":"1F1EB-1F1F7","j":["banner","flag","nation","france","french","country"],"k":[2,6],"n":["flag-fr"]},"oncoming_taxi":{"a":"Oncoming Taxi","b":"1F696","j":["vehicle","cars","uber"],"k":[34,30]},"arrow_double_down":{"a":"Black Down-Pointing Double Triangle","b":"23EC","j":["blue-square","direction","bottom"],"k":[46,48]},"imp":{"a":"Imp","b":"1F47F","j":["devil","angry","horns"],"k":[22,51]},"currency_exchange":{"a":"Currency Exchange","b":"1F4B1","j":["money","sales","dollar","travel"],"k":[25,28]},"tea":{"a":"Teacup Without Handle","b":"1F375","j":["drink","bowl","breakfast","green","british"],"k":[8,3]},"bee":{"a":"Honeybee","b":"1F41D","k":[13,7],"n":["honeybee"]},"heavy_dollar_sign":{"a":"Heavy Dollar Sign","b":"1F4B2","j":["money","sales","payment","currency","buck"],"k":[25,29]},"car":{"a":"Automobile","b":"1F697","k":[34,31],"n":["red_car"]},"sake":{"a":"Sake Bottle and Cup","b":"1F376","j":["wine","drink","drunk","beverage","japanese","alcohol","booze"],"k":[8,4]},"flag-ga":{"a":"Gabon Flag","b":"1F1EC-1F1E6","k":[2,7]},"beetle":{"a":"Lady Beetle","b":"1F41E","j":["animal","insect","nature","ladybug"],"k":[13,8]},"japanese_ogre":{"a":"Japanese Ogre","b":"1F479","j":["monster","red","mask","halloween","scary","creepy","devil","demon","japanese","ogre"],"k":[22,40]},"double_vertical_bar":{"a":"Double Vertical Bar","b":"23F8-FE0F","c":"23F8","k":[47,4],"o":7},"champagne":{"a":"Bottle with Popping Cork","b":"1F37E","j":["drink","wine","bottle","celebration"],"k":[8,12],"o":8},"japanese_goblin":{"a":"Japanese Goblin","b":"1F47A","j":["red","evil","mask","monster","scary","creepy","japanese","goblin"],"k":[22,41]},"black_square_for_stop":{"a":"Black Square for Stop","b":"23F9-FE0F","c":"23F9","k":[47,5],"o":7},"oncoming_automobile":{"a":"Oncoming Automobile","b":"1F698","j":["car","vehicle","transportation"],"k":[34,32]},"email":{"a":"Envelope","b":"2709-FE0F","c":"2709","j":["letter","postal","inbox","communication"],"k":[49,17],"n":["envelope"],"o":1},"cricket":{"a":"Cricket","b":"1F997","j":["sports"],"k":[42,47],"o":10},"gb":{"a":"United Kingdom Flag","b":"1F1EC-1F1E7","k":[2,8],"n":["uk","flag-gb"]},"black_circle_for_record":{"a":"Black Circle for Record","b":"23FA-FE0F","c":"23FA","k":[47,6],"o":7},"flag-gd":{"a":"Grenada Flag","b":"1F1EC-1F1E9","k":[2,9]},"spider":{"a":"Spider","b":"1F577-FE0F","c":"1F577","j":["animal","arachnid"],"k":[29,18],"o":7},"blue_car":{"a":"Recreational Vehicle","b":"1F699","j":["transportation","vehicle"],"k":[34,33]},"skull":{"a":"Skull","b":"1F480","j":["dead","skeleton","creepy","death"],"k":[23,0]},"e-mail":{"a":"E-Mail Symbol","b":"1F4E7","j":["communication","inbox"],"k":[26,30]},"wine_glass":{"a":"Wine Glass","b":"1F377","j":["drink","beverage","drunk","alcohol","booze"],"k":[8,5]},"spider_web":{"a":"Spider Web","b":"1F578-FE0F","c":"1F578","j":["animal","insect","arachnid","silk"],"k":[29,19],"o":7},"cocktail":{"a":"Cocktail Glass","b":"1F378","j":["drink","drunk","alcohol","beverage","booze","mojito"],"k":[8,6]},"skull_and_crossbones":{"a":"Skull and Crossbones","b":"2620-FE0F","c":"2620","j":["poison","danger","deadly","scary","death","pirate","evil"],"k":[47,32],"o":1},"flag-ge":{"a":"Georgia Flag","b":"1F1EC-1F1EA","k":[2,10]},"eject":{"a":"Eject","b":"23CF-FE0F","c":"23CF","k":[46,44],"o":4},"truck":{"a":"Delivery Truck","b":"1F69A","j":["cars","transportation"],"k":[34,34]},"incoming_envelope":{"a":"Incoming Envelope","b":"1F4E8","j":["email","inbox"],"k":[26,31]},"tropical_drink":{"a":"Tropical Drink","b":"1F379","j":["beverage","cocktail","summer","beach","alcohol","booze","mojito"],"k":[8,7]},"scorpion":{"a":"Scorpion","b":"1F982","j":["animal","arachnid"],"k":[42,26],"o":8},"cinema":{"a":"Cinema","b":"1F3A6","j":["blue-square","record","film","movie","curtain","stage","theater"],"k":[9,0]},"articulated_lorry":{"a":"Articulated Lorry","b":"1F69B","j":["vehicle","cars","transportation","express"],"k":[34,35]},"envelope_with_arrow":{"a":"Envelope with Downwards Arrow Above","b":"1F4E9","j":["email","communication"],"k":[26,32]},"ghost":{"a":"Ghost","b":"1F47B","j":["halloween","spooky","scary"],"k":[22,42]},"bouquet":{"a":"Bouquet","b":"1F490","j":["flowers","nature","spring"],"k":[24,42]},"tractor":{"a":"Tractor","b":"1F69C","j":["vehicle","car","farming","agriculture"],"k":[34,36]},"beer":{"a":"Beer Mug","b":"1F37A","j":["relax","beverage","drink","drunk","party","pub","summer","alcohol","booze"],"k":[8,8]},"outbox_tray":{"a":"Outbox Tray","b":"1F4E4","j":["inbox","email"],"k":[26,27]},"low_brightness":{"a":"Low Brightness Symbol","b":"1F505","j":["sun","afternoon","warm","summer"],"k":[27,7]},"alien":{"a":"Extraterrestrial Alien","b":"1F47D","j":["UFO","paul","weird","outer_space"],"k":[22,49]},"flag-gg":{"a":"Guernsey Flag","b":"1F1EC-1F1EC","k":[2,12]},"cherry_blossom":{"a":"Cherry Blossom","b":"1F338","j":["nature","plant","spring","flower"],"k":[6,46]},"inbox_tray":{"a":"Inbox Tray","b":"1F4E5","j":["email","documents"],"k":[26,28]},"flag-gh":{"a":"Ghana Flag","b":"1F1EC-1F1ED","k":[2,13]},"bike":{"a":"Bicycle","b":"1F6B2","j":["sports","bicycle","exercise","hipster"],"k":[35,23]},"space_invader":{"a":"Alien Monster","b":"1F47E","j":["game","arcade","play"],"k":[22,50]},"beers":{"a":"Clinking Beer Mugs","b":"1F37B","j":["relax","beverage","drink","drunk","party","pub","summer","alcohol","booze"],"k":[8,9]},"high_brightness":{"a":"High Brightness Symbol","b":"1F506","j":["sun","light"],"k":[27,8]},"package":{"a":"Package","b":"1F4E6","j":["mail","gift","cardboard","box","moving"],"k":[26,29]},"scooter":{"a":"Scooter","b":"1F6F4","k":[37,19],"o":9},"white_flower":{"a":"White Flower","b":"1F4AE","j":["japanese","spring"],"k":[25,25]},"clinking_glasses":{"a":"Clinking Glasses","b":"1F942","j":["beverage","drink","party","alcohol","celebrate","cheers"],"k":[41,38],"o":9},"robot_face":{"a":"Robot Face","b":"1F916","k":[37,30],"o":8},"signal_strength":{"a":"Antenna with Bars","b":"1F4F6","j":["blue-square","reception","phone","internet","connection","wifi","bluetooth","bars"],"k":[26,45]},"flag-gi":{"a":"Gibraltar Flag","b":"1F1EC-1F1EE","k":[2,14]},"flag-gl":{"a":"Greenland Flag","b":"1F1EC-1F1F1","k":[2,15]},"motor_scooter":{"a":"Motor Scooter","b":"1F6F5","j":["vehicle","vespa","sasha"],"k":[37,20],"o":9},"mailbox":{"a":"Closed Mailbox with Raised Flag","b":"1F4EB","j":["email","inbox","communication"],"k":[26,34]},"vibration_mode":{"a":"Vibration Mode","b":"1F4F3","j":["orange-square","phone"],"k":[26,42]},"hankey":{"a":"Pile of Poo","b":"1F4A9","k":[25,15],"n":["poop","shit"]},"rosette":{"a":"Rosette","b":"1F3F5-FE0F","c":"1F3F5","j":["flower","decoration","military"],"k":[12,20],"o":7},"tumbler_glass":{"a":"Tumbler Glass","b":"1F943","j":["drink","beverage","drunk","alcohol","liquor","booze","bourbon","scotch","whisky","glass","shot"],"k":[41,39],"o":9},"cup_with_straw":{"a":"Cup with Straw","b":"1F964","k":[42,16],"o":10},"flag-gm":{"a":"Gambia Flag","b":"1F1EC-1F1F2","k":[2,16]},"mailbox_closed":{"a":"Closed Mailbox with Lowered Flag","b":"1F4EA","j":["email","communication","inbox"],"k":[26,33]},"mobile_phone_off":{"a":"Mobile Phone off","b":"1F4F4","j":["mute","orange-square","silence","quiet"],"k":[26,43]},"busstop":{"a":"Bus Stop","b":"1F68F","j":["transportation","wait"],"k":[34,23]},"smiley_cat":{"a":"Smiling Cat Face with Open Mouth","b":"1F63A","j":["animal","cats","happy","smile"],"k":[31,30]},"rose":{"a":"Rose","b":"1F339","j":["flowers","valentines","love","spring"],"k":[6,47]},"motorway":{"a":"Motorway","b":"1F6E3-FE0F","c":"1F6E3","j":["road","cupertino","interstate","highway"],"k":[37,11],"o":7},"smile_cat":{"a":"Grinning Cat Face with Smiling Eyes","b":"1F638","j":["animal","cats","smile"],"k":[31,28]},"flag-gn":{"a":"Guinea Flag","b":"1F1EC-1F1F3","k":[2,17]},"wilted_flower":{"a":"Wilted Flower","b":"1F940","j":["plant","nature","flower"],"k":[41,36],"o":9},"mailbox_with_mail":{"a":"Open Mailbox with Raised Flag","b":"1F4EC","j":["email","inbox","communication"],"k":[26,35]},"chopsticks":{"a":"Chopsticks","b":"1F962","k":[42,14],"o":10},"female_sign":{"a":"Female Sign","b":"2640-FE0F","c":"2640","k":[47,42],"o":1},"mailbox_with_no_mail":{"a":"Open Mailbox with Lowered Flag","b":"1F4ED","j":["email","inbox"],"k":[26,36]},"knife_fork_plate":{"a":"Knife Fork Plate","b":"1F37D-FE0F","c":"1F37D","k":[8,11],"o":7},"hibiscus":{"a":"Hibiscus","b":"1F33A","j":["plant","vegetable","flowers","beach"],"k":[6,48]},"railway_track":{"a":"Railway Track","b":"1F6E4-FE0F","c":"1F6E4","j":["train","transportation"],"k":[37,12],"o":7},"male_sign":{"a":"Male Sign","b":"2642-FE0F","c":"2642","k":[47,43],"o":1},"joy_cat":{"a":"Cat Face with Tears of Joy","b":"1F639","j":["animal","cats","haha","happy","tears"],"k":[31,29]},"fuelpump":{"a":"Fuel Pump","b":"26FD","j":["gas station","petroleum"],"k":[49,13],"o":5},"sunflower":{"a":"Sunflower","b":"1F33B","j":["nature","plant","fall"],"k":[6,49]},"postbox":{"a":"Postbox","b":"1F4EE","j":["email","letter","envelope"],"k":[26,37]},"flag-gq":{"a":"Equatorial Guinea Flag","b":"1F1EC-1F1F6","k":[2,19]},"heart_eyes_cat":{"a":"Smiling Cat Face with Heart-Shaped Eyes","b":"1F63B","j":["animal","love","like","affection","cats","valentines","heart"],"k":[31,31]},"fork_and_knife":{"a":"Fork and Knife","b":"1F374","j":["cutlery","kitchen"],"k":[8,2]},"medical_symbol":{"a":"Medical Symbol","b":"2695-FE0F","c":"2695","k":[48,14],"n":["staff_of_aesculapius"],"o":4},"recycle":{"a":"Black Universal Recycling Symbol","b":"267B-FE0F","c":"267B","j":["arrow","environment","garbage","trash"],"k":[48,9],"o":3},"spoon":{"a":"Spoon","b":"1F944","j":["cutlery","kitchen","tableware"],"k":[41,40],"o":9},"blossom":{"a":"Blossom","b":"1F33C","j":["nature","flowers","yellow"],"k":[6,50]},"rotating_light":{"a":"Police Cars Revolving Light","b":"1F6A8","j":["police","ambulance","911","emergency","alert","error","pinged","law","legal"],"k":[35,13]},"smirk_cat":{"a":"Cat Face with Wry Smile","b":"1F63C","j":["animal","cats","smirk"],"k":[31,32]},"ballot_box_with_ballot":{"a":"Ballot Box with Ballot","b":"1F5F3-FE0F","c":"1F5F3","k":[30,17],"o":7},"flag-gr":{"a":"Greece Flag","b":"1F1EC-1F1F7","k":[2,20]},"kissing_cat":{"a":"Kissing Cat Face with Closed Eyes","b":"1F63D","j":["animal","cats","kiss"],"k":[31,33]},"pencil2":{"a":"Pencil","b":"270F-FE0F","c":"270F","j":["stationery","write","paper","writing","school","study"],"k":[49,42],"o":1},"traffic_light":{"a":"Horizontal Traffic Light","b":"1F6A5","j":["transportation","signal"],"k":[35,10]},"fleur_de_lis":{"a":"Fleur De Lis","b":"269C-FE0F","c":"269C","j":["decorative","scout"],"k":[48,19],"o":4},"tulip":{"a":"Tulip","b":"1F337","j":["flowers","plant","nature","summer","spring"],"k":[6,45]},"hocho":{"a":"Hocho","b":"1F52A","j":["knife","blade","cutlery","kitchen","weapon"],"k":[27,44],"n":["knife"]},"seedling":{"a":"Seedling","b":"1F331","j":["plant","nature","grass","lawn","spring"],"k":[6,39]},"amphora":{"a":"Amphora","b":"1F3FA","j":["vase","jar"],"k":[12,24],"o":8},"scream_cat":{"a":"Weary Cat Face","b":"1F640","j":["animal","cats","munch","scared","scream"],"k":[31,36]},"vertical_traffic_light":{"a":"Vertical Traffic Light","b":"1F6A6","j":["transportation","driving"],"k":[35,11]},"black_nib":{"a":"Black Nib","b":"2712-FE0F","c":"2712","j":["pen","stationery","writing","write"],"k":[49,43],"o":1},"flag-gt":{"a":"Guatemala Flag","b":"1F1EC-1F1F9","k":[2,22]},"trident":{"a":"Trident Emblem","b":"1F531","j":["weapon","spear"],"k":[27,51]},"flag-gu":{"a":"Guam Flag","b":"1F1EC-1F1FA","k":[2,23]},"name_badge":{"a":"Name Badge","b":"1F4DB","j":["fire","forbid"],"k":[26,18]},"construction":{"a":"Construction Sign","b":"1F6A7","j":["wip","progress","caution","warning"],"k":[35,12]},"lower_left_fountain_pen":{"a":"Lower Left Fountain Pen","b":"1F58B-FE0F","c":"1F58B","k":[29,29],"o":7},"evergreen_tree":{"a":"Evergreen Tree","b":"1F332","j":["plant","nature"],"k":[6,40]},"crying_cat_face":{"a":"Crying Cat Face","b":"1F63F","j":["animal","tears","weep","sad","cats","upset","cry"],"k":[31,35]},"flag-gw":{"a":"Guinea-Bissau Flag","b":"1F1EC-1F1FC","k":[2,24]},"lower_left_ballpoint_pen":{"a":"Lower Left Ballpoint Pen","b":"1F58A-FE0F","c":"1F58A","k":[29,28],"o":7},"pouting_cat":{"a":"Pouting Cat Face","b":"1F63E","j":["animal","cats"],"k":[31,34]},"deciduous_tree":{"a":"Deciduous Tree","b":"1F333","j":["plant","nature"],"k":[6,41]},"octagonal_sign":{"a":"Octagonal Sign","b":"1F6D1","k":[37,6],"o":9},"beginner":{"a":"Japanese Symbol for Beginner","b":"1F530","j":["badge","shield"],"k":[27,50]},"flag-gy":{"a":"Guyana Flag","b":"1F1EC-1F1FE","k":[2,25]},"lower_left_paintbrush":{"a":"Lower Left Paintbrush","b":"1F58C-FE0F","c":"1F58C","k":[29,30],"o":7},"o":{"a":"Heavy Large Circle","b":"2B55","j":["circle","round"],"k":[50,23],"o":5},"palm_tree":{"a":"Palm Tree","b":"1F334","j":["plant","vegetable","nature","summer","beach","mojito","tropical"],"k":[6,42]},"anchor":{"a":"Anchor","b":"2693","j":["ship","ferry","sea","boat"],"k":[48,12],"o":4},"see_no_evil":{"a":"See-No-Evil Monkey","b":"1F648","j":["monkey","animal","nature","haha"],"k":[32,43]},"boat":{"a":"Sailboat","b":"26F5","k":[48,43],"n":["sailboat"],"o":5},"white_check_mark":{"a":"White Heavy Check Mark","b":"2705","j":["green-square","ok","agree","vote","election","answer","tick"],"k":[49,15]},"flag-hk":{"a":"Hong Kong Sar China Flag","b":"1F1ED-1F1F0","k":[2,26]},"lower_left_crayon":{"a":"Lower Left Crayon","b":"1F58D-FE0F","c":"1F58D","k":[29,31],"o":7},"hear_no_evil":{"a":"Hear-No-Evil Monkey","b":"1F649","j":["animal","monkey","nature"],"k":[32,44]},"cactus":{"a":"Cactus","b":"1F335","j":["vegetable","plant","nature"],"k":[6,43]},"ear_of_rice":{"a":"Ear of Rice","b":"1F33E","j":["nature","plant"],"k":[7,0]},"speak_no_evil":{"a":"Speak-No-Evil Monkey","b":"1F64A","j":["monkey","animal","nature","omg"],"k":[32,45]},"flag-hm":{"a":"Heard & Mcdonald Islands Flag","b":"1F1ED-1F1F2","k":[2,27]},"ballot_box_with_check":{"a":"Ballot Box with Check","b":"2611-FE0F","c":"2611","j":["ok","agree","confirm","black-square","vote","election","yes","tick"],"k":[47,22],"o":1},"canoe":{"a":"Canoe","b":"1F6F6","j":["boat","paddle","water","ship"],"k":[37,21],"o":9},"memo":{"a":"Memo","b":"1F4DD","j":["write","documents","stationery","pencil","paper","writing","legal","exam","quiz","test","study","compose"],"k":[26,20],"n":["pencil"]},"herb":{"a":"Herb","b":"1F33F","j":["vegetable","plant","medicine","weed","grass","lawn"],"k":[7,1]},"flag-hn":{"a":"Honduras Flag","b":"1F1ED-1F1F3","k":[2,28]},"heavy_check_mark":{"a":"Heavy Check Mark","b":"2714-FE0F","c":"2714","j":["ok","nike","answer","yes","tick"],"k":[49,44],"o":1},"briefcase":{"a":"Briefcase","b":"1F4BC","j":["business","documents","work","law","legal","job","career"],"k":[25,39]},"speedboat":{"a":"Speedboat","b":"1F6A4","j":["ship","transportation","vehicle","summer"],"k":[35,9]},"baby":{"skin_variations":{"1F3FB":{"unified":"1F476-1F3FB","non_qualified":null,"image":"1f476-1f3fb.png","sheet_x":22,"sheet_y":11,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F476-1F3FC","non_qualified":null,"image":"1f476-1f3fc.png","sheet_x":22,"sheet_y":12,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F476-1F3FD","non_qualified":null,"image":"1f476-1f3fd.png","sheet_x":22,"sheet_y":13,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F476-1F3FE","non_qualified":null,"image":"1f476-1f3fe.png","sheet_x":22,"sheet_y":14,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F476-1F3FF","non_qualified":null,"image":"1f476-1f3ff.png","sheet_x":22,"sheet_y":15,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Baby","b":"1F476","j":["child","boy","girl","toddler"],"k":[22,10]},"heavy_multiplication_x":{"a":"Heavy Multiplication X","b":"2716-FE0F","c":"2716","j":["math","calculation"],"k":[49,45],"o":1},"child":{"skin_variations":{"1F3FB":{"unified":"1F9D2-1F3FB","non_qualified":null,"image":"1f9d2-1f3fb.png","sheet_x":43,"sheet_y":5,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F9D2-1F3FC","non_qualified":null,"image":"1f9d2-1f3fc.png","sheet_x":43,"sheet_y":6,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F9D2-1F3FD","non_qualified":null,"image":"1f9d2-1f3fd.png","sheet_x":43,"sheet_y":7,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F9D2-1F3FE","non_qualified":null,"image":"1f9d2-1f3fe.png","sheet_x":43,"sheet_y":8,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F9D2-1F3FF","non_qualified":null,"image":"1f9d2-1f3ff.png","sheet_x":43,"sheet_y":9,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Child","b":"1F9D2","k":[43,4],"o":10},"shamrock":{"a":"Shamrock","b":"2618-FE0F","c":"2618","j":["vegetable","plant","nature","irish","clover"],"k":[47,25],"o":4},"passenger_ship":{"a":"Passenger Ship","b":"1F6F3-FE0F","c":"1F6F3","j":["yacht","cruise","ferry"],"k":[37,18],"o":7},"flag-hr":{"a":"Croatia Flag","b":"1F1ED-1F1F7","k":[2,29]},"file_folder":{"a":"File Folder","b":"1F4C1","j":["documents","business","office"],"k":[25,44]},"x":{"a":"Cross Mark","b":"274C","j":["no","delete","remove","cancel"],"k":[50,1]},"four_leaf_clover":{"a":"Four Leaf Clover","b":"1F340","j":["vegetable","plant","nature","lucky","irish"],"k":[7,2]},"open_file_folder":{"a":"Open File Folder","b":"1F4C2","j":["documents","load"],"k":[25,45]},"boy":{"skin_variations":{"1F3FB":{"unified":"1F466-1F3FB","non_qualified":null,"image":"1f466-1f3fb.png","sheet_x":15,"sheet_y":43,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F466-1F3FC","non_qualified":null,"image":"1f466-1f3fc.png","sheet_x":15,"sheet_y":44,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F466-1F3FD","non_qualified":null,"image":"1f466-1f3fd.png","sheet_x":15,"sheet_y":45,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F466-1F3FE","non_qualified":null,"image":"1f466-1f3fe.png","sheet_x":15,"sheet_y":46,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F466-1F3FF","non_qualified":null,"image":"1f466-1f3ff.png","sheet_x":15,"sheet_y":47,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Boy","b":"1F466","j":["man","male","guy","teenager"],"k":[15,42]},"ferry":{"a":"Ferry","b":"26F4-FE0F","c":"26F4","j":["boat","ship","yacht"],"k":[48,42],"o":5},"flag-ht":{"a":"Haiti Flag","b":"1F1ED-1F1F9","k":[2,30]},"girl":{"skin_variations":{"1F3FB":{"unified":"1F467-1F3FB","non_qualified":null,"image":"1f467-1f3fb.png","sheet_x":15,"sheet_y":49,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F467-1F3FC","non_qualified":null,"image":"1f467-1f3fc.png","sheet_x":15,"sheet_y":50,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F467-1F3FD","non_qualified":null,"image":"1f467-1f3fd.png","sheet_x":15,"sheet_y":51,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F467-1F3FE","non_qualified":null,"image":"1f467-1f3fe.png","sheet_x":16,"sheet_y":0,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F467-1F3FF","non_qualified":null,"image":"1f467-1f3ff.png","sheet_x":16,"sheet_y":1,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Girl","b":"1F467","j":["female","woman","teenager"],"k":[15,48]},"negative_squared_cross_mark":{"a":"Negative Squared Cross Mark","b":"274E","j":["x","green-square","no","deny"],"k":[50,2]},"flag-hu":{"a":"Hungary Flag","b":"1F1ED-1F1FA","k":[2,31]},"card_index_dividers":{"a":"Card Index Dividers","b":"1F5C2-FE0F","c":"1F5C2","j":["organizing","business","stationery"],"k":[30,4],"o":7},"maple_leaf":{"a":"Maple Leaf","b":"1F341","j":["nature","plant","vegetable","ca","fall"],"k":[7,3]},"motor_boat":{"a":"Motor Boat","b":"1F6E5-FE0F","c":"1F6E5","j":["ship"],"k":[37,13],"o":7},"flag-ic":{"a":"Canary Islands Flag","b":"1F1EE-1F1E8","k":[2,32]},"fallen_leaf":{"a":"Fallen Leaf","b":"1F342","j":["nature","plant","vegetable","leaves"],"k":[7,4]},"adult":{"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB","non_qualified":null,"image":"1f9d1-1f3fb.png","sheet_x":42,"sheet_y":51,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F9D1-1F3FC","non_qualified":null,"image":"1f9d1-1f3fc.png","sheet_x":43,"sheet_y":0,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F9D1-1F3FD","non_qualified":null,"image":"1f9d1-1f3fd.png","sheet_x":43,"sheet_y":1,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F9D1-1F3FE","non_qualified":null,"image":"1f9d1-1f3fe.png","sheet_x":43,"sheet_y":2,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F9D1-1F3FF","non_qualified":null,"image":"1f9d1-1f3ff.png","sheet_x":43,"sheet_y":3,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Adult","b":"1F9D1","k":[42,50],"o":10},"ship":{"a":"Ship","b":"1F6A2","j":["transportation","titanic","deploy"],"k":[34,42]},"heavy_plus_sign":{"a":"Heavy Plus Sign","b":"2795","j":["math","calculation","addition","more","increase"],"k":[50,9]},"date":{"a":"Calendar","b":"1F4C5","j":["calendar","schedule"],"k":[25,48]},"man":{"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB","non_qualified":null,"image":"1f468-1f3fb.png","sheet_x":18,"sheet_y":12,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F468-1F3FC","non_qualified":null,"image":"1f468-1f3fc.png","sheet_x":18,"sheet_y":13,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F468-1F3FD","non_qualified":null,"image":"1f468-1f3fd.png","sheet_x":18,"sheet_y":14,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F468-1F3FE","non_qualified":null,"image":"1f468-1f3fe.png","sheet_x":18,"sheet_y":15,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F468-1F3FF","non_qualified":null,"image":"1f468-1f3ff.png","sheet_x":18,"sheet_y":16,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Man","b":"1F468","j":["mustache","father","dad","guy","classy","sir","moustache"],"k":[18,11]},"flag-id":{"a":"Indonesia Flag","b":"1F1EE-1F1E9","k":[2,33]},"leaves":{"a":"Leaf Fluttering in Wind","b":"1F343","j":["nature","plant","tree","vegetable","grass","lawn","spring"],"k":[7,5]},"heavy_minus_sign":{"a":"Heavy Minus Sign","b":"2796","j":["math","calculation","subtract","less"],"k":[50,10]},"calendar":{"a":"Tear-off Calendar","b":"1F4C6","j":["schedule","date","planning"],"k":[25,49]},"airplane":{"a":"Airplane","b":"2708-FE0F","c":"2708","j":["vehicle","transportation","flight","fly"],"k":[49,16],"o":1},"spiral_note_pad":{"a":"Spiral Note Pad","b":"1F5D2-FE0F","c":"1F5D2","k":[30,8],"o":7},"heavy_division_sign":{"a":"Heavy Division Sign","b":"2797","j":["divide","math","calculation"],"k":[50,11]},"small_airplane":{"a":"Small Airplane","b":"1F6E9-FE0F","c":"1F6E9","j":["flight","transportation","fly","vehicle"],"k":[37,14],"o":7},"woman":{"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB","non_qualified":null,"image":"1f469-1f3fb.png","sheet_x":20,"sheet_y":24,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F469-1F3FC","non_qualified":null,"image":"1f469-1f3fc.png","sheet_x":20,"sheet_y":25,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F469-1F3FD","non_qualified":null,"image":"1f469-1f3fd.png","sheet_x":20,"sheet_y":26,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F469-1F3FE","non_qualified":null,"image":"1f469-1f3fe.png","sheet_x":20,"sheet_y":27,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F469-1F3FF","non_qualified":null,"image":"1f469-1f3ff.png","sheet_x":20,"sheet_y":28,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Woman","b":"1F469","j":["female","girls","lady"],"k":[20,23]},"flag-ie":{"a":"Ireland Flag","b":"1F1EE-1F1EA","k":[2,34]},"curly_loop":{"a":"Curly Loop","b":"27B0","j":["scribble","draw","shape","squiggle"],"k":[50,13]},"flag-il":{"a":"Israel Flag","b":"1F1EE-1F1F1","k":[2,35]},"airplane_departure":{"a":"Airplane Departure","b":"1F6EB","k":[37,15],"o":7},"spiral_calendar_pad":{"a":"Spiral Calendar Pad","b":"1F5D3-FE0F","c":"1F5D3","k":[30,9],"o":7},"older_adult":{"skin_variations":{"1F3FB":{"unified":"1F9D3-1F3FB","non_qualified":null,"image":"1f9d3-1f3fb.png","sheet_x":43,"sheet_y":11,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F9D3-1F3FC","non_qualified":null,"image":"1f9d3-1f3fc.png","sheet_x":43,"sheet_y":12,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F9D3-1F3FD","non_qualified":null,"image":"1f9d3-1f3fd.png","sheet_x":43,"sheet_y":13,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F9D3-1F3FE","non_qualified":null,"image":"1f9d3-1f3fe.png","sheet_x":43,"sheet_y":14,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F9D3-1F3FF","non_qualified":null,"image":"1f9d3-1f3ff.png","sheet_x":43,"sheet_y":15,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Older Adult","b":"1F9D3","k":[43,10],"o":10},"airplane_arriving":{"a":"Airplane Arriving","b":"1F6EC","k":[37,16],"o":7},"card_index":{"a":"Card Index","b":"1F4C7","j":["business","stationery"],"k":[25,50]},"loop":{"a":"Double Curly Loop","b":"27BF","j":["tape","cassette"],"k":[50,14]},"older_man":{"skin_variations":{"1F3FB":{"unified":"1F474-1F3FB","non_qualified":null,"image":"1f474-1f3fb.png","sheet_x":21,"sheet_y":51,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F474-1F3FC","non_qualified":null,"image":"1f474-1f3fc.png","sheet_x":22,"sheet_y":0,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F474-1F3FD","non_qualified":null,"image":"1f474-1f3fd.png","sheet_x":22,"sheet_y":1,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F474-1F3FE","non_qualified":null,"image":"1f474-1f3fe.png","sheet_x":22,"sheet_y":2,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F474-1F3FF","non_qualified":null,"image":"1f474-1f3ff.png","sheet_x":22,"sheet_y":3,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Older Man","b":"1F474","j":["human","male","men","old","elder","senior"],"k":[21,50]},"flag-im":{"a":"Isle of Man Flag","b":"1F1EE-1F1F2","k":[2,36]},"flag-in":{"a":"India Flag","b":"1F1EE-1F1F3","k":[2,37]},"chart_with_upwards_trend":{"a":"Chart with Upwards Trend","b":"1F4C8","j":["graph","presentation","stats","recovery","business","economics","money","sales","good","success"],"k":[25,51]},"part_alternation_mark":{"a":"Part Alternation Mark","b":"303D-FE0F","c":"303D","j":["graph","presentation","stats","business","economics","bad"],"k":[50,25],"o":3},"seat":{"a":"Seat","b":"1F4BA","j":["sit","airplane","transport","bus","flight","fly"],"k":[25,37]},"older_woman":{"skin_variations":{"1F3FB":{"unified":"1F475-1F3FB","non_qualified":null,"image":"1f475-1f3fb.png","sheet_x":22,"sheet_y":5,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F475-1F3FC","non_qualified":null,"image":"1f475-1f3fc.png","sheet_x":22,"sheet_y":6,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F475-1F3FD","non_qualified":null,"image":"1f475-1f3fd.png","sheet_x":22,"sheet_y":7,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F475-1F3FE","non_qualified":null,"image":"1f475-1f3fe.png","sheet_x":22,"sheet_y":8,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F475-1F3FF","non_qualified":null,"image":"1f475-1f3ff.png","sheet_x":22,"sheet_y":9,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Older Woman","b":"1F475","j":["human","female","women","lady","old","elder","senior"],"k":[22,4]},"eight_spoked_asterisk":{"a":"Eight Spoked Asterisk","b":"2733-FE0F","c":"2733","j":["star","sparkle","green-square"],"k":[49,49],"o":1},"chart_with_downwards_trend":{"a":"Chart with Downwards Trend","b":"1F4C9","j":["graph","presentation","stats","recession","business","economics","money","sales","bad","failure"],"k":[26,0]},"flag-io":{"a":"British Indian Ocean Territory Flag","b":"1F1EE-1F1F4","k":[2,38]},"male-doctor":{"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-2695-FE0F","non_qualified":"1F468-1F3FB-200D-2695","image":"1f468-1f3fb-200d-2695-fe0f.png","sheet_x":17,"sheet_y":44,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F468-1F3FC-200D-2695-FE0F","non_qualified":"1F468-1F3FC-200D-2695","image":"1f468-1f3fc-200d-2695-fe0f.png","sheet_x":17,"sheet_y":45,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F468-1F3FD-200D-2695-FE0F","non_qualified":"1F468-1F3FD-200D-2695","image":"1f468-1f3fd-200d-2695-fe0f.png","sheet_x":17,"sheet_y":46,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F468-1F3FE-200D-2695-FE0F","non_qualified":"1F468-1F3FE-200D-2695","image":"1f468-1f3fe-200d-2695-fe0f.png","sheet_x":17,"sheet_y":47,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F468-1F3FF-200D-2695-FE0F","non_qualified":"1F468-1F3FF-200D-2695","image":"1f468-1f3ff-200d-2695-fe0f.png","sheet_x":17,"sheet_y":48,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Male Doctor","b":"1F468-200D-2695-FE0F","c":"1F468-200D-2695","k":[17,43]},"helicopter":{"a":"Helicopter","b":"1F681","j":["transportation","vehicle","fly"],"k":[34,9]},"female-doctor":{"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-2695-FE0F","non_qualified":"1F469-1F3FB-200D-2695","image":"1f469-1f3fb-200d-2695-fe0f.png","sheet_x":20,"sheet_y":2,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F469-1F3FC-200D-2695-FE0F","non_qualified":"1F469-1F3FC-200D-2695","image":"1f469-1f3fc-200d-2695-fe0f.png","sheet_x":20,"sheet_y":3,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F469-1F3FD-200D-2695-FE0F","non_qualified":"1F469-1F3FD-200D-2695","image":"1f469-1f3fd-200d-2695-fe0f.png","sheet_x":20,"sheet_y":4,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F469-1F3FE-200D-2695-FE0F","non_qualified":"1F469-1F3FE-200D-2695","image":"1f469-1f3fe-200d-2695-fe0f.png","sheet_x":20,"sheet_y":5,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F469-1F3FF-200D-2695-FE0F","non_qualified":"1F469-1F3FF-200D-2695","image":"1f469-1f3ff-200d-2695-fe0f.png","sheet_x":20,"sheet_y":6,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Female Doctor","b":"1F469-200D-2695-FE0F","c":"1F469-200D-2695","k":[20,1]},"suspension_railway":{"a":"Suspension Railway","b":"1F69F","j":["vehicle","transportation"],"k":[34,39]},"bar_chart":{"a":"Bar Chart","b":"1F4CA","j":["graph","presentation","stats"],"k":[26,1]},"flag-iq":{"a":"Iraq Flag","b":"1F1EE-1F1F6","k":[2,39]},"eight_pointed_black_star":{"a":"Eight Pointed Black Star","b":"2734-FE0F","c":"2734","j":["orange-square","shape","polygon"],"k":[49,50],"o":1},"mountain_cableway":{"a":"Mountain Cableway","b":"1F6A0","j":["transportation","vehicle","ski"],"k":[34,40]},"male-student":{"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F393","non_qualified":null,"image":"1f468-1f3fb-200d-1f393.png","sheet_x":16,"sheet_y":15,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F468-1F3FC-200D-1F393","non_qualified":null,"image":"1f468-1f3fc-200d-1f393.png","sheet_x":16,"sheet_y":16,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F468-1F3FD-200D-1F393","non_qualified":null,"image":"1f468-1f3fd-200d-1f393.png","sheet_x":16,"sheet_y":17,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F468-1F3FE-200D-1F393","non_qualified":null,"image":"1f468-1f3fe-200d-1f393.png","sheet_x":16,"sheet_y":18,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F468-1F3FF-200D-1F393","non_qualified":null,"image":"1f468-1f3ff-200d-1f393.png","sheet_x":16,"sheet_y":19,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Male Student","b":"1F468-200D-1F393","k":[16,14]},"clipboard":{"a":"Clipboard","b":"1F4CB","j":["stationery","documents"],"k":[26,2]},"flag-ir":{"a":"Iran Flag","b":"1F1EE-1F1F7","k":[2,40]},"sparkle":{"a":"Sparkle","b":"2747-FE0F","c":"2747","j":["stars","green-square","awesome","good","fireworks"],"k":[50,0],"o":1},"female-student":{"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F393","non_qualified":null,"image":"1f469-1f3fb-200d-1f393.png","sheet_x":18,"sheet_y":30,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F469-1F3FC-200D-1F393","non_qualified":null,"image":"1f469-1f3fc-200d-1f393.png","sheet_x":18,"sheet_y":31,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F469-1F3FD-200D-1F393","non_qualified":null,"image":"1f469-1f3fd-200d-1f393.png","sheet_x":18,"sheet_y":32,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F469-1F3FE-200D-1F393","non_qualified":null,"image":"1f469-1f3fe-200d-1f393.png","sheet_x":18,"sheet_y":33,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F469-1F3FF-200D-1F393","non_qualified":null,"image":"1f469-1f3ff-200d-1f393.png","sheet_x":18,"sheet_y":34,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Female Student","b":"1F469-200D-1F393","k":[18,29]},"pushpin":{"a":"Pushpin","b":"1F4CC","j":["stationery","mark","here"],"k":[26,3]},"aerial_tramway":{"a":"Aerial Tramway","b":"1F6A1","j":["transportation","vehicle","ski"],"k":[34,41]},"flag-is":{"a":"Iceland Flag","b":"1F1EE-1F1F8","k":[2,41]},"bangbang":{"a":"Double Exclamation Mark","b":"203C-FE0F","c":"203C","j":["exclamation","surprise"],"k":[46,29],"o":1},"interrobang":{"a":"Exclamation Question Mark","b":"2049-FE0F","c":"2049","j":["wat","punctuation","surprise"],"k":[46,30],"o":3},"satellite":{"a":"Satellite","b":"1F6F0-FE0F","c":"1F6F0","j":["communication","future","radio","space"],"k":[37,17],"o":7},"it":{"a":"Italy Flag","b":"1F1EE-1F1F9","j":["italy","flag","nation","country","banner"],"k":[2,42],"n":["flag-it"]},"male-teacher":{"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F3EB","non_qualified":null,"image":"1f468-1f3fb-200d-1f3eb.png","sheet_x":16,"sheet_y":33,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F468-1F3FC-200D-1F3EB","non_qualified":null,"image":"1f468-1f3fc-200d-1f3eb.png","sheet_x":16,"sheet_y":34,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F468-1F3FD-200D-1F3EB","non_qualified":null,"image":"1f468-1f3fd-200d-1f3eb.png","sheet_x":16,"sheet_y":35,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F468-1F3FE-200D-1F3EB","non_qualified":null,"image":"1f468-1f3fe-200d-1f3eb.png","sheet_x":16,"sheet_y":36,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F468-1F3FF-200D-1F3EB","non_qualified":null,"image":"1f468-1f3ff-200d-1f3eb.png","sheet_x":16,"sheet_y":37,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Male Teacher","b":"1F468-200D-1F3EB","k":[16,32]},"round_pushpin":{"a":"Round Pushpin","b":"1F4CD","j":["stationery","location","map","here"],"k":[26,4]},"flag-je":{"a":"Jersey Flag","b":"1F1EF-1F1EA","k":[2,43]},"question":{"a":"Black Question Mark Ornament","b":"2753","j":["doubt","confused"],"k":[50,3]},"rocket":{"a":"Rocket","b":"1F680","j":["launch","ship","staffmode","NASA","outer space","outer_space","fly"],"k":[34,8]},"female-teacher":{"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F3EB","non_qualified":null,"image":"1f469-1f3fb-200d-1f3eb.png","sheet_x":18,"sheet_y":48,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F469-1F3FC-200D-1F3EB","non_qualified":null,"image":"1f469-1f3fc-200d-1f3eb.png","sheet_x":18,"sheet_y":49,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F469-1F3FD-200D-1F3EB","non_qualified":null,"image":"1f469-1f3fd-200d-1f3eb.png","sheet_x":18,"sheet_y":50,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F469-1F3FE-200D-1F3EB","non_qualified":null,"image":"1f469-1f3fe-200d-1f3eb.png","sheet_x":18,"sheet_y":51,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F469-1F3FF-200D-1F3EB","non_qualified":null,"image":"1f469-1f3ff-200d-1f3eb.png","sheet_x":19,"sheet_y":0,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Female Teacher","b":"1F469-200D-1F3EB","k":[18,47]},"paperclip":{"a":"Paperclip","b":"1F4CE","j":["documents","stationery"],"k":[26,5]},"linked_paperclips":{"a":"Linked Paperclips","b":"1F587-FE0F","c":"1F587","k":[29,27],"o":7},"flying_saucer":{"a":"Flying Saucer","b":"1F6F8","k":[37,23],"o":10},"male-judge":{"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-2696-FE0F","non_qualified":"1F468-1F3FB-200D-2696","image":"1f468-1f3fb-200d-2696-fe0f.png","sheet_x":17,"sheet_y":50,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F468-1F3FC-200D-2696-FE0F","non_qualified":"1F468-1F3FC-200D-2696","image":"1f468-1f3fc-200d-2696-fe0f.png","sheet_x":17,"sheet_y":51,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F468-1F3FD-200D-2696-FE0F","non_qualified":"1F468-1F3FD-200D-2696","image":"1f468-1f3fd-200d-2696-fe0f.png","sheet_x":18,"sheet_y":0,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F468-1F3FE-200D-2696-FE0F","non_qualified":"1F468-1F3FE-200D-2696","image":"1f468-1f3fe-200d-2696-fe0f.png","sheet_x":18,"sheet_y":1,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F468-1F3FF-200D-2696-FE0F","non_qualified":"1F468-1F3FF-200D-2696","image":"1f468-1f3ff-200d-2696-fe0f.png","sheet_x":18,"sheet_y":2,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Male Judge","b":"1F468-200D-2696-FE0F","c":"1F468-200D-2696","k":[17,49]},"grey_question":{"a":"White Question Mark Ornament","b":"2754","j":["doubts","gray","huh","confused"],"k":[50,4]},"flag-jm":{"a":"Jamaica Flag","b":"1F1EF-1F1F2","k":[2,44]},"bellhop_bell":{"a":"Bellhop Bell","b":"1F6CE-FE0F","c":"1F6CE","j":["service"],"k":[37,3],"o":7},"straight_ruler":{"a":"Straight Ruler","b":"1F4CF","j":["stationery","calculate","length","math","school","drawing","architect","sketch"],"k":[26,6]},"flag-jo":{"a":"Jordan Flag","b":"1F1EF-1F1F4","k":[2,45]},"female-judge":{"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-2696-FE0F","non_qualified":"1F469-1F3FB-200D-2696","image":"1f469-1f3fb-200d-2696-fe0f.png","sheet_x":20,"sheet_y":8,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F469-1F3FC-200D-2696-FE0F","non_qualified":"1F469-1F3FC-200D-2696","image":"1f469-1f3fc-200d-2696-fe0f.png","sheet_x":20,"sheet_y":9,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F469-1F3FD-200D-2696-FE0F","non_qualified":"1F469-1F3FD-200D-2696","image":"1f469-1f3fd-200d-2696-fe0f.png","sheet_x":20,"sheet_y":10,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F469-1F3FE-200D-2696-FE0F","non_qualified":"1F469-1F3FE-200D-2696","image":"1f469-1f3fe-200d-2696-fe0f.png","sheet_x":20,"sheet_y":11,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F469-1F3FF-200D-2696-FE0F","non_qualified":"1F469-1F3FF-200D-2696","image":"1f469-1f3ff-200d-2696-fe0f.png","sheet_x":20,"sheet_y":12,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Female Judge","b":"1F469-200D-2696-FE0F","c":"1F469-200D-2696","k":[20,7]},"grey_exclamation":{"a":"White Exclamation Mark Ornament","b":"2755","j":["surprise","punctuation","gray","wow","warning"],"k":[50,5]},"door":{"a":"Door","b":"1F6AA","j":["house","entry","exit"],"k":[35,15]},"male-farmer":{"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F33E","non_qualified":null,"image":"1f468-1f3fb-200d-1f33e.png","sheet_x":16,"sheet_y":3,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F468-1F3FC-200D-1F33E","non_qualified":null,"image":"1f468-1f3fc-200d-1f33e.png","sheet_x":16,"sheet_y":4,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F468-1F3FD-200D-1F33E","non_qualified":null,"image":"1f468-1f3fd-200d-1f33e.png","sheet_x":16,"sheet_y":5,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F468-1F3FE-200D-1F33E","non_qualified":null,"image":"1f468-1f3fe-200d-1f33e.png","sheet_x":16,"sheet_y":6,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F468-1F3FF-200D-1F33E","non_qualified":null,"image":"1f468-1f3ff-200d-1f33e.png","sheet_x":16,"sheet_y":7,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Male Farmer","b":"1F468-200D-1F33E","k":[16,2]},"jp":{"a":"Japan Flag","b":"1F1EF-1F1F5","j":["japanese","nation","flag","country","banner"],"k":[2,46],"n":["flag-jp"]},"triangular_ruler":{"a":"Triangular Ruler","b":"1F4D0","j":["stationery","math","architect","sketch"],"k":[26,7]},"exclamation":{"a":"Heavy Exclamation Mark Symbol","b":"2757","j":["heavy_exclamation_mark","danger","surprise","punctuation","wow","warning"],"k":[50,6],"n":["heavy_exclamation_mark"],"o":5},"bed":{"a":"Bed","b":"1F6CF-FE0F","c":"1F6CF","j":["sleep","rest"],"k":[37,4],"o":7},"female-farmer":{"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F33E","non_qualified":null,"image":"1f469-1f3fb-200d-1f33e.png","sheet_x":18,"sheet_y":18,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F469-1F3FC-200D-1F33E","non_qualified":null,"image":"1f469-1f3fc-200d-1f33e.png","sheet_x":18,"sheet_y":19,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F469-1F3FD-200D-1F33E","non_qualified":null,"image":"1f469-1f3fd-200d-1f33e.png","sheet_x":18,"sheet_y":20,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F469-1F3FE-200D-1F33E","non_qualified":null,"image":"1f469-1f3fe-200d-1f33e.png","sheet_x":18,"sheet_y":21,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F469-1F3FF-200D-1F33E","non_qualified":null,"image":"1f469-1f3ff-200d-1f33e.png","sheet_x":18,"sheet_y":22,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Female Farmer","b":"1F469-200D-1F33E","k":[18,17]},"scissors":{"a":"Black Scissors","b":"2702-FE0F","c":"2702","j":["stationery","cut"],"k":[49,14],"o":1},"wavy_dash":{"a":"Wavy Dash","b":"3030-FE0F","c":"3030","j":["draw","line","moustache","mustache","squiggle","scribble"],"k":[50,24],"o":1},"flag-ke":{"a":"Kenya Flag","b":"1F1F0-1F1EA","k":[2,47]},"flag-kg":{"a":"Kyrgyzstan Flag","b":"1F1F0-1F1EC","k":[2,48]},"couch_and_lamp":{"a":"Couch and Lamp","b":"1F6CB-FE0F","c":"1F6CB","j":["read","chill"],"k":[36,47],"o":7},"male-cook":{"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F373","non_qualified":null,"image":"1f468-1f3fb-200d-1f373.png","sheet_x":16,"sheet_y":9,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F468-1F3FC-200D-1F373","non_qualified":null,"image":"1f468-1f3fc-200d-1f373.png","sheet_x":16,"sheet_y":10,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F468-1F3FD-200D-1F373","non_qualified":null,"image":"1f468-1f3fd-200d-1f373.png","sheet_x":16,"sheet_y":11,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F468-1F3FE-200D-1F373","non_qualified":null,"image":"1f468-1f3fe-200d-1f373.png","sheet_x":16,"sheet_y":12,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F468-1F3FF-200D-1F373","non_qualified":null,"image":"1f468-1f3ff-200d-1f373.png","sheet_x":16,"sheet_y":13,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Male Cook","b":"1F468-200D-1F373","k":[16,8]},"card_file_box":{"a":"Card File Box","b":"1F5C3-FE0F","c":"1F5C3","j":["business","stationery"],"k":[30,5],"o":7},"copyright":{"a":"Copyright Sign","b":"00A9-FE0F","c":"00A9","j":["ip","license","circle","law","legal"],"k":[0,12],"o":1},"file_cabinet":{"a":"File Cabinet","b":"1F5C4-FE0F","c":"1F5C4","j":["filing","organizing"],"k":[30,6],"o":7},"registered":{"a":"Registered Sign","b":"00AE-FE0F","c":"00AE","j":["alphabet","circle"],"k":[0,13],"o":1},"flag-kh":{"a":"Cambodia Flag","b":"1F1F0-1F1ED","k":[2,49]},"female-cook":{"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F373","non_qualified":null,"image":"1f469-1f3fb-200d-1f373.png","sheet_x":18,"sheet_y":24,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F469-1F3FC-200D-1F373","non_qualified":null,"image":"1f469-1f3fc-200d-1f373.png","sheet_x":18,"sheet_y":25,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F469-1F3FD-200D-1F373","non_qualified":null,"image":"1f469-1f3fd-200d-1f373.png","sheet_x":18,"sheet_y":26,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F469-1F3FE-200D-1F373","non_qualified":null,"image":"1f469-1f3fe-200d-1f373.png","sheet_x":18,"sheet_y":27,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F469-1F3FF-200D-1F373","non_qualified":null,"image":"1f469-1f3ff-200d-1f373.png","sheet_x":18,"sheet_y":28,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Female Cook","b":"1F469-200D-1F373","k":[18,23]},"toilet":{"a":"Toilet","b":"1F6BD","j":["restroom","wc","washroom","bathroom","potty"],"k":[36,33]},"wastebasket":{"a":"Wastebasket","b":"1F5D1-FE0F","c":"1F5D1","j":["bin","trash","rubbish","garbage","toss"],"k":[30,7],"o":7},"flag-ki":{"a":"Kiribati Flag","b":"1F1F0-1F1EE","k":[2,50]},"shower":{"a":"Shower","b":"1F6BF","j":["clean","water","bathroom"],"k":[36,35]},"male-mechanic":{"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F527","non_qualified":null,"image":"1f468-1f3fb-200d-1f527.png","sheet_x":17,"sheet_y":20,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F468-1F3FC-200D-1F527","non_qualified":null,"image":"1f468-1f3fc-200d-1f527.png","sheet_x":17,"sheet_y":21,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F468-1F3FD-200D-1F527","non_qualified":null,"image":"1f468-1f3fd-200d-1f527.png","sheet_x":17,"sheet_y":22,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F468-1F3FE-200D-1F527","non_qualified":null,"image":"1f468-1f3fe-200d-1f527.png","sheet_x":17,"sheet_y":23,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F468-1F3FF-200D-1F527","non_qualified":null,"image":"1f468-1f3ff-200d-1f527.png","sheet_x":17,"sheet_y":24,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Male Mechanic","b":"1F468-200D-1F527","k":[17,19]},"tm":{"a":"Trade Mark Sign","b":"2122-FE0F","c":"2122","j":["trademark","brand","law","legal"],"k":[46,31],"o":1},"hash":{"a":"Hash Key","b":"0023-FE0F-20E3","c":"0023-20E3","j":["symbol","blue-square","twitter"],"k":[0,0],"o":3},"flag-km":{"a":"Comoros Flag","b":"1F1F0-1F1F2","k":[2,51]},"bathtub":{"a":"Bathtub","b":"1F6C1","j":["clean","shower","bathroom"],"k":[36,42]},"female-mechanic":{"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F527","non_qualified":null,"image":"1f469-1f3fb-200d-1f527.png","sheet_x":19,"sheet_y":30,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F469-1F3FC-200D-1F527","non_qualified":null,"image":"1f469-1f3fc-200d-1f527.png","sheet_x":19,"sheet_y":31,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F469-1F3FD-200D-1F527","non_qualified":null,"image":"1f469-1f3fd-200d-1f527.png","sheet_x":19,"sheet_y":32,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F469-1F3FE-200D-1F527","non_qualified":null,"image":"1f469-1f3fe-200d-1f527.png","sheet_x":19,"sheet_y":33,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F469-1F3FF-200D-1F527","non_qualified":null,"image":"1f469-1f3ff-200d-1f527.png","sheet_x":19,"sheet_y":34,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Female Mechanic","b":"1F469-200D-1F527","k":[19,29]},"lock":{"a":"Lock","b":"1F512","j":["security","password","padlock"],"k":[27,20]},"male-factory-worker":{"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F3ED","non_qualified":null,"image":"1f468-1f3fb-200d-1f3ed.png","sheet_x":16,"sheet_y":39,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F468-1F3FC-200D-1F3ED","non_qualified":null,"image":"1f468-1f3fc-200d-1f3ed.png","sheet_x":16,"sheet_y":40,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F468-1F3FD-200D-1F3ED","non_qualified":null,"image":"1f468-1f3fd-200d-1f3ed.png","sheet_x":16,"sheet_y":41,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F468-1F3FE-200D-1F3ED","non_qualified":null,"image":"1f468-1f3fe-200d-1f3ed.png","sheet_x":16,"sheet_y":42,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F468-1F3FF-200D-1F3ED","non_qualified":null,"image":"1f468-1f3ff-200d-1f3ed.png","sheet_x":16,"sheet_y":43,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Male Factory Worker","b":"1F468-200D-1F3ED","k":[16,38]},"flag-kn":{"a":"St. Kitts & Nevis Flag","b":"1F1F0-1F1F3","k":[3,0]},"hourglass":{"a":"Hourglass","b":"231B","j":["time","clock","oldschool","limit","exam","quiz","test"],"k":[46,42],"o":1},"keycap_star":{"a":"Keycap Star","b":"002A-FE0F-20E3","c":"002A-20E3","k":[0,1],"o":3},"unlock":{"a":"Open Lock","b":"1F513","j":["privacy","security"],"k":[27,21]},"flag-kp":{"a":"North Korea Flag","b":"1F1F0-1F1F5","k":[3,1]},"female-factory-worker":{"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F3ED","non_qualified":null,"image":"1f469-1f3fb-200d-1f3ed.png","sheet_x":19,"sheet_y":2,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F469-1F3FC-200D-1F3ED","non_qualified":null,"image":"1f469-1f3fc-200d-1f3ed.png","sheet_x":19,"sheet_y":3,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F469-1F3FD-200D-1F3ED","non_qualified":null,"image":"1f469-1f3fd-200d-1f3ed.png","sheet_x":19,"sheet_y":4,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F469-1F3FE-200D-1F3ED","non_qualified":null,"image":"1f469-1f3fe-200d-1f3ed.png","sheet_x":19,"sheet_y":5,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F469-1F3FF-200D-1F3ED","non_qualified":null,"image":"1f469-1f3ff-200d-1f3ed.png","sheet_x":19,"sheet_y":6,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Female Factory Worker","b":"1F469-200D-1F3ED","k":[19,1]},"zero":{"a":"Keycap 0","b":"0030-FE0F-20E3","c":"0030-20E3","j":["0","numbers","blue-square","null"],"k":[0,2],"o":3},"lock_with_ink_pen":{"a":"Lock with Ink Pen","b":"1F50F","j":["security","secret"],"k":[27,17]},"hourglass_flowing_sand":{"a":"Hourglass with Flowing Sand","b":"23F3","j":["oldschool","time","countdown"],"k":[47,3]},"one":{"a":"Keycap 1","b":"0031-FE0F-20E3","c":"0031-20E3","j":["blue-square","numbers","1"],"k":[0,3],"o":3},"kr":{"a":"South Korea Flag","b":"1F1F0-1F1F7","j":["south","korea","nation","flag","country","banner"],"k":[3,2],"n":["flag-kr"]},"watch":{"a":"Watch","b":"231A","j":["time","accessories"],"k":[46,41],"o":1},"male-office-worker":{"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F4BC","non_qualified":null,"image":"1f468-1f3fb-200d-1f4bc.png","sheet_x":17,"sheet_y":14,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F468-1F3FC-200D-1F4BC","non_qualified":null,"image":"1f468-1f3fc-200d-1f4bc.png","sheet_x":17,"sheet_y":15,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F468-1F3FD-200D-1F4BC","non_qualified":null,"image":"1f468-1f3fd-200d-1f4bc.png","sheet_x":17,"sheet_y":16,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F468-1F3FE-200D-1F4BC","non_qualified":null,"image":"1f468-1f3fe-200d-1f4bc.png","sheet_x":17,"sheet_y":17,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F468-1F3FF-200D-1F4BC","non_qualified":null,"image":"1f468-1f3ff-200d-1f4bc.png","sheet_x":17,"sheet_y":18,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Male Office Worker","b":"1F468-200D-1F4BC","k":[17,13]},"closed_lock_with_key":{"a":"Closed Lock with Key","b":"1F510","j":["security","privacy"],"k":[27,18]},"female-office-worker":{"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F4BC","non_qualified":null,"image":"1f469-1f3fb-200d-1f4bc.png","sheet_x":19,"sheet_y":24,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F469-1F3FC-200D-1F4BC","non_qualified":null,"image":"1f469-1f3fc-200d-1f4bc.png","sheet_x":19,"sheet_y":25,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F469-1F3FD-200D-1F4BC","non_qualified":null,"image":"1f469-1f3fd-200d-1f4bc.png","sheet_x":19,"sheet_y":26,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F469-1F3FE-200D-1F4BC","non_qualified":null,"image":"1f469-1f3fe-200d-1f4bc.png","sheet_x":19,"sheet_y":27,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F469-1F3FF-200D-1F4BC","non_qualified":null,"image":"1f469-1f3ff-200d-1f4bc.png","sheet_x":19,"sheet_y":28,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Female Office Worker","b":"1F469-200D-1F4BC","k":[19,23]},"two":{"a":"Keycap 2","b":"0032-FE0F-20E3","c":"0032-20E3","j":["numbers","2","prime","blue-square"],"k":[0,4],"o":3},"alarm_clock":{"a":"Alarm Clock","b":"23F0","j":["time","wake"],"k":[47,0]},"key":{"a":"Key","b":"1F511","j":["lock","door","password"],"k":[27,19]},"flag-kw":{"a":"Kuwait Flag","b":"1F1F0-1F1FC","k":[3,3]},"stopwatch":{"a":"Stopwatch","b":"23F1-FE0F","c":"23F1","j":["time","deadline"],"k":[47,1]},"male-scientist":{"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F52C","non_qualified":null,"image":"1f468-1f3fb-200d-1f52c.png","sheet_x":17,"sheet_y":26,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F468-1F3FC-200D-1F52C","non_qualified":null,"image":"1f468-1f3fc-200d-1f52c.png","sheet_x":17,"sheet_y":27,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F468-1F3FD-200D-1F52C","non_qualified":null,"image":"1f468-1f3fd-200d-1f52c.png","sheet_x":17,"sheet_y":28,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F468-1F3FE-200D-1F52C","non_qualified":null,"image":"1f468-1f3fe-200d-1f52c.png","sheet_x":17,"sheet_y":29,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F468-1F3FF-200D-1F52C","non_qualified":null,"image":"1f468-1f3ff-200d-1f52c.png","sheet_x":17,"sheet_y":30,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Male Scientist","b":"1F468-200D-1F52C","k":[17,25]},"three":{"a":"Keycap 3","b":"0033-FE0F-20E3","c":"0033-20E3","j":["3","numbers","prime","blue-square"],"k":[0,5],"o":3},"flag-ky":{"a":"Cayman Islands Flag","b":"1F1F0-1F1FE","k":[3,4]},"old_key":{"a":"Old Key","b":"1F5DD-FE0F","c":"1F5DD","j":["lock","door","password"],"k":[30,11],"o":7},"flag-kz":{"a":"Kazakhstan Flag","b":"1F1F0-1F1FF","k":[3,5]},"hammer":{"a":"Hammer","b":"1F528","j":["tools","build","create"],"k":[27,42]},"female-scientist":{"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F52C","non_qualified":null,"image":"1f469-1f3fb-200d-1f52c.png","sheet_x":19,"sheet_y":36,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F469-1F3FC-200D-1F52C","non_qualified":null,"image":"1f469-1f3fc-200d-1f52c.png","sheet_x":19,"sheet_y":37,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F469-1F3FD-200D-1F52C","non_qualified":null,"image":"1f469-1f3fd-200d-1f52c.png","sheet_x":19,"sheet_y":38,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F469-1F3FE-200D-1F52C","non_qualified":null,"image":"1f469-1f3fe-200d-1f52c.png","sheet_x":19,"sheet_y":39,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F469-1F3FF-200D-1F52C","non_qualified":null,"image":"1f469-1f3ff-200d-1f52c.png","sheet_x":19,"sheet_y":40,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Female Scientist","b":"1F469-200D-1F52C","k":[19,35]},"timer_clock":{"a":"Timer Clock","b":"23F2-FE0F","c":"23F2","j":["alarm"],"k":[47,2]},"four":{"a":"Keycap 4","b":"0034-FE0F-20E3","c":"0034-20E3","j":["4","numbers","blue-square"],"k":[0,6],"o":3},"male-technologist":{"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F4BB","non_qualified":null,"image":"1f468-1f3fb-200d-1f4bb.png","sheet_x":17,"sheet_y":8,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F468-1F3FC-200D-1F4BB","non_qualified":null,"image":"1f468-1f3fc-200d-1f4bb.png","sheet_x":17,"sheet_y":9,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F468-1F3FD-200D-1F4BB","non_qualified":null,"image":"1f468-1f3fd-200d-1f4bb.png","sheet_x":17,"sheet_y":10,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F468-1F3FE-200D-1F4BB","non_qualified":null,"image":"1f468-1f3fe-200d-1f4bb.png","sheet_x":17,"sheet_y":11,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F468-1F3FF-200D-1F4BB","non_qualified":null,"image":"1f468-1f3ff-200d-1f4bb.png","sheet_x":17,"sheet_y":12,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Male Technologist","b":"1F468-200D-1F4BB","k":[17,7]},"mantelpiece_clock":{"a":"Mantelpiece Clock","b":"1F570-FE0F","c":"1F570","j":["time"],"k":[28,43],"o":7},"five":{"a":"Keycap 5","b":"0035-FE0F-20E3","c":"0035-20E3","j":["5","numbers","blue-square","prime"],"k":[0,7],"o":3},"flag-la":{"a":"Laos Flag","b":"1F1F1-1F1E6","k":[3,6]},"pick":{"a":"Pick","b":"26CF-FE0F","c":"26CF","j":["tools","dig"],"k":[48,32],"o":5},"flag-lb":{"a":"Lebanon Flag","b":"1F1F1-1F1E7","k":[3,7]},"clock12":{"a":"Clock Face Twelve Oclock","b":"1F55B","j":["time","noon","midnight","midday","late","early","schedule"],"k":[28,29]},"hammer_and_pick":{"a":"Hammer and Pick","b":"2692-FE0F","c":"2692","j":["tools","build","create"],"k":[48,11],"o":4},"six":{"a":"Keycap 6","b":"0036-FE0F-20E3","c":"0036-20E3","j":["6","numbers","blue-square"],"k":[0,8],"o":3},"female-technologist":{"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F4BB","non_qualified":null,"image":"1f469-1f3fb-200d-1f4bb.png","sheet_x":19,"sheet_y":18,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F469-1F3FC-200D-1F4BB","non_qualified":null,"image":"1f469-1f3fc-200d-1f4bb.png","sheet_x":19,"sheet_y":19,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F469-1F3FD-200D-1F4BB","non_qualified":null,"image":"1f469-1f3fd-200d-1f4bb.png","sheet_x":19,"sheet_y":20,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F469-1F3FE-200D-1F4BB","non_qualified":null,"image":"1f469-1f3fe-200d-1f4bb.png","sheet_x":19,"sheet_y":21,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F469-1F3FF-200D-1F4BB","non_qualified":null,"image":"1f469-1f3ff-200d-1f4bb.png","sheet_x":19,"sheet_y":22,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Female Technologist","b":"1F469-200D-1F4BB","k":[19,17]},"hammer_and_wrench":{"a":"Hammer and Wrench","b":"1F6E0-FE0F","c":"1F6E0","j":["tools","build","create"],"k":[37,8],"o":7},"flag-lc":{"a":"St. Lucia Flag","b":"1F1F1-1F1E8","k":[3,8]},"clock1230":{"a":"Clock Face Twelve-Thirty","b":"1F567","j":["time","late","early","schedule"],"k":[28,41]},"seven":{"a":"Keycap 7","b":"0037-FE0F-20E3","c":"0037-20E3","j":["7","numbers","blue-square","prime"],"k":[0,9],"o":3},"male-singer":{"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F3A4","non_qualified":null,"image":"1f468-1f3fb-200d-1f3a4.png","sheet_x":16,"sheet_y":21,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F468-1F3FC-200D-1F3A4","non_qualified":null,"image":"1f468-1f3fc-200d-1f3a4.png","sheet_x":16,"sheet_y":22,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F468-1F3FD-200D-1F3A4","non_qualified":null,"image":"1f468-1f3fd-200d-1f3a4.png","sheet_x":16,"sheet_y":23,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F468-1F3FE-200D-1F3A4","non_qualified":null,"image":"1f468-1f3fe-200d-1f3a4.png","sheet_x":16,"sheet_y":24,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F468-1F3FF-200D-1F3A4","non_qualified":null,"image":"1f468-1f3ff-200d-1f3a4.png","sheet_x":16,"sheet_y":25,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Male Singer","b":"1F468-200D-1F3A4","k":[16,20]},"eight":{"a":"Keycap 8","b":"0038-FE0F-20E3","c":"0038-20E3","j":["8","blue-square","numbers"],"k":[0,10],"o":3},"flag-li":{"a":"Liechtenstein Flag","b":"1F1F1-1F1EE","k":[3,9]},"dagger_knife":{"a":"Dagger Knife","b":"1F5E1-FE0F","c":"1F5E1","k":[30,13],"o":7},"clock1":{"a":"Clock Face One Oclock","b":"1F550","j":["time","late","early","schedule"],"k":[28,18]},"female-singer":{"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F3A4","non_qualified":null,"image":"1f469-1f3fb-200d-1f3a4.png","sheet_x":18,"sheet_y":36,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F469-1F3FC-200D-1F3A4","non_qualified":null,"image":"1f469-1f3fc-200d-1f3a4.png","sheet_x":18,"sheet_y":37,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F469-1F3FD-200D-1F3A4","non_qualified":null,"image":"1f469-1f3fd-200d-1f3a4.png","sheet_x":18,"sheet_y":38,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F469-1F3FE-200D-1F3A4","non_qualified":null,"image":"1f469-1f3fe-200d-1f3a4.png","sheet_x":18,"sheet_y":39,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F469-1F3FF-200D-1F3A4","non_qualified":null,"image":"1f469-1f3ff-200d-1f3a4.png","sheet_x":18,"sheet_y":40,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Female Singer","b":"1F469-200D-1F3A4","k":[18,35]},"male-artist":{"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F3A8","non_qualified":null,"image":"1f468-1f3fb-200d-1f3a8.png","sheet_x":16,"sheet_y":27,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F468-1F3FC-200D-1F3A8","non_qualified":null,"image":"1f468-1f3fc-200d-1f3a8.png","sheet_x":16,"sheet_y":28,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F468-1F3FD-200D-1F3A8","non_qualified":null,"image":"1f468-1f3fd-200d-1f3a8.png","sheet_x":16,"sheet_y":29,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F468-1F3FE-200D-1F3A8","non_qualified":null,"image":"1f468-1f3fe-200d-1f3a8.png","sheet_x":16,"sheet_y":30,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F468-1F3FF-200D-1F3A8","non_qualified":null,"image":"1f468-1f3ff-200d-1f3a8.png","sheet_x":16,"sheet_y":31,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Male Artist","b":"1F468-200D-1F3A8","k":[16,26]},"crossed_swords":{"a":"Crossed Swords","b":"2694-FE0F","c":"2694","j":["weapon"],"k":[48,13],"o":4},"nine":{"a":"Keycap 9","b":"0039-FE0F-20E3","c":"0039-20E3","j":["blue-square","numbers","9"],"k":[0,11],"o":3},"flag-lk":{"a":"Sri Lanka Flag","b":"1F1F1-1F1F0","k":[3,10]},"clock130":{"a":"Clock Face One-Thirty","b":"1F55C","j":["time","late","early","schedule"],"k":[28,30]},"clock2":{"a":"Clock Face Two Oclock","b":"1F551","j":["time","late","early","schedule"],"k":[28,19]},"gun":{"a":"Pistol","b":"1F52B","j":["violence","weapon","pistol","revolver"],"k":[27,45]},"keycap_ten":{"a":"Keycap Ten","b":"1F51F","j":["numbers","10","blue-square"],"k":[27,33]},"female-artist":{"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F3A8","non_qualified":null,"image":"1f469-1f3fb-200d-1f3a8.png","sheet_x":18,"sheet_y":42,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F469-1F3FC-200D-1F3A8","non_qualified":null,"image":"1f469-1f3fc-200d-1f3a8.png","sheet_x":18,"sheet_y":43,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F469-1F3FD-200D-1F3A8","non_qualified":null,"image":"1f469-1f3fd-200d-1f3a8.png","sheet_x":18,"sheet_y":44,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F469-1F3FE-200D-1F3A8","non_qualified":null,"image":"1f469-1f3fe-200d-1f3a8.png","sheet_x":18,"sheet_y":45,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F469-1F3FF-200D-1F3A8","non_qualified":null,"image":"1f469-1f3ff-200d-1f3a8.png","sheet_x":18,"sheet_y":46,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Female Artist","b":"1F469-200D-1F3A8","k":[18,41]},"flag-lr":{"a":"Liberia Flag","b":"1F1F1-1F1F7","k":[3,11]},"clock230":{"a":"Clock Face Two-Thirty","b":"1F55D","j":["time","late","early","schedule"],"k":[28,31]},"bow_and_arrow":{"a":"Bow and Arrow","b":"1F3F9","j":["sports"],"k":[12,23],"o":8},"male-pilot":{"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-2708-FE0F","non_qualified":"1F468-1F3FB-200D-2708","image":"1f468-1f3fb-200d-2708-fe0f.png","sheet_x":18,"sheet_y":4,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F468-1F3FC-200D-2708-FE0F","non_qualified":"1F468-1F3FC-200D-2708","image":"1f468-1f3fc-200d-2708-fe0f.png","sheet_x":18,"sheet_y":5,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F468-1F3FD-200D-2708-FE0F","non_qualified":"1F468-1F3FD-200D-2708","image":"1f468-1f3fd-200d-2708-fe0f.png","sheet_x":18,"sheet_y":6,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F468-1F3FE-200D-2708-FE0F","non_qualified":"1F468-1F3FE-200D-2708","image":"1f468-1f3fe-200d-2708-fe0f.png","sheet_x":18,"sheet_y":7,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F468-1F3FF-200D-2708-FE0F","non_qualified":"1F468-1F3FF-200D-2708","image":"1f468-1f3ff-200d-2708-fe0f.png","sheet_x":18,"sheet_y":8,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Male Pilot","b":"1F468-200D-2708-FE0F","c":"1F468-200D-2708","k":[18,3]},"flag-ls":{"a":"Lesotho Flag","b":"1F1F1-1F1F8","k":[3,12]},"flag-lt":{"a":"Lithuania Flag","b":"1F1F1-1F1F9","k":[3,13]},"capital_abcd":{"a":"Input Symbol for Latin Capital Letters","b":"1F520","j":["alphabet","words","blue-square"],"k":[27,34]},"female-pilot":{"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-2708-FE0F","non_qualified":"1F469-1F3FB-200D-2708","image":"1f469-1f3fb-200d-2708-fe0f.png","sheet_x":20,"sheet_y":14,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F469-1F3FC-200D-2708-FE0F","non_qualified":"1F469-1F3FC-200D-2708","image":"1f469-1f3fc-200d-2708-fe0f.png","sheet_x":20,"sheet_y":15,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F469-1F3FD-200D-2708-FE0F","non_qualified":"1F469-1F3FD-200D-2708","image":"1f469-1f3fd-200d-2708-fe0f.png","sheet_x":20,"sheet_y":16,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F469-1F3FE-200D-2708-FE0F","non_qualified":"1F469-1F3FE-200D-2708","image":"1f469-1f3fe-200d-2708-fe0f.png","sheet_x":20,"sheet_y":17,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F469-1F3FF-200D-2708-FE0F","non_qualified":"1F469-1F3FF-200D-2708","image":"1f469-1f3ff-200d-2708-fe0f.png","sheet_x":20,"sheet_y":18,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Female Pilot","b":"1F469-200D-2708-FE0F","c":"1F469-200D-2708","k":[20,13]},"clock3":{"a":"Clock Face Three Oclock","b":"1F552","j":["time","late","early","schedule"],"k":[28,20]},"shield":{"a":"Shield","b":"1F6E1-FE0F","c":"1F6E1","j":["protection","security"],"k":[37,9],"o":7},"male-astronaut":{"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F680","non_qualified":null,"image":"1f468-1f3fb-200d-1f680.png","sheet_x":17,"sheet_y":32,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F468-1F3FC-200D-1F680","non_qualified":null,"image":"1f468-1f3fc-200d-1f680.png","sheet_x":17,"sheet_y":33,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F468-1F3FD-200D-1F680","non_qualified":null,"image":"1f468-1f3fd-200d-1f680.png","sheet_x":17,"sheet_y":34,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F468-1F3FE-200D-1F680","non_qualified":null,"image":"1f468-1f3fe-200d-1f680.png","sheet_x":17,"sheet_y":35,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F468-1F3FF-200D-1F680","non_qualified":null,"image":"1f468-1f3ff-200d-1f680.png","sheet_x":17,"sheet_y":36,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Male Astronaut","b":"1F468-200D-1F680","k":[17,31]},"abcd":{"a":"Input Symbol for Latin Small Letters","b":"1F521","j":["blue-square","alphabet"],"k":[27,35]},"clock330":{"a":"Clock Face Three-Thirty","b":"1F55E","j":["time","late","early","schedule"],"k":[28,32]},"flag-lu":{"a":"Luxembourg Flag","b":"1F1F1-1F1FA","k":[3,14]},"wrench":{"a":"Wrench","b":"1F527","j":["tools","diy","ikea","fix","maintainer"],"k":[27,41]},"nut_and_bolt":{"a":"Nut and Bolt","b":"1F529","j":["handy","tools","fix"],"k":[27,43]},"clock4":{"a":"Clock Face Four Oclock","b":"1F553","j":["time","late","early","schedule"],"k":[28,21]},"female-astronaut":{"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F680","non_qualified":null,"image":"1f469-1f3fb-200d-1f680.png","sheet_x":19,"sheet_y":42,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F469-1F3FC-200D-1F680","non_qualified":null,"image":"1f469-1f3fc-200d-1f680.png","sheet_x":19,"sheet_y":43,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F469-1F3FD-200D-1F680","non_qualified":null,"image":"1f469-1f3fd-200d-1f680.png","sheet_x":19,"sheet_y":44,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F469-1F3FE-200D-1F680","non_qualified":null,"image":"1f469-1f3fe-200d-1f680.png","sheet_x":19,"sheet_y":45,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F469-1F3FF-200D-1F680","non_qualified":null,"image":"1f469-1f3ff-200d-1f680.png","sheet_x":19,"sheet_y":46,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Female Astronaut","b":"1F469-200D-1F680","k":[19,41]},"flag-lv":{"a":"Latvia Flag","b":"1F1F1-1F1FB","k":[3,15]},"gear":{"a":"Gear","b":"2699-FE0F","c":"2699","j":["cog"],"k":[48,17],"o":4},"male-firefighter":{"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F692","non_qualified":null,"image":"1f468-1f3fb-200d-1f692.png","sheet_x":17,"sheet_y":38,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F468-1F3FC-200D-1F692","non_qualified":null,"image":"1f468-1f3fc-200d-1f692.png","sheet_x":17,"sheet_y":39,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F468-1F3FD-200D-1F692","non_qualified":null,"image":"1f468-1f3fd-200d-1f692.png","sheet_x":17,"sheet_y":40,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F468-1F3FE-200D-1F692","non_qualified":null,"image":"1f468-1f3fe-200d-1f692.png","sheet_x":17,"sheet_y":41,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F468-1F3FF-200D-1F692","non_qualified":null,"image":"1f468-1f3ff-200d-1f692.png","sheet_x":17,"sheet_y":42,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Male Firefighter","b":"1F468-200D-1F692","k":[17,37]},"flag-ly":{"a":"Libya Flag","b":"1F1F1-1F1FE","k":[3,16]},"symbols":{"a":"Input Symbol for Symbols","b":"1F523","j":["blue-square","music","note","ampersand","percent","glyphs","characters"],"k":[27,37]},"clock430":{"a":"Clock Face Four-Thirty","b":"1F55F","j":["time","late","early","schedule"],"k":[28,33]},"flag-ma":{"a":"Morocco Flag","b":"1F1F2-1F1E6","k":[3,17]},"compression":{"a":"Compression","b":"1F5DC-FE0F","c":"1F5DC","k":[30,10],"o":7},"female-firefighter":{"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F692","non_qualified":null,"image":"1f469-1f3fb-200d-1f692.png","sheet_x":19,"sheet_y":48,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F469-1F3FC-200D-1F692","non_qualified":null,"image":"1f469-1f3fc-200d-1f692.png","sheet_x":19,"sheet_y":49,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F469-1F3FD-200D-1F692","non_qualified":null,"image":"1f469-1f3fd-200d-1f692.png","sheet_x":19,"sheet_y":50,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F469-1F3FE-200D-1F692","non_qualified":null,"image":"1f469-1f3fe-200d-1f692.png","sheet_x":19,"sheet_y":51,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F469-1F3FF-200D-1F692","non_qualified":null,"image":"1f469-1f3ff-200d-1f692.png","sheet_x":20,"sheet_y":0,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Female Firefighter","b":"1F469-200D-1F692","k":[19,47]},"abc":{"a":"Input Symbol for Latin Letters","b":"1F524","j":["blue-square","alphabet"],"k":[27,38]},"clock5":{"a":"Clock Face Five Oclock","b":"1F554","j":["time","late","early","schedule"],"k":[28,22]},"clock530":{"a":"Clock Face Five-Thirty","b":"1F560","j":["time","late","early","schedule"],"k":[28,34]},"a":{"a":"Negative Squared Latin Capital Letter a","b":"1F170-FE0F","c":"1F170","j":["red-square","alphabet","letter"],"k":[0,16]},"alembic":{"a":"Alembic","b":"2697-FE0F","c":"2697","j":["distilling","science","experiment","chemistry"],"k":[48,16],"o":4},"flag-mc":{"a":"Monaco Flag","b":"1F1F2-1F1E8","k":[3,18]},"cop":{"skin_variations":{"1F3FB":{"unified":"1F46E-1F3FB","non_qualified":null,"image":"1f46e-1f3fb.png","sheet_x":20,"sheet_y":46,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FC":{"unified":"1F46E-1F3FC","non_qualified":null,"image":"1f46e-1f3fc.png","sheet_x":20,"sheet_y":47,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FD":{"unified":"1F46E-1F3FD","non_qualified":null,"image":"1f46e-1f3fd.png","sheet_x":20,"sheet_y":48,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FE":{"unified":"1F46E-1F3FE","non_qualified":null,"image":"1f46e-1f3fe.png","sheet_x":20,"sheet_y":49,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FF":{"unified":"1F46E-1F3FF","non_qualified":null,"image":"1f46e-1f3ff.png","sheet_x":20,"sheet_y":50,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true}},"obsoleted_by":"1F46E-200D-2642-FE0F","a":"Police Officer","b":"1F46E","k":[20,45]},"scales":{"a":"Scales","b":"2696-FE0F","c":"2696","k":[48,15],"o":4},"clock6":{"a":"Clock Face Six Oclock","b":"1F555","j":["time","late","early","schedule","dawn","dusk"],"k":[28,23]},"flag-md":{"a":"Moldova Flag","b":"1F1F2-1F1E9","k":[3,19]},"ab":{"a":"Negative Squared Ab","b":"1F18E","j":["red-square","alphabet"],"k":[0,20]},"male-police-officer":{"skin_variations":{"1F3FB":{"unified":"1F46E-1F3FB-200D-2642-FE0F","non_qualified":"1F46E-1F3FB-200D-2642","image":"1f46e-1f3fb-200d-2642-fe0f.png","sheet_x":20,"sheet_y":40,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F46E-1F3FC-200D-2642-FE0F","non_qualified":"1F46E-1F3FC-200D-2642","image":"1f46e-1f3fc-200d-2642-fe0f.png","sheet_x":20,"sheet_y":41,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F46E-1F3FD-200D-2642-FE0F","non_qualified":"1F46E-1F3FD-200D-2642","image":"1f46e-1f3fd-200d-2642-fe0f.png","sheet_x":20,"sheet_y":42,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F46E-1F3FE-200D-2642-FE0F","non_qualified":"1F46E-1F3FE-200D-2642","image":"1f46e-1f3fe-200d-2642-fe0f.png","sheet_x":20,"sheet_y":43,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F46E-1F3FF-200D-2642-FE0F","non_qualified":"1F46E-1F3FF-200D-2642","image":"1f46e-1f3ff-200d-2642-fe0f.png","sheet_x":20,"sheet_y":44,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoletes":"1F46E","a":"Male Police Officer","b":"1F46E-200D-2642-FE0F","c":"1F46E-200D-2642","k":[20,39]},"link":{"a":"Link Symbol","b":"1F517","j":["rings","url"],"k":[27,25]},"flag-me":{"a":"Montenegro Flag","b":"1F1F2-1F1EA","k":[3,20]},"clock630":{"a":"Clock Face Six-Thirty","b":"1F561","j":["time","late","early","schedule"],"k":[28,35]},"b":{"a":"Negative Squared Latin Capital Letter B","b":"1F171-FE0F","c":"1F171","j":["red-square","alphabet","letter"],"k":[0,17]},"female-police-officer":{"skin_variations":{"1F3FB":{"unified":"1F46E-1F3FB-200D-2640-FE0F","non_qualified":"1F46E-1F3FB-200D-2640","image":"1f46e-1f3fb-200d-2640-fe0f.png","sheet_x":20,"sheet_y":34,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F46E-1F3FC-200D-2640-FE0F","non_qualified":"1F46E-1F3FC-200D-2640","image":"1f46e-1f3fc-200d-2640-fe0f.png","sheet_x":20,"sheet_y":35,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F46E-1F3FD-200D-2640-FE0F","non_qualified":"1F46E-1F3FD-200D-2640","image":"1f46e-1f3fd-200d-2640-fe0f.png","sheet_x":20,"sheet_y":36,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F46E-1F3FE-200D-2640-FE0F","non_qualified":"1F46E-1F3FE-200D-2640","image":"1f46e-1f3fe-200d-2640-fe0f.png","sheet_x":20,"sheet_y":37,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F46E-1F3FF-200D-2640-FE0F","non_qualified":"1F46E-1F3FF-200D-2640","image":"1f46e-1f3ff-200d-2640-fe0f.png","sheet_x":20,"sheet_y":38,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Female Police Officer","b":"1F46E-200D-2640-FE0F","c":"1F46E-200D-2640","k":[20,33]},"clock7":{"a":"Clock Face Seven Oclock","b":"1F556","j":["time","late","early","schedule"],"k":[28,24]},"cl":{"a":"Squared Cl","b":"1F191","j":["alphabet","words","red-square"],"k":[0,21]},"sleuth_or_spy":{"skin_variations":{"1F3FB":{"unified":"1F575-1F3FB","non_qualified":null,"image":"1f575-1f3fb.png","sheet_x":29,"sheet_y":12,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F575-1F3FC","non_qualified":null,"image":"1f575-1f3fc.png","sheet_x":29,"sheet_y":13,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F575-1F3FD","non_qualified":null,"image":"1f575-1f3fd.png","sheet_x":29,"sheet_y":14,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F575-1F3FE","non_qualified":null,"image":"1f575-1f3fe.png","sheet_x":29,"sheet_y":15,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F575-1F3FF","non_qualified":null,"image":"1f575-1f3ff.png","sheet_x":29,"sheet_y":16,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoleted_by":"1F575-FE0F-200D-2642-FE0F","a":"Sleuth or Spy","b":"1F575-FE0F","c":"1F575","k":[29,11],"o":7},"chains":{"a":"Chains","b":"26D3-FE0F","c":"26D3","j":["lock","arrest"],"k":[48,34],"o":5},"syringe":{"a":"Syringe","b":"1F489","j":["health","hospital","drugs","blood","medicine","needle","doctor","nurse"],"k":[24,35]},"male-detective":{"skin_variations":{"1F3FB":{"unified":"1F575-1F3FB-200D-2642-FE0F","non_qualified":"1F575-1F3FB-200D-2642","image":"1f575-1f3fb-200d-2642-fe0f.png","sheet_x":29,"sheet_y":6,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F575-1F3FC-200D-2642-FE0F","non_qualified":"1F575-1F3FC-200D-2642","image":"1f575-1f3fc-200d-2642-fe0f.png","sheet_x":29,"sheet_y":7,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F575-1F3FD-200D-2642-FE0F","non_qualified":"1F575-1F3FD-200D-2642","image":"1f575-1f3fd-200d-2642-fe0f.png","sheet_x":29,"sheet_y":8,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F575-1F3FE-200D-2642-FE0F","non_qualified":"1F575-1F3FE-200D-2642","image":"1f575-1f3fe-200d-2642-fe0f.png","sheet_x":29,"sheet_y":9,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F575-1F3FF-200D-2642-FE0F","non_qualified":"1F575-1F3FF-200D-2642","image":"1f575-1f3ff-200d-2642-fe0f.png","sheet_x":29,"sheet_y":10,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoletes":"1F575-FE0F","a":"Male Detective","b":"1F575-FE0F-200D-2642-FE0F","k":[29,5],"o":7},"cool":{"a":"Squared Cool","b":"1F192","j":["words","blue-square"],"k":[0,22]},"clock730":{"a":"Clock Face Seven-Thirty","b":"1F562","j":["time","late","early","schedule"],"k":[28,36]},"flag-mg":{"a":"Madagascar Flag","b":"1F1F2-1F1EC","k":[3,22]},"free":{"a":"Squared Free","b":"1F193","j":["blue-square","words"],"k":[0,23]},"flag-mh":{"a":"Marshall Islands Flag","b":"1F1F2-1F1ED","k":[3,23]},"clock8":{"a":"Clock Face Eight Oclock","b":"1F557","j":["time","late","early","schedule"],"k":[28,25]},"pill":{"a":"Pill","b":"1F48A","j":["health","medicine","doctor","pharmacy","drug"],"k":[24,36]},"female-detective":{"skin_variations":{"1F3FB":{"unified":"1F575-1F3FB-200D-2640-FE0F","non_qualified":"1F575-1F3FB-200D-2640","image":"1f575-1f3fb-200d-2640-fe0f.png","sheet_x":29,"sheet_y":0,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F575-1F3FC-200D-2640-FE0F","non_qualified":"1F575-1F3FC-200D-2640","image":"1f575-1f3fc-200d-2640-fe0f.png","sheet_x":29,"sheet_y":1,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F575-1F3FD-200D-2640-FE0F","non_qualified":"1F575-1F3FD-200D-2640","image":"1f575-1f3fd-200d-2640-fe0f.png","sheet_x":29,"sheet_y":2,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F575-1F3FE-200D-2640-FE0F","non_qualified":"1F575-1F3FE-200D-2640","image":"1f575-1f3fe-200d-2640-fe0f.png","sheet_x":29,"sheet_y":3,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F575-1F3FF-200D-2640-FE0F","non_qualified":"1F575-1F3FF-200D-2640","image":"1f575-1f3ff-200d-2640-fe0f.png","sheet_x":29,"sheet_y":4,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Female Detective","b":"1F575-FE0F-200D-2640-FE0F","k":[28,51],"o":7},"clock830":{"a":"Clock Face Eight-Thirty","b":"1F563","j":["time","late","early","schedule"],"k":[28,37]},"guardsman":{"skin_variations":{"1F3FB":{"unified":"1F482-1F3FB","non_qualified":null,"image":"1f482-1f3fb.png","sheet_x":23,"sheet_y":32,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FC":{"unified":"1F482-1F3FC","non_qualified":null,"image":"1f482-1f3fc.png","sheet_x":23,"sheet_y":33,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FD":{"unified":"1F482-1F3FD","non_qualified":null,"image":"1f482-1f3fd.png","sheet_x":23,"sheet_y":34,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FE":{"unified":"1F482-1F3FE","non_qualified":null,"image":"1f482-1f3fe.png","sheet_x":23,"sheet_y":35,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FF":{"unified":"1F482-1F3FF","non_qualified":null,"image":"1f482-1f3ff.png","sheet_x":23,"sheet_y":36,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true}},"obsoleted_by":"1F482-200D-2642-FE0F","a":"Guardsman","b":"1F482","j":["uk","gb","british","male","guy","royal"],"k":[23,31]},"information_source":{"a":"Information Source","b":"2139-FE0F","c":"2139","j":["blue-square","alphabet","letter"],"k":[46,32],"o":3},"flag-mk":{"a":"Macedonia Flag","b":"1F1F2-1F1F0","k":[3,24]},"smoking":{"a":"Smoking Symbol","b":"1F6AC","j":["kills","tobacco","cigarette","joint","smoke"],"k":[35,17]},"id":{"a":"Squared Id","b":"1F194","j":["purple-square","words"],"k":[0,24]},"clock9":{"a":"Clock Face Nine Oclock","b":"1F558","j":["time","late","early","schedule"],"k":[28,26]},"flag-ml":{"a":"Mali Flag","b":"1F1F2-1F1F1","k":[3,25]},"coffin":{"a":"Coffin","b":"26B0-FE0F","c":"26B0","j":["vampire","dead","die","death","rip","graveyard","cemetery","casket","funeral","box"],"k":[48,24],"o":4},"male-guard":{"skin_variations":{"1F3FB":{"unified":"1F482-1F3FB-200D-2642-FE0F","non_qualified":"1F482-1F3FB-200D-2642","image":"1f482-1f3fb-200d-2642-fe0f.png","sheet_x":23,"sheet_y":26,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F482-1F3FC-200D-2642-FE0F","non_qualified":"1F482-1F3FC-200D-2642","image":"1f482-1f3fc-200d-2642-fe0f.png","sheet_x":23,"sheet_y":27,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F482-1F3FD-200D-2642-FE0F","non_qualified":"1F482-1F3FD-200D-2642","image":"1f482-1f3fd-200d-2642-fe0f.png","sheet_x":23,"sheet_y":28,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F482-1F3FE-200D-2642-FE0F","non_qualified":"1F482-1F3FE-200D-2642","image":"1f482-1f3fe-200d-2642-fe0f.png","sheet_x":23,"sheet_y":29,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F482-1F3FF-200D-2642-FE0F","non_qualified":"1F482-1F3FF-200D-2642","image":"1f482-1f3ff-200d-2642-fe0f.png","sheet_x":23,"sheet_y":30,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoletes":"1F482","a":"Male Guard","b":"1F482-200D-2642-FE0F","c":"1F482-200D-2642","k":[23,25]},"m":{"a":"Circled Latin Capital Letter M","b":"24C2-FE0F","c":"24C2","j":["alphabet","blue-circle","letter"],"k":[47,7],"o":1},"funeral_urn":{"a":"Funeral Urn","b":"26B1-FE0F","c":"26B1","j":["dead","die","death","rip","ashes"],"k":[48,25],"o":4},"female-guard":{"skin_variations":{"1F3FB":{"unified":"1F482-1F3FB-200D-2640-FE0F","non_qualified":"1F482-1F3FB-200D-2640","image":"1f482-1f3fb-200d-2640-fe0f.png","sheet_x":23,"sheet_y":20,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F482-1F3FC-200D-2640-FE0F","non_qualified":"1F482-1F3FC-200D-2640","image":"1f482-1f3fc-200d-2640-fe0f.png","sheet_x":23,"sheet_y":21,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F482-1F3FD-200D-2640-FE0F","non_qualified":"1F482-1F3FD-200D-2640","image":"1f482-1f3fd-200d-2640-fe0f.png","sheet_x":23,"sheet_y":22,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F482-1F3FE-200D-2640-FE0F","non_qualified":"1F482-1F3FE-200D-2640","image":"1f482-1f3fe-200d-2640-fe0f.png","sheet_x":23,"sheet_y":23,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F482-1F3FF-200D-2640-FE0F","non_qualified":"1F482-1F3FF-200D-2640","image":"1f482-1f3ff-200d-2640-fe0f.png","sheet_x":23,"sheet_y":24,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Female Guard","b":"1F482-200D-2640-FE0F","c":"1F482-200D-2640","k":[23,19]},"flag-mm":{"a":"Myanmar (burma) Flag","b":"1F1F2-1F1F2","k":[3,26]},"clock930":{"a":"Clock Face Nine-Thirty","b":"1F564","j":["time","late","early","schedule"],"k":[28,38]},"moyai":{"a":"Moyai","b":"1F5FF","j":["rock","easter island","moai"],"k":[30,23]},"new":{"a":"Squared New","b":"1F195","j":["blue-square","words","start"],"k":[0,25]},"flag-mn":{"a":"Mongolia Flag","b":"1F1F2-1F1F3","k":[3,27]},"construction_worker":{"skin_variations":{"1F3FB":{"unified":"1F477-1F3FB","non_qualified":null,"image":"1f477-1f3fb.png","sheet_x":22,"sheet_y":29,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FC":{"unified":"1F477-1F3FC","non_qualified":null,"image":"1f477-1f3fc.png","sheet_x":22,"sheet_y":30,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FD":{"unified":"1F477-1F3FD","non_qualified":null,"image":"1f477-1f3fd.png","sheet_x":22,"sheet_y":31,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FE":{"unified":"1F477-1F3FE","non_qualified":null,"image":"1f477-1f3fe.png","sheet_x":22,"sheet_y":32,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FF":{"unified":"1F477-1F3FF","non_qualified":null,"image":"1f477-1f3ff.png","sheet_x":22,"sheet_y":33,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true}},"obsoleted_by":"1F477-200D-2642-FE0F","a":"Construction Worker","b":"1F477","k":[22,28]},"clock10":{"a":"Clock Face Ten Oclock","b":"1F559","j":["time","late","early","schedule"],"k":[28,27]},"clock1030":{"a":"Clock Face Ten-Thirty","b":"1F565","j":["time","late","early","schedule"],"k":[28,39]},"ng":{"a":"Squared Ng","b":"1F196","j":["blue-square","words","shape","icon"],"k":[0,26]},"male-construction-worker":{"skin_variations":{"1F3FB":{"unified":"1F477-1F3FB-200D-2642-FE0F","non_qualified":"1F477-1F3FB-200D-2642","image":"1f477-1f3fb-200d-2642-fe0f.png","sheet_x":22,"sheet_y":23,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F477-1F3FC-200D-2642-FE0F","non_qualified":"1F477-1F3FC-200D-2642","image":"1f477-1f3fc-200d-2642-fe0f.png","sheet_x":22,"sheet_y":24,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F477-1F3FD-200D-2642-FE0F","non_qualified":"1F477-1F3FD-200D-2642","image":"1f477-1f3fd-200d-2642-fe0f.png","sheet_x":22,"sheet_y":25,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F477-1F3FE-200D-2642-FE0F","non_qualified":"1F477-1F3FE-200D-2642","image":"1f477-1f3fe-200d-2642-fe0f.png","sheet_x":22,"sheet_y":26,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F477-1F3FF-200D-2642-FE0F","non_qualified":"1F477-1F3FF-200D-2642","image":"1f477-1f3ff-200d-2642-fe0f.png","sheet_x":22,"sheet_y":27,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoletes":"1F477","a":"Male Construction Worker","b":"1F477-200D-2642-FE0F","c":"1F477-200D-2642","k":[22,22]},"flag-mo":{"a":"Macau Sar China Flag","b":"1F1F2-1F1F4","k":[3,28]},"oil_drum":{"a":"Oil Drum","b":"1F6E2-FE0F","c":"1F6E2","j":["barrell"],"k":[37,10],"o":7},"o2":{"a":"Negative Squared Latin Capital Letter O","b":"1F17E-FE0F","c":"1F17E","j":["alphabet","red-square","letter"],"k":[0,18]},"female-construction-worker":{"skin_variations":{"1F3FB":{"unified":"1F477-1F3FB-200D-2640-FE0F","non_qualified":"1F477-1F3FB-200D-2640","image":"1f477-1f3fb-200d-2640-fe0f.png","sheet_x":22,"sheet_y":17,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F477-1F3FC-200D-2640-FE0F","non_qualified":"1F477-1F3FC-200D-2640","image":"1f477-1f3fc-200d-2640-fe0f.png","sheet_x":22,"sheet_y":18,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F477-1F3FD-200D-2640-FE0F","non_qualified":"1F477-1F3FD-200D-2640","image":"1f477-1f3fd-200d-2640-fe0f.png","sheet_x":22,"sheet_y":19,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F477-1F3FE-200D-2640-FE0F","non_qualified":"1F477-1F3FE-200D-2640","image":"1f477-1f3fe-200d-2640-fe0f.png","sheet_x":22,"sheet_y":20,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F477-1F3FF-200D-2640-FE0F","non_qualified":"1F477-1F3FF-200D-2640","image":"1f477-1f3ff-200d-2640-fe0f.png","sheet_x":22,"sheet_y":21,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Female Construction Worker","b":"1F477-200D-2640-FE0F","c":"1F477-200D-2640","k":[22,16]},"clock11":{"a":"Clock Face Eleven Oclock","b":"1F55A","j":["time","late","early","schedule"],"k":[28,28]},"crystal_ball":{"a":"Crystal Ball","b":"1F52E","j":["disco","party","magic","circus","fortune_teller"],"k":[27,48]},"flag-mp":{"a":"Northern Mariana Islands Flag","b":"1F1F2-1F1F5","k":[3,29]},"prince":{"skin_variations":{"1F3FB":{"unified":"1F934-1F3FB","non_qualified":null,"image":"1f934-1f3fb.png","sheet_x":39,"sheet_y":29,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F934-1F3FC","non_qualified":null,"image":"1f934-1f3fc.png","sheet_x":39,"sheet_y":30,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F934-1F3FD","non_qualified":null,"image":"1f934-1f3fd.png","sheet_x":39,"sheet_y":31,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F934-1F3FE","non_qualified":null,"image":"1f934-1f3fe.png","sheet_x":39,"sheet_y":32,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F934-1F3FF","non_qualified":null,"image":"1f934-1f3ff.png","sheet_x":39,"sheet_y":33,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Prince","b":"1F934","j":["boy","man","male","crown","royal","king"],"k":[39,28],"o":9},"ok":{"a":"Squared Ok","b":"1F197","j":["good","agree","yes","blue-square"],"k":[0,27]},"clock1130":{"a":"Clock Face Eleven-Thirty","b":"1F566","j":["time","late","early","schedule"],"k":[28,40]},"shopping_trolley":{"a":"Shopping Trolley","b":"1F6D2","k":[37,7],"o":9},"flag-mr":{"a":"Mauritania Flag","b":"1F1F2-1F1F7","k":[3,31]},"princess":{"skin_variations":{"1F3FB":{"unified":"1F478-1F3FB","non_qualified":null,"image":"1f478-1f3fb.png","sheet_x":22,"sheet_y":35,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F478-1F3FC","non_qualified":null,"image":"1f478-1f3fc.png","sheet_x":22,"sheet_y":36,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F478-1F3FD","non_qualified":null,"image":"1f478-1f3fd.png","sheet_x":22,"sheet_y":37,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F478-1F3FE","non_qualified":null,"image":"1f478-1f3fe.png","sheet_x":22,"sheet_y":38,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F478-1F3FF","non_qualified":null,"image":"1f478-1f3ff.png","sheet_x":22,"sheet_y":39,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Princess","b":"1F478","j":["girl","woman","female","blond","crown","royal","queen"],"k":[22,34]},"new_moon":{"a":"New Moon Symbol","b":"1F311","j":["nature","twilight","planet","space","night","evening","sleep"],"k":[6,9]},"parking":{"a":"Negative Squared Latin Capital Letter P","b":"1F17F-FE0F","c":"1F17F","j":["cars","blue-square","alphabet","letter"],"k":[0,19],"o":5},"sos":{"a":"Squared Sos","b":"1F198","j":["help","red-square","words","emergency","911"],"k":[0,28]},"man_with_turban":{"skin_variations":{"1F3FB":{"unified":"1F473-1F3FB","non_qualified":null,"image":"1f473-1f3fb.png","sheet_x":21,"sheet_y":45,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FC":{"unified":"1F473-1F3FC","non_qualified":null,"image":"1f473-1f3fc.png","sheet_x":21,"sheet_y":46,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FD":{"unified":"1F473-1F3FD","non_qualified":null,"image":"1f473-1f3fd.png","sheet_x":21,"sheet_y":47,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FE":{"unified":"1F473-1F3FE","non_qualified":null,"image":"1f473-1f3fe.png","sheet_x":21,"sheet_y":48,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FF":{"unified":"1F473-1F3FF","non_qualified":null,"image":"1f473-1f3ff.png","sheet_x":21,"sheet_y":49,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true}},"obsoleted_by":"1F473-200D-2642-FE0F","a":"Man with Turban","b":"1F473","j":["male","indian","hinduism","arabs"],"k":[21,44]},"flag-ms":{"a":"Montserrat Flag","b":"1F1F2-1F1F8","k":[3,32]},"waxing_crescent_moon":{"a":"Waxing Crescent Moon Symbol","b":"1F312","j":["nature","twilight","planet","space","night","evening","sleep"],"k":[6,10]},"up":{"a":"Squared Up with Exclamation Mark","b":"1F199","j":["blue-square","above","high"],"k":[0,29]},"first_quarter_moon":{"a":"First Quarter Moon Symbol","b":"1F313","j":["nature","twilight","planet","space","night","evening","sleep"],"k":[6,11]},"flag-mt":{"a":"Malta Flag","b":"1F1F2-1F1F9","k":[3,33]},"man-wearing-turban":{"skin_variations":{"1F3FB":{"unified":"1F473-1F3FB-200D-2642-FE0F","non_qualified":"1F473-1F3FB-200D-2642","image":"1f473-1f3fb-200d-2642-fe0f.png","sheet_x":21,"sheet_y":39,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F473-1F3FC-200D-2642-FE0F","non_qualified":"1F473-1F3FC-200D-2642","image":"1f473-1f3fc-200d-2642-fe0f.png","sheet_x":21,"sheet_y":40,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F473-1F3FD-200D-2642-FE0F","non_qualified":"1F473-1F3FD-200D-2642","image":"1f473-1f3fd-200d-2642-fe0f.png","sheet_x":21,"sheet_y":41,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F473-1F3FE-200D-2642-FE0F","non_qualified":"1F473-1F3FE-200D-2642","image":"1f473-1f3fe-200d-2642-fe0f.png","sheet_x":21,"sheet_y":42,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F473-1F3FF-200D-2642-FE0F","non_qualified":"1F473-1F3FF-200D-2642","image":"1f473-1f3ff-200d-2642-fe0f.png","sheet_x":21,"sheet_y":43,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoletes":"1F473","a":"Man Wearing Turban","b":"1F473-200D-2642-FE0F","c":"1F473-200D-2642","k":[21,38]},"moon":{"a":"Waxing Gibbous Moon Symbol","b":"1F314","k":[6,12],"n":["waxing_gibbous_moon"]},"woman-wearing-turban":{"skin_variations":{"1F3FB":{"unified":"1F473-1F3FB-200D-2640-FE0F","non_qualified":"1F473-1F3FB-200D-2640","image":"1f473-1f3fb-200d-2640-fe0f.png","sheet_x":21,"sheet_y":33,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F473-1F3FC-200D-2640-FE0F","non_qualified":"1F473-1F3FC-200D-2640","image":"1f473-1f3fc-200d-2640-fe0f.png","sheet_x":21,"sheet_y":34,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F473-1F3FD-200D-2640-FE0F","non_qualified":"1F473-1F3FD-200D-2640","image":"1f473-1f3fd-200d-2640-fe0f.png","sheet_x":21,"sheet_y":35,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F473-1F3FE-200D-2640-FE0F","non_qualified":"1F473-1F3FE-200D-2640","image":"1f473-1f3fe-200d-2640-fe0f.png","sheet_x":21,"sheet_y":36,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F473-1F3FF-200D-2640-FE0F","non_qualified":"1F473-1F3FF-200D-2640","image":"1f473-1f3ff-200d-2640-fe0f.png","sheet_x":21,"sheet_y":37,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Woman Wearing Turban","b":"1F473-200D-2640-FE0F","c":"1F473-200D-2640","k":[21,32]},"vs":{"a":"Squared Vs","b":"1F19A","j":["words","orange-square"],"k":[0,30]},"flag-mu":{"a":"Mauritius Flag","b":"1F1F2-1F1FA","k":[3,34]},"man_with_gua_pi_mao":{"skin_variations":{"1F3FB":{"unified":"1F472-1F3FB","non_qualified":null,"image":"1f472-1f3fb.png","sheet_x":21,"sheet_y":27,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F472-1F3FC","non_qualified":null,"image":"1f472-1f3fc.png","sheet_x":21,"sheet_y":28,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F472-1F3FD","non_qualified":null,"image":"1f472-1f3fd.png","sheet_x":21,"sheet_y":29,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F472-1F3FE","non_qualified":null,"image":"1f472-1f3fe.png","sheet_x":21,"sheet_y":30,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F472-1F3FF","non_qualified":null,"image":"1f472-1f3ff.png","sheet_x":21,"sheet_y":31,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Man with Gua Pi Mao","b":"1F472","j":["male","boy","chinese"],"k":[21,26]},"koko":{"a":"Squared Katakana Koko","b":"1F201","j":["blue-square","here","katakana","japanese","destination"],"k":[5,29]},"full_moon":{"a":"Full Moon Symbol","b":"1F315","j":["nature","yellow","twilight","planet","space","night","evening","sleep"],"k":[6,13]},"flag-mv":{"a":"Maldives Flag","b":"1F1F2-1F1FB","k":[3,35]},"person_with_headscarf":{"skin_variations":{"1F3FB":{"unified":"1F9D5-1F3FB","non_qualified":null,"image":"1f9d5-1f3fb.png","sheet_x":43,"sheet_y":23,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F9D5-1F3FC","non_qualified":null,"image":"1f9d5-1f3fc.png","sheet_x":43,"sheet_y":24,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F9D5-1F3FD","non_qualified":null,"image":"1f9d5-1f3fd.png","sheet_x":43,"sheet_y":25,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F9D5-1F3FE","non_qualified":null,"image":"1f9d5-1f3fe.png","sheet_x":43,"sheet_y":26,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F9D5-1F3FF","non_qualified":null,"image":"1f9d5-1f3ff.png","sheet_x":43,"sheet_y":27,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Person with Headscarf","b":"1F9D5","k":[43,22],"o":10},"waning_gibbous_moon":{"a":"Waning Gibbous Moon Symbol","b":"1F316","j":["nature","twilight","planet","space","night","evening","sleep","waxing_gibbous_moon"],"k":[6,14]},"sa":{"a":"Squared Katakana Sa","b":"1F202-FE0F","c":"1F202","j":["japanese","blue-square","katakana"],"k":[5,30]},"flag-mw":{"a":"Malawi Flag","b":"1F1F2-1F1FC","k":[3,36]},"last_quarter_moon":{"a":"Last Quarter Moon Symbol","b":"1F317","j":["nature","twilight","planet","space","night","evening","sleep"],"k":[6,15]},"u6708":{"a":"Squared Cjk Unified Ideograph-6708","b":"1F237-FE0F","c":"1F237","j":["chinese","month","moon","japanese","orange-square","kanji"],"k":[5,38]},"bearded_person":{"skin_variations":{"1F3FB":{"unified":"1F9D4-1F3FB","non_qualified":null,"image":"1f9d4-1f3fb.png","sheet_x":43,"sheet_y":17,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F9D4-1F3FC","non_qualified":null,"image":"1f9d4-1f3fc.png","sheet_x":43,"sheet_y":18,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F9D4-1F3FD","non_qualified":null,"image":"1f9d4-1f3fd.png","sheet_x":43,"sheet_y":19,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F9D4-1F3FE","non_qualified":null,"image":"1f9d4-1f3fe.png","sheet_x":43,"sheet_y":20,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F9D4-1F3FF","non_qualified":null,"image":"1f9d4-1f3ff.png","sheet_x":43,"sheet_y":21,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Bearded Person","b":"1F9D4","k":[43,16],"o":10},"flag-mx":{"a":"Mexico Flag","b":"1F1F2-1F1FD","k":[3,37]},"u6709":{"a":"Squared Cjk Unified Ideograph-6709","b":"1F236","j":["orange-square","chinese","have","kanji"],"k":[5,37]},"person_with_blond_hair":{"skin_variations":{"1F3FB":{"unified":"1F471-1F3FB","non_qualified":null,"image":"1f471-1f3fb.png","sheet_x":21,"sheet_y":21,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FC":{"unified":"1F471-1F3FC","non_qualified":null,"image":"1f471-1f3fc.png","sheet_x":21,"sheet_y":22,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FD":{"unified":"1F471-1F3FD","non_qualified":null,"image":"1f471-1f3fd.png","sheet_x":21,"sheet_y":23,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FE":{"unified":"1F471-1F3FE","non_qualified":null,"image":"1f471-1f3fe.png","sheet_x":21,"sheet_y":24,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FF":{"unified":"1F471-1F3FF","non_qualified":null,"image":"1f471-1f3ff.png","sheet_x":21,"sheet_y":25,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true}},"obsoleted_by":"1F471-200D-2642-FE0F","a":"Person with Blond Hair","b":"1F471","k":[21,20]},"waning_crescent_moon":{"a":"Waning Crescent Moon Symbol","b":"1F318","j":["nature","twilight","planet","space","night","evening","sleep"],"k":[6,16]},"flag-my":{"a":"Malaysia Flag","b":"1F1F2-1F1FE","k":[3,38]},"u6307":{"a":"Squared Cjk Unified Ideograph-6307","b":"1F22F","j":["chinese","point","green-square","kanji"],"k":[5,32],"o":5},"blond-haired-man":{"skin_variations":{"1F3FB":{"unified":"1F471-1F3FB-200D-2642-FE0F","non_qualified":"1F471-1F3FB-200D-2642","image":"1f471-1f3fb-200d-2642-fe0f.png","sheet_x":21,"sheet_y":15,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F471-1F3FC-200D-2642-FE0F","non_qualified":"1F471-1F3FC-200D-2642","image":"1f471-1f3fc-200d-2642-fe0f.png","sheet_x":21,"sheet_y":16,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F471-1F3FD-200D-2642-FE0F","non_qualified":"1F471-1F3FD-200D-2642","image":"1f471-1f3fd-200d-2642-fe0f.png","sheet_x":21,"sheet_y":17,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F471-1F3FE-200D-2642-FE0F","non_qualified":"1F471-1F3FE-200D-2642","image":"1f471-1f3fe-200d-2642-fe0f.png","sheet_x":21,"sheet_y":18,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F471-1F3FF-200D-2642-FE0F","non_qualified":"1F471-1F3FF-200D-2642","image":"1f471-1f3ff-200d-2642-fe0f.png","sheet_x":21,"sheet_y":19,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoletes":"1F471","a":"Blond Haired Man","b":"1F471-200D-2642-FE0F","c":"1F471-200D-2642","k":[21,14]},"crescent_moon":{"a":"Crescent Moon","b":"1F319","j":["night","sleep","sky","evening","magic"],"k":[6,17]},"flag-mz":{"a":"Mozambique Flag","b":"1F1F2-1F1FF","k":[3,39]},"new_moon_with_face":{"a":"New Moon with Face","b":"1F31A","j":["nature","twilight","planet","space","night","evening","sleep"],"k":[6,18]},"flag-na":{"a":"Namibia Flag","b":"1F1F3-1F1E6","k":[3,40]},"blond-haired-woman":{"skin_variations":{"1F3FB":{"unified":"1F471-1F3FB-200D-2640-FE0F","non_qualified":"1F471-1F3FB-200D-2640","image":"1f471-1f3fb-200d-2640-fe0f.png","sheet_x":21,"sheet_y":9,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F471-1F3FC-200D-2640-FE0F","non_qualified":"1F471-1F3FC-200D-2640","image":"1f471-1f3fc-200d-2640-fe0f.png","sheet_x":21,"sheet_y":10,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F471-1F3FD-200D-2640-FE0F","non_qualified":"1F471-1F3FD-200D-2640","image":"1f471-1f3fd-200d-2640-fe0f.png","sheet_x":21,"sheet_y":11,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F471-1F3FE-200D-2640-FE0F","non_qualified":"1F471-1F3FE-200D-2640","image":"1f471-1f3fe-200d-2640-fe0f.png","sheet_x":21,"sheet_y":12,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F471-1F3FF-200D-2640-FE0F","non_qualified":"1F471-1F3FF-200D-2640","image":"1f471-1f3ff-200d-2640-fe0f.png","sheet_x":21,"sheet_y":13,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Blond Haired Woman","b":"1F471-200D-2640-FE0F","c":"1F471-200D-2640","k":[21,8]},"ideograph_advantage":{"a":"Circled Ideograph Advantage","b":"1F250","j":["chinese","kanji","obtain","get","circle"],"k":[5,42]},"first_quarter_moon_with_face":{"a":"First Quarter Moon with Face","b":"1F31B","j":["nature","twilight","planet","space","night","evening","sleep"],"k":[6,19]},"man_in_tuxedo":{"skin_variations":{"1F3FB":{"unified":"1F935-1F3FB","non_qualified":null,"image":"1f935-1f3fb.png","sheet_x":39,"sheet_y":35,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F935-1F3FC","non_qualified":null,"image":"1f935-1f3fc.png","sheet_x":39,"sheet_y":36,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F935-1F3FD","non_qualified":null,"image":"1f935-1f3fd.png","sheet_x":39,"sheet_y":37,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F935-1F3FE","non_qualified":null,"image":"1f935-1f3fe.png","sheet_x":39,"sheet_y":38,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F935-1F3FF","non_qualified":null,"image":"1f935-1f3ff.png","sheet_x":39,"sheet_y":39,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Man in Tuxedo","b":"1F935","j":["couple","marriage","wedding","groom"],"k":[39,34],"o":9},"u5272":{"a":"Squared Cjk Unified Ideograph-5272","b":"1F239","j":["cut","divide","chinese","kanji","pink-square"],"k":[5,40]},"flag-ne":{"a":"Niger Flag","b":"1F1F3-1F1EA","k":[3,42]},"last_quarter_moon_with_face":{"a":"Last Quarter Moon with Face","b":"1F31C","j":["nature","twilight","planet","space","night","evening","sleep"],"k":[6,20]},"u7121":{"a":"Squared Cjk Unified Ideograph-7121","b":"1F21A","j":["nothing","chinese","kanji","japanese","orange-square"],"k":[5,31],"o":5},"bride_with_veil":{"skin_variations":{"1F3FB":{"unified":"1F470-1F3FB","non_qualified":null,"image":"1f470-1f3fb.png","sheet_x":21,"sheet_y":3,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F470-1F3FC","non_qualified":null,"image":"1f470-1f3fc.png","sheet_x":21,"sheet_y":4,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F470-1F3FD","non_qualified":null,"image":"1f470-1f3fd.png","sheet_x":21,"sheet_y":5,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F470-1F3FE","non_qualified":null,"image":"1f470-1f3fe.png","sheet_x":21,"sheet_y":6,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F470-1F3FF","non_qualified":null,"image":"1f470-1f3ff.png","sheet_x":21,"sheet_y":7,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Bride with Veil","b":"1F470","j":["couple","marriage","wedding","woman","bride"],"k":[21,2]},"u7981":{"a":"Squared Cjk Unified Ideograph-7981","b":"1F232","j":["kanji","japanese","chinese","forbidden","limit","restricted","red-square"],"k":[5,33]},"pregnant_woman":{"skin_variations":{"1F3FB":{"unified":"1F930-1F3FB","non_qualified":null,"image":"1f930-1f3fb.png","sheet_x":39,"sheet_y":5,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F930-1F3FC","non_qualified":null,"image":"1f930-1f3fc.png","sheet_x":39,"sheet_y":6,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F930-1F3FD","non_qualified":null,"image":"1f930-1f3fd.png","sheet_x":39,"sheet_y":7,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F930-1F3FE","non_qualified":null,"image":"1f930-1f3fe.png","sheet_x":39,"sheet_y":8,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F930-1F3FF","non_qualified":null,"image":"1f930-1f3ff.png","sheet_x":39,"sheet_y":9,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Pregnant Woman","b":"1F930","j":["baby"],"k":[39,4],"o":9},"thermometer":{"a":"Thermometer","b":"1F321-FE0F","c":"1F321","j":["weather","temperature","hot","cold"],"k":[6,25],"o":7},"flag-nf":{"a":"Norfolk Island Flag","b":"1F1F3-1F1EB","k":[3,43]},"sunny":{"a":"Black Sun with Rays","b":"2600-FE0F","c":"2600","j":["weather","nature","brightness","summer","beach","spring"],"k":[47,16],"o":1},"accept":{"a":"Circled Ideograph Accept","b":"1F251","j":["ok","good","chinese","kanji","agree","yes","orange-circle"],"k":[5,43]},"flag-ng":{"a":"Nigeria Flag","b":"1F1F3-1F1EC","k":[3,44]},"breast-feeding":{"skin_variations":{"1F3FB":{"unified":"1F931-1F3FB","non_qualified":null,"image":"1f931-1f3fb.png","sheet_x":39,"sheet_y":11,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F931-1F3FC","non_qualified":null,"image":"1f931-1f3fc.png","sheet_x":39,"sheet_y":12,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F931-1F3FD","non_qualified":null,"image":"1f931-1f3fd.png","sheet_x":39,"sheet_y":13,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F931-1F3FE","non_qualified":null,"image":"1f931-1f3fe.png","sheet_x":39,"sheet_y":14,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F931-1F3FF","non_qualified":null,"image":"1f931-1f3ff.png","sheet_x":39,"sheet_y":15,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Breast-Feeding","b":"1F931","k":[39,10],"o":10},"full_moon_with_face":{"a":"Full Moon with Face","b":"1F31D","j":["nature","twilight","planet","space","night","evening","sleep"],"k":[6,21]},"flag-ni":{"a":"Nicaragua Flag","b":"1F1F3-1F1EE","k":[3,45]},"u7533":{"a":"Squared Cjk Unified Ideograph-7533","b":"1F238","j":["chinese","japanese","kanji","orange-square"],"k":[5,39]},"angel":{"skin_variations":{"1F3FB":{"unified":"1F47C-1F3FB","non_qualified":null,"image":"1f47c-1f3fb.png","sheet_x":22,"sheet_y":44,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F47C-1F3FC","non_qualified":null,"image":"1f47c-1f3fc.png","sheet_x":22,"sheet_y":45,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F47C-1F3FD","non_qualified":null,"image":"1f47c-1f3fd.png","sheet_x":22,"sheet_y":46,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F47C-1F3FE","non_qualified":null,"image":"1f47c-1f3fe.png","sheet_x":22,"sheet_y":47,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F47C-1F3FF","non_qualified":null,"image":"1f47c-1f3ff.png","sheet_x":22,"sheet_y":48,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Baby Angel","b":"1F47C","j":["heaven","wings","halo"],"k":[22,43]},"sun_with_face":{"a":"Sun with Face","b":"1F31E","j":["nature","morning","sky"],"k":[6,22]},"santa":{"skin_variations":{"1F3FB":{"unified":"1F385-1F3FB","non_qualified":null,"image":"1f385-1f3fb.png","sheet_x":8,"sheet_y":20,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F385-1F3FC","non_qualified":null,"image":"1f385-1f3fc.png","sheet_x":8,"sheet_y":21,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F385-1F3FD","non_qualified":null,"image":"1f385-1f3fd.png","sheet_x":8,"sheet_y":22,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F385-1F3FE","non_qualified":null,"image":"1f385-1f3fe.png","sheet_x":8,"sheet_y":23,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F385-1F3FF","non_qualified":null,"image":"1f385-1f3ff.png","sheet_x":8,"sheet_y":24,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Father Christmas","b":"1F385","j":["festival","man","male","xmas","father christmas"],"k":[8,19]},"u5408":{"a":"Squared Cjk Unified Ideograph-5408","b":"1F234","j":["japanese","chinese","join","kanji","red-square"],"k":[5,35]},"flag-nl":{"a":"Netherlands Flag","b":"1F1F3-1F1F1","k":[3,46]},"mrs_claus":{"skin_variations":{"1F3FB":{"unified":"1F936-1F3FB","non_qualified":null,"image":"1f936-1f3fb.png","sheet_x":39,"sheet_y":41,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F936-1F3FC","non_qualified":null,"image":"1f936-1f3fc.png","sheet_x":39,"sheet_y":42,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F936-1F3FD","non_qualified":null,"image":"1f936-1f3fd.png","sheet_x":39,"sheet_y":43,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F936-1F3FE","non_qualified":null,"image":"1f936-1f3fe.png","sheet_x":39,"sheet_y":44,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F936-1F3FF","non_qualified":null,"image":"1f936-1f3ff.png","sheet_x":39,"sheet_y":45,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Mother Christmas","b":"1F936","j":["woman","female","xmas","mother christmas"],"k":[39,40],"n":["mother_christmas"],"o":9},"u7a7a":{"a":"Squared Cjk Unified Ideograph-7a7a","b":"1F233","j":["kanji","japanese","chinese","empty","sky","blue-square"],"k":[5,34]},"star":{"a":"White Medium Star","b":"2B50","j":["night","yellow"],"k":[50,22],"o":5},"flag-no":{"a":"Norway Flag","b":"1F1F3-1F1F4","k":[3,47]},"mage":{"skin_variations":{"1F3FB":{"unified":"1F9D9-1F3FB","non_qualified":null,"image":"1f9d9-1f3fb.png","sheet_x":44,"sheet_y":43,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9D9-1F3FB-200D-2640-FE0F"},"1F3FC":{"unified":"1F9D9-1F3FC","non_qualified":null,"image":"1f9d9-1f3fc.png","sheet_x":44,"sheet_y":44,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9D9-1F3FC-200D-2640-FE0F"},"1F3FD":{"unified":"1F9D9-1F3FD","non_qualified":null,"image":"1f9d9-1f3fd.png","sheet_x":44,"sheet_y":45,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9D9-1F3FD-200D-2640-FE0F"},"1F3FE":{"unified":"1F9D9-1F3FE","non_qualified":null,"image":"1f9d9-1f3fe.png","sheet_x":44,"sheet_y":46,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9D9-1F3FE-200D-2640-FE0F"},"1F3FF":{"unified":"1F9D9-1F3FF","non_qualified":null,"image":"1f9d9-1f3ff.png","sheet_x":44,"sheet_y":47,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9D9-1F3FF-200D-2640-FE0F"}},"obsoleted_by":"1F9D9-200D-2640-FE0F","a":"Mage","b":"1F9D9","k":[44,42],"o":10},"star2":{"a":"Glowing Star","b":"1F31F","j":["night","sparkle","awesome","good","magic"],"k":[6,23]},"flag-np":{"a":"Nepal Flag","b":"1F1F3-1F1F5","k":[3,48]},"congratulations":{"a":"Circled Ideograph Congratulation","b":"3297-FE0F","c":"3297","j":["chinese","kanji","japanese","red-circle"],"k":[50,26],"o":1},"flag-nr":{"a":"Nauru Flag","b":"1F1F3-1F1F7","k":[3,49]},"stars":{"a":"Shooting Star","b":"1F320","j":["night","photo"],"k":[6,24]},"female_mage":{"skin_variations":{"1F3FB":{"unified":"1F9D9-1F3FB-200D-2640-FE0F","non_qualified":"1F9D9-1F3FB-200D-2640","image":"1f9d9-1f3fb-200d-2640-fe0f.png","sheet_x":44,"sheet_y":31,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9D9-1F3FB"},"1F3FC":{"unified":"1F9D9-1F3FC-200D-2640-FE0F","non_qualified":"1F9D9-1F3FC-200D-2640","image":"1f9d9-1f3fc-200d-2640-fe0f.png","sheet_x":44,"sheet_y":32,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9D9-1F3FC"},"1F3FD":{"unified":"1F9D9-1F3FD-200D-2640-FE0F","non_qualified":"1F9D9-1F3FD-200D-2640","image":"1f9d9-1f3fd-200d-2640-fe0f.png","sheet_x":44,"sheet_y":33,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9D9-1F3FD"},"1F3FE":{"unified":"1F9D9-1F3FE-200D-2640-FE0F","non_qualified":"1F9D9-1F3FE-200D-2640","image":"1f9d9-1f3fe-200d-2640-fe0f.png","sheet_x":44,"sheet_y":34,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9D9-1F3FE"},"1F3FF":{"unified":"1F9D9-1F3FF-200D-2640-FE0F","non_qualified":"1F9D9-1F3FF-200D-2640","image":"1f9d9-1f3ff-200d-2640-fe0f.png","sheet_x":44,"sheet_y":35,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9D9-1F3FF"}},"obsoletes":"1F9D9","a":"Female Mage","b":"1F9D9-200D-2640-FE0F","c":"1F9D9-200D-2640","k":[44,30],"o":10},"secret":{"a":"Circled Ideograph Secret","b":"3299-FE0F","c":"3299","j":["privacy","chinese","sshh","kanji","red-circle"],"k":[50,27],"o":1},"flag-nu":{"a":"Niue Flag","b":"1F1F3-1F1FA","k":[3,50]},"u55b6":{"a":"Squared Cjk Unified Ideograph-55b6","b":"1F23A","j":["japanese","opening hours","orange-square"],"k":[5,41]},"male_mage":{"skin_variations":{"1F3FB":{"unified":"1F9D9-1F3FB-200D-2642-FE0F","non_qualified":"1F9D9-1F3FB-200D-2642","image":"1f9d9-1f3fb-200d-2642-fe0f.png","sheet_x":44,"sheet_y":37,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F9D9-1F3FC-200D-2642-FE0F","non_qualified":"1F9D9-1F3FC-200D-2642","image":"1f9d9-1f3fc-200d-2642-fe0f.png","sheet_x":44,"sheet_y":38,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F9D9-1F3FD-200D-2642-FE0F","non_qualified":"1F9D9-1F3FD-200D-2642","image":"1f9d9-1f3fd-200d-2642-fe0f.png","sheet_x":44,"sheet_y":39,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F9D9-1F3FE-200D-2642-FE0F","non_qualified":"1F9D9-1F3FE-200D-2642","image":"1f9d9-1f3fe-200d-2642-fe0f.png","sheet_x":44,"sheet_y":40,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F9D9-1F3FF-200D-2642-FE0F","non_qualified":"1F9D9-1F3FF-200D-2642","image":"1f9d9-1f3ff-200d-2642-fe0f.png","sheet_x":44,"sheet_y":41,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Male Mage","b":"1F9D9-200D-2642-FE0F","c":"1F9D9-200D-2642","k":[44,36],"o":10},"cloud":{"a":"Cloud","b":"2601-FE0F","c":"2601","j":["weather","sky"],"k":[47,17],"o":1},"flag-nz":{"a":"New Zealand Flag","b":"1F1F3-1F1FF","k":[3,51]},"partly_sunny":{"a":"Sun Behind Cloud","b":"26C5","j":["weather","nature","cloudy","morning","fall","spring"],"k":[48,29],"o":5},"fairy":{"skin_variations":{"1F3FB":{"unified":"1F9DA-1F3FB","non_qualified":null,"image":"1f9da-1f3fb.png","sheet_x":45,"sheet_y":9,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoleted_by":"1F9DA-1F3FB-200D-2640-FE0F"},"1F3FC":{"unified":"1F9DA-1F3FC","non_qualified":null,"image":"1f9da-1f3fc.png","sheet_x":45,"sheet_y":10,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoleted_by":"1F9DA-1F3FC-200D-2640-FE0F"},"1F3FD":{"unified":"1F9DA-1F3FD","non_qualified":null,"image":"1f9da-1f3fd.png","sheet_x":45,"sheet_y":11,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoleted_by":"1F9DA-1F3FD-200D-2640-FE0F"},"1F3FE":{"unified":"1F9DA-1F3FE","non_qualified":null,"image":"1f9da-1f3fe.png","sheet_x":45,"sheet_y":12,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoleted_by":"1F9DA-1F3FE-200D-2640-FE0F"},"1F3FF":{"unified":"1F9DA-1F3FF","non_qualified":null,"image":"1f9da-1f3ff.png","sheet_x":45,"sheet_y":13,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoleted_by":"1F9DA-1F3FF-200D-2640-FE0F"}},"obsoleted_by":"1F9DA-200D-2640-FE0F","a":"Fairy","b":"1F9DA","k":[45,8],"o":10},"u6e80":{"a":"Squared Cjk Unified Ideograph-6e80","b":"1F235","j":["full","chinese","japanese","red-square","kanji"],"k":[5,36]},"black_small_square":{"a":"Black Small Square","b":"25AA-FE0F","c":"25AA","j":["shape","icon"],"k":[47,8],"o":1},"thunder_cloud_and_rain":{"a":"Thunder Cloud and Rain","b":"26C8-FE0F","c":"26C8","k":[48,30],"o":5},"female_fairy":{"skin_variations":{"1F3FB":{"unified":"1F9DA-1F3FB-200D-2640-FE0F","non_qualified":"1F9DA-1F3FB-200D-2640","image":"1f9da-1f3fb-200d-2640-fe0f.png","sheet_x":44,"sheet_y":49,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9DA-1F3FB"},"1F3FC":{"unified":"1F9DA-1F3FC-200D-2640-FE0F","non_qualified":"1F9DA-1F3FC-200D-2640","image":"1f9da-1f3fc-200d-2640-fe0f.png","sheet_x":44,"sheet_y":50,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9DA-1F3FC"},"1F3FD":{"unified":"1F9DA-1F3FD-200D-2640-FE0F","non_qualified":"1F9DA-1F3FD-200D-2640","image":"1f9da-1f3fd-200d-2640-fe0f.png","sheet_x":44,"sheet_y":51,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9DA-1F3FD"},"1F3FE":{"unified":"1F9DA-1F3FE-200D-2640-FE0F","non_qualified":"1F9DA-1F3FE-200D-2640","image":"1f9da-1f3fe-200d-2640-fe0f.png","sheet_x":45,"sheet_y":0,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9DA-1F3FE"},"1F3FF":{"unified":"1F9DA-1F3FF-200D-2640-FE0F","non_qualified":"1F9DA-1F3FF-200D-2640","image":"1f9da-1f3ff-200d-2640-fe0f.png","sheet_x":45,"sheet_y":1,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9DA-1F3FF"}},"obsoletes":"1F9DA","a":"Female Fairy","b":"1F9DA-200D-2640-FE0F","c":"1F9DA-200D-2640","k":[44,48],"o":10},"flag-om":{"a":"Oman Flag","b":"1F1F4-1F1F2","k":[4,0]},"white_small_square":{"a":"White Small Square","b":"25AB-FE0F","c":"25AB","j":["shape","icon"],"k":[47,9],"o":1},"flag-pa":{"a":"Panama Flag","b":"1F1F5-1F1E6","k":[4,1]},"mostly_sunny":{"a":"Mostly Sunny","b":"1F324-FE0F","c":"1F324","k":[6,26],"n":["sun_small_cloud"],"o":7},"male_fairy":{"skin_variations":{"1F3FB":{"unified":"1F9DA-1F3FB-200D-2642-FE0F","non_qualified":"1F9DA-1F3FB-200D-2642","image":"1f9da-1f3fb-200d-2642-fe0f.png","sheet_x":45,"sheet_y":3,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F9DA-1F3FC-200D-2642-FE0F","non_qualified":"1F9DA-1F3FC-200D-2642","image":"1f9da-1f3fc-200d-2642-fe0f.png","sheet_x":45,"sheet_y":4,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F9DA-1F3FD-200D-2642-FE0F","non_qualified":"1F9DA-1F3FD-200D-2642","image":"1f9da-1f3fd-200d-2642-fe0f.png","sheet_x":45,"sheet_y":5,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F9DA-1F3FE-200D-2642-FE0F","non_qualified":"1F9DA-1F3FE-200D-2642","image":"1f9da-1f3fe-200d-2642-fe0f.png","sheet_x":45,"sheet_y":6,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F9DA-1F3FF-200D-2642-FE0F","non_qualified":"1F9DA-1F3FF-200D-2642","image":"1f9da-1f3ff-200d-2642-fe0f.png","sheet_x":45,"sheet_y":7,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Male Fairy","b":"1F9DA-200D-2642-FE0F","c":"1F9DA-200D-2642","k":[45,2],"o":10},"barely_sunny":{"a":"Barely Sunny","b":"1F325-FE0F","c":"1F325","k":[6,27],"n":["sun_behind_cloud"],"o":7},"white_medium_square":{"a":"White Medium Square","b":"25FB-FE0F","c":"25FB","j":["shape","stone","icon"],"k":[47,12],"o":3},"flag-pe":{"a":"Peru Flag","b":"1F1F5-1F1EA","k":[4,2]},"vampire":{"skin_variations":{"1F3FB":{"unified":"1F9DB-1F3FB","non_qualified":null,"image":"1f9db-1f3fb.png","sheet_x":45,"sheet_y":27,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoleted_by":"1F9DB-1F3FB-200D-2640-FE0F"},"1F3FC":{"unified":"1F9DB-1F3FC","non_qualified":null,"image":"1f9db-1f3fc.png","sheet_x":45,"sheet_y":28,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoleted_by":"1F9DB-1F3FC-200D-2640-FE0F"},"1F3FD":{"unified":"1F9DB-1F3FD","non_qualified":null,"image":"1f9db-1f3fd.png","sheet_x":45,"sheet_y":29,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoleted_by":"1F9DB-1F3FD-200D-2640-FE0F"},"1F3FE":{"unified":"1F9DB-1F3FE","non_qualified":null,"image":"1f9db-1f3fe.png","sheet_x":45,"sheet_y":30,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoleted_by":"1F9DB-1F3FE-200D-2640-FE0F"},"1F3FF":{"unified":"1F9DB-1F3FF","non_qualified":null,"image":"1f9db-1f3ff.png","sheet_x":45,"sheet_y":31,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoleted_by":"1F9DB-1F3FF-200D-2640-FE0F"}},"obsoleted_by":"1F9DB-200D-2640-FE0F","a":"Vampire","b":"1F9DB","k":[45,26],"o":10},"female_vampire":{"skin_variations":{"1F3FB":{"unified":"1F9DB-1F3FB-200D-2640-FE0F","non_qualified":"1F9DB-1F3FB-200D-2640","image":"1f9db-1f3fb-200d-2640-fe0f.png","sheet_x":45,"sheet_y":15,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9DB-1F3FB"},"1F3FC":{"unified":"1F9DB-1F3FC-200D-2640-FE0F","non_qualified":"1F9DB-1F3FC-200D-2640","image":"1f9db-1f3fc-200d-2640-fe0f.png","sheet_x":45,"sheet_y":16,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9DB-1F3FC"},"1F3FD":{"unified":"1F9DB-1F3FD-200D-2640-FE0F","non_qualified":"1F9DB-1F3FD-200D-2640","image":"1f9db-1f3fd-200d-2640-fe0f.png","sheet_x":45,"sheet_y":17,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9DB-1F3FD"},"1F3FE":{"unified":"1F9DB-1F3FE-200D-2640-FE0F","non_qualified":"1F9DB-1F3FE-200D-2640","image":"1f9db-1f3fe-200d-2640-fe0f.png","sheet_x":45,"sheet_y":18,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9DB-1F3FE"},"1F3FF":{"unified":"1F9DB-1F3FF-200D-2640-FE0F","non_qualified":"1F9DB-1F3FF-200D-2640","image":"1f9db-1f3ff-200d-2640-fe0f.png","sheet_x":45,"sheet_y":19,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9DB-1F3FF"}},"obsoletes":"1F9DB","a":"Female Vampire","b":"1F9DB-200D-2640-FE0F","c":"1F9DB-200D-2640","k":[45,14],"o":10},"partly_sunny_rain":{"a":"Partly Sunny Rain","b":"1F326-FE0F","c":"1F326","k":[6,28],"n":["sun_behind_rain_cloud"],"o":7},"flag-pf":{"a":"French Polynesia Flag","b":"1F1F5-1F1EB","k":[4,3]},"black_medium_square":{"a":"Black Medium Square","b":"25FC-FE0F","c":"25FC","j":["shape","button","icon"],"k":[47,13],"o":3},"white_medium_small_square":{"a":"White Medium Small Square","b":"25FD","j":["shape","stone","icon","button"],"k":[47,14],"o":3},"rain_cloud":{"a":"Rain Cloud","b":"1F327-FE0F","c":"1F327","k":[6,29],"o":7},"flag-pg":{"a":"Papua New Guinea Flag","b":"1F1F5-1F1EC","k":[4,4]},"male_vampire":{"skin_variations":{"1F3FB":{"unified":"1F9DB-1F3FB-200D-2642-FE0F","non_qualified":"1F9DB-1F3FB-200D-2642","image":"1f9db-1f3fb-200d-2642-fe0f.png","sheet_x":45,"sheet_y":21,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F9DB-1F3FC-200D-2642-FE0F","non_qualified":"1F9DB-1F3FC-200D-2642","image":"1f9db-1f3fc-200d-2642-fe0f.png","sheet_x":45,"sheet_y":22,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F9DB-1F3FD-200D-2642-FE0F","non_qualified":"1F9DB-1F3FD-200D-2642","image":"1f9db-1f3fd-200d-2642-fe0f.png","sheet_x":45,"sheet_y":23,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F9DB-1F3FE-200D-2642-FE0F","non_qualified":"1F9DB-1F3FE-200D-2642","image":"1f9db-1f3fe-200d-2642-fe0f.png","sheet_x":45,"sheet_y":24,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F9DB-1F3FF-200D-2642-FE0F","non_qualified":"1F9DB-1F3FF-200D-2642","image":"1f9db-1f3ff-200d-2642-fe0f.png","sheet_x":45,"sheet_y":25,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Male Vampire","b":"1F9DB-200D-2642-FE0F","c":"1F9DB-200D-2642","k":[45,20],"o":10},"flag-ph":{"a":"Philippines Flag","b":"1F1F5-1F1ED","k":[4,5]},"merperson":{"skin_variations":{"1F3FB":{"unified":"1F9DC-1F3FB","non_qualified":null,"image":"1f9dc-1f3fb.png","sheet_x":45,"sheet_y":45,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9DC-1F3FB-200D-2642-FE0F"},"1F3FC":{"unified":"1F9DC-1F3FC","non_qualified":null,"image":"1f9dc-1f3fc.png","sheet_x":45,"sheet_y":46,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9DC-1F3FC-200D-2642-FE0F"},"1F3FD":{"unified":"1F9DC-1F3FD","non_qualified":null,"image":"1f9dc-1f3fd.png","sheet_x":45,"sheet_y":47,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9DC-1F3FD-200D-2642-FE0F"},"1F3FE":{"unified":"1F9DC-1F3FE","non_qualified":null,"image":"1f9dc-1f3fe.png","sheet_x":45,"sheet_y":48,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9DC-1F3FE-200D-2642-FE0F"},"1F3FF":{"unified":"1F9DC-1F3FF","non_qualified":null,"image":"1f9dc-1f3ff.png","sheet_x":45,"sheet_y":49,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9DC-1F3FF-200D-2642-FE0F"}},"obsoleted_by":"1F9DC-200D-2642-FE0F","a":"Merperson","b":"1F9DC","k":[45,44],"o":10},"black_medium_small_square":{"a":"Black Medium Small Square","b":"25FE","j":["icon","shape","button"],"k":[47,15],"o":3},"snow_cloud":{"a":"Snow Cloud","b":"1F328-FE0F","c":"1F328","k":[6,30],"o":7},"lightning":{"a":"Lightning","b":"1F329-FE0F","c":"1F329","k":[6,31],"n":["lightning_cloud"],"o":7},"black_large_square":{"a":"Black Large Square","b":"2B1B","j":["shape","icon","button"],"k":[50,20],"o":5},"mermaid":{"skin_variations":{"1F3FB":{"unified":"1F9DC-1F3FB-200D-2640-FE0F","non_qualified":"1F9DC-1F3FB-200D-2640","image":"1f9dc-1f3fb-200d-2640-fe0f.png","sheet_x":45,"sheet_y":33,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F9DC-1F3FC-200D-2640-FE0F","non_qualified":"1F9DC-1F3FC-200D-2640","image":"1f9dc-1f3fc-200d-2640-fe0f.png","sheet_x":45,"sheet_y":34,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F9DC-1F3FD-200D-2640-FE0F","non_qualified":"1F9DC-1F3FD-200D-2640","image":"1f9dc-1f3fd-200d-2640-fe0f.png","sheet_x":45,"sheet_y":35,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F9DC-1F3FE-200D-2640-FE0F","non_qualified":"1F9DC-1F3FE-200D-2640","image":"1f9dc-1f3fe-200d-2640-fe0f.png","sheet_x":45,"sheet_y":36,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F9DC-1F3FF-200D-2640-FE0F","non_qualified":"1F9DC-1F3FF-200D-2640","image":"1f9dc-1f3ff-200d-2640-fe0f.png","sheet_x":45,"sheet_y":37,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Mermaid","b":"1F9DC-200D-2640-FE0F","c":"1F9DC-200D-2640","k":[45,32],"o":10},"flag-pk":{"a":"Pakistan Flag","b":"1F1F5-1F1F0","k":[4,6]},"merman":{"skin_variations":{"1F3FB":{"unified":"1F9DC-1F3FB-200D-2642-FE0F","non_qualified":"1F9DC-1F3FB-200D-2642","image":"1f9dc-1f3fb-200d-2642-fe0f.png","sheet_x":45,"sheet_y":39,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9DC-1F3FB"},"1F3FC":{"unified":"1F9DC-1F3FC-200D-2642-FE0F","non_qualified":"1F9DC-1F3FC-200D-2642","image":"1f9dc-1f3fc-200d-2642-fe0f.png","sheet_x":45,"sheet_y":40,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9DC-1F3FC"},"1F3FD":{"unified":"1F9DC-1F3FD-200D-2642-FE0F","non_qualified":"1F9DC-1F3FD-200D-2642","image":"1f9dc-1f3fd-200d-2642-fe0f.png","sheet_x":45,"sheet_y":41,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9DC-1F3FD"},"1F3FE":{"unified":"1F9DC-1F3FE-200D-2642-FE0F","non_qualified":"1F9DC-1F3FE-200D-2642","image":"1f9dc-1f3fe-200d-2642-fe0f.png","sheet_x":45,"sheet_y":42,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9DC-1F3FE"},"1F3FF":{"unified":"1F9DC-1F3FF-200D-2642-FE0F","non_qualified":"1F9DC-1F3FF-200D-2642","image":"1f9dc-1f3ff-200d-2642-fe0f.png","sheet_x":45,"sheet_y":43,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9DC-1F3FF"}},"obsoletes":"1F9DC","a":"Merman","b":"1F9DC-200D-2642-FE0F","c":"1F9DC-200D-2642","k":[45,38],"o":10},"white_large_square":{"a":"White Large Square","b":"2B1C","j":["shape","icon","stone","button"],"k":[50,21],"o":5},"tornado":{"a":"Tornado","b":"1F32A-FE0F","c":"1F32A","j":["weather","cyclone","twister"],"k":[6,32],"n":["tornado_cloud"],"o":7},"flag-pl":{"a":"Poland Flag","b":"1F1F5-1F1F1","k":[4,7]},"elf":{"skin_variations":{"1F3FB":{"unified":"1F9DD-1F3FB","non_qualified":null,"image":"1f9dd-1f3fb.png","sheet_x":46,"sheet_y":11,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9DD-1F3FB-200D-2642-FE0F"},"1F3FC":{"unified":"1F9DD-1F3FC","non_qualified":null,"image":"1f9dd-1f3fc.png","sheet_x":46,"sheet_y":12,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9DD-1F3FC-200D-2642-FE0F"},"1F3FD":{"unified":"1F9DD-1F3FD","non_qualified":null,"image":"1f9dd-1f3fd.png","sheet_x":46,"sheet_y":13,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9DD-1F3FD-200D-2642-FE0F"},"1F3FE":{"unified":"1F9DD-1F3FE","non_qualified":null,"image":"1f9dd-1f3fe.png","sheet_x":46,"sheet_y":14,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9DD-1F3FE-200D-2642-FE0F"},"1F3FF":{"unified":"1F9DD-1F3FF","non_qualified":null,"image":"1f9dd-1f3ff.png","sheet_x":46,"sheet_y":15,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9DD-1F3FF-200D-2642-FE0F"}},"obsoleted_by":"1F9DD-200D-2642-FE0F","a":"Elf","b":"1F9DD","k":[46,10],"o":10},"fog":{"a":"Fog","b":"1F32B-FE0F","c":"1F32B","j":["weather"],"k":[6,33],"o":7},"large_orange_diamond":{"a":"Large Orange Diamond","b":"1F536","j":["shape","jewel","gem"],"k":[28,4]},"flag-pn":{"a":"Pitcairn Islands Flag","b":"1F1F5-1F1F3","k":[4,9]},"wind_blowing_face":{"a":"Wind Blowing Face","b":"1F32C-FE0F","c":"1F32C","k":[6,34],"o":7},"female_elf":{"skin_variations":{"1F3FB":{"unified":"1F9DD-1F3FB-200D-2640-FE0F","non_qualified":"1F9DD-1F3FB-200D-2640","image":"1f9dd-1f3fb-200d-2640-fe0f.png","sheet_x":45,"sheet_y":51,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F9DD-1F3FC-200D-2640-FE0F","non_qualified":"1F9DD-1F3FC-200D-2640","image":"1f9dd-1f3fc-200d-2640-fe0f.png","sheet_x":46,"sheet_y":0,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F9DD-1F3FD-200D-2640-FE0F","non_qualified":"1F9DD-1F3FD-200D-2640","image":"1f9dd-1f3fd-200d-2640-fe0f.png","sheet_x":46,"sheet_y":1,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F9DD-1F3FE-200D-2640-FE0F","non_qualified":"1F9DD-1F3FE-200D-2640","image":"1f9dd-1f3fe-200d-2640-fe0f.png","sheet_x":46,"sheet_y":2,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F9DD-1F3FF-200D-2640-FE0F","non_qualified":"1F9DD-1F3FF-200D-2640","image":"1f9dd-1f3ff-200d-2640-fe0f.png","sheet_x":46,"sheet_y":3,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Female Elf","b":"1F9DD-200D-2640-FE0F","c":"1F9DD-200D-2640","k":[45,50],"o":10},"large_blue_diamond":{"a":"Large Blue Diamond","b":"1F537","j":["shape","jewel","gem"],"k":[28,5]},"male_elf":{"skin_variations":{"1F3FB":{"unified":"1F9DD-1F3FB-200D-2642-FE0F","non_qualified":"1F9DD-1F3FB-200D-2642","image":"1f9dd-1f3fb-200d-2642-fe0f.png","sheet_x":46,"sheet_y":5,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9DD-1F3FB"},"1F3FC":{"unified":"1F9DD-1F3FC-200D-2642-FE0F","non_qualified":"1F9DD-1F3FC-200D-2642","image":"1f9dd-1f3fc-200d-2642-fe0f.png","sheet_x":46,"sheet_y":6,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9DD-1F3FC"},"1F3FD":{"unified":"1F9DD-1F3FD-200D-2642-FE0F","non_qualified":"1F9DD-1F3FD-200D-2642","image":"1f9dd-1f3fd-200d-2642-fe0f.png","sheet_x":46,"sheet_y":7,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9DD-1F3FD"},"1F3FE":{"unified":"1F9DD-1F3FE-200D-2642-FE0F","non_qualified":"1F9DD-1F3FE-200D-2642","image":"1f9dd-1f3fe-200d-2642-fe0f.png","sheet_x":46,"sheet_y":8,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9DD-1F3FE"},"1F3FF":{"unified":"1F9DD-1F3FF-200D-2642-FE0F","non_qualified":"1F9DD-1F3FF-200D-2642","image":"1f9dd-1f3ff-200d-2642-fe0f.png","sheet_x":46,"sheet_y":9,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9DD-1F3FF"}},"obsoletes":"1F9DD","a":"Male Elf","b":"1F9DD-200D-2642-FE0F","c":"1F9DD-200D-2642","k":[46,4],"o":10},"small_orange_diamond":{"a":"Small Orange Diamond","b":"1F538","j":["shape","jewel","gem"],"k":[28,6]},"flag-pr":{"a":"Puerto Rico Flag","b":"1F1F5-1F1F7","k":[4,10]},"cyclone":{"a":"Cyclone","b":"1F300","j":["weather","swirl","blue","cloud","vortex","spiral","whirlpool","spin","tornado","hurricane","typhoon"],"k":[5,44]},"rainbow":{"a":"Rainbow","b":"1F308","j":["nature","happy","unicorn_face","photo","sky","spring"],"k":[6,0]},"small_blue_diamond":{"a":"Small Blue Diamond","b":"1F539","j":["shape","jewel","gem"],"k":[28,7]},"genie":{"obsoleted_by":"1F9DE-200D-2642-FE0F","a":"Genie","b":"1F9DE","k":[46,18],"o":10},"flag-ps":{"a":"Palestinian Territories Flag","b":"1F1F5-1F1F8","k":[4,11]},"small_red_triangle":{"a":"Up-Pointing Red Triangle","b":"1F53A","j":["shape","direction","up","top"],"k":[28,8]},"closed_umbrella":{"a":"Closed Umbrella","b":"1F302","j":["weather","rain","drizzle"],"k":[5,46]},"female_genie":{"a":"Female Genie","b":"1F9DE-200D-2640-FE0F","c":"1F9DE-200D-2640","k":[46,16],"o":10},"flag-pt":{"a":"Portugal Flag","b":"1F1F5-1F1F9","k":[4,12]},"flag-pw":{"a":"Palau Flag","b":"1F1F5-1F1FC","k":[4,13]},"small_red_triangle_down":{"a":"Down-Pointing Red Triangle","b":"1F53B","j":["shape","direction","bottom"],"k":[28,9]},"umbrella":{"a":"Umbrella","b":"2602-FE0F","c":"2602","j":["rainy","weather","spring"],"k":[47,18],"o":1},"male_genie":{"obsoletes":"1F9DE","a":"Male Genie","b":"1F9DE-200D-2642-FE0F","c":"1F9DE-200D-2642","k":[46,17],"o":10},"zombie":{"obsoleted_by":"1F9DF-200D-2642-FE0F","a":"Zombie","b":"1F9DF","k":[46,21],"o":10},"flag-py":{"a":"Paraguay Flag","b":"1F1F5-1F1FE","k":[4,14]},"diamond_shape_with_a_dot_inside":{"a":"Diamond Shape with a Dot Inside","b":"1F4A0","j":["jewel","blue","gem","crystal","fancy"],"k":[25,6]},"umbrella_with_rain_drops":{"a":"Umbrella with Rain Drops","b":"2614","k":[47,23],"o":4},"radio_button":{"a":"Radio Button","b":"1F518","j":["input","old","music","circle"],"k":[27,26]},"female_zombie":{"a":"Female Zombie","b":"1F9DF-200D-2640-FE0F","c":"1F9DF-200D-2640","k":[46,19],"o":10},"flag-qa":{"a":"Qatar Flag","b":"1F1F6-1F1E6","k":[4,15]},"umbrella_on_ground":{"a":"Umbrella on Ground","b":"26F1-FE0F","c":"26F1","k":[48,39],"o":5},"black_square_button":{"a":"Black Square Button","b":"1F532","j":["shape","input","frame"],"k":[28,0]},"zap":{"a":"High Voltage Sign","b":"26A1","j":["thunder","weather","lightning bolt","fast"],"k":[48,21],"o":4},"male_zombie":{"obsoletes":"1F9DF","a":"Male Zombie","b":"1F9DF-200D-2642-FE0F","c":"1F9DF-200D-2642","k":[46,20],"o":10},"flag-ro":{"a":"Romania Flag","b":"1F1F7-1F1F4","k":[4,17]},"snowflake":{"a":"Snowflake","b":"2744-FE0F","c":"2744","j":["winter","season","cold","weather","christmas","xmas"],"k":[49,51],"o":1},"white_square_button":{"a":"White Square Button","b":"1F533","j":["shape","input"],"k":[28,1]},"person_frowning":{"skin_variations":{"1F3FB":{"unified":"1F64D-1F3FB","non_qualified":null,"image":"1f64d-1f3fb.png","sheet_x":33,"sheet_y":31,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FC":{"unified":"1F64D-1F3FC","non_qualified":null,"image":"1f64d-1f3fc.png","sheet_x":33,"sheet_y":32,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FD":{"unified":"1F64D-1F3FD","non_qualified":null,"image":"1f64d-1f3fd.png","sheet_x":33,"sheet_y":33,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FE":{"unified":"1F64D-1F3FE","non_qualified":null,"image":"1f64d-1f3fe.png","sheet_x":33,"sheet_y":34,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FF":{"unified":"1F64D-1F3FF","non_qualified":null,"image":"1f64d-1f3ff.png","sheet_x":33,"sheet_y":35,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true}},"obsoleted_by":"1F64D-200D-2640-FE0F","a":"Person Frowning","b":"1F64D","k":[33,30]},"flag-rs":{"a":"Serbia Flag","b":"1F1F7-1F1F8","k":[4,18]},"man-frowning":{"skin_variations":{"1F3FB":{"unified":"1F64D-1F3FB-200D-2642-FE0F","non_qualified":"1F64D-1F3FB-200D-2642","image":"1f64d-1f3fb-200d-2642-fe0f.png","sheet_x":33,"sheet_y":25,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F64D-1F3FC-200D-2642-FE0F","non_qualified":"1F64D-1F3FC-200D-2642","image":"1f64d-1f3fc-200d-2642-fe0f.png","sheet_x":33,"sheet_y":26,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F64D-1F3FD-200D-2642-FE0F","non_qualified":"1F64D-1F3FD-200D-2642","image":"1f64d-1f3fd-200d-2642-fe0f.png","sheet_x":33,"sheet_y":27,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F64D-1F3FE-200D-2642-FE0F","non_qualified":"1F64D-1F3FE-200D-2642","image":"1f64d-1f3fe-200d-2642-fe0f.png","sheet_x":33,"sheet_y":28,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F64D-1F3FF-200D-2642-FE0F","non_qualified":"1F64D-1F3FF-200D-2642","image":"1f64d-1f3ff-200d-2642-fe0f.png","sheet_x":33,"sheet_y":29,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Man Frowning","b":"1F64D-200D-2642-FE0F","c":"1F64D-200D-2642","k":[33,24]},"white_circle":{"a":"Medium White Circle","b":"26AA","j":["shape","round"],"k":[48,22],"o":4},"snowman":{"a":"Snowman","b":"2603-FE0F","c":"2603","j":["winter","season","cold","weather","christmas","xmas","frozen","without_snow"],"k":[47,19],"o":1},"snowman_without_snow":{"a":"Snowman Without Snow","b":"26C4","k":[48,28],"o":5},"ru":{"a":"Russia Flag","b":"1F1F7-1F1FA","j":["russian","federation","flag","nation","country","banner"],"k":[4,19],"n":["flag-ru"]},"black_circle":{"a":"Medium Black Circle","b":"26AB","j":["shape","button","round"],"k":[48,23],"o":4},"woman-frowning":{"skin_variations":{"1F3FB":{"unified":"1F64D-1F3FB-200D-2640-FE0F","non_qualified":"1F64D-1F3FB-200D-2640","image":"1f64d-1f3fb-200d-2640-fe0f.png","sheet_x":33,"sheet_y":19,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F64D-1F3FC-200D-2640-FE0F","non_qualified":"1F64D-1F3FC-200D-2640","image":"1f64d-1f3fc-200d-2640-fe0f.png","sheet_x":33,"sheet_y":20,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F64D-1F3FD-200D-2640-FE0F","non_qualified":"1F64D-1F3FD-200D-2640","image":"1f64d-1f3fd-200d-2640-fe0f.png","sheet_x":33,"sheet_y":21,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F64D-1F3FE-200D-2640-FE0F","non_qualified":"1F64D-1F3FE-200D-2640","image":"1f64d-1f3fe-200d-2640-fe0f.png","sheet_x":33,"sheet_y":22,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F64D-1F3FF-200D-2640-FE0F","non_qualified":"1F64D-1F3FF-200D-2640","image":"1f64d-1f3ff-200d-2640-fe0f.png","sheet_x":33,"sheet_y":23,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoletes":"1F64D","a":"Woman Frowning","b":"1F64D-200D-2640-FE0F","c":"1F64D-200D-2640","k":[33,18]},"flag-rw":{"a":"Rwanda Flag","b":"1F1F7-1F1FC","k":[4,20]},"comet":{"a":"Comet","b":"2604-FE0F","c":"2604","j":["space"],"k":[47,20],"o":1},"person_with_pouting_face":{"skin_variations":{"1F3FB":{"unified":"1F64E-1F3FB","non_qualified":null,"image":"1f64e-1f3fb.png","sheet_x":33,"sheet_y":49,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FC":{"unified":"1F64E-1F3FC","non_qualified":null,"image":"1f64e-1f3fc.png","sheet_x":33,"sheet_y":50,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FD":{"unified":"1F64E-1F3FD","non_qualified":null,"image":"1f64e-1f3fd.png","sheet_x":33,"sheet_y":51,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FE":{"unified":"1F64E-1F3FE","non_qualified":null,"image":"1f64e-1f3fe.png","sheet_x":34,"sheet_y":0,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FF":{"unified":"1F64E-1F3FF","non_qualified":null,"image":"1f64e-1f3ff.png","sheet_x":34,"sheet_y":1,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true}},"obsoleted_by":"1F64E-200D-2640-FE0F","a":"Person with Pouting Face","b":"1F64E","k":[33,48]},"red_circle":{"a":"Large Red Circle","b":"1F534","j":["shape","error","danger"],"k":[28,2]},"large_blue_circle":{"a":"Large Blue Circle","b":"1F535","j":["shape","icon","button"],"k":[28,3]},"man-pouting":{"skin_variations":{"1F3FB":{"unified":"1F64E-1F3FB-200D-2642-FE0F","non_qualified":"1F64E-1F3FB-200D-2642","image":"1f64e-1f3fb-200d-2642-fe0f.png","sheet_x":33,"sheet_y":43,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F64E-1F3FC-200D-2642-FE0F","non_qualified":"1F64E-1F3FC-200D-2642","image":"1f64e-1f3fc-200d-2642-fe0f.png","sheet_x":33,"sheet_y":44,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F64E-1F3FD-200D-2642-FE0F","non_qualified":"1F64E-1F3FD-200D-2642","image":"1f64e-1f3fd-200d-2642-fe0f.png","sheet_x":33,"sheet_y":45,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F64E-1F3FE-200D-2642-FE0F","non_qualified":"1F64E-1F3FE-200D-2642","image":"1f64e-1f3fe-200d-2642-fe0f.png","sheet_x":33,"sheet_y":46,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F64E-1F3FF-200D-2642-FE0F","non_qualified":"1F64E-1F3FF-200D-2642","image":"1f64e-1f3ff-200d-2642-fe0f.png","sheet_x":33,"sheet_y":47,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Man Pouting","b":"1F64E-200D-2642-FE0F","c":"1F64E-200D-2642","k":[33,42]},"flag-sa":{"a":"Saudi Arabia Flag","b":"1F1F8-1F1E6","k":[4,21]},"fire":{"a":"Fire","b":"1F525","j":["hot","cook","flame"],"k":[27,39]},"woman-pouting":{"skin_variations":{"1F3FB":{"unified":"1F64E-1F3FB-200D-2640-FE0F","non_qualified":"1F64E-1F3FB-200D-2640","image":"1f64e-1f3fb-200d-2640-fe0f.png","sheet_x":33,"sheet_y":37,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F64E-1F3FC-200D-2640-FE0F","non_qualified":"1F64E-1F3FC-200D-2640","image":"1f64e-1f3fc-200d-2640-fe0f.png","sheet_x":33,"sheet_y":38,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F64E-1F3FD-200D-2640-FE0F","non_qualified":"1F64E-1F3FD-200D-2640","image":"1f64e-1f3fd-200d-2640-fe0f.png","sheet_x":33,"sheet_y":39,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F64E-1F3FE-200D-2640-FE0F","non_qualified":"1F64E-1F3FE-200D-2640","image":"1f64e-1f3fe-200d-2640-fe0f.png","sheet_x":33,"sheet_y":40,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F64E-1F3FF-200D-2640-FE0F","non_qualified":"1F64E-1F3FF-200D-2640","image":"1f64e-1f3ff-200d-2640-fe0f.png","sheet_x":33,"sheet_y":41,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoletes":"1F64E","a":"Woman Pouting","b":"1F64E-200D-2640-FE0F","c":"1F64E-200D-2640","k":[33,36]},"flag-sb":{"a":"Solomon Islands Flag","b":"1F1F8-1F1E7","k":[4,22]},"droplet":{"a":"Droplet","b":"1F4A7","j":["water","drip","faucet","spring"],"k":[25,13]},"no_good":{"skin_variations":{"1F3FB":{"unified":"1F645-1F3FB","non_qualified":null,"image":"1f645-1f3fb.png","sheet_x":32,"sheet_y":2,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FC":{"unified":"1F645-1F3FC","non_qualified":null,"image":"1f645-1f3fc.png","sheet_x":32,"sheet_y":3,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FD":{"unified":"1F645-1F3FD","non_qualified":null,"image":"1f645-1f3fd.png","sheet_x":32,"sheet_y":4,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FE":{"unified":"1F645-1F3FE","non_qualified":null,"image":"1f645-1f3fe.png","sheet_x":32,"sheet_y":5,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FF":{"unified":"1F645-1F3FF","non_qualified":null,"image":"1f645-1f3ff.png","sheet_x":32,"sheet_y":6,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true}},"obsoleted_by":"1F645-200D-2640-FE0F","a":"Face with No Good Gesture","b":"1F645","k":[32,1]},"flag-sc":{"a":"Seychelles Flag","b":"1F1F8-1F1E8","k":[4,23]},"ocean":{"a":"Water Wave","b":"1F30A","j":["sea","water","wave","nature","tsunami","disaster"],"k":[6,2]},"man-gesturing-no":{"skin_variations":{"1F3FB":{"unified":"1F645-1F3FB-200D-2642-FE0F","non_qualified":"1F645-1F3FB-200D-2642","image":"1f645-1f3fb-200d-2642-fe0f.png","sheet_x":31,"sheet_y":48,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F645-1F3FC-200D-2642-FE0F","non_qualified":"1F645-1F3FC-200D-2642","image":"1f645-1f3fc-200d-2642-fe0f.png","sheet_x":31,"sheet_y":49,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F645-1F3FD-200D-2642-FE0F","non_qualified":"1F645-1F3FD-200D-2642","image":"1f645-1f3fd-200d-2642-fe0f.png","sheet_x":31,"sheet_y":50,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F645-1F3FE-200D-2642-FE0F","non_qualified":"1F645-1F3FE-200D-2642","image":"1f645-1f3fe-200d-2642-fe0f.png","sheet_x":31,"sheet_y":51,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F645-1F3FF-200D-2642-FE0F","non_qualified":"1F645-1F3FF-200D-2642","image":"1f645-1f3ff-200d-2642-fe0f.png","sheet_x":32,"sheet_y":0,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Man Gesturing No","b":"1F645-200D-2642-FE0F","c":"1F645-200D-2642","k":[31,47]},"flag-sd":{"a":"Sudan Flag","b":"1F1F8-1F1E9","k":[4,24]},"woman-gesturing-no":{"skin_variations":{"1F3FB":{"unified":"1F645-1F3FB-200D-2640-FE0F","non_qualified":"1F645-1F3FB-200D-2640","image":"1f645-1f3fb-200d-2640-fe0f.png","sheet_x":31,"sheet_y":42,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F645-1F3FC-200D-2640-FE0F","non_qualified":"1F645-1F3FC-200D-2640","image":"1f645-1f3fc-200d-2640-fe0f.png","sheet_x":31,"sheet_y":43,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F645-1F3FD-200D-2640-FE0F","non_qualified":"1F645-1F3FD-200D-2640","image":"1f645-1f3fd-200d-2640-fe0f.png","sheet_x":31,"sheet_y":44,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F645-1F3FE-200D-2640-FE0F","non_qualified":"1F645-1F3FE-200D-2640","image":"1f645-1f3fe-200d-2640-fe0f.png","sheet_x":31,"sheet_y":45,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F645-1F3FF-200D-2640-FE0F","non_qualified":"1F645-1F3FF-200D-2640","image":"1f645-1f3ff-200d-2640-fe0f.png","sheet_x":31,"sheet_y":46,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoletes":"1F645","a":"Woman Gesturing No","b":"1F645-200D-2640-FE0F","c":"1F645-200D-2640","k":[31,41]},"flag-se":{"a":"Sweden Flag","b":"1F1F8-1F1EA","k":[4,25]},"flag-sg":{"a":"Singapore Flag","b":"1F1F8-1F1EC","k":[4,26]},"ok_woman":{"skin_variations":{"1F3FB":{"unified":"1F646-1F3FB","non_qualified":null,"image":"1f646-1f3fb.png","sheet_x":32,"sheet_y":20,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FC":{"unified":"1F646-1F3FC","non_qualified":null,"image":"1f646-1f3fc.png","sheet_x":32,"sheet_y":21,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FD":{"unified":"1F646-1F3FD","non_qualified":null,"image":"1f646-1f3fd.png","sheet_x":32,"sheet_y":22,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FE":{"unified":"1F646-1F3FE","non_qualified":null,"image":"1f646-1f3fe.png","sheet_x":32,"sheet_y":23,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FF":{"unified":"1F646-1F3FF","non_qualified":null,"image":"1f646-1f3ff.png","sheet_x":32,"sheet_y":24,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true}},"obsoleted_by":"1F646-200D-2640-FE0F","a":"Face with Ok Gesture","b":"1F646","j":["women","girl","female","pink","human","woman"],"k":[32,19]},"flag-sh":{"a":"St. Helena Flag","b":"1F1F8-1F1ED","k":[4,27]},"man-gesturing-ok":{"skin_variations":{"1F3FB":{"unified":"1F646-1F3FB-200D-2642-FE0F","non_qualified":"1F646-1F3FB-200D-2642","image":"1f646-1f3fb-200d-2642-fe0f.png","sheet_x":32,"sheet_y":14,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F646-1F3FC-200D-2642-FE0F","non_qualified":"1F646-1F3FC-200D-2642","image":"1f646-1f3fc-200d-2642-fe0f.png","sheet_x":32,"sheet_y":15,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F646-1F3FD-200D-2642-FE0F","non_qualified":"1F646-1F3FD-200D-2642","image":"1f646-1f3fd-200d-2642-fe0f.png","sheet_x":32,"sheet_y":16,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F646-1F3FE-200D-2642-FE0F","non_qualified":"1F646-1F3FE-200D-2642","image":"1f646-1f3fe-200d-2642-fe0f.png","sheet_x":32,"sheet_y":17,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F646-1F3FF-200D-2642-FE0F","non_qualified":"1F646-1F3FF-200D-2642","image":"1f646-1f3ff-200d-2642-fe0f.png","sheet_x":32,"sheet_y":18,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Man Gesturing Ok","b":"1F646-200D-2642-FE0F","c":"1F646-200D-2642","k":[32,13]},"flag-si":{"a":"Slovenia Flag","b":"1F1F8-1F1EE","k":[4,28]},"woman-gesturing-ok":{"skin_variations":{"1F3FB":{"unified":"1F646-1F3FB-200D-2640-FE0F","non_qualified":"1F646-1F3FB-200D-2640","image":"1f646-1f3fb-200d-2640-fe0f.png","sheet_x":32,"sheet_y":8,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F646-1F3FC-200D-2640-FE0F","non_qualified":"1F646-1F3FC-200D-2640","image":"1f646-1f3fc-200d-2640-fe0f.png","sheet_x":32,"sheet_y":9,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F646-1F3FD-200D-2640-FE0F","non_qualified":"1F646-1F3FD-200D-2640","image":"1f646-1f3fd-200d-2640-fe0f.png","sheet_x":32,"sheet_y":10,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F646-1F3FE-200D-2640-FE0F","non_qualified":"1F646-1F3FE-200D-2640","image":"1f646-1f3fe-200d-2640-fe0f.png","sheet_x":32,"sheet_y":11,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F646-1F3FF-200D-2640-FE0F","non_qualified":"1F646-1F3FF-200D-2640","image":"1f646-1f3ff-200d-2640-fe0f.png","sheet_x":32,"sheet_y":12,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoletes":"1F646","a":"Woman Gesturing Ok","b":"1F646-200D-2640-FE0F","c":"1F646-200D-2640","k":[32,7]},"information_desk_person":{"skin_variations":{"1F3FB":{"unified":"1F481-1F3FB","non_qualified":null,"image":"1f481-1f3fb.png","sheet_x":23,"sheet_y":14,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FC":{"unified":"1F481-1F3FC","non_qualified":null,"image":"1f481-1f3fc.png","sheet_x":23,"sheet_y":15,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FD":{"unified":"1F481-1F3FD","non_qualified":null,"image":"1f481-1f3fd.png","sheet_x":23,"sheet_y":16,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FE":{"unified":"1F481-1F3FE","non_qualified":null,"image":"1f481-1f3fe.png","sheet_x":23,"sheet_y":17,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FF":{"unified":"1F481-1F3FF","non_qualified":null,"image":"1f481-1f3ff.png","sheet_x":23,"sheet_y":18,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true}},"obsoleted_by":"1F481-200D-2640-FE0F","a":"Information Desk Person","b":"1F481","k":[23,13]},"flag-sj":{"a":"Svalbard & Jan Mayen Flag","b":"1F1F8-1F1EF","k":[4,29]},"man-tipping-hand":{"skin_variations":{"1F3FB":{"unified":"1F481-1F3FB-200D-2642-FE0F","non_qualified":"1F481-1F3FB-200D-2642","image":"1f481-1f3fb-200d-2642-fe0f.png","sheet_x":23,"sheet_y":8,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F481-1F3FC-200D-2642-FE0F","non_qualified":"1F481-1F3FC-200D-2642","image":"1f481-1f3fc-200d-2642-fe0f.png","sheet_x":23,"sheet_y":9,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F481-1F3FD-200D-2642-FE0F","non_qualified":"1F481-1F3FD-200D-2642","image":"1f481-1f3fd-200d-2642-fe0f.png","sheet_x":23,"sheet_y":10,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F481-1F3FE-200D-2642-FE0F","non_qualified":"1F481-1F3FE-200D-2642","image":"1f481-1f3fe-200d-2642-fe0f.png","sheet_x":23,"sheet_y":11,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F481-1F3FF-200D-2642-FE0F","non_qualified":"1F481-1F3FF-200D-2642","image":"1f481-1f3ff-200d-2642-fe0f.png","sheet_x":23,"sheet_y":12,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Man Tipping Hand","b":"1F481-200D-2642-FE0F","c":"1F481-200D-2642","k":[23,7]},"flag-sk":{"a":"Slovakia Flag","b":"1F1F8-1F1F0","k":[4,30]},"flag-sl":{"a":"Sierra Leone Flag","b":"1F1F8-1F1F1","k":[4,31]},"woman-tipping-hand":{"skin_variations":{"1F3FB":{"unified":"1F481-1F3FB-200D-2640-FE0F","non_qualified":"1F481-1F3FB-200D-2640","image":"1f481-1f3fb-200d-2640-fe0f.png","sheet_x":23,"sheet_y":2,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F481-1F3FC-200D-2640-FE0F","non_qualified":"1F481-1F3FC-200D-2640","image":"1f481-1f3fc-200d-2640-fe0f.png","sheet_x":23,"sheet_y":3,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F481-1F3FD-200D-2640-FE0F","non_qualified":"1F481-1F3FD-200D-2640","image":"1f481-1f3fd-200d-2640-fe0f.png","sheet_x":23,"sheet_y":4,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F481-1F3FE-200D-2640-FE0F","non_qualified":"1F481-1F3FE-200D-2640","image":"1f481-1f3fe-200d-2640-fe0f.png","sheet_x":23,"sheet_y":5,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F481-1F3FF-200D-2640-FE0F","non_qualified":"1F481-1F3FF-200D-2640","image":"1f481-1f3ff-200d-2640-fe0f.png","sheet_x":23,"sheet_y":6,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoletes":"1F481","a":"Woman Tipping Hand","b":"1F481-200D-2640-FE0F","c":"1F481-200D-2640","k":[23,1]},"flag-sm":{"a":"San Marino Flag","b":"1F1F8-1F1F2","k":[4,32]},"raising_hand":{"skin_variations":{"1F3FB":{"unified":"1F64B-1F3FB","non_qualified":null,"image":"1f64b-1f3fb.png","sheet_x":33,"sheet_y":7,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FC":{"unified":"1F64B-1F3FC","non_qualified":null,"image":"1f64b-1f3fc.png","sheet_x":33,"sheet_y":8,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FD":{"unified":"1F64B-1F3FD","non_qualified":null,"image":"1f64b-1f3fd.png","sheet_x":33,"sheet_y":9,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FE":{"unified":"1F64B-1F3FE","non_qualified":null,"image":"1f64b-1f3fe.png","sheet_x":33,"sheet_y":10,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FF":{"unified":"1F64B-1F3FF","non_qualified":null,"image":"1f64b-1f3ff.png","sheet_x":33,"sheet_y":11,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true}},"obsoleted_by":"1F64B-200D-2640-FE0F","a":"Happy Person Raising One Hand","b":"1F64B","k":[33,6]},"flag-sn":{"a":"Senegal Flag","b":"1F1F8-1F1F3","k":[4,33]},"man-raising-hand":{"skin_variations":{"1F3FB":{"unified":"1F64B-1F3FB-200D-2642-FE0F","non_qualified":"1F64B-1F3FB-200D-2642","image":"1f64b-1f3fb-200d-2642-fe0f.png","sheet_x":33,"sheet_y":1,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F64B-1F3FC-200D-2642-FE0F","non_qualified":"1F64B-1F3FC-200D-2642","image":"1f64b-1f3fc-200d-2642-fe0f.png","sheet_x":33,"sheet_y":2,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F64B-1F3FD-200D-2642-FE0F","non_qualified":"1F64B-1F3FD-200D-2642","image":"1f64b-1f3fd-200d-2642-fe0f.png","sheet_x":33,"sheet_y":3,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F64B-1F3FE-200D-2642-FE0F","non_qualified":"1F64B-1F3FE-200D-2642","image":"1f64b-1f3fe-200d-2642-fe0f.png","sheet_x":33,"sheet_y":4,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F64B-1F3FF-200D-2642-FE0F","non_qualified":"1F64B-1F3FF-200D-2642","image":"1f64b-1f3ff-200d-2642-fe0f.png","sheet_x":33,"sheet_y":5,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Man Raising Hand","b":"1F64B-200D-2642-FE0F","c":"1F64B-200D-2642","k":[33,0]},"flag-so":{"a":"Somalia Flag","b":"1F1F8-1F1F4","k":[4,34]},"woman-raising-hand":{"skin_variations":{"1F3FB":{"unified":"1F64B-1F3FB-200D-2640-FE0F","non_qualified":"1F64B-1F3FB-200D-2640","image":"1f64b-1f3fb-200d-2640-fe0f.png","sheet_x":32,"sheet_y":47,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F64B-1F3FC-200D-2640-FE0F","non_qualified":"1F64B-1F3FC-200D-2640","image":"1f64b-1f3fc-200d-2640-fe0f.png","sheet_x":32,"sheet_y":48,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F64B-1F3FD-200D-2640-FE0F","non_qualified":"1F64B-1F3FD-200D-2640","image":"1f64b-1f3fd-200d-2640-fe0f.png","sheet_x":32,"sheet_y":49,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F64B-1F3FE-200D-2640-FE0F","non_qualified":"1F64B-1F3FE-200D-2640","image":"1f64b-1f3fe-200d-2640-fe0f.png","sheet_x":32,"sheet_y":50,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F64B-1F3FF-200D-2640-FE0F","non_qualified":"1F64B-1F3FF-200D-2640","image":"1f64b-1f3ff-200d-2640-fe0f.png","sheet_x":32,"sheet_y":51,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoletes":"1F64B","a":"Woman Raising Hand","b":"1F64B-200D-2640-FE0F","c":"1F64B-200D-2640","k":[32,46]},"flag-sr":{"a":"Suriname Flag","b":"1F1F8-1F1F7","k":[4,35]},"bow":{"skin_variations":{"1F3FB":{"unified":"1F647-1F3FB","non_qualified":null,"image":"1f647-1f3fb.png","sheet_x":32,"sheet_y":38,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FC":{"unified":"1F647-1F3FC","non_qualified":null,"image":"1f647-1f3fc.png","sheet_x":32,"sheet_y":39,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FD":{"unified":"1F647-1F3FD","non_qualified":null,"image":"1f647-1f3fd.png","sheet_x":32,"sheet_y":40,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FE":{"unified":"1F647-1F3FE","non_qualified":null,"image":"1f647-1f3fe.png","sheet_x":32,"sheet_y":41,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FF":{"unified":"1F647-1F3FF","non_qualified":null,"image":"1f647-1f3ff.png","sheet_x":32,"sheet_y":42,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true}},"obsoleted_by":"1F647-200D-2642-FE0F","a":"Person Bowing Deeply","b":"1F647","k":[32,37]},"man-bowing":{"skin_variations":{"1F3FB":{"unified":"1F647-1F3FB-200D-2642-FE0F","non_qualified":"1F647-1F3FB-200D-2642","image":"1f647-1f3fb-200d-2642-fe0f.png","sheet_x":32,"sheet_y":32,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F647-1F3FC-200D-2642-FE0F","non_qualified":"1F647-1F3FC-200D-2642","image":"1f647-1f3fc-200d-2642-fe0f.png","sheet_x":32,"sheet_y":33,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F647-1F3FD-200D-2642-FE0F","non_qualified":"1F647-1F3FD-200D-2642","image":"1f647-1f3fd-200d-2642-fe0f.png","sheet_x":32,"sheet_y":34,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F647-1F3FE-200D-2642-FE0F","non_qualified":"1F647-1F3FE-200D-2642","image":"1f647-1f3fe-200d-2642-fe0f.png","sheet_x":32,"sheet_y":35,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F647-1F3FF-200D-2642-FE0F","non_qualified":"1F647-1F3FF-200D-2642","image":"1f647-1f3ff-200d-2642-fe0f.png","sheet_x":32,"sheet_y":36,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoletes":"1F647","a":"Man Bowing","b":"1F647-200D-2642-FE0F","c":"1F647-200D-2642","k":[32,31]},"flag-ss":{"a":"South Sudan Flag","b":"1F1F8-1F1F8","k":[4,36]},"woman-bowing":{"skin_variations":{"1F3FB":{"unified":"1F647-1F3FB-200D-2640-FE0F","non_qualified":"1F647-1F3FB-200D-2640","image":"1f647-1f3fb-200d-2640-fe0f.png","sheet_x":32,"sheet_y":26,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F647-1F3FC-200D-2640-FE0F","non_qualified":"1F647-1F3FC-200D-2640","image":"1f647-1f3fc-200d-2640-fe0f.png","sheet_x":32,"sheet_y":27,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F647-1F3FD-200D-2640-FE0F","non_qualified":"1F647-1F3FD-200D-2640","image":"1f647-1f3fd-200d-2640-fe0f.png","sheet_x":32,"sheet_y":28,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F647-1F3FE-200D-2640-FE0F","non_qualified":"1F647-1F3FE-200D-2640","image":"1f647-1f3fe-200d-2640-fe0f.png","sheet_x":32,"sheet_y":29,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F647-1F3FF-200D-2640-FE0F","non_qualified":"1F647-1F3FF-200D-2640","image":"1f647-1f3ff-200d-2640-fe0f.png","sheet_x":32,"sheet_y":30,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Woman Bowing","b":"1F647-200D-2640-FE0F","c":"1F647-200D-2640","k":[32,25]},"flag-st":{"a":"São Tomé & Príncipe Flag","b":"1F1F8-1F1F9","k":[4,37]},"face_palm":{"skin_variations":{"1F3FB":{"unified":"1F926-1F3FB","non_qualified":null,"image":"1f926-1f3fb.png","sheet_x":38,"sheet_y":42,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F926-1F3FC","non_qualified":null,"image":"1f926-1f3fc.png","sheet_x":38,"sheet_y":43,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F926-1F3FD","non_qualified":null,"image":"1f926-1f3fd.png","sheet_x":38,"sheet_y":44,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F926-1F3FE","non_qualified":null,"image":"1f926-1f3fe.png","sheet_x":38,"sheet_y":45,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F926-1F3FF","non_qualified":null,"image":"1f926-1f3ff.png","sheet_x":38,"sheet_y":46,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Face Palm","b":"1F926","k":[38,41],"o":9},"flag-sv":{"a":"El Salvador Flag","b":"1F1F8-1F1FB","k":[4,38]},"man-facepalming":{"skin_variations":{"1F3FB":{"unified":"1F926-1F3FB-200D-2642-FE0F","non_qualified":"1F926-1F3FB-200D-2642","image":"1f926-1f3fb-200d-2642-fe0f.png","sheet_x":38,"sheet_y":36,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F926-1F3FC-200D-2642-FE0F","non_qualified":"1F926-1F3FC-200D-2642","image":"1f926-1f3fc-200d-2642-fe0f.png","sheet_x":38,"sheet_y":37,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F926-1F3FD-200D-2642-FE0F","non_qualified":"1F926-1F3FD-200D-2642","image":"1f926-1f3fd-200d-2642-fe0f.png","sheet_x":38,"sheet_y":38,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F926-1F3FE-200D-2642-FE0F","non_qualified":"1F926-1F3FE-200D-2642","image":"1f926-1f3fe-200d-2642-fe0f.png","sheet_x":38,"sheet_y":39,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F926-1F3FF-200D-2642-FE0F","non_qualified":"1F926-1F3FF-200D-2642","image":"1f926-1f3ff-200d-2642-fe0f.png","sheet_x":38,"sheet_y":40,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Man Facepalming","b":"1F926-200D-2642-FE0F","c":"1F926-200D-2642","k":[38,35],"o":9},"flag-sx":{"a":"Sint Maarten Flag","b":"1F1F8-1F1FD","k":[4,39]},"flag-sy":{"a":"Syria Flag","b":"1F1F8-1F1FE","k":[4,40]},"woman-facepalming":{"skin_variations":{"1F3FB":{"unified":"1F926-1F3FB-200D-2640-FE0F","non_qualified":"1F926-1F3FB-200D-2640","image":"1f926-1f3fb-200d-2640-fe0f.png","sheet_x":38,"sheet_y":30,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F926-1F3FC-200D-2640-FE0F","non_qualified":"1F926-1F3FC-200D-2640","image":"1f926-1f3fc-200d-2640-fe0f.png","sheet_x":38,"sheet_y":31,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F926-1F3FD-200D-2640-FE0F","non_qualified":"1F926-1F3FD-200D-2640","image":"1f926-1f3fd-200d-2640-fe0f.png","sheet_x":38,"sheet_y":32,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F926-1F3FE-200D-2640-FE0F","non_qualified":"1F926-1F3FE-200D-2640","image":"1f926-1f3fe-200d-2640-fe0f.png","sheet_x":38,"sheet_y":33,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F926-1F3FF-200D-2640-FE0F","non_qualified":"1F926-1F3FF-200D-2640","image":"1f926-1f3ff-200d-2640-fe0f.png","sheet_x":38,"sheet_y":34,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Woman Facepalming","b":"1F926-200D-2640-FE0F","c":"1F926-200D-2640","k":[38,29],"o":9},"shrug":{"skin_variations":{"1F3FB":{"unified":"1F937-1F3FB","non_qualified":null,"image":"1f937-1f3fb.png","sheet_x":40,"sheet_y":7,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F937-1F3FC","non_qualified":null,"image":"1f937-1f3fc.png","sheet_x":40,"sheet_y":8,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F937-1F3FD","non_qualified":null,"image":"1f937-1f3fd.png","sheet_x":40,"sheet_y":9,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F937-1F3FE","non_qualified":null,"image":"1f937-1f3fe.png","sheet_x":40,"sheet_y":10,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F937-1F3FF","non_qualified":null,"image":"1f937-1f3ff.png","sheet_x":40,"sheet_y":11,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Shrug","b":"1F937","k":[40,6],"o":9},"flag-sz":{"a":"Swaziland Flag","b":"1F1F8-1F1FF","k":[4,41]},"flag-ta":{"a":"Tristan Da Cunha Flag","b":"1F1F9-1F1E6","k":[4,42]},"man-shrugging":{"skin_variations":{"1F3FB":{"unified":"1F937-1F3FB-200D-2642-FE0F","non_qualified":"1F937-1F3FB-200D-2642","image":"1f937-1f3fb-200d-2642-fe0f.png","sheet_x":40,"sheet_y":1,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F937-1F3FC-200D-2642-FE0F","non_qualified":"1F937-1F3FC-200D-2642","image":"1f937-1f3fc-200d-2642-fe0f.png","sheet_x":40,"sheet_y":2,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F937-1F3FD-200D-2642-FE0F","non_qualified":"1F937-1F3FD-200D-2642","image":"1f937-1f3fd-200d-2642-fe0f.png","sheet_x":40,"sheet_y":3,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F937-1F3FE-200D-2642-FE0F","non_qualified":"1F937-1F3FE-200D-2642","image":"1f937-1f3fe-200d-2642-fe0f.png","sheet_x":40,"sheet_y":4,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F937-1F3FF-200D-2642-FE0F","non_qualified":"1F937-1F3FF-200D-2642","image":"1f937-1f3ff-200d-2642-fe0f.png","sheet_x":40,"sheet_y":5,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Man Shrugging","b":"1F937-200D-2642-FE0F","c":"1F937-200D-2642","k":[40,0],"o":9},"woman-shrugging":{"skin_variations":{"1F3FB":{"unified":"1F937-1F3FB-200D-2640-FE0F","non_qualified":"1F937-1F3FB-200D-2640","image":"1f937-1f3fb-200d-2640-fe0f.png","sheet_x":39,"sheet_y":47,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F937-1F3FC-200D-2640-FE0F","non_qualified":"1F937-1F3FC-200D-2640","image":"1f937-1f3fc-200d-2640-fe0f.png","sheet_x":39,"sheet_y":48,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F937-1F3FD-200D-2640-FE0F","non_qualified":"1F937-1F3FD-200D-2640","image":"1f937-1f3fd-200d-2640-fe0f.png","sheet_x":39,"sheet_y":49,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F937-1F3FE-200D-2640-FE0F","non_qualified":"1F937-1F3FE-200D-2640","image":"1f937-1f3fe-200d-2640-fe0f.png","sheet_x":39,"sheet_y":50,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F937-1F3FF-200D-2640-FE0F","non_qualified":"1F937-1F3FF-200D-2640","image":"1f937-1f3ff-200d-2640-fe0f.png","sheet_x":39,"sheet_y":51,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Woman Shrugging","b":"1F937-200D-2640-FE0F","c":"1F937-200D-2640","k":[39,46],"o":9},"flag-tc":{"a":"Turks & Caicos Islands Flag","b":"1F1F9-1F1E8","k":[4,43]},"massage":{"skin_variations":{"1F3FB":{"unified":"1F486-1F3FB","non_qualified":null,"image":"1f486-1f3fb.png","sheet_x":24,"sheet_y":11,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FC":{"unified":"1F486-1F3FC","non_qualified":null,"image":"1f486-1f3fc.png","sheet_x":24,"sheet_y":12,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FD":{"unified":"1F486-1F3FD","non_qualified":null,"image":"1f486-1f3fd.png","sheet_x":24,"sheet_y":13,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FE":{"unified":"1F486-1F3FE","non_qualified":null,"image":"1f486-1f3fe.png","sheet_x":24,"sheet_y":14,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FF":{"unified":"1F486-1F3FF","non_qualified":null,"image":"1f486-1f3ff.png","sheet_x":24,"sheet_y":15,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true}},"obsoleted_by":"1F486-200D-2640-FE0F","a":"Face Massage","b":"1F486","k":[24,10]},"flag-td":{"a":"Chad Flag","b":"1F1F9-1F1E9","k":[4,44]},"man-getting-massage":{"skin_variations":{"1F3FB":{"unified":"1F486-1F3FB-200D-2642-FE0F","non_qualified":"1F486-1F3FB-200D-2642","image":"1f486-1f3fb-200d-2642-fe0f.png","sheet_x":24,"sheet_y":5,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F486-1F3FC-200D-2642-FE0F","non_qualified":"1F486-1F3FC-200D-2642","image":"1f486-1f3fc-200d-2642-fe0f.png","sheet_x":24,"sheet_y":6,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F486-1F3FD-200D-2642-FE0F","non_qualified":"1F486-1F3FD-200D-2642","image":"1f486-1f3fd-200d-2642-fe0f.png","sheet_x":24,"sheet_y":7,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F486-1F3FE-200D-2642-FE0F","non_qualified":"1F486-1F3FE-200D-2642","image":"1f486-1f3fe-200d-2642-fe0f.png","sheet_x":24,"sheet_y":8,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F486-1F3FF-200D-2642-FE0F","non_qualified":"1F486-1F3FF-200D-2642","image":"1f486-1f3ff-200d-2642-fe0f.png","sheet_x":24,"sheet_y":9,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Man Getting Massage","b":"1F486-200D-2642-FE0F","c":"1F486-200D-2642","k":[24,4]},"woman-getting-massage":{"skin_variations":{"1F3FB":{"unified":"1F486-1F3FB-200D-2640-FE0F","non_qualified":"1F486-1F3FB-200D-2640","image":"1f486-1f3fb-200d-2640-fe0f.png","sheet_x":23,"sheet_y":51,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F486-1F3FC-200D-2640-FE0F","non_qualified":"1F486-1F3FC-200D-2640","image":"1f486-1f3fc-200d-2640-fe0f.png","sheet_x":24,"sheet_y":0,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F486-1F3FD-200D-2640-FE0F","non_qualified":"1F486-1F3FD-200D-2640","image":"1f486-1f3fd-200d-2640-fe0f.png","sheet_x":24,"sheet_y":1,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F486-1F3FE-200D-2640-FE0F","non_qualified":"1F486-1F3FE-200D-2640","image":"1f486-1f3fe-200d-2640-fe0f.png","sheet_x":24,"sheet_y":2,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F486-1F3FF-200D-2640-FE0F","non_qualified":"1F486-1F3FF-200D-2640","image":"1f486-1f3ff-200d-2640-fe0f.png","sheet_x":24,"sheet_y":3,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoletes":"1F486","a":"Woman Getting Massage","b":"1F486-200D-2640-FE0F","c":"1F486-200D-2640","k":[23,50]},"flag-tg":{"a":"Togo Flag","b":"1F1F9-1F1EC","k":[4,46]},"haircut":{"skin_variations":{"1F3FB":{"unified":"1F487-1F3FB","non_qualified":null,"image":"1f487-1f3fb.png","sheet_x":24,"sheet_y":29,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FC":{"unified":"1F487-1F3FC","non_qualified":null,"image":"1f487-1f3fc.png","sheet_x":24,"sheet_y":30,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FD":{"unified":"1F487-1F3FD","non_qualified":null,"image":"1f487-1f3fd.png","sheet_x":24,"sheet_y":31,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FE":{"unified":"1F487-1F3FE","non_qualified":null,"image":"1f487-1f3fe.png","sheet_x":24,"sheet_y":32,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FF":{"unified":"1F487-1F3FF","non_qualified":null,"image":"1f487-1f3ff.png","sheet_x":24,"sheet_y":33,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true}},"obsoleted_by":"1F487-200D-2640-FE0F","a":"Haircut","b":"1F487","k":[24,28]},"flag-th":{"a":"Thailand Flag","b":"1F1F9-1F1ED","k":[4,47]},"man-getting-haircut":{"skin_variations":{"1F3FB":{"unified":"1F487-1F3FB-200D-2642-FE0F","non_qualified":"1F487-1F3FB-200D-2642","image":"1f487-1f3fb-200d-2642-fe0f.png","sheet_x":24,"sheet_y":23,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F487-1F3FC-200D-2642-FE0F","non_qualified":"1F487-1F3FC-200D-2642","image":"1f487-1f3fc-200d-2642-fe0f.png","sheet_x":24,"sheet_y":24,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F487-1F3FD-200D-2642-FE0F","non_qualified":"1F487-1F3FD-200D-2642","image":"1f487-1f3fd-200d-2642-fe0f.png","sheet_x":24,"sheet_y":25,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F487-1F3FE-200D-2642-FE0F","non_qualified":"1F487-1F3FE-200D-2642","image":"1f487-1f3fe-200d-2642-fe0f.png","sheet_x":24,"sheet_y":26,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F487-1F3FF-200D-2642-FE0F","non_qualified":"1F487-1F3FF-200D-2642","image":"1f487-1f3ff-200d-2642-fe0f.png","sheet_x":24,"sheet_y":27,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Man Getting Haircut","b":"1F487-200D-2642-FE0F","c":"1F487-200D-2642","k":[24,22]},"flag-tj":{"a":"Tajikistan Flag","b":"1F1F9-1F1EF","k":[4,48]},"flag-tk":{"a":"Tokelau Flag","b":"1F1F9-1F1F0","k":[4,49]},"woman-getting-haircut":{"skin_variations":{"1F3FB":{"unified":"1F487-1F3FB-200D-2640-FE0F","non_qualified":"1F487-1F3FB-200D-2640","image":"1f487-1f3fb-200d-2640-fe0f.png","sheet_x":24,"sheet_y":17,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F487-1F3FC-200D-2640-FE0F","non_qualified":"1F487-1F3FC-200D-2640","image":"1f487-1f3fc-200d-2640-fe0f.png","sheet_x":24,"sheet_y":18,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F487-1F3FD-200D-2640-FE0F","non_qualified":"1F487-1F3FD-200D-2640","image":"1f487-1f3fd-200d-2640-fe0f.png","sheet_x":24,"sheet_y":19,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F487-1F3FE-200D-2640-FE0F","non_qualified":"1F487-1F3FE-200D-2640","image":"1f487-1f3fe-200d-2640-fe0f.png","sheet_x":24,"sheet_y":20,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F487-1F3FF-200D-2640-FE0F","non_qualified":"1F487-1F3FF-200D-2640","image":"1f487-1f3ff-200d-2640-fe0f.png","sheet_x":24,"sheet_y":21,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoletes":"1F487","a":"Woman Getting Haircut","b":"1F487-200D-2640-FE0F","c":"1F487-200D-2640","k":[24,16]},"walking":{"skin_variations":{"1F3FB":{"unified":"1F6B6-1F3FB","non_qualified":null,"image":"1f6b6-1f3fb.png","sheet_x":36,"sheet_y":22,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FC":{"unified":"1F6B6-1F3FC","non_qualified":null,"image":"1f6b6-1f3fc.png","sheet_x":36,"sheet_y":23,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FD":{"unified":"1F6B6-1F3FD","non_qualified":null,"image":"1f6b6-1f3fd.png","sheet_x":36,"sheet_y":24,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FE":{"unified":"1F6B6-1F3FE","non_qualified":null,"image":"1f6b6-1f3fe.png","sheet_x":36,"sheet_y":25,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FF":{"unified":"1F6B6-1F3FF","non_qualified":null,"image":"1f6b6-1f3ff.png","sheet_x":36,"sheet_y":26,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true}},"obsoleted_by":"1F6B6-200D-2642-FE0F","a":"Pedestrian","b":"1F6B6","k":[36,21]},"flag-tl":{"a":"Timor-Leste Flag","b":"1F1F9-1F1F1","k":[4,50]},"man-walking":{"skin_variations":{"1F3FB":{"unified":"1F6B6-1F3FB-200D-2642-FE0F","non_qualified":"1F6B6-1F3FB-200D-2642","image":"1f6b6-1f3fb-200d-2642-fe0f.png","sheet_x":36,"sheet_y":16,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F6B6-1F3FC-200D-2642-FE0F","non_qualified":"1F6B6-1F3FC-200D-2642","image":"1f6b6-1f3fc-200d-2642-fe0f.png","sheet_x":36,"sheet_y":17,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F6B6-1F3FD-200D-2642-FE0F","non_qualified":"1F6B6-1F3FD-200D-2642","image":"1f6b6-1f3fd-200d-2642-fe0f.png","sheet_x":36,"sheet_y":18,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F6B6-1F3FE-200D-2642-FE0F","non_qualified":"1F6B6-1F3FE-200D-2642","image":"1f6b6-1f3fe-200d-2642-fe0f.png","sheet_x":36,"sheet_y":19,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F6B6-1F3FF-200D-2642-FE0F","non_qualified":"1F6B6-1F3FF-200D-2642","image":"1f6b6-1f3ff-200d-2642-fe0f.png","sheet_x":36,"sheet_y":20,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoletes":"1F6B6","a":"Man Walking","b":"1F6B6-200D-2642-FE0F","c":"1F6B6-200D-2642","k":[36,15]},"flag-tm":{"a":"Turkmenistan Flag","b":"1F1F9-1F1F2","k":[4,51]},"woman-walking":{"skin_variations":{"1F3FB":{"unified":"1F6B6-1F3FB-200D-2640-FE0F","non_qualified":"1F6B6-1F3FB-200D-2640","image":"1f6b6-1f3fb-200d-2640-fe0f.png","sheet_x":36,"sheet_y":10,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F6B6-1F3FC-200D-2640-FE0F","non_qualified":"1F6B6-1F3FC-200D-2640","image":"1f6b6-1f3fc-200d-2640-fe0f.png","sheet_x":36,"sheet_y":11,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F6B6-1F3FD-200D-2640-FE0F","non_qualified":"1F6B6-1F3FD-200D-2640","image":"1f6b6-1f3fd-200d-2640-fe0f.png","sheet_x":36,"sheet_y":12,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F6B6-1F3FE-200D-2640-FE0F","non_qualified":"1F6B6-1F3FE-200D-2640","image":"1f6b6-1f3fe-200d-2640-fe0f.png","sheet_x":36,"sheet_y":13,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F6B6-1F3FF-200D-2640-FE0F","non_qualified":"1F6B6-1F3FF-200D-2640","image":"1f6b6-1f3ff-200d-2640-fe0f.png","sheet_x":36,"sheet_y":14,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Woman Walking","b":"1F6B6-200D-2640-FE0F","c":"1F6B6-200D-2640","k":[36,9]},"flag-tn":{"a":"Tunisia Flag","b":"1F1F9-1F1F3","k":[5,0]},"runner":{"skin_variations":{"1F3FB":{"unified":"1F3C3-1F3FB","non_qualified":null,"image":"1f3c3-1f3fb.png","sheet_x":9,"sheet_y":47,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FC":{"unified":"1F3C3-1F3FC","non_qualified":null,"image":"1f3c3-1f3fc.png","sheet_x":9,"sheet_y":48,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FD":{"unified":"1F3C3-1F3FD","non_qualified":null,"image":"1f3c3-1f3fd.png","sheet_x":9,"sheet_y":49,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FE":{"unified":"1F3C3-1F3FE","non_qualified":null,"image":"1f3c3-1f3fe.png","sheet_x":9,"sheet_y":50,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FF":{"unified":"1F3C3-1F3FF","non_qualified":null,"image":"1f3c3-1f3ff.png","sheet_x":9,"sheet_y":51,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true}},"obsoleted_by":"1F3C3-200D-2642-FE0F","a":"Runner","b":"1F3C3","k":[9,46],"n":["running"]},"flag-to":{"a":"Tonga Flag","b":"1F1F9-1F1F4","k":[5,1]},"man-running":{"skin_variations":{"1F3FB":{"unified":"1F3C3-1F3FB-200D-2642-FE0F","non_qualified":"1F3C3-1F3FB-200D-2642","image":"1f3c3-1f3fb-200d-2642-fe0f.png","sheet_x":9,"sheet_y":41,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F3C3-1F3FC-200D-2642-FE0F","non_qualified":"1F3C3-1F3FC-200D-2642","image":"1f3c3-1f3fc-200d-2642-fe0f.png","sheet_x":9,"sheet_y":42,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F3C3-1F3FD-200D-2642-FE0F","non_qualified":"1F3C3-1F3FD-200D-2642","image":"1f3c3-1f3fd-200d-2642-fe0f.png","sheet_x":9,"sheet_y":43,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F3C3-1F3FE-200D-2642-FE0F","non_qualified":"1F3C3-1F3FE-200D-2642","image":"1f3c3-1f3fe-200d-2642-fe0f.png","sheet_x":9,"sheet_y":44,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F3C3-1F3FF-200D-2642-FE0F","non_qualified":"1F3C3-1F3FF-200D-2642","image":"1f3c3-1f3ff-200d-2642-fe0f.png","sheet_x":9,"sheet_y":45,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoletes":"1F3C3","a":"Man Running","b":"1F3C3-200D-2642-FE0F","c":"1F3C3-200D-2642","k":[9,40]},"flag-tr":{"a":"Turkey Flag","b":"1F1F9-1F1F7","k":[5,2]},"flag-tt":{"a":"Trinidad & Tobago Flag","b":"1F1F9-1F1F9","k":[5,3]},"woman-running":{"skin_variations":{"1F3FB":{"unified":"1F3C3-1F3FB-200D-2640-FE0F","non_qualified":"1F3C3-1F3FB-200D-2640","image":"1f3c3-1f3fb-200d-2640-fe0f.png","sheet_x":9,"sheet_y":35,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F3C3-1F3FC-200D-2640-FE0F","non_qualified":"1F3C3-1F3FC-200D-2640","image":"1f3c3-1f3fc-200d-2640-fe0f.png","sheet_x":9,"sheet_y":36,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F3C3-1F3FD-200D-2640-FE0F","non_qualified":"1F3C3-1F3FD-200D-2640","image":"1f3c3-1f3fd-200d-2640-fe0f.png","sheet_x":9,"sheet_y":37,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F3C3-1F3FE-200D-2640-FE0F","non_qualified":"1F3C3-1F3FE-200D-2640","image":"1f3c3-1f3fe-200d-2640-fe0f.png","sheet_x":9,"sheet_y":38,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F3C3-1F3FF-200D-2640-FE0F","non_qualified":"1F3C3-1F3FF-200D-2640","image":"1f3c3-1f3ff-200d-2640-fe0f.png","sheet_x":9,"sheet_y":39,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Woman Running","b":"1F3C3-200D-2640-FE0F","c":"1F3C3-200D-2640","k":[9,34]},"flag-tv":{"a":"Tuvalu Flag","b":"1F1F9-1F1FB","k":[5,4]},"dancer":{"skin_variations":{"1F3FB":{"unified":"1F483-1F3FB","non_qualified":null,"image":"1f483-1f3fb.png","sheet_x":23,"sheet_y":38,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F483-1F3FC","non_qualified":null,"image":"1f483-1f3fc.png","sheet_x":23,"sheet_y":39,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F483-1F3FD","non_qualified":null,"image":"1f483-1f3fd.png","sheet_x":23,"sheet_y":40,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F483-1F3FE","non_qualified":null,"image":"1f483-1f3fe.png","sheet_x":23,"sheet_y":41,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F483-1F3FF","non_qualified":null,"image":"1f483-1f3ff.png","sheet_x":23,"sheet_y":42,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Dancer","b":"1F483","j":["female","girl","woman","fun"],"k":[23,37]},"flag-tw":{"a":"Taiwan Flag","b":"1F1F9-1F1FC","k":[5,5]},"man_dancing":{"skin_variations":{"1F3FB":{"unified":"1F57A-1F3FB","non_qualified":null,"image":"1f57a-1f3fb.png","sheet_x":29,"sheet_y":22,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F57A-1F3FC","non_qualified":null,"image":"1f57a-1f3fc.png","sheet_x":29,"sheet_y":23,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F57A-1F3FD","non_qualified":null,"image":"1f57a-1f3fd.png","sheet_x":29,"sheet_y":24,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F57A-1F3FE","non_qualified":null,"image":"1f57a-1f3fe.png","sheet_x":29,"sheet_y":25,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F57A-1F3FF","non_qualified":null,"image":"1f57a-1f3ff.png","sheet_x":29,"sheet_y":26,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Man Dancing","b":"1F57A","j":["male","boy","fun","dancer"],"k":[29,21],"o":9},"dancers":{"obsoleted_by":"1F46F-200D-2640-FE0F","a":"Woman with Bunny Ears","b":"1F46F","k":[21,1]},"flag-tz":{"a":"Tanzania Flag","b":"1F1F9-1F1FF","k":[5,6]},"flag-ua":{"a":"Ukraine Flag","b":"1F1FA-1F1E6","k":[5,7]},"man-with-bunny-ears-partying":{"a":"Man with Bunny Ears Partying","b":"1F46F-200D-2642-FE0F","c":"1F46F-200D-2642","k":[21,0]},"woman-with-bunny-ears-partying":{"obsoletes":"1F46F","a":"Woman with Bunny Ears Partying","b":"1F46F-200D-2640-FE0F","c":"1F46F-200D-2640","k":[20,51]},"flag-ug":{"a":"Uganda Flag","b":"1F1FA-1F1EC","k":[5,8]},"flag-um":{"a":"U.s. Outlying Islands Flag","b":"1F1FA-1F1F2","k":[5,9]},"person_in_steamy_room":{"skin_variations":{"1F3FB":{"unified":"1F9D6-1F3FB","non_qualified":null,"image":"1f9d6-1f3fb.png","sheet_x":43,"sheet_y":41,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9D6-1F3FB-200D-2642-FE0F"},"1F3FC":{"unified":"1F9D6-1F3FC","non_qualified":null,"image":"1f9d6-1f3fc.png","sheet_x":43,"sheet_y":42,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9D6-1F3FC-200D-2642-FE0F"},"1F3FD":{"unified":"1F9D6-1F3FD","non_qualified":null,"image":"1f9d6-1f3fd.png","sheet_x":43,"sheet_y":43,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9D6-1F3FD-200D-2642-FE0F"},"1F3FE":{"unified":"1F9D6-1F3FE","non_qualified":null,"image":"1f9d6-1f3fe.png","sheet_x":43,"sheet_y":44,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9D6-1F3FE-200D-2642-FE0F"},"1F3FF":{"unified":"1F9D6-1F3FF","non_qualified":null,"image":"1f9d6-1f3ff.png","sheet_x":43,"sheet_y":45,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9D6-1F3FF-200D-2642-FE0F"}},"obsoleted_by":"1F9D6-200D-2642-FE0F","a":"Person in Steamy Room","b":"1F9D6","k":[43,40],"o":10},"woman_in_steamy_room":{"skin_variations":{"1F3FB":{"unified":"1F9D6-1F3FB-200D-2640-FE0F","non_qualified":"1F9D6-1F3FB-200D-2640","image":"1f9d6-1f3fb-200d-2640-fe0f.png","sheet_x":43,"sheet_y":29,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F9D6-1F3FC-200D-2640-FE0F","non_qualified":"1F9D6-1F3FC-200D-2640","image":"1f9d6-1f3fc-200d-2640-fe0f.png","sheet_x":43,"sheet_y":30,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F9D6-1F3FD-200D-2640-FE0F","non_qualified":"1F9D6-1F3FD-200D-2640","image":"1f9d6-1f3fd-200d-2640-fe0f.png","sheet_x":43,"sheet_y":31,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F9D6-1F3FE-200D-2640-FE0F","non_qualified":"1F9D6-1F3FE-200D-2640","image":"1f9d6-1f3fe-200d-2640-fe0f.png","sheet_x":43,"sheet_y":32,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F9D6-1F3FF-200D-2640-FE0F","non_qualified":"1F9D6-1F3FF-200D-2640","image":"1f9d6-1f3ff-200d-2640-fe0f.png","sheet_x":43,"sheet_y":33,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Woman in Steamy Room","b":"1F9D6-200D-2640-FE0F","c":"1F9D6-200D-2640","k":[43,28],"o":10},"flag-un":{"a":"United Nations Flag","b":"1F1FA-1F1F3","k":[5,10]},"us":{"a":"United States Flag","b":"1F1FA-1F1F8","j":["united","states","america","flag","nation","country","banner"],"k":[5,11],"n":["flag-us"]},"man_in_steamy_room":{"skin_variations":{"1F3FB":{"unified":"1F9D6-1F3FB-200D-2642-FE0F","non_qualified":"1F9D6-1F3FB-200D-2642","image":"1f9d6-1f3fb-200d-2642-fe0f.png","sheet_x":43,"sheet_y":35,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9D6-1F3FB"},"1F3FC":{"unified":"1F9D6-1F3FC-200D-2642-FE0F","non_qualified":"1F9D6-1F3FC-200D-2642","image":"1f9d6-1f3fc-200d-2642-fe0f.png","sheet_x":43,"sheet_y":36,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9D6-1F3FC"},"1F3FD":{"unified":"1F9D6-1F3FD-200D-2642-FE0F","non_qualified":"1F9D6-1F3FD-200D-2642","image":"1f9d6-1f3fd-200d-2642-fe0f.png","sheet_x":43,"sheet_y":37,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9D6-1F3FD"},"1F3FE":{"unified":"1F9D6-1F3FE-200D-2642-FE0F","non_qualified":"1F9D6-1F3FE-200D-2642","image":"1f9d6-1f3fe-200d-2642-fe0f.png","sheet_x":43,"sheet_y":38,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9D6-1F3FE"},"1F3FF":{"unified":"1F9D6-1F3FF-200D-2642-FE0F","non_qualified":"1F9D6-1F3FF-200D-2642","image":"1f9d6-1f3ff-200d-2642-fe0f.png","sheet_x":43,"sheet_y":39,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9D6-1F3FF"}},"obsoletes":"1F9D6","a":"Man in Steamy Room","b":"1F9D6-200D-2642-FE0F","c":"1F9D6-200D-2642","k":[43,34],"o":10},"person_climbing":{"skin_variations":{"1F3FB":{"unified":"1F9D7-1F3FB","non_qualified":null,"image":"1f9d7-1f3fb.png","sheet_x":44,"sheet_y":7,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9D7-1F3FB-200D-2640-FE0F"},"1F3FC":{"unified":"1F9D7-1F3FC","non_qualified":null,"image":"1f9d7-1f3fc.png","sheet_x":44,"sheet_y":8,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9D7-1F3FC-200D-2640-FE0F"},"1F3FD":{"unified":"1F9D7-1F3FD","non_qualified":null,"image":"1f9d7-1f3fd.png","sheet_x":44,"sheet_y":9,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9D7-1F3FD-200D-2640-FE0F"},"1F3FE":{"unified":"1F9D7-1F3FE","non_qualified":null,"image":"1f9d7-1f3fe.png","sheet_x":44,"sheet_y":10,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9D7-1F3FE-200D-2640-FE0F"},"1F3FF":{"unified":"1F9D7-1F3FF","non_qualified":null,"image":"1f9d7-1f3ff.png","sheet_x":44,"sheet_y":11,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9D7-1F3FF-200D-2640-FE0F"}},"obsoleted_by":"1F9D7-200D-2640-FE0F","a":"Person Climbing","b":"1F9D7","k":[44,6],"o":10},"flag-uy":{"a":"Uruguay Flag","b":"1F1FA-1F1FE","k":[5,12]},"woman_climbing":{"skin_variations":{"1F3FB":{"unified":"1F9D7-1F3FB-200D-2640-FE0F","non_qualified":"1F9D7-1F3FB-200D-2640","image":"1f9d7-1f3fb-200d-2640-fe0f.png","sheet_x":43,"sheet_y":47,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9D7-1F3FB"},"1F3FC":{"unified":"1F9D7-1F3FC-200D-2640-FE0F","non_qualified":"1F9D7-1F3FC-200D-2640","image":"1f9d7-1f3fc-200d-2640-fe0f.png","sheet_x":43,"sheet_y":48,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9D7-1F3FC"},"1F3FD":{"unified":"1F9D7-1F3FD-200D-2640-FE0F","non_qualified":"1F9D7-1F3FD-200D-2640","image":"1f9d7-1f3fd-200d-2640-fe0f.png","sheet_x":43,"sheet_y":49,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9D7-1F3FD"},"1F3FE":{"unified":"1F9D7-1F3FE-200D-2640-FE0F","non_qualified":"1F9D7-1F3FE-200D-2640","image":"1f9d7-1f3fe-200d-2640-fe0f.png","sheet_x":43,"sheet_y":50,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9D7-1F3FE"},"1F3FF":{"unified":"1F9D7-1F3FF-200D-2640-FE0F","non_qualified":"1F9D7-1F3FF-200D-2640","image":"1f9d7-1f3ff-200d-2640-fe0f.png","sheet_x":43,"sheet_y":51,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9D7-1F3FF"}},"obsoletes":"1F9D7","a":"Woman Climbing","b":"1F9D7-200D-2640-FE0F","c":"1F9D7-200D-2640","k":[43,46],"o":10},"flag-uz":{"a":"Uzbekistan Flag","b":"1F1FA-1F1FF","k":[5,13]},"man_climbing":{"skin_variations":{"1F3FB":{"unified":"1F9D7-1F3FB-200D-2642-FE0F","non_qualified":"1F9D7-1F3FB-200D-2642","image":"1f9d7-1f3fb-200d-2642-fe0f.png","sheet_x":44,"sheet_y":1,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F9D7-1F3FC-200D-2642-FE0F","non_qualified":"1F9D7-1F3FC-200D-2642","image":"1f9d7-1f3fc-200d-2642-fe0f.png","sheet_x":44,"sheet_y":2,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F9D7-1F3FD-200D-2642-FE0F","non_qualified":"1F9D7-1F3FD-200D-2642","image":"1f9d7-1f3fd-200d-2642-fe0f.png","sheet_x":44,"sheet_y":3,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F9D7-1F3FE-200D-2642-FE0F","non_qualified":"1F9D7-1F3FE-200D-2642","image":"1f9d7-1f3fe-200d-2642-fe0f.png","sheet_x":44,"sheet_y":4,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F9D7-1F3FF-200D-2642-FE0F","non_qualified":"1F9D7-1F3FF-200D-2642","image":"1f9d7-1f3ff-200d-2642-fe0f.png","sheet_x":44,"sheet_y":5,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Man Climbing","b":"1F9D7-200D-2642-FE0F","c":"1F9D7-200D-2642","k":[44,0],"o":10},"flag-va":{"a":"Vatican City Flag","b":"1F1FB-1F1E6","k":[5,14]},"person_in_lotus_position":{"skin_variations":{"1F3FB":{"unified":"1F9D8-1F3FB","non_qualified":null,"image":"1f9d8-1f3fb.png","sheet_x":44,"sheet_y":25,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9D8-1F3FB-200D-2640-FE0F"},"1F3FC":{"unified":"1F9D8-1F3FC","non_qualified":null,"image":"1f9d8-1f3fc.png","sheet_x":44,"sheet_y":26,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9D8-1F3FC-200D-2640-FE0F"},"1F3FD":{"unified":"1F9D8-1F3FD","non_qualified":null,"image":"1f9d8-1f3fd.png","sheet_x":44,"sheet_y":27,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9D8-1F3FD-200D-2640-FE0F"},"1F3FE":{"unified":"1F9D8-1F3FE","non_qualified":null,"image":"1f9d8-1f3fe.png","sheet_x":44,"sheet_y":28,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9D8-1F3FE-200D-2640-FE0F"},"1F3FF":{"unified":"1F9D8-1F3FF","non_qualified":null,"image":"1f9d8-1f3ff.png","sheet_x":44,"sheet_y":29,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false,"obsoleted_by":"1F9D8-1F3FF-200D-2640-FE0F"}},"obsoleted_by":"1F9D8-200D-2640-FE0F","a":"Person in Lotus Position","b":"1F9D8","k":[44,24],"o":10},"flag-vc":{"a":"St. Vincent & Grenadines Flag","b":"1F1FB-1F1E8","k":[5,15]},"flag-ve":{"a":"Venezuela Flag","b":"1F1FB-1F1EA","k":[5,16]},"woman_in_lotus_position":{"skin_variations":{"1F3FB":{"unified":"1F9D8-1F3FB-200D-2640-FE0F","non_qualified":"1F9D8-1F3FB-200D-2640","image":"1f9d8-1f3fb-200d-2640-fe0f.png","sheet_x":44,"sheet_y":13,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9D8-1F3FB"},"1F3FC":{"unified":"1F9D8-1F3FC-200D-2640-FE0F","non_qualified":"1F9D8-1F3FC-200D-2640","image":"1f9d8-1f3fc-200d-2640-fe0f.png","sheet_x":44,"sheet_y":14,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9D8-1F3FC"},"1F3FD":{"unified":"1F9D8-1F3FD-200D-2640-FE0F","non_qualified":"1F9D8-1F3FD-200D-2640","image":"1f9d8-1f3fd-200d-2640-fe0f.png","sheet_x":44,"sheet_y":15,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9D8-1F3FD"},"1F3FE":{"unified":"1F9D8-1F3FE-200D-2640-FE0F","non_qualified":"1F9D8-1F3FE-200D-2640","image":"1f9d8-1f3fe-200d-2640-fe0f.png","sheet_x":44,"sheet_y":16,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9D8-1F3FE"},"1F3FF":{"unified":"1F9D8-1F3FF-200D-2640-FE0F","non_qualified":"1F9D8-1F3FF-200D-2640","image":"1f9d8-1f3ff-200d-2640-fe0f.png","sheet_x":44,"sheet_y":17,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false,"obsoletes":"1F9D8-1F3FF"}},"obsoletes":"1F9D8","a":"Woman in Lotus Position","b":"1F9D8-200D-2640-FE0F","c":"1F9D8-200D-2640","k":[44,12],"o":10},"man_in_lotus_position":{"skin_variations":{"1F3FB":{"unified":"1F9D8-1F3FB-200D-2642-FE0F","non_qualified":"1F9D8-1F3FB-200D-2642","image":"1f9d8-1f3fb-200d-2642-fe0f.png","sheet_x":44,"sheet_y":19,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F9D8-1F3FC-200D-2642-FE0F","non_qualified":"1F9D8-1F3FC-200D-2642","image":"1f9d8-1f3fc-200d-2642-fe0f.png","sheet_x":44,"sheet_y":20,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F9D8-1F3FD-200D-2642-FE0F","non_qualified":"1F9D8-1F3FD-200D-2642","image":"1f9d8-1f3fd-200d-2642-fe0f.png","sheet_x":44,"sheet_y":21,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F9D8-1F3FE-200D-2642-FE0F","non_qualified":"1F9D8-1F3FE-200D-2642","image":"1f9d8-1f3fe-200d-2642-fe0f.png","sheet_x":44,"sheet_y":22,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F9D8-1F3FF-200D-2642-FE0F","non_qualified":"1F9D8-1F3FF-200D-2642","image":"1f9d8-1f3ff-200d-2642-fe0f.png","sheet_x":44,"sheet_y":23,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Man in Lotus Position","b":"1F9D8-200D-2642-FE0F","c":"1F9D8-200D-2642","k":[44,18],"o":10},"flag-vg":{"a":"British Virgin Islands Flag","b":"1F1FB-1F1EC","k":[5,17]},"flag-vi":{"a":"U.s. Virgin Islands Flag","b":"1F1FB-1F1EE","k":[5,18]},"bath":{"skin_variations":{"1F3FB":{"unified":"1F6C0-1F3FB","non_qualified":null,"image":"1f6c0-1f3fb.png","sheet_x":36,"sheet_y":37,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F6C0-1F3FC","non_qualified":null,"image":"1f6c0-1f3fc.png","sheet_x":36,"sheet_y":38,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F6C0-1F3FD","non_qualified":null,"image":"1f6c0-1f3fd.png","sheet_x":36,"sheet_y":39,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F6C0-1F3FE","non_qualified":null,"image":"1f6c0-1f3fe.png","sheet_x":36,"sheet_y":40,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F6C0-1F3FF","non_qualified":null,"image":"1f6c0-1f3ff.png","sheet_x":36,"sheet_y":41,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Bath","b":"1F6C0","j":["clean","shower","bathroom"],"k":[36,36]},"sleeping_accommodation":{"skin_variations":{"1F3FB":{"unified":"1F6CC-1F3FB","non_qualified":null,"image":"1f6cc-1f3fb.png","sheet_x":36,"sheet_y":49,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F6CC-1F3FC","non_qualified":null,"image":"1f6cc-1f3fc.png","sheet_x":36,"sheet_y":50,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F6CC-1F3FD","non_qualified":null,"image":"1f6cc-1f3fd.png","sheet_x":36,"sheet_y":51,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F6CC-1F3FE","non_qualified":null,"image":"1f6cc-1f3fe.png","sheet_x":37,"sheet_y":0,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F6CC-1F3FF","non_qualified":null,"image":"1f6cc-1f3ff.png","sheet_x":37,"sheet_y":1,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Sleeping Accommodation","b":"1F6CC","k":[36,48],"o":7},"flag-vn":{"a":"Vietnam Flag","b":"1F1FB-1F1F3","k":[5,19]},"man_in_business_suit_levitating":{"skin_variations":{"1F3FB":{"unified":"1F574-1F3FB","non_qualified":null,"image":"1f574-1f3fb.png","sheet_x":28,"sheet_y":46,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F574-1F3FC","non_qualified":null,"image":"1f574-1f3fc.png","sheet_x":28,"sheet_y":47,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F574-1F3FD","non_qualified":null,"image":"1f574-1f3fd.png","sheet_x":28,"sheet_y":48,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F574-1F3FE","non_qualified":null,"image":"1f574-1f3fe.png","sheet_x":28,"sheet_y":49,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F574-1F3FF","non_qualified":null,"image":"1f574-1f3ff.png","sheet_x":28,"sheet_y":50,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Man in Business Suit Levitating","b":"1F574-FE0F","c":"1F574","k":[28,45],"o":7},"flag-vu":{"a":"Vanuatu Flag","b":"1F1FB-1F1FA","k":[5,20]},"speaking_head_in_silhouette":{"a":"Speaking Head in Silhouette","b":"1F5E3-FE0F","c":"1F5E3","k":[30,14],"o":7},"bust_in_silhouette":{"a":"Bust in Silhouette","b":"1F464","j":["user","person","human"],"k":[15,40]},"flag-ws":{"a":"Samoa Flag","b":"1F1FC-1F1F8","k":[5,22]},"busts_in_silhouette":{"a":"Busts in Silhouette","b":"1F465","j":["user","person","human","group","team"],"k":[15,41]},"fencer":{"a":"Fencer","b":"1F93A","k":[40,48],"o":9},"flag-ye":{"a":"Yemen Flag","b":"1F1FE-1F1EA","k":[5,24]},"horse_racing":{"skin_variations":{"1F3FB":{"unified":"1F3C7-1F3FB","non_qualified":null,"image":"1f3c7-1f3fb.png","sheet_x":10,"sheet_y":21,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F3C7-1F3FC","non_qualified":null,"image":"1f3c7-1f3fc.png","sheet_x":10,"sheet_y":22,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F3C7-1F3FD","non_qualified":null,"image":"1f3c7-1f3fd.png","sheet_x":10,"sheet_y":23,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F3C7-1F3FE","non_qualified":null,"image":"1f3c7-1f3fe.png","sheet_x":10,"sheet_y":24,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F3C7-1F3FF","non_qualified":null,"image":"1f3c7-1f3ff.png","sheet_x":10,"sheet_y":25,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Horse Racing","b":"1F3C7","j":["animal","betting","competition","gambling","luck"],"k":[10,20]},"flag-za":{"a":"South Africa Flag","b":"1F1FF-1F1E6","k":[5,26]},"skier":{"a":"Skier","b":"26F7-FE0F","c":"26F7","j":["sports","winter","snow"],"k":[48,44],"o":5},"flag-zm":{"a":"Zambia Flag","b":"1F1FF-1F1F2","k":[5,27]},"snowboarder":{"skin_variations":{"1F3FB":{"unified":"1F3C2-1F3FB","non_qualified":null,"image":"1f3c2-1f3fb.png","sheet_x":9,"sheet_y":29,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F3C2-1F3FC","non_qualified":null,"image":"1f3c2-1f3fc.png","sheet_x":9,"sheet_y":30,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F3C2-1F3FD","non_qualified":null,"image":"1f3c2-1f3fd.png","sheet_x":9,"sheet_y":31,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F3C2-1F3FE","non_qualified":null,"image":"1f3c2-1f3fe.png","sheet_x":9,"sheet_y":32,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F3C2-1F3FF","non_qualified":null,"image":"1f3c2-1f3ff.png","sheet_x":9,"sheet_y":33,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Snowboarder","b":"1F3C2","j":["sports","winter"],"k":[9,28]},"golfer":{"skin_variations":{"1F3FB":{"unified":"1F3CC-1F3FB","non_qualified":null,"image":"1f3cc-1f3fb.png","sheet_x":11,"sheet_y":25,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F3CC-1F3FC","non_qualified":null,"image":"1f3cc-1f3fc.png","sheet_x":11,"sheet_y":26,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F3CC-1F3FD","non_qualified":null,"image":"1f3cc-1f3fd.png","sheet_x":11,"sheet_y":27,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F3CC-1F3FE","non_qualified":null,"image":"1f3cc-1f3fe.png","sheet_x":11,"sheet_y":28,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F3CC-1F3FF","non_qualified":null,"image":"1f3cc-1f3ff.png","sheet_x":11,"sheet_y":29,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoleted_by":"1F3CC-FE0F-200D-2642-FE0F","a":"Golfer","b":"1F3CC-FE0F","c":"1F3CC","k":[11,24],"o":7},"flag-zw":{"a":"Zimbabwe Flag","b":"1F1FF-1F1FC","k":[5,28]},"man-golfing":{"skin_variations":{"1F3FB":{"unified":"1F3CC-1F3FB-200D-2642-FE0F","non_qualified":"1F3CC-1F3FB-200D-2642","image":"1f3cc-1f3fb-200d-2642-fe0f.png","sheet_x":11,"sheet_y":19,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F3CC-1F3FC-200D-2642-FE0F","non_qualified":"1F3CC-1F3FC-200D-2642","image":"1f3cc-1f3fc-200d-2642-fe0f.png","sheet_x":11,"sheet_y":20,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F3CC-1F3FD-200D-2642-FE0F","non_qualified":"1F3CC-1F3FD-200D-2642","image":"1f3cc-1f3fd-200d-2642-fe0f.png","sheet_x":11,"sheet_y":21,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F3CC-1F3FE-200D-2642-FE0F","non_qualified":"1F3CC-1F3FE-200D-2642","image":"1f3cc-1f3fe-200d-2642-fe0f.png","sheet_x":11,"sheet_y":22,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F3CC-1F3FF-200D-2642-FE0F","non_qualified":"1F3CC-1F3FF-200D-2642","image":"1f3cc-1f3ff-200d-2642-fe0f.png","sheet_x":11,"sheet_y":23,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoletes":"1F3CC-FE0F","a":"Man Golfing","b":"1F3CC-FE0F-200D-2642-FE0F","k":[11,18],"o":7},"flag-england":{"a":"England Flag","b":"1F3F4-E0067-E0062-E0065-E006E-E0067-E007F","k":[12,16],"o":7},"woman-golfing":{"skin_variations":{"1F3FB":{"unified":"1F3CC-1F3FB-200D-2640-FE0F","non_qualified":"1F3CC-1F3FB-200D-2640","image":"1f3cc-1f3fb-200d-2640-fe0f.png","sheet_x":11,"sheet_y":13,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F3CC-1F3FC-200D-2640-FE0F","non_qualified":"1F3CC-1F3FC-200D-2640","image":"1f3cc-1f3fc-200d-2640-fe0f.png","sheet_x":11,"sheet_y":14,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F3CC-1F3FD-200D-2640-FE0F","non_qualified":"1F3CC-1F3FD-200D-2640","image":"1f3cc-1f3fd-200d-2640-fe0f.png","sheet_x":11,"sheet_y":15,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F3CC-1F3FE-200D-2640-FE0F","non_qualified":"1F3CC-1F3FE-200D-2640","image":"1f3cc-1f3fe-200d-2640-fe0f.png","sheet_x":11,"sheet_y":16,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F3CC-1F3FF-200D-2640-FE0F","non_qualified":"1F3CC-1F3FF-200D-2640","image":"1f3cc-1f3ff-200d-2640-fe0f.png","sheet_x":11,"sheet_y":17,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Woman Golfing","b":"1F3CC-FE0F-200D-2640-FE0F","k":[11,12],"o":7},"flag-scotland":{"a":"Scotland Flag","b":"1F3F4-E0067-E0062-E0073-E0063-E0074-E007F","k":[12,17],"o":7},"flag-wales":{"a":"Wales Flag","b":"1F3F4-E0067-E0062-E0077-E006C-E0073-E007F","k":[12,18],"o":7},"surfer":{"skin_variations":{"1F3FB":{"unified":"1F3C4-1F3FB","non_qualified":null,"image":"1f3c4-1f3fb.png","sheet_x":10,"sheet_y":13,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FC":{"unified":"1F3C4-1F3FC","non_qualified":null,"image":"1f3c4-1f3fc.png","sheet_x":10,"sheet_y":14,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FD":{"unified":"1F3C4-1F3FD","non_qualified":null,"image":"1f3c4-1f3fd.png","sheet_x":10,"sheet_y":15,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FE":{"unified":"1F3C4-1F3FE","non_qualified":null,"image":"1f3c4-1f3fe.png","sheet_x":10,"sheet_y":16,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FF":{"unified":"1F3C4-1F3FF","non_qualified":null,"image":"1f3c4-1f3ff.png","sheet_x":10,"sheet_y":17,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true}},"obsoleted_by":"1F3C4-200D-2642-FE0F","a":"Surfer","b":"1F3C4","k":[10,12]},"man-surfing":{"skin_variations":{"1F3FB":{"unified":"1F3C4-1F3FB-200D-2642-FE0F","non_qualified":"1F3C4-1F3FB-200D-2642","image":"1f3c4-1f3fb-200d-2642-fe0f.png","sheet_x":10,"sheet_y":7,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F3C4-1F3FC-200D-2642-FE0F","non_qualified":"1F3C4-1F3FC-200D-2642","image":"1f3c4-1f3fc-200d-2642-fe0f.png","sheet_x":10,"sheet_y":8,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F3C4-1F3FD-200D-2642-FE0F","non_qualified":"1F3C4-1F3FD-200D-2642","image":"1f3c4-1f3fd-200d-2642-fe0f.png","sheet_x":10,"sheet_y":9,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F3C4-1F3FE-200D-2642-FE0F","non_qualified":"1F3C4-1F3FE-200D-2642","image":"1f3c4-1f3fe-200d-2642-fe0f.png","sheet_x":10,"sheet_y":10,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F3C4-1F3FF-200D-2642-FE0F","non_qualified":"1F3C4-1F3FF-200D-2642","image":"1f3c4-1f3ff-200d-2642-fe0f.png","sheet_x":10,"sheet_y":11,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoletes":"1F3C4","a":"Man Surfing","b":"1F3C4-200D-2642-FE0F","c":"1F3C4-200D-2642","k":[10,6]},"woman-surfing":{"skin_variations":{"1F3FB":{"unified":"1F3C4-1F3FB-200D-2640-FE0F","non_qualified":"1F3C4-1F3FB-200D-2640","image":"1f3c4-1f3fb-200d-2640-fe0f.png","sheet_x":10,"sheet_y":1,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F3C4-1F3FC-200D-2640-FE0F","non_qualified":"1F3C4-1F3FC-200D-2640","image":"1f3c4-1f3fc-200d-2640-fe0f.png","sheet_x":10,"sheet_y":2,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F3C4-1F3FD-200D-2640-FE0F","non_qualified":"1F3C4-1F3FD-200D-2640","image":"1f3c4-1f3fd-200d-2640-fe0f.png","sheet_x":10,"sheet_y":3,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F3C4-1F3FE-200D-2640-FE0F","non_qualified":"1F3C4-1F3FE-200D-2640","image":"1f3c4-1f3fe-200d-2640-fe0f.png","sheet_x":10,"sheet_y":4,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F3C4-1F3FF-200D-2640-FE0F","non_qualified":"1F3C4-1F3FF-200D-2640","image":"1f3c4-1f3ff-200d-2640-fe0f.png","sheet_x":10,"sheet_y":5,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Woman Surfing","b":"1F3C4-200D-2640-FE0F","c":"1F3C4-200D-2640","k":[10,0]},"rowboat":{"skin_variations":{"1F3FB":{"unified":"1F6A3-1F3FB","non_qualified":null,"image":"1f6a3-1f3fb.png","sheet_x":35,"sheet_y":4,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F6A3-1F3FC","non_qualified":null,"image":"1f6a3-1f3fc.png","sheet_x":35,"sheet_y":5,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F6A3-1F3FD","non_qualified":null,"image":"1f6a3-1f3fd.png","sheet_x":35,"sheet_y":6,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F6A3-1F3FE","non_qualified":null,"image":"1f6a3-1f3fe.png","sheet_x":35,"sheet_y":7,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F6A3-1F3FF","non_qualified":null,"image":"1f6a3-1f3ff.png","sheet_x":35,"sheet_y":8,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoleted_by":"1F6A3-200D-2642-FE0F","a":"Rowboat","b":"1F6A3","k":[35,3]},"man-rowing-boat":{"skin_variations":{"1F3FB":{"unified":"1F6A3-1F3FB-200D-2642-FE0F","non_qualified":"1F6A3-1F3FB-200D-2642","image":"1f6a3-1f3fb-200d-2642-fe0f.png","sheet_x":34,"sheet_y":50,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F6A3-1F3FC-200D-2642-FE0F","non_qualified":"1F6A3-1F3FC-200D-2642","image":"1f6a3-1f3fc-200d-2642-fe0f.png","sheet_x":34,"sheet_y":51,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F6A3-1F3FD-200D-2642-FE0F","non_qualified":"1F6A3-1F3FD-200D-2642","image":"1f6a3-1f3fd-200d-2642-fe0f.png","sheet_x":35,"sheet_y":0,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F6A3-1F3FE-200D-2642-FE0F","non_qualified":"1F6A3-1F3FE-200D-2642","image":"1f6a3-1f3fe-200d-2642-fe0f.png","sheet_x":35,"sheet_y":1,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F6A3-1F3FF-200D-2642-FE0F","non_qualified":"1F6A3-1F3FF-200D-2642","image":"1f6a3-1f3ff-200d-2642-fe0f.png","sheet_x":35,"sheet_y":2,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoletes":"1F6A3","a":"Man Rowing Boat","b":"1F6A3-200D-2642-FE0F","c":"1F6A3-200D-2642","k":[34,49]},"woman-rowing-boat":{"skin_variations":{"1F3FB":{"unified":"1F6A3-1F3FB-200D-2640-FE0F","non_qualified":"1F6A3-1F3FB-200D-2640","image":"1f6a3-1f3fb-200d-2640-fe0f.png","sheet_x":34,"sheet_y":44,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F6A3-1F3FC-200D-2640-FE0F","non_qualified":"1F6A3-1F3FC-200D-2640","image":"1f6a3-1f3fc-200d-2640-fe0f.png","sheet_x":34,"sheet_y":45,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F6A3-1F3FD-200D-2640-FE0F","non_qualified":"1F6A3-1F3FD-200D-2640","image":"1f6a3-1f3fd-200d-2640-fe0f.png","sheet_x":34,"sheet_y":46,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F6A3-1F3FE-200D-2640-FE0F","non_qualified":"1F6A3-1F3FE-200D-2640","image":"1f6a3-1f3fe-200d-2640-fe0f.png","sheet_x":34,"sheet_y":47,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F6A3-1F3FF-200D-2640-FE0F","non_qualified":"1F6A3-1F3FF-200D-2640","image":"1f6a3-1f3ff-200d-2640-fe0f.png","sheet_x":34,"sheet_y":48,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Woman Rowing Boat","b":"1F6A3-200D-2640-FE0F","c":"1F6A3-200D-2640","k":[34,43]},"swimmer":{"skin_variations":{"1F3FB":{"unified":"1F3CA-1F3FB","non_qualified":null,"image":"1f3ca-1f3fb.png","sheet_x":10,"sheet_y":41,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FC":{"unified":"1F3CA-1F3FC","non_qualified":null,"image":"1f3ca-1f3fc.png","sheet_x":10,"sheet_y":42,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FD":{"unified":"1F3CA-1F3FD","non_qualified":null,"image":"1f3ca-1f3fd.png","sheet_x":10,"sheet_y":43,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FE":{"unified":"1F3CA-1F3FE","non_qualified":null,"image":"1f3ca-1f3fe.png","sheet_x":10,"sheet_y":44,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FF":{"unified":"1F3CA-1F3FF","non_qualified":null,"image":"1f3ca-1f3ff.png","sheet_x":10,"sheet_y":45,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true}},"obsoleted_by":"1F3CA-200D-2642-FE0F","a":"Swimmer","b":"1F3CA","k":[10,40]},"man-swimming":{"skin_variations":{"1F3FB":{"unified":"1F3CA-1F3FB-200D-2642-FE0F","non_qualified":"1F3CA-1F3FB-200D-2642","image":"1f3ca-1f3fb-200d-2642-fe0f.png","sheet_x":10,"sheet_y":35,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F3CA-1F3FC-200D-2642-FE0F","non_qualified":"1F3CA-1F3FC-200D-2642","image":"1f3ca-1f3fc-200d-2642-fe0f.png","sheet_x":10,"sheet_y":36,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F3CA-1F3FD-200D-2642-FE0F","non_qualified":"1F3CA-1F3FD-200D-2642","image":"1f3ca-1f3fd-200d-2642-fe0f.png","sheet_x":10,"sheet_y":37,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F3CA-1F3FE-200D-2642-FE0F","non_qualified":"1F3CA-1F3FE-200D-2642","image":"1f3ca-1f3fe-200d-2642-fe0f.png","sheet_x":10,"sheet_y":38,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F3CA-1F3FF-200D-2642-FE0F","non_qualified":"1F3CA-1F3FF-200D-2642","image":"1f3ca-1f3ff-200d-2642-fe0f.png","sheet_x":10,"sheet_y":39,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoletes":"1F3CA","a":"Man Swimming","b":"1F3CA-200D-2642-FE0F","c":"1F3CA-200D-2642","k":[10,34]},"woman-swimming":{"skin_variations":{"1F3FB":{"unified":"1F3CA-1F3FB-200D-2640-FE0F","non_qualified":"1F3CA-1F3FB-200D-2640","image":"1f3ca-1f3fb-200d-2640-fe0f.png","sheet_x":10,"sheet_y":29,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F3CA-1F3FC-200D-2640-FE0F","non_qualified":"1F3CA-1F3FC-200D-2640","image":"1f3ca-1f3fc-200d-2640-fe0f.png","sheet_x":10,"sheet_y":30,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F3CA-1F3FD-200D-2640-FE0F","non_qualified":"1F3CA-1F3FD-200D-2640","image":"1f3ca-1f3fd-200d-2640-fe0f.png","sheet_x":10,"sheet_y":31,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F3CA-1F3FE-200D-2640-FE0F","non_qualified":"1F3CA-1F3FE-200D-2640","image":"1f3ca-1f3fe-200d-2640-fe0f.png","sheet_x":10,"sheet_y":32,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F3CA-1F3FF-200D-2640-FE0F","non_qualified":"1F3CA-1F3FF-200D-2640","image":"1f3ca-1f3ff-200d-2640-fe0f.png","sheet_x":10,"sheet_y":33,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Woman Swimming","b":"1F3CA-200D-2640-FE0F","c":"1F3CA-200D-2640","k":[10,28]},"person_with_ball":{"skin_variations":{"1F3FB":{"unified":"26F9-1F3FB","non_qualified":null,"image":"26f9-1f3fb.png","sheet_x":49,"sheet_y":7,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"26F9-1F3FC","non_qualified":null,"image":"26f9-1f3fc.png","sheet_x":49,"sheet_y":8,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"26F9-1F3FD","non_qualified":null,"image":"26f9-1f3fd.png","sheet_x":49,"sheet_y":9,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"26F9-1F3FE","non_qualified":null,"image":"26f9-1f3fe.png","sheet_x":49,"sheet_y":10,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"26F9-1F3FF","non_qualified":null,"image":"26f9-1f3ff.png","sheet_x":49,"sheet_y":11,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoleted_by":"26F9-FE0F-200D-2642-FE0F","a":"Person with Ball","b":"26F9-FE0F","c":"26F9","k":[49,6],"o":5},"man-bouncing-ball":{"skin_variations":{"1F3FB":{"unified":"26F9-1F3FB-200D-2642-FE0F","non_qualified":"26F9-1F3FB-200D-2642","image":"26f9-1f3fb-200d-2642-fe0f.png","sheet_x":49,"sheet_y":1,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"26F9-1F3FC-200D-2642-FE0F","non_qualified":"26F9-1F3FC-200D-2642","image":"26f9-1f3fc-200d-2642-fe0f.png","sheet_x":49,"sheet_y":2,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"26F9-1F3FD-200D-2642-FE0F","non_qualified":"26F9-1F3FD-200D-2642","image":"26f9-1f3fd-200d-2642-fe0f.png","sheet_x":49,"sheet_y":3,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"26F9-1F3FE-200D-2642-FE0F","non_qualified":"26F9-1F3FE-200D-2642","image":"26f9-1f3fe-200d-2642-fe0f.png","sheet_x":49,"sheet_y":4,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"26F9-1F3FF-200D-2642-FE0F","non_qualified":"26F9-1F3FF-200D-2642","image":"26f9-1f3ff-200d-2642-fe0f.png","sheet_x":49,"sheet_y":5,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoletes":"26F9-FE0F","a":"Man Bouncing Ball","b":"26F9-FE0F-200D-2642-FE0F","k":[49,0],"o":5},"woman-bouncing-ball":{"skin_variations":{"1F3FB":{"unified":"26F9-1F3FB-200D-2640-FE0F","non_qualified":"26F9-1F3FB-200D-2640","image":"26f9-1f3fb-200d-2640-fe0f.png","sheet_x":48,"sheet_y":47,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"26F9-1F3FC-200D-2640-FE0F","non_qualified":"26F9-1F3FC-200D-2640","image":"26f9-1f3fc-200d-2640-fe0f.png","sheet_x":48,"sheet_y":48,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"26F9-1F3FD-200D-2640-FE0F","non_qualified":"26F9-1F3FD-200D-2640","image":"26f9-1f3fd-200d-2640-fe0f.png","sheet_x":48,"sheet_y":49,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"26F9-1F3FE-200D-2640-FE0F","non_qualified":"26F9-1F3FE-200D-2640","image":"26f9-1f3fe-200d-2640-fe0f.png","sheet_x":48,"sheet_y":50,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"26F9-1F3FF-200D-2640-FE0F","non_qualified":"26F9-1F3FF-200D-2640","image":"26f9-1f3ff-200d-2640-fe0f.png","sheet_x":48,"sheet_y":51,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Woman Bouncing Ball","b":"26F9-FE0F-200D-2640-FE0F","k":[48,46],"o":5},"weight_lifter":{"skin_variations":{"1F3FB":{"unified":"1F3CB-1F3FB","non_qualified":null,"image":"1f3cb-1f3fb.png","sheet_x":11,"sheet_y":7,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F3CB-1F3FC","non_qualified":null,"image":"1f3cb-1f3fc.png","sheet_x":11,"sheet_y":8,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F3CB-1F3FD","non_qualified":null,"image":"1f3cb-1f3fd.png","sheet_x":11,"sheet_y":9,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F3CB-1F3FE","non_qualified":null,"image":"1f3cb-1f3fe.png","sheet_x":11,"sheet_y":10,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F3CB-1F3FF","non_qualified":null,"image":"1f3cb-1f3ff.png","sheet_x":11,"sheet_y":11,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoleted_by":"1F3CB-FE0F-200D-2642-FE0F","a":"Weight Lifter","b":"1F3CB-FE0F","c":"1F3CB","k":[11,6],"o":7},"man-lifting-weights":{"skin_variations":{"1F3FB":{"unified":"1F3CB-1F3FB-200D-2642-FE0F","non_qualified":"1F3CB-1F3FB-200D-2642","image":"1f3cb-1f3fb-200d-2642-fe0f.png","sheet_x":11,"sheet_y":1,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F3CB-1F3FC-200D-2642-FE0F","non_qualified":"1F3CB-1F3FC-200D-2642","image":"1f3cb-1f3fc-200d-2642-fe0f.png","sheet_x":11,"sheet_y":2,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F3CB-1F3FD-200D-2642-FE0F","non_qualified":"1F3CB-1F3FD-200D-2642","image":"1f3cb-1f3fd-200d-2642-fe0f.png","sheet_x":11,"sheet_y":3,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F3CB-1F3FE-200D-2642-FE0F","non_qualified":"1F3CB-1F3FE-200D-2642","image":"1f3cb-1f3fe-200d-2642-fe0f.png","sheet_x":11,"sheet_y":4,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F3CB-1F3FF-200D-2642-FE0F","non_qualified":"1F3CB-1F3FF-200D-2642","image":"1f3cb-1f3ff-200d-2642-fe0f.png","sheet_x":11,"sheet_y":5,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoletes":"1F3CB-FE0F","a":"Man Lifting Weights","b":"1F3CB-FE0F-200D-2642-FE0F","k":[11,0],"o":7},"woman-lifting-weights":{"skin_variations":{"1F3FB":{"unified":"1F3CB-1F3FB-200D-2640-FE0F","non_qualified":"1F3CB-1F3FB-200D-2640","image":"1f3cb-1f3fb-200d-2640-fe0f.png","sheet_x":10,"sheet_y":47,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F3CB-1F3FC-200D-2640-FE0F","non_qualified":"1F3CB-1F3FC-200D-2640","image":"1f3cb-1f3fc-200d-2640-fe0f.png","sheet_x":10,"sheet_y":48,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F3CB-1F3FD-200D-2640-FE0F","non_qualified":"1F3CB-1F3FD-200D-2640","image":"1f3cb-1f3fd-200d-2640-fe0f.png","sheet_x":10,"sheet_y":49,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F3CB-1F3FE-200D-2640-FE0F","non_qualified":"1F3CB-1F3FE-200D-2640","image":"1f3cb-1f3fe-200d-2640-fe0f.png","sheet_x":10,"sheet_y":50,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F3CB-1F3FF-200D-2640-FE0F","non_qualified":"1F3CB-1F3FF-200D-2640","image":"1f3cb-1f3ff-200d-2640-fe0f.png","sheet_x":10,"sheet_y":51,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Woman Lifting Weights","b":"1F3CB-FE0F-200D-2640-FE0F","k":[10,46],"o":7},"bicyclist":{"skin_variations":{"1F3FB":{"unified":"1F6B4-1F3FB","non_qualified":null,"image":"1f6b4-1f3fb.png","sheet_x":35,"sheet_y":38,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FC":{"unified":"1F6B4-1F3FC","non_qualified":null,"image":"1f6b4-1f3fc.png","sheet_x":35,"sheet_y":39,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FD":{"unified":"1F6B4-1F3FD","non_qualified":null,"image":"1f6b4-1f3fd.png","sheet_x":35,"sheet_y":40,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FE":{"unified":"1F6B4-1F3FE","non_qualified":null,"image":"1f6b4-1f3fe.png","sheet_x":35,"sheet_y":41,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FF":{"unified":"1F6B4-1F3FF","non_qualified":null,"image":"1f6b4-1f3ff.png","sheet_x":35,"sheet_y":42,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true}},"obsoleted_by":"1F6B4-200D-2642-FE0F","a":"Bicyclist","b":"1F6B4","k":[35,37]},"man-biking":{"skin_variations":{"1F3FB":{"unified":"1F6B4-1F3FB-200D-2642-FE0F","non_qualified":"1F6B4-1F3FB-200D-2642","image":"1f6b4-1f3fb-200d-2642-fe0f.png","sheet_x":35,"sheet_y":32,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F6B4-1F3FC-200D-2642-FE0F","non_qualified":"1F6B4-1F3FC-200D-2642","image":"1f6b4-1f3fc-200d-2642-fe0f.png","sheet_x":35,"sheet_y":33,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F6B4-1F3FD-200D-2642-FE0F","non_qualified":"1F6B4-1F3FD-200D-2642","image":"1f6b4-1f3fd-200d-2642-fe0f.png","sheet_x":35,"sheet_y":34,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F6B4-1F3FE-200D-2642-FE0F","non_qualified":"1F6B4-1F3FE-200D-2642","image":"1f6b4-1f3fe-200d-2642-fe0f.png","sheet_x":35,"sheet_y":35,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F6B4-1F3FF-200D-2642-FE0F","non_qualified":"1F6B4-1F3FF-200D-2642","image":"1f6b4-1f3ff-200d-2642-fe0f.png","sheet_x":35,"sheet_y":36,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoletes":"1F6B4","a":"Man Biking","b":"1F6B4-200D-2642-FE0F","c":"1F6B4-200D-2642","k":[35,31]},"woman-biking":{"skin_variations":{"1F3FB":{"unified":"1F6B4-1F3FB-200D-2640-FE0F","non_qualified":"1F6B4-1F3FB-200D-2640","image":"1f6b4-1f3fb-200d-2640-fe0f.png","sheet_x":35,"sheet_y":26,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F6B4-1F3FC-200D-2640-FE0F","non_qualified":"1F6B4-1F3FC-200D-2640","image":"1f6b4-1f3fc-200d-2640-fe0f.png","sheet_x":35,"sheet_y":27,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F6B4-1F3FD-200D-2640-FE0F","non_qualified":"1F6B4-1F3FD-200D-2640","image":"1f6b4-1f3fd-200d-2640-fe0f.png","sheet_x":35,"sheet_y":28,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F6B4-1F3FE-200D-2640-FE0F","non_qualified":"1F6B4-1F3FE-200D-2640","image":"1f6b4-1f3fe-200d-2640-fe0f.png","sheet_x":35,"sheet_y":29,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F6B4-1F3FF-200D-2640-FE0F","non_qualified":"1F6B4-1F3FF-200D-2640","image":"1f6b4-1f3ff-200d-2640-fe0f.png","sheet_x":35,"sheet_y":30,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Woman Biking","b":"1F6B4-200D-2640-FE0F","c":"1F6B4-200D-2640","k":[35,25]},"mountain_bicyclist":{"skin_variations":{"1F3FB":{"unified":"1F6B5-1F3FB","non_qualified":null,"image":"1f6b5-1f3fb.png","sheet_x":36,"sheet_y":4,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FC":{"unified":"1F6B5-1F3FC","non_qualified":null,"image":"1f6b5-1f3fc.png","sheet_x":36,"sheet_y":5,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FD":{"unified":"1F6B5-1F3FD","non_qualified":null,"image":"1f6b5-1f3fd.png","sheet_x":36,"sheet_y":6,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FE":{"unified":"1F6B5-1F3FE","non_qualified":null,"image":"1f6b5-1f3fe.png","sheet_x":36,"sheet_y":7,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true},"1F3FF":{"unified":"1F6B5-1F3FF","non_qualified":null,"image":"1f6b5-1f3ff.png","sheet_x":36,"sheet_y":8,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":true}},"obsoleted_by":"1F6B5-200D-2642-FE0F","a":"Mountain Bicyclist","b":"1F6B5","k":[36,3]},"man-mountain-biking":{"skin_variations":{"1F3FB":{"unified":"1F6B5-1F3FB-200D-2642-FE0F","non_qualified":"1F6B5-1F3FB-200D-2642","image":"1f6b5-1f3fb-200d-2642-fe0f.png","sheet_x":35,"sheet_y":50,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F6B5-1F3FC-200D-2642-FE0F","non_qualified":"1F6B5-1F3FC-200D-2642","image":"1f6b5-1f3fc-200d-2642-fe0f.png","sheet_x":35,"sheet_y":51,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F6B5-1F3FD-200D-2642-FE0F","non_qualified":"1F6B5-1F3FD-200D-2642","image":"1f6b5-1f3fd-200d-2642-fe0f.png","sheet_x":36,"sheet_y":0,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F6B5-1F3FE-200D-2642-FE0F","non_qualified":"1F6B5-1F3FE-200D-2642","image":"1f6b5-1f3fe-200d-2642-fe0f.png","sheet_x":36,"sheet_y":1,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F6B5-1F3FF-200D-2642-FE0F","non_qualified":"1F6B5-1F3FF-200D-2642","image":"1f6b5-1f3ff-200d-2642-fe0f.png","sheet_x":36,"sheet_y":2,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"obsoletes":"1F6B5","a":"Man Mountain Biking","b":"1F6B5-200D-2642-FE0F","c":"1F6B5-200D-2642","k":[35,49]},"woman-mountain-biking":{"skin_variations":{"1F3FB":{"unified":"1F6B5-1F3FB-200D-2640-FE0F","non_qualified":"1F6B5-1F3FB-200D-2640","image":"1f6b5-1f3fb-200d-2640-fe0f.png","sheet_x":35,"sheet_y":44,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F6B5-1F3FC-200D-2640-FE0F","non_qualified":"1F6B5-1F3FC-200D-2640","image":"1f6b5-1f3fc-200d-2640-fe0f.png","sheet_x":35,"sheet_y":45,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F6B5-1F3FD-200D-2640-FE0F","non_qualified":"1F6B5-1F3FD-200D-2640","image":"1f6b5-1f3fd-200d-2640-fe0f.png","sheet_x":35,"sheet_y":46,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F6B5-1F3FE-200D-2640-FE0F","non_qualified":"1F6B5-1F3FE-200D-2640","image":"1f6b5-1f3fe-200d-2640-fe0f.png","sheet_x":35,"sheet_y":47,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F6B5-1F3FF-200D-2640-FE0F","non_qualified":"1F6B5-1F3FF-200D-2640","image":"1f6b5-1f3ff-200d-2640-fe0f.png","sheet_x":35,"sheet_y":48,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Woman Mountain Biking","b":"1F6B5-200D-2640-FE0F","c":"1F6B5-200D-2640","k":[35,43]},"racing_car":{"a":"Racing Car","b":"1F3CE-FE0F","c":"1F3CE","j":["sports","race","fast","formula","f1"],"k":[11,31],"o":7},"racing_motorcycle":{"a":"Racing Motorcycle","b":"1F3CD-FE0F","c":"1F3CD","k":[11,30],"o":7},"person_doing_cartwheel":{"skin_variations":{"1F3FB":{"unified":"1F938-1F3FB","non_qualified":null,"image":"1f938-1f3fb.png","sheet_x":40,"sheet_y":25,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F938-1F3FC","non_qualified":null,"image":"1f938-1f3fc.png","sheet_x":40,"sheet_y":26,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F938-1F3FD","non_qualified":null,"image":"1f938-1f3fd.png","sheet_x":40,"sheet_y":27,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F938-1F3FE","non_qualified":null,"image":"1f938-1f3fe.png","sheet_x":40,"sheet_y":28,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F938-1F3FF","non_qualified":null,"image":"1f938-1f3ff.png","sheet_x":40,"sheet_y":29,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Person Doing Cartwheel","b":"1F938","k":[40,24],"o":9},"man-cartwheeling":{"skin_variations":{"1F3FB":{"unified":"1F938-1F3FB-200D-2642-FE0F","non_qualified":"1F938-1F3FB-200D-2642","image":"1f938-1f3fb-200d-2642-fe0f.png","sheet_x":40,"sheet_y":19,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F938-1F3FC-200D-2642-FE0F","non_qualified":"1F938-1F3FC-200D-2642","image":"1f938-1f3fc-200d-2642-fe0f.png","sheet_x":40,"sheet_y":20,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F938-1F3FD-200D-2642-FE0F","non_qualified":"1F938-1F3FD-200D-2642","image":"1f938-1f3fd-200d-2642-fe0f.png","sheet_x":40,"sheet_y":21,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F938-1F3FE-200D-2642-FE0F","non_qualified":"1F938-1F3FE-200D-2642","image":"1f938-1f3fe-200d-2642-fe0f.png","sheet_x":40,"sheet_y":22,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F938-1F3FF-200D-2642-FE0F","non_qualified":"1F938-1F3FF-200D-2642","image":"1f938-1f3ff-200d-2642-fe0f.png","sheet_x":40,"sheet_y":23,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Man Cartwheeling","b":"1F938-200D-2642-FE0F","c":"1F938-200D-2642","k":[40,18],"o":9},"woman-cartwheeling":{"skin_variations":{"1F3FB":{"unified":"1F938-1F3FB-200D-2640-FE0F","non_qualified":"1F938-1F3FB-200D-2640","image":"1f938-1f3fb-200d-2640-fe0f.png","sheet_x":40,"sheet_y":13,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F938-1F3FC-200D-2640-FE0F","non_qualified":"1F938-1F3FC-200D-2640","image":"1f938-1f3fc-200d-2640-fe0f.png","sheet_x":40,"sheet_y":14,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F938-1F3FD-200D-2640-FE0F","non_qualified":"1F938-1F3FD-200D-2640","image":"1f938-1f3fd-200d-2640-fe0f.png","sheet_x":40,"sheet_y":15,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F938-1F3FE-200D-2640-FE0F","non_qualified":"1F938-1F3FE-200D-2640","image":"1f938-1f3fe-200d-2640-fe0f.png","sheet_x":40,"sheet_y":16,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F938-1F3FF-200D-2640-FE0F","non_qualified":"1F938-1F3FF-200D-2640","image":"1f938-1f3ff-200d-2640-fe0f.png","sheet_x":40,"sheet_y":17,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Woman Cartwheeling","b":"1F938-200D-2640-FE0F","c":"1F938-200D-2640","k":[40,12],"o":9},"wrestlers":{"a":"Wrestlers","b":"1F93C","k":[40,51],"o":9},"man-wrestling":{"a":"Man Wrestling","b":"1F93C-200D-2642-FE0F","c":"1F93C-200D-2642","k":[40,50],"o":9},"woman-wrestling":{"a":"Woman Wrestling","b":"1F93C-200D-2640-FE0F","c":"1F93C-200D-2640","k":[40,49],"o":9},"water_polo":{"skin_variations":{"1F3FB":{"unified":"1F93D-1F3FB","non_qualified":null,"image":"1f93d-1f3fb.png","sheet_x":41,"sheet_y":13,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F93D-1F3FC","non_qualified":null,"image":"1f93d-1f3fc.png","sheet_x":41,"sheet_y":14,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F93D-1F3FD","non_qualified":null,"image":"1f93d-1f3fd.png","sheet_x":41,"sheet_y":15,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F93D-1F3FE","non_qualified":null,"image":"1f93d-1f3fe.png","sheet_x":41,"sheet_y":16,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F93D-1F3FF","non_qualified":null,"image":"1f93d-1f3ff.png","sheet_x":41,"sheet_y":17,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Water Polo","b":"1F93D","k":[41,12],"o":9},"man-playing-water-polo":{"skin_variations":{"1F3FB":{"unified":"1F93D-1F3FB-200D-2642-FE0F","non_qualified":"1F93D-1F3FB-200D-2642","image":"1f93d-1f3fb-200d-2642-fe0f.png","sheet_x":41,"sheet_y":7,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F93D-1F3FC-200D-2642-FE0F","non_qualified":"1F93D-1F3FC-200D-2642","image":"1f93d-1f3fc-200d-2642-fe0f.png","sheet_x":41,"sheet_y":8,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F93D-1F3FD-200D-2642-FE0F","non_qualified":"1F93D-1F3FD-200D-2642","image":"1f93d-1f3fd-200d-2642-fe0f.png","sheet_x":41,"sheet_y":9,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F93D-1F3FE-200D-2642-FE0F","non_qualified":"1F93D-1F3FE-200D-2642","image":"1f93d-1f3fe-200d-2642-fe0f.png","sheet_x":41,"sheet_y":10,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F93D-1F3FF-200D-2642-FE0F","non_qualified":"1F93D-1F3FF-200D-2642","image":"1f93d-1f3ff-200d-2642-fe0f.png","sheet_x":41,"sheet_y":11,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Man Playing Water Polo","b":"1F93D-200D-2642-FE0F","c":"1F93D-200D-2642","k":[41,6],"o":9},"woman-playing-water-polo":{"skin_variations":{"1F3FB":{"unified":"1F93D-1F3FB-200D-2640-FE0F","non_qualified":"1F93D-1F3FB-200D-2640","image":"1f93d-1f3fb-200d-2640-fe0f.png","sheet_x":41,"sheet_y":1,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F93D-1F3FC-200D-2640-FE0F","non_qualified":"1F93D-1F3FC-200D-2640","image":"1f93d-1f3fc-200d-2640-fe0f.png","sheet_x":41,"sheet_y":2,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F93D-1F3FD-200D-2640-FE0F","non_qualified":"1F93D-1F3FD-200D-2640","image":"1f93d-1f3fd-200d-2640-fe0f.png","sheet_x":41,"sheet_y":3,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F93D-1F3FE-200D-2640-FE0F","non_qualified":"1F93D-1F3FE-200D-2640","image":"1f93d-1f3fe-200d-2640-fe0f.png","sheet_x":41,"sheet_y":4,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F93D-1F3FF-200D-2640-FE0F","non_qualified":"1F93D-1F3FF-200D-2640","image":"1f93d-1f3ff-200d-2640-fe0f.png","sheet_x":41,"sheet_y":5,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Woman Playing Water Polo","b":"1F93D-200D-2640-FE0F","c":"1F93D-200D-2640","k":[41,0],"o":9},"handball":{"skin_variations":{"1F3FB":{"unified":"1F93E-1F3FB","non_qualified":null,"image":"1f93e-1f3fb.png","sheet_x":41,"sheet_y":31,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F93E-1F3FC","non_qualified":null,"image":"1f93e-1f3fc.png","sheet_x":41,"sheet_y":32,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F93E-1F3FD","non_qualified":null,"image":"1f93e-1f3fd.png","sheet_x":41,"sheet_y":33,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F93E-1F3FE","non_qualified":null,"image":"1f93e-1f3fe.png","sheet_x":41,"sheet_y":34,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F93E-1F3FF","non_qualified":null,"image":"1f93e-1f3ff.png","sheet_x":41,"sheet_y":35,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Handball","b":"1F93E","k":[41,30],"o":9},"man-playing-handball":{"skin_variations":{"1F3FB":{"unified":"1F93E-1F3FB-200D-2642-FE0F","non_qualified":"1F93E-1F3FB-200D-2642","image":"1f93e-1f3fb-200d-2642-fe0f.png","sheet_x":41,"sheet_y":25,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F93E-1F3FC-200D-2642-FE0F","non_qualified":"1F93E-1F3FC-200D-2642","image":"1f93e-1f3fc-200d-2642-fe0f.png","sheet_x":41,"sheet_y":26,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F93E-1F3FD-200D-2642-FE0F","non_qualified":"1F93E-1F3FD-200D-2642","image":"1f93e-1f3fd-200d-2642-fe0f.png","sheet_x":41,"sheet_y":27,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F93E-1F3FE-200D-2642-FE0F","non_qualified":"1F93E-1F3FE-200D-2642","image":"1f93e-1f3fe-200d-2642-fe0f.png","sheet_x":41,"sheet_y":28,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F93E-1F3FF-200D-2642-FE0F","non_qualified":"1F93E-1F3FF-200D-2642","image":"1f93e-1f3ff-200d-2642-fe0f.png","sheet_x":41,"sheet_y":29,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Man Playing Handball","b":"1F93E-200D-2642-FE0F","c":"1F93E-200D-2642","k":[41,24],"o":9},"woman-playing-handball":{"skin_variations":{"1F3FB":{"unified":"1F93E-1F3FB-200D-2640-FE0F","non_qualified":"1F93E-1F3FB-200D-2640","image":"1f93e-1f3fb-200d-2640-fe0f.png","sheet_x":41,"sheet_y":19,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F93E-1F3FC-200D-2640-FE0F","non_qualified":"1F93E-1F3FC-200D-2640","image":"1f93e-1f3fc-200d-2640-fe0f.png","sheet_x":41,"sheet_y":20,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F93E-1F3FD-200D-2640-FE0F","non_qualified":"1F93E-1F3FD-200D-2640","image":"1f93e-1f3fd-200d-2640-fe0f.png","sheet_x":41,"sheet_y":21,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F93E-1F3FE-200D-2640-FE0F","non_qualified":"1F93E-1F3FE-200D-2640","image":"1f93e-1f3fe-200d-2640-fe0f.png","sheet_x":41,"sheet_y":22,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F93E-1F3FF-200D-2640-FE0F","non_qualified":"1F93E-1F3FF-200D-2640","image":"1f93e-1f3ff-200d-2640-fe0f.png","sheet_x":41,"sheet_y":23,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Woman Playing Handball","b":"1F93E-200D-2640-FE0F","c":"1F93E-200D-2640","k":[41,18],"o":9},"juggling":{"skin_variations":{"1F3FB":{"unified":"1F939-1F3FB","non_qualified":null,"image":"1f939-1f3fb.png","sheet_x":40,"sheet_y":43,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F939-1F3FC","non_qualified":null,"image":"1f939-1f3fc.png","sheet_x":40,"sheet_y":44,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F939-1F3FD","non_qualified":null,"image":"1f939-1f3fd.png","sheet_x":40,"sheet_y":45,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F939-1F3FE","non_qualified":null,"image":"1f939-1f3fe.png","sheet_x":40,"sheet_y":46,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F939-1F3FF","non_qualified":null,"image":"1f939-1f3ff.png","sheet_x":40,"sheet_y":47,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Juggling","b":"1F939","k":[40,42],"o":9},"man-juggling":{"skin_variations":{"1F3FB":{"unified":"1F939-1F3FB-200D-2642-FE0F","non_qualified":"1F939-1F3FB-200D-2642","image":"1f939-1f3fb-200d-2642-fe0f.png","sheet_x":40,"sheet_y":37,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F939-1F3FC-200D-2642-FE0F","non_qualified":"1F939-1F3FC-200D-2642","image":"1f939-1f3fc-200d-2642-fe0f.png","sheet_x":40,"sheet_y":38,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F939-1F3FD-200D-2642-FE0F","non_qualified":"1F939-1F3FD-200D-2642","image":"1f939-1f3fd-200d-2642-fe0f.png","sheet_x":40,"sheet_y":39,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F939-1F3FE-200D-2642-FE0F","non_qualified":"1F939-1F3FE-200D-2642","image":"1f939-1f3fe-200d-2642-fe0f.png","sheet_x":40,"sheet_y":40,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F939-1F3FF-200D-2642-FE0F","non_qualified":"1F939-1F3FF-200D-2642","image":"1f939-1f3ff-200d-2642-fe0f.png","sheet_x":40,"sheet_y":41,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Man Juggling","b":"1F939-200D-2642-FE0F","c":"1F939-200D-2642","k":[40,36],"o":9},"woman-juggling":{"skin_variations":{"1F3FB":{"unified":"1F939-1F3FB-200D-2640-FE0F","non_qualified":"1F939-1F3FB-200D-2640","image":"1f939-1f3fb-200d-2640-fe0f.png","sheet_x":40,"sheet_y":31,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FC":{"unified":"1F939-1F3FC-200D-2640-FE0F","non_qualified":"1F939-1F3FC-200D-2640","image":"1f939-1f3fc-200d-2640-fe0f.png","sheet_x":40,"sheet_y":32,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FD":{"unified":"1F939-1F3FD-200D-2640-FE0F","non_qualified":"1F939-1F3FD-200D-2640","image":"1f939-1f3fd-200d-2640-fe0f.png","sheet_x":40,"sheet_y":33,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FE":{"unified":"1F939-1F3FE-200D-2640-FE0F","non_qualified":"1F939-1F3FE-200D-2640","image":"1f939-1f3fe-200d-2640-fe0f.png","sheet_x":40,"sheet_y":34,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false},"1F3FF":{"unified":"1F939-1F3FF-200D-2640-FE0F","non_qualified":"1F939-1F3FF-200D-2640","image":"1f939-1f3ff-200d-2640-fe0f.png","sheet_x":40,"sheet_y":35,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":false,"has_img_messenger":false}},"a":"Woman Juggling","b":"1F939-200D-2640-FE0F","c":"1F939-200D-2640","k":[40,30],"o":9},"couple":{"a":"Man and Woman Holding Hands","b":"1F46B","j":["pair","people","human","love","date","dating","like","affection","valentines","marriage"],"k":[20,30],"n":["man_and_woman_holding_hands"]},"two_men_holding_hands":{"a":"Two Men Holding Hands","b":"1F46C","j":["pair","couple","love","like","bromance","friendship","people","human"],"k":[20,31]},"two_women_holding_hands":{"a":"Two Women Holding Hands","b":"1F46D","j":["pair","friendship","couple","love","like","female","people","human"],"k":[20,32]},"couplekiss":{"obsoleted_by":"1F469-200D-2764-FE0F-200D-1F48B-200D-1F468","a":"Kiss","b":"1F48F","k":[24,41]},"woman-kiss-man":{"obsoletes":"1F48F","a":"Woman Kiss Man","b":"1F469-200D-2764-FE0F-200D-1F48B-200D-1F468","c":"1F469-200D-2764-200D-1F48B-200D-1F468","k":[20,21]},"man-kiss-man":{"a":"Man Kiss Man","b":"1F468-200D-2764-FE0F-200D-1F48B-200D-1F468","c":"1F468-200D-2764-200D-1F48B-200D-1F468","k":[18,10]},"woman-kiss-woman":{"a":"Woman Kiss Woman","b":"1F469-200D-2764-FE0F-200D-1F48B-200D-1F469","c":"1F469-200D-2764-200D-1F48B-200D-1F469","k":[20,22]},"couple_with_heart":{"obsoleted_by":"1F469-200D-2764-FE0F-200D-1F468","a":"Couple with Heart","b":"1F491","k":[24,43]},"woman-heart-man":{"obsoletes":"1F491","a":"Woman Heart Man","b":"1F469-200D-2764-FE0F-200D-1F468","c":"1F469-200D-2764-200D-1F468","k":[20,19]},"man-heart-man":{"a":"Man Heart Man","b":"1F468-200D-2764-FE0F-200D-1F468","c":"1F468-200D-2764-200D-1F468","k":[18,9]},"woman-heart-woman":{"a":"Woman Heart Woman","b":"1F469-200D-2764-FE0F-200D-1F469","c":"1F469-200D-2764-200D-1F469","k":[20,20]},"family":{"obsoleted_by":"1F468-200D-1F469-200D-1F466","a":"Family","b":"1F46A","k":[20,29],"n":["man-woman-boy"]},"man-woman-boy":{"obsoletes":"1F46A","a":"Man Woman Boy","b":"1F468-200D-1F469-200D-1F466","k":[17,2],"n":["family"]},"man-woman-girl":{"a":"Man Woman Girl","b":"1F468-200D-1F469-200D-1F467","k":[17,4]},"man-woman-girl-boy":{"a":"Man Woman Girl Boy","b":"1F468-200D-1F469-200D-1F467-200D-1F466","k":[17,5]},"man-woman-boy-boy":{"a":"Man Woman Boy Boy","b":"1F468-200D-1F469-200D-1F466-200D-1F466","k":[17,3]},"man-woman-girl-girl":{"a":"Man Woman Girl Girl","b":"1F468-200D-1F469-200D-1F467-200D-1F467","k":[17,6]},"man-man-boy":{"a":"Man Man Boy","b":"1F468-200D-1F468-200D-1F466","k":[16,49]},"man-man-girl":{"a":"Man Man Girl","b":"1F468-200D-1F468-200D-1F467","k":[16,51]},"man-man-girl-boy":{"a":"Man Man Girl Boy","b":"1F468-200D-1F468-200D-1F467-200D-1F466","k":[17,0]},"man-man-boy-boy":{"a":"Man Man Boy Boy","b":"1F468-200D-1F468-200D-1F466-200D-1F466","k":[16,50]},"man-man-girl-girl":{"a":"Man Man Girl Girl","b":"1F468-200D-1F468-200D-1F467-200D-1F467","k":[17,1]},"woman-woman-boy":{"a":"Woman Woman Boy","b":"1F469-200D-1F469-200D-1F466","k":[19,12]},"woman-woman-girl":{"a":"Woman Woman Girl","b":"1F469-200D-1F469-200D-1F467","k":[19,14]},"woman-woman-girl-boy":{"a":"Woman Woman Girl Boy","b":"1F469-200D-1F469-200D-1F467-200D-1F466","k":[19,15]},"woman-woman-boy-boy":{"a":"Woman Woman Boy Boy","b":"1F469-200D-1F469-200D-1F466-200D-1F466","k":[19,13]},"woman-woman-girl-girl":{"a":"Woman Woman Girl Girl","b":"1F469-200D-1F469-200D-1F467-200D-1F467","k":[19,16]},"man-boy":{"a":"Man Boy","b":"1F468-200D-1F466","k":[16,45]},"man-boy-boy":{"a":"Man Boy Boy","b":"1F468-200D-1F466-200D-1F466","k":[16,44]},"man-girl":{"a":"Man Girl","b":"1F468-200D-1F467","k":[16,48]},"man-girl-boy":{"a":"Man Girl Boy","b":"1F468-200D-1F467-200D-1F466","k":[16,46]},"man-girl-girl":{"a":"Man Girl Girl","b":"1F468-200D-1F467-200D-1F467","k":[16,47]},"woman-boy":{"a":"Woman Boy","b":"1F469-200D-1F466","k":[19,8]},"woman-boy-boy":{"a":"Woman Boy Boy","b":"1F469-200D-1F466-200D-1F466","k":[19,7]},"woman-girl":{"a":"Woman Girl","b":"1F469-200D-1F467","k":[19,11]},"woman-girl-boy":{"a":"Woman Girl Boy","b":"1F469-200D-1F467-200D-1F466","k":[19,9]},"woman-girl-girl":{"a":"Woman Girl Girl","b":"1F469-200D-1F467-200D-1F467","k":[19,10]},"selfie":{"skin_variations":{"1F3FB":{"unified":"1F933-1F3FB","non_qualified":null,"image":"1f933-1f3fb.png","sheet_x":39,"sheet_y":23,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F933-1F3FC","non_qualified":null,"image":"1f933-1f3fc.png","sheet_x":39,"sheet_y":24,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F933-1F3FD","non_qualified":null,"image":"1f933-1f3fd.png","sheet_x":39,"sheet_y":25,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F933-1F3FE","non_qualified":null,"image":"1f933-1f3fe.png","sheet_x":39,"sheet_y":26,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F933-1F3FF","non_qualified":null,"image":"1f933-1f3ff.png","sheet_x":39,"sheet_y":27,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Selfie","b":"1F933","j":["camera","phone"],"k":[39,22],"o":9},"muscle":{"skin_variations":{"1F3FB":{"unified":"1F4AA-1F3FB","non_qualified":null,"image":"1f4aa-1f3fb.png","sheet_x":25,"sheet_y":17,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F4AA-1F3FC","non_qualified":null,"image":"1f4aa-1f3fc.png","sheet_x":25,"sheet_y":18,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F4AA-1F3FD","non_qualified":null,"image":"1f4aa-1f3fd.png","sheet_x":25,"sheet_y":19,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F4AA-1F3FE","non_qualified":null,"image":"1f4aa-1f3fe.png","sheet_x":25,"sheet_y":20,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F4AA-1F3FF","non_qualified":null,"image":"1f4aa-1f3ff.png","sheet_x":25,"sheet_y":21,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Flexed Biceps","b":"1F4AA","j":["arm","flex","hand","summer","strong","biceps"],"k":[25,16]},"point_left":{"skin_variations":{"1F3FB":{"unified":"1F448-1F3FB","non_qualified":null,"image":"1f448-1f3fb.png","sheet_x":14,"sheet_y":20,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F448-1F3FC","non_qualified":null,"image":"1f448-1f3fc.png","sheet_x":14,"sheet_y":21,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F448-1F3FD","non_qualified":null,"image":"1f448-1f3fd.png","sheet_x":14,"sheet_y":22,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F448-1F3FE","non_qualified":null,"image":"1f448-1f3fe.png","sheet_x":14,"sheet_y":23,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F448-1F3FF","non_qualified":null,"image":"1f448-1f3ff.png","sheet_x":14,"sheet_y":24,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"White Left Pointing Backhand Index","b":"1F448","j":["direction","fingers","hand","left"],"k":[14,19]},"point_right":{"skin_variations":{"1F3FB":{"unified":"1F449-1F3FB","non_qualified":null,"image":"1f449-1f3fb.png","sheet_x":14,"sheet_y":26,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F449-1F3FC","non_qualified":null,"image":"1f449-1f3fc.png","sheet_x":14,"sheet_y":27,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F449-1F3FD","non_qualified":null,"image":"1f449-1f3fd.png","sheet_x":14,"sheet_y":28,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F449-1F3FE","non_qualified":null,"image":"1f449-1f3fe.png","sheet_x":14,"sheet_y":29,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F449-1F3FF","non_qualified":null,"image":"1f449-1f3ff.png","sheet_x":14,"sheet_y":30,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"White Right Pointing Backhand Index","b":"1F449","j":["fingers","hand","direction","right"],"k":[14,25]},"point_up":{"skin_variations":{"1F3FB":{"unified":"261D-1F3FB","non_qualified":null,"image":"261d-1f3fb.png","sheet_x":47,"sheet_y":27,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"261D-1F3FC","non_qualified":null,"image":"261d-1f3fc.png","sheet_x":47,"sheet_y":28,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"261D-1F3FD","non_qualified":null,"image":"261d-1f3fd.png","sheet_x":47,"sheet_y":29,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"261D-1F3FE","non_qualified":null,"image":"261d-1f3fe.png","sheet_x":47,"sheet_y":30,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"261D-1F3FF","non_qualified":null,"image":"261d-1f3ff.png","sheet_x":47,"sheet_y":31,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"White Up Pointing Index","b":"261D-FE0F","c":"261D","j":["hand","fingers","direction","up"],"k":[47,26],"o":1},"point_up_2":{"skin_variations":{"1F3FB":{"unified":"1F446-1F3FB","non_qualified":null,"image":"1f446-1f3fb.png","sheet_x":14,"sheet_y":8,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F446-1F3FC","non_qualified":null,"image":"1f446-1f3fc.png","sheet_x":14,"sheet_y":9,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F446-1F3FD","non_qualified":null,"image":"1f446-1f3fd.png","sheet_x":14,"sheet_y":10,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F446-1F3FE","non_qualified":null,"image":"1f446-1f3fe.png","sheet_x":14,"sheet_y":11,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F446-1F3FF","non_qualified":null,"image":"1f446-1f3ff.png","sheet_x":14,"sheet_y":12,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"White Up Pointing Backhand Index","b":"1F446","j":["fingers","hand","direction","up"],"k":[14,7]},"middle_finger":{"skin_variations":{"1F3FB":{"unified":"1F595-1F3FB","non_qualified":null,"image":"1f595-1f3fb.png","sheet_x":29,"sheet_y":39,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F595-1F3FC","non_qualified":null,"image":"1f595-1f3fc.png","sheet_x":29,"sheet_y":40,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F595-1F3FD","non_qualified":null,"image":"1f595-1f3fd.png","sheet_x":29,"sheet_y":41,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F595-1F3FE","non_qualified":null,"image":"1f595-1f3fe.png","sheet_x":29,"sheet_y":42,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F595-1F3FF","non_qualified":null,"image":"1f595-1f3ff.png","sheet_x":29,"sheet_y":43,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Reversed Hand with Middle Finger Extended","b":"1F595","k":[29,38],"n":["reversed_hand_with_middle_finger_extended"],"o":7},"point_down":{"skin_variations":{"1F3FB":{"unified":"1F447-1F3FB","non_qualified":null,"image":"1f447-1f3fb.png","sheet_x":14,"sheet_y":14,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F447-1F3FC","non_qualified":null,"image":"1f447-1f3fc.png","sheet_x":14,"sheet_y":15,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F447-1F3FD","non_qualified":null,"image":"1f447-1f3fd.png","sheet_x":14,"sheet_y":16,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F447-1F3FE","non_qualified":null,"image":"1f447-1f3fe.png","sheet_x":14,"sheet_y":17,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F447-1F3FF","non_qualified":null,"image":"1f447-1f3ff.png","sheet_x":14,"sheet_y":18,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"White Down Pointing Backhand Index","b":"1F447","j":["fingers","hand","direction","down"],"k":[14,13]},"v":{"skin_variations":{"1F3FB":{"unified":"270C-1F3FB","non_qualified":null,"image":"270c-1f3fb.png","sheet_x":49,"sheet_y":31,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"270C-1F3FC","non_qualified":null,"image":"270c-1f3fc.png","sheet_x":49,"sheet_y":32,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"270C-1F3FD","non_qualified":null,"image":"270c-1f3fd.png","sheet_x":49,"sheet_y":33,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"270C-1F3FE","non_qualified":null,"image":"270c-1f3fe.png","sheet_x":49,"sheet_y":34,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"270C-1F3FF","non_qualified":null,"image":"270c-1f3ff.png","sheet_x":49,"sheet_y":35,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Victory Hand","b":"270C-FE0F","c":"270C","j":["fingers","ohyeah","hand","peace","victory","two"],"k":[49,30],"o":1},"crossed_fingers":{"skin_variations":{"1F3FB":{"unified":"1F91E-1F3FB","non_qualified":null,"image":"1f91e-1f3fb.png","sheet_x":38,"sheet_y":12,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F91E-1F3FC","non_qualified":null,"image":"1f91e-1f3fc.png","sheet_x":38,"sheet_y":13,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F91E-1F3FD","non_qualified":null,"image":"1f91e-1f3fd.png","sheet_x":38,"sheet_y":14,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F91E-1F3FE","non_qualified":null,"image":"1f91e-1f3fe.png","sheet_x":38,"sheet_y":15,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F91E-1F3FF","non_qualified":null,"image":"1f91e-1f3ff.png","sheet_x":38,"sheet_y":16,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Hand with Index and Middle Fingers Crossed","b":"1F91E","j":["good","lucky"],"k":[38,11],"n":["hand_with_index_and_middle_fingers_crossed"],"o":9},"spock-hand":{"skin_variations":{"1F3FB":{"unified":"1F596-1F3FB","non_qualified":null,"image":"1f596-1f3fb.png","sheet_x":29,"sheet_y":45,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F596-1F3FC","non_qualified":null,"image":"1f596-1f3fc.png","sheet_x":29,"sheet_y":46,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F596-1F3FD","non_qualified":null,"image":"1f596-1f3fd.png","sheet_x":29,"sheet_y":47,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F596-1F3FE","non_qualified":null,"image":"1f596-1f3fe.png","sheet_x":29,"sheet_y":48,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F596-1F3FF","non_qualified":null,"image":"1f596-1f3ff.png","sheet_x":29,"sheet_y":49,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Raised Hand with Part Between Middle and Ring Fingers","b":"1F596","k":[29,44],"o":7},"the_horns":{"skin_variations":{"1F3FB":{"unified":"1F918-1F3FB","non_qualified":null,"image":"1f918-1f3fb.png","sheet_x":37,"sheet_y":33,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F918-1F3FC","non_qualified":null,"image":"1f918-1f3fc.png","sheet_x":37,"sheet_y":34,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F918-1F3FD","non_qualified":null,"image":"1f918-1f3fd.png","sheet_x":37,"sheet_y":35,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F918-1F3FE","non_qualified":null,"image":"1f918-1f3fe.png","sheet_x":37,"sheet_y":36,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F918-1F3FF","non_qualified":null,"image":"1f918-1f3ff.png","sheet_x":37,"sheet_y":37,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Sign of the Horns","b":"1F918","k":[37,32],"n":["sign_of_the_horns"],"o":8},"call_me_hand":{"skin_variations":{"1F3FB":{"unified":"1F919-1F3FB","non_qualified":null,"image":"1f919-1f3fb.png","sheet_x":37,"sheet_y":39,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F919-1F3FC","non_qualified":null,"image":"1f919-1f3fc.png","sheet_x":37,"sheet_y":40,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F919-1F3FD","non_qualified":null,"image":"1f919-1f3fd.png","sheet_x":37,"sheet_y":41,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F919-1F3FE","non_qualified":null,"image":"1f919-1f3fe.png","sheet_x":37,"sheet_y":42,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F919-1F3FF","non_qualified":null,"image":"1f919-1f3ff.png","sheet_x":37,"sheet_y":43,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Call Me Hand","b":"1F919","j":["hands","gesture"],"k":[37,38],"o":9},"raised_hand_with_fingers_splayed":{"skin_variations":{"1F3FB":{"unified":"1F590-1F3FB","non_qualified":null,"image":"1f590-1f3fb.png","sheet_x":29,"sheet_y":33,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F590-1F3FC","non_qualified":null,"image":"1f590-1f3fc.png","sheet_x":29,"sheet_y":34,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F590-1F3FD","non_qualified":null,"image":"1f590-1f3fd.png","sheet_x":29,"sheet_y":35,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F590-1F3FE","non_qualified":null,"image":"1f590-1f3fe.png","sheet_x":29,"sheet_y":36,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F590-1F3FF","non_qualified":null,"image":"1f590-1f3ff.png","sheet_x":29,"sheet_y":37,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Raised Hand with Fingers Splayed","b":"1F590-FE0F","c":"1F590","j":["hand","fingers","palm"],"k":[29,32],"o":7},"hand":{"skin_variations":{"1F3FB":{"unified":"270B-1F3FB","non_qualified":null,"image":"270b-1f3fb.png","sheet_x":49,"sheet_y":25,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"270B-1F3FC","non_qualified":null,"image":"270b-1f3fc.png","sheet_x":49,"sheet_y":26,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"270B-1F3FD","non_qualified":null,"image":"270b-1f3fd.png","sheet_x":49,"sheet_y":27,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"270B-1F3FE","non_qualified":null,"image":"270b-1f3fe.png","sheet_x":49,"sheet_y":28,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"270B-1F3FF","non_qualified":null,"image":"270b-1f3ff.png","sheet_x":49,"sheet_y":29,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Raised Hand","b":"270B","k":[49,24],"n":["raised_hand"]},"ok_hand":{"skin_variations":{"1F3FB":{"unified":"1F44C-1F3FB","non_qualified":null,"image":"1f44c-1f3fb.png","sheet_x":14,"sheet_y":44,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F44C-1F3FC","non_qualified":null,"image":"1f44c-1f3fc.png","sheet_x":14,"sheet_y":45,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F44C-1F3FD","non_qualified":null,"image":"1f44c-1f3fd.png","sheet_x":14,"sheet_y":46,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F44C-1F3FE","non_qualified":null,"image":"1f44c-1f3fe.png","sheet_x":14,"sheet_y":47,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F44C-1F3FF","non_qualified":null,"image":"1f44c-1f3ff.png","sheet_x":14,"sheet_y":48,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Ok Hand Sign","b":"1F44C","j":["fingers","limbs","perfect","ok","okay"],"k":[14,43]},"+1":{"skin_variations":{"1F3FB":{"unified":"1F44D-1F3FB","non_qualified":null,"image":"1f44d-1f3fb.png","sheet_x":14,"sheet_y":50,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F44D-1F3FC","non_qualified":null,"image":"1f44d-1f3fc.png","sheet_x":14,"sheet_y":51,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F44D-1F3FD","non_qualified":null,"image":"1f44d-1f3fd.png","sheet_x":15,"sheet_y":0,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F44D-1F3FE","non_qualified":null,"image":"1f44d-1f3fe.png","sheet_x":15,"sheet_y":1,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F44D-1F3FF","non_qualified":null,"image":"1f44d-1f3ff.png","sheet_x":15,"sheet_y":2,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Thumbs Up Sign","b":"1F44D","j":["thumbsup","yes","awesome","good","agree","accept","cool","hand","like"],"k":[14,49],"n":["thumbsup"]},"-1":{"skin_variations":{"1F3FB":{"unified":"1F44E-1F3FB","non_qualified":null,"image":"1f44e-1f3fb.png","sheet_x":15,"sheet_y":4,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F44E-1F3FC","non_qualified":null,"image":"1f44e-1f3fc.png","sheet_x":15,"sheet_y":5,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F44E-1F3FD","non_qualified":null,"image":"1f44e-1f3fd.png","sheet_x":15,"sheet_y":6,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F44E-1F3FE","non_qualified":null,"image":"1f44e-1f3fe.png","sheet_x":15,"sheet_y":7,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F44E-1F3FF","non_qualified":null,"image":"1f44e-1f3ff.png","sheet_x":15,"sheet_y":8,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Thumbs Down Sign","b":"1F44E","j":["thumbsdown","no","dislike","hand"],"k":[15,3],"n":["thumbsdown"]},"fist":{"skin_variations":{"1F3FB":{"unified":"270A-1F3FB","non_qualified":null,"image":"270a-1f3fb.png","sheet_x":49,"sheet_y":19,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"270A-1F3FC","non_qualified":null,"image":"270a-1f3fc.png","sheet_x":49,"sheet_y":20,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"270A-1F3FD","non_qualified":null,"image":"270a-1f3fd.png","sheet_x":49,"sheet_y":21,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"270A-1F3FE","non_qualified":null,"image":"270a-1f3fe.png","sheet_x":49,"sheet_y":22,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"270A-1F3FF","non_qualified":null,"image":"270a-1f3ff.png","sheet_x":49,"sheet_y":23,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Raised Fist","b":"270A","j":["fingers","hand","grasp"],"k":[49,18]},"facepunch":{"skin_variations":{"1F3FB":{"unified":"1F44A-1F3FB","non_qualified":null,"image":"1f44a-1f3fb.png","sheet_x":14,"sheet_y":32,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F44A-1F3FC","non_qualified":null,"image":"1f44a-1f3fc.png","sheet_x":14,"sheet_y":33,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F44A-1F3FD","non_qualified":null,"image":"1f44a-1f3fd.png","sheet_x":14,"sheet_y":34,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F44A-1F3FE","non_qualified":null,"image":"1f44a-1f3fe.png","sheet_x":14,"sheet_y":35,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F44A-1F3FF","non_qualified":null,"image":"1f44a-1f3ff.png","sheet_x":14,"sheet_y":36,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Fisted Hand Sign","b":"1F44A","j":["angry","violence","fist","hit","attack","hand"],"k":[14,31],"n":["punch"]},"left-facing_fist":{"skin_variations":{"1F3FB":{"unified":"1F91B-1F3FB","non_qualified":null,"image":"1f91b-1f3fb.png","sheet_x":37,"sheet_y":51,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F91B-1F3FC","non_qualified":null,"image":"1f91b-1f3fc.png","sheet_x":38,"sheet_y":0,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F91B-1F3FD","non_qualified":null,"image":"1f91b-1f3fd.png","sheet_x":38,"sheet_y":1,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F91B-1F3FE","non_qualified":null,"image":"1f91b-1f3fe.png","sheet_x":38,"sheet_y":2,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F91B-1F3FF","non_qualified":null,"image":"1f91b-1f3ff.png","sheet_x":38,"sheet_y":3,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Left-Facing Fist","b":"1F91B","k":[37,50],"o":9},"right-facing_fist":{"skin_variations":{"1F3FB":{"unified":"1F91C-1F3FB","non_qualified":null,"image":"1f91c-1f3fb.png","sheet_x":38,"sheet_y":5,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F91C-1F3FC","non_qualified":null,"image":"1f91c-1f3fc.png","sheet_x":38,"sheet_y":6,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F91C-1F3FD","non_qualified":null,"image":"1f91c-1f3fd.png","sheet_x":38,"sheet_y":7,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F91C-1F3FE","non_qualified":null,"image":"1f91c-1f3fe.png","sheet_x":38,"sheet_y":8,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F91C-1F3FF","non_qualified":null,"image":"1f91c-1f3ff.png","sheet_x":38,"sheet_y":9,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Right-Facing Fist","b":"1F91C","k":[38,4],"o":9},"raised_back_of_hand":{"skin_variations":{"1F3FB":{"unified":"1F91A-1F3FB","non_qualified":null,"image":"1f91a-1f3fb.png","sheet_x":37,"sheet_y":45,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F91A-1F3FC","non_qualified":null,"image":"1f91a-1f3fc.png","sheet_x":37,"sheet_y":46,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F91A-1F3FD","non_qualified":null,"image":"1f91a-1f3fd.png","sheet_x":37,"sheet_y":47,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F91A-1F3FE","non_qualified":null,"image":"1f91a-1f3fe.png","sheet_x":37,"sheet_y":48,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F91A-1F3FF","non_qualified":null,"image":"1f91a-1f3ff.png","sheet_x":37,"sheet_y":49,"added_in":"9.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Raised Back of Hand","b":"1F91A","j":["fingers","raised","backhand"],"k":[37,44],"o":9},"wave":{"skin_variations":{"1F3FB":{"unified":"1F44B-1F3FB","non_qualified":null,"image":"1f44b-1f3fb.png","sheet_x":14,"sheet_y":38,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F44B-1F3FC","non_qualified":null,"image":"1f44b-1f3fc.png","sheet_x":14,"sheet_y":39,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F44B-1F3FD","non_qualified":null,"image":"1f44b-1f3fd.png","sheet_x":14,"sheet_y":40,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F44B-1F3FE","non_qualified":null,"image":"1f44b-1f3fe.png","sheet_x":14,"sheet_y":41,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F44B-1F3FF","non_qualified":null,"image":"1f44b-1f3ff.png","sheet_x":14,"sheet_y":42,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Waving Hand Sign","b":"1F44B","j":["hands","gesture","goodbye","solong","farewell","hello","hi","palm"],"k":[14,37]},"i_love_you_hand_sign":{"skin_variations":{"1F3FB":{"unified":"1F91F-1F3FB","non_qualified":null,"image":"1f91f-1f3fb.png","sheet_x":38,"sheet_y":18,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F91F-1F3FC","non_qualified":null,"image":"1f91f-1f3fc.png","sheet_x":38,"sheet_y":19,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F91F-1F3FD","non_qualified":null,"image":"1f91f-1f3fd.png","sheet_x":38,"sheet_y":20,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F91F-1F3FE","non_qualified":null,"image":"1f91f-1f3fe.png","sheet_x":38,"sheet_y":21,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F91F-1F3FF","non_qualified":null,"image":"1f91f-1f3ff.png","sheet_x":38,"sheet_y":22,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"I Love You Hand Sign","b":"1F91F","k":[38,17],"o":10},"writing_hand":{"skin_variations":{"1F3FB":{"unified":"270D-1F3FB","non_qualified":null,"image":"270d-1f3fb.png","sheet_x":49,"sheet_y":37,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"270D-1F3FC","non_qualified":null,"image":"270d-1f3fc.png","sheet_x":49,"sheet_y":38,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"270D-1F3FD","non_qualified":null,"image":"270d-1f3fd.png","sheet_x":49,"sheet_y":39,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"270D-1F3FE","non_qualified":null,"image":"270d-1f3fe.png","sheet_x":49,"sheet_y":40,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"270D-1F3FF","non_qualified":null,"image":"270d-1f3ff.png","sheet_x":49,"sheet_y":41,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Writing Hand","b":"270D-FE0F","c":"270D","j":["lower_left_ballpoint_pen","stationery","write","compose"],"k":[49,36],"o":1},"clap":{"skin_variations":{"1F3FB":{"unified":"1F44F-1F3FB","non_qualified":null,"image":"1f44f-1f3fb.png","sheet_x":15,"sheet_y":10,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F44F-1F3FC","non_qualified":null,"image":"1f44f-1f3fc.png","sheet_x":15,"sheet_y":11,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F44F-1F3FD","non_qualified":null,"image":"1f44f-1f3fd.png","sheet_x":15,"sheet_y":12,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F44F-1F3FE","non_qualified":null,"image":"1f44f-1f3fe.png","sheet_x":15,"sheet_y":13,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F44F-1F3FF","non_qualified":null,"image":"1f44f-1f3ff.png","sheet_x":15,"sheet_y":14,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Clapping Hands Sign","b":"1F44F","j":["hands","praise","applause","congrats","yay"],"k":[15,9]},"open_hands":{"skin_variations":{"1F3FB":{"unified":"1F450-1F3FB","non_qualified":null,"image":"1f450-1f3fb.png","sheet_x":15,"sheet_y":16,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F450-1F3FC","non_qualified":null,"image":"1f450-1f3fc.png","sheet_x":15,"sheet_y":17,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F450-1F3FD","non_qualified":null,"image":"1f450-1f3fd.png","sheet_x":15,"sheet_y":18,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F450-1F3FE","non_qualified":null,"image":"1f450-1f3fe.png","sheet_x":15,"sheet_y":19,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F450-1F3FF","non_qualified":null,"image":"1f450-1f3ff.png","sheet_x":15,"sheet_y":20,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Open Hands Sign","b":"1F450","j":["fingers","butterfly","hands","open"],"k":[15,15]},"raised_hands":{"skin_variations":{"1F3FB":{"unified":"1F64C-1F3FB","non_qualified":null,"image":"1f64c-1f3fb.png","sheet_x":33,"sheet_y":13,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F64C-1F3FC","non_qualified":null,"image":"1f64c-1f3fc.png","sheet_x":33,"sheet_y":14,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F64C-1F3FD","non_qualified":null,"image":"1f64c-1f3fd.png","sheet_x":33,"sheet_y":15,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F64C-1F3FE","non_qualified":null,"image":"1f64c-1f3fe.png","sheet_x":33,"sheet_y":16,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F64C-1F3FF","non_qualified":null,"image":"1f64c-1f3ff.png","sheet_x":33,"sheet_y":17,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Person Raising Both Hands in Celebration","b":"1F64C","j":["gesture","hooray","yea","celebration","hands"],"k":[33,12]},"palms_up_together":{"skin_variations":{"1F3FB":{"unified":"1F932-1F3FB","non_qualified":null,"image":"1f932-1f3fb.png","sheet_x":39,"sheet_y":17,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FC":{"unified":"1F932-1F3FC","non_qualified":null,"image":"1f932-1f3fc.png","sheet_x":39,"sheet_y":18,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FD":{"unified":"1F932-1F3FD","non_qualified":null,"image":"1f932-1f3fd.png","sheet_x":39,"sheet_y":19,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FE":{"unified":"1F932-1F3FE","non_qualified":null,"image":"1f932-1f3fe.png","sheet_x":39,"sheet_y":20,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false},"1F3FF":{"unified":"1F932-1F3FF","non_qualified":null,"image":"1f932-1f3ff.png","sheet_x":39,"sheet_y":21,"added_in":"10.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":false}},"a":"Palms Up Together","b":"1F932","k":[39,16],"o":10},"pray":{"skin_variations":{"1F3FB":{"unified":"1F64F-1F3FB","non_qualified":null,"image":"1f64f-1f3fb.png","sheet_x":34,"sheet_y":3,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F64F-1F3FC","non_qualified":null,"image":"1f64f-1f3fc.png","sheet_x":34,"sheet_y":4,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F64F-1F3FD","non_qualified":null,"image":"1f64f-1f3fd.png","sheet_x":34,"sheet_y":5,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F64F-1F3FE","non_qualified":null,"image":"1f64f-1f3fe.png","sheet_x":34,"sheet_y":6,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F64F-1F3FF","non_qualified":null,"image":"1f64f-1f3ff.png","sheet_x":34,"sheet_y":7,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Person with Folded Hands","b":"1F64F","j":["please","hope","wish","namaste","highfive"],"k":[34,2]},"handshake":{"a":"Handshake","b":"1F91D","j":["agreement","shake"],"k":[38,10],"o":9},"nail_care":{"skin_variations":{"1F3FB":{"unified":"1F485-1F3FB","non_qualified":null,"image":"1f485-1f3fb.png","sheet_x":23,"sheet_y":45,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F485-1F3FC","non_qualified":null,"image":"1f485-1f3fc.png","sheet_x":23,"sheet_y":46,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F485-1F3FD","non_qualified":null,"image":"1f485-1f3fd.png","sheet_x":23,"sheet_y":47,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F485-1F3FE","non_qualified":null,"image":"1f485-1f3fe.png","sheet_x":23,"sheet_y":48,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F485-1F3FF","non_qualified":null,"image":"1f485-1f3ff.png","sheet_x":23,"sheet_y":49,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Nail Polish","b":"1F485","j":["beauty","manicure","finger","fashion","nail"],"k":[23,44]},"ear":{"skin_variations":{"1F3FB":{"unified":"1F442-1F3FB","non_qualified":null,"image":"1f442-1f3fb.png","sheet_x":13,"sheet_y":46,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F442-1F3FC","non_qualified":null,"image":"1f442-1f3fc.png","sheet_x":13,"sheet_y":47,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F442-1F3FD","non_qualified":null,"image":"1f442-1f3fd.png","sheet_x":13,"sheet_y":48,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F442-1F3FE","non_qualified":null,"image":"1f442-1f3fe.png","sheet_x":13,"sheet_y":49,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F442-1F3FF","non_qualified":null,"image":"1f442-1f3ff.png","sheet_x":13,"sheet_y":50,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Ear","b":"1F442","j":["face","hear","sound","listen"],"k":[13,45]},"nose":{"skin_variations":{"1F3FB":{"unified":"1F443-1F3FB","non_qualified":null,"image":"1f443-1f3fb.png","sheet_x":14,"sheet_y":0,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FC":{"unified":"1F443-1F3FC","non_qualified":null,"image":"1f443-1f3fc.png","sheet_x":14,"sheet_y":1,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FD":{"unified":"1F443-1F3FD","non_qualified":null,"image":"1f443-1f3fd.png","sheet_x":14,"sheet_y":2,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FE":{"unified":"1F443-1F3FE","non_qualified":null,"image":"1f443-1f3fe.png","sheet_x":14,"sheet_y":3,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true},"1F3FF":{"unified":"1F443-1F3FF","non_qualified":null,"image":"1f443-1f3ff.png","sheet_x":14,"sheet_y":4,"added_in":"8.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"has_img_facebook":true,"has_img_messenger":true}},"a":"Nose","b":"1F443","j":["smell","sniff"],"k":[13,51]},"footprints":{"a":"Footprints","b":"1F463","j":["feet","tracking","walking","beach"],"k":[15,39]},"eyes":{"a":"Eyes","b":"1F440","j":["look","watch","stalk","peek","see"],"k":[13,42]},"eye":{"a":"Eye","b":"1F441-FE0F","c":"1F441","j":["face","look","see","watch","stare"],"k":[13,44],"o":7},"eye-in-speech-bubble":{"a":"Eye in Speech Bubble","b":"1F441-FE0F-200D-1F5E8-FE0F","k":[13,43],"o":7},"brain":{"a":"Brain","b":"1F9E0","k":[46,22],"o":10},"tongue":{"a":"Tongue","b":"1F445","j":["mouth","playful"],"k":[14,6]},"lips":{"a":"Mouth","b":"1F444","j":["mouth","kiss"],"k":[14,5]},"kiss":{"a":"Kiss Mark","b":"1F48B","j":["face","lips","love","like","affection","valentines"],"k":[24,37]},"cupid":{"a":"Heart with Arrow","b":"1F498","j":["love","like","heart","affection","valentines"],"k":[24,50]},"heart":{"a":"Heavy Black Heart","b":"2764-FE0F","c":"2764","j":["love","like","valentines"],"k":[50,8],"l":["<3"],"m":"<3","o":1},"heartbeat":{"a":"Beating Heart","b":"1F493","j":["love","like","affection","valentines","pink","heart"],"k":[24,45]},"broken_heart":{"a":"Broken Heart","b":"1F494","j":["sad","sorry","break","heart","heartbreak"],"k":[24,46],"l":[" Date: Mon, 15 Mar 2021 01:33:46 +0100 Subject: [PATCH 2/6] Update CHANGES.md to include the correct PR number --- CHANGES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index c6f98124d1..36ea9f5cfd 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -41,7 +41,7 @@ Improvements 🙌: - Sending is now queuing by room and not uniquely to the session - Improve Snackbar duration (#2929) - Improve sending message state (#2937) - - Update reactions to Unicode 13.1 (#1481) + - Update reactions to Unicode 13.1 (#2998) Bugfix 🐛: - Try to fix crash about UrlPreview (#2640) From 51650fd8994d7ad9722153cf38a2004372237d49 Mon Sep 17 00:00:00 2001 From: oogm Date: Tue, 16 Mar 2021 16:23:06 +0100 Subject: [PATCH 3/6] Add script to pull emojis from Unicode.org as a file --- tools/import_emojis.py | 77 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 tools/import_emojis.py diff --git a/tools/import_emojis.py b/tools/import_emojis.py new file mode 100644 index 0000000000..bdbade0e2d --- /dev/null +++ b/tools/import_emojis.py @@ -0,0 +1,77 @@ +import requests +import json +import re +from bs4 import BeautifulSoup + +# Create skeleton of the final json file as a python dictionary: +emoji_picker_datasource = { + "compressed": True, + "categories": [], + "emojis": {}, + "aliases": {} +} +emoji_picker_datasource_categories = emoji_picker_datasource["categories"] +emoji_picker_datasource_emojis = emoji_picker_datasource["emojis"] + + +# Get official emoji list from unicode.org (Emoji List, v13.1 at time of writing) +req = requests.get("https://unicode.org/emoji/charts/emoji-list.html") +soup = BeautifulSoup(req.content, 'html.parser') + +# Navigate to table +table = soup.body.table + +# Go over all rows +for row in table.find_all('tr'): + # Add "bigheads" rows to categories + if 'bighead' in next(row.children)['class']: + relevant_element = row.find('a') + category_id = relevant_element['name'] + category_name = relevant_element.text + emoji_picker_datasource_categories.append({ + "id": category_id, + "name": category_name, + "emojis": [] + }) + + # Add information in "rchars" rows to the last encountered category and emojis + if row.find('td', class_='code'): + # Get columns + cols = row.find_all('td') + no_element = cols[0] + code_element = cols[1] + sample_element = cols[2] + cldr_element = cols[3] + keywords_element = cols[4] + + # Extract information from columns + # Extract name and id + # => Remove spaces, colons and unicode-characters + emoji_name = cldr_element.text + emoji_id = cldr_element.text.lower() + emoji_id = re.sub(r'[^A-Za-z0-9 ]+', '', emoji_id, flags=re.UNICODE) # Only keep alphanumeric, space characters + emoji_id = emoji_id.strip() # Remove leading/trailing whitespaces + emoji_id = emoji_id.replace(' ', '-') + + # Extract emoji unicode-codepoint + emoji_code_raw = code_element.text + emoji_code_list = emoji_code_raw.split(" ") + emoji_code_list = [e[2:] for e in emoji_code_list] + emoji_code = "-".join(emoji_code_list) + + # Extract keywords + emoji_keywords = keywords_element.text.split(" | ") + + # Add the emoji-id to the last entry in "categories" + emoji_picker_datasource_categories[-1]["emojis"].append(emoji_id) + + # Add the emoji itself to the "emojis" dict + emoji_picker_datasource_emojis[emoji_id] = { + "a": emoji_name, + "b": emoji_code, + "j": emoji_keywords + } + +# Print result to file (overwrite previous), without escaping unicode characters +with open("../vector/src/main/res/raw/emoji_picker_datasource.json", "w") as outfile: + json.dump(emoji_picker_datasource, outfile, ensure_ascii=False) From 0fc102461c6b743368ebb4b416c150f84c18140d Mon Sep 17 00:00:00 2001 From: oogm Date: Fri, 19 Mar 2021 22:24:43 +0100 Subject: [PATCH 4/6] Update import_emojis.py to pull keywords from emojilib, update quick reactions --- tools/import_emojis.py | 39 ++++++++++++++++++- .../reactions/data/EmojiDataSource.kt | 12 +++--- .../main/res/raw/emoji_picker_datasource.json | 2 +- 3 files changed, 45 insertions(+), 8 deletions(-) diff --git a/tools/import_emojis.py b/tools/import_emojis.py index bdbade0e2d..6f204c23f2 100644 --- a/tools/import_emojis.py +++ b/tools/import_emojis.py @@ -1,3 +1,5 @@ +from collections import OrderedDict + import requests import json import re @@ -72,6 +74,41 @@ for row in table.find_all('tr'): "j": emoji_keywords } -# Print result to file (overwrite previous), without escaping unicode characters +# The keywords of unicode.org are usually quite sparse. +# There is no official specification of keywords beyond that, but muan/emojilib maintains a well maintained and +# established repository with additional keywords. We extend our list with the keywords from there. +# At the time of writing it had additional keyword information for all emojis except a few from the newest unicode 13.1. +req = requests.get("https://raw.githubusercontent.com/muan/emojilib/main/dist/emoji-en-US.json") +emojilib_data = json.loads(req.content) + +# We just go over all the official emojis from unicode, and add the keywords there +for emoji in emoji_picker_datasource_emojis: + emoji_name = emoji_picker_datasource_emojis[emoji]["a"] + emoji_code = emoji_picker_datasource_emojis[emoji]["b"] + + # Convert back to actual unicode emoji + emoji_unicode = ''.join(map(lambda s: chr(int(s, 16)), emoji_code.split("-"))) + + # Search for emoji in emojilib + if emoji_unicode in emojilib_data: + emoji_additional_keywords = emojilib_data[emoji_unicode] + elif emoji_unicode+chr(0xfe0f) in emojilib_data: + emoji_additional_keywords = emojilib_data[emoji_unicode+chr(0xfe0f)] + else: + print("No additional keywords for", emoji_unicode, emoji_picker_datasource_emojis[emoji]) + continue + + # If additional keywords exist, add them to emoji_picker_datasource_emojis + # Avoid duplicates and keep order. Put official unicode.com keywords first and extend up with emojilib ones. + new_keywords = OrderedDict.fromkeys(emoji_picker_datasource_emojis[emoji]["j"] + emoji_additional_keywords).keys() + # Remove the ones derived from the unicode name + new_keywords = new_keywords - {emoji.replace("-", "_")} - {emoji.replace("-", " ")} - {emoji_name} + # Write new keywords back + emoji_picker_datasource_emojis[emoji]["j"] = list(new_keywords) + +# Filter out components from unicode 13.1 (as they are not suitable for single-emoji reactions) +emoji_picker_datasource['categories'] = [x for x in emoji_picker_datasource['categories'] if x['id'] != 'component'] + +# Write result to file (overwrite previous), without escaping unicode characters with open("../vector/src/main/res/raw/emoji_picker_datasource.json", "w") as outfile: json.dump(emoji_picker_datasource, outfile, ensure_ascii=False) diff --git a/vector/src/main/java/im/vector/app/features/reactions/data/EmojiDataSource.kt b/vector/src/main/java/im/vector/app/features/reactions/data/EmojiDataSource.kt index 97f85ea1f5..96eda22eb9 100644 --- a/vector/src/main/java/im/vector/app/features/reactions/data/EmojiDataSource.kt +++ b/vector/src/main/java/im/vector/app/features/reactions/data/EmojiDataSource.kt @@ -100,12 +100,12 @@ class EmojiDataSource @Inject constructor( fun getQuickReactions(): List { if (quickReactions.isEmpty()) { listOf( - "+1", // 👍 - "-1", // 👎 - "grinning", // 😄 - "tada", // 🎉 - "confused", // 😕 - "heart", // ❤️ + "thumbs-up", // 👍 + "thumbs-down", // 👎 + "grinning-face-with-smiling-eyes", // 😄 + "party-popper", // 🎉 + "confused-face", // 😕 + "red-heart", // ❤️ "rocket", // 🚀 "eyes" // 👀 ) diff --git a/vector/src/main/res/raw/emoji_picker_datasource.json b/vector/src/main/res/raw/emoji_picker_datasource.json index bf33808f2f..e0314e9a77 100644 --- a/vector/src/main/res/raw/emoji_picker_datasource.json +++ b/vector/src/main/res/raw/emoji_picker_datasource.json @@ -1 +1 @@ -{"compressed": true, "categories": [{"id": "smileys_&_emotion", "name": "Smileys & Emotion", "emojis": ["grinning-face", "grinning-face-with-big-eyes", "grinning-face-with-smiling-eyes", "beaming-face-with-smiling-eyes", "grinning-squinting-face", "grinning-face-with-sweat", "rolling-on-the-floor-laughing", "face-with-tears-of-joy", "slightly-smiling-face", "upsidedown-face", "winking-face", "smiling-face-with-smiling-eyes", "smiling-face-with-halo", "smiling-face-with-hearts", "smiling-face-with-hearteyes", "starstruck", "face-blowing-a-kiss", "kissing-face", "smiling-face", "kissing-face-with-closed-eyes", "kissing-face-with-smiling-eyes", "smiling-face-with-tear", "face-savoring-food", "face-with-tongue", "winking-face-with-tongue", "zany-face", "squinting-face-with-tongue", "moneymouth-face", "hugging-face", "face-with-hand-over-mouth", "shushing-face", "thinking-face", "zippermouth-face", "face-with-raised-eyebrow", "neutral-face", "expressionless-face", "face-without-mouth", "face-in-clouds", "smirking-face", "unamused-face", "face-with-rolling-eyes", "grimacing-face", "face-exhaling", "lying-face", "relieved-face", "pensive-face", "sleepy-face", "drooling-face", "sleeping-face", "face-with-medical-mask", "face-with-thermometer", "face-with-headbandage", "nauseated-face", "face-vomiting", "sneezing-face", "hot-face", "cold-face", "woozy-face", "knockedout-face", "face-with-spiral-eyes", "exploding-head", "cowboy-hat-face", "partying-face", "disguised-face", "smiling-face-with-sunglasses", "nerd-face", "face-with-monocle", "confused-face", "worried-face", "slightly-frowning-face", "frowning-face", "face-with-open-mouth", "hushed-face", "astonished-face", "flushed-face", "pleading-face", "frowning-face-with-open-mouth", "anguished-face", "fearful-face", "anxious-face-with-sweat", "sad-but-relieved-face", "crying-face", "loudly-crying-face", "face-screaming-in-fear", "confounded-face", "persevering-face", "disappointed-face", "downcast-face-with-sweat", "weary-face", "tired-face", "yawning-face", "face-with-steam-from-nose", "pouting-face", "angry-face", "face-with-symbols-on-mouth", "smiling-face-with-horns", "angry-face-with-horns", "skull", "skull-and-crossbones", "pile-of-poo", "clown-face", "ogre", "goblin", "ghost", "alien", "alien-monster", "robot", "grinning-cat", "grinning-cat-with-smiling-eyes", "cat-with-tears-of-joy", "smiling-cat-with-hearteyes", "cat-with-wry-smile", "kissing-cat", "weary-cat", "crying-cat", "pouting-cat", "seenoevil-monkey", "hearnoevil-monkey", "speaknoevil-monkey", "kiss-mark", "love-letter", "heart-with-arrow", "heart-with-ribbon", "sparkling-heart", "growing-heart", "beating-heart", "revolving-hearts", "two-hearts", "heart-decoration", "heart-exclamation", "broken-heart", "heart-on-fire", "mending-heart", "red-heart", "orange-heart", "yellow-heart", "green-heart", "blue-heart", "purple-heart", "brown-heart", "black-heart", "white-heart", "hundred-points", "anger-symbol", "collision", "dizzy", "sweat-droplets", "dashing-away", "hole", "bomb", "speech-balloon", "eye-in-speech-bubble", "left-speech-bubble", "right-anger-bubble", "thought-balloon", "zzz"]}, {"id": "people_&_body", "name": "People & Body", "emojis": ["waving-hand", "raised-back-of-hand", "hand-with-fingers-splayed", "raised-hand", "vulcan-salute", "ok-hand", "pinched-fingers", "pinching-hand", "victory-hand", "crossed-fingers", "loveyou-gesture", "sign-of-the-horns", "call-me-hand", "backhand-index-pointing-left", "backhand-index-pointing-right", "backhand-index-pointing-up", "middle-finger", "backhand-index-pointing-down", "index-pointing-up", "thumbs-up", "thumbs-down", "raised-fist", "oncoming-fist", "leftfacing-fist", "rightfacing-fist", "clapping-hands", "raising-hands", "open-hands", "palms-up-together", "handshake", "folded-hands", "writing-hand", "nail-polish", "selfie", "flexed-biceps", "mechanical-arm", "mechanical-leg", "leg", "foot", "ear", "ear-with-hearing-aid", "nose", "brain", "anatomical-heart", "lungs", "tooth", "bone", "eyes", "eye", "tongue", "mouth", "baby", "child", "boy", "girl", "person", "person-blond-hair", "man", "person-beard", "man-beard", "woman-beard", "man-red-hair", "man-curly-hair", "man-white-hair", "man-bald", "woman", "woman-red-hair", "person-red-hair", "woman-curly-hair", "person-curly-hair", "woman-white-hair", "person-white-hair", "woman-bald", "person-bald", "woman-blond-hair", "man-blond-hair", "older-person", "old-man", "old-woman", "person-frowning", "man-frowning", "woman-frowning", "person-pouting", "man-pouting", "woman-pouting", "person-gesturing-no", "man-gesturing-no", "woman-gesturing-no", "person-gesturing-ok", "man-gesturing-ok", "woman-gesturing-ok", "person-tipping-hand", "man-tipping-hand", "woman-tipping-hand", "person-raising-hand", "man-raising-hand", "woman-raising-hand", "deaf-person", "deaf-man", "deaf-woman", "person-bowing", "man-bowing", "woman-bowing", "person-facepalming", "man-facepalming", "woman-facepalming", "person-shrugging", "man-shrugging", "woman-shrugging", "health-worker", "man-health-worker", "woman-health-worker", "student", "man-student", "woman-student", "teacher", "man-teacher", "woman-teacher", "judge", "man-judge", "woman-judge", "farmer", "man-farmer", "woman-farmer", "cook", "man-cook", "woman-cook", "mechanic", "man-mechanic", "woman-mechanic", "factory-worker", "man-factory-worker", "woman-factory-worker", "office-worker", "man-office-worker", "woman-office-worker", "scientist", "man-scientist", "woman-scientist", "technologist", "man-technologist", "woman-technologist", "singer", "man-singer", "woman-singer", "artist", "man-artist", "woman-artist", "pilot", "man-pilot", "woman-pilot", "astronaut", "man-astronaut", "woman-astronaut", "firefighter", "man-firefighter", "woman-firefighter", "police-officer", "man-police-officer", "woman-police-officer", "detective", "man-detective", "woman-detective", "guard", "man-guard", "woman-guard", "ninja", "construction-worker", "man-construction-worker", "woman-construction-worker", "prince", "princess", "person-wearing-turban", "man-wearing-turban", "woman-wearing-turban", "person-with-skullcap", "woman-with-headscarf", "person-in-tuxedo", "man-in-tuxedo", "woman-in-tuxedo", "person-with-veil", "man-with-veil", "woman-with-veil", "pregnant-woman", "breastfeeding", "woman-feeding-baby", "man-feeding-baby", "person-feeding-baby", "baby-angel", "santa-claus", "mrs-claus", "mx-claus", "superhero", "man-superhero", "woman-superhero", "supervillain", "man-supervillain", "woman-supervillain", "mage", "man-mage", "woman-mage", "fairy", "man-fairy", "woman-fairy", "vampire", "man-vampire", "woman-vampire", "merperson", "merman", "mermaid", "elf", "man-elf", "woman-elf", "genie", "man-genie", "woman-genie", "zombie", "man-zombie", "woman-zombie", "person-getting-massage", "man-getting-massage", "woman-getting-massage", "person-getting-haircut", "man-getting-haircut", "woman-getting-haircut", "person-walking", "man-walking", "woman-walking", "person-standing", "man-standing", "woman-standing", "person-kneeling", "man-kneeling", "woman-kneeling", "person-with-white-cane", "man-with-white-cane", "woman-with-white-cane", "person-in-motorized-wheelchair", "man-in-motorized-wheelchair", "woman-in-motorized-wheelchair", "person-in-manual-wheelchair", "man-in-manual-wheelchair", "woman-in-manual-wheelchair", "person-running", "man-running", "woman-running", "woman-dancing", "man-dancing", "person-in-suit-levitating", "people-with-bunny-ears", "men-with-bunny-ears", "women-with-bunny-ears", "person-in-steamy-room", "man-in-steamy-room", "woman-in-steamy-room", "person-climbing", "man-climbing", "woman-climbing", "person-fencing", "horse-racing", "skier", "snowboarder", "person-golfing", "man-golfing", "woman-golfing", "person-surfing", "man-surfing", "woman-surfing", "person-rowing-boat", "man-rowing-boat", "woman-rowing-boat", "person-swimming", "man-swimming", "woman-swimming", "person-bouncing-ball", "man-bouncing-ball", "woman-bouncing-ball", "person-lifting-weights", "man-lifting-weights", "woman-lifting-weights", "person-biking", "man-biking", "woman-biking", "person-mountain-biking", "man-mountain-biking", "woman-mountain-biking", "person-cartwheeling", "man-cartwheeling", "woman-cartwheeling", "people-wrestling", "men-wrestling", "women-wrestling", "person-playing-water-polo", "man-playing-water-polo", "woman-playing-water-polo", "person-playing-handball", "man-playing-handball", "woman-playing-handball", "person-juggling", "man-juggling", "woman-juggling", "person-in-lotus-position", "man-in-lotus-position", "woman-in-lotus-position", "person-taking-bath", "person-in-bed", "people-holding-hands", "women-holding-hands", "woman-and-man-holding-hands", "men-holding-hands", "kiss", "kiss-woman-man", "kiss-man-man", "kiss-woman-woman", "couple-with-heart", "couple-with-heart-woman-man", "couple-with-heart-man-man", "couple-with-heart-woman-woman", "family", "family-man-woman-boy", "family-man-woman-girl", "family-man-woman-girl-boy", "family-man-woman-boy-boy", "family-man-woman-girl-girl", "family-man-man-boy", "family-man-man-girl", "family-man-man-girl-boy", "family-man-man-boy-boy", "family-man-man-girl-girl", "family-woman-woman-boy", "family-woman-woman-girl", "family-woman-woman-girl-boy", "family-woman-woman-boy-boy", "family-woman-woman-girl-girl", "family-man-boy", "family-man-boy-boy", "family-man-girl", "family-man-girl-boy", "family-man-girl-girl", "family-woman-boy", "family-woman-boy-boy", "family-woman-girl", "family-woman-girl-boy", "family-woman-girl-girl", "speaking-head", "bust-in-silhouette", "busts-in-silhouette", "people-hugging", "footprints"]}, {"id": "animals_&_nature", "name": "Animals & Nature", "emojis": ["monkey-face", "monkey", "gorilla", "orangutan", "dog-face", "dog", "guide-dog", "service-dog", "poodle", "wolf", "fox", "raccoon", "cat-face", "cat", "black-cat", "lion", "tiger-face", "tiger", "leopard", "horse-face", "horse", "unicorn", "zebra", "deer", "bison", "cow-face", "ox", "water-buffalo", "cow", "pig-face", "pig", "boar", "pig-nose", "ram", "ewe", "goat", "camel", "twohump-camel", "llama", "giraffe", "elephant", "mammoth", "rhinoceros", "hippopotamus", "mouse-face", "mouse", "rat", "hamster", "rabbit-face", "rabbit", "chipmunk", "beaver", "hedgehog", "bat", "bear", "polar-bear", "koala", "panda", "sloth", "otter", "skunk", "kangaroo", "badger", "paw-prints", "turkey", "chicken", "rooster", "hatching-chick", "baby-chick", "frontfacing-baby-chick", "bird", "penguin", "dove", "eagle", "duck", "swan", "owl", "dodo", "feather", "flamingo", "peacock", "parrot", "frog", "crocodile", "turtle", "lizard", "snake", "dragon-face", "dragon", "sauropod", "trex", "spouting-whale", "whale", "dolphin", "seal", "fish", "tropical-fish", "blowfish", "shark", "octopus", "spiral-shell", "snail", "butterfly", "bug", "ant", "honeybee", "beetle", "lady-beetle", "cricket", "cockroach", "spider", "spider-web", "scorpion", "mosquito", "fly", "worm", "microbe", "bouquet", "cherry-blossom", "white-flower", "rosette", "rose", "wilted-flower", "hibiscus", "sunflower", "blossom", "tulip", "seedling", "potted-plant", "evergreen-tree", "deciduous-tree", "palm-tree", "cactus", "sheaf-of-rice", "herb", "shamrock", "four-leaf-clover", "maple-leaf", "fallen-leaf", "leaf-fluttering-in-wind"]}, {"id": "food_&_drink", "name": "Food & Drink", "emojis": ["grapes", "melon", "watermelon", "tangerine", "lemon", "banana", "pineapple", "mango", "red-apple", "green-apple", "pear", "peach", "cherries", "strawberry", "blueberries", "kiwi-fruit", "tomato", "olive", "coconut", "avocado", "eggplant", "potato", "carrot", "ear-of-corn", "hot-pepper", "bell-pepper", "cucumber", "leafy-green", "broccoli", "garlic", "onion", "mushroom", "peanuts", "chestnut", "bread", "croissant", "baguette-bread", "flatbread", "pretzel", "bagel", "pancakes", "waffle", "cheese-wedge", "meat-on-bone", "poultry-leg", "cut-of-meat", "bacon", "hamburger", "french-fries", "pizza", "hot-dog", "sandwich", "taco", "burrito", "tamale", "stuffed-flatbread", "falafel", "egg", "cooking", "shallow-pan-of-food", "pot-of-food", "fondue", "bowl-with-spoon", "green-salad", "popcorn", "butter", "salt", "canned-food", "bento-box", "rice-cracker", "rice-ball", "cooked-rice", "curry-rice", "steaming-bowl", "spaghetti", "roasted-sweet-potato", "oden", "sushi", "fried-shrimp", "fish-cake-with-swirl", "moon-cake", "dango", "dumpling", "fortune-cookie", "takeout-box", "crab", "lobster", "shrimp", "squid", "oyster", "soft-ice-cream", "shaved-ice", "ice-cream", "doughnut", "cookie", "birthday-cake", "shortcake", "cupcake", "pie", "chocolate-bar", "candy", "lollipop", "custard", "honey-pot", "baby-bottle", "glass-of-milk", "hot-beverage", "teapot", "teacup-without-handle", "sake", "bottle-with-popping-cork", "wine-glass", "cocktail-glass", "tropical-drink", "beer-mug", "clinking-beer-mugs", "clinking-glasses", "tumbler-glass", "cup-with-straw", "bubble-tea", "beverage-box", "mate", "ice", "chopsticks", "fork-and-knife-with-plate", "fork-and-knife", "spoon", "kitchen-knife", "amphora"]}, {"id": "travel_&_places", "name": "Travel & Places", "emojis": ["globe-showing-europeafrica", "globe-showing-americas", "globe-showing-asiaaustralia", "globe-with-meridians", "world-map", "map-of-japan", "compass", "snowcapped-mountain", "mountain", "volcano", "mount-fuji", "camping", "beach-with-umbrella", "desert", "desert-island", "national-park", "stadium", "classical-building", "building-construction", "brick", "rock", "wood", "hut", "houses", "derelict-house", "house", "house-with-garden", "office-building", "japanese-post-office", "post-office", "hospital", "bank", "hotel", "love-hotel", "convenience-store", "school", "department-store", "factory", "japanese-castle", "castle", "wedding", "tokyo-tower", "statue-of-liberty", "church", "mosque", "hindu-temple", "synagogue", "shinto-shrine", "kaaba", "fountain", "tent", "foggy", "night-with-stars", "cityscape", "sunrise-over-mountains", "sunrise", "cityscape-at-dusk", "sunset", "bridge-at-night", "hot-springs", "carousel-horse", "ferris-wheel", "roller-coaster", "barber-pole", "circus-tent", "locomotive", "railway-car", "highspeed-train", "bullet-train", "train", "metro", "light-rail", "station", "tram", "monorail", "mountain-railway", "tram-car", "bus", "oncoming-bus", "trolleybus", "minibus", "ambulance", "fire-engine", "police-car", "oncoming-police-car", "taxi", "oncoming-taxi", "automobile", "oncoming-automobile", "sport-utility-vehicle", "pickup-truck", "delivery-truck", "articulated-lorry", "tractor", "racing-car", "motorcycle", "motor-scooter", "manual-wheelchair", "motorized-wheelchair", "auto-rickshaw", "bicycle", "kick-scooter", "skateboard", "roller-skate", "bus-stop", "motorway", "railway-track", "oil-drum", "fuel-pump", "police-car-light", "horizontal-traffic-light", "vertical-traffic-light", "stop-sign", "construction", "anchor", "sailboat", "canoe", "speedboat", "passenger-ship", "ferry", "motor-boat", "ship", "airplane", "small-airplane", "airplane-departure", "airplane-arrival", "parachute", "seat", "helicopter", "suspension-railway", "mountain-cableway", "aerial-tramway", "satellite", "rocket", "flying-saucer", "bellhop-bell", "luggage", "hourglass-done", "hourglass-not-done", "watch", "alarm-clock", "stopwatch", "timer-clock", "mantelpiece-clock", "twelve-oclock", "twelvethirty", "one-oclock", "onethirty", "two-oclock", "twothirty", "three-oclock", "threethirty", "four-oclock", "fourthirty", "five-oclock", "fivethirty", "six-oclock", "sixthirty", "seven-oclock", "seventhirty", "eight-oclock", "eightthirty", "nine-oclock", "ninethirty", "ten-oclock", "tenthirty", "eleven-oclock", "eleventhirty", "new-moon", "waxing-crescent-moon", "first-quarter-moon", "waxing-gibbous-moon", "full-moon", "waning-gibbous-moon", "last-quarter-moon", "waning-crescent-moon", "crescent-moon", "new-moon-face", "first-quarter-moon-face", "last-quarter-moon-face", "thermometer", "sun", "full-moon-face", "sun-with-face", "ringed-planet", "star", "glowing-star", "shooting-star", "milky-way", "cloud", "sun-behind-cloud", "cloud-with-lightning-and-rain", "sun-behind-small-cloud", "sun-behind-large-cloud", "sun-behind-rain-cloud", "cloud-with-rain", "cloud-with-snow", "cloud-with-lightning", "tornado", "fog", "wind-face", "cyclone", "rainbow", "closed-umbrella", "umbrella", "umbrella-with-rain-drops", "umbrella-on-ground", "high-voltage", "snowflake", "snowman", "snowman-without-snow", "comet", "fire", "droplet", "water-wave"]}, {"id": "activities", "name": "Activities", "emojis": ["jackolantern", "christmas-tree", "fireworks", "sparkler", "firecracker", "sparkles", "balloon", "party-popper", "confetti-ball", "tanabata-tree", "pine-decoration", "japanese-dolls", "carp-streamer", "wind-chime", "moon-viewing-ceremony", "red-envelope", "ribbon", "wrapped-gift", "reminder-ribbon", "admission-tickets", "ticket", "military-medal", "trophy", "sports-medal", "1st-place-medal", "2nd-place-medal", "3rd-place-medal", "soccer-ball", "baseball", "softball", "basketball", "volleyball", "american-football", "rugby-football", "tennis", "flying-disc", "bowling", "cricket-game", "field-hockey", "ice-hockey", "lacrosse", "ping-pong", "badminton", "boxing-glove", "martial-arts-uniform", "goal-net", "flag-in-hole", "ice-skate", "fishing-pole", "diving-mask", "running-shirt", "skis", "sled", "curling-stone", "bullseye", "yoyo", "kite", "pool-8-ball", "crystal-ball", "magic-wand", "nazar-amulet", "video-game", "joystick", "slot-machine", "game-die", "puzzle-piece", "teddy-bear", "piata", "nesting-dolls", "spade-suit", "heart-suit", "diamond-suit", "club-suit", "chess-pawn", "joker", "mahjong-red-dragon", "flower-playing-cards", "performing-arts", "framed-picture", "artist-palette", "thread", "sewing-needle", "yarn", "knot"]}, {"id": "objects", "name": "Objects", "emojis": ["glasses", "sunglasses", "goggles", "lab-coat", "safety-vest", "necktie", "tshirt", "jeans", "scarf", "gloves", "coat", "socks", "dress", "kimono", "sari", "onepiece-swimsuit", "briefs", "shorts", "bikini", "womans-clothes", "purse", "handbag", "clutch-bag", "shopping-bags", "backpack", "thong-sandal", "mans-shoe", "running-shoe", "hiking-boot", "flat-shoe", "highheeled-shoe", "womans-sandal", "ballet-shoes", "womans-boot", "crown", "womans-hat", "top-hat", "graduation-cap", "billed-cap", "military-helmet", "rescue-workers-helmet", "prayer-beads", "lipstick", "ring", "gem-stone", "muted-speaker", "speaker-low-volume", "speaker-medium-volume", "speaker-high-volume", "loudspeaker", "megaphone", "postal-horn", "bell", "bell-with-slash", "musical-score", "musical-note", "musical-notes", "studio-microphone", "level-slider", "control-knobs", "microphone", "headphone", "radio", "saxophone", "accordion", "guitar", "musical-keyboard", "trumpet", "violin", "banjo", "drum", "long-drum", "mobile-phone", "mobile-phone-with-arrow", "telephone", "telephone-receiver", "pager", "fax-machine", "battery", "electric-plug", "laptop", "desktop-computer", "printer", "keyboard", "computer-mouse", "trackball", "computer-disk", "floppy-disk", "optical-disk", "dvd", "abacus", "movie-camera", "film-frames", "film-projector", "clapper-board", "television", "camera", "camera-with-flash", "video-camera", "videocassette", "magnifying-glass-tilted-left", "magnifying-glass-tilted-right", "candle", "light-bulb", "flashlight", "red-paper-lantern", "diya-lamp", "notebook-with-decorative-cover", "closed-book", "open-book", "green-book", "blue-book", "orange-book", "books", "notebook", "ledger", "page-with-curl", "scroll", "page-facing-up", "newspaper", "rolledup-newspaper", "bookmark-tabs", "bookmark", "label", "money-bag", "coin", "yen-banknote", "dollar-banknote", "euro-banknote", "pound-banknote", "money-with-wings", "credit-card", "receipt", "chart-increasing-with-yen", "envelope", "email", "incoming-envelope", "envelope-with-arrow", "outbox-tray", "inbox-tray", "package", "closed-mailbox-with-raised-flag", "closed-mailbox-with-lowered-flag", "open-mailbox-with-raised-flag", "open-mailbox-with-lowered-flag", "postbox", "ballot-box-with-ballot", "pencil", "black-nib", "fountain-pen", "pen", "paintbrush", "crayon", "memo", "briefcase", "file-folder", "open-file-folder", "card-index-dividers", "calendar", "tearoff-calendar", "spiral-notepad", "spiral-calendar", "card-index", "chart-increasing", "chart-decreasing", "bar-chart", "clipboard", "pushpin", "round-pushpin", "paperclip", "linked-paperclips", "straight-ruler", "triangular-ruler", "scissors", "card-file-box", "file-cabinet", "wastebasket", "locked", "unlocked", "locked-with-pen", "locked-with-key", "key", "old-key", "hammer", "axe", "pick", "hammer-and-pick", "hammer-and-wrench", "dagger", "crossed-swords", "water-pistol", "boomerang", "bow-and-arrow", "shield", "carpentry-saw", "wrench", "screwdriver", "nut-and-bolt", "gear", "clamp", "balance-scale", "white-cane", "link", "chains", "hook", "toolbox", "magnet", "ladder", "alembic", "test-tube", "petri-dish", "dna", "microscope", "telescope", "satellite-antenna", "syringe", "drop-of-blood", "pill", "adhesive-bandage", "stethoscope", "door", "elevator", "mirror", "window", "bed", "couch-and-lamp", "chair", "toilet", "plunger", "shower", "bathtub", "mouse-trap", "razor", "lotion-bottle", "safety-pin", "broom", "basket", "roll-of-paper", "bucket", "soap", "toothbrush", "sponge", "fire-extinguisher", "shopping-cart", "cigarette", "coffin", "headstone", "funeral-urn", "moai", "placard"]}, {"id": "symbols", "name": "Symbols", "emojis": ["atm-sign", "litter-in-bin-sign", "potable-water", "wheelchair-symbol", "mens-room", "womens-room", "restroom", "baby-symbol", "water-closet", "passport-control", "customs", "baggage-claim", "left-luggage", "warning", "children-crossing", "no-entry", "prohibited", "no-bicycles", "no-smoking", "no-littering", "nonpotable-water", "no-pedestrians", "no-mobile-phones", "no-one-under-eighteen", "radioactive", "biohazard", "up-arrow", "upright-arrow", "right-arrow", "downright-arrow", "down-arrow", "downleft-arrow", "left-arrow", "upleft-arrow", "updown-arrow", "leftright-arrow", "right-arrow-curving-left", "left-arrow-curving-right", "right-arrow-curving-up", "right-arrow-curving-down", "clockwise-vertical-arrows", "counterclockwise-arrows-button", "back-arrow", "end-arrow", "on-arrow", "soon-arrow", "top-arrow", "place-of-worship", "atom-symbol", "om", "star-of-david", "wheel-of-dharma", "yin-yang", "latin-cross", "orthodox-cross", "star-and-crescent", "peace-symbol", "menorah", "dotted-sixpointed-star", "aries", "taurus", "gemini", "cancer", "leo", "virgo", "libra", "scorpio", "sagittarius", "capricorn", "aquarius", "pisces", "ophiuchus", "shuffle-tracks-button", "repeat-button", "repeat-single-button", "play-button", "fastforward-button", "next-track-button", "play-or-pause-button", "reverse-button", "fast-reverse-button", "last-track-button", "upwards-button", "fast-up-button", "downwards-button", "fast-down-button", "pause-button", "stop-button", "record-button", "eject-button", "cinema", "dim-button", "bright-button", "antenna-bars", "vibration-mode", "mobile-phone-off", "female-sign", "male-sign", "transgender-symbol", "multiply", "plus", "minus", "divide", "infinity", "double-exclamation-mark", "exclamation-question-mark", "red-question-mark", "white-question-mark", "white-exclamation-mark", "red-exclamation-mark", "wavy-dash", "currency-exchange", "heavy-dollar-sign", "medical-symbol", "recycling-symbol", "fleurdelis", "trident-emblem", "name-badge", "japanese-symbol-for-beginner", "hollow-red-circle", "check-mark-button", "check-box-with-check", "check-mark", "cross-mark", "cross-mark-button", "curly-loop", "double-curly-loop", "part-alternation-mark", "eightspoked-asterisk", "eightpointed-star", "sparkle", "copyright", "registered", "trade-mark", "keycap", "keycap", "keycap-0", "keycap-1", "keycap-2", "keycap-3", "keycap-4", "keycap-5", "keycap-6", "keycap-7", "keycap-8", "keycap-9", "keycap-10", "input-latin-uppercase", "input-latin-lowercase", "input-numbers", "input-symbols", "input-latin-letters", "a-button-blood-type", "ab-button-blood-type", "b-button-blood-type", "cl-button", "cool-button", "free-button", "information", "id-button", "circled-m", "new-button", "ng-button", "o-button-blood-type", "ok-button", "p-button", "sos-button", "up-button", "vs-button", "japanese-here-button", "japanese-service-charge-button", "japanese-monthly-amount-button", "japanese-not-free-of-charge-button", "japanese-reserved-button", "japanese-bargain-button", "japanese-discount-button", "japanese-free-of-charge-button", "japanese-prohibited-button", "japanese-acceptable-button", "japanese-application-button", "japanese-passing-grade-button", "japanese-vacancy-button", "japanese-congratulations-button", "japanese-secret-button", "japanese-open-for-business-button", "japanese-no-vacancy-button", "red-circle", "orange-circle", "yellow-circle", "green-circle", "blue-circle", "purple-circle", "brown-circle", "black-circle", "white-circle", "red-square", "orange-square", "yellow-square", "green-square", "blue-square", "purple-square", "brown-square", "black-large-square", "white-large-square", "black-medium-square", "white-medium-square", "black-mediumsmall-square", "white-mediumsmall-square", "black-small-square", "white-small-square", "large-orange-diamond", "large-blue-diamond", "small-orange-diamond", "small-blue-diamond", "red-triangle-pointed-up", "red-triangle-pointed-down", "diamond-with-a-dot", "radio-button", "white-square-button", "black-square-button"]}, {"id": "flags", "name": "Flags", "emojis": ["chequered-flag", "triangular-flag", "crossed-flags", "black-flag", "white-flag", "rainbow-flag", "transgender-flag", "pirate-flag", "flag-ascension-island", "flag-andorra", "flag-united-arab-emirates", "flag-afghanistan", "flag-antigua--barbuda", "flag-anguilla", "flag-albania", "flag-armenia", "flag-angola", "flag-antarctica", "flag-argentina", "flag-american-samoa", "flag-austria", "flag-australia", "flag-aruba", "flag-land-islands", "flag-azerbaijan", "flag-bosnia--herzegovina", "flag-barbados", "flag-bangladesh", "flag-belgium", "flag-burkina-faso", "flag-bulgaria", "flag-bahrain", "flag-burundi", "flag-benin", "flag-st-barthlemy", "flag-bermuda", "flag-brunei", "flag-bolivia", "flag-caribbean-netherlands", "flag-brazil", "flag-bahamas", "flag-bhutan", "flag-bouvet-island", "flag-botswana", "flag-belarus", "flag-belize", "flag-canada", "flag-cocos-keeling-islands", "flag-congo--kinshasa", "flag-central-african-republic", "flag-congo--brazzaville", "flag-switzerland", "flag-cte-divoire", "flag-cook-islands", "flag-chile", "flag-cameroon", "flag-china", "flag-colombia", "flag-clipperton-island", "flag-costa-rica", "flag-cuba", "flag-cape-verde", "flag-curaao", "flag-christmas-island", "flag-cyprus", "flag-czechia", "flag-germany", "flag-diego-garcia", "flag-djibouti", "flag-denmark", "flag-dominica", "flag-dominican-republic", "flag-algeria", "flag-ceuta--melilla", "flag-ecuador", "flag-estonia", "flag-egypt", "flag-western-sahara", "flag-eritrea", "flag-spain", "flag-ethiopia", "flag-european-union", "flag-finland", "flag-fiji", "flag-falkland-islands", "flag-micronesia", "flag-faroe-islands", "flag-france", "flag-gabon", "flag-united-kingdom", "flag-grenada", "flag-georgia", "flag-french-guiana", "flag-guernsey", "flag-ghana", "flag-gibraltar", "flag-greenland", "flag-gambia", "flag-guinea", "flag-guadeloupe", "flag-equatorial-guinea", "flag-greece", "flag-south-georgia--south-sandwich-islands", "flag-guatemala", "flag-guam", "flag-guineabissau", "flag-guyana", "flag-hong-kong-sar-china", "flag-heard--mcdonald-islands", "flag-honduras", "flag-croatia", "flag-haiti", "flag-hungary", "flag-canary-islands", "flag-indonesia", "flag-ireland", "flag-israel", "flag-isle-of-man", "flag-india", "flag-british-indian-ocean-territory", "flag-iraq", "flag-iran", "flag-iceland", "flag-italy", "flag-jersey", "flag-jamaica", "flag-jordan", "flag-japan", "flag-kenya", "flag-kyrgyzstan", "flag-cambodia", "flag-kiribati", "flag-comoros", "flag-st-kitts--nevis", "flag-north-korea", "flag-south-korea", "flag-kuwait", "flag-cayman-islands", "flag-kazakhstan", "flag-laos", "flag-lebanon", "flag-st-lucia", "flag-liechtenstein", "flag-sri-lanka", "flag-liberia", "flag-lesotho", "flag-lithuania", "flag-luxembourg", "flag-latvia", "flag-libya", "flag-morocco", "flag-monaco", "flag-moldova", "flag-montenegro", "flag-st-martin", "flag-madagascar", "flag-marshall-islands", "flag-north-macedonia", "flag-mali", "flag-myanmar-burma", "flag-mongolia", "flag-macao-sar-china", "flag-northern-mariana-islands", "flag-martinique", "flag-mauritania", "flag-montserrat", "flag-malta", "flag-mauritius", "flag-maldives", "flag-malawi", "flag-mexico", "flag-malaysia", "flag-mozambique", "flag-namibia", "flag-new-caledonia", "flag-niger", "flag-norfolk-island", "flag-nigeria", "flag-nicaragua", "flag-netherlands", "flag-norway", "flag-nepal", "flag-nauru", "flag-niue", "flag-new-zealand", "flag-oman", "flag-panama", "flag-peru", "flag-french-polynesia", "flag-papua-new-guinea", "flag-philippines", "flag-pakistan", "flag-poland", "flag-st-pierre--miquelon", "flag-pitcairn-islands", "flag-puerto-rico", "flag-palestinian-territories", "flag-portugal", "flag-palau", "flag-paraguay", "flag-qatar", "flag-runion", "flag-romania", "flag-serbia", "flag-russia", "flag-rwanda", "flag-saudi-arabia", "flag-solomon-islands", "flag-seychelles", "flag-sudan", "flag-sweden", "flag-singapore", "flag-st-helena", "flag-slovenia", "flag-svalbard--jan-mayen", "flag-slovakia", "flag-sierra-leone", "flag-san-marino", "flag-senegal", "flag-somalia", "flag-suriname", "flag-south-sudan", "flag-so-tom--prncipe", "flag-el-salvador", "flag-sint-maarten", "flag-syria", "flag-eswatini", "flag-tristan-da-cunha", "flag-turks--caicos-islands", "flag-chad", "flag-french-southern-territories", "flag-togo", "flag-thailand", "flag-tajikistan", "flag-tokelau", "flag-timorleste", "flag-turkmenistan", "flag-tunisia", "flag-tonga", "flag-turkey", "flag-trinidad--tobago", "flag-tuvalu", "flag-taiwan", "flag-tanzania", "flag-ukraine", "flag-uganda", "flag-us-outlying-islands", "flag-united-nations", "flag-united-states", "flag-uruguay", "flag-uzbekistan", "flag-vatican-city", "flag-st-vincent--grenadines", "flag-venezuela", "flag-british-virgin-islands", "flag-us-virgin-islands", "flag-vietnam", "flag-vanuatu", "flag-wallis--futuna", "flag-samoa", "flag-kosovo", "flag-yemen", "flag-mayotte", "flag-south-africa", "flag-zambia", "flag-zimbabwe", "flag-england", "flag-scotland", "flag-wales"]}], "emojis": {"grinning-face": {"a": "grinning face", "b": "1F600", "j": ["face", "grin", "grinning face"]}, "grinning-face-with-big-eyes": {"a": "grinning face with big eyes", "b": "1F603", "j": ["face", "grinning face with big eyes", "mouth", "open", "smile"]}, "grinning-face-with-smiling-eyes": {"a": "grinning face with smiling eyes", "b": "1F604", "j": ["eye", "face", "grinning face with smiling eyes", "mouth", "open", "smile"]}, "beaming-face-with-smiling-eyes": {"a": "beaming face with smiling eyes", "b": "1F601", "j": ["beaming face with smiling eyes", "eye", "face", "grin", "smile"]}, "grinning-squinting-face": {"a": "grinning squinting face", "b": "1F606", "j": ["face", "grinning squinting face", "laugh", "mouth", "satisfied", "smile"]}, "grinning-face-with-sweat": {"a": "grinning face with sweat", "b": "1F605", "j": ["cold", "face", "grinning face with sweat", "open", "smile", "sweat"]}, "rolling-on-the-floor-laughing": {"a": "rolling on the floor laughing", "b": "1F923", "j": ["face", "floor", "laugh", "rofl", "rolling", "rolling on the floor laughing", "rotfl"]}, "face-with-tears-of-joy": {"a": "face with tears of joy", "b": "1F602", "j": ["face", "face with tears of joy", "joy", "laugh", "tear"]}, "slightly-smiling-face": {"a": "slightly smiling face", "b": "1F642", "j": ["face", "slightly smiling face", "smile"]}, "upsidedown-face": {"a": "upside-down face", "b": "1F643", "j": ["face", "upside-down"]}, "winking-face": {"a": "winking face", "b": "1F609", "j": ["face", "wink", "winking face"]}, "smiling-face-with-smiling-eyes": {"a": "smiling face with smiling eyes", "b": "1F60A", "j": ["blush", "eye", "face", "smile", "smiling face with smiling eyes"]}, "smiling-face-with-halo": {"a": "smiling face with halo", "b": "1F607", "j": ["angel", "face", "fantasy", "halo", "innocent", "smiling face with halo"]}, "smiling-face-with-hearts": {"a": "smiling face with hearts", "b": "1F970", "j": ["adore", "crush", "hearts", "in love", "smiling face with hearts"]}, "smiling-face-with-hearteyes": {"a": "smiling face with heart-eyes", "b": "1F60D", "j": ["eye", "face", "love", "smile", "smiling face with heart-eyes"]}, "starstruck": {"a": "star-struck", "b": "1F929", "j": ["eyes", "face", "grinning", "star", "star-struck", "starry-eyed"]}, "face-blowing-a-kiss": {"a": "face blowing a kiss", "b": "1F618", "j": ["face", "face blowing a kiss", "kiss"]}, "kissing-face": {"a": "kissing face", "b": "1F617", "j": ["face", "kiss", "kissing face"]}, "smiling-face": {"a": "smiling face", "b": "263A", "j": ["face", "outlined", "relaxed", "smile", "smiling face"]}, "kissing-face-with-closed-eyes": {"a": "kissing face with closed eyes", "b": "1F61A", "j": ["closed", "eye", "face", "kiss", "kissing face with closed eyes"]}, "kissing-face-with-smiling-eyes": {"a": "kissing face with smiling eyes", "b": "1F619", "j": ["eye", "face", "kiss", "kissing face with smiling eyes", "smile"]}, "smiling-face-with-tear": {"a": "smiling face with tear", "b": "1F972", "j": ["grateful", "proud", "relieved", "smiling", "smiling face with tear", "tear", "touched"]}, "face-savoring-food": {"a": "face savoring food", "b": "1F60B", "j": ["delicious", "face", "face savoring food", "savouring", "smile", "yum"]}, "face-with-tongue": {"a": "face with tongue", "b": "1F61B", "j": ["face", "face with tongue", "tongue"]}, "winking-face-with-tongue": {"a": "winking face with tongue", "b": "1F61C", "j": ["eye", "face", "joke", "tongue", "wink", "winking face with tongue"]}, "zany-face": {"a": "zany face", "b": "1F92A", "j": ["eye", "goofy", "large", "small", "zany face"]}, "squinting-face-with-tongue": {"a": "squinting face with tongue", "b": "1F61D", "j": ["eye", "face", "horrible", "squinting face with tongue", "taste", "tongue"]}, "moneymouth-face": {"a": "money-mouth face", "b": "1F911", "j": ["face", "money", "money-mouth face", "mouth"]}, "hugging-face": {"a": "hugging face", "b": "1F917", "j": ["face", "hug", "hugging"]}, "face-with-hand-over-mouth": {"a": "face with hand over mouth", "b": "1F92D", "j": ["face with hand over mouth", "whoops", "shock", "sudden realization", "surprise"]}, "shushing-face": {"a": "shushing face", "b": "1F92B", "j": ["quiet", "shush", "shushing face"]}, "thinking-face": {"a": "thinking face", "b": "1F914", "j": ["face", "thinking"]}, "zippermouth-face": {"a": "zipper-mouth face", "b": "1F910", "j": ["face", "mouth", "zipper", "zipper-mouth face"]}, "face-with-raised-eyebrow": {"a": "face with raised eyebrow", "b": "1F928", "j": ["distrust", "face with raised eyebrow", "skeptic", "disapproval", "disbelief", "mild surprise", "scepticism"]}, "neutral-face": {"a": "neutral face", "b": "1F610", "j": ["deadpan", "face", "meh", "neutral"]}, "expressionless-face": {"a": "expressionless face", "b": "1F611", "j": ["expressionless", "face", "inexpressive", "meh", "unexpressive"]}, "face-without-mouth": {"a": "face without mouth", "b": "1F636", "j": ["face", "face without mouth", "mouth", "quiet", "silent"]}, "face-in-clouds": {"a": "⊛ face in clouds", "b": "1F636-200D-1F32B-FE0F", "j": ["absentminded", "face in clouds", "face in the fog", "head in clouds"]}, "smirking-face": {"a": "smirking face", "b": "1F60F", "j": ["face", "smirk", "smirking face"]}, "unamused-face": {"a": "unamused face", "b": "1F612", "j": ["face", "unamused", "unhappy"]}, "face-with-rolling-eyes": {"a": "face with rolling eyes", "b": "1F644", "j": ["eyeroll", "eyes", "face", "face with rolling eyes", "rolling"]}, "grimacing-face": {"a": "grimacing face", "b": "1F62C", "j": ["face", "grimace", "grimacing face"]}, "face-exhaling": {"a": "⊛ face exhaling", "b": "1F62E-200D-1F4A8", "j": ["exhale", "face exhaling", "gasp", "groan", "relief", "whisper", "whistle"]}, "lying-face": {"a": "lying face", "b": "1F925", "j": ["face", "lie", "lying face", "pinocchio"]}, "relieved-face": {"a": "relieved face", "b": "1F60C", "j": ["face", "relieved"]}, "pensive-face": {"a": "pensive face", "b": "1F614", "j": ["dejected", "face", "pensive"]}, "sleepy-face": {"a": "sleepy face", "b": "1F62A", "j": ["face", "sleep", "sleepy face"]}, "drooling-face": {"a": "drooling face", "b": "1F924", "j": ["drooling", "face"]}, "sleeping-face": {"a": "sleeping face", "b": "1F634", "j": ["face", "sleep", "sleeping face", "zzz"]}, "face-with-medical-mask": {"a": "face with medical mask", "b": "1F637", "j": ["cold", "doctor", "face", "face with medical mask", "mask", "sick"]}, "face-with-thermometer": {"a": "face with thermometer", "b": "1F912", "j": ["face", "face with thermometer", "ill", "sick", "thermometer"]}, "face-with-headbandage": {"a": "face with head-bandage", "b": "1F915", "j": ["bandage", "face", "face with head-bandage", "hurt", "injury"]}, "nauseated-face": {"a": "nauseated face", "b": "1F922", "j": ["face", "nauseated", "vomit"]}, "face-vomiting": {"a": "face vomiting", "b": "1F92E", "j": ["face vomiting", "puke", "sick", "vomit"]}, "sneezing-face": {"a": "sneezing face", "b": "1F927", "j": ["face", "gesundheit", "sneeze", "sneezing face"]}, "hot-face": {"a": "hot face", "b": "1F975", "j": ["feverish", "heat stroke", "hot", "hot face", "red-faced", "sweating"]}, "cold-face": {"a": "cold face", "b": "1F976", "j": ["blue-faced", "cold", "cold face", "freezing", "frostbite", "icicles"]}, "woozy-face": {"a": "woozy face", "b": "1F974", "j": ["dizzy", "intoxicated", "tipsy", "uneven eyes", "wavy mouth", "woozy face"]}, "knockedout-face": {"a": "knocked-out face", "b": "1F635", "j": ["dead", "face", "knocked out", "knocked-out face"]}, "face-with-spiral-eyes": {"a": "⊛ face with spiral eyes", "b": "1F635-200D-1F4AB", "j": ["dizzy", "face with spiral eyes", "hypnotized", "spiral", "trouble", "whoa"]}, "exploding-head": {"a": "exploding head", "b": "1F92F", "j": ["exploding head", "mind blown", "shocked"]}, "cowboy-hat-face": {"a": "cowboy hat face", "b": "1F920", "j": ["cowboy", "cowgirl", "face", "hat"]}, "partying-face": {"a": "partying face", "b": "1F973", "j": ["celebration", "hat", "horn", "party", "partying face"]}, "disguised-face": {"a": "disguised face", "b": "1F978", "j": ["disguise", "disguised face", "face", "glasses", "incognito", "nose"]}, "smiling-face-with-sunglasses": {"a": "smiling face with sunglasses", "b": "1F60E", "j": ["bright", "cool", "face", "smiling face with sunglasses", "sun", "sunglasses"]}, "nerd-face": {"a": "nerd face", "b": "1F913", "j": ["face", "geek", "nerd"]}, "face-with-monocle": {"a": "face with monocle", "b": "1F9D0", "j": ["face with monocle", "stuffy", "wealthy"]}, "confused-face": {"a": "confused face", "b": "1F615", "j": ["confused", "face", "meh"]}, "worried-face": {"a": "worried face", "b": "1F61F", "j": ["face", "worried"]}, "slightly-frowning-face": {"a": "slightly frowning face", "b": "1F641", "j": ["face", "frown", "slightly frowning face"]}, "frowning-face": {"a": "frowning face", "b": "2639", "j": ["face", "frown", "frowning face"]}, "face-with-open-mouth": {"a": "face with open mouth", "b": "1F62E", "j": ["face", "face with open mouth", "mouth", "open", "sympathy"]}, "hushed-face": {"a": "hushed face", "b": "1F62F", "j": ["face", "hushed", "stunned", "surprised"]}, "astonished-face": {"a": "astonished face", "b": "1F632", "j": ["astonished", "face", "shocked", "totally"]}, "flushed-face": {"a": "flushed face", "b": "1F633", "j": ["dazed", "face", "flushed"]}, "pleading-face": {"a": "pleading face", "b": "1F97A", "j": ["begging", "mercy", "pleading face", "puppy eyes"]}, "frowning-face-with-open-mouth": {"a": "frowning face with open mouth", "b": "1F626", "j": ["face", "frown", "frowning face with open mouth", "mouth", "open"]}, "anguished-face": {"a": "anguished face", "b": "1F627", "j": ["anguished", "face"]}, "fearful-face": {"a": "fearful face", "b": "1F628", "j": ["face", "fear", "fearful", "scared"]}, "anxious-face-with-sweat": {"a": "anxious face with sweat", "b": "1F630", "j": ["anxious face with sweat", "blue", "cold", "face", "rushed", "sweat"]}, "sad-but-relieved-face": {"a": "sad but relieved face", "b": "1F625", "j": ["disappointed", "face", "relieved", "sad but relieved face", "whew"]}, "crying-face": {"a": "crying face", "b": "1F622", "j": ["cry", "crying face", "face", "sad", "tear"]}, "loudly-crying-face": {"a": "loudly crying face", "b": "1F62D", "j": ["cry", "face", "loudly crying face", "sad", "sob", "tear"]}, "face-screaming-in-fear": {"a": "face screaming in fear", "b": "1F631", "j": ["face", "face screaming in fear", "fear", "munch", "scared", "scream"]}, "confounded-face": {"a": "confounded face", "b": "1F616", "j": ["confounded", "face"]}, "persevering-face": {"a": "persevering face", "b": "1F623", "j": ["face", "persevere", "persevering face"]}, "disappointed-face": {"a": "disappointed face", "b": "1F61E", "j": ["disappointed", "face"]}, "downcast-face-with-sweat": {"a": "downcast face with sweat", "b": "1F613", "j": ["cold", "downcast face with sweat", "face", "sweat"]}, "weary-face": {"a": "weary face", "b": "1F629", "j": ["face", "tired", "weary"]}, "tired-face": {"a": "tired face", "b": "1F62B", "j": ["face", "tired"]}, "yawning-face": {"a": "yawning face", "b": "1F971", "j": ["bored", "tired", "yawn", "yawning face"]}, "face-with-steam-from-nose": {"a": "face with steam from nose", "b": "1F624", "j": ["face", "face with steam from nose", "triumph", "won"]}, "pouting-face": {"a": "pouting face", "b": "1F621", "j": ["angry", "face", "mad", "pouting", "rage", "red"]}, "angry-face": {"a": "angry face", "b": "1F620", "j": ["anger", "angry", "face", "mad"]}, "face-with-symbols-on-mouth": {"a": "face with symbols on mouth", "b": "1F92C", "j": ["face with symbols on mouth", "swearing", "cursing"]}, "smiling-face-with-horns": {"a": "smiling face with horns", "b": "1F608", "j": ["face", "fairy tale", "fantasy", "horns", "smile", "smiling face with horns"]}, "angry-face-with-horns": {"a": "angry face with horns", "b": "1F47F", "j": ["angry face with horns", "demon", "devil", "face", "fantasy", "imp"]}, "skull": {"a": "skull", "b": "1F480", "j": ["death", "face", "fairy tale", "monster", "skull"]}, "skull-and-crossbones": {"a": "skull and crossbones", "b": "2620", "j": ["crossbones", "death", "face", "monster", "skull", "skull and crossbones"]}, "pile-of-poo": {"a": "pile of poo", "b": "1F4A9", "j": ["dung", "face", "monster", "pile of poo", "poo", "poop"]}, "clown-face": {"a": "clown face", "b": "1F921", "j": ["clown", "face"]}, "ogre": {"a": "ogre", "b": "1F479", "j": ["creature", "face", "fairy tale", "fantasy", "monster", "ogre", "troll"]}, "goblin": {"a": "goblin", "b": "1F47A", "j": ["creature", "face", "fairy tale", "fantasy", "goblin", "monster"]}, "ghost": {"a": "ghost", "b": "1F47B", "j": ["creature", "face", "fairy tale", "fantasy", "ghost", "monster"]}, "alien": {"a": "alien", "b": "1F47D", "j": ["alien", "creature", "extraterrestrial", "face", "fantasy", "ufo"]}, "alien-monster": {"a": "alien monster", "b": "1F47E", "j": ["alien", "creature", "extraterrestrial", "face", "monster", "ufo"]}, "robot": {"a": "robot", "b": "1F916", "j": ["face", "monster", "robot"]}, "grinning-cat": {"a": "grinning cat", "b": "1F63A", "j": ["cat", "face", "grinning", "mouth", "open", "smile"]}, "grinning-cat-with-smiling-eyes": {"a": "grinning cat with smiling eyes", "b": "1F638", "j": ["cat", "eye", "face", "grin", "grinning cat with smiling eyes", "smile"]}, "cat-with-tears-of-joy": {"a": "cat with tears of joy", "b": "1F639", "j": ["cat", "cat with tears of joy", "face", "joy", "tear"]}, "smiling-cat-with-hearteyes": {"a": "smiling cat with heart-eyes", "b": "1F63B", "j": ["cat", "eye", "face", "heart", "love", "smile", "smiling cat with heart-eyes"]}, "cat-with-wry-smile": {"a": "cat with wry smile", "b": "1F63C", "j": ["cat", "cat with wry smile", "face", "ironic", "smile", "wry"]}, "kissing-cat": {"a": "kissing cat", "b": "1F63D", "j": ["cat", "eye", "face", "kiss", "kissing cat"]}, "weary-cat": {"a": "weary cat", "b": "1F640", "j": ["cat", "face", "oh", "surprised", "weary"]}, "crying-cat": {"a": "crying cat", "b": "1F63F", "j": ["cat", "cry", "crying cat", "face", "sad", "tear"]}, "pouting-cat": {"a": "pouting cat", "b": "1F63E", "j": ["cat", "face", "pouting"]}, "seenoevil-monkey": {"a": "see-no-evil monkey", "b": "1F648", "j": ["evil", "face", "forbidden", "monkey", "see", "see-no-evil monkey"]}, "hearnoevil-monkey": {"a": "hear-no-evil monkey", "b": "1F649", "j": ["evil", "face", "forbidden", "hear", "hear-no-evil monkey", "monkey"]}, "speaknoevil-monkey": {"a": "speak-no-evil monkey", "b": "1F64A", "j": ["evil", "face", "forbidden", "monkey", "speak", "speak-no-evil monkey"]}, "kiss-mark": {"a": "kiss mark", "b": "1F48B", "j": ["kiss", "kiss mark", "lips"]}, "love-letter": {"a": "love letter", "b": "1F48C", "j": ["heart", "letter", "love", "mail"]}, "heart-with-arrow": {"a": "heart with arrow", "b": "1F498", "j": ["arrow", "cupid", "heart with arrow"]}, "heart-with-ribbon": {"a": "heart with ribbon", "b": "1F49D", "j": ["heart with ribbon", "ribbon", "valentine"]}, "sparkling-heart": {"a": "sparkling heart", "b": "1F496", "j": ["excited", "sparkle", "sparkling heart"]}, "growing-heart": {"a": "growing heart", "b": "1F497", "j": ["excited", "growing", "growing heart", "nervous", "pulse"]}, "beating-heart": {"a": "beating heart", "b": "1F493", "j": ["beating", "beating heart", "heartbeat", "pulsating"]}, "revolving-hearts": {"a": "revolving hearts", "b": "1F49E", "j": ["revolving", "revolving hearts"]}, "two-hearts": {"a": "two hearts", "b": "1F495", "j": ["love", "two hearts"]}, "heart-decoration": {"a": "heart decoration", "b": "1F49F", "j": ["heart", "heart decoration"]}, "heart-exclamation": {"a": "heart exclamation", "b": "2763", "j": ["exclamation", "heart exclamation", "mark", "punctuation"]}, "broken-heart": {"a": "broken heart", "b": "1F494", "j": ["break", "broken", "broken heart"]}, "heart-on-fire": {"a": "⊛ heart on fire", "b": "2764-FE0F-200D-1F525", "j": ["burn", "heart", "heart on fire", "love", "lust", "sacred heart"]}, "mending-heart": {"a": "⊛ mending heart", "b": "2764-FE0F-200D-1FA79", "j": ["healthier", "improving", "mending", "mending heart", "recovering", "recuperating", "well"]}, "red-heart": {"a": "red heart", "b": "2764", "j": ["heart", "red heart"]}, "orange-heart": {"a": "orange heart", "b": "1F9E1", "j": ["orange", "orange heart"]}, "yellow-heart": {"a": "yellow heart", "b": "1F49B", "j": ["yellow", "yellow heart"]}, "green-heart": {"a": "green heart", "b": "1F49A", "j": ["green", "green heart"]}, "blue-heart": {"a": "blue heart", "b": "1F499", "j": ["blue", "blue heart"]}, "purple-heart": {"a": "purple heart", "b": "1F49C", "j": ["purple", "purple heart"]}, "brown-heart": {"a": "brown heart", "b": "1F90E", "j": ["brown", "heart"]}, "black-heart": {"a": "black heart", "b": "1F5A4", "j": ["black", "black heart", "evil", "wicked"]}, "white-heart": {"a": "white heart", "b": "1F90D", "j": ["heart", "white"]}, "hundred-points": {"a": "hundred points", "b": "1F4AF", "j": ["100", "full", "hundred", "hundred points", "score"]}, "anger-symbol": {"a": "anger symbol", "b": "1F4A2", "j": ["anger symbol", "angry", "comic", "mad"]}, "collision": {"a": "collision", "b": "1F4A5", "j": ["boom", "collision", "comic"]}, "dizzy": {"a": "dizzy", "b": "1F4AB", "j": ["comic", "dizzy", "star"]}, "sweat-droplets": {"a": "sweat droplets", "b": "1F4A6", "j": ["comic", "splashing", "sweat", "sweat droplets"]}, "dashing-away": {"a": "dashing away", "b": "1F4A8", "j": ["comic", "dash", "dashing away", "running"]}, "hole": {"a": "hole", "b": "1F573", "j": ["hole"]}, "bomb": {"a": "bomb", "b": "1F4A3", "j": ["bomb", "comic"]}, "speech-balloon": {"a": "speech balloon", "b": "1F4AC", "j": ["balloon", "bubble", "comic", "dialog", "speech"]}, "eye-in-speech-bubble": {"a": "eye in speech bubble", "b": "1F441-FE0F-200D-1F5E8-FE0F", "j": ["eye", "eye in speech bubble", "speech bubble", "witness"]}, "left-speech-bubble": {"a": "left speech bubble", "b": "1F5E8", "j": ["dialog", "left speech bubble", "speech"]}, "right-anger-bubble": {"a": "right anger bubble", "b": "1F5EF", "j": ["angry", "balloon", "bubble", "mad", "right anger bubble"]}, "thought-balloon": {"a": "thought balloon", "b": "1F4AD", "j": ["balloon", "bubble", "comic", "thought"]}, "zzz": {"a": "zzz", "b": "1F4A4", "j": ["comic", "sleep", "zzz"]}, "waving-hand": {"a": "waving hand", "b": "1F44B", "j": ["hand", "wave", "waving"]}, "raised-back-of-hand": {"a": "raised back of hand", "b": "1F91A", "j": ["backhand", "raised", "raised back of hand"]}, "hand-with-fingers-splayed": {"a": "hand with fingers splayed", "b": "1F590", "j": ["finger", "hand", "hand with fingers splayed", "splayed"]}, "raised-hand": {"a": "raised hand", "b": "270B", "j": ["hand", "high 5", "high five", "raised hand"]}, "vulcan-salute": {"a": "vulcan salute", "b": "1F596", "j": ["finger", "hand", "spock", "vulcan", "vulcan salute"]}, "ok-hand": {"a": "OK hand", "b": "1F44C", "j": ["hand", "OK"]}, "pinched-fingers": {"a": "pinched fingers", "b": "1F90C", "j": ["fingers", "hand gesture", "interrogation", "pinched", "sarcastic"]}, "pinching-hand": {"a": "pinching hand", "b": "1F90F", "j": ["pinching hand", "small amount"]}, "victory-hand": {"a": "victory hand", "b": "270C", "j": ["hand", "v", "victory"]}, "crossed-fingers": {"a": "crossed fingers", "b": "1F91E", "j": ["cross", "crossed fingers", "finger", "hand", "luck"]}, "loveyou-gesture": {"a": "love-you gesture", "b": "1F91F", "j": ["hand", "ILY", "love-you gesture"]}, "sign-of-the-horns": {"a": "sign of the horns", "b": "1F918", "j": ["finger", "hand", "horns", "rock-on", "sign of the horns"]}, "call-me-hand": {"a": "call me hand", "b": "1F919", "j": ["call", "call me hand", "hand"]}, "backhand-index-pointing-left": {"a": "backhand index pointing left", "b": "1F448", "j": ["backhand", "backhand index pointing left", "finger", "hand", "index", "point"]}, "backhand-index-pointing-right": {"a": "backhand index pointing right", "b": "1F449", "j": ["backhand", "backhand index pointing right", "finger", "hand", "index", "point"]}, "backhand-index-pointing-up": {"a": "backhand index pointing up", "b": "1F446", "j": ["backhand", "backhand index pointing up", "finger", "hand", "point", "up"]}, "middle-finger": {"a": "middle finger", "b": "1F595", "j": ["finger", "hand", "middle finger"]}, "backhand-index-pointing-down": {"a": "backhand index pointing down", "b": "1F447", "j": ["backhand", "backhand index pointing down", "down", "finger", "hand", "point"]}, "index-pointing-up": {"a": "index pointing up", "b": "261D", "j": ["finger", "hand", "index", "index pointing up", "point", "up"]}, "thumbs-up": {"a": "thumbs up", "b": "1F44D", "j": ["+1", "hand", "thumb", "thumbs up", "up"]}, "thumbs-down": {"a": "thumbs down", "b": "1F44E", "j": ["-1", "down", "hand", "thumb", "thumbs down"]}, "raised-fist": {"a": "raised fist", "b": "270A", "j": ["clenched", "fist", "hand", "punch", "raised fist"]}, "oncoming-fist": {"a": "oncoming fist", "b": "1F44A", "j": ["clenched", "fist", "hand", "oncoming fist", "punch"]}, "leftfacing-fist": {"a": "left-facing fist", "b": "1F91B", "j": ["fist", "left-facing fist", "leftwards"]}, "rightfacing-fist": {"a": "right-facing fist", "b": "1F91C", "j": ["fist", "right-facing fist", "rightwards"]}, "clapping-hands": {"a": "clapping hands", "b": "1F44F", "j": ["clap", "clapping hands", "hand"]}, "raising-hands": {"a": "raising hands", "b": "1F64C", "j": ["celebration", "gesture", "hand", "hooray", "raised", "raising hands"]}, "open-hands": {"a": "open hands", "b": "1F450", "j": ["hand", "open", "open hands"]}, "palms-up-together": {"a": "palms up together", "b": "1F932", "j": ["palms up together", "prayer", "cupped hands"]}, "handshake": {"a": "handshake", "b": "1F91D", "j": ["agreement", "hand", "handshake", "meeting", "shake"]}, "folded-hands": {"a": "folded hands", "b": "1F64F", "j": ["ask", "folded hands", "hand", "high 5", "high five", "please", "pray", "thanks"]}, "writing-hand": {"a": "writing hand", "b": "270D", "j": ["hand", "write", "writing hand"]}, "nail-polish": {"a": "nail polish", "b": "1F485", "j": ["care", "cosmetics", "manicure", "nail", "polish"]}, "selfie": {"a": "selfie", "b": "1F933", "j": ["camera", "phone", "selfie"]}, "flexed-biceps": {"a": "flexed biceps", "b": "1F4AA", "j": ["biceps", "comic", "flex", "flexed biceps", "muscle"]}, "mechanical-arm": {"a": "mechanical arm", "b": "1F9BE", "j": ["accessibility", "mechanical arm", "prosthetic"]}, "mechanical-leg": {"a": "mechanical leg", "b": "1F9BF", "j": ["accessibility", "mechanical leg", "prosthetic"]}, "leg": {"a": "leg", "b": "1F9B5", "j": ["kick", "leg", "limb"]}, "foot": {"a": "foot", "b": "1F9B6", "j": ["foot", "kick", "stomp"]}, "ear": {"a": "ear", "b": "1F442", "j": ["body", "ear"]}, "ear-with-hearing-aid": {"a": "ear with hearing aid", "b": "1F9BB", "j": ["accessibility", "ear with hearing aid", "hard of hearing"]}, "nose": {"a": "nose", "b": "1F443", "j": ["body", "nose"]}, "brain": {"a": "brain", "b": "1F9E0", "j": ["brain", "intelligent"]}, "anatomical-heart": {"a": "anatomical heart", "b": "1FAC0", "j": ["anatomical", "cardiology", "heart", "organ", "pulse"]}, "lungs": {"a": "lungs", "b": "1FAC1", "j": ["breath", "exhalation", "inhalation", "lungs", "organ", "respiration"]}, "tooth": {"a": "tooth", "b": "1F9B7", "j": ["dentist", "tooth"]}, "bone": {"a": "bone", "b": "1F9B4", "j": ["bone", "skeleton"]}, "eyes": {"a": "eyes", "b": "1F440", "j": ["eye", "eyes", "face"]}, "eye": {"a": "eye", "b": "1F441", "j": ["body", "eye"]}, "tongue": {"a": "tongue", "b": "1F445", "j": ["body", "tongue"]}, "mouth": {"a": "mouth", "b": "1F444", "j": ["lips", "mouth"]}, "baby": {"a": "baby", "b": "1F476", "j": ["baby", "young"]}, "child": {"a": "child", "b": "1F9D2", "j": ["child", "gender-neutral", "unspecified gender", "young"]}, "boy": {"a": "boy", "b": "1F466", "j": ["boy", "young"]}, "girl": {"a": "girl", "b": "1F467", "j": ["girl", "Virgo", "young", "zodiac"]}, "person": {"a": "person", "b": "1F9D1", "j": ["adult", "gender-neutral", "person", "unspecified gender"]}, "person-blond-hair": {"a": "person: blond hair", "b": "1F471", "j": ["blond", "blond-haired person", "hair", "person: blond hair"]}, "man": {"a": "man", "b": "1F468", "j": ["adult", "man"]}, "person-beard": {"a": "person: beard", "b": "1F9D4", "j": ["beard", "person", "person: beard", "bewhiskered"]}, "man-beard": {"a": "⊛ man: beard", "b": "1F9D4-200D-2642-FE0F", "j": ["beard", "man", "man: beard"]}, "woman-beard": {"a": "⊛ woman: beard", "b": "1F9D4-200D-2640-FE0F", "j": ["beard", "woman", "woman: beard"]}, "man-red-hair": {"a": "man: red hair", "b": "1F468-200D-1F9B0", "j": ["adult", "man", "red hair"]}, "man-curly-hair": {"a": "man: curly hair", "b": "1F468-200D-1F9B1", "j": ["adult", "curly hair", "man"]}, "man-white-hair": {"a": "man: white hair", "b": "1F468-200D-1F9B3", "j": ["adult", "man", "white hair"]}, "man-bald": {"a": "man: bald", "b": "1F468-200D-1F9B2", "j": ["adult", "bald", "man"]}, "woman": {"a": "woman", "b": "1F469", "j": ["adult", "woman"]}, "woman-red-hair": {"a": "woman: red hair", "b": "1F469-200D-1F9B0", "j": ["adult", "red hair", "woman"]}, "person-red-hair": {"a": "person: red hair", "b": "1F9D1-200D-1F9B0", "j": ["adult", "gender-neutral", "person", "red hair", "unspecified gender"]}, "woman-curly-hair": {"a": "woman: curly hair", "b": "1F469-200D-1F9B1", "j": ["adult", "curly hair", "woman"]}, "person-curly-hair": {"a": "person: curly hair", "b": "1F9D1-200D-1F9B1", "j": ["adult", "curly hair", "gender-neutral", "person", "unspecified gender"]}, "woman-white-hair": {"a": "woman: white hair", "b": "1F469-200D-1F9B3", "j": ["adult", "white hair", "woman"]}, "person-white-hair": {"a": "person: white hair", "b": "1F9D1-200D-1F9B3", "j": ["adult", "gender-neutral", "person", "unspecified gender", "white hair"]}, "woman-bald": {"a": "woman: bald", "b": "1F469-200D-1F9B2", "j": ["adult", "bald", "woman"]}, "person-bald": {"a": "person: bald", "b": "1F9D1-200D-1F9B2", "j": ["adult", "bald", "gender-neutral", "person", "unspecified gender"]}, "woman-blond-hair": {"a": "woman: blond hair", "b": "1F471-200D-2640-FE0F", "j": ["blond-haired woman", "blonde", "hair", "woman", "woman: blond hair"]}, "man-blond-hair": {"a": "man: blond hair", "b": "1F471-200D-2642-FE0F", "j": ["blond", "blond-haired man", "hair", "man", "man: blond hair"]}, "older-person": {"a": "older person", "b": "1F9D3", "j": ["adult", "gender-neutral", "old", "older person", "unspecified gender"]}, "old-man": {"a": "old man", "b": "1F474", "j": ["adult", "man", "old"]}, "old-woman": {"a": "old woman", "b": "1F475", "j": ["adult", "old", "woman"]}, "person-frowning": {"a": "person frowning", "b": "1F64D", "j": ["frown", "gesture", "person frowning"]}, "man-frowning": {"a": "man frowning", "b": "1F64D-200D-2642-FE0F", "j": ["frowning", "gesture", "man"]}, "woman-frowning": {"a": "woman frowning", "b": "1F64D-200D-2640-FE0F", "j": ["frowning", "gesture", "woman"]}, "person-pouting": {"a": "person pouting", "b": "1F64E", "j": ["gesture", "person pouting", "pouting"]}, "man-pouting": {"a": "man pouting", "b": "1F64E-200D-2642-FE0F", "j": ["gesture", "man", "pouting"]}, "woman-pouting": {"a": "woman pouting", "b": "1F64E-200D-2640-FE0F", "j": ["gesture", "pouting", "woman"]}, "person-gesturing-no": {"a": "person gesturing NO", "b": "1F645", "j": ["forbidden", "gesture", "hand", "person gesturing NO", "prohibited"]}, "man-gesturing-no": {"a": "man gesturing NO", "b": "1F645-200D-2642-FE0F", "j": ["forbidden", "gesture", "hand", "man", "man gesturing NO", "prohibited"]}, "woman-gesturing-no": {"a": "woman gesturing NO", "b": "1F645-200D-2640-FE0F", "j": ["forbidden", "gesture", "hand", "prohibited", "woman", "woman gesturing NO"]}, "person-gesturing-ok": {"a": "person gesturing OK", "b": "1F646", "j": ["gesture", "hand", "OK", "person gesturing OK"]}, "man-gesturing-ok": {"a": "man gesturing OK", "b": "1F646-200D-2642-FE0F", "j": ["gesture", "hand", "man", "man gesturing OK", "OK"]}, "woman-gesturing-ok": {"a": "woman gesturing OK", "b": "1F646-200D-2640-FE0F", "j": ["gesture", "hand", "OK", "woman", "woman gesturing OK"]}, "person-tipping-hand": {"a": "person tipping hand", "b": "1F481", "j": ["hand", "help", "information", "person tipping hand", "sassy", "tipping"]}, "man-tipping-hand": {"a": "man tipping hand", "b": "1F481-200D-2642-FE0F", "j": ["man", "man tipping hand", "sassy", "tipping hand"]}, "woman-tipping-hand": {"a": "woman tipping hand", "b": "1F481-200D-2640-FE0F", "j": ["sassy", "tipping hand", "woman", "woman tipping hand"]}, "person-raising-hand": {"a": "person raising hand", "b": "1F64B", "j": ["gesture", "hand", "happy", "person raising hand", "raised"]}, "man-raising-hand": {"a": "man raising hand", "b": "1F64B-200D-2642-FE0F", "j": ["gesture", "man", "man raising hand", "raising hand"]}, "woman-raising-hand": {"a": "woman raising hand", "b": "1F64B-200D-2640-FE0F", "j": ["gesture", "raising hand", "woman", "woman raising hand"]}, "deaf-person": {"a": "deaf person", "b": "1F9CF", "j": ["accessibility", "deaf", "deaf person", "ear", "hear"]}, "deaf-man": {"a": "deaf man", "b": "1F9CF-200D-2642-FE0F", "j": ["deaf", "man"]}, "deaf-woman": {"a": "deaf woman", "b": "1F9CF-200D-2640-FE0F", "j": ["deaf", "woman"]}, "person-bowing": {"a": "person bowing", "b": "1F647", "j": ["apology", "bow", "gesture", "person bowing", "sorry"]}, "man-bowing": {"a": "man bowing", "b": "1F647-200D-2642-FE0F", "j": ["apology", "bowing", "favor", "gesture", "man", "sorry"]}, "woman-bowing": {"a": "woman bowing", "b": "1F647-200D-2640-FE0F", "j": ["apology", "bowing", "favor", "gesture", "sorry", "woman"]}, "person-facepalming": {"a": "person facepalming", "b": "1F926", "j": ["disbelief", "exasperation", "face", "palm", "person facepalming"]}, "man-facepalming": {"a": "man facepalming", "b": "1F926-200D-2642-FE0F", "j": ["disbelief", "exasperation", "facepalm", "man", "man facepalming"]}, "woman-facepalming": {"a": "woman facepalming", "b": "1F926-200D-2640-FE0F", "j": ["disbelief", "exasperation", "facepalm", "woman", "woman facepalming"]}, "person-shrugging": {"a": "person shrugging", "b": "1F937", "j": ["doubt", "ignorance", "indifference", "person shrugging", "shrug"]}, "man-shrugging": {"a": "man shrugging", "b": "1F937-200D-2642-FE0F", "j": ["doubt", "ignorance", "indifference", "man", "man shrugging", "shrug"]}, "woman-shrugging": {"a": "woman shrugging", "b": "1F937-200D-2640-FE0F", "j": ["doubt", "ignorance", "indifference", "shrug", "woman", "woman shrugging"]}, "health-worker": {"a": "health worker", "b": "1F9D1-200D-2695-FE0F", "j": ["doctor", "health worker", "healthcare", "nurse", "therapist"]}, "man-health-worker": {"a": "man health worker", "b": "1F468-200D-2695-FE0F", "j": ["doctor", "healthcare", "man", "man health worker", "nurse", "therapist"]}, "woman-health-worker": {"a": "woman health worker", "b": "1F469-200D-2695-FE0F", "j": ["doctor", "healthcare", "nurse", "therapist", "woman", "woman health worker"]}, "student": {"a": "student", "b": "1F9D1-200D-1F393", "j": ["graduate", "student"]}, "man-student": {"a": "man student", "b": "1F468-200D-1F393", "j": ["graduate", "man", "student"]}, "woman-student": {"a": "woman student", "b": "1F469-200D-1F393", "j": ["graduate", "student", "woman"]}, "teacher": {"a": "teacher", "b": "1F9D1-200D-1F3EB", "j": ["instructor", "professor", "teacher"]}, "man-teacher": {"a": "man teacher", "b": "1F468-200D-1F3EB", "j": ["instructor", "man", "professor", "teacher"]}, "woman-teacher": {"a": "woman teacher", "b": "1F469-200D-1F3EB", "j": ["instructor", "professor", "teacher", "woman"]}, "judge": {"a": "judge", "b": "1F9D1-200D-2696-FE0F", "j": ["judge", "justice", "scales"]}, "man-judge": {"a": "man judge", "b": "1F468-200D-2696-FE0F", "j": ["judge", "justice", "man", "scales"]}, "woman-judge": {"a": "woman judge", "b": "1F469-200D-2696-FE0F", "j": ["judge", "justice", "scales", "woman"]}, "farmer": {"a": "farmer", "b": "1F9D1-200D-1F33E", "j": ["farmer", "gardener", "rancher"]}, "man-farmer": {"a": "man farmer", "b": "1F468-200D-1F33E", "j": ["farmer", "gardener", "man", "rancher"]}, "woman-farmer": {"a": "woman farmer", "b": "1F469-200D-1F33E", "j": ["farmer", "gardener", "rancher", "woman"]}, "cook": {"a": "cook", "b": "1F9D1-200D-1F373", "j": ["chef", "cook"]}, "man-cook": {"a": "man cook", "b": "1F468-200D-1F373", "j": ["chef", "cook", "man"]}, "woman-cook": {"a": "woman cook", "b": "1F469-200D-1F373", "j": ["chef", "cook", "woman"]}, "mechanic": {"a": "mechanic", "b": "1F9D1-200D-1F527", "j": ["electrician", "mechanic", "plumber", "tradesperson"]}, "man-mechanic": {"a": "man mechanic", "b": "1F468-200D-1F527", "j": ["electrician", "man", "mechanic", "plumber", "tradesperson"]}, "woman-mechanic": {"a": "woman mechanic", "b": "1F469-200D-1F527", "j": ["electrician", "mechanic", "plumber", "tradesperson", "woman"]}, "factory-worker": {"a": "factory worker", "b": "1F9D1-200D-1F3ED", "j": ["assembly", "factory", "industrial", "worker"]}, "man-factory-worker": {"a": "man factory worker", "b": "1F468-200D-1F3ED", "j": ["assembly", "factory", "industrial", "man", "worker"]}, "woman-factory-worker": {"a": "woman factory worker", "b": "1F469-200D-1F3ED", "j": ["assembly", "factory", "industrial", "woman", "worker"]}, "office-worker": {"a": "office worker", "b": "1F9D1-200D-1F4BC", "j": ["architect", "business", "manager", "office worker", "white-collar"]}, "man-office-worker": {"a": "man office worker", "b": "1F468-200D-1F4BC", "j": ["architect", "business", "man", "man office worker", "manager", "white-collar"]}, "woman-office-worker": {"a": "woman office worker", "b": "1F469-200D-1F4BC", "j": ["architect", "business", "manager", "white-collar", "woman", "woman office worker"]}, "scientist": {"a": "scientist", "b": "1F9D1-200D-1F52C", "j": ["biologist", "chemist", "engineer", "physicist", "scientist"]}, "man-scientist": {"a": "man scientist", "b": "1F468-200D-1F52C", "j": ["biologist", "chemist", "engineer", "man", "physicist", "scientist"]}, "woman-scientist": {"a": "woman scientist", "b": "1F469-200D-1F52C", "j": ["biologist", "chemist", "engineer", "physicist", "scientist", "woman"]}, "technologist": {"a": "technologist", "b": "1F9D1-200D-1F4BB", "j": ["coder", "developer", "inventor", "software", "technologist"]}, "man-technologist": {"a": "man technologist", "b": "1F468-200D-1F4BB", "j": ["coder", "developer", "inventor", "man", "software", "technologist"]}, "woman-technologist": {"a": "woman technologist", "b": "1F469-200D-1F4BB", "j": ["coder", "developer", "inventor", "software", "technologist", "woman"]}, "singer": {"a": "singer", "b": "1F9D1-200D-1F3A4", "j": ["actor", "entertainer", "rock", "singer", "star"]}, "man-singer": {"a": "man singer", "b": "1F468-200D-1F3A4", "j": ["actor", "entertainer", "man", "rock", "singer", "star"]}, "woman-singer": {"a": "woman singer", "b": "1F469-200D-1F3A4", "j": ["actor", "entertainer", "rock", "singer", "star", "woman"]}, "artist": {"a": "artist", "b": "1F9D1-200D-1F3A8", "j": ["artist", "palette"]}, "man-artist": {"a": "man artist", "b": "1F468-200D-1F3A8", "j": ["artist", "man", "palette"]}, "woman-artist": {"a": "woman artist", "b": "1F469-200D-1F3A8", "j": ["artist", "palette", "woman"]}, "pilot": {"a": "pilot", "b": "1F9D1-200D-2708-FE0F", "j": ["pilot", "plane"]}, "man-pilot": {"a": "man pilot", "b": "1F468-200D-2708-FE0F", "j": ["man", "pilot", "plane"]}, "woman-pilot": {"a": "woman pilot", "b": "1F469-200D-2708-FE0F", "j": ["pilot", "plane", "woman"]}, "astronaut": {"a": "astronaut", "b": "1F9D1-200D-1F680", "j": ["astronaut", "rocket"]}, "man-astronaut": {"a": "man astronaut", "b": "1F468-200D-1F680", "j": ["astronaut", "man", "rocket"]}, "woman-astronaut": {"a": "woman astronaut", "b": "1F469-200D-1F680", "j": ["astronaut", "rocket", "woman"]}, "firefighter": {"a": "firefighter", "b": "1F9D1-200D-1F692", "j": ["firefighter", "firetruck"]}, "man-firefighter": {"a": "man firefighter", "b": "1F468-200D-1F692", "j": ["firefighter", "firetruck", "man"]}, "woman-firefighter": {"a": "woman firefighter", "b": "1F469-200D-1F692", "j": ["firefighter", "firetruck", "woman"]}, "police-officer": {"a": "police officer", "b": "1F46E", "j": ["cop", "officer", "police"]}, "man-police-officer": {"a": "man police officer", "b": "1F46E-200D-2642-FE0F", "j": ["cop", "man", "officer", "police"]}, "woman-police-officer": {"a": "woman police officer", "b": "1F46E-200D-2640-FE0F", "j": ["cop", "officer", "police", "woman"]}, "detective": {"a": "detective", "b": "1F575", "j": ["detective", "sleuth", "spy"]}, "man-detective": {"a": "man detective", "b": "1F575-FE0F-200D-2642-FE0F", "j": ["detective", "man", "sleuth", "spy"]}, "woman-detective": {"a": "woman detective", "b": "1F575-FE0F-200D-2640-FE0F", "j": ["detective", "sleuth", "spy", "woman"]}, "guard": {"a": "guard", "b": "1F482", "j": ["guard"]}, "man-guard": {"a": "man guard", "b": "1F482-200D-2642-FE0F", "j": ["guard", "man"]}, "woman-guard": {"a": "woman guard", "b": "1F482-200D-2640-FE0F", "j": ["guard", "woman"]}, "ninja": {"a": "ninja", "b": "1F977", "j": ["fighter", "hidden", "ninja", "stealth"]}, "construction-worker": {"a": "construction worker", "b": "1F477", "j": ["construction", "hat", "worker"]}, "man-construction-worker": {"a": "man construction worker", "b": "1F477-200D-2642-FE0F", "j": ["construction", "man", "worker"]}, "woman-construction-worker": {"a": "woman construction worker", "b": "1F477-200D-2640-FE0F", "j": ["construction", "woman", "worker"]}, "prince": {"a": "prince", "b": "1F934", "j": ["prince"]}, "princess": {"a": "princess", "b": "1F478", "j": ["fairy tale", "fantasy", "princess"]}, "person-wearing-turban": {"a": "person wearing turban", "b": "1F473", "j": ["person wearing turban", "turban"]}, "man-wearing-turban": {"a": "man wearing turban", "b": "1F473-200D-2642-FE0F", "j": ["man", "man wearing turban", "turban"]}, "woman-wearing-turban": {"a": "woman wearing turban", "b": "1F473-200D-2640-FE0F", "j": ["turban", "woman", "woman wearing turban"]}, "person-with-skullcap": {"a": "person with skullcap", "b": "1F472", "j": ["cap", "gua pi mao", "hat", "person", "person with skullcap", "skullcap"]}, "woman-with-headscarf": {"a": "woman with headscarf", "b": "1F9D5", "j": ["headscarf", "hijab", "mantilla", "tichel", "woman with headscarf", "bandana", "head kerchief"]}, "person-in-tuxedo": {"a": "person in tuxedo", "b": "1F935", "j": ["groom", "person", "person in tuxedo", "tuxedo"]}, "man-in-tuxedo": {"a": "man in tuxedo", "b": "1F935-200D-2642-FE0F", "j": ["man", "man in tuxedo", "tuxedo"]}, "woman-in-tuxedo": {"a": "woman in tuxedo", "b": "1F935-200D-2640-FE0F", "j": ["tuxedo", "woman", "woman in tuxedo"]}, "person-with-veil": {"a": "person with veil", "b": "1F470", "j": ["bride", "person", "person with veil", "veil", "wedding"]}, "man-with-veil": {"a": "man with veil", "b": "1F470-200D-2642-FE0F", "j": ["man", "man with veil", "veil"]}, "woman-with-veil": {"a": "woman with veil", "b": "1F470-200D-2640-FE0F", "j": ["veil", "woman", "woman with veil"]}, "pregnant-woman": {"a": "pregnant woman", "b": "1F930", "j": ["pregnant", "woman"]}, "breastfeeding": {"a": "breast-feeding", "b": "1F931", "j": ["baby", "breast", "breast-feeding", "nursing"]}, "woman-feeding-baby": {"a": "woman feeding baby", "b": "1F469-200D-1F37C", "j": ["baby", "feeding", "nursing", "woman"]}, "man-feeding-baby": {"a": "man feeding baby", "b": "1F468-200D-1F37C", "j": ["baby", "feeding", "man", "nursing"]}, "person-feeding-baby": {"a": "person feeding baby", "b": "1F9D1-200D-1F37C", "j": ["baby", "feeding", "nursing", "person"]}, "baby-angel": {"a": "baby angel", "b": "1F47C", "j": ["angel", "baby", "face", "fairy tale", "fantasy"]}, "santa-claus": {"a": "Santa Claus", "b": "1F385", "j": ["celebration", "Christmas", "claus", "father", "santa", "Santa Claus"]}, "mrs-claus": {"a": "Mrs. Claus", "b": "1F936", "j": ["celebration", "Christmas", "claus", "mother", "Mrs.", "Mrs. Claus"]}, "mx-claus": {"a": "mx claus", "b": "1F9D1-200D-1F384", "j": ["Claus, christmas", "mx claus"]}, "superhero": {"a": "superhero", "b": "1F9B8", "j": ["good", "hero", "heroine", "superhero", "superpower"]}, "man-superhero": {"a": "man superhero", "b": "1F9B8-200D-2642-FE0F", "j": ["good", "hero", "man", "man superhero", "superpower"]}, "woman-superhero": {"a": "woman superhero", "b": "1F9B8-200D-2640-FE0F", "j": ["good", "hero", "heroine", "superpower", "woman", "woman superhero"]}, "supervillain": {"a": "supervillain", "b": "1F9B9", "j": ["criminal", "evil", "superpower", "supervillain", "villain"]}, "man-supervillain": {"a": "man supervillain", "b": "1F9B9-200D-2642-FE0F", "j": ["criminal", "evil", "man", "man supervillain", "superpower", "villain"]}, "woman-supervillain": {"a": "woman supervillain", "b": "1F9B9-200D-2640-FE0F", "j": ["criminal", "evil", "superpower", "villain", "woman", "woman supervillain"]}, "mage": {"a": "mage", "b": "1F9D9", "j": ["mage", "sorcerer", "sorceress", "witch", "wizard"]}, "man-mage": {"a": "man mage", "b": "1F9D9-200D-2642-FE0F", "j": ["man mage", "sorcerer", "wizard"]}, "woman-mage": {"a": "woman mage", "b": "1F9D9-200D-2640-FE0F", "j": ["sorceress", "witch", "woman mage"]}, "fairy": {"a": "fairy", "b": "1F9DA", "j": ["fairy", "Oberon", "Puck", "Titania"]}, "man-fairy": {"a": "man fairy", "b": "1F9DA-200D-2642-FE0F", "j": ["man fairy", "Oberon", "Puck"]}, "woman-fairy": {"a": "woman fairy", "b": "1F9DA-200D-2640-FE0F", "j": ["Titania", "woman fairy"]}, "vampire": {"a": "vampire", "b": "1F9DB", "j": ["Dracula", "undead", "vampire"]}, "man-vampire": {"a": "man vampire", "b": "1F9DB-200D-2642-FE0F", "j": ["Dracula", "man vampire", "undead"]}, "woman-vampire": {"a": "woman vampire", "b": "1F9DB-200D-2640-FE0F", "j": ["undead", "woman vampire"]}, "merperson": {"a": "merperson", "b": "1F9DC", "j": ["mermaid", "merman", "merperson", "merwoman"]}, "merman": {"a": "merman", "b": "1F9DC-200D-2642-FE0F", "j": ["merman", "Triton"]}, "mermaid": {"a": "mermaid", "b": "1F9DC-200D-2640-FE0F", "j": ["mermaid", "merwoman"]}, "elf": {"a": "elf", "b": "1F9DD", "j": ["elf", "magical", "LOTR style"]}, "man-elf": {"a": "man elf", "b": "1F9DD-200D-2642-FE0F", "j": ["magical", "man elf"]}, "woman-elf": {"a": "woman elf", "b": "1F9DD-200D-2640-FE0F", "j": ["magical", "woman elf"]}, "genie": {"a": "genie", "b": "1F9DE", "j": ["djinn", "genie", "(non-human color)"]}, "man-genie": {"a": "man genie", "b": "1F9DE-200D-2642-FE0F", "j": ["djinn", "man genie"]}, "woman-genie": {"a": "woman genie", "b": "1F9DE-200D-2640-FE0F", "j": ["djinn", "woman genie"]}, "zombie": {"a": "zombie", "b": "1F9DF", "j": ["undead", "walking dead", "zombie", "(non-human color)"]}, "man-zombie": {"a": "man zombie", "b": "1F9DF-200D-2642-FE0F", "j": ["man zombie", "undead", "walking dead"]}, "woman-zombie": {"a": "woman zombie", "b": "1F9DF-200D-2640-FE0F", "j": ["undead", "walking dead", "woman zombie"]}, "person-getting-massage": {"a": "person getting massage", "b": "1F486", "j": ["face", "massage", "person getting massage", "salon"]}, "man-getting-massage": {"a": "man getting massage", "b": "1F486-200D-2642-FE0F", "j": ["face", "man", "man getting massage", "massage"]}, "woman-getting-massage": {"a": "woman getting massage", "b": "1F486-200D-2640-FE0F", "j": ["face", "massage", "woman", "woman getting massage"]}, "person-getting-haircut": {"a": "person getting haircut", "b": "1F487", "j": ["barber", "beauty", "haircut", "parlor", "person getting haircut"]}, "man-getting-haircut": {"a": "man getting haircut", "b": "1F487-200D-2642-FE0F", "j": ["haircut", "man", "man getting haircut"]}, "woman-getting-haircut": {"a": "woman getting haircut", "b": "1F487-200D-2640-FE0F", "j": ["haircut", "woman", "woman getting haircut"]}, "person-walking": {"a": "person walking", "b": "1F6B6", "j": ["hike", "person walking", "walk", "walking"]}, "man-walking": {"a": "man walking", "b": "1F6B6-200D-2642-FE0F", "j": ["hike", "man", "man walking", "walk"]}, "woman-walking": {"a": "woman walking", "b": "1F6B6-200D-2640-FE0F", "j": ["hike", "walk", "woman", "woman walking"]}, "person-standing": {"a": "person standing", "b": "1F9CD", "j": ["person standing", "stand", "standing"]}, "man-standing": {"a": "man standing", "b": "1F9CD-200D-2642-FE0F", "j": ["man", "standing"]}, "woman-standing": {"a": "woman standing", "b": "1F9CD-200D-2640-FE0F", "j": ["standing", "woman"]}, "person-kneeling": {"a": "person kneeling", "b": "1F9CE", "j": ["kneel", "kneeling", "person kneeling"]}, "man-kneeling": {"a": "man kneeling", "b": "1F9CE-200D-2642-FE0F", "j": ["kneeling", "man"]}, "woman-kneeling": {"a": "woman kneeling", "b": "1F9CE-200D-2640-FE0F", "j": ["kneeling", "woman"]}, "person-with-white-cane": {"a": "person with white cane", "b": "1F9D1-200D-1F9AF", "j": ["accessibility", "blind", "person with white cane"]}, "man-with-white-cane": {"a": "man with white cane", "b": "1F468-200D-1F9AF", "j": ["accessibility", "blind", "man", "man with white cane"]}, "woman-with-white-cane": {"a": "woman with white cane", "b": "1F469-200D-1F9AF", "j": ["accessibility", "blind", "woman", "woman with white cane"]}, "person-in-motorized-wheelchair": {"a": "person in motorized wheelchair", "b": "1F9D1-200D-1F9BC", "j": ["accessibility", "person in motorized wheelchair", "wheelchair"]}, "man-in-motorized-wheelchair": {"a": "man in motorized wheelchair", "b": "1F468-200D-1F9BC", "j": ["accessibility", "man", "man in motorized wheelchair", "wheelchair"]}, "woman-in-motorized-wheelchair": {"a": "woman in motorized wheelchair", "b": "1F469-200D-1F9BC", "j": ["accessibility", "wheelchair", "woman", "woman in motorized wheelchair"]}, "person-in-manual-wheelchair": {"a": "person in manual wheelchair", "b": "1F9D1-200D-1F9BD", "j": ["accessibility", "person in manual wheelchair", "wheelchair"]}, "man-in-manual-wheelchair": {"a": "man in manual wheelchair", "b": "1F468-200D-1F9BD", "j": ["accessibility", "man", "man in manual wheelchair", "wheelchair"]}, "woman-in-manual-wheelchair": {"a": "woman in manual wheelchair", "b": "1F469-200D-1F9BD", "j": ["accessibility", "wheelchair", "woman", "woman in manual wheelchair"]}, "person-running": {"a": "person running", "b": "1F3C3", "j": ["marathon", "person running", "running"]}, "man-running": {"a": "man running", "b": "1F3C3-200D-2642-FE0F", "j": ["man", "marathon", "racing", "running"]}, "woman-running": {"a": "woman running", "b": "1F3C3-200D-2640-FE0F", "j": ["marathon", "racing", "running", "woman"]}, "woman-dancing": {"a": "woman dancing", "b": "1F483", "j": ["dance", "dancing", "woman"]}, "man-dancing": {"a": "man dancing", "b": "1F57A", "j": ["dance", "dancing", "man"]}, "person-in-suit-levitating": {"a": "person in suit levitating", "b": "1F574", "j": ["business", "person", "person in suit levitating", "suit"]}, "people-with-bunny-ears": {"a": "people with bunny ears", "b": "1F46F", "j": ["bunny ear", "dancer", "partying", "people with bunny ears"]}, "men-with-bunny-ears": {"a": "men with bunny ears", "b": "1F46F-200D-2642-FE0F", "j": ["bunny ear", "dancer", "men", "men with bunny ears", "partying"]}, "women-with-bunny-ears": {"a": "women with bunny ears", "b": "1F46F-200D-2640-FE0F", "j": ["bunny ear", "dancer", "partying", "women", "women with bunny ears"]}, "person-in-steamy-room": {"a": "person in steamy room", "b": "1F9D6", "j": ["person in steamy room", "sauna", "steam room", "hamam", "steambath"]}, "man-in-steamy-room": {"a": "man in steamy room", "b": "1F9D6-200D-2642-FE0F", "j": ["man in steamy room", "sauna", "steam room"]}, "woman-in-steamy-room": {"a": "woman in steamy room", "b": "1F9D6-200D-2640-FE0F", "j": ["sauna", "steam room", "woman in steamy room"]}, "person-climbing": {"a": "person climbing", "b": "1F9D7", "j": ["climber", "person climbing"]}, "man-climbing": {"a": "man climbing", "b": "1F9D7-200D-2642-FE0F", "j": ["climber", "man climbing"]}, "woman-climbing": {"a": "woman climbing", "b": "1F9D7-200D-2640-FE0F", "j": ["climber", "woman climbing"]}, "person-fencing": {"a": "person fencing", "b": "1F93A", "j": ["fencer", "fencing", "person fencing", "sword"]}, "horse-racing": {"a": "horse racing", "b": "1F3C7", "j": ["horse", "jockey", "racehorse", "racing"]}, "skier": {"a": "skier", "b": "26F7", "j": ["ski", "skier", "snow"]}, "snowboarder": {"a": "snowboarder", "b": "1F3C2", "j": ["ski", "snow", "snowboard", "snowboarder"]}, "person-golfing": {"a": "person golfing", "b": "1F3CC", "j": ["ball", "golf", "person golfing"]}, "man-golfing": {"a": "man golfing", "b": "1F3CC-FE0F-200D-2642-FE0F", "j": ["golf", "man", "man golfing"]}, "woman-golfing": {"a": "woman golfing", "b": "1F3CC-FE0F-200D-2640-FE0F", "j": ["golf", "woman", "woman golfing"]}, "person-surfing": {"a": "person surfing", "b": "1F3C4", "j": ["person surfing", "surfing"]}, "man-surfing": {"a": "man surfing", "b": "1F3C4-200D-2642-FE0F", "j": ["man", "surfing"]}, "woman-surfing": {"a": "woman surfing", "b": "1F3C4-200D-2640-FE0F", "j": ["surfing", "woman"]}, "person-rowing-boat": {"a": "person rowing boat", "b": "1F6A3", "j": ["boat", "person rowing boat", "rowboat"]}, "man-rowing-boat": {"a": "man rowing boat", "b": "1F6A3-200D-2642-FE0F", "j": ["boat", "man", "man rowing boat", "rowboat"]}, "woman-rowing-boat": {"a": "woman rowing boat", "b": "1F6A3-200D-2640-FE0F", "j": ["boat", "rowboat", "woman", "woman rowing boat"]}, "person-swimming": {"a": "person swimming", "b": "1F3CA", "j": ["person swimming", "swim"]}, "man-swimming": {"a": "man swimming", "b": "1F3CA-200D-2642-FE0F", "j": ["man", "man swimming", "swim"]}, "woman-swimming": {"a": "woman swimming", "b": "1F3CA-200D-2640-FE0F", "j": ["swim", "woman", "woman swimming"]}, "person-bouncing-ball": {"a": "person bouncing ball", "b": "26F9", "j": ["ball", "person bouncing ball"]}, "man-bouncing-ball": {"a": "man bouncing ball", "b": "26F9-FE0F-200D-2642-FE0F", "j": ["ball", "man", "man bouncing ball"]}, "woman-bouncing-ball": {"a": "woman bouncing ball", "b": "26F9-FE0F-200D-2640-FE0F", "j": ["ball", "woman", "woman bouncing ball"]}, "person-lifting-weights": {"a": "person lifting weights", "b": "1F3CB", "j": ["lifter", "person lifting weights", "weight"]}, "man-lifting-weights": {"a": "man lifting weights", "b": "1F3CB-FE0F-200D-2642-FE0F", "j": ["man", "man lifting weights", "weight lifter"]}, "woman-lifting-weights": {"a": "woman lifting weights", "b": "1F3CB-FE0F-200D-2640-FE0F", "j": ["weight lifter", "woman", "woman lifting weights"]}, "person-biking": {"a": "person biking", "b": "1F6B4", "j": ["bicycle", "biking", "cyclist", "person biking"]}, "man-biking": {"a": "man biking", "b": "1F6B4-200D-2642-FE0F", "j": ["bicycle", "biking", "cyclist", "man"]}, "woman-biking": {"a": "woman biking", "b": "1F6B4-200D-2640-FE0F", "j": ["bicycle", "biking", "cyclist", "woman"]}, "person-mountain-biking": {"a": "person mountain biking", "b": "1F6B5", "j": ["bicycle", "bicyclist", "bike", "cyclist", "mountain", "person mountain biking"]}, "man-mountain-biking": {"a": "man mountain biking", "b": "1F6B5-200D-2642-FE0F", "j": ["bicycle", "bike", "cyclist", "man", "man mountain biking", "mountain"]}, "woman-mountain-biking": {"a": "woman mountain biking", "b": "1F6B5-200D-2640-FE0F", "j": ["bicycle", "bike", "biking", "cyclist", "mountain", "woman"]}, "person-cartwheeling": {"a": "person cartwheeling", "b": "1F938", "j": ["cartwheel", "gymnastics", "person cartwheeling"]}, "man-cartwheeling": {"a": "man cartwheeling", "b": "1F938-200D-2642-FE0F", "j": ["cartwheel", "gymnastics", "man", "man cartwheeling"]}, "woman-cartwheeling": {"a": "woman cartwheeling", "b": "1F938-200D-2640-FE0F", "j": ["cartwheel", "gymnastics", "woman", "woman cartwheeling"]}, "people-wrestling": {"a": "people wrestling", "b": "1F93C", "j": ["people wrestling", "wrestle", "wrestler"]}, "men-wrestling": {"a": "men wrestling", "b": "1F93C-200D-2642-FE0F", "j": ["men", "men wrestling", "wrestle"]}, "women-wrestling": {"a": "women wrestling", "b": "1F93C-200D-2640-FE0F", "j": ["women", "women wrestling", "wrestle"]}, "person-playing-water-polo": {"a": "person playing water polo", "b": "1F93D", "j": ["person playing water polo", "polo", "water"]}, "man-playing-water-polo": {"a": "man playing water polo", "b": "1F93D-200D-2642-FE0F", "j": ["man", "man playing water polo", "water polo"]}, "woman-playing-water-polo": {"a": "woman playing water polo", "b": "1F93D-200D-2640-FE0F", "j": ["water polo", "woman", "woman playing water polo"]}, "person-playing-handball": {"a": "person playing handball", "b": "1F93E", "j": ["ball", "handball", "person playing handball"]}, "man-playing-handball": {"a": "man playing handball", "b": "1F93E-200D-2642-FE0F", "j": ["handball", "man", "man playing handball"]}, "woman-playing-handball": {"a": "woman playing handball", "b": "1F93E-200D-2640-FE0F", "j": ["handball", "woman", "woman playing handball"]}, "person-juggling": {"a": "person juggling", "b": "1F939", "j": ["balance", "juggle", "multitask", "person juggling", "skill"]}, "man-juggling": {"a": "man juggling", "b": "1F939-200D-2642-FE0F", "j": ["juggling", "man", "multitask"]}, "woman-juggling": {"a": "woman juggling", "b": "1F939-200D-2640-FE0F", "j": ["juggling", "multitask", "woman"]}, "person-in-lotus-position": {"a": "person in lotus position", "b": "1F9D8", "j": ["meditation", "person in lotus position", "yoga", "serenity"]}, "man-in-lotus-position": {"a": "man in lotus position", "b": "1F9D8-200D-2642-FE0F", "j": ["man in lotus position", "meditation", "yoga"]}, "woman-in-lotus-position": {"a": "woman in lotus position", "b": "1F9D8-200D-2640-FE0F", "j": ["meditation", "woman in lotus position", "yoga"]}, "person-taking-bath": {"a": "person taking bath", "b": "1F6C0", "j": ["bath", "bathtub", "person taking bath"]}, "person-in-bed": {"a": "person in bed", "b": "1F6CC", "j": ["hotel", "person in bed", "sleep"]}, "people-holding-hands": {"a": "people holding hands", "b": "1F9D1-200D-1F91D-200D-1F9D1", "j": ["couple", "hand", "hold", "holding hands", "people holding hands", "person"]}, "women-holding-hands": {"a": "women holding hands", "b": "1F46D", "j": ["couple", "hand", "holding hands", "women", "women holding hands"]}, "woman-and-man-holding-hands": {"a": "woman and man holding hands", "b": "1F46B", "j": ["couple", "hand", "hold", "holding hands", "man", "woman", "woman and man holding hands"]}, "men-holding-hands": {"a": "men holding hands", "b": "1F46C", "j": ["couple", "Gemini", "holding hands", "man", "men", "men holding hands", "twins", "zodiac"]}, "kiss": {"a": "kiss", "b": "1F48F", "j": ["couple", "kiss"]}, "kiss-woman-man": {"a": "kiss: woman, man", "b": "1F469-200D-2764-FE0F-200D-1F48B-200D-1F468", "j": ["couple", "kiss", "man", "woman"]}, "kiss-man-man": {"a": "kiss: man, man", "b": "1F468-200D-2764-FE0F-200D-1F48B-200D-1F468", "j": ["couple", "kiss", "man"]}, "kiss-woman-woman": {"a": "kiss: woman, woman", "b": "1F469-200D-2764-FE0F-200D-1F48B-200D-1F469", "j": ["couple", "kiss", "woman"]}, "couple-with-heart": {"a": "couple with heart", "b": "1F491", "j": ["couple", "couple with heart", "love"]}, "couple-with-heart-woman-man": {"a": "couple with heart: woman, man", "b": "1F469-200D-2764-FE0F-200D-1F468", "j": ["couple", "couple with heart", "love", "man", "woman"]}, "couple-with-heart-man-man": {"a": "couple with heart: man, man", "b": "1F468-200D-2764-FE0F-200D-1F468", "j": ["couple", "couple with heart", "love", "man"]}, "couple-with-heart-woman-woman": {"a": "couple with heart: woman, woman", "b": "1F469-200D-2764-FE0F-200D-1F469", "j": ["couple", "couple with heart", "love", "woman"]}, "family": {"a": "family", "b": "1F46A", "j": ["family"]}, "family-man-woman-boy": {"a": "family: man, woman, boy", "b": "1F468-200D-1F469-200D-1F466", "j": ["boy", "family", "man", "woman"]}, "family-man-woman-girl": {"a": "family: man, woman, girl", "b": "1F468-200D-1F469-200D-1F467", "j": ["family", "girl", "man", "woman"]}, "family-man-woman-girl-boy": {"a": "family: man, woman, girl, boy", "b": "1F468-200D-1F469-200D-1F467-200D-1F466", "j": ["boy", "family", "girl", "man", "woman"]}, "family-man-woman-boy-boy": {"a": "family: man, woman, boy, boy", "b": "1F468-200D-1F469-200D-1F466-200D-1F466", "j": ["boy", "family", "man", "woman"]}, "family-man-woman-girl-girl": {"a": "family: man, woman, girl, girl", "b": "1F468-200D-1F469-200D-1F467-200D-1F467", "j": ["family", "girl", "man", "woman"]}, "family-man-man-boy": {"a": "family: man, man, boy", "b": "1F468-200D-1F468-200D-1F466", "j": ["boy", "family", "man"]}, "family-man-man-girl": {"a": "family: man, man, girl", "b": "1F468-200D-1F468-200D-1F467", "j": ["family", "girl", "man"]}, "family-man-man-girl-boy": {"a": "family: man, man, girl, boy", "b": "1F468-200D-1F468-200D-1F467-200D-1F466", "j": ["boy", "family", "girl", "man"]}, "family-man-man-boy-boy": {"a": "family: man, man, boy, boy", "b": "1F468-200D-1F468-200D-1F466-200D-1F466", "j": ["boy", "family", "man"]}, "family-man-man-girl-girl": {"a": "family: man, man, girl, girl", "b": "1F468-200D-1F468-200D-1F467-200D-1F467", "j": ["family", "girl", "man"]}, "family-woman-woman-boy": {"a": "family: woman, woman, boy", "b": "1F469-200D-1F469-200D-1F466", "j": ["boy", "family", "woman"]}, "family-woman-woman-girl": {"a": "family: woman, woman, girl", "b": "1F469-200D-1F469-200D-1F467", "j": ["family", "girl", "woman"]}, "family-woman-woman-girl-boy": {"a": "family: woman, woman, girl, boy", "b": "1F469-200D-1F469-200D-1F467-200D-1F466", "j": ["boy", "family", "girl", "woman"]}, "family-woman-woman-boy-boy": {"a": "family: woman, woman, boy, boy", "b": "1F469-200D-1F469-200D-1F466-200D-1F466", "j": ["boy", "family", "woman"]}, "family-woman-woman-girl-girl": {"a": "family: woman, woman, girl, girl", "b": "1F469-200D-1F469-200D-1F467-200D-1F467", "j": ["family", "girl", "woman"]}, "family-man-boy": {"a": "family: man, boy", "b": "1F468-200D-1F466", "j": ["boy", "family", "man"]}, "family-man-boy-boy": {"a": "family: man, boy, boy", "b": "1F468-200D-1F466-200D-1F466", "j": ["boy", "family", "man"]}, "family-man-girl": {"a": "family: man, girl", "b": "1F468-200D-1F467", "j": ["family", "girl", "man"]}, "family-man-girl-boy": {"a": "family: man, girl, boy", "b": "1F468-200D-1F467-200D-1F466", "j": ["boy", "family", "girl", "man"]}, "family-man-girl-girl": {"a": "family: man, girl, girl", "b": "1F468-200D-1F467-200D-1F467", "j": ["family", "girl", "man"]}, "family-woman-boy": {"a": "family: woman, boy", "b": "1F469-200D-1F466", "j": ["boy", "family", "woman"]}, "family-woman-boy-boy": {"a": "family: woman, boy, boy", "b": "1F469-200D-1F466-200D-1F466", "j": ["boy", "family", "woman"]}, "family-woman-girl": {"a": "family: woman, girl", "b": "1F469-200D-1F467", "j": ["family", "girl", "woman"]}, "family-woman-girl-boy": {"a": "family: woman, girl, boy", "b": "1F469-200D-1F467-200D-1F466", "j": ["boy", "family", "girl", "woman"]}, "family-woman-girl-girl": {"a": "family: woman, girl, girl", "b": "1F469-200D-1F467-200D-1F467", "j": ["family", "girl", "woman"]}, "speaking-head": {"a": "speaking head", "b": "1F5E3", "j": ["face", "head", "silhouette", "speak", "speaking"]}, "bust-in-silhouette": {"a": "bust in silhouette", "b": "1F464", "j": ["bust", "bust in silhouette", "silhouette"]}, "busts-in-silhouette": {"a": "busts in silhouette", "b": "1F465", "j": ["bust", "busts in silhouette", "silhouette"]}, "people-hugging": {"a": "people hugging", "b": "1FAC2", "j": ["goodbye", "hello", "hug", "people hugging", "thanks"]}, "footprints": {"a": "footprints", "b": "1F463", "j": ["clothing", "footprint", "footprints", "print"]}, "red-hair": {"a": "red hair", "b": "1F9B0", "j": ["ginger", "red hair", "redhead"]}, "curly-hair": {"a": "curly hair", "b": "1F9B1", "j": ["afro", "curly", "curly hair", "ringlets"]}, "white-hair": {"a": "white hair", "b": "1F9B3", "j": ["gray", "hair", "old", "white"]}, "bald": {"a": "bald", "b": "1F9B2", "j": ["bald", "chemotherapy", "hairless", "no hair", "shaven"]}, "monkey-face": {"a": "monkey face", "b": "1F435", "j": ["face", "monkey"]}, "monkey": {"a": "monkey", "b": "1F412", "j": ["monkey"]}, "gorilla": {"a": "gorilla", "b": "1F98D", "j": ["gorilla"]}, "orangutan": {"a": "orangutan", "b": "1F9A7", "j": ["ape", "orangutan"]}, "dog-face": {"a": "dog face", "b": "1F436", "j": ["dog", "face", "pet"]}, "dog": {"a": "dog", "b": "1F415", "j": ["dog", "pet"]}, "guide-dog": {"a": "guide dog", "b": "1F9AE", "j": ["accessibility", "blind", "guide", "guide dog"]}, "service-dog": {"a": "service dog", "b": "1F415-200D-1F9BA", "j": ["accessibility", "assistance", "dog", "service"]}, "poodle": {"a": "poodle", "b": "1F429", "j": ["dog", "poodle"]}, "wolf": {"a": "wolf", "b": "1F43A", "j": ["face", "wolf"]}, "fox": {"a": "fox", "b": "1F98A", "j": ["face", "fox"]}, "raccoon": {"a": "raccoon", "b": "1F99D", "j": ["curious", "raccoon", "sly"]}, "cat-face": {"a": "cat face", "b": "1F431", "j": ["cat", "face", "pet"]}, "cat": {"a": "cat", "b": "1F408", "j": ["cat", "pet"]}, "black-cat": {"a": "black cat", "b": "1F408-200D-2B1B", "j": ["black", "cat", "unlucky"]}, "lion": {"a": "lion", "b": "1F981", "j": ["face", "Leo", "lion", "zodiac"]}, "tiger-face": {"a": "tiger face", "b": "1F42F", "j": ["face", "tiger"]}, "tiger": {"a": "tiger", "b": "1F405", "j": ["tiger"]}, "leopard": {"a": "leopard", "b": "1F406", "j": ["leopard"]}, "horse-face": {"a": "horse face", "b": "1F434", "j": ["face", "horse"]}, "horse": {"a": "horse", "b": "1F40E", "j": ["equestrian", "horse", "racehorse", "racing"]}, "unicorn": {"a": "unicorn", "b": "1F984", "j": ["face", "unicorn"]}, "zebra": {"a": "zebra", "b": "1F993", "j": ["stripe", "zebra"]}, "deer": {"a": "deer", "b": "1F98C", "j": ["deer"]}, "bison": {"a": "bison", "b": "1F9AC", "j": ["bison", "buffalo", "herd", "wisent"]}, "cow-face": {"a": "cow face", "b": "1F42E", "j": ["cow", "face"]}, "ox": {"a": "ox", "b": "1F402", "j": ["bull", "ox", "Taurus", "zodiac"]}, "water-buffalo": {"a": "water buffalo", "b": "1F403", "j": ["buffalo", "water"]}, "cow": {"a": "cow", "b": "1F404", "j": ["cow"]}, "pig-face": {"a": "pig face", "b": "1F437", "j": ["face", "pig"]}, "pig": {"a": "pig", "b": "1F416", "j": ["pig", "sow"]}, "boar": {"a": "boar", "b": "1F417", "j": ["boar", "pig"]}, "pig-nose": {"a": "pig nose", "b": "1F43D", "j": ["face", "nose", "pig"]}, "ram": {"a": "ram", "b": "1F40F", "j": ["Aries", "male", "ram", "sheep", "zodiac"]}, "ewe": {"a": "ewe", "b": "1F411", "j": ["ewe", "female", "sheep"]}, "goat": {"a": "goat", "b": "1F410", "j": ["Capricorn", "goat", "zodiac"]}, "camel": {"a": "camel", "b": "1F42A", "j": ["camel", "dromedary", "hump"]}, "twohump-camel": {"a": "two-hump camel", "b": "1F42B", "j": ["bactrian", "camel", "hump", "two-hump camel"]}, "llama": {"a": "llama", "b": "1F999", "j": ["alpaca", "guanaco", "llama", "vicuña", "wool"]}, "giraffe": {"a": "giraffe", "b": "1F992", "j": ["giraffe", "spots"]}, "elephant": {"a": "elephant", "b": "1F418", "j": ["elephant"]}, "mammoth": {"a": "mammoth", "b": "1F9A3", "j": ["extinction", "large", "mammoth", "tusk", "woolly"]}, "rhinoceros": {"a": "rhinoceros", "b": "1F98F", "j": ["rhinoceros"]}, "hippopotamus": {"a": "hippopotamus", "b": "1F99B", "j": ["hippo", "hippopotamus"]}, "mouse-face": {"a": "mouse face", "b": "1F42D", "j": ["face", "mouse"]}, "mouse": {"a": "mouse", "b": "1F401", "j": ["mouse"]}, "rat": {"a": "rat", "b": "1F400", "j": ["rat"]}, "hamster": {"a": "hamster", "b": "1F439", "j": ["face", "hamster", "pet"]}, "rabbit-face": {"a": "rabbit face", "b": "1F430", "j": ["bunny", "face", "pet", "rabbit"]}, "rabbit": {"a": "rabbit", "b": "1F407", "j": ["bunny", "pet", "rabbit"]}, "chipmunk": {"a": "chipmunk", "b": "1F43F", "j": ["chipmunk", "squirrel"]}, "beaver": {"a": "beaver", "b": "1F9AB", "j": ["beaver", "dam"]}, "hedgehog": {"a": "hedgehog", "b": "1F994", "j": ["hedgehog", "spiny"]}, "bat": {"a": "bat", "b": "1F987", "j": ["bat", "vampire"]}, "bear": {"a": "bear", "b": "1F43B", "j": ["bear", "face"]}, "polar-bear": {"a": "polar bear", "b": "1F43B-200D-2744-FE0F", "j": ["arctic", "bear", "polar bear", "white"]}, "koala": {"a": "koala", "b": "1F428", "j": ["bear", "koala"]}, "panda": {"a": "panda", "b": "1F43C", "j": ["face", "panda"]}, "sloth": {"a": "sloth", "b": "1F9A5", "j": ["lazy", "sloth", "slow"]}, "otter": {"a": "otter", "b": "1F9A6", "j": ["fishing", "otter", "playful"]}, "skunk": {"a": "skunk", "b": "1F9A8", "j": ["skunk", "stink"]}, "kangaroo": {"a": "kangaroo", "b": "1F998", "j": ["Australia", "joey", "jump", "kangaroo", "marsupial"]}, "badger": {"a": "badger", "b": "1F9A1", "j": ["badger", "honey badger", "pester"]}, "paw-prints": {"a": "paw prints", "b": "1F43E", "j": ["feet", "paw", "paw prints", "print"]}, "turkey": {"a": "turkey", "b": "1F983", "j": ["bird", "turkey"]}, "chicken": {"a": "chicken", "b": "1F414", "j": ["bird", "chicken"]}, "rooster": {"a": "rooster", "b": "1F413", "j": ["bird", "rooster"]}, "hatching-chick": {"a": "hatching chick", "b": "1F423", "j": ["baby", "bird", "chick", "hatching"]}, "baby-chick": {"a": "baby chick", "b": "1F424", "j": ["baby", "bird", "chick"]}, "frontfacing-baby-chick": {"a": "front-facing baby chick", "b": "1F425", "j": ["baby", "bird", "chick", "front-facing baby chick"]}, "bird": {"a": "bird", "b": "1F426", "j": ["bird"]}, "penguin": {"a": "penguin", "b": "1F427", "j": ["bird", "penguin"]}, "dove": {"a": "dove", "b": "1F54A", "j": ["bird", "dove", "fly", "peace"]}, "eagle": {"a": "eagle", "b": "1F985", "j": ["bird", "eagle"]}, "duck": {"a": "duck", "b": "1F986", "j": ["bird", "duck"]}, "swan": {"a": "swan", "b": "1F9A2", "j": ["bird", "cygnet", "swan", "ugly duckling"]}, "owl": {"a": "owl", "b": "1F989", "j": ["bird", "owl", "wise"]}, "dodo": {"a": "dodo", "b": "1F9A4", "j": ["dodo", "extinction", "large", "Mauritius"]}, "feather": {"a": "feather", "b": "1FAB6", "j": ["bird", "feather", "flight", "light", "plumage"]}, "flamingo": {"a": "flamingo", "b": "1F9A9", "j": ["flamboyant", "flamingo", "tropical"]}, "peacock": {"a": "peacock", "b": "1F99A", "j": ["bird", "ostentatious", "peacock", "peahen", "proud"]}, "parrot": {"a": "parrot", "b": "1F99C", "j": ["bird", "parrot", "pirate", "talk"]}, "frog": {"a": "frog", "b": "1F438", "j": ["face", "frog"]}, "crocodile": {"a": "crocodile", "b": "1F40A", "j": ["crocodile"]}, "turtle": {"a": "turtle", "b": "1F422", "j": ["terrapin", "tortoise", "turtle"]}, "lizard": {"a": "lizard", "b": "1F98E", "j": ["lizard", "reptile"]}, "snake": {"a": "snake", "b": "1F40D", "j": ["bearer", "Ophiuchus", "serpent", "snake", "zodiac"]}, "dragon-face": {"a": "dragon face", "b": "1F432", "j": ["dragon", "face", "fairy tale"]}, "dragon": {"a": "dragon", "b": "1F409", "j": ["dragon", "fairy tale"]}, "sauropod": {"a": "sauropod", "b": "1F995", "j": ["brachiosaurus", "brontosaurus", "diplodocus", "sauropod"]}, "trex": {"a": "T-Rex", "b": "1F996", "j": ["T-Rex", "Tyrannosaurus Rex"]}, "spouting-whale": {"a": "spouting whale", "b": "1F433", "j": ["face", "spouting", "whale"]}, "whale": {"a": "whale", "b": "1F40B", "j": ["whale"]}, "dolphin": {"a": "dolphin", "b": "1F42C", "j": ["dolphin", "flipper"]}, "seal": {"a": "seal", "b": "1F9AD", "j": ["sea Lion", "seal"]}, "fish": {"a": "fish", "b": "1F41F", "j": ["fish", "Pisces", "zodiac"]}, "tropical-fish": {"a": "tropical fish", "b": "1F420", "j": ["fish", "tropical"]}, "blowfish": {"a": "blowfish", "b": "1F421", "j": ["blowfish", "fish"]}, "shark": {"a": "shark", "b": "1F988", "j": ["fish", "shark"]}, "octopus": {"a": "octopus", "b": "1F419", "j": ["octopus"]}, "spiral-shell": {"a": "spiral shell", "b": "1F41A", "j": ["shell", "spiral"]}, "snail": {"a": "snail", "b": "1F40C", "j": ["snail"]}, "butterfly": {"a": "butterfly", "b": "1F98B", "j": ["butterfly", "insect", "pretty"]}, "bug": {"a": "bug", "b": "1F41B", "j": ["bug", "insect"]}, "ant": {"a": "ant", "b": "1F41C", "j": ["ant", "insect"]}, "honeybee": {"a": "honeybee", "b": "1F41D", "j": ["bee", "honeybee", "insect"]}, "beetle": {"a": "beetle", "b": "1FAB2", "j": ["beetle", "bug", "insect"]}, "lady-beetle": {"a": "lady beetle", "b": "1F41E", "j": ["beetle", "insect", "lady beetle", "ladybird", "ladybug"]}, "cricket": {"a": "cricket", "b": "1F997", "j": ["cricket", "grasshopper", "Orthoptera"]}, "cockroach": {"a": "cockroach", "b": "1FAB3", "j": ["cockroach", "insect", "pest", "roach"]}, "spider": {"a": "spider", "b": "1F577", "j": ["insect", "spider"]}, "spider-web": {"a": "spider web", "b": "1F578", "j": ["spider", "web"]}, "scorpion": {"a": "scorpion", "b": "1F982", "j": ["scorpio", "Scorpio", "scorpion", "zodiac"]}, "mosquito": {"a": "mosquito", "b": "1F99F", "j": ["disease", "fever", "malaria", "mosquito", "pest", "virus"]}, "fly": {"a": "fly", "b": "1FAB0", "j": ["disease", "fly", "maggot", "pest", "rotting"]}, "worm": {"a": "worm", "b": "1FAB1", "j": ["annelid", "earthworm", "parasite", "worm"]}, "microbe": {"a": "microbe", "b": "1F9A0", "j": ["amoeba", "bacteria", "microbe", "virus"]}, "bouquet": {"a": "bouquet", "b": "1F490", "j": ["bouquet", "flower"]}, "cherry-blossom": {"a": "cherry blossom", "b": "1F338", "j": ["blossom", "cherry", "flower"]}, "white-flower": {"a": "white flower", "b": "1F4AE", "j": ["flower", "white flower"]}, "rosette": {"a": "rosette", "b": "1F3F5", "j": ["plant", "rosette"]}, "rose": {"a": "rose", "b": "1F339", "j": ["flower", "rose"]}, "wilted-flower": {"a": "wilted flower", "b": "1F940", "j": ["flower", "wilted"]}, "hibiscus": {"a": "hibiscus", "b": "1F33A", "j": ["flower", "hibiscus"]}, "sunflower": {"a": "sunflower", "b": "1F33B", "j": ["flower", "sun", "sunflower"]}, "blossom": {"a": "blossom", "b": "1F33C", "j": ["blossom", "flower"]}, "tulip": {"a": "tulip", "b": "1F337", "j": ["flower", "tulip"]}, "seedling": {"a": "seedling", "b": "1F331", "j": ["seedling", "young"]}, "potted-plant": {"a": "potted plant", "b": "1FAB4", "j": ["boring", "grow", "house", "nurturing", "plant", "potted plant", "useless"]}, "evergreen-tree": {"a": "evergreen tree", "b": "1F332", "j": ["evergreen tree", "tree"]}, "deciduous-tree": {"a": "deciduous tree", "b": "1F333", "j": ["deciduous", "shedding", "tree"]}, "palm-tree": {"a": "palm tree", "b": "1F334", "j": ["palm", "tree"]}, "cactus": {"a": "cactus", "b": "1F335", "j": ["cactus", "plant"]}, "sheaf-of-rice": {"a": "sheaf of rice", "b": "1F33E", "j": ["ear", "grain", "rice", "sheaf of rice"]}, "herb": {"a": "herb", "b": "1F33F", "j": ["herb", "leaf"]}, "shamrock": {"a": "shamrock", "b": "2618", "j": ["plant", "shamrock"]}, "four-leaf-clover": {"a": "four leaf clover", "b": "1F340", "j": ["4", "clover", "four", "four-leaf clover", "leaf"]}, "maple-leaf": {"a": "maple leaf", "b": "1F341", "j": ["falling", "leaf", "maple"]}, "fallen-leaf": {"a": "fallen leaf", "b": "1F342", "j": ["fallen leaf", "falling", "leaf"]}, "leaf-fluttering-in-wind": {"a": "leaf fluttering in wind", "b": "1F343", "j": ["blow", "flutter", "leaf", "leaf fluttering in wind", "wind"]}, "grapes": {"a": "grapes", "b": "1F347", "j": ["fruit", "grape", "grapes"]}, "melon": {"a": "melon", "b": "1F348", "j": ["fruit", "melon"]}, "watermelon": {"a": "watermelon", "b": "1F349", "j": ["fruit", "watermelon"]}, "tangerine": {"a": "tangerine", "b": "1F34A", "j": ["fruit", "orange", "tangerine"]}, "lemon": {"a": "lemon", "b": "1F34B", "j": ["citrus", "fruit", "lemon"]}, "banana": {"a": "banana", "b": "1F34C", "j": ["banana", "fruit"]}, "pineapple": {"a": "pineapple", "b": "1F34D", "j": ["fruit", "pineapple"]}, "mango": {"a": "mango", "b": "1F96D", "j": ["fruit", "mango", "tropical"]}, "red-apple": {"a": "red apple", "b": "1F34E", "j": ["apple", "fruit", "red"]}, "green-apple": {"a": "green apple", "b": "1F34F", "j": ["apple", "fruit", "green"]}, "pear": {"a": "pear", "b": "1F350", "j": ["fruit", "pear"]}, "peach": {"a": "peach", "b": "1F351", "j": ["fruit", "peach"]}, "cherries": {"a": "cherries", "b": "1F352", "j": ["berries", "cherries", "cherry", "fruit", "red"]}, "strawberry": {"a": "strawberry", "b": "1F353", "j": ["berry", "fruit", "strawberry"]}, "blueberries": {"a": "blueberries", "b": "1FAD0", "j": ["berry", "bilberry", "blue", "blueberries", "blueberry"]}, "kiwi-fruit": {"a": "kiwi fruit", "b": "1F95D", "j": ["food", "fruit", "kiwi"]}, "tomato": {"a": "tomato", "b": "1F345", "j": ["fruit", "tomato", "vegetable"]}, "olive": {"a": "olive", "b": "1FAD2", "j": ["food", "olive"]}, "coconut": {"a": "coconut", "b": "1F965", "j": ["coconut", "palm", "piña colada"]}, "avocado": {"a": "avocado", "b": "1F951", "j": ["avocado", "food", "fruit"]}, "eggplant": {"a": "eggplant", "b": "1F346", "j": ["aubergine", "eggplant", "vegetable"]}, "potato": {"a": "potato", "b": "1F954", "j": ["food", "potato", "vegetable"]}, "carrot": {"a": "carrot", "b": "1F955", "j": ["carrot", "food", "vegetable"]}, "ear-of-corn": {"a": "ear of corn", "b": "1F33D", "j": ["corn", "ear", "ear of corn", "maize", "maze"]}, "hot-pepper": {"a": "hot pepper", "b": "1F336", "j": ["hot", "pepper"]}, "bell-pepper": {"a": "bell pepper", "b": "1FAD1", "j": ["bell pepper", "capsicum", "pepper", "vegetable"]}, "cucumber": {"a": "cucumber", "b": "1F952", "j": ["cucumber", "food", "pickle", "vegetable"]}, "leafy-green": {"a": "leafy green", "b": "1F96C", "j": ["bok choy", "cabbage", "kale", "leafy green", "lettuce"]}, "broccoli": {"a": "broccoli", "b": "1F966", "j": ["broccoli", "wild cabbage"]}, "garlic": {"a": "garlic", "b": "1F9C4", "j": ["flavoring", "garlic"]}, "onion": {"a": "onion", "b": "1F9C5", "j": ["flavoring", "onion"]}, "mushroom": {"a": "mushroom", "b": "1F344", "j": ["mushroom", "toadstool"]}, "peanuts": {"a": "peanuts", "b": "1F95C", "j": ["food", "nut", "peanut", "peanuts", "vegetable"]}, "chestnut": {"a": "chestnut", "b": "1F330", "j": ["chestnut", "plant"]}, "bread": {"a": "bread", "b": "1F35E", "j": ["bread", "loaf"]}, "croissant": {"a": "croissant", "b": "1F950", "j": ["bread", "breakfast", "croissant", "food", "french", "roll"]}, "baguette-bread": {"a": "baguette bread", "b": "1F956", "j": ["baguette", "bread", "food", "french"]}, "flatbread": {"a": "flatbread", "b": "1FAD3", "j": ["arepa", "flatbread", "lavash", "naan", "pita"]}, "pretzel": {"a": "pretzel", "b": "1F968", "j": ["pretzel", "twisted", "convoluted"]}, "bagel": {"a": "bagel", "b": "1F96F", "j": ["bagel", "bakery", "breakfast", "schmear"]}, "pancakes": {"a": "pancakes", "b": "1F95E", "j": ["breakfast", "crêpe", "food", "hotcake", "pancake", "pancakes"]}, "waffle": {"a": "waffle", "b": "1F9C7", "j": ["breakfast", "indecisive", "iron", "waffle"]}, "cheese-wedge": {"a": "cheese wedge", "b": "1F9C0", "j": ["cheese", "cheese wedge"]}, "meat-on-bone": {"a": "meat on bone", "b": "1F356", "j": ["bone", "meat", "meat on bone"]}, "poultry-leg": {"a": "poultry leg", "b": "1F357", "j": ["bone", "chicken", "drumstick", "leg", "poultry"]}, "cut-of-meat": {"a": "cut of meat", "b": "1F969", "j": ["chop", "cut of meat", "lambchop", "porkchop", "steak"]}, "bacon": {"a": "bacon", "b": "1F953", "j": ["bacon", "breakfast", "food", "meat"]}, "hamburger": {"a": "hamburger", "b": "1F354", "j": ["burger", "hamburger"]}, "french-fries": {"a": "french fries", "b": "1F35F", "j": ["french", "fries"]}, "pizza": {"a": "pizza", "b": "1F355", "j": ["cheese", "pizza", "slice"]}, "hot-dog": {"a": "hot dog", "b": "1F32D", "j": ["frankfurter", "hot dog", "hotdog", "sausage"]}, "sandwich": {"a": "sandwich", "b": "1F96A", "j": ["bread", "sandwich"]}, "taco": {"a": "taco", "b": "1F32E", "j": ["mexican", "taco"]}, "burrito": {"a": "burrito", "b": "1F32F", "j": ["burrito", "mexican", "wrap"]}, "tamale": {"a": "tamale", "b": "1FAD4", "j": ["mexican", "tamale", "wrapped"]}, "stuffed-flatbread": {"a": "stuffed flatbread", "b": "1F959", "j": ["falafel", "flatbread", "food", "gyro", "kebab", "stuffed"]}, "falafel": {"a": "falafel", "b": "1F9C6", "j": ["chickpea", "falafel", "meatball"]}, "egg": {"a": "egg", "b": "1F95A", "j": ["breakfast", "egg", "food"]}, "cooking": {"a": "cooking", "b": "1F373", "j": ["breakfast", "cooking", "egg", "frying", "pan"]}, "shallow-pan-of-food": {"a": "shallow pan of food", "b": "1F958", "j": ["casserole", "food", "paella", "pan", "shallow", "shallow pan of food"]}, "pot-of-food": {"a": "pot of food", "b": "1F372", "j": ["pot", "pot of food", "stew"]}, "fondue": {"a": "fondue", "b": "1FAD5", "j": ["cheese", "chocolate", "fondue", "melted", "pot", "Swiss"]}, "bowl-with-spoon": {"a": "bowl with spoon", "b": "1F963", "j": ["bowl with spoon", "breakfast", "cereal", "congee", "oatmeal", "porridge"]}, "green-salad": {"a": "green salad", "b": "1F957", "j": ["food", "green", "salad"]}, "popcorn": {"a": "popcorn", "b": "1F37F", "j": ["popcorn"]}, "butter": {"a": "butter", "b": "1F9C8", "j": ["butter", "dairy"]}, "salt": {"a": "salt", "b": "1F9C2", "j": ["condiment", "salt", "shaker"]}, "canned-food": {"a": "canned food", "b": "1F96B", "j": ["can", "canned food"]}, "bento-box": {"a": "bento box", "b": "1F371", "j": ["bento", "box"]}, "rice-cracker": {"a": "rice cracker", "b": "1F358", "j": ["cracker", "rice"]}, "rice-ball": {"a": "rice ball", "b": "1F359", "j": ["ball", "Japanese", "rice"]}, "cooked-rice": {"a": "cooked rice", "b": "1F35A", "j": ["cooked", "rice"]}, "curry-rice": {"a": "curry rice", "b": "1F35B", "j": ["curry", "rice"]}, "steaming-bowl": {"a": "steaming bowl", "b": "1F35C", "j": ["bowl", "noodle", "ramen", "steaming"]}, "spaghetti": {"a": "spaghetti", "b": "1F35D", "j": ["pasta", "spaghetti"]}, "roasted-sweet-potato": {"a": "roasted sweet potato", "b": "1F360", "j": ["potato", "roasted", "sweet"]}, "oden": {"a": "oden", "b": "1F362", "j": ["kebab", "oden", "seafood", "skewer", "stick"]}, "sushi": {"a": "sushi", "b": "1F363", "j": ["sushi"]}, "fried-shrimp": {"a": "fried shrimp", "b": "1F364", "j": ["fried", "prawn", "shrimp", "tempura"]}, "fish-cake-with-swirl": {"a": "fish cake with swirl", "b": "1F365", "j": ["cake", "fish", "fish cake with swirl", "pastry", "swirl"]}, "moon-cake": {"a": "moon cake", "b": "1F96E", "j": ["autumn", "festival", "moon cake", "yuèbǐng"]}, "dango": {"a": "dango", "b": "1F361", "j": ["dango", "dessert", "Japanese", "skewer", "stick", "sweet"]}, "dumpling": {"a": "dumpling", "b": "1F95F", "j": ["dumpling", "empanada", "gyōza", "jiaozi", "pierogi", "potsticker"]}, "fortune-cookie": {"a": "fortune cookie", "b": "1F960", "j": ["fortune cookie", "prophecy"]}, "takeout-box": {"a": "takeout box", "b": "1F961", "j": ["oyster pail", "takeout box"]}, "crab": {"a": "crab", "b": "1F980", "j": ["Cancer", "crab", "zodiac"]}, "lobster": {"a": "lobster", "b": "1F99E", "j": ["bisque", "claws", "lobster", "seafood"]}, "shrimp": {"a": "shrimp", "b": "1F990", "j": ["food", "shellfish", "shrimp", "small"]}, "squid": {"a": "squid", "b": "1F991", "j": ["food", "molusc", "squid"]}, "oyster": {"a": "oyster", "b": "1F9AA", "j": ["diving", "oyster", "pearl"]}, "soft-ice-cream": {"a": "soft ice cream", "b": "1F366", "j": ["cream", "dessert", "ice", "icecream", "soft", "sweet"]}, "shaved-ice": {"a": "shaved ice", "b": "1F367", "j": ["dessert", "ice", "shaved", "sweet"]}, "ice-cream": {"a": "ice cream", "b": "1F368", "j": ["cream", "dessert", "ice", "sweet"]}, "doughnut": {"a": "doughnut", "b": "1F369", "j": ["breakfast", "dessert", "donut", "doughnut", "sweet"]}, "cookie": {"a": "cookie", "b": "1F36A", "j": ["cookie", "dessert", "sweet"]}, "birthday-cake": {"a": "birthday cake", "b": "1F382", "j": ["birthday", "cake", "celebration", "dessert", "pastry", "sweet"]}, "shortcake": {"a": "shortcake", "b": "1F370", "j": ["cake", "dessert", "pastry", "shortcake", "slice", "sweet"]}, "cupcake": {"a": "cupcake", "b": "1F9C1", "j": ["bakery", "cupcake", "sweet"]}, "pie": {"a": "pie", "b": "1F967", "j": ["filling", "pastry", "pie", "fruit", "meat"]}, "chocolate-bar": {"a": "chocolate bar", "b": "1F36B", "j": ["bar", "chocolate", "dessert", "sweet"]}, "candy": {"a": "candy", "b": "1F36C", "j": ["candy", "dessert", "sweet"]}, "lollipop": {"a": "lollipop", "b": "1F36D", "j": ["candy", "dessert", "lollipop", "sweet"]}, "custard": {"a": "custard", "b": "1F36E", "j": ["custard", "dessert", "pudding", "sweet"]}, "honey-pot": {"a": "honey pot", "b": "1F36F", "j": ["honey", "honeypot", "pot", "sweet"]}, "baby-bottle": {"a": "baby bottle", "b": "1F37C", "j": ["baby", "bottle", "drink", "milk"]}, "glass-of-milk": {"a": "glass of milk", "b": "1F95B", "j": ["drink", "glass", "glass of milk", "milk"]}, "hot-beverage": {"a": "hot beverage", "b": "2615", "j": ["beverage", "coffee", "drink", "hot", "steaming", "tea"]}, "teapot": {"a": "teapot", "b": "1FAD6", "j": ["drink", "pot", "tea", "teapot"]}, "teacup-without-handle": {"a": "teacup without handle", "b": "1F375", "j": ["beverage", "cup", "drink", "tea", "teacup", "teacup without handle"]}, "sake": {"a": "sake", "b": "1F376", "j": ["bar", "beverage", "bottle", "cup", "drink", "sake"]}, "bottle-with-popping-cork": {"a": "bottle with popping cork", "b": "1F37E", "j": ["bar", "bottle", "bottle with popping cork", "cork", "drink", "popping"]}, "wine-glass": {"a": "wine glass", "b": "1F377", "j": ["bar", "beverage", "drink", "glass", "wine"]}, "cocktail-glass": {"a": "cocktail glass", "b": "1F378", "j": ["bar", "cocktail", "drink", "glass"]}, "tropical-drink": {"a": "tropical drink", "b": "1F379", "j": ["bar", "drink", "tropical"]}, "beer-mug": {"a": "beer mug", "b": "1F37A", "j": ["bar", "beer", "drink", "mug"]}, "clinking-beer-mugs": {"a": "clinking beer mugs", "b": "1F37B", "j": ["bar", "beer", "clink", "clinking beer mugs", "drink", "mug"]}, "clinking-glasses": {"a": "clinking glasses", "b": "1F942", "j": ["celebrate", "clink", "clinking glasses", "drink", "glass"]}, "tumbler-glass": {"a": "tumbler glass", "b": "1F943", "j": ["glass", "liquor", "shot", "tumbler", "whisky"]}, "cup-with-straw": {"a": "cup with straw", "b": "1F964", "j": ["cup with straw", "juice", "soda", "malt", "soft drink", "water"]}, "bubble-tea": {"a": "bubble tea", "b": "1F9CB", "j": ["bubble", "milk", "pearl", "tea"]}, "beverage-box": {"a": "beverage box", "b": "1F9C3", "j": ["beverage", "box", "juice", "straw", "sweet"]}, "mate": {"a": "mate", "b": "1F9C9", "j": ["drink", "mate"]}, "ice": {"a": "ice", "b": "1F9CA", "j": ["cold", "ice", "ice cube", "iceberg"]}, "chopsticks": {"a": "chopsticks", "b": "1F962", "j": ["chopsticks", "hashi", "jeotgarak", "kuaizi"]}, "fork-and-knife-with-plate": {"a": "fork and knife with plate", "b": "1F37D", "j": ["cooking", "fork", "fork and knife with plate", "knife", "plate"]}, "fork-and-knife": {"a": "fork and knife", "b": "1F374", "j": ["cooking", "cutlery", "fork", "fork and knife", "knife"]}, "spoon": {"a": "spoon", "b": "1F944", "j": ["spoon", "tableware"]}, "kitchen-knife": {"a": "kitchen knife", "b": "1F52A", "j": ["cooking", "hocho", "kitchen knife", "knife", "tool", "weapon"]}, "amphora": {"a": "amphora", "b": "1F3FA", "j": ["amphora", "Aquarius", "cooking", "drink", "jug", "zodiac"]}, "globe-showing-europeafrica": {"a": "globe showing Europe-Africa", "b": "1F30D", "j": ["Africa", "earth", "Europe", "globe", "globe showing Europe-Africa", "world"]}, "globe-showing-americas": {"a": "globe showing Americas", "b": "1F30E", "j": ["Americas", "earth", "globe", "globe showing Americas", "world"]}, "globe-showing-asiaaustralia": {"a": "globe showing Asia-Australia", "b": "1F30F", "j": ["Asia", "Australia", "earth", "globe", "globe showing Asia-Australia", "world"]}, "globe-with-meridians": {"a": "globe with meridians", "b": "1F310", "j": ["earth", "globe", "globe with meridians", "meridians", "world"]}, "world-map": {"a": "world map", "b": "1F5FA", "j": ["map", "world"]}, "map-of-japan": {"a": "map of Japan", "b": "1F5FE", "j": ["Japan", "map", "map of Japan"]}, "compass": {"a": "compass", "b": "1F9ED", "j": ["compass", "magnetic", "navigation", "orienteering"]}, "snowcapped-mountain": {"a": "snow-capped mountain", "b": "1F3D4", "j": ["cold", "mountain", "snow", "snow-capped mountain"]}, "mountain": {"a": "mountain", "b": "26F0", "j": ["mountain"]}, "volcano": {"a": "volcano", "b": "1F30B", "j": ["eruption", "mountain", "volcano"]}, "mount-fuji": {"a": "mount fuji", "b": "1F5FB", "j": ["fuji", "mount fuji", "mountain"]}, "camping": {"a": "camping", "b": "1F3D5", "j": ["camping"]}, "beach-with-umbrella": {"a": "beach with umbrella", "b": "1F3D6", "j": ["beach", "beach with umbrella", "umbrella"]}, "desert": {"a": "desert", "b": "1F3DC", "j": ["desert"]}, "desert-island": {"a": "desert island", "b": "1F3DD", "j": ["desert", "island"]}, "national-park": {"a": "national park", "b": "1F3DE", "j": ["national park", "park"]}, "stadium": {"a": "stadium", "b": "1F3DF", "j": ["stadium"]}, "classical-building": {"a": "classical building", "b": "1F3DB", "j": ["classical", "classical building"]}, "building-construction": {"a": "building construction", "b": "1F3D7", "j": ["building construction", "construction"]}, "brick": {"a": "brick", "b": "1F9F1", "j": ["brick", "bricks", "clay", "mortar", "wall"]}, "rock": {"a": "rock", "b": "1FAA8", "j": ["boulder", "heavy", "rock", "solid", "stone"]}, "wood": {"a": "wood", "b": "1FAB5", "j": ["log", "lumber", "timber", "wood"]}, "hut": {"a": "hut", "b": "1F6D6", "j": ["house", "hut", "roundhouse", "yurt"]}, "houses": {"a": "houses", "b": "1F3D8", "j": ["houses"]}, "derelict-house": {"a": "derelict house", "b": "1F3DA", "j": ["derelict", "house"]}, "house": {"a": "house", "b": "1F3E0", "j": ["home", "house"]}, "house-with-garden": {"a": "house with garden", "b": "1F3E1", "j": ["garden", "home", "house", "house with garden"]}, "office-building": {"a": "office building", "b": "1F3E2", "j": ["building", "office building"]}, "japanese-post-office": {"a": "Japanese post office", "b": "1F3E3", "j": ["Japanese", "Japanese post office", "post"]}, "post-office": {"a": "post office", "b": "1F3E4", "j": ["European", "post", "post office"]}, "hospital": {"a": "hospital", "b": "1F3E5", "j": ["doctor", "hospital", "medicine"]}, "bank": {"a": "bank", "b": "1F3E6", "j": ["bank", "building"]}, "hotel": {"a": "hotel", "b": "1F3E8", "j": ["building", "hotel"]}, "love-hotel": {"a": "love hotel", "b": "1F3E9", "j": ["hotel", "love"]}, "convenience-store": {"a": "convenience store", "b": "1F3EA", "j": ["convenience", "store"]}, "school": {"a": "school", "b": "1F3EB", "j": ["building", "school"]}, "department-store": {"a": "department store", "b": "1F3EC", "j": ["department", "store"]}, "factory": {"a": "factory", "b": "1F3ED", "j": ["building", "factory"]}, "japanese-castle": {"a": "Japanese castle", "b": "1F3EF", "j": ["castle", "Japanese"]}, "castle": {"a": "castle", "b": "1F3F0", "j": ["castle", "European"]}, "wedding": {"a": "wedding", "b": "1F492", "j": ["chapel", "romance", "wedding"]}, "tokyo-tower": {"a": "Tokyo tower", "b": "1F5FC", "j": ["Tokyo", "tower"]}, "statue-of-liberty": {"a": "Statue of Liberty", "b": "1F5FD", "j": ["liberty", "statue", "Statue of Liberty"]}, "church": {"a": "church", "b": "26EA", "j": ["Christian", "church", "cross", "religion"]}, "mosque": {"a": "mosque", "b": "1F54C", "j": ["islam", "mosque", "Muslim", "religion"]}, "hindu-temple": {"a": "hindu temple", "b": "1F6D5", "j": ["hindu", "temple"]}, "synagogue": {"a": "synagogue", "b": "1F54D", "j": ["Jew", "Jewish", "religion", "synagogue", "temple"]}, "shinto-shrine": {"a": "shinto shrine", "b": "26E9", "j": ["religion", "shinto", "shrine"]}, "kaaba": {"a": "kaaba", "b": "1F54B", "j": ["islam", "kaaba", "Muslim", "religion"]}, "fountain": {"a": "fountain", "b": "26F2", "j": ["fountain"]}, "tent": {"a": "tent", "b": "26FA", "j": ["camping", "tent"]}, "foggy": {"a": "foggy", "b": "1F301", "j": ["fog", "foggy"]}, "night-with-stars": {"a": "night with stars", "b": "1F303", "j": ["night", "night with stars", "star"]}, "cityscape": {"a": "cityscape", "b": "1F3D9", "j": ["city", "cityscape"]}, "sunrise-over-mountains": {"a": "sunrise over mountains", "b": "1F304", "j": ["morning", "mountain", "sun", "sunrise", "sunrise over mountains"]}, "sunrise": {"a": "sunrise", "b": "1F305", "j": ["morning", "sun", "sunrise"]}, "cityscape-at-dusk": {"a": "cityscape at dusk", "b": "1F306", "j": ["city", "cityscape at dusk", "dusk", "evening", "landscape", "sunset"]}, "sunset": {"a": "sunset", "b": "1F307", "j": ["dusk", "sun", "sunset"]}, "bridge-at-night": {"a": "bridge at night", "b": "1F309", "j": ["bridge", "bridge at night", "night"]}, "hot-springs": {"a": "hot springs", "b": "2668", "j": ["hot", "hotsprings", "springs", "steaming"]}, "carousel-horse": {"a": "carousel horse", "b": "1F3A0", "j": ["carousel", "horse"]}, "ferris-wheel": {"a": "ferris wheel", "b": "1F3A1", "j": ["amusement park", "ferris", "wheel"]}, "roller-coaster": {"a": "roller coaster", "b": "1F3A2", "j": ["amusement park", "coaster", "roller"]}, "barber-pole": {"a": "barber pole", "b": "1F488", "j": ["barber", "haircut", "pole"]}, "circus-tent": {"a": "circus tent", "b": "1F3AA", "j": ["circus", "tent"]}, "locomotive": {"a": "locomotive", "b": "1F682", "j": ["engine", "locomotive", "railway", "steam", "train"]}, "railway-car": {"a": "railway car", "b": "1F683", "j": ["car", "electric", "railway", "train", "tram", "trolleybus"]}, "highspeed-train": {"a": "high-speed train", "b": "1F684", "j": ["high-speed train", "railway", "shinkansen", "speed", "train"]}, "bullet-train": {"a": "bullet train", "b": "1F685", "j": ["bullet", "railway", "shinkansen", "speed", "train"]}, "train": {"a": "train", "b": "1F686", "j": ["railway", "train"]}, "metro": {"a": "metro", "b": "1F687", "j": ["metro", "subway"]}, "light-rail": {"a": "light rail", "b": "1F688", "j": ["light rail", "railway"]}, "station": {"a": "station", "b": "1F689", "j": ["railway", "station", "train"]}, "tram": {"a": "tram", "b": "1F68A", "j": ["tram", "trolleybus"]}, "monorail": {"a": "monorail", "b": "1F69D", "j": ["monorail", "vehicle"]}, "mountain-railway": {"a": "mountain railway", "b": "1F69E", "j": ["car", "mountain", "railway"]}, "tram-car": {"a": "tram car", "b": "1F68B", "j": ["car", "tram", "trolleybus"]}, "bus": {"a": "bus", "b": "1F68C", "j": ["bus", "vehicle"]}, "oncoming-bus": {"a": "oncoming bus", "b": "1F68D", "j": ["bus", "oncoming"]}, "trolleybus": {"a": "trolleybus", "b": "1F68E", "j": ["bus", "tram", "trolley", "trolleybus"]}, "minibus": {"a": "minibus", "b": "1F690", "j": ["bus", "minibus"]}, "ambulance": {"a": "ambulance", "b": "1F691", "j": ["ambulance", "vehicle"]}, "fire-engine": {"a": "fire engine", "b": "1F692", "j": ["engine", "fire", "truck"]}, "police-car": {"a": "police car", "b": "1F693", "j": ["car", "patrol", "police"]}, "oncoming-police-car": {"a": "oncoming police car", "b": "1F694", "j": ["car", "oncoming", "police"]}, "taxi": {"a": "taxi", "b": "1F695", "j": ["taxi", "vehicle"]}, "oncoming-taxi": {"a": "oncoming taxi", "b": "1F696", "j": ["oncoming", "taxi"]}, "automobile": {"a": "automobile", "b": "1F697", "j": ["automobile", "car"]}, "oncoming-automobile": {"a": "oncoming automobile", "b": "1F698", "j": ["automobile", "car", "oncoming"]}, "sport-utility-vehicle": {"a": "sport utility vehicle", "b": "1F699", "j": ["recreational", "sport utility", "sport utility vehicle"]}, "pickup-truck": {"a": "pickup truck", "b": "1F6FB", "j": ["pick-up", "pickup", "truck"]}, "delivery-truck": {"a": "delivery truck", "b": "1F69A", "j": ["delivery", "truck"]}, "articulated-lorry": {"a": "articulated lorry", "b": "1F69B", "j": ["articulated lorry", "lorry", "semi", "truck"]}, "tractor": {"a": "tractor", "b": "1F69C", "j": ["tractor", "vehicle"]}, "racing-car": {"a": "racing car", "b": "1F3CE", "j": ["car", "racing"]}, "motorcycle": {"a": "motorcycle", "b": "1F3CD", "j": ["motorcycle", "racing"]}, "motor-scooter": {"a": "motor scooter", "b": "1F6F5", "j": ["motor", "scooter"]}, "manual-wheelchair": {"a": "manual wheelchair", "b": "1F9BD", "j": ["accessibility", "manual wheelchair"]}, "motorized-wheelchair": {"a": "motorized wheelchair", "b": "1F9BC", "j": ["accessibility", "motorized wheelchair"]}, "auto-rickshaw": {"a": "auto rickshaw", "b": "1F6FA", "j": ["auto rickshaw", "tuk tuk"]}, "bicycle": {"a": "bicycle", "b": "1F6B2", "j": ["bicycle", "bike"]}, "kick-scooter": {"a": "kick scooter", "b": "1F6F4", "j": ["kick", "scooter"]}, "skateboard": {"a": "skateboard", "b": "1F6F9", "j": ["board", "skateboard"]}, "roller-skate": {"a": "roller skate", "b": "1F6FC", "j": ["roller", "skate"]}, "bus-stop": {"a": "bus stop", "b": "1F68F", "j": ["bus", "busstop", "stop"]}, "motorway": {"a": "motorway", "b": "1F6E3", "j": ["highway", "motorway", "road"]}, "railway-track": {"a": "railway track", "b": "1F6E4", "j": ["railway", "railway track", "train"]}, "oil-drum": {"a": "oil drum", "b": "1F6E2", "j": ["drum", "oil"]}, "fuel-pump": {"a": "fuel pump", "b": "26FD", "j": ["diesel", "fuel", "fuelpump", "gas", "pump", "station"]}, "police-car-light": {"a": "police car light", "b": "1F6A8", "j": ["beacon", "car", "light", "police", "revolving"]}, "horizontal-traffic-light": {"a": "horizontal traffic light", "b": "1F6A5", "j": ["horizontal traffic light", "light", "signal", "traffic"]}, "vertical-traffic-light": {"a": "vertical traffic light", "b": "1F6A6", "j": ["light", "signal", "traffic", "vertical traffic light"]}, "stop-sign": {"a": "stop sign", "b": "1F6D1", "j": ["octagonal", "sign", "stop"]}, "construction": {"a": "construction", "b": "1F6A7", "j": ["barrier", "construction"]}, "anchor": {"a": "anchor", "b": "2693", "j": ["anchor", "ship", "tool"]}, "sailboat": {"a": "sailboat", "b": "26F5", "j": ["boat", "resort", "sailboat", "sea", "yacht"]}, "canoe": {"a": "canoe", "b": "1F6F6", "j": ["boat", "canoe"]}, "speedboat": {"a": "speedboat", "b": "1F6A4", "j": ["boat", "speedboat"]}, "passenger-ship": {"a": "passenger ship", "b": "1F6F3", "j": ["passenger", "ship"]}, "ferry": {"a": "ferry", "b": "26F4", "j": ["boat", "ferry", "passenger"]}, "motor-boat": {"a": "motor boat", "b": "1F6E5", "j": ["boat", "motor boat", "motorboat"]}, "ship": {"a": "ship", "b": "1F6A2", "j": ["boat", "passenger", "ship"]}, "airplane": {"a": "airplane", "b": "2708", "j": ["aeroplane", "airplane"]}, "small-airplane": {"a": "small airplane", "b": "1F6E9", "j": ["aeroplane", "airplane", "small airplane"]}, "airplane-departure": {"a": "airplane departure", "b": "1F6EB", "j": ["aeroplane", "airplane", "check-in", "departure", "departures"]}, "airplane-arrival": {"a": "airplane arrival", "b": "1F6EC", "j": ["aeroplane", "airplane", "airplane arrival", "arrivals", "arriving", "landing"]}, "parachute": {"a": "parachute", "b": "1FA82", "j": ["hang-glide", "parachute", "parasail", "skydive"]}, "seat": {"a": "seat", "b": "1F4BA", "j": ["chair", "seat"]}, "helicopter": {"a": "helicopter", "b": "1F681", "j": ["helicopter", "vehicle"]}, "suspension-railway": {"a": "suspension railway", "b": "1F69F", "j": ["railway", "suspension"]}, "mountain-cableway": {"a": "mountain cableway", "b": "1F6A0", "j": ["cable", "gondola", "mountain", "mountain cableway"]}, "aerial-tramway": {"a": "aerial tramway", "b": "1F6A1", "j": ["aerial", "cable", "car", "gondola", "tramway"]}, "satellite": {"a": "satellite", "b": "1F6F0", "j": ["satellite", "space"]}, "rocket": {"a": "rocket", "b": "1F680", "j": ["rocket", "space"]}, "flying-saucer": {"a": "flying saucer", "b": "1F6F8", "j": ["flying saucer", "UFO"]}, "bellhop-bell": {"a": "bellhop bell", "b": "1F6CE", "j": ["bell", "bellhop", "hotel"]}, "luggage": {"a": "luggage", "b": "1F9F3", "j": ["luggage", "packing", "travel"]}, "hourglass-done": {"a": "hourglass done", "b": "231B", "j": ["hourglass done", "sand", "timer"]}, "hourglass-not-done": {"a": "hourglass not done", "b": "23F3", "j": ["hourglass", "hourglass not done", "sand", "timer"]}, "watch": {"a": "watch", "b": "231A", "j": ["clock", "watch"]}, "alarm-clock": {"a": "alarm clock", "b": "23F0", "j": ["alarm", "clock"]}, "stopwatch": {"a": "stopwatch", "b": "23F1", "j": ["clock", "stopwatch"]}, "timer-clock": {"a": "timer clock", "b": "23F2", "j": ["clock", "timer"]}, "mantelpiece-clock": {"a": "mantelpiece clock", "b": "1F570", "j": ["clock", "mantelpiece clock"]}, "twelve-oclock": {"a": "twelve o’clock", "b": "1F55B", "j": ["00", "12", "12:00", "clock", "o’clock", "twelve"]}, "twelvethirty": {"a": "twelve-thirty", "b": "1F567", "j": ["12", "12:30", "clock", "thirty", "twelve", "twelve-thirty"]}, "one-oclock": {"a": "one o’clock", "b": "1F550", "j": ["00", "1", "1:00", "clock", "o’clock", "one"]}, "onethirty": {"a": "one-thirty", "b": "1F55C", "j": ["1", "1:30", "clock", "one", "one-thirty", "thirty"]}, "two-oclock": {"a": "two o’clock", "b": "1F551", "j": ["00", "2", "2:00", "clock", "o’clock", "two"]}, "twothirty": {"a": "two-thirty", "b": "1F55D", "j": ["2", "2:30", "clock", "thirty", "two", "two-thirty"]}, "three-oclock": {"a": "three o’clock", "b": "1F552", "j": ["00", "3", "3:00", "clock", "o’clock", "three"]}, "threethirty": {"a": "three-thirty", "b": "1F55E", "j": ["3", "3:30", "clock", "thirty", "three", "three-thirty"]}, "four-oclock": {"a": "four o’clock", "b": "1F553", "j": ["00", "4", "4:00", "clock", "four", "o’clock"]}, "fourthirty": {"a": "four-thirty", "b": "1F55F", "j": ["4", "4:30", "clock", "four", "four-thirty", "thirty"]}, "five-oclock": {"a": "five o’clock", "b": "1F554", "j": ["00", "5", "5:00", "clock", "five", "o’clock"]}, "fivethirty": {"a": "five-thirty", "b": "1F560", "j": ["5", "5:30", "clock", "five", "five-thirty", "thirty"]}, "six-oclock": {"a": "six o’clock", "b": "1F555", "j": ["00", "6", "6:00", "clock", "o’clock", "six"]}, "sixthirty": {"a": "six-thirty", "b": "1F561", "j": ["6", "6:30", "clock", "six", "six-thirty", "thirty"]}, "seven-oclock": {"a": "seven o’clock", "b": "1F556", "j": ["00", "7", "7:00", "clock", "o’clock", "seven"]}, "seventhirty": {"a": "seven-thirty", "b": "1F562", "j": ["7", "7:30", "clock", "seven", "seven-thirty", "thirty"]}, "eight-oclock": {"a": "eight o’clock", "b": "1F557", "j": ["00", "8", "8:00", "clock", "eight", "o’clock"]}, "eightthirty": {"a": "eight-thirty", "b": "1F563", "j": ["8", "8:30", "clock", "eight", "eight-thirty", "thirty"]}, "nine-oclock": {"a": "nine o’clock", "b": "1F558", "j": ["00", "9", "9:00", "clock", "nine", "o’clock"]}, "ninethirty": {"a": "nine-thirty", "b": "1F564", "j": ["9", "9:30", "clock", "nine", "nine-thirty", "thirty"]}, "ten-oclock": {"a": "ten o’clock", "b": "1F559", "j": ["00", "10", "10:00", "clock", "o’clock", "ten"]}, "tenthirty": {"a": "ten-thirty", "b": "1F565", "j": ["10", "10:30", "clock", "ten", "ten-thirty", "thirty"]}, "eleven-oclock": {"a": "eleven o’clock", "b": "1F55A", "j": ["00", "11", "11:00", "clock", "eleven", "o’clock"]}, "eleventhirty": {"a": "eleven-thirty", "b": "1F566", "j": ["11", "11:30", "clock", "eleven", "eleven-thirty", "thirty"]}, "new-moon": {"a": "new moon", "b": "1F311", "j": ["dark", "moon", "new moon"]}, "waxing-crescent-moon": {"a": "waxing crescent moon", "b": "1F312", "j": ["crescent", "moon", "waxing"]}, "first-quarter-moon": {"a": "first quarter moon", "b": "1F313", "j": ["first quarter moon", "moon", "quarter"]}, "waxing-gibbous-moon": {"a": "waxing gibbous moon", "b": "1F314", "j": ["gibbous", "moon", "waxing"]}, "full-moon": {"a": "full moon", "b": "1F315", "j": ["full", "moon"]}, "waning-gibbous-moon": {"a": "waning gibbous moon", "b": "1F316", "j": ["gibbous", "moon", "waning"]}, "last-quarter-moon": {"a": "last quarter moon", "b": "1F317", "j": ["last quarter moon", "moon", "quarter"]}, "waning-crescent-moon": {"a": "waning crescent moon", "b": "1F318", "j": ["crescent", "moon", "waning"]}, "crescent-moon": {"a": "crescent moon", "b": "1F319", "j": ["crescent", "moon"]}, "new-moon-face": {"a": "new moon face", "b": "1F31A", "j": ["face", "moon", "new moon face"]}, "first-quarter-moon-face": {"a": "first quarter moon face", "b": "1F31B", "j": ["face", "first quarter moon face", "moon", "quarter"]}, "last-quarter-moon-face": {"a": "last quarter moon face", "b": "1F31C", "j": ["face", "last quarter moon face", "moon", "quarter"]}, "thermometer": {"a": "thermometer", "b": "1F321", "j": ["thermometer", "weather"]}, "sun": {"a": "sun", "b": "2600", "j": ["bright", "rays", "sun", "sunny"]}, "full-moon-face": {"a": "full moon face", "b": "1F31D", "j": ["bright", "face", "full", "moon"]}, "sun-with-face": {"a": "sun with face", "b": "1F31E", "j": ["bright", "face", "sun", "sun with face"]}, "ringed-planet": {"a": "ringed planet", "b": "1FA90", "j": ["ringed planet", "saturn", "saturnine"]}, "star": {"a": "star", "b": "2B50", "j": ["star"]}, "glowing-star": {"a": "glowing star", "b": "1F31F", "j": ["glittery", "glow", "glowing star", "shining", "sparkle", "star"]}, "shooting-star": {"a": "shooting star", "b": "1F320", "j": ["falling", "shooting", "star"]}, "milky-way": {"a": "milky way", "b": "1F30C", "j": ["milky way", "space"]}, "cloud": {"a": "cloud", "b": "2601", "j": ["cloud", "weather"]}, "sun-behind-cloud": {"a": "sun behind cloud", "b": "26C5", "j": ["cloud", "sun", "sun behind cloud"]}, "cloud-with-lightning-and-rain": {"a": "cloud with lightning and rain", "b": "26C8", "j": ["cloud", "cloud with lightning and rain", "rain", "thunder"]}, "sun-behind-small-cloud": {"a": "sun behind small cloud", "b": "1F324", "j": ["cloud", "sun", "sun behind small cloud"]}, "sun-behind-large-cloud": {"a": "sun behind large cloud", "b": "1F325", "j": ["cloud", "sun", "sun behind large cloud"]}, "sun-behind-rain-cloud": {"a": "sun behind rain cloud", "b": "1F326", "j": ["cloud", "rain", "sun", "sun behind rain cloud"]}, "cloud-with-rain": {"a": "cloud with rain", "b": "1F327", "j": ["cloud", "cloud with rain", "rain"]}, "cloud-with-snow": {"a": "cloud with snow", "b": "1F328", "j": ["cloud", "cloud with snow", "cold", "snow"]}, "cloud-with-lightning": {"a": "cloud with lightning", "b": "1F329", "j": ["cloud", "cloud with lightning", "lightning"]}, "tornado": {"a": "tornado", "b": "1F32A", "j": ["cloud", "tornado", "whirlwind"]}, "fog": {"a": "fog", "b": "1F32B", "j": ["cloud", "fog"]}, "wind-face": {"a": "wind face", "b": "1F32C", "j": ["blow", "cloud", "face", "wind"]}, "cyclone": {"a": "cyclone", "b": "1F300", "j": ["cyclone", "dizzy", "hurricane", "twister", "typhoon"]}, "rainbow": {"a": "rainbow", "b": "1F308", "j": ["rain", "rainbow"]}, "closed-umbrella": {"a": "closed umbrella", "b": "1F302", "j": ["closed umbrella", "clothing", "rain", "umbrella"]}, "umbrella": {"a": "umbrella", "b": "2602", "j": ["clothing", "rain", "umbrella"]}, "umbrella-with-rain-drops": {"a": "umbrella with rain drops", "b": "2614", "j": ["clothing", "drop", "rain", "umbrella", "umbrella with rain drops"]}, "umbrella-on-ground": {"a": "umbrella on ground", "b": "26F1", "j": ["rain", "sun", "umbrella", "umbrella on ground"]}, "high-voltage": {"a": "high voltage", "b": "26A1", "j": ["danger", "electric", "high voltage", "lightning", "voltage", "zap"]}, "snowflake": {"a": "snowflake", "b": "2744", "j": ["cold", "snow", "snowflake"]}, "snowman": {"a": "snowman", "b": "2603", "j": ["cold", "snow", "snowman"]}, "snowman-without-snow": {"a": "snowman without snow", "b": "26C4", "j": ["cold", "snow", "snowman", "snowman without snow"]}, "comet": {"a": "comet", "b": "2604", "j": ["comet", "space"]}, "fire": {"a": "fire", "b": "1F525", "j": ["fire", "flame", "tool"]}, "droplet": {"a": "droplet", "b": "1F4A7", "j": ["cold", "comic", "drop", "droplet", "sweat"]}, "water-wave": {"a": "water wave", "b": "1F30A", "j": ["ocean", "water", "wave"]}, "jackolantern": {"a": "jack-o-lantern", "b": "1F383", "j": ["celebration", "halloween", "jack", "jack-o-lantern", "lantern"]}, "christmas-tree": {"a": "Christmas tree", "b": "1F384", "j": ["celebration", "Christmas", "tree"]}, "fireworks": {"a": "fireworks", "b": "1F386", "j": ["celebration", "fireworks"]}, "sparkler": {"a": "sparkler", "b": "1F387", "j": ["celebration", "fireworks", "sparkle", "sparkler"]}, "firecracker": {"a": "firecracker", "b": "1F9E8", "j": ["dynamite", "explosive", "firecracker", "fireworks"]}, "sparkles": {"a": "sparkles", "b": "2728", "j": ["*", "sparkle", "sparkles", "star"]}, "balloon": {"a": "balloon", "b": "1F388", "j": ["balloon", "celebration"]}, "party-popper": {"a": "party popper", "b": "1F389", "j": ["celebration", "party", "popper", "tada"]}, "confetti-ball": {"a": "confetti ball", "b": "1F38A", "j": ["ball", "celebration", "confetti"]}, "tanabata-tree": {"a": "tanabata tree", "b": "1F38B", "j": ["banner", "celebration", "Japanese", "tanabata tree", "tree"]}, "pine-decoration": {"a": "pine decoration", "b": "1F38D", "j": ["bamboo", "celebration", "Japanese", "pine", "pine decoration"]}, "japanese-dolls": {"a": "Japanese dolls", "b": "1F38E", "j": ["celebration", "doll", "festival", "Japanese", "Japanese dolls"]}, "carp-streamer": {"a": "carp streamer", "b": "1F38F", "j": ["carp", "celebration", "streamer"]}, "wind-chime": {"a": "wind chime", "b": "1F390", "j": ["bell", "celebration", "chime", "wind"]}, "moon-viewing-ceremony": {"a": "moon viewing ceremony", "b": "1F391", "j": ["celebration", "ceremony", "moon", "moon viewing ceremony"]}, "red-envelope": {"a": "red envelope", "b": "1F9E7", "j": ["gift", "good luck", "hóngbāo", "lai see", "money", "red envelope"]}, "ribbon": {"a": "ribbon", "b": "1F380", "j": ["celebration", "ribbon"]}, "wrapped-gift": {"a": "wrapped gift", "b": "1F381", "j": ["box", "celebration", "gift", "present", "wrapped"]}, "reminder-ribbon": {"a": "reminder ribbon", "b": "1F397", "j": ["celebration", "reminder", "ribbon"]}, "admission-tickets": {"a": "admission tickets", "b": "1F39F", "j": ["admission", "admission tickets", "ticket"]}, "ticket": {"a": "ticket", "b": "1F3AB", "j": ["admission", "ticket"]}, "military-medal": {"a": "military medal", "b": "1F396", "j": ["celebration", "medal", "military"]}, "trophy": {"a": "trophy", "b": "1F3C6", "j": ["prize", "trophy"]}, "sports-medal": {"a": "sports medal", "b": "1F3C5", "j": ["medal", "sports medal"]}, "1st-place-medal": {"a": "1st place medal", "b": "1F947", "j": ["1st place medal", "first", "gold", "medal"]}, "2nd-place-medal": {"a": "2nd place medal", "b": "1F948", "j": ["2nd place medal", "medal", "second", "silver"]}, "3rd-place-medal": {"a": "3rd place medal", "b": "1F949", "j": ["3rd place medal", "bronze", "medal", "third"]}, "soccer-ball": {"a": "soccer ball", "b": "26BD", "j": ["ball", "football", "soccer"]}, "baseball": {"a": "baseball", "b": "26BE", "j": ["ball", "baseball"]}, "softball": {"a": "softball", "b": "1F94E", "j": ["ball", "glove", "softball", "underarm"]}, "basketball": {"a": "basketball", "b": "1F3C0", "j": ["ball", "basketball", "hoop"]}, "volleyball": {"a": "volleyball", "b": "1F3D0", "j": ["ball", "game", "volleyball"]}, "american-football": {"a": "american football", "b": "1F3C8", "j": ["american", "ball", "football"]}, "rugby-football": {"a": "rugby football", "b": "1F3C9", "j": ["ball", "football", "rugby"]}, "tennis": {"a": "tennis", "b": "1F3BE", "j": ["ball", "racquet", "tennis"]}, "flying-disc": {"a": "flying disc", "b": "1F94F", "j": ["flying disc", "ultimate"]}, "bowling": {"a": "bowling", "b": "1F3B3", "j": ["ball", "bowling", "game"]}, "cricket-game": {"a": "cricket game", "b": "1F3CF", "j": ["ball", "bat", "cricket game", "game"]}, "field-hockey": {"a": "field hockey", "b": "1F3D1", "j": ["ball", "field", "game", "hockey", "stick"]}, "ice-hockey": {"a": "ice hockey", "b": "1F3D2", "j": ["game", "hockey", "ice", "puck", "stick"]}, "lacrosse": {"a": "lacrosse", "b": "1F94D", "j": ["ball", "goal", "lacrosse", "stick"]}, "ping-pong": {"a": "ping pong", "b": "1F3D3", "j": ["ball", "bat", "game", "paddle", "ping pong", "table tennis"]}, "badminton": {"a": "badminton", "b": "1F3F8", "j": ["badminton", "birdie", "game", "racquet", "shuttlecock"]}, "boxing-glove": {"a": "boxing glove", "b": "1F94A", "j": ["boxing", "glove"]}, "martial-arts-uniform": {"a": "martial arts uniform", "b": "1F94B", "j": ["judo", "karate", "martial arts", "martial arts uniform", "taekwondo", "uniform"]}, "goal-net": {"a": "goal net", "b": "1F945", "j": ["goal", "net"]}, "flag-in-hole": {"a": "flag in hole", "b": "26F3", "j": ["flag in hole", "golf", "hole"]}, "ice-skate": {"a": "ice skate", "b": "26F8", "j": ["ice", "skate"]}, "fishing-pole": {"a": "fishing pole", "b": "1F3A3", "j": ["fish", "fishing pole", "pole"]}, "diving-mask": {"a": "diving mask", "b": "1F93F", "j": ["diving", "diving mask", "scuba", "snorkeling"]}, "running-shirt": {"a": "running shirt", "b": "1F3BD", "j": ["athletics", "running", "sash", "shirt"]}, "skis": {"a": "skis", "b": "1F3BF", "j": ["ski", "skis", "snow"]}, "sled": {"a": "sled", "b": "1F6F7", "j": ["sled", "sledge", "sleigh", "luge", "toboggan"]}, "curling-stone": {"a": "curling stone", "b": "1F94C", "j": ["curling stone", "game", "rock"]}, "bullseye": {"a": "bullseye", "b": "1F3AF", "j": ["bullseye", "dart", "direct hit", "game", "hit", "target"]}, "yoyo": {"a": "yo-yo", "b": "1FA80", "j": ["fluctuate", "toy", "yo-yo"]}, "kite": {"a": "kite", "b": "1FA81", "j": ["fly", "kite", "soar"]}, "pool-8-ball": {"a": "pool 8 ball", "b": "1F3B1", "j": ["8", "ball", "billiard", "eight", "game", "pool 8 ball"]}, "crystal-ball": {"a": "crystal ball", "b": "1F52E", "j": ["ball", "crystal", "fairy tale", "fantasy", "fortune", "tool"]}, "magic-wand": {"a": "magic wand", "b": "1FA84", "j": ["magic", "magic wand", "witch", "wizard"]}, "nazar-amulet": {"a": "nazar amulet", "b": "1F9FF", "j": ["bead", "charm", "evil-eye", "nazar", "nazar amulet", "talisman"]}, "video-game": {"a": "video game", "b": "1F3AE", "j": ["controller", "game", "video game"]}, "joystick": {"a": "joystick", "b": "1F579", "j": ["game", "joystick", "video game"]}, "slot-machine": {"a": "slot machine", "b": "1F3B0", "j": ["game", "slot", "slot machine"]}, "game-die": {"a": "game die", "b": "1F3B2", "j": ["dice", "die", "game"]}, "puzzle-piece": {"a": "puzzle piece", "b": "1F9E9", "j": ["clue", "interlocking", "jigsaw", "piece", "puzzle"]}, "teddy-bear": {"a": "teddy bear", "b": "1F9F8", "j": ["plaything", "plush", "stuffed", "teddy bear", "toy"]}, "piata": {"a": "piñata", "b": "1FA85", "j": ["celebration", "party", "piñata"]}, "nesting-dolls": {"a": "nesting dolls", "b": "1FA86", "j": ["doll", "nesting", "nesting dolls", "russia"]}, "spade-suit": {"a": "spade suit", "b": "2660", "j": ["card", "game", "spade suit"]}, "heart-suit": {"a": "heart suit", "b": "2665", "j": ["card", "game", "heart suit"]}, "diamond-suit": {"a": "diamond suit", "b": "2666", "j": ["card", "diamond suit", "game"]}, "club-suit": {"a": "club suit", "b": "2663", "j": ["card", "club suit", "game"]}, "chess-pawn": {"a": "chess pawn", "b": "265F", "j": ["chess", "chess pawn", "dupe", "expendable"]}, "joker": {"a": "joker", "b": "1F0CF", "j": ["card", "game", "joker", "wildcard"]}, "mahjong-red-dragon": {"a": "mahjong red dragon", "b": "1F004", "j": ["game", "mahjong", "mahjong red dragon", "red"]}, "flower-playing-cards": {"a": "flower playing cards", "b": "1F3B4", "j": ["card", "flower", "flower playing cards", "game", "Japanese", "playing"]}, "performing-arts": {"a": "performing arts", "b": "1F3AD", "j": ["art", "mask", "performing", "performing arts", "theater", "theatre"]}, "framed-picture": {"a": "framed picture", "b": "1F5BC", "j": ["art", "frame", "framed picture", "museum", "painting", "picture"]}, "artist-palette": {"a": "artist palette", "b": "1F3A8", "j": ["art", "artist palette", "museum", "painting", "palette"]}, "thread": {"a": "thread", "b": "1F9F5", "j": ["needle", "sewing", "spool", "string", "thread"]}, "sewing-needle": {"a": "sewing needle", "b": "1FAA1", "j": ["embroidery", "needle", "sewing", "stitches", "sutures", "tailoring"]}, "yarn": {"a": "yarn", "b": "1F9F6", "j": ["ball", "crochet", "knit", "yarn"]}, "knot": {"a": "knot", "b": "1FAA2", "j": ["knot", "rope", "tangled", "tie", "twine", "twist"]}, "glasses": {"a": "glasses", "b": "1F453", "j": ["clothing", "eye", "eyeglasses", "eyewear", "glasses"]}, "sunglasses": {"a": "sunglasses", "b": "1F576", "j": ["dark", "eye", "eyewear", "glasses", "sunglasses"]}, "goggles": {"a": "goggles", "b": "1F97D", "j": ["eye protection", "goggles", "swimming", "welding"]}, "lab-coat": {"a": "lab coat", "b": "1F97C", "j": ["doctor", "experiment", "lab coat", "scientist"]}, "safety-vest": {"a": "safety vest", "b": "1F9BA", "j": ["emergency", "safety", "vest"]}, "necktie": {"a": "necktie", "b": "1F454", "j": ["clothing", "necktie", "tie"]}, "tshirt": {"a": "t-shirt", "b": "1F455", "j": ["clothing", "shirt", "t-shirt", "tshirt"]}, "jeans": {"a": "jeans", "b": "1F456", "j": ["clothing", "jeans", "pants", "trousers"]}, "scarf": {"a": "scarf", "b": "1F9E3", "j": ["neck", "scarf"]}, "gloves": {"a": "gloves", "b": "1F9E4", "j": ["gloves", "hand"]}, "coat": {"a": "coat", "b": "1F9E5", "j": ["coat", "jacket"]}, "socks": {"a": "socks", "b": "1F9E6", "j": ["socks", "stocking"]}, "dress": {"a": "dress", "b": "1F457", "j": ["clothing", "dress"]}, "kimono": {"a": "kimono", "b": "1F458", "j": ["clothing", "kimono"]}, "sari": {"a": "sari", "b": "1F97B", "j": ["clothing", "dress", "sari"]}, "onepiece-swimsuit": {"a": "one-piece swimsuit", "b": "1FA71", "j": ["bathing suit", "one-piece swimsuit"]}, "briefs": {"a": "briefs", "b": "1FA72", "j": ["bathing suit", "briefs", "one-piece", "swimsuit", "underwear"]}, "shorts": {"a": "shorts", "b": "1FA73", "j": ["bathing suit", "pants", "shorts", "underwear"]}, "bikini": {"a": "bikini", "b": "1F459", "j": ["bikini", "clothing", "swim"]}, "womans-clothes": {"a": "woman’s clothes", "b": "1F45A", "j": ["clothing", "woman", "woman’s clothes"]}, "purse": {"a": "purse", "b": "1F45B", "j": ["clothing", "coin", "purse"]}, "handbag": {"a": "handbag", "b": "1F45C", "j": ["bag", "clothing", "handbag", "purse"]}, "clutch-bag": {"a": "clutch bag", "b": "1F45D", "j": ["bag", "clothing", "clutch bag", "pouch"]}, "shopping-bags": {"a": "shopping bags", "b": "1F6CD", "j": ["bag", "hotel", "shopping", "shopping bags"]}, "backpack": {"a": "backpack", "b": "1F392", "j": ["backpack", "bag", "rucksack", "satchel", "school"]}, "thong-sandal": {"a": "thong sandal", "b": "1FA74", "j": ["beach sandals", "sandals", "thong sandal", "thong sandals", "thongs", "zōri"]}, "mans-shoe": {"a": "man’s shoe", "b": "1F45E", "j": ["clothing", "man", "man’s shoe", "shoe"]}, "running-shoe": {"a": "running shoe", "b": "1F45F", "j": ["athletic", "clothing", "running shoe", "shoe", "sneaker"]}, "hiking-boot": {"a": "hiking boot", "b": "1F97E", "j": ["backpacking", "boot", "camping", "hiking"]}, "flat-shoe": {"a": "flat shoe", "b": "1F97F", "j": ["ballet flat", "flat shoe", "slip-on", "slipper"]}, "highheeled-shoe": {"a": "high-heeled shoe", "b": "1F460", "j": ["clothing", "heel", "high-heeled shoe", "shoe", "woman"]}, "womans-sandal": {"a": "woman’s sandal", "b": "1F461", "j": ["clothing", "sandal", "shoe", "woman", "woman’s sandal"]}, "ballet-shoes": {"a": "ballet shoes", "b": "1FA70", "j": ["ballet", "ballet shoes", "dance"]}, "womans-boot": {"a": "woman’s boot", "b": "1F462", "j": ["boot", "clothing", "shoe", "woman", "woman’s boot"]}, "crown": {"a": "crown", "b": "1F451", "j": ["clothing", "crown", "king", "queen"]}, "womans-hat": {"a": "woman’s hat", "b": "1F452", "j": ["clothing", "hat", "woman", "woman’s hat"]}, "top-hat": {"a": "top hat", "b": "1F3A9", "j": ["clothing", "hat", "top", "tophat"]}, "graduation-cap": {"a": "graduation cap", "b": "1F393", "j": ["cap", "celebration", "clothing", "graduation", "hat"]}, "billed-cap": {"a": "billed cap", "b": "1F9E2", "j": ["baseball cap", "billed cap"]}, "military-helmet": {"a": "military helmet", "b": "1FA96", "j": ["army", "helmet", "military", "soldier", "warrior"]}, "rescue-workers-helmet": {"a": "rescue worker’s helmet", "b": "26D1", "j": ["aid", "cross", "face", "hat", "helmet", "rescue worker’s helmet"]}, "prayer-beads": {"a": "prayer beads", "b": "1F4FF", "j": ["beads", "clothing", "necklace", "prayer", "religion"]}, "lipstick": {"a": "lipstick", "b": "1F484", "j": ["cosmetics", "lipstick", "makeup"]}, "ring": {"a": "ring", "b": "1F48D", "j": ["diamond", "ring"]}, "gem-stone": {"a": "gem stone", "b": "1F48E", "j": ["diamond", "gem", "gem stone", "jewel"]}, "muted-speaker": {"a": "muted speaker", "b": "1F507", "j": ["mute", "muted speaker", "quiet", "silent", "speaker"]}, "speaker-low-volume": {"a": "speaker low volume", "b": "1F508", "j": ["soft", "speaker low volume"]}, "speaker-medium-volume": {"a": "speaker medium volume", "b": "1F509", "j": ["medium", "speaker medium volume"]}, "speaker-high-volume": {"a": "speaker high volume", "b": "1F50A", "j": ["loud", "speaker high volume"]}, "loudspeaker": {"a": "loudspeaker", "b": "1F4E2", "j": ["loud", "loudspeaker", "public address"]}, "megaphone": {"a": "megaphone", "b": "1F4E3", "j": ["cheering", "megaphone"]}, "postal-horn": {"a": "postal horn", "b": "1F4EF", "j": ["horn", "post", "postal"]}, "bell": {"a": "bell", "b": "1F514", "j": ["bell"]}, "bell-with-slash": {"a": "bell with slash", "b": "1F515", "j": ["bell", "bell with slash", "forbidden", "mute", "quiet", "silent"]}, "musical-score": {"a": "musical score", "b": "1F3BC", "j": ["music", "musical score", "score"]}, "musical-note": {"a": "musical note", "b": "1F3B5", "j": ["music", "musical note", "note"]}, "musical-notes": {"a": "musical notes", "b": "1F3B6", "j": ["music", "musical notes", "note", "notes"]}, "studio-microphone": {"a": "studio microphone", "b": "1F399", "j": ["mic", "microphone", "music", "studio"]}, "level-slider": {"a": "level slider", "b": "1F39A", "j": ["level", "music", "slider"]}, "control-knobs": {"a": "control knobs", "b": "1F39B", "j": ["control", "knobs", "music"]}, "microphone": {"a": "microphone", "b": "1F3A4", "j": ["karaoke", "mic", "microphone"]}, "headphone": {"a": "headphone", "b": "1F3A7", "j": ["earbud", "headphone"]}, "radio": {"a": "radio", "b": "1F4FB", "j": ["radio", "video"]}, "saxophone": {"a": "saxophone", "b": "1F3B7", "j": ["instrument", "music", "sax", "saxophone"]}, "accordion": {"a": "accordion", "b": "1FA97", "j": ["accordian", "accordion", "concertina", "squeeze box"]}, "guitar": {"a": "guitar", "b": "1F3B8", "j": ["guitar", "instrument", "music"]}, "musical-keyboard": {"a": "musical keyboard", "b": "1F3B9", "j": ["instrument", "keyboard", "music", "musical keyboard", "piano"]}, "trumpet": {"a": "trumpet", "b": "1F3BA", "j": ["instrument", "music", "trumpet"]}, "violin": {"a": "violin", "b": "1F3BB", "j": ["instrument", "music", "violin"]}, "banjo": {"a": "banjo", "b": "1FA95", "j": ["banjo", "music", "stringed"]}, "drum": {"a": "drum", "b": "1F941", "j": ["drum", "drumsticks", "music"]}, "long-drum": {"a": "long drum", "b": "1FA98", "j": ["beat", "conga", "drum", "long drum", "rhythm"]}, "mobile-phone": {"a": "mobile phone", "b": "1F4F1", "j": ["cell", "mobile", "phone", "telephone"]}, "mobile-phone-with-arrow": {"a": "mobile phone with arrow", "b": "1F4F2", "j": ["arrow", "cell", "mobile", "mobile phone with arrow", "phone", "receive"]}, "telephone": {"a": "telephone", "b": "260E", "j": ["phone", "telephone"]}, "telephone-receiver": {"a": "telephone receiver", "b": "1F4DE", "j": ["phone", "receiver", "telephone"]}, "pager": {"a": "pager", "b": "1F4DF", "j": ["pager"]}, "fax-machine": {"a": "fax machine", "b": "1F4E0", "j": ["fax", "fax machine"]}, "battery": {"a": "battery", "b": "1F50B", "j": ["battery"]}, "electric-plug": {"a": "electric plug", "b": "1F50C", "j": ["electric", "electricity", "plug"]}, "laptop": {"a": "laptop", "b": "1F4BB", "j": ["computer", "laptop", "pc", "personal"]}, "desktop-computer": {"a": "desktop computer", "b": "1F5A5", "j": ["computer", "desktop"]}, "printer": {"a": "printer", "b": "1F5A8", "j": ["computer", "printer"]}, "keyboard": {"a": "keyboard", "b": "2328", "j": ["computer", "keyboard"]}, "computer-mouse": {"a": "computer mouse", "b": "1F5B1", "j": ["computer", "computer mouse"]}, "trackball": {"a": "trackball", "b": "1F5B2", "j": ["computer", "trackball"]}, "computer-disk": {"a": "computer disk", "b": "1F4BD", "j": ["computer", "disk", "minidisk", "optical"]}, "floppy-disk": {"a": "floppy disk", "b": "1F4BE", "j": ["computer", "disk", "floppy"]}, "optical-disk": {"a": "optical disk", "b": "1F4BF", "j": ["cd", "computer", "disk", "optical"]}, "dvd": {"a": "dvd", "b": "1F4C0", "j": ["blu-ray", "computer", "disk", "dvd", "optical"]}, "abacus": {"a": "abacus", "b": "1F9EE", "j": ["abacus", "calculation"]}, "movie-camera": {"a": "movie camera", "b": "1F3A5", "j": ["camera", "cinema", "movie"]}, "film-frames": {"a": "film frames", "b": "1F39E", "j": ["cinema", "film", "frames", "movie"]}, "film-projector": {"a": "film projector", "b": "1F4FD", "j": ["cinema", "film", "movie", "projector", "video"]}, "clapper-board": {"a": "clapper board", "b": "1F3AC", "j": ["clapper", "clapper board", "movie"]}, "television": {"a": "television", "b": "1F4FA", "j": ["television", "tv", "video"]}, "camera": {"a": "camera", "b": "1F4F7", "j": ["camera", "video"]}, "camera-with-flash": {"a": "camera with flash", "b": "1F4F8", "j": ["camera", "camera with flash", "flash", "video"]}, "video-camera": {"a": "video camera", "b": "1F4F9", "j": ["camera", "video"]}, "videocassette": {"a": "videocassette", "b": "1F4FC", "j": ["tape", "vhs", "video", "videocassette"]}, "magnifying-glass-tilted-left": {"a": "magnifying glass tilted left", "b": "1F50D", "j": ["glass", "magnifying", "magnifying glass tilted left", "search", "tool"]}, "magnifying-glass-tilted-right": {"a": "magnifying glass tilted right", "b": "1F50E", "j": ["glass", "magnifying", "magnifying glass tilted right", "search", "tool"]}, "candle": {"a": "candle", "b": "1F56F", "j": ["candle", "light"]}, "light-bulb": {"a": "light bulb", "b": "1F4A1", "j": ["bulb", "comic", "electric", "idea", "light"]}, "flashlight": {"a": "flashlight", "b": "1F526", "j": ["electric", "flashlight", "light", "tool", "torch"]}, "red-paper-lantern": {"a": "red paper lantern", "b": "1F3EE", "j": ["bar", "lantern", "light", "red", "red paper lantern"]}, "diya-lamp": {"a": "diya lamp", "b": "1FA94", "j": ["diya", "lamp", "oil"]}, "notebook-with-decorative-cover": {"a": "notebook with decorative cover", "b": "1F4D4", "j": ["book", "cover", "decorated", "notebook", "notebook with decorative cover"]}, "closed-book": {"a": "closed book", "b": "1F4D5", "j": ["book", "closed"]}, "open-book": {"a": "open book", "b": "1F4D6", "j": ["book", "open"]}, "green-book": {"a": "green book", "b": "1F4D7", "j": ["book", "green"]}, "blue-book": {"a": "blue book", "b": "1F4D8", "j": ["blue", "book"]}, "orange-book": {"a": "orange book", "b": "1F4D9", "j": ["book", "orange"]}, "books": {"a": "books", "b": "1F4DA", "j": ["book", "books"]}, "notebook": {"a": "notebook", "b": "1F4D3", "j": ["notebook"]}, "ledger": {"a": "ledger", "b": "1F4D2", "j": ["ledger", "notebook"]}, "page-with-curl": {"a": "page with curl", "b": "1F4C3", "j": ["curl", "document", "page", "page with curl"]}, "scroll": {"a": "scroll", "b": "1F4DC", "j": ["paper", "scroll"]}, "page-facing-up": {"a": "page facing up", "b": "1F4C4", "j": ["document", "page", "page facing up"]}, "newspaper": {"a": "newspaper", "b": "1F4F0", "j": ["news", "newspaper", "paper"]}, "rolledup-newspaper": {"a": "rolled-up newspaper", "b": "1F5DE", "j": ["news", "newspaper", "paper", "rolled", "rolled-up newspaper"]}, "bookmark-tabs": {"a": "bookmark tabs", "b": "1F4D1", "j": ["bookmark", "mark", "marker", "tabs"]}, "bookmark": {"a": "bookmark", "b": "1F516", "j": ["bookmark", "mark"]}, "label": {"a": "label", "b": "1F3F7", "j": ["label"]}, "money-bag": {"a": "money bag", "b": "1F4B0", "j": ["bag", "dollar", "money", "moneybag"]}, "coin": {"a": "coin", "b": "1FA99", "j": ["coin", "gold", "metal", "money", "silver", "treasure"]}, "yen-banknote": {"a": "yen banknote", "b": "1F4B4", "j": ["banknote", "bill", "currency", "money", "note", "yen"]}, "dollar-banknote": {"a": "dollar banknote", "b": "1F4B5", "j": ["banknote", "bill", "currency", "dollar", "money", "note"]}, "euro-banknote": {"a": "euro banknote", "b": "1F4B6", "j": ["banknote", "bill", "currency", "euro", "money", "note"]}, "pound-banknote": {"a": "pound banknote", "b": "1F4B7", "j": ["banknote", "bill", "currency", "money", "note", "pound"]}, "money-with-wings": {"a": "money with wings", "b": "1F4B8", "j": ["banknote", "bill", "fly", "money", "money with wings", "wings"]}, "credit-card": {"a": "credit card", "b": "1F4B3", "j": ["card", "credit", "money"]}, "receipt": {"a": "receipt", "b": "1F9FE", "j": ["accounting", "bookkeeping", "evidence", "proof", "receipt"]}, "chart-increasing-with-yen": {"a": "chart increasing with yen", "b": "1F4B9", "j": ["chart", "chart increasing with yen", "graph", "growth", "money", "yen"]}, "envelope": {"a": "envelope", "b": "2709", "j": ["email", "envelope", "letter"]}, "email": {"a": "e-mail", "b": "1F4E7", "j": ["e-mail", "email", "letter", "mail"]}, "incoming-envelope": {"a": "incoming envelope", "b": "1F4E8", "j": ["e-mail", "email", "envelope", "incoming", "letter", "receive"]}, "envelope-with-arrow": {"a": "envelope with arrow", "b": "1F4E9", "j": ["arrow", "e-mail", "email", "envelope", "envelope with arrow", "outgoing"]}, "outbox-tray": {"a": "outbox tray", "b": "1F4E4", "j": ["box", "letter", "mail", "outbox", "sent", "tray"]}, "inbox-tray": {"a": "inbox tray", "b": "1F4E5", "j": ["box", "inbox", "letter", "mail", "receive", "tray"]}, "package": {"a": "package", "b": "1F4E6", "j": ["box", "package", "parcel"]}, "closed-mailbox-with-raised-flag": {"a": "closed mailbox with raised flag", "b": "1F4EB", "j": ["closed", "closed mailbox with raised flag", "mail", "mailbox", "postbox"]}, "closed-mailbox-with-lowered-flag": {"a": "closed mailbox with lowered flag", "b": "1F4EA", "j": ["closed", "closed mailbox with lowered flag", "lowered", "mail", "mailbox", "postbox"]}, "open-mailbox-with-raised-flag": {"a": "open mailbox with raised flag", "b": "1F4EC", "j": ["mail", "mailbox", "open", "open mailbox with raised flag", "postbox"]}, "open-mailbox-with-lowered-flag": {"a": "open mailbox with lowered flag", "b": "1F4ED", "j": ["lowered", "mail", "mailbox", "open", "open mailbox with lowered flag", "postbox"]}, "postbox": {"a": "postbox", "b": "1F4EE", "j": ["mail", "mailbox", "postbox"]}, "ballot-box-with-ballot": {"a": "ballot box with ballot", "b": "1F5F3", "j": ["ballot", "ballot box with ballot", "box"]}, "pencil": {"a": "pencil", "b": "270F", "j": ["pencil"]}, "black-nib": {"a": "black nib", "b": "2712", "j": ["black nib", "nib", "pen"]}, "fountain-pen": {"a": "fountain pen", "b": "1F58B", "j": ["fountain", "pen"]}, "pen": {"a": "pen", "b": "1F58A", "j": ["ballpoint", "pen"]}, "paintbrush": {"a": "paintbrush", "b": "1F58C", "j": ["paintbrush", "painting"]}, "crayon": {"a": "crayon", "b": "1F58D", "j": ["crayon"]}, "memo": {"a": "memo", "b": "1F4DD", "j": ["memo", "pencil"]}, "briefcase": {"a": "briefcase", "b": "1F4BC", "j": ["briefcase"]}, "file-folder": {"a": "file folder", "b": "1F4C1", "j": ["file", "folder"]}, "open-file-folder": {"a": "open file folder", "b": "1F4C2", "j": ["file", "folder", "open"]}, "card-index-dividers": {"a": "card index dividers", "b": "1F5C2", "j": ["card", "dividers", "index"]}, "calendar": {"a": "calendar", "b": "1F4C5", "j": ["calendar", "date"]}, "tearoff-calendar": {"a": "tear-off calendar", "b": "1F4C6", "j": ["calendar", "tear-off calendar"]}, "spiral-notepad": {"a": "spiral notepad", "b": "1F5D2", "j": ["note", "pad", "spiral", "spiral notepad"]}, "spiral-calendar": {"a": "spiral calendar", "b": "1F5D3", "j": ["calendar", "pad", "spiral"]}, "card-index": {"a": "card index", "b": "1F4C7", "j": ["card", "index", "rolodex"]}, "chart-increasing": {"a": "chart increasing", "b": "1F4C8", "j": ["chart", "chart increasing", "graph", "growth", "trend", "upward"]}, "chart-decreasing": {"a": "chart decreasing", "b": "1F4C9", "j": ["chart", "chart decreasing", "down", "graph", "trend"]}, "bar-chart": {"a": "bar chart", "b": "1F4CA", "j": ["bar", "chart", "graph"]}, "clipboard": {"a": "clipboard", "b": "1F4CB", "j": ["clipboard"]}, "pushpin": {"a": "pushpin", "b": "1F4CC", "j": ["pin", "pushpin"]}, "round-pushpin": {"a": "round pushpin", "b": "1F4CD", "j": ["pin", "pushpin", "round pushpin"]}, "paperclip": {"a": "paperclip", "b": "1F4CE", "j": ["paperclip"]}, "linked-paperclips": {"a": "linked paperclips", "b": "1F587", "j": ["link", "linked paperclips", "paperclip"]}, "straight-ruler": {"a": "straight ruler", "b": "1F4CF", "j": ["ruler", "straight edge", "straight ruler"]}, "triangular-ruler": {"a": "triangular ruler", "b": "1F4D0", "j": ["ruler", "set", "triangle", "triangular ruler"]}, "scissors": {"a": "scissors", "b": "2702", "j": ["cutting", "scissors", "tool"]}, "card-file-box": {"a": "card file box", "b": "1F5C3", "j": ["box", "card", "file"]}, "file-cabinet": {"a": "file cabinet", "b": "1F5C4", "j": ["cabinet", "file", "filing"]}, "wastebasket": {"a": "wastebasket", "b": "1F5D1", "j": ["wastebasket"]}, "locked": {"a": "locked", "b": "1F512", "j": ["closed", "locked"]}, "unlocked": {"a": "unlocked", "b": "1F513", "j": ["lock", "open", "unlock", "unlocked"]}, "locked-with-pen": {"a": "locked with pen", "b": "1F50F", "j": ["ink", "lock", "locked with pen", "nib", "pen", "privacy"]}, "locked-with-key": {"a": "locked with key", "b": "1F510", "j": ["closed", "key", "lock", "locked with key", "secure"]}, "key": {"a": "key", "b": "1F511", "j": ["key", "lock", "password"]}, "old-key": {"a": "old key", "b": "1F5DD", "j": ["clue", "key", "lock", "old"]}, "hammer": {"a": "hammer", "b": "1F528", "j": ["hammer", "tool"]}, "axe": {"a": "axe", "b": "1FA93", "j": ["axe", "chop", "hatchet", "split", "wood"]}, "pick": {"a": "pick", "b": "26CF", "j": ["mining", "pick", "tool"]}, "hammer-and-pick": {"a": "hammer and pick", "b": "2692", "j": ["hammer", "hammer and pick", "pick", "tool"]}, "hammer-and-wrench": {"a": "hammer and wrench", "b": "1F6E0", "j": ["hammer", "hammer and wrench", "spanner", "tool", "wrench"]}, "dagger": {"a": "dagger", "b": "1F5E1", "j": ["dagger", "knife", "weapon"]}, "crossed-swords": {"a": "crossed swords", "b": "2694", "j": ["crossed", "swords", "weapon"]}, "water-pistol": {"a": "water pistol", "b": "1F52B", "j": ["gun", "handgun", "pistol", "revolver", "tool", "water", "weapon"]}, "boomerang": {"a": "boomerang", "b": "1FA83", "j": ["australia", "boomerang", "rebound", "repercussion"]}, "bow-and-arrow": {"a": "bow and arrow", "b": "1F3F9", "j": ["archer", "arrow", "bow", "bow and arrow", "Sagittarius", "zodiac"]}, "shield": {"a": "shield", "b": "1F6E1", "j": ["shield", "weapon"]}, "carpentry-saw": {"a": "carpentry saw", "b": "1FA9A", "j": ["carpenter", "carpentry saw", "lumber", "saw", "tool"]}, "wrench": {"a": "wrench", "b": "1F527", "j": ["spanner", "tool", "wrench"]}, "screwdriver": {"a": "screwdriver", "b": "1FA9B", "j": ["screw", "screwdriver", "tool"]}, "nut-and-bolt": {"a": "nut and bolt", "b": "1F529", "j": ["bolt", "nut", "nut and bolt", "tool"]}, "gear": {"a": "gear", "b": "2699", "j": ["cog", "cogwheel", "gear", "tool"]}, "clamp": {"a": "clamp", "b": "1F5DC", "j": ["clamp", "compress", "tool", "vice"]}, "balance-scale": {"a": "balance scale", "b": "2696", "j": ["balance", "justice", "Libra", "scale", "zodiac"]}, "white-cane": {"a": "white cane", "b": "1F9AF", "j": ["accessibility", "blind", "white cane"]}, "link": {"a": "link", "b": "1F517", "j": ["link"]}, "chains": {"a": "chains", "b": "26D3", "j": ["chain", "chains"]}, "hook": {"a": "hook", "b": "1FA9D", "j": ["catch", "crook", "curve", "ensnare", "hook", "selling point"]}, "toolbox": {"a": "toolbox", "b": "1F9F0", "j": ["chest", "mechanic", "tool", "toolbox"]}, "magnet": {"a": "magnet", "b": "1F9F2", "j": ["attraction", "horseshoe", "magnet", "magnetic"]}, "ladder": {"a": "ladder", "b": "1FA9C", "j": ["climb", "ladder", "rung", "step"]}, "alembic": {"a": "alembic", "b": "2697", "j": ["alembic", "chemistry", "tool"]}, "test-tube": {"a": "test tube", "b": "1F9EA", "j": ["chemist", "chemistry", "experiment", "lab", "science", "test tube"]}, "petri-dish": {"a": "petri dish", "b": "1F9EB", "j": ["bacteria", "biologist", "biology", "culture", "lab", "petri dish"]}, "dna": {"a": "dna", "b": "1F9EC", "j": ["biologist", "dna", "evolution", "gene", "genetics", "life"]}, "microscope": {"a": "microscope", "b": "1F52C", "j": ["microscope", "science", "tool"]}, "telescope": {"a": "telescope", "b": "1F52D", "j": ["science", "telescope", "tool"]}, "satellite-antenna": {"a": "satellite antenna", "b": "1F4E1", "j": ["antenna", "dish", "satellite"]}, "syringe": {"a": "syringe", "b": "1F489", "j": ["medicine", "needle", "shot", "sick", "syringe"]}, "drop-of-blood": {"a": "drop of blood", "b": "1FA78", "j": ["bleed", "blood donation", "drop of blood", "injury", "medicine", "menstruation"]}, "pill": {"a": "pill", "b": "1F48A", "j": ["doctor", "medicine", "pill", "sick"]}, "adhesive-bandage": {"a": "adhesive bandage", "b": "1FA79", "j": ["adhesive bandage", "bandage"]}, "stethoscope": {"a": "stethoscope", "b": "1FA7A", "j": ["doctor", "heart", "medicine", "stethoscope"]}, "door": {"a": "door", "b": "1F6AA", "j": ["door"]}, "elevator": {"a": "elevator", "b": "1F6D7", "j": ["accessibility", "elevator", "hoist", "lift"]}, "mirror": {"a": "mirror", "b": "1FA9E", "j": ["mirror", "reflection", "reflector", "speculum"]}, "window": {"a": "window", "b": "1FA9F", "j": ["frame", "fresh air", "opening", "transparent", "view", "window"]}, "bed": {"a": "bed", "b": "1F6CF", "j": ["bed", "hotel", "sleep"]}, "couch-and-lamp": {"a": "couch and lamp", "b": "1F6CB", "j": ["couch", "couch and lamp", "hotel", "lamp"]}, "chair": {"a": "chair", "b": "1FA91", "j": ["chair", "seat", "sit"]}, "toilet": {"a": "toilet", "b": "1F6BD", "j": ["toilet"]}, "plunger": {"a": "plunger", "b": "1FAA0", "j": ["force cup", "plumber", "plunger", "suction", "toilet"]}, "shower": {"a": "shower", "b": "1F6BF", "j": ["shower", "water"]}, "bathtub": {"a": "bathtub", "b": "1F6C1", "j": ["bath", "bathtub"]}, "mouse-trap": {"a": "mouse trap", "b": "1FAA4", "j": ["bait", "mouse trap", "mousetrap", "snare", "trap"]}, "razor": {"a": "razor", "b": "1FA92", "j": ["razor", "sharp", "shave"]}, "lotion-bottle": {"a": "lotion bottle", "b": "1F9F4", "j": ["lotion", "lotion bottle", "moisturizer", "shampoo", "sunscreen"]}, "safety-pin": {"a": "safety pin", "b": "1F9F7", "j": ["diaper", "punk rock", "safety pin"]}, "broom": {"a": "broom", "b": "1F9F9", "j": ["broom", "cleaning", "sweeping", "witch"]}, "basket": {"a": "basket", "b": "1F9FA", "j": ["basket", "farming", "laundry", "picnic"]}, "roll-of-paper": {"a": "roll of paper", "b": "1F9FB", "j": ["paper towels", "roll of paper", "toilet paper"]}, "bucket": {"a": "bucket", "b": "1FAA3", "j": ["bucket", "cask", "pail", "vat"]}, "soap": {"a": "soap", "b": "1F9FC", "j": ["bar", "bathing", "cleaning", "lather", "soap", "soapdish"]}, "toothbrush": {"a": "toothbrush", "b": "1FAA5", "j": ["bathroom", "brush", "clean", "dental", "hygiene", "teeth", "toothbrush"]}, "sponge": {"a": "sponge", "b": "1F9FD", "j": ["absorbing", "cleaning", "porous", "sponge"]}, "fire-extinguisher": {"a": "fire extinguisher", "b": "1F9EF", "j": ["extinguish", "fire", "fire extinguisher", "quench"]}, "shopping-cart": {"a": "shopping cart", "b": "1F6D2", "j": ["cart", "shopping", "trolley"]}, "cigarette": {"a": "cigarette", "b": "1F6AC", "j": ["cigarette", "smoking"]}, "coffin": {"a": "coffin", "b": "26B0", "j": ["coffin", "death"]}, "headstone": {"a": "headstone", "b": "1FAA6", "j": ["cemetery", "grave", "graveyard", "headstone", "tombstone"]}, "funeral-urn": {"a": "funeral urn", "b": "26B1", "j": ["ashes", "death", "funeral", "urn"]}, "moai": {"a": "moai", "b": "1F5FF", "j": ["face", "moai", "moyai", "statue"]}, "placard": {"a": "placard", "b": "1FAA7", "j": ["demonstration", "picket", "placard", "protest", "sign"]}, "atm-sign": {"a": "ATM sign", "b": "1F3E7", "j": ["atm", "ATM sign", "automated", "bank", "teller"]}, "litter-in-bin-sign": {"a": "litter in bin sign", "b": "1F6AE", "j": ["litter", "litter bin", "litter in bin sign"]}, "potable-water": {"a": "potable water", "b": "1F6B0", "j": ["drinking", "potable", "water"]}, "wheelchair-symbol": {"a": "wheelchair symbol", "b": "267F", "j": ["access", "wheelchair symbol"]}, "mens-room": {"a": "men’s room", "b": "1F6B9", "j": ["lavatory", "man", "men’s room", "restroom", "wc"]}, "womens-room": {"a": "women’s room", "b": "1F6BA", "j": ["lavatory", "restroom", "wc", "woman", "women’s room"]}, "restroom": {"a": "restroom", "b": "1F6BB", "j": ["lavatory", "restroom", "WC"]}, "baby-symbol": {"a": "baby symbol", "b": "1F6BC", "j": ["baby", "baby symbol", "changing"]}, "water-closet": {"a": "water closet", "b": "1F6BE", "j": ["closet", "lavatory", "restroom", "water", "wc"]}, "passport-control": {"a": "passport control", "b": "1F6C2", "j": ["control", "passport"]}, "customs": {"a": "customs", "b": "1F6C3", "j": ["customs"]}, "baggage-claim": {"a": "baggage claim", "b": "1F6C4", "j": ["baggage", "claim"]}, "left-luggage": {"a": "left luggage", "b": "1F6C5", "j": ["baggage", "left luggage", "locker", "luggage"]}, "warning": {"a": "warning", "b": "26A0", "j": ["warning"]}, "children-crossing": {"a": "children crossing", "b": "1F6B8", "j": ["child", "children crossing", "crossing", "pedestrian", "traffic"]}, "no-entry": {"a": "no entry", "b": "26D4", "j": ["entry", "forbidden", "no", "not", "prohibited", "traffic"]}, "prohibited": {"a": "prohibited", "b": "1F6AB", "j": ["entry", "forbidden", "no", "not", "prohibited"]}, "no-bicycles": {"a": "no bicycles", "b": "1F6B3", "j": ["bicycle", "bike", "forbidden", "no", "no bicycles", "prohibited"]}, "no-smoking": {"a": "no smoking", "b": "1F6AD", "j": ["forbidden", "no", "not", "prohibited", "smoking"]}, "no-littering": {"a": "no littering", "b": "1F6AF", "j": ["forbidden", "litter", "no", "no littering", "not", "prohibited"]}, "nonpotable-water": {"a": "non-potable water", "b": "1F6B1", "j": ["non-drinking", "non-potable", "water"]}, "no-pedestrians": {"a": "no pedestrians", "b": "1F6B7", "j": ["forbidden", "no", "no pedestrians", "not", "pedestrian", "prohibited"]}, "no-mobile-phones": {"a": "no mobile phones", "b": "1F4F5", "j": ["cell", "forbidden", "mobile", "no", "no mobile phones", "phone"]}, "no-one-under-eighteen": {"a": "no one under eighteen", "b": "1F51E", "j": ["18", "age restriction", "eighteen", "no one under eighteen", "prohibited", "underage"]}, "radioactive": {"a": "radioactive", "b": "2622", "j": ["radioactive", "sign"]}, "biohazard": {"a": "biohazard", "b": "2623", "j": ["biohazard", "sign"]}, "up-arrow": {"a": "up arrow", "b": "2B06", "j": ["arrow", "cardinal", "direction", "north", "up arrow"]}, "upright-arrow": {"a": "up-right arrow", "b": "2197", "j": ["arrow", "direction", "intercardinal", "northeast", "up-right arrow"]}, "right-arrow": {"a": "right arrow", "b": "27A1", "j": ["arrow", "cardinal", "direction", "east", "right arrow"]}, "downright-arrow": {"a": "down-right arrow", "b": "2198", "j": ["arrow", "direction", "down-right arrow", "intercardinal", "southeast"]}, "down-arrow": {"a": "down arrow", "b": "2B07", "j": ["arrow", "cardinal", "direction", "down", "south"]}, "downleft-arrow": {"a": "down-left arrow", "b": "2199", "j": ["arrow", "direction", "down-left arrow", "intercardinal", "southwest"]}, "left-arrow": {"a": "left arrow", "b": "2B05", "j": ["arrow", "cardinal", "direction", "left arrow", "west"]}, "upleft-arrow": {"a": "up-left arrow", "b": "2196", "j": ["arrow", "direction", "intercardinal", "northwest", "up-left arrow"]}, "updown-arrow": {"a": "up-down arrow", "b": "2195", "j": ["arrow", "up-down arrow"]}, "leftright-arrow": {"a": "left-right arrow", "b": "2194", "j": ["arrow", "left-right arrow"]}, "right-arrow-curving-left": {"a": "right arrow curving left", "b": "21A9", "j": ["arrow", "right arrow curving left"]}, "left-arrow-curving-right": {"a": "left arrow curving right", "b": "21AA", "j": ["arrow", "left arrow curving right"]}, "right-arrow-curving-up": {"a": "right arrow curving up", "b": "2934", "j": ["arrow", "right arrow curving up"]}, "right-arrow-curving-down": {"a": "right arrow curving down", "b": "2935", "j": ["arrow", "down", "right arrow curving down"]}, "clockwise-vertical-arrows": {"a": "clockwise vertical arrows", "b": "1F503", "j": ["arrow", "clockwise", "clockwise vertical arrows", "reload"]}, "counterclockwise-arrows-button": {"a": "counterclockwise arrows button", "b": "1F504", "j": ["anticlockwise", "arrow", "counterclockwise", "counterclockwise arrows button", "withershins"]}, "back-arrow": {"a": "BACK arrow", "b": "1F519", "j": ["arrow", "back", "BACK arrow"]}, "end-arrow": {"a": "END arrow", "b": "1F51A", "j": ["arrow", "end", "END arrow"]}, "on-arrow": {"a": "ON! arrow", "b": "1F51B", "j": ["arrow", "mark", "on", "ON! arrow"]}, "soon-arrow": {"a": "SOON arrow", "b": "1F51C", "j": ["arrow", "soon", "SOON arrow"]}, "top-arrow": {"a": "TOP arrow", "b": "1F51D", "j": ["arrow", "top", "TOP arrow", "up"]}, "place-of-worship": {"a": "place of worship", "b": "1F6D0", "j": ["place of worship", "religion", "worship"]}, "atom-symbol": {"a": "atom symbol", "b": "269B", "j": ["atheist", "atom", "atom symbol"]}, "om": {"a": "om", "b": "1F549", "j": ["Hindu", "om", "religion"]}, "star-of-david": {"a": "star of David", "b": "2721", "j": ["David", "Jew", "Jewish", "religion", "star", "star of David"]}, "wheel-of-dharma": {"a": "wheel of dharma", "b": "2638", "j": ["Buddhist", "dharma", "religion", "wheel", "wheel of dharma"]}, "yin-yang": {"a": "yin yang", "b": "262F", "j": ["religion", "tao", "taoist", "yang", "yin"]}, "latin-cross": {"a": "latin cross", "b": "271D", "j": ["Christian", "cross", "latin cross", "religion"]}, "orthodox-cross": {"a": "orthodox cross", "b": "2626", "j": ["Christian", "cross", "orthodox cross", "religion"]}, "star-and-crescent": {"a": "star and crescent", "b": "262A", "j": ["islam", "Muslim", "religion", "star and crescent"]}, "peace-symbol": {"a": "peace symbol", "b": "262E", "j": ["peace", "peace symbol"]}, "menorah": {"a": "menorah", "b": "1F54E", "j": ["candelabrum", "candlestick", "menorah", "religion"]}, "dotted-sixpointed-star": {"a": "dotted six-pointed star", "b": "1F52F", "j": ["dotted six-pointed star", "fortune", "star"]}, "aries": {"a": "Aries", "b": "2648", "j": ["Aries", "ram", "zodiac"]}, "taurus": {"a": "Taurus", "b": "2649", "j": ["bull", "ox", "Taurus", "zodiac"]}, "gemini": {"a": "Gemini", "b": "264A", "j": ["Gemini", "twins", "zodiac"]}, "cancer": {"a": "Cancer", "b": "264B", "j": ["Cancer", "crab", "zodiac"]}, "leo": {"a": "Leo", "b": "264C", "j": ["Leo", "lion", "zodiac"]}, "virgo": {"a": "Virgo", "b": "264D", "j": ["Virgo", "zodiac"]}, "libra": {"a": "Libra", "b": "264E", "j": ["balance", "justice", "Libra", "scales", "zodiac"]}, "scorpio": {"a": "Scorpio", "b": "264F", "j": ["Scorpio", "scorpion", "scorpius", "zodiac"]}, "sagittarius": {"a": "Sagittarius", "b": "2650", "j": ["archer", "Sagittarius", "zodiac"]}, "capricorn": {"a": "Capricorn", "b": "2651", "j": ["Capricorn", "goat", "zodiac"]}, "aquarius": {"a": "Aquarius", "b": "2652", "j": ["Aquarius", "bearer", "water", "zodiac"]}, "pisces": {"a": "Pisces", "b": "2653", "j": ["fish", "Pisces", "zodiac"]}, "ophiuchus": {"a": "Ophiuchus", "b": "26CE", "j": ["bearer", "Ophiuchus", "serpent", "snake", "zodiac"]}, "shuffle-tracks-button": {"a": "shuffle tracks button", "b": "1F500", "j": ["arrow", "crossed", "shuffle tracks button"]}, "repeat-button": {"a": "repeat button", "b": "1F501", "j": ["arrow", "clockwise", "repeat", "repeat button"]}, "repeat-single-button": {"a": "repeat single button", "b": "1F502", "j": ["arrow", "clockwise", "once", "repeat single button"]}, "play-button": {"a": "play button", "b": "25B6", "j": ["arrow", "play", "play button", "right", "triangle"]}, "fastforward-button": {"a": "fast-forward button", "b": "23E9", "j": ["arrow", "double", "fast", "fast-forward button", "forward"]}, "next-track-button": {"a": "next track button", "b": "23ED", "j": ["arrow", "next scene", "next track", "next track button", "triangle"]}, "play-or-pause-button": {"a": "play or pause button", "b": "23EF", "j": ["arrow", "pause", "play", "play or pause button", "right", "triangle"]}, "reverse-button": {"a": "reverse button", "b": "25C0", "j": ["arrow", "left", "reverse", "reverse button", "triangle"]}, "fast-reverse-button": {"a": "fast reverse button", "b": "23EA", "j": ["arrow", "double", "fast reverse button", "rewind"]}, "last-track-button": {"a": "last track button", "b": "23EE", "j": ["arrow", "last track button", "previous scene", "previous track", "triangle"]}, "upwards-button": {"a": "upwards button", "b": "1F53C", "j": ["arrow", "button", "red", "upwards button"]}, "fast-up-button": {"a": "fast up button", "b": "23EB", "j": ["arrow", "double", "fast up button"]}, "downwards-button": {"a": "downwards button", "b": "1F53D", "j": ["arrow", "button", "down", "downwards button", "red"]}, "fast-down-button": {"a": "fast down button", "b": "23EC", "j": ["arrow", "double", "down", "fast down button"]}, "pause-button": {"a": "pause button", "b": "23F8", "j": ["bar", "double", "pause", "pause button", "vertical"]}, "stop-button": {"a": "stop button", "b": "23F9", "j": ["square", "stop", "stop button"]}, "record-button": {"a": "record button", "b": "23FA", "j": ["circle", "record", "record button"]}, "eject-button": {"a": "eject button", "b": "23CF", "j": ["eject", "eject button"]}, "cinema": {"a": "cinema", "b": "1F3A6", "j": ["camera", "cinema", "film", "movie"]}, "dim-button": {"a": "dim button", "b": "1F505", "j": ["brightness", "dim", "dim button", "low"]}, "bright-button": {"a": "bright button", "b": "1F506", "j": ["bright", "bright button", "brightness"]}, "antenna-bars": {"a": "antenna bars", "b": "1F4F6", "j": ["antenna", "antenna bars", "bar", "cell", "mobile", "phone"]}, "vibration-mode": {"a": "vibration mode", "b": "1F4F3", "j": ["cell", "mobile", "mode", "phone", "telephone", "vibration"]}, "mobile-phone-off": {"a": "mobile phone off", "b": "1F4F4", "j": ["cell", "mobile", "off", "phone", "telephone"]}, "female-sign": {"a": "female sign", "b": "2640", "j": ["female sign", "woman"]}, "male-sign": {"a": "male sign", "b": "2642", "j": ["male sign", "man"]}, "transgender-symbol": {"a": "transgender symbol", "b": "26A7", "j": ["transgender", "transgender symbol"]}, "multiply": {"a": "multiply", "b": "2716", "j": ["×", "cancel", "multiplication", "multiply", "sign", "x"]}, "plus": {"a": "plus", "b": "2795", "j": ["+", "math", "plus", "sign"]}, "minus": {"a": "minus", "b": "2796", "j": ["-", "−", "math", "minus", "sign"]}, "divide": {"a": "divide", "b": "2797", "j": ["÷", "divide", "division", "math", "sign"]}, "infinity": {"a": "infinity", "b": "267E", "j": ["forever", "infinity", "unbounded", "universal"]}, "double-exclamation-mark": {"a": "double exclamation mark", "b": "203C", "j": ["!", "!!", "bangbang", "double exclamation mark", "exclamation", "mark"]}, "exclamation-question-mark": {"a": "exclamation question mark", "b": "2049", "j": ["!", "!?", "?", "exclamation", "interrobang", "mark", "punctuation", "question"]}, "red-question-mark": {"a": "red question mark", "b": "2753", "j": ["?", "mark", "punctuation", "question", "red question mark"]}, "white-question-mark": {"a": "white question mark", "b": "2754", "j": ["?", "mark", "outlined", "punctuation", "question", "white question mark"]}, "white-exclamation-mark": {"a": "white exclamation mark", "b": "2755", "j": ["!", "exclamation", "mark", "outlined", "punctuation", "white exclamation mark"]}, "red-exclamation-mark": {"a": "red exclamation mark", "b": "2757", "j": ["!", "exclamation", "mark", "punctuation", "red exclamation mark"]}, "wavy-dash": {"a": "wavy dash", "b": "3030", "j": ["dash", "punctuation", "wavy"]}, "currency-exchange": {"a": "currency exchange", "b": "1F4B1", "j": ["bank", "currency", "exchange", "money"]}, "heavy-dollar-sign": {"a": "heavy dollar sign", "b": "1F4B2", "j": ["currency", "dollar", "heavy dollar sign", "money"]}, "medical-symbol": {"a": "medical symbol", "b": "2695", "j": ["aesculapius", "medical symbol", "medicine", "staff"]}, "recycling-symbol": {"a": "recycling symbol", "b": "267B", "j": ["recycle", "recycling symbol"]}, "fleurdelis": {"a": "fleur-de-lis", "b": "269C", "j": ["fleur-de-lis"]}, "trident-emblem": {"a": "trident emblem", "b": "1F531", "j": ["anchor", "emblem", "ship", "tool", "trident"]}, "name-badge": {"a": "name badge", "b": "1F4DB", "j": ["badge", "name"]}, "japanese-symbol-for-beginner": {"a": "Japanese symbol for beginner", "b": "1F530", "j": ["beginner", "chevron", "Japanese", "Japanese symbol for beginner", "leaf"]}, "hollow-red-circle": {"a": "hollow red circle", "b": "2B55", "j": ["circle", "hollow red circle", "large", "o", "red"]}, "check-mark-button": {"a": "check mark button", "b": "2705", "j": ["✓", "button", "check", "mark"]}, "check-box-with-check": {"a": "check box with check", "b": "2611", "j": ["✓", "box", "check", "check box with check"]}, "check-mark": {"a": "check mark", "b": "2714", "j": ["✓", "check", "mark"]}, "cross-mark": {"a": "cross mark", "b": "274C", "j": ["×", "cancel", "cross", "mark", "multiplication", "multiply", "x"]}, "cross-mark-button": {"a": "cross mark button", "b": "274E", "j": ["×", "cross mark button", "mark", "square", "x"]}, "curly-loop": {"a": "curly loop", "b": "27B0", "j": ["curl", "curly loop", "loop"]}, "double-curly-loop": {"a": "double curly loop", "b": "27BF", "j": ["curl", "double", "double curly loop", "loop"]}, "part-alternation-mark": {"a": "part alternation mark", "b": "303D", "j": ["mark", "part", "part alternation mark"]}, "eightspoked-asterisk": {"a": "eight-spoked asterisk", "b": "2733", "j": ["*", "asterisk", "eight-spoked asterisk"]}, "eightpointed-star": {"a": "eight-pointed star", "b": "2734", "j": ["*", "eight-pointed star", "star"]}, "sparkle": {"a": "sparkle", "b": "2747", "j": ["*", "sparkle"]}, "copyright": {"a": "copyright", "b": "00A9", "j": ["c", "copyright"]}, "registered": {"a": "registered", "b": "00AE", "j": ["r", "registered"]}, "trade-mark": {"a": "trade mark", "b": "2122", "j": ["mark", "tm", "trade mark", "trademark"]}, "keycap": {"a": "keycap: *", "b": "002A-FE0F-20E3", "j": ["keycap"]}, "keycap-0": {"a": "keycap: 0", "b": "0030-FE0F-20E3", "j": ["keycap"]}, "keycap-1": {"a": "keycap: 1", "b": "0031-FE0F-20E3", "j": ["keycap"]}, "keycap-2": {"a": "keycap: 2", "b": "0032-FE0F-20E3", "j": ["keycap"]}, "keycap-3": {"a": "keycap: 3", "b": "0033-FE0F-20E3", "j": ["keycap"]}, "keycap-4": {"a": "keycap: 4", "b": "0034-FE0F-20E3", "j": ["keycap"]}, "keycap-5": {"a": "keycap: 5", "b": "0035-FE0F-20E3", "j": ["keycap"]}, "keycap-6": {"a": "keycap: 6", "b": "0036-FE0F-20E3", "j": ["keycap"]}, "keycap-7": {"a": "keycap: 7", "b": "0037-FE0F-20E3", "j": ["keycap"]}, "keycap-8": {"a": "keycap: 8", "b": "0038-FE0F-20E3", "j": ["keycap"]}, "keycap-9": {"a": "keycap: 9", "b": "0039-FE0F-20E3", "j": ["keycap"]}, "keycap-10": {"a": "keycap: 10", "b": "1F51F", "j": ["keycap"]}, "input-latin-uppercase": {"a": "input latin uppercase", "b": "1F520", "j": ["ABCD", "input", "latin", "letters", "uppercase"]}, "input-latin-lowercase": {"a": "input latin lowercase", "b": "1F521", "j": ["abcd", "input", "latin", "letters", "lowercase"]}, "input-numbers": {"a": "input numbers", "b": "1F522", "j": ["1234", "input", "numbers"]}, "input-symbols": {"a": "input symbols", "b": "1F523", "j": ["〒♪&%", "input", "input symbols"]}, "input-latin-letters": {"a": "input latin letters", "b": "1F524", "j": ["abc", "alphabet", "input", "latin", "letters"]}, "a-button-blood-type": {"a": "A button (blood type)", "b": "1F170", "j": ["a", "A button (blood type)", "blood type"]}, "ab-button-blood-type": {"a": "AB button (blood type)", "b": "1F18E", "j": ["ab", "AB button (blood type)", "blood type"]}, "b-button-blood-type": {"a": "B button (blood type)", "b": "1F171", "j": ["b", "B button (blood type)", "blood type"]}, "cl-button": {"a": "CL button", "b": "1F191", "j": ["cl", "CL button"]}, "cool-button": {"a": "COOL button", "b": "1F192", "j": ["cool", "COOL button"]}, "free-button": {"a": "FREE button", "b": "1F193", "j": ["free", "FREE button"]}, "information": {"a": "information", "b": "2139", "j": ["i", "information"]}, "id-button": {"a": "ID button", "b": "1F194", "j": ["id", "ID button", "identity"]}, "circled-m": {"a": "circled M", "b": "24C2", "j": ["circle", "circled M", "m"]}, "new-button": {"a": "NEW button", "b": "1F195", "j": ["new", "NEW button"]}, "ng-button": {"a": "NG button", "b": "1F196", "j": ["ng", "NG button"]}, "o-button-blood-type": {"a": "O button (blood type)", "b": "1F17E", "j": ["blood type", "o", "O button (blood type)"]}, "ok-button": {"a": "OK button", "b": "1F197", "j": ["OK", "OK button"]}, "p-button": {"a": "P button", "b": "1F17F", "j": ["P button", "parking"]}, "sos-button": {"a": "SOS button", "b": "1F198", "j": ["help", "sos", "SOS button"]}, "up-button": {"a": "UP! button", "b": "1F199", "j": ["mark", "up", "UP! button"]}, "vs-button": {"a": "VS button", "b": "1F19A", "j": ["versus", "vs", "VS button"]}, "japanese-here-button": {"a": "Japanese “here” button", "b": "1F201", "j": ["“here”", "Japanese", "Japanese “here” button", "katakana", "ココ"]}, "japanese-service-charge-button": {"a": "Japanese “service charge” button", "b": "1F202", "j": ["“service charge”", "Japanese", "Japanese “service charge” button", "katakana", "サ"]}, "japanese-monthly-amount-button": {"a": "Japanese “monthly amount” button", "b": "1F237", "j": ["“monthly amount”", "ideograph", "Japanese", "Japanese “monthly amount” button", "月"]}, "japanese-not-free-of-charge-button": {"a": "Japanese “not free of charge” button", "b": "1F236", "j": ["“not free of charge”", "ideograph", "Japanese", "Japanese “not free of charge” button", "有"]}, "japanese-reserved-button": {"a": "Japanese “reserved” button", "b": "1F22F", "j": ["“reserved”", "ideograph", "Japanese", "Japanese “reserved” button", "指"]}, "japanese-bargain-button": {"a": "Japanese “bargain” button", "b": "1F250", "j": ["“bargain”", "ideograph", "Japanese", "Japanese “bargain” button", "得"]}, "japanese-discount-button": {"a": "Japanese “discount” button", "b": "1F239", "j": ["“discount”", "ideograph", "Japanese", "Japanese “discount” button", "割"]}, "japanese-free-of-charge-button": {"a": "Japanese “free of charge” button", "b": "1F21A", "j": ["“free of charge”", "ideograph", "Japanese", "Japanese “free of charge” button", "無"]}, "japanese-prohibited-button": {"a": "Japanese “prohibited” button", "b": "1F232", "j": ["“prohibited”", "ideograph", "Japanese", "Japanese “prohibited” button", "禁"]}, "japanese-acceptable-button": {"a": "Japanese “acceptable” button", "b": "1F251", "j": ["“acceptable”", "ideograph", "Japanese", "Japanese “acceptable” button", "可"]}, "japanese-application-button": {"a": "Japanese “application” button", "b": "1F238", "j": ["“application”", "ideograph", "Japanese", "Japanese “application” button", "申"]}, "japanese-passing-grade-button": {"a": "Japanese “passing grade” button", "b": "1F234", "j": ["“passing grade”", "ideograph", "Japanese", "Japanese “passing grade” button", "合"]}, "japanese-vacancy-button": {"a": "Japanese “vacancy” button", "b": "1F233", "j": ["“vacancy”", "ideograph", "Japanese", "Japanese “vacancy” button", "空"]}, "japanese-congratulations-button": {"a": "Japanese “congratulations” button", "b": "3297", "j": ["“congratulations”", "ideograph", "Japanese", "Japanese “congratulations” button", "祝"]}, "japanese-secret-button": {"a": "Japanese “secret” button", "b": "3299", "j": ["“secret”", "ideograph", "Japanese", "Japanese “secret” button", "秘"]}, "japanese-open-for-business-button": {"a": "Japanese “open for business” button", "b": "1F23A", "j": ["“open for business”", "ideograph", "Japanese", "Japanese “open for business” button", "営"]}, "japanese-no-vacancy-button": {"a": "Japanese “no vacancy” button", "b": "1F235", "j": ["“no vacancy”", "ideograph", "Japanese", "Japanese “no vacancy” button", "満"]}, "red-circle": {"a": "red circle", "b": "1F534", "j": ["circle", "geometric", "red"]}, "orange-circle": {"a": "orange circle", "b": "1F7E0", "j": ["circle", "orange"]}, "yellow-circle": {"a": "yellow circle", "b": "1F7E1", "j": ["circle", "yellow"]}, "green-circle": {"a": "green circle", "b": "1F7E2", "j": ["circle", "green"]}, "blue-circle": {"a": "blue circle", "b": "1F535", "j": ["blue", "circle", "geometric"]}, "purple-circle": {"a": "purple circle", "b": "1F7E3", "j": ["circle", "purple"]}, "brown-circle": {"a": "brown circle", "b": "1F7E4", "j": ["brown", "circle"]}, "black-circle": {"a": "black circle", "b": "26AB", "j": ["black circle", "circle", "geometric"]}, "white-circle": {"a": "white circle", "b": "26AA", "j": ["circle", "geometric", "white circle"]}, "red-square": {"a": "red square", "b": "1F7E5", "j": ["red", "square"]}, "orange-square": {"a": "orange square", "b": "1F7E7", "j": ["orange", "square"]}, "yellow-square": {"a": "yellow square", "b": "1F7E8", "j": ["square", "yellow"]}, "green-square": {"a": "green square", "b": "1F7E9", "j": ["green", "square"]}, "blue-square": {"a": "blue square", "b": "1F7E6", "j": ["blue", "square"]}, "purple-square": {"a": "purple square", "b": "1F7EA", "j": ["purple", "square"]}, "brown-square": {"a": "brown square", "b": "1F7EB", "j": ["brown", "square"]}, "black-large-square": {"a": "black large square", "b": "2B1B", "j": ["black large square", "geometric", "square"]}, "white-large-square": {"a": "white large square", "b": "2B1C", "j": ["geometric", "square", "white large square"]}, "black-medium-square": {"a": "black medium square", "b": "25FC", "j": ["black medium square", "geometric", "square"]}, "white-medium-square": {"a": "white medium square", "b": "25FB", "j": ["geometric", "square", "white medium square"]}, "black-mediumsmall-square": {"a": "black medium-small square", "b": "25FE", "j": ["black medium-small square", "geometric", "square"]}, "white-mediumsmall-square": {"a": "white medium-small square", "b": "25FD", "j": ["geometric", "square", "white medium-small square"]}, "black-small-square": {"a": "black small square", "b": "25AA", "j": ["black small square", "geometric", "square"]}, "white-small-square": {"a": "white small square", "b": "25AB", "j": ["geometric", "square", "white small square"]}, "large-orange-diamond": {"a": "large orange diamond", "b": "1F536", "j": ["diamond", "geometric", "large orange diamond", "orange"]}, "large-blue-diamond": {"a": "large blue diamond", "b": "1F537", "j": ["blue", "diamond", "geometric", "large blue diamond"]}, "small-orange-diamond": {"a": "small orange diamond", "b": "1F538", "j": ["diamond", "geometric", "orange", "small orange diamond"]}, "small-blue-diamond": {"a": "small blue diamond", "b": "1F539", "j": ["blue", "diamond", "geometric", "small blue diamond"]}, "red-triangle-pointed-up": {"a": "red triangle pointed up", "b": "1F53A", "j": ["geometric", "red", "red triangle pointed up"]}, "red-triangle-pointed-down": {"a": "red triangle pointed down", "b": "1F53B", "j": ["down", "geometric", "red", "red triangle pointed down"]}, "diamond-with-a-dot": {"a": "diamond with a dot", "b": "1F4A0", "j": ["comic", "diamond", "diamond with a dot", "geometric", "inside"]}, "radio-button": {"a": "radio button", "b": "1F518", "j": ["button", "geometric", "radio"]}, "white-square-button": {"a": "white square button", "b": "1F533", "j": ["button", "geometric", "outlined", "square", "white square button"]}, "black-square-button": {"a": "black square button", "b": "1F532", "j": ["black square button", "button", "geometric", "square"]}, "chequered-flag": {"a": "chequered flag", "b": "1F3C1", "j": ["checkered", "chequered", "chequered flag", "racing"]}, "triangular-flag": {"a": "triangular flag", "b": "1F6A9", "j": ["post", "triangular flag"]}, "crossed-flags": {"a": "crossed flags", "b": "1F38C", "j": ["celebration", "cross", "crossed", "crossed flags", "Japanese"]}, "black-flag": {"a": "black flag", "b": "1F3F4", "j": ["black flag", "waving"]}, "white-flag": {"a": "white flag", "b": "1F3F3", "j": ["waving", "white flag"]}, "rainbow-flag": {"a": "rainbow flag", "b": "1F3F3-FE0F-200D-1F308", "j": ["pride", "rainbow", "rainbow flag"]}, "transgender-flag": {"a": "transgender flag", "b": "1F3F3-FE0F-200D-26A7-FE0F", "j": ["flag", "light blue", "pink", "transgender", "white"]}, "pirate-flag": {"a": "pirate flag", "b": "1F3F4-200D-2620-FE0F", "j": ["Jolly Roger", "pirate", "pirate flag", "plunder", "treasure"]}, "flag-ascension-island": {"a": "flag: Ascension Island", "b": "1F1E6-1F1E8", "j": ["flag"]}, "flag-andorra": {"a": "flag: Andorra", "b": "1F1E6-1F1E9", "j": ["flag"]}, "flag-united-arab-emirates": {"a": "flag: United Arab Emirates", "b": "1F1E6-1F1EA", "j": ["flag"]}, "flag-afghanistan": {"a": "flag: Afghanistan", "b": "1F1E6-1F1EB", "j": ["flag"]}, "flag-antigua--barbuda": {"a": "flag: Antigua & Barbuda", "b": "1F1E6-1F1EC", "j": ["flag"]}, "flag-anguilla": {"a": "flag: Anguilla", "b": "1F1E6-1F1EE", "j": ["flag"]}, "flag-albania": {"a": "flag: Albania", "b": "1F1E6-1F1F1", "j": ["flag"]}, "flag-armenia": {"a": "flag: Armenia", "b": "1F1E6-1F1F2", "j": ["flag"]}, "flag-angola": {"a": "flag: Angola", "b": "1F1E6-1F1F4", "j": ["flag"]}, "flag-antarctica": {"a": "flag: Antarctica", "b": "1F1E6-1F1F6", "j": ["flag"]}, "flag-argentina": {"a": "flag: Argentina", "b": "1F1E6-1F1F7", "j": ["flag"]}, "flag-american-samoa": {"a": "flag: American Samoa", "b": "1F1E6-1F1F8", "j": ["flag"]}, "flag-austria": {"a": "flag: Austria", "b": "1F1E6-1F1F9", "j": ["flag"]}, "flag-australia": {"a": "flag: Australia", "b": "1F1E6-1F1FA", "j": ["flag"]}, "flag-aruba": {"a": "flag: Aruba", "b": "1F1E6-1F1FC", "j": ["flag"]}, "flag-land-islands": {"a": "flag: Åland Islands", "b": "1F1E6-1F1FD", "j": ["flag"]}, "flag-azerbaijan": {"a": "flag: Azerbaijan", "b": "1F1E6-1F1FF", "j": ["flag"]}, "flag-bosnia--herzegovina": {"a": "flag: Bosnia & Herzegovina", "b": "1F1E7-1F1E6", "j": ["flag"]}, "flag-barbados": {"a": "flag: Barbados", "b": "1F1E7-1F1E7", "j": ["flag"]}, "flag-bangladesh": {"a": "flag: Bangladesh", "b": "1F1E7-1F1E9", "j": ["flag"]}, "flag-belgium": {"a": "flag: Belgium", "b": "1F1E7-1F1EA", "j": ["flag"]}, "flag-burkina-faso": {"a": "flag: Burkina Faso", "b": "1F1E7-1F1EB", "j": ["flag"]}, "flag-bulgaria": {"a": "flag: Bulgaria", "b": "1F1E7-1F1EC", "j": ["flag"]}, "flag-bahrain": {"a": "flag: Bahrain", "b": "1F1E7-1F1ED", "j": ["flag"]}, "flag-burundi": {"a": "flag: Burundi", "b": "1F1E7-1F1EE", "j": ["flag"]}, "flag-benin": {"a": "flag: Benin", "b": "1F1E7-1F1EF", "j": ["flag"]}, "flag-st-barthlemy": {"a": "flag: St. Barthélemy", "b": "1F1E7-1F1F1", "j": ["flag"]}, "flag-bermuda": {"a": "flag: Bermuda", "b": "1F1E7-1F1F2", "j": ["flag"]}, "flag-brunei": {"a": "flag: Brunei", "b": "1F1E7-1F1F3", "j": ["flag"]}, "flag-bolivia": {"a": "flag: Bolivia", "b": "1F1E7-1F1F4", "j": ["flag"]}, "flag-caribbean-netherlands": {"a": "flag: Caribbean Netherlands", "b": "1F1E7-1F1F6", "j": ["flag"]}, "flag-brazil": {"a": "flag: Brazil", "b": "1F1E7-1F1F7", "j": ["flag"]}, "flag-bahamas": {"a": "flag: Bahamas", "b": "1F1E7-1F1F8", "j": ["flag"]}, "flag-bhutan": {"a": "flag: Bhutan", "b": "1F1E7-1F1F9", "j": ["flag"]}, "flag-bouvet-island": {"a": "flag: Bouvet Island", "b": "1F1E7-1F1FB", "j": ["flag"]}, "flag-botswana": {"a": "flag: Botswana", "b": "1F1E7-1F1FC", "j": ["flag"]}, "flag-belarus": {"a": "flag: Belarus", "b": "1F1E7-1F1FE", "j": ["flag"]}, "flag-belize": {"a": "flag: Belize", "b": "1F1E7-1F1FF", "j": ["flag"]}, "flag-canada": {"a": "flag: Canada", "b": "1F1E8-1F1E6", "j": ["flag"]}, "flag-cocos-keeling-islands": {"a": "flag: Cocos (Keeling) Islands", "b": "1F1E8-1F1E8", "j": ["flag"]}, "flag-congo--kinshasa": {"a": "flag: Congo - Kinshasa", "b": "1F1E8-1F1E9", "j": ["flag"]}, "flag-central-african-republic": {"a": "flag: Central African Republic", "b": "1F1E8-1F1EB", "j": ["flag"]}, "flag-congo--brazzaville": {"a": "flag: Congo - Brazzaville", "b": "1F1E8-1F1EC", "j": ["flag"]}, "flag-switzerland": {"a": "flag: Switzerland", "b": "1F1E8-1F1ED", "j": ["flag"]}, "flag-cte-divoire": {"a": "flag: Côte d’Ivoire", "b": "1F1E8-1F1EE", "j": ["flag"]}, "flag-cook-islands": {"a": "flag: Cook Islands", "b": "1F1E8-1F1F0", "j": ["flag"]}, "flag-chile": {"a": "flag: Chile", "b": "1F1E8-1F1F1", "j": ["flag"]}, "flag-cameroon": {"a": "flag: Cameroon", "b": "1F1E8-1F1F2", "j": ["flag"]}, "flag-china": {"a": "flag: China", "b": "1F1E8-1F1F3", "j": ["flag"]}, "flag-colombia": {"a": "flag: Colombia", "b": "1F1E8-1F1F4", "j": ["flag"]}, "flag-clipperton-island": {"a": "flag: Clipperton Island", "b": "1F1E8-1F1F5", "j": ["flag"]}, "flag-costa-rica": {"a": "flag: Costa Rica", "b": "1F1E8-1F1F7", "j": ["flag"]}, "flag-cuba": {"a": "flag: Cuba", "b": "1F1E8-1F1FA", "j": ["flag"]}, "flag-cape-verde": {"a": "flag: Cape Verde", "b": "1F1E8-1F1FB", "j": ["flag"]}, "flag-curaao": {"a": "flag: Curaçao", "b": "1F1E8-1F1FC", "j": ["flag"]}, "flag-christmas-island": {"a": "flag: Christmas Island", "b": "1F1E8-1F1FD", "j": ["flag"]}, "flag-cyprus": {"a": "flag: Cyprus", "b": "1F1E8-1F1FE", "j": ["flag"]}, "flag-czechia": {"a": "flag: Czechia", "b": "1F1E8-1F1FF", "j": ["flag"]}, "flag-germany": {"a": "flag: Germany", "b": "1F1E9-1F1EA", "j": ["flag"]}, "flag-diego-garcia": {"a": "flag: Diego Garcia", "b": "1F1E9-1F1EC", "j": ["flag"]}, "flag-djibouti": {"a": "flag: Djibouti", "b": "1F1E9-1F1EF", "j": ["flag"]}, "flag-denmark": {"a": "flag: Denmark", "b": "1F1E9-1F1F0", "j": ["flag"]}, "flag-dominica": {"a": "flag: Dominica", "b": "1F1E9-1F1F2", "j": ["flag"]}, "flag-dominican-republic": {"a": "flag: Dominican Republic", "b": "1F1E9-1F1F4", "j": ["flag"]}, "flag-algeria": {"a": "flag: Algeria", "b": "1F1E9-1F1FF", "j": ["flag"]}, "flag-ceuta--melilla": {"a": "flag: Ceuta & Melilla", "b": "1F1EA-1F1E6", "j": ["flag"]}, "flag-ecuador": {"a": "flag: Ecuador", "b": "1F1EA-1F1E8", "j": ["flag"]}, "flag-estonia": {"a": "flag: Estonia", "b": "1F1EA-1F1EA", "j": ["flag"]}, "flag-egypt": {"a": "flag: Egypt", "b": "1F1EA-1F1EC", "j": ["flag"]}, "flag-western-sahara": {"a": "flag: Western Sahara", "b": "1F1EA-1F1ED", "j": ["flag"]}, "flag-eritrea": {"a": "flag: Eritrea", "b": "1F1EA-1F1F7", "j": ["flag"]}, "flag-spain": {"a": "flag: Spain", "b": "1F1EA-1F1F8", "j": ["flag"]}, "flag-ethiopia": {"a": "flag: Ethiopia", "b": "1F1EA-1F1F9", "j": ["flag"]}, "flag-european-union": {"a": "flag: European Union", "b": "1F1EA-1F1FA", "j": ["flag"]}, "flag-finland": {"a": "flag: Finland", "b": "1F1EB-1F1EE", "j": ["flag"]}, "flag-fiji": {"a": "flag: Fiji", "b": "1F1EB-1F1EF", "j": ["flag"]}, "flag-falkland-islands": {"a": "flag: Falkland Islands", "b": "1F1EB-1F1F0", "j": ["flag"]}, "flag-micronesia": {"a": "flag: Micronesia", "b": "1F1EB-1F1F2", "j": ["flag"]}, "flag-faroe-islands": {"a": "flag: Faroe Islands", "b": "1F1EB-1F1F4", "j": ["flag"]}, "flag-france": {"a": "flag: France", "b": "1F1EB-1F1F7", "j": ["flag"]}, "flag-gabon": {"a": "flag: Gabon", "b": "1F1EC-1F1E6", "j": ["flag"]}, "flag-united-kingdom": {"a": "flag: United Kingdom", "b": "1F1EC-1F1E7", "j": ["flag"]}, "flag-grenada": {"a": "flag: Grenada", "b": "1F1EC-1F1E9", "j": ["flag"]}, "flag-georgia": {"a": "flag: Georgia", "b": "1F1EC-1F1EA", "j": ["flag"]}, "flag-french-guiana": {"a": "flag: French Guiana", "b": "1F1EC-1F1EB", "j": ["flag"]}, "flag-guernsey": {"a": "flag: Guernsey", "b": "1F1EC-1F1EC", "j": ["flag"]}, "flag-ghana": {"a": "flag: Ghana", "b": "1F1EC-1F1ED", "j": ["flag"]}, "flag-gibraltar": {"a": "flag: Gibraltar", "b": "1F1EC-1F1EE", "j": ["flag"]}, "flag-greenland": {"a": "flag: Greenland", "b": "1F1EC-1F1F1", "j": ["flag"]}, "flag-gambia": {"a": "flag: Gambia", "b": "1F1EC-1F1F2", "j": ["flag"]}, "flag-guinea": {"a": "flag: Guinea", "b": "1F1EC-1F1F3", "j": ["flag"]}, "flag-guadeloupe": {"a": "flag: Guadeloupe", "b": "1F1EC-1F1F5", "j": ["flag"]}, "flag-equatorial-guinea": {"a": "flag: Equatorial Guinea", "b": "1F1EC-1F1F6", "j": ["flag"]}, "flag-greece": {"a": "flag: Greece", "b": "1F1EC-1F1F7", "j": ["flag"]}, "flag-south-georgia--south-sandwich-islands": {"a": "flag: South Georgia & South Sandwich Islands", "b": "1F1EC-1F1F8", "j": ["flag"]}, "flag-guatemala": {"a": "flag: Guatemala", "b": "1F1EC-1F1F9", "j": ["flag"]}, "flag-guam": {"a": "flag: Guam", "b": "1F1EC-1F1FA", "j": ["flag"]}, "flag-guineabissau": {"a": "flag: Guinea-Bissau", "b": "1F1EC-1F1FC", "j": ["flag"]}, "flag-guyana": {"a": "flag: Guyana", "b": "1F1EC-1F1FE", "j": ["flag"]}, "flag-hong-kong-sar-china": {"a": "flag: Hong Kong SAR China", "b": "1F1ED-1F1F0", "j": ["flag"]}, "flag-heard--mcdonald-islands": {"a": "flag: Heard & McDonald Islands", "b": "1F1ED-1F1F2", "j": ["flag"]}, "flag-honduras": {"a": "flag: Honduras", "b": "1F1ED-1F1F3", "j": ["flag"]}, "flag-croatia": {"a": "flag: Croatia", "b": "1F1ED-1F1F7", "j": ["flag"]}, "flag-haiti": {"a": "flag: Haiti", "b": "1F1ED-1F1F9", "j": ["flag"]}, "flag-hungary": {"a": "flag: Hungary", "b": "1F1ED-1F1FA", "j": ["flag"]}, "flag-canary-islands": {"a": "flag: Canary Islands", "b": "1F1EE-1F1E8", "j": ["flag"]}, "flag-indonesia": {"a": "flag: Indonesia", "b": "1F1EE-1F1E9", "j": ["flag"]}, "flag-ireland": {"a": "flag: Ireland", "b": "1F1EE-1F1EA", "j": ["flag"]}, "flag-israel": {"a": "flag: Israel", "b": "1F1EE-1F1F1", "j": ["flag"]}, "flag-isle-of-man": {"a": "flag: Isle of Man", "b": "1F1EE-1F1F2", "j": ["flag"]}, "flag-india": {"a": "flag: India", "b": "1F1EE-1F1F3", "j": ["flag"]}, "flag-british-indian-ocean-territory": {"a": "flag: British Indian Ocean Territory", "b": "1F1EE-1F1F4", "j": ["flag"]}, "flag-iraq": {"a": "flag: Iraq", "b": "1F1EE-1F1F6", "j": ["flag"]}, "flag-iran": {"a": "flag: Iran", "b": "1F1EE-1F1F7", "j": ["flag"]}, "flag-iceland": {"a": "flag: Iceland", "b": "1F1EE-1F1F8", "j": ["flag"]}, "flag-italy": {"a": "flag: Italy", "b": "1F1EE-1F1F9", "j": ["flag"]}, "flag-jersey": {"a": "flag: Jersey", "b": "1F1EF-1F1EA", "j": ["flag"]}, "flag-jamaica": {"a": "flag: Jamaica", "b": "1F1EF-1F1F2", "j": ["flag"]}, "flag-jordan": {"a": "flag: Jordan", "b": "1F1EF-1F1F4", "j": ["flag"]}, "flag-japan": {"a": "flag: Japan", "b": "1F1EF-1F1F5", "j": ["flag"]}, "flag-kenya": {"a": "flag: Kenya", "b": "1F1F0-1F1EA", "j": ["flag"]}, "flag-kyrgyzstan": {"a": "flag: Kyrgyzstan", "b": "1F1F0-1F1EC", "j": ["flag"]}, "flag-cambodia": {"a": "flag: Cambodia", "b": "1F1F0-1F1ED", "j": ["flag"]}, "flag-kiribati": {"a": "flag: Kiribati", "b": "1F1F0-1F1EE", "j": ["flag"]}, "flag-comoros": {"a": "flag: Comoros", "b": "1F1F0-1F1F2", "j": ["flag"]}, "flag-st-kitts--nevis": {"a": "flag: St. Kitts & Nevis", "b": "1F1F0-1F1F3", "j": ["flag"]}, "flag-north-korea": {"a": "flag: North Korea", "b": "1F1F0-1F1F5", "j": ["flag"]}, "flag-south-korea": {"a": "flag: South Korea", "b": "1F1F0-1F1F7", "j": ["flag"]}, "flag-kuwait": {"a": "flag: Kuwait", "b": "1F1F0-1F1FC", "j": ["flag"]}, "flag-cayman-islands": {"a": "flag: Cayman Islands", "b": "1F1F0-1F1FE", "j": ["flag"]}, "flag-kazakhstan": {"a": "flag: Kazakhstan", "b": "1F1F0-1F1FF", "j": ["flag"]}, "flag-laos": {"a": "flag: Laos", "b": "1F1F1-1F1E6", "j": ["flag"]}, "flag-lebanon": {"a": "flag: Lebanon", "b": "1F1F1-1F1E7", "j": ["flag"]}, "flag-st-lucia": {"a": "flag: St. Lucia", "b": "1F1F1-1F1E8", "j": ["flag"]}, "flag-liechtenstein": {"a": "flag: Liechtenstein", "b": "1F1F1-1F1EE", "j": ["flag"]}, "flag-sri-lanka": {"a": "flag: Sri Lanka", "b": "1F1F1-1F1F0", "j": ["flag"]}, "flag-liberia": {"a": "flag: Liberia", "b": "1F1F1-1F1F7", "j": ["flag"]}, "flag-lesotho": {"a": "flag: Lesotho", "b": "1F1F1-1F1F8", "j": ["flag"]}, "flag-lithuania": {"a": "flag: Lithuania", "b": "1F1F1-1F1F9", "j": ["flag"]}, "flag-luxembourg": {"a": "flag: Luxembourg", "b": "1F1F1-1F1FA", "j": ["flag"]}, "flag-latvia": {"a": "flag: Latvia", "b": "1F1F1-1F1FB", "j": ["flag"]}, "flag-libya": {"a": "flag: Libya", "b": "1F1F1-1F1FE", "j": ["flag"]}, "flag-morocco": {"a": "flag: Morocco", "b": "1F1F2-1F1E6", "j": ["flag"]}, "flag-monaco": {"a": "flag: Monaco", "b": "1F1F2-1F1E8", "j": ["flag"]}, "flag-moldova": {"a": "flag: Moldova", "b": "1F1F2-1F1E9", "j": ["flag"]}, "flag-montenegro": {"a": "flag: Montenegro", "b": "1F1F2-1F1EA", "j": ["flag"]}, "flag-st-martin": {"a": "flag: St. Martin", "b": "1F1F2-1F1EB", "j": ["flag"]}, "flag-madagascar": {"a": "flag: Madagascar", "b": "1F1F2-1F1EC", "j": ["flag"]}, "flag-marshall-islands": {"a": "flag: Marshall Islands", "b": "1F1F2-1F1ED", "j": ["flag"]}, "flag-north-macedonia": {"a": "flag: North Macedonia", "b": "1F1F2-1F1F0", "j": ["flag"]}, "flag-mali": {"a": "flag: Mali", "b": "1F1F2-1F1F1", "j": ["flag"]}, "flag-myanmar-burma": {"a": "flag: Myanmar (Burma)", "b": "1F1F2-1F1F2", "j": ["flag"]}, "flag-mongolia": {"a": "flag: Mongolia", "b": "1F1F2-1F1F3", "j": ["flag"]}, "flag-macao-sar-china": {"a": "flag: Macao SAR China", "b": "1F1F2-1F1F4", "j": ["flag"]}, "flag-northern-mariana-islands": {"a": "flag: Northern Mariana Islands", "b": "1F1F2-1F1F5", "j": ["flag"]}, "flag-martinique": {"a": "flag: Martinique", "b": "1F1F2-1F1F6", "j": ["flag"]}, "flag-mauritania": {"a": "flag: Mauritania", "b": "1F1F2-1F1F7", "j": ["flag"]}, "flag-montserrat": {"a": "flag: Montserrat", "b": "1F1F2-1F1F8", "j": ["flag"]}, "flag-malta": {"a": "flag: Malta", "b": "1F1F2-1F1F9", "j": ["flag"]}, "flag-mauritius": {"a": "flag: Mauritius", "b": "1F1F2-1F1FA", "j": ["flag"]}, "flag-maldives": {"a": "flag: Maldives", "b": "1F1F2-1F1FB", "j": ["flag"]}, "flag-malawi": {"a": "flag: Malawi", "b": "1F1F2-1F1FC", "j": ["flag"]}, "flag-mexico": {"a": "flag: Mexico", "b": "1F1F2-1F1FD", "j": ["flag"]}, "flag-malaysia": {"a": "flag: Malaysia", "b": "1F1F2-1F1FE", "j": ["flag"]}, "flag-mozambique": {"a": "flag: Mozambique", "b": "1F1F2-1F1FF", "j": ["flag"]}, "flag-namibia": {"a": "flag: Namibia", "b": "1F1F3-1F1E6", "j": ["flag"]}, "flag-new-caledonia": {"a": "flag: New Caledonia", "b": "1F1F3-1F1E8", "j": ["flag"]}, "flag-niger": {"a": "flag: Niger", "b": "1F1F3-1F1EA", "j": ["flag"]}, "flag-norfolk-island": {"a": "flag: Norfolk Island", "b": "1F1F3-1F1EB", "j": ["flag"]}, "flag-nigeria": {"a": "flag: Nigeria", "b": "1F1F3-1F1EC", "j": ["flag"]}, "flag-nicaragua": {"a": "flag: Nicaragua", "b": "1F1F3-1F1EE", "j": ["flag"]}, "flag-netherlands": {"a": "flag: Netherlands", "b": "1F1F3-1F1F1", "j": ["flag"]}, "flag-norway": {"a": "flag: Norway", "b": "1F1F3-1F1F4", "j": ["flag"]}, "flag-nepal": {"a": "flag: Nepal", "b": "1F1F3-1F1F5", "j": ["flag"]}, "flag-nauru": {"a": "flag: Nauru", "b": "1F1F3-1F1F7", "j": ["flag"]}, "flag-niue": {"a": "flag: Niue", "b": "1F1F3-1F1FA", "j": ["flag"]}, "flag-new-zealand": {"a": "flag: New Zealand", "b": "1F1F3-1F1FF", "j": ["flag"]}, "flag-oman": {"a": "flag: Oman", "b": "1F1F4-1F1F2", "j": ["flag"]}, "flag-panama": {"a": "flag: Panama", "b": "1F1F5-1F1E6", "j": ["flag"]}, "flag-peru": {"a": "flag: Peru", "b": "1F1F5-1F1EA", "j": ["flag"]}, "flag-french-polynesia": {"a": "flag: French Polynesia", "b": "1F1F5-1F1EB", "j": ["flag"]}, "flag-papua-new-guinea": {"a": "flag: Papua New Guinea", "b": "1F1F5-1F1EC", "j": ["flag"]}, "flag-philippines": {"a": "flag: Philippines", "b": "1F1F5-1F1ED", "j": ["flag"]}, "flag-pakistan": {"a": "flag: Pakistan", "b": "1F1F5-1F1F0", "j": ["flag"]}, "flag-poland": {"a": "flag: Poland", "b": "1F1F5-1F1F1", "j": ["flag"]}, "flag-st-pierre--miquelon": {"a": "flag: St. Pierre & Miquelon", "b": "1F1F5-1F1F2", "j": ["flag"]}, "flag-pitcairn-islands": {"a": "flag: Pitcairn Islands", "b": "1F1F5-1F1F3", "j": ["flag"]}, "flag-puerto-rico": {"a": "flag: Puerto Rico", "b": "1F1F5-1F1F7", "j": ["flag"]}, "flag-palestinian-territories": {"a": "flag: Palestinian Territories", "b": "1F1F5-1F1F8", "j": ["flag"]}, "flag-portugal": {"a": "flag: Portugal", "b": "1F1F5-1F1F9", "j": ["flag"]}, "flag-palau": {"a": "flag: Palau", "b": "1F1F5-1F1FC", "j": ["flag"]}, "flag-paraguay": {"a": "flag: Paraguay", "b": "1F1F5-1F1FE", "j": ["flag"]}, "flag-qatar": {"a": "flag: Qatar", "b": "1F1F6-1F1E6", "j": ["flag"]}, "flag-runion": {"a": "flag: Réunion", "b": "1F1F7-1F1EA", "j": ["flag"]}, "flag-romania": {"a": "flag: Romania", "b": "1F1F7-1F1F4", "j": ["flag"]}, "flag-serbia": {"a": "flag: Serbia", "b": "1F1F7-1F1F8", "j": ["flag"]}, "flag-russia": {"a": "flag: Russia", "b": "1F1F7-1F1FA", "j": ["flag"]}, "flag-rwanda": {"a": "flag: Rwanda", "b": "1F1F7-1F1FC", "j": ["flag"]}, "flag-saudi-arabia": {"a": "flag: Saudi Arabia", "b": "1F1F8-1F1E6", "j": ["flag"]}, "flag-solomon-islands": {"a": "flag: Solomon Islands", "b": "1F1F8-1F1E7", "j": ["flag"]}, "flag-seychelles": {"a": "flag: Seychelles", "b": "1F1F8-1F1E8", "j": ["flag"]}, "flag-sudan": {"a": "flag: Sudan", "b": "1F1F8-1F1E9", "j": ["flag"]}, "flag-sweden": {"a": "flag: Sweden", "b": "1F1F8-1F1EA", "j": ["flag"]}, "flag-singapore": {"a": "flag: Singapore", "b": "1F1F8-1F1EC", "j": ["flag"]}, "flag-st-helena": {"a": "flag: St. Helena", "b": "1F1F8-1F1ED", "j": ["flag"]}, "flag-slovenia": {"a": "flag: Slovenia", "b": "1F1F8-1F1EE", "j": ["flag"]}, "flag-svalbard--jan-mayen": {"a": "flag: Svalbard & Jan Mayen", "b": "1F1F8-1F1EF", "j": ["flag"]}, "flag-slovakia": {"a": "flag: Slovakia", "b": "1F1F8-1F1F0", "j": ["flag"]}, "flag-sierra-leone": {"a": "flag: Sierra Leone", "b": "1F1F8-1F1F1", "j": ["flag"]}, "flag-san-marino": {"a": "flag: San Marino", "b": "1F1F8-1F1F2", "j": ["flag"]}, "flag-senegal": {"a": "flag: Senegal", "b": "1F1F8-1F1F3", "j": ["flag"]}, "flag-somalia": {"a": "flag: Somalia", "b": "1F1F8-1F1F4", "j": ["flag"]}, "flag-suriname": {"a": "flag: Suriname", "b": "1F1F8-1F1F7", "j": ["flag"]}, "flag-south-sudan": {"a": "flag: South Sudan", "b": "1F1F8-1F1F8", "j": ["flag"]}, "flag-so-tom--prncipe": {"a": "flag: São Tomé & Príncipe", "b": "1F1F8-1F1F9", "j": ["flag"]}, "flag-el-salvador": {"a": "flag: El Salvador", "b": "1F1F8-1F1FB", "j": ["flag"]}, "flag-sint-maarten": {"a": "flag: Sint Maarten", "b": "1F1F8-1F1FD", "j": ["flag"]}, "flag-syria": {"a": "flag: Syria", "b": "1F1F8-1F1FE", "j": ["flag"]}, "flag-eswatini": {"a": "flag: Eswatini", "b": "1F1F8-1F1FF", "j": ["flag"]}, "flag-tristan-da-cunha": {"a": "flag: Tristan da Cunha", "b": "1F1F9-1F1E6", "j": ["flag"]}, "flag-turks--caicos-islands": {"a": "flag: Turks & Caicos Islands", "b": "1F1F9-1F1E8", "j": ["flag"]}, "flag-chad": {"a": "flag: Chad", "b": "1F1F9-1F1E9", "j": ["flag"]}, "flag-french-southern-territories": {"a": "flag: French Southern Territories", "b": "1F1F9-1F1EB", "j": ["flag"]}, "flag-togo": {"a": "flag: Togo", "b": "1F1F9-1F1EC", "j": ["flag"]}, "flag-thailand": {"a": "flag: Thailand", "b": "1F1F9-1F1ED", "j": ["flag"]}, "flag-tajikistan": {"a": "flag: Tajikistan", "b": "1F1F9-1F1EF", "j": ["flag"]}, "flag-tokelau": {"a": "flag: Tokelau", "b": "1F1F9-1F1F0", "j": ["flag"]}, "flag-timorleste": {"a": "flag: Timor-Leste", "b": "1F1F9-1F1F1", "j": ["flag"]}, "flag-turkmenistan": {"a": "flag: Turkmenistan", "b": "1F1F9-1F1F2", "j": ["flag"]}, "flag-tunisia": {"a": "flag: Tunisia", "b": "1F1F9-1F1F3", "j": ["flag"]}, "flag-tonga": {"a": "flag: Tonga", "b": "1F1F9-1F1F4", "j": ["flag"]}, "flag-turkey": {"a": "flag: Turkey", "b": "1F1F9-1F1F7", "j": ["flag"]}, "flag-trinidad--tobago": {"a": "flag: Trinidad & Tobago", "b": "1F1F9-1F1F9", "j": ["flag"]}, "flag-tuvalu": {"a": "flag: Tuvalu", "b": "1F1F9-1F1FB", "j": ["flag"]}, "flag-taiwan": {"a": "flag: Taiwan", "b": "1F1F9-1F1FC", "j": ["flag"]}, "flag-tanzania": {"a": "flag: Tanzania", "b": "1F1F9-1F1FF", "j": ["flag"]}, "flag-ukraine": {"a": "flag: Ukraine", "b": "1F1FA-1F1E6", "j": ["flag"]}, "flag-uganda": {"a": "flag: Uganda", "b": "1F1FA-1F1EC", "j": ["flag"]}, "flag-us-outlying-islands": {"a": "flag: U.S. Outlying Islands", "b": "1F1FA-1F1F2", "j": ["flag"]}, "flag-united-nations": {"a": "flag: United Nations", "b": "1F1FA-1F1F3", "j": ["flag"]}, "flag-united-states": {"a": "flag: United States", "b": "1F1FA-1F1F8", "j": ["flag"]}, "flag-uruguay": {"a": "flag: Uruguay", "b": "1F1FA-1F1FE", "j": ["flag"]}, "flag-uzbekistan": {"a": "flag: Uzbekistan", "b": "1F1FA-1F1FF", "j": ["flag"]}, "flag-vatican-city": {"a": "flag: Vatican City", "b": "1F1FB-1F1E6", "j": ["flag"]}, "flag-st-vincent--grenadines": {"a": "flag: St. Vincent & Grenadines", "b": "1F1FB-1F1E8", "j": ["flag"]}, "flag-venezuela": {"a": "flag: Venezuela", "b": "1F1FB-1F1EA", "j": ["flag"]}, "flag-british-virgin-islands": {"a": "flag: British Virgin Islands", "b": "1F1FB-1F1EC", "j": ["flag"]}, "flag-us-virgin-islands": {"a": "flag: U.S. Virgin Islands", "b": "1F1FB-1F1EE", "j": ["flag"]}, "flag-vietnam": {"a": "flag: Vietnam", "b": "1F1FB-1F1F3", "j": ["flag"]}, "flag-vanuatu": {"a": "flag: Vanuatu", "b": "1F1FB-1F1FA", "j": ["flag"]}, "flag-wallis--futuna": {"a": "flag: Wallis & Futuna", "b": "1F1FC-1F1EB", "j": ["flag"]}, "flag-samoa": {"a": "flag: Samoa", "b": "1F1FC-1F1F8", "j": ["flag"]}, "flag-kosovo": {"a": "flag: Kosovo", "b": "1F1FD-1F1F0", "j": ["flag"]}, "flag-yemen": {"a": "flag: Yemen", "b": "1F1FE-1F1EA", "j": ["flag"]}, "flag-mayotte": {"a": "flag: Mayotte", "b": "1F1FE-1F1F9", "j": ["flag"]}, "flag-south-africa": {"a": "flag: South Africa", "b": "1F1FF-1F1E6", "j": ["flag"]}, "flag-zambia": {"a": "flag: Zambia", "b": "1F1FF-1F1F2", "j": ["flag"]}, "flag-zimbabwe": {"a": "flag: Zimbabwe", "b": "1F1FF-1F1FC", "j": ["flag"]}, "flag-england": {"a": "flag: England", "b": "1F3F4-E0067-E0062-E0065-E006E-E0067-E007F", "j": ["flag"]}, "flag-scotland": {"a": "flag: Scotland", "b": "1F3F4-E0067-E0062-E0073-E0063-E0074-E007F", "j": ["flag"]}, "flag-wales": {"a": "flag: Wales", "b": "1F3F4-E0067-E0062-E0077-E006C-E0073-E007F", "j": ["flag"]}}, "aliases": {}} \ No newline at end of file +{"compressed": true, "categories": [{"id": "smileys_&_emotion", "name": "Smileys & Emotion", "emojis": ["grinning-face", "grinning-face-with-big-eyes", "grinning-face-with-smiling-eyes", "beaming-face-with-smiling-eyes", "grinning-squinting-face", "grinning-face-with-sweat", "rolling-on-the-floor-laughing", "face-with-tears-of-joy", "slightly-smiling-face", "upsidedown-face", "winking-face", "smiling-face-with-smiling-eyes", "smiling-face-with-halo", "smiling-face-with-hearts", "smiling-face-with-hearteyes", "starstruck", "face-blowing-a-kiss", "kissing-face", "smiling-face", "kissing-face-with-closed-eyes", "kissing-face-with-smiling-eyes", "smiling-face-with-tear", "face-savoring-food", "face-with-tongue", "winking-face-with-tongue", "zany-face", "squinting-face-with-tongue", "moneymouth-face", "hugging-face", "face-with-hand-over-mouth", "shushing-face", "thinking-face", "zippermouth-face", "face-with-raised-eyebrow", "neutral-face", "expressionless-face", "face-without-mouth", "face-in-clouds", "smirking-face", "unamused-face", "face-with-rolling-eyes", "grimacing-face", "face-exhaling", "lying-face", "relieved-face", "pensive-face", "sleepy-face", "drooling-face", "sleeping-face", "face-with-medical-mask", "face-with-thermometer", "face-with-headbandage", "nauseated-face", "face-vomiting", "sneezing-face", "hot-face", "cold-face", "woozy-face", "knockedout-face", "face-with-spiral-eyes", "exploding-head", "cowboy-hat-face", "partying-face", "disguised-face", "smiling-face-with-sunglasses", "nerd-face", "face-with-monocle", "confused-face", "worried-face", "slightly-frowning-face", "frowning-face", "face-with-open-mouth", "hushed-face", "astonished-face", "flushed-face", "pleading-face", "frowning-face-with-open-mouth", "anguished-face", "fearful-face", "anxious-face-with-sweat", "sad-but-relieved-face", "crying-face", "loudly-crying-face", "face-screaming-in-fear", "confounded-face", "persevering-face", "disappointed-face", "downcast-face-with-sweat", "weary-face", "tired-face", "yawning-face", "face-with-steam-from-nose", "pouting-face", "angry-face", "face-with-symbols-on-mouth", "smiling-face-with-horns", "angry-face-with-horns", "skull", "skull-and-crossbones", "pile-of-poo", "clown-face", "ogre", "goblin", "ghost", "alien", "alien-monster", "robot", "grinning-cat", "grinning-cat-with-smiling-eyes", "cat-with-tears-of-joy", "smiling-cat-with-hearteyes", "cat-with-wry-smile", "kissing-cat", "weary-cat", "crying-cat", "pouting-cat", "seenoevil-monkey", "hearnoevil-monkey", "speaknoevil-monkey", "kiss-mark", "love-letter", "heart-with-arrow", "heart-with-ribbon", "sparkling-heart", "growing-heart", "beating-heart", "revolving-hearts", "two-hearts", "heart-decoration", "heart-exclamation", "broken-heart", "heart-on-fire", "mending-heart", "red-heart", "orange-heart", "yellow-heart", "green-heart", "blue-heart", "purple-heart", "brown-heart", "black-heart", "white-heart", "hundred-points", "anger-symbol", "collision", "dizzy", "sweat-droplets", "dashing-away", "hole", "bomb", "speech-balloon", "eye-in-speech-bubble", "left-speech-bubble", "right-anger-bubble", "thought-balloon", "zzz"]}, {"id": "people_&_body", "name": "People & Body", "emojis": ["waving-hand", "raised-back-of-hand", "hand-with-fingers-splayed", "raised-hand", "vulcan-salute", "ok-hand", "pinched-fingers", "pinching-hand", "victory-hand", "crossed-fingers", "loveyou-gesture", "sign-of-the-horns", "call-me-hand", "backhand-index-pointing-left", "backhand-index-pointing-right", "backhand-index-pointing-up", "middle-finger", "backhand-index-pointing-down", "index-pointing-up", "thumbs-up", "thumbs-down", "raised-fist", "oncoming-fist", "leftfacing-fist", "rightfacing-fist", "clapping-hands", "raising-hands", "open-hands", "palms-up-together", "handshake", "folded-hands", "writing-hand", "nail-polish", "selfie", "flexed-biceps", "mechanical-arm", "mechanical-leg", "leg", "foot", "ear", "ear-with-hearing-aid", "nose", "brain", "anatomical-heart", "lungs", "tooth", "bone", "eyes", "eye", "tongue", "mouth", "baby", "child", "boy", "girl", "person", "person-blond-hair", "man", "person-beard", "man-beard", "woman-beard", "man-red-hair", "man-curly-hair", "man-white-hair", "man-bald", "woman", "woman-red-hair", "person-red-hair", "woman-curly-hair", "person-curly-hair", "woman-white-hair", "person-white-hair", "woman-bald", "person-bald", "woman-blond-hair", "man-blond-hair", "older-person", "old-man", "old-woman", "person-frowning", "man-frowning", "woman-frowning", "person-pouting", "man-pouting", "woman-pouting", "person-gesturing-no", "man-gesturing-no", "woman-gesturing-no", "person-gesturing-ok", "man-gesturing-ok", "woman-gesturing-ok", "person-tipping-hand", "man-tipping-hand", "woman-tipping-hand", "person-raising-hand", "man-raising-hand", "woman-raising-hand", "deaf-person", "deaf-man", "deaf-woman", "person-bowing", "man-bowing", "woman-bowing", "person-facepalming", "man-facepalming", "woman-facepalming", "person-shrugging", "man-shrugging", "woman-shrugging", "health-worker", "man-health-worker", "woman-health-worker", "student", "man-student", "woman-student", "teacher", "man-teacher", "woman-teacher", "judge", "man-judge", "woman-judge", "farmer", "man-farmer", "woman-farmer", "cook", "man-cook", "woman-cook", "mechanic", "man-mechanic", "woman-mechanic", "factory-worker", "man-factory-worker", "woman-factory-worker", "office-worker", "man-office-worker", "woman-office-worker", "scientist", "man-scientist", "woman-scientist", "technologist", "man-technologist", "woman-technologist", "singer", "man-singer", "woman-singer", "artist", "man-artist", "woman-artist", "pilot", "man-pilot", "woman-pilot", "astronaut", "man-astronaut", "woman-astronaut", "firefighter", "man-firefighter", "woman-firefighter", "police-officer", "man-police-officer", "woman-police-officer", "detective", "man-detective", "woman-detective", "guard", "man-guard", "woman-guard", "ninja", "construction-worker", "man-construction-worker", "woman-construction-worker", "prince", "princess", "person-wearing-turban", "man-wearing-turban", "woman-wearing-turban", "person-with-skullcap", "woman-with-headscarf", "person-in-tuxedo", "man-in-tuxedo", "woman-in-tuxedo", "person-with-veil", "man-with-veil", "woman-with-veil", "pregnant-woman", "breastfeeding", "woman-feeding-baby", "man-feeding-baby", "person-feeding-baby", "baby-angel", "santa-claus", "mrs-claus", "mx-claus", "superhero", "man-superhero", "woman-superhero", "supervillain", "man-supervillain", "woman-supervillain", "mage", "man-mage", "woman-mage", "fairy", "man-fairy", "woman-fairy", "vampire", "man-vampire", "woman-vampire", "merperson", "merman", "mermaid", "elf", "man-elf", "woman-elf", "genie", "man-genie", "woman-genie", "zombie", "man-zombie", "woman-zombie", "person-getting-massage", "man-getting-massage", "woman-getting-massage", "person-getting-haircut", "man-getting-haircut", "woman-getting-haircut", "person-walking", "man-walking", "woman-walking", "person-standing", "man-standing", "woman-standing", "person-kneeling", "man-kneeling", "woman-kneeling", "person-with-white-cane", "man-with-white-cane", "woman-with-white-cane", "person-in-motorized-wheelchair", "man-in-motorized-wheelchair", "woman-in-motorized-wheelchair", "person-in-manual-wheelchair", "man-in-manual-wheelchair", "woman-in-manual-wheelchair", "person-running", "man-running", "woman-running", "woman-dancing", "man-dancing", "person-in-suit-levitating", "people-with-bunny-ears", "men-with-bunny-ears", "women-with-bunny-ears", "person-in-steamy-room", "man-in-steamy-room", "woman-in-steamy-room", "person-climbing", "man-climbing", "woman-climbing", "person-fencing", "horse-racing", "skier", "snowboarder", "person-golfing", "man-golfing", "woman-golfing", "person-surfing", "man-surfing", "woman-surfing", "person-rowing-boat", "man-rowing-boat", "woman-rowing-boat", "person-swimming", "man-swimming", "woman-swimming", "person-bouncing-ball", "man-bouncing-ball", "woman-bouncing-ball", "person-lifting-weights", "man-lifting-weights", "woman-lifting-weights", "person-biking", "man-biking", "woman-biking", "person-mountain-biking", "man-mountain-biking", "woman-mountain-biking", "person-cartwheeling", "man-cartwheeling", "woman-cartwheeling", "people-wrestling", "men-wrestling", "women-wrestling", "person-playing-water-polo", "man-playing-water-polo", "woman-playing-water-polo", "person-playing-handball", "man-playing-handball", "woman-playing-handball", "person-juggling", "man-juggling", "woman-juggling", "person-in-lotus-position", "man-in-lotus-position", "woman-in-lotus-position", "person-taking-bath", "person-in-bed", "people-holding-hands", "women-holding-hands", "woman-and-man-holding-hands", "men-holding-hands", "kiss", "kiss-woman-man", "kiss-man-man", "kiss-woman-woman", "couple-with-heart", "couple-with-heart-woman-man", "couple-with-heart-man-man", "couple-with-heart-woman-woman", "family", "family-man-woman-boy", "family-man-woman-girl", "family-man-woman-girl-boy", "family-man-woman-boy-boy", "family-man-woman-girl-girl", "family-man-man-boy", "family-man-man-girl", "family-man-man-girl-boy", "family-man-man-boy-boy", "family-man-man-girl-girl", "family-woman-woman-boy", "family-woman-woman-girl", "family-woman-woman-girl-boy", "family-woman-woman-boy-boy", "family-woman-woman-girl-girl", "family-man-boy", "family-man-boy-boy", "family-man-girl", "family-man-girl-boy", "family-man-girl-girl", "family-woman-boy", "family-woman-boy-boy", "family-woman-girl", "family-woman-girl-boy", "family-woman-girl-girl", "speaking-head", "bust-in-silhouette", "busts-in-silhouette", "people-hugging", "footprints"]}, {"id": "animals_&_nature", "name": "Animals & Nature", "emojis": ["monkey-face", "monkey", "gorilla", "orangutan", "dog-face", "dog", "guide-dog", "service-dog", "poodle", "wolf", "fox", "raccoon", "cat-face", "cat", "black-cat", "lion", "tiger-face", "tiger", "leopard", "horse-face", "horse", "unicorn", "zebra", "deer", "bison", "cow-face", "ox", "water-buffalo", "cow", "pig-face", "pig", "boar", "pig-nose", "ram", "ewe", "goat", "camel", "twohump-camel", "llama", "giraffe", "elephant", "mammoth", "rhinoceros", "hippopotamus", "mouse-face", "mouse", "rat", "hamster", "rabbit-face", "rabbit", "chipmunk", "beaver", "hedgehog", "bat", "bear", "polar-bear", "koala", "panda", "sloth", "otter", "skunk", "kangaroo", "badger", "paw-prints", "turkey", "chicken", "rooster", "hatching-chick", "baby-chick", "frontfacing-baby-chick", "bird", "penguin", "dove", "eagle", "duck", "swan", "owl", "dodo", "feather", "flamingo", "peacock", "parrot", "frog", "crocodile", "turtle", "lizard", "snake", "dragon-face", "dragon", "sauropod", "trex", "spouting-whale", "whale", "dolphin", "seal", "fish", "tropical-fish", "blowfish", "shark", "octopus", "spiral-shell", "snail", "butterfly", "bug", "ant", "honeybee", "beetle", "lady-beetle", "cricket", "cockroach", "spider", "spider-web", "scorpion", "mosquito", "fly", "worm", "microbe", "bouquet", "cherry-blossom", "white-flower", "rosette", "rose", "wilted-flower", "hibiscus", "sunflower", "blossom", "tulip", "seedling", "potted-plant", "evergreen-tree", "deciduous-tree", "palm-tree", "cactus", "sheaf-of-rice", "herb", "shamrock", "four-leaf-clover", "maple-leaf", "fallen-leaf", "leaf-fluttering-in-wind"]}, {"id": "food_&_drink", "name": "Food & Drink", "emojis": ["grapes", "melon", "watermelon", "tangerine", "lemon", "banana", "pineapple", "mango", "red-apple", "green-apple", "pear", "peach", "cherries", "strawberry", "blueberries", "kiwi-fruit", "tomato", "olive", "coconut", "avocado", "eggplant", "potato", "carrot", "ear-of-corn", "hot-pepper", "bell-pepper", "cucumber", "leafy-green", "broccoli", "garlic", "onion", "mushroom", "peanuts", "chestnut", "bread", "croissant", "baguette-bread", "flatbread", "pretzel", "bagel", "pancakes", "waffle", "cheese-wedge", "meat-on-bone", "poultry-leg", "cut-of-meat", "bacon", "hamburger", "french-fries", "pizza", "hot-dog", "sandwich", "taco", "burrito", "tamale", "stuffed-flatbread", "falafel", "egg", "cooking", "shallow-pan-of-food", "pot-of-food", "fondue", "bowl-with-spoon", "green-salad", "popcorn", "butter", "salt", "canned-food", "bento-box", "rice-cracker", "rice-ball", "cooked-rice", "curry-rice", "steaming-bowl", "spaghetti", "roasted-sweet-potato", "oden", "sushi", "fried-shrimp", "fish-cake-with-swirl", "moon-cake", "dango", "dumpling", "fortune-cookie", "takeout-box", "crab", "lobster", "shrimp", "squid", "oyster", "soft-ice-cream", "shaved-ice", "ice-cream", "doughnut", "cookie", "birthday-cake", "shortcake", "cupcake", "pie", "chocolate-bar", "candy", "lollipop", "custard", "honey-pot", "baby-bottle", "glass-of-milk", "hot-beverage", "teapot", "teacup-without-handle", "sake", "bottle-with-popping-cork", "wine-glass", "cocktail-glass", "tropical-drink", "beer-mug", "clinking-beer-mugs", "clinking-glasses", "tumbler-glass", "cup-with-straw", "bubble-tea", "beverage-box", "mate", "ice", "chopsticks", "fork-and-knife-with-plate", "fork-and-knife", "spoon", "kitchen-knife", "amphora"]}, {"id": "travel_&_places", "name": "Travel & Places", "emojis": ["globe-showing-europeafrica", "globe-showing-americas", "globe-showing-asiaaustralia", "globe-with-meridians", "world-map", "map-of-japan", "compass", "snowcapped-mountain", "mountain", "volcano", "mount-fuji", "camping", "beach-with-umbrella", "desert", "desert-island", "national-park", "stadium", "classical-building", "building-construction", "brick", "rock", "wood", "hut", "houses", "derelict-house", "house", "house-with-garden", "office-building", "japanese-post-office", "post-office", "hospital", "bank", "hotel", "love-hotel", "convenience-store", "school", "department-store", "factory", "japanese-castle", "castle", "wedding", "tokyo-tower", "statue-of-liberty", "church", "mosque", "hindu-temple", "synagogue", "shinto-shrine", "kaaba", "fountain", "tent", "foggy", "night-with-stars", "cityscape", "sunrise-over-mountains", "sunrise", "cityscape-at-dusk", "sunset", "bridge-at-night", "hot-springs", "carousel-horse", "ferris-wheel", "roller-coaster", "barber-pole", "circus-tent", "locomotive", "railway-car", "highspeed-train", "bullet-train", "train", "metro", "light-rail", "station", "tram", "monorail", "mountain-railway", "tram-car", "bus", "oncoming-bus", "trolleybus", "minibus", "ambulance", "fire-engine", "police-car", "oncoming-police-car", "taxi", "oncoming-taxi", "automobile", "oncoming-automobile", "sport-utility-vehicle", "pickup-truck", "delivery-truck", "articulated-lorry", "tractor", "racing-car", "motorcycle", "motor-scooter", "manual-wheelchair", "motorized-wheelchair", "auto-rickshaw", "bicycle", "kick-scooter", "skateboard", "roller-skate", "bus-stop", "motorway", "railway-track", "oil-drum", "fuel-pump", "police-car-light", "horizontal-traffic-light", "vertical-traffic-light", "stop-sign", "construction", "anchor", "sailboat", "canoe", "speedboat", "passenger-ship", "ferry", "motor-boat", "ship", "airplane", "small-airplane", "airplane-departure", "airplane-arrival", "parachute", "seat", "helicopter", "suspension-railway", "mountain-cableway", "aerial-tramway", "satellite", "rocket", "flying-saucer", "bellhop-bell", "luggage", "hourglass-done", "hourglass-not-done", "watch", "alarm-clock", "stopwatch", "timer-clock", "mantelpiece-clock", "twelve-oclock", "twelvethirty", "one-oclock", "onethirty", "two-oclock", "twothirty", "three-oclock", "threethirty", "four-oclock", "fourthirty", "five-oclock", "fivethirty", "six-oclock", "sixthirty", "seven-oclock", "seventhirty", "eight-oclock", "eightthirty", "nine-oclock", "ninethirty", "ten-oclock", "tenthirty", "eleven-oclock", "eleventhirty", "new-moon", "waxing-crescent-moon", "first-quarter-moon", "waxing-gibbous-moon", "full-moon", "waning-gibbous-moon", "last-quarter-moon", "waning-crescent-moon", "crescent-moon", "new-moon-face", "first-quarter-moon-face", "last-quarter-moon-face", "thermometer", "sun", "full-moon-face", "sun-with-face", "ringed-planet", "star", "glowing-star", "shooting-star", "milky-way", "cloud", "sun-behind-cloud", "cloud-with-lightning-and-rain", "sun-behind-small-cloud", "sun-behind-large-cloud", "sun-behind-rain-cloud", "cloud-with-rain", "cloud-with-snow", "cloud-with-lightning", "tornado", "fog", "wind-face", "cyclone", "rainbow", "closed-umbrella", "umbrella", "umbrella-with-rain-drops", "umbrella-on-ground", "high-voltage", "snowflake", "snowman", "snowman-without-snow", "comet", "fire", "droplet", "water-wave"]}, {"id": "activities", "name": "Activities", "emojis": ["jackolantern", "christmas-tree", "fireworks", "sparkler", "firecracker", "sparkles", "balloon", "party-popper", "confetti-ball", "tanabata-tree", "pine-decoration", "japanese-dolls", "carp-streamer", "wind-chime", "moon-viewing-ceremony", "red-envelope", "ribbon", "wrapped-gift", "reminder-ribbon", "admission-tickets", "ticket", "military-medal", "trophy", "sports-medal", "1st-place-medal", "2nd-place-medal", "3rd-place-medal", "soccer-ball", "baseball", "softball", "basketball", "volleyball", "american-football", "rugby-football", "tennis", "flying-disc", "bowling", "cricket-game", "field-hockey", "ice-hockey", "lacrosse", "ping-pong", "badminton", "boxing-glove", "martial-arts-uniform", "goal-net", "flag-in-hole", "ice-skate", "fishing-pole", "diving-mask", "running-shirt", "skis", "sled", "curling-stone", "bullseye", "yoyo", "kite", "pool-8-ball", "crystal-ball", "magic-wand", "nazar-amulet", "video-game", "joystick", "slot-machine", "game-die", "puzzle-piece", "teddy-bear", "piata", "nesting-dolls", "spade-suit", "heart-suit", "diamond-suit", "club-suit", "chess-pawn", "joker", "mahjong-red-dragon", "flower-playing-cards", "performing-arts", "framed-picture", "artist-palette", "thread", "sewing-needle", "yarn", "knot"]}, {"id": "objects", "name": "Objects", "emojis": ["glasses", "sunglasses", "goggles", "lab-coat", "safety-vest", "necktie", "tshirt", "jeans", "scarf", "gloves", "coat", "socks", "dress", "kimono", "sari", "onepiece-swimsuit", "briefs", "shorts", "bikini", "womans-clothes", "purse", "handbag", "clutch-bag", "shopping-bags", "backpack", "thong-sandal", "mans-shoe", "running-shoe", "hiking-boot", "flat-shoe", "highheeled-shoe", "womans-sandal", "ballet-shoes", "womans-boot", "crown", "womans-hat", "top-hat", "graduation-cap", "billed-cap", "military-helmet", "rescue-workers-helmet", "prayer-beads", "lipstick", "ring", "gem-stone", "muted-speaker", "speaker-low-volume", "speaker-medium-volume", "speaker-high-volume", "loudspeaker", "megaphone", "postal-horn", "bell", "bell-with-slash", "musical-score", "musical-note", "musical-notes", "studio-microphone", "level-slider", "control-knobs", "microphone", "headphone", "radio", "saxophone", "accordion", "guitar", "musical-keyboard", "trumpet", "violin", "banjo", "drum", "long-drum", "mobile-phone", "mobile-phone-with-arrow", "telephone", "telephone-receiver", "pager", "fax-machine", "battery", "electric-plug", "laptop", "desktop-computer", "printer", "keyboard", "computer-mouse", "trackball", "computer-disk", "floppy-disk", "optical-disk", "dvd", "abacus", "movie-camera", "film-frames", "film-projector", "clapper-board", "television", "camera", "camera-with-flash", "video-camera", "videocassette", "magnifying-glass-tilted-left", "magnifying-glass-tilted-right", "candle", "light-bulb", "flashlight", "red-paper-lantern", "diya-lamp", "notebook-with-decorative-cover", "closed-book", "open-book", "green-book", "blue-book", "orange-book", "books", "notebook", "ledger", "page-with-curl", "scroll", "page-facing-up", "newspaper", "rolledup-newspaper", "bookmark-tabs", "bookmark", "label", "money-bag", "coin", "yen-banknote", "dollar-banknote", "euro-banknote", "pound-banknote", "money-with-wings", "credit-card", "receipt", "chart-increasing-with-yen", "envelope", "email", "incoming-envelope", "envelope-with-arrow", "outbox-tray", "inbox-tray", "package", "closed-mailbox-with-raised-flag", "closed-mailbox-with-lowered-flag", "open-mailbox-with-raised-flag", "open-mailbox-with-lowered-flag", "postbox", "ballot-box-with-ballot", "pencil", "black-nib", "fountain-pen", "pen", "paintbrush", "crayon", "memo", "briefcase", "file-folder", "open-file-folder", "card-index-dividers", "calendar", "tearoff-calendar", "spiral-notepad", "spiral-calendar", "card-index", "chart-increasing", "chart-decreasing", "bar-chart", "clipboard", "pushpin", "round-pushpin", "paperclip", "linked-paperclips", "straight-ruler", "triangular-ruler", "scissors", "card-file-box", "file-cabinet", "wastebasket", "locked", "unlocked", "locked-with-pen", "locked-with-key", "key", "old-key", "hammer", "axe", "pick", "hammer-and-pick", "hammer-and-wrench", "dagger", "crossed-swords", "water-pistol", "boomerang", "bow-and-arrow", "shield", "carpentry-saw", "wrench", "screwdriver", "nut-and-bolt", "gear", "clamp", "balance-scale", "white-cane", "link", "chains", "hook", "toolbox", "magnet", "ladder", "alembic", "test-tube", "petri-dish", "dna", "microscope", "telescope", "satellite-antenna", "syringe", "drop-of-blood", "pill", "adhesive-bandage", "stethoscope", "door", "elevator", "mirror", "window", "bed", "couch-and-lamp", "chair", "toilet", "plunger", "shower", "bathtub", "mouse-trap", "razor", "lotion-bottle", "safety-pin", "broom", "basket", "roll-of-paper", "bucket", "soap", "toothbrush", "sponge", "fire-extinguisher", "shopping-cart", "cigarette", "coffin", "headstone", "funeral-urn", "moai", "placard"]}, {"id": "symbols", "name": "Symbols", "emojis": ["atm-sign", "litter-in-bin-sign", "potable-water", "wheelchair-symbol", "mens-room", "womens-room", "restroom", "baby-symbol", "water-closet", "passport-control", "customs", "baggage-claim", "left-luggage", "warning", "children-crossing", "no-entry", "prohibited", "no-bicycles", "no-smoking", "no-littering", "nonpotable-water", "no-pedestrians", "no-mobile-phones", "no-one-under-eighteen", "radioactive", "biohazard", "up-arrow", "upright-arrow", "right-arrow", "downright-arrow", "down-arrow", "downleft-arrow", "left-arrow", "upleft-arrow", "updown-arrow", "leftright-arrow", "right-arrow-curving-left", "left-arrow-curving-right", "right-arrow-curving-up", "right-arrow-curving-down", "clockwise-vertical-arrows", "counterclockwise-arrows-button", "back-arrow", "end-arrow", "on-arrow", "soon-arrow", "top-arrow", "place-of-worship", "atom-symbol", "om", "star-of-david", "wheel-of-dharma", "yin-yang", "latin-cross", "orthodox-cross", "star-and-crescent", "peace-symbol", "menorah", "dotted-sixpointed-star", "aries", "taurus", "gemini", "cancer", "leo", "virgo", "libra", "scorpio", "sagittarius", "capricorn", "aquarius", "pisces", "ophiuchus", "shuffle-tracks-button", "repeat-button", "repeat-single-button", "play-button", "fastforward-button", "next-track-button", "play-or-pause-button", "reverse-button", "fast-reverse-button", "last-track-button", "upwards-button", "fast-up-button", "downwards-button", "fast-down-button", "pause-button", "stop-button", "record-button", "eject-button", "cinema", "dim-button", "bright-button", "antenna-bars", "vibration-mode", "mobile-phone-off", "female-sign", "male-sign", "transgender-symbol", "multiply", "plus", "minus", "divide", "infinity", "double-exclamation-mark", "exclamation-question-mark", "red-question-mark", "white-question-mark", "white-exclamation-mark", "red-exclamation-mark", "wavy-dash", "currency-exchange", "heavy-dollar-sign", "medical-symbol", "recycling-symbol", "fleurdelis", "trident-emblem", "name-badge", "japanese-symbol-for-beginner", "hollow-red-circle", "check-mark-button", "check-box-with-check", "check-mark", "cross-mark", "cross-mark-button", "curly-loop", "double-curly-loop", "part-alternation-mark", "eightspoked-asterisk", "eightpointed-star", "sparkle", "copyright", "registered", "trade-mark", "keycap", "keycap", "keycap-0", "keycap-1", "keycap-2", "keycap-3", "keycap-4", "keycap-5", "keycap-6", "keycap-7", "keycap-8", "keycap-9", "keycap-10", "input-latin-uppercase", "input-latin-lowercase", "input-numbers", "input-symbols", "input-latin-letters", "a-button-blood-type", "ab-button-blood-type", "b-button-blood-type", "cl-button", "cool-button", "free-button", "information", "id-button", "circled-m", "new-button", "ng-button", "o-button-blood-type", "ok-button", "p-button", "sos-button", "up-button", "vs-button", "japanese-here-button", "japanese-service-charge-button", "japanese-monthly-amount-button", "japanese-not-free-of-charge-button", "japanese-reserved-button", "japanese-bargain-button", "japanese-discount-button", "japanese-free-of-charge-button", "japanese-prohibited-button", "japanese-acceptable-button", "japanese-application-button", "japanese-passing-grade-button", "japanese-vacancy-button", "japanese-congratulations-button", "japanese-secret-button", "japanese-open-for-business-button", "japanese-no-vacancy-button", "red-circle", "orange-circle", "yellow-circle", "green-circle", "blue-circle", "purple-circle", "brown-circle", "black-circle", "white-circle", "red-square", "orange-square", "yellow-square", "green-square", "blue-square", "purple-square", "brown-square", "black-large-square", "white-large-square", "black-medium-square", "white-medium-square", "black-mediumsmall-square", "white-mediumsmall-square", "black-small-square", "white-small-square", "large-orange-diamond", "large-blue-diamond", "small-orange-diamond", "small-blue-diamond", "red-triangle-pointed-up", "red-triangle-pointed-down", "diamond-with-a-dot", "radio-button", "white-square-button", "black-square-button"]}, {"id": "flags", "name": "Flags", "emojis": ["chequered-flag", "triangular-flag", "crossed-flags", "black-flag", "white-flag", "rainbow-flag", "transgender-flag", "pirate-flag", "flag-ascension-island", "flag-andorra", "flag-united-arab-emirates", "flag-afghanistan", "flag-antigua--barbuda", "flag-anguilla", "flag-albania", "flag-armenia", "flag-angola", "flag-antarctica", "flag-argentina", "flag-american-samoa", "flag-austria", "flag-australia", "flag-aruba", "flag-land-islands", "flag-azerbaijan", "flag-bosnia--herzegovina", "flag-barbados", "flag-bangladesh", "flag-belgium", "flag-burkina-faso", "flag-bulgaria", "flag-bahrain", "flag-burundi", "flag-benin", "flag-st-barthlemy", "flag-bermuda", "flag-brunei", "flag-bolivia", "flag-caribbean-netherlands", "flag-brazil", "flag-bahamas", "flag-bhutan", "flag-bouvet-island", "flag-botswana", "flag-belarus", "flag-belize", "flag-canada", "flag-cocos-keeling-islands", "flag-congo--kinshasa", "flag-central-african-republic", "flag-congo--brazzaville", "flag-switzerland", "flag-cte-divoire", "flag-cook-islands", "flag-chile", "flag-cameroon", "flag-china", "flag-colombia", "flag-clipperton-island", "flag-costa-rica", "flag-cuba", "flag-cape-verde", "flag-curaao", "flag-christmas-island", "flag-cyprus", "flag-czechia", "flag-germany", "flag-diego-garcia", "flag-djibouti", "flag-denmark", "flag-dominica", "flag-dominican-republic", "flag-algeria", "flag-ceuta--melilla", "flag-ecuador", "flag-estonia", "flag-egypt", "flag-western-sahara", "flag-eritrea", "flag-spain", "flag-ethiopia", "flag-european-union", "flag-finland", "flag-fiji", "flag-falkland-islands", "flag-micronesia", "flag-faroe-islands", "flag-france", "flag-gabon", "flag-united-kingdom", "flag-grenada", "flag-georgia", "flag-french-guiana", "flag-guernsey", "flag-ghana", "flag-gibraltar", "flag-greenland", "flag-gambia", "flag-guinea", "flag-guadeloupe", "flag-equatorial-guinea", "flag-greece", "flag-south-georgia--south-sandwich-islands", "flag-guatemala", "flag-guam", "flag-guineabissau", "flag-guyana", "flag-hong-kong-sar-china", "flag-heard--mcdonald-islands", "flag-honduras", "flag-croatia", "flag-haiti", "flag-hungary", "flag-canary-islands", "flag-indonesia", "flag-ireland", "flag-israel", "flag-isle-of-man", "flag-india", "flag-british-indian-ocean-territory", "flag-iraq", "flag-iran", "flag-iceland", "flag-italy", "flag-jersey", "flag-jamaica", "flag-jordan", "flag-japan", "flag-kenya", "flag-kyrgyzstan", "flag-cambodia", "flag-kiribati", "flag-comoros", "flag-st-kitts--nevis", "flag-north-korea", "flag-south-korea", "flag-kuwait", "flag-cayman-islands", "flag-kazakhstan", "flag-laos", "flag-lebanon", "flag-st-lucia", "flag-liechtenstein", "flag-sri-lanka", "flag-liberia", "flag-lesotho", "flag-lithuania", "flag-luxembourg", "flag-latvia", "flag-libya", "flag-morocco", "flag-monaco", "flag-moldova", "flag-montenegro", "flag-st-martin", "flag-madagascar", "flag-marshall-islands", "flag-north-macedonia", "flag-mali", "flag-myanmar-burma", "flag-mongolia", "flag-macao-sar-china", "flag-northern-mariana-islands", "flag-martinique", "flag-mauritania", "flag-montserrat", "flag-malta", "flag-mauritius", "flag-maldives", "flag-malawi", "flag-mexico", "flag-malaysia", "flag-mozambique", "flag-namibia", "flag-new-caledonia", "flag-niger", "flag-norfolk-island", "flag-nigeria", "flag-nicaragua", "flag-netherlands", "flag-norway", "flag-nepal", "flag-nauru", "flag-niue", "flag-new-zealand", "flag-oman", "flag-panama", "flag-peru", "flag-french-polynesia", "flag-papua-new-guinea", "flag-philippines", "flag-pakistan", "flag-poland", "flag-st-pierre--miquelon", "flag-pitcairn-islands", "flag-puerto-rico", "flag-palestinian-territories", "flag-portugal", "flag-palau", "flag-paraguay", "flag-qatar", "flag-runion", "flag-romania", "flag-serbia", "flag-russia", "flag-rwanda", "flag-saudi-arabia", "flag-solomon-islands", "flag-seychelles", "flag-sudan", "flag-sweden", "flag-singapore", "flag-st-helena", "flag-slovenia", "flag-svalbard--jan-mayen", "flag-slovakia", "flag-sierra-leone", "flag-san-marino", "flag-senegal", "flag-somalia", "flag-suriname", "flag-south-sudan", "flag-so-tom--prncipe", "flag-el-salvador", "flag-sint-maarten", "flag-syria", "flag-eswatini", "flag-tristan-da-cunha", "flag-turks--caicos-islands", "flag-chad", "flag-french-southern-territories", "flag-togo", "flag-thailand", "flag-tajikistan", "flag-tokelau", "flag-timorleste", "flag-turkmenistan", "flag-tunisia", "flag-tonga", "flag-turkey", "flag-trinidad--tobago", "flag-tuvalu", "flag-taiwan", "flag-tanzania", "flag-ukraine", "flag-uganda", "flag-us-outlying-islands", "flag-united-nations", "flag-united-states", "flag-uruguay", "flag-uzbekistan", "flag-vatican-city", "flag-st-vincent--grenadines", "flag-venezuela", "flag-british-virgin-islands", "flag-us-virgin-islands", "flag-vietnam", "flag-vanuatu", "flag-wallis--futuna", "flag-samoa", "flag-kosovo", "flag-yemen", "flag-mayotte", "flag-south-africa", "flag-zambia", "flag-zimbabwe", "flag-england", "flag-scotland", "flag-wales"]}], "emojis": {"grinning-face": {"a": "grinning face", "b": "1F600", "j": ["grin", "joy", ":D", "face", "smile", "happy"]}, "grinning-face-with-big-eyes": {"a": "grinning face with big eyes", "b": "1F603", "j": ["joy", ":)", ":D", "open", "face", "smile", "mouth", "haha", "happy", "funny"]}, "grinning-face-with-smiling-eyes": {"a": "grinning face with smiling eyes", "b": "1F604", "j": ["like", "joy", ":)", ":D", "open", "face", "smile", "eye", "mouth", "haha", "laugh", "happy", "funny"]}, "beaming-face-with-smiling-eyes": {"a": "beaming face with smiling eyes", "b": "1F601", "j": ["grin", "joy", "face", "smile", "eye", "kawaii", "happy"]}, "grinning-squinting-face": {"a": "grinning squinting face", "b": "1F606", "j": ["joy", "XD", "face", "smile", "satisfied", "mouth", "laugh", "haha", "happy", "lol", "glad"]}, "grinning-face-with-sweat": {"a": "grinning face with sweat", "b": "1F605", "j": ["sweat", "relief", "hot", "cold", "open", "face", "smile", "laugh", "happy"]}, "rolling-on-the-floor-laughing": {"a": "rolling on the floor laughing", "b": "1F923", "j": ["lol", "rolling", "rotfl", "laughing", "face", "laugh", "haha", "floor", "rofl"]}, "face-with-tears-of-joy": {"a": "face with tears of joy", "b": "1F602", "j": ["cry", "tears", "joy", "weep", "face", "laugh", "haha", "happy", "happytears", "tear"]}, "slightly-smiling-face": {"a": "slightly smiling face", "b": "1F642", "j": ["smile", "face"]}, "upsidedown-face": {"a": "upside-down face", "b": "1F643", "j": ["face", "smile", "upside_down_face", "silly", "upside-down", "flipped"]}, "winking-face": {"a": "winking face", "b": "1F609", "j": [";)", "secret", "mischievous", "face", "smile", "eye", "happy", "wink"]}, "smiling-face-with-smiling-eyes": {"a": "smiling face with smiling eyes", "b": "1F60A", "j": ["embarrassed", "joy", "flushed", "blush", "face", "smile", "eye", "happy", "shy", "crush"]}, "smiling-face-with-halo": {"a": "smiling face with halo", "b": "1F607", "j": ["heaven", "innocent", "face", "fantasy", "angel", "halo"]}, "smiling-face-with-hearts": {"a": "smiling face with hearts", "b": "1F970", "j": ["love", "like", "infatuation", "face", "valentines", "hearts", "in love", "adore", "affection", "crush"]}, "smiling-face-with-hearteyes": {"a": "smiling face with heart-eyes", "b": "1F60D", "j": ["love", "like", "heart", "infatuation", "face", "smile", "eye", "valentines", "affection", "smiling_face_with_heart_eyes", "crush"]}, "starstruck": {"a": "star-struck", "b": "1F929", "j": ["grinning", "star", "face", "star_struck", "starry", "smile", "starry-eyed", "eyes"]}, "face-blowing-a-kiss": {"a": "face blowing a kiss", "b": "1F618", "j": ["love", "like", "infatuation", "face", "valentines", "affection", "kiss"]}, "kissing-face": {"a": "kissing face", "b": "1F617", "j": ["love", "like", "infatuation", "3", "face", "valentines", "kiss"]}, "smiling-face": {"a": "smiling face", "b": "263A", "j": ["relaxed", "happiness", "massage", "blush", "face", "outlined", "smile"]}, "kissing-face-with-closed-eyes": {"a": "kissing face with closed eyes", "b": "1F61A", "j": ["love", "like", "infatuation", "face", "eye", "valentines", "closed", "affection", "kiss"]}, "kissing-face-with-smiling-eyes": {"a": "kissing face with smiling eyes", "b": "1F619", "j": ["infatuation", "face", "smile", "valentines", "eye", "affection", "kiss"]}, "smiling-face-with-tear": {"a": "smiling face with tear", "b": "1F972", "j": ["grateful", "relieved", "proud", "pretend", "touched", "smiling", "cry", "sad", "tear"]}, "face-savoring-food": {"a": "face savoring food", "b": "1F60B", "j": ["tongue", "joy", "yummy", "silly", "face", "savouring", "smile", "happy", "nom", "delicious", "yum"]}, "face-with-tongue": {"a": "face with tongue", "b": "1F61B", "j": ["tongue", "mischievous", "playful", "face", "smile", "prank", "childish"]}, "winking-face-with-tongue": {"a": "winking face with tongue", "b": "1F61C", "j": ["tongue", "playful", "mischievous", "face", "smile", "eye", "joke", "wink", "prank", "childish"]}, "zany-face": {"a": "zany face", "b": "1F92A", "j": ["large", "crazy", "face", "goofy", "eye", "small"]}, "squinting-face-with-tongue": {"a": "squinting face with tongue", "b": "1F61D", "j": ["tongue", "playful", "mischievous", "taste", "face", "horrible", "eye", "smile", "prank"]}, "moneymouth-face": {"a": "money-mouth face", "b": "1F911", "j": ["rich", "face", "dollar", "mouth", "money_mouth_face", "money"]}, "hugging-face": {"a": "hugging face", "b": "1F917", "j": ["smile", "hugging", "face", "hug"]}, "face-with-hand-over-mouth": {"a": "face with hand over mouth", "b": "1F92D", "j": ["whoops", "face", "sudden realization", "shock", "surprise"]}, "shushing-face": {"a": "shushing face", "b": "1F92B", "j": ["quiet", "shush", "face", "shhh"]}, "thinking-face": {"a": "thinking face", "b": "1F914", "j": ["think", "consider", "hmmm", "thinking", "face"]}, "zippermouth-face": {"a": "zipper-mouth face", "b": "1F910", "j": ["secret", "zipper_mouth_face", "face", "sealed", "mouth", "zipper"]}, "face-with-raised-eyebrow": {"a": "face with raised eyebrow", "b": "1F928", "j": ["disbelief", "skeptic", "disapproval", "face", "mild surprise", "scepticism", "distrust", "surprise"]}, "neutral-face": {"a": "neutral face", "b": "1F610", "j": ["deadpan", "neutral", "face", "meh", "indifference", ":|"]}, "expressionless-face": {"a": "expressionless face", "b": "1F611", "j": ["inexpressive", "indifferent", "deadpan", "-_-", "face", "meh", "expressionless", "unexpressive"]}, "face-without-mouth": {"a": "face without mouth", "b": "1F636", "j": ["hellokitty", "face", "quiet", "mouth", "silent"]}, "face-in-clouds": {"a": "⊛ face in clouds", "b": "1F636-200D-1F32B-FE0F", "j": ["absentminded", "face in clouds", "face in the fog", "head in clouds"]}, "smirking-face": {"a": "smirking face", "b": "1F60F", "j": ["smug", "face", "smile", "sarcasm", "mean", "prank", "smirk"]}, "unamused-face": {"a": "unamused face", "b": "1F612", "j": ["side_eye", "bored", "unamused", "unhappy", "straight face", "face", "skeptical", "dubious", "sarcasm", "indifference", "serious", "unimpressed"]}, "face-with-rolling-eyes": {"a": "face with rolling eyes", "b": "1F644", "j": ["rolling", "frustrated", "face", "eyeroll", "eyes"]}, "grimacing-face": {"a": "grimacing face", "b": "1F62C", "j": ["grimace", "teeth", "face"]}, "face-exhaling": {"a": "⊛ face exhaling", "b": "1F62E-200D-1F4A8", "j": ["exhale", "face exhaling", "gasp", "groan", "relief", "whisper", "whistle"]}, "lying-face": {"a": "lying face", "b": "1F925", "j": ["pinocchio", "face", "lie"]}, "relieved-face": {"a": "relieved face", "b": "1F60C", "j": ["relaxed", "massage", "happiness", "relieved", "phew", "face"]}, "pensive-face": {"a": "pensive face", "b": "1F614", "j": ["depressed", "upset", "pensive", "face", "sad", "dejected"]}, "sleepy-face": {"a": "sleepy face", "b": "1F62A", "j": ["sleep", "tired", "face", "nap", "rest"]}, "drooling-face": {"a": "drooling face", "b": "1F924", "j": ["face", "drooling"]}, "sleeping-face": {"a": "sleeping face", "b": "1F634", "j": ["night", "sleep", "tired", "zzz", "face", "sleepy"]}, "face-with-medical-mask": {"a": "face with medical mask", "b": "1F637", "j": ["ill", "mask", "cold", "face", "doctor", "disease", "sick"]}, "face-with-thermometer": {"a": "face with thermometer", "b": "1F912", "j": ["ill", "thermometer", "fever", "cold", "face", "temperature", "sick"]}, "face-with-headbandage": {"a": "face with head-bandage", "b": "1F915", "j": ["face_with_head_bandage", "face", "injury", "clumsy", "hurt", "injured", "bandage"]}, "nauseated-face": {"a": "nauseated face", "b": "1F922", "j": ["ill", "throw up", "gross", "face", "green", "sick", "vomit", "nauseated"]}, "face-vomiting": {"a": "face vomiting", "b": "1F92E", "j": ["sick", "vomit", "face", "puke"]}, "sneezing-face": {"a": "sneezing face", "b": "1F927", "j": ["gesundheit", "face", "sick", "sneeze", "allergy"]}, "hot-face": {"a": "hot face", "b": "1F975", "j": ["sweating", "heat", "hot", "red-faced", "feverish", "face", "red", "heat stroke"]}, "cold-face": {"a": "cold face", "b": "1F976", "j": ["blue", "blue-faced", "frostbite", "freezing", "cold", "face", "icicles", "frozen"]}, "woozy-face": {"a": "woozy face", "b": "1F974", "j": ["face", "intoxicated", "dizzy", "wavy mouth", "tipsy", "uneven eyes", "wavy"]}, "knockedout-face": {"a": "knocked-out face", "b": "1F635", "j": ["knocked out", "dizzy_face", "unconscious", "face", "spent", "dizzy", "dead", "xox"]}, "face-with-spiral-eyes": {"a": "⊛ face with spiral eyes", "b": "1F635-200D-1F4AB", "j": ["dizzy", "face with spiral eyes", "hypnotized", "spiral", "trouble", "whoa"]}, "exploding-head": {"a": "exploding head", "b": "1F92F", "j": ["face", "shocked", "mind blown", "blown", "mind"]}, "cowboy-hat-face": {"a": "cowboy hat face", "b": "1F920", "j": ["hat", "cowboy", "face", "cowgirl"]}, "partying-face": {"a": "partying face", "b": "1F973", "j": ["face", "hat", "celebration", "horn", "party", "woohoo"]}, "disguised-face": {"a": "disguised face", "b": "1F978", "j": ["moustache", "glasses", "face", "brows", "disguise", "pretent", "nose", "incognito"]}, "smiling-face-with-sunglasses": {"a": "smiling face with sunglasses", "b": "1F60E", "j": ["sun", "cool", "sunglasses", "bright", "face", "sunglass", "smile", "summer", "beach"]}, "nerd-face": {"a": "nerd face", "b": "1F913", "j": ["nerdy", "geek", "nerd", "face", "dork"]}, "face-with-monocle": {"a": "face with monocle", "b": "1F9D0", "j": ["wealthy", "face", "stuffy"]}, "confused-face": {"a": "confused face", "b": "1F615", "j": ["hmmm", "face", "huh", "meh", "weird", "indifference", "confused", ":/"]}, "worried-face": {"a": "worried face", "b": "1F61F", "j": ["nervous", ":(", "face", "concern", "worried"]}, "slightly-frowning-face": {"a": "slightly frowning face", "b": "1F641", "j": ["frowning", "upset", "disappointed", "frown", "face", "sad"]}, "frowning-face": {"a": "frowning face", "b": "2639", "j": ["frown", "upset", "sad", "face"]}, "face-with-open-mouth": {"a": "face with open mouth", "b": "1F62E", "j": [":O", "open", "face", "wow", "impressed", "mouth", "whoa", "sympathy", "surprise"]}, "hushed-face": {"a": "hushed face", "b": "1F62F", "j": ["shh", "stunned", "face", "hushed", "surprised", "woo"]}, "astonished-face": {"a": "astonished face", "b": "1F632", "j": ["face", "shocked", "surprised", "astonished", "totally", "poisoned", "xox"]}, "flushed-face": {"a": "flushed face", "b": "1F633", "j": ["flattered", "blush", "face", "dazed", "flushed", "shy"]}, "pleading-face": {"a": "pleading face", "b": "1F97A", "j": ["puppy eyes", "begging", "face", "mercy"]}, "frowning-face-with-open-mouth": {"a": "frowning face with open mouth", "b": "1F626", "j": ["frown", "open", "face", "mouth", "what", "aw"]}, "anguished-face": {"a": "anguished face", "b": "1F627", "j": ["stunned", "nervous", "face", "anguished"]}, "fearful-face": {"a": "fearful face", "b": "1F628", "j": ["oops", "nervous", "face", "scared", "huh", "fear", "terrified", "fearful"]}, "anxious-face-with-sweat": {"a": "anxious face with sweat", "b": "1F630", "j": ["blue", "sweat", "nervous", "cold", "face", "rushed"]}, "sad-but-relieved-face": {"a": "sad but relieved face", "b": "1F625", "j": ["disappointed", "nervous", "sweat", "relieved", "whew", "phew", "face"]}, "crying-face": {"a": "crying face", "b": "1F622", "j": ["depressed", "upset", "tears", "face", ":'(", "cry", "sad", "tear"]}, "loudly-crying-face": {"a": "loudly crying face", "b": "1F62D", "j": ["depressed", "upset", "tears", "face", "cry", "sad", "tear", "sob"]}, "face-screaming-in-fear": {"a": "face screaming in fear", "b": "1F631", "j": ["munch", "face", "omg", "scared", "scream", "fear"]}, "confounded-face": {"a": "confounded face", "b": "1F616", "j": ["confounded", "oops", ":S", "sick", "unwell", "face", "confused"]}, "persevering-face": {"a": "persevering face", "b": "1F623", "j": ["oops", "upset", "persevere", "no", "face", "sick"]}, "disappointed-face": {"a": "disappointed face", "b": "1F61E", "j": ["depressed", "upset", "disappointed", ":(", "face", "sad"]}, "downcast-face-with-sweat": {"a": "downcast face with sweat", "b": "1F613", "j": ["sweat", "tired", "hot", "cold", "face", "exercise", "sad"]}, "weary-face": {"a": "weary face", "b": "1F629", "j": ["upset", "tired", "frustrated", "face", "sleepy", "sad", "weary"]}, "tired-face": {"a": "tired face", "b": "1F62B", "j": ["upset", "whine", "tired", "frustrated", "face", "sick"]}, "yawning-face": {"a": "yawning face", "b": "1F971", "j": ["", "bored", "tired", "yawn", "sleepy"]}, "face-with-steam-from-nose": {"a": "face with steam from nose", "b": "1F624", "j": ["triumph", "gas", "pride", "phew", "face", "proud", "won"]}, "pouting-face": {"a": "pouting face", "b": "1F621", "j": ["pouting", "rage", "despise", "hate", "face", "red", "angry", "mad"]}, "angry-face": {"a": "angry face", "b": "1F620", "j": ["annoyed", "anger", "frustrated", "face", "angry", "mad"]}, "face-with-symbols-on-mouth": {"a": "face with symbols on mouth", "b": "1F92C", "j": ["cursing", "swearing", "face", "expletive", "cussing", "profanity"]}, "smiling-face-with-horns": {"a": "smiling face with horns", "b": "1F608", "j": ["face", "fairy tale", "smile", "fantasy", "devil", "horns"]}, "angry-face-with-horns": {"a": "angry face with horns", "b": "1F47F", "j": ["face", "devil", "fantasy", "demon", "imp", "horns", "angry"]}, "skull": {"a": "skull", "b": "1F480", "j": ["death", "skeleton", "face", "creepy", "fairy tale", "dead", "monster"]}, "skull-and-crossbones": {"a": "skull and crossbones", "b": "2620", "j": ["danger", "death", "pirate", "skull", "scary", "face", "poison", "evil", "crossbones", "deadly", "monster"]}, "pile-of-poo": {"a": "pile of poo", "b": "1F4A9", "j": ["dung", "poop", "hankey", "face", "shitface", "fail", "turd", "shit", "poo", "monster"]}, "clown-face": {"a": "clown face", "b": "1F921", "j": ["clown", "face"]}, "ogre": {"a": "ogre", "b": "1F479", "j": ["mask", "scary", "japanese", "face", "creepy", "fairy tale", "halloween", "red", "fantasy", "creature", "troll", "devil", "demon", "monster"]}, "goblin": {"a": "goblin", "b": "1F47A", "j": ["mask", "scary", "japanese", "face", "creepy", "fairy tale", "red", "fantasy", "creature", "evil", "monster"]}, "ghost": {"a": "ghost", "b": "1F47B", "j": ["scary", "face", "fairy tale", "halloween", "spooky", "fantasy", "creature", "monster"]}, "alien": {"a": "alien", "b": "1F47D", "j": ["extraterrestrial", "paul", "face", "fantasy", "creature", "ufo", "weird", "outer_space", "UFO"]}, "alien-monster": {"a": "alien monster", "b": "1F47E", "j": ["extraterrestrial", "play", "face", "alien", "game", "creature", "ufo", "arcade", "monster"]}, "robot": {"a": "robot", "b": "1F916", "j": ["computer", "face", "bot", "machine", "monster"]}, "grinning-cat": {"a": "grinning cat", "b": "1F63A", "j": ["grinning", "cats", "open", "face", "smile", "mouth", "happy", "cat", "animal"]}, "grinning-cat-with-smiling-eyes": {"a": "grinning cat with smiling eyes", "b": "1F638", "j": ["animal", "cats", "grin", "face", "smile", "eye", "cat"]}, "cat-with-tears-of-joy": {"a": "cat with tears of joy", "b": "1F639", "j": ["animal", "tears", "cats", "joy", "face", "haha", "happy", "cat", "tear"]}, "smiling-cat-with-hearteyes": {"a": "smiling cat with heart-eyes", "b": "1F63B", "j": ["animal", "love", "like", "cats", "heart", "face", "smile", "eye", "smiling_cat_with_heart_eyes", "valentines", "affection", "cat"]}, "cat-with-wry-smile": {"a": "cat with wry smile", "b": "1F63C", "j": ["animal", "ironic", "cats", "face", "smile", "wry", "cat", "smirk"]}, "kissing-cat": {"a": "kissing cat", "b": "1F63D", "j": ["animal", "cats", "face", "eye", "kiss", "cat"]}, "weary-cat": {"a": "weary cat", "b": "1F640", "j": ["cats", "weary", "munch", "face", "oh", "surprised", "scared", "scream", "cat", "animal"]}, "crying-cat": {"a": "crying cat", "b": "1F63F", "j": ["upset", "animal", "tears", "cats", "weep", "face", "cry", "sad", "cat", "tear"]}, "pouting-cat": {"a": "pouting cat", "b": "1F63E", "j": ["pouting", "cats", "face", "cat", "animal"]}, "seenoevil-monkey": {"a": "see-no-evil monkey", "b": "1F648", "j": ["monkey", "forbidden", "face", "nature", "haha", "evil", "see", "animal", "see_no_evil_monkey"]}, "hearnoevil-monkey": {"a": "hear-no-evil monkey", "b": "1F649", "j": ["monkey", "forbidden", "animal", "hear_no_evil_monkey", "face", "nature", "evil", "hear"]}, "speaknoevil-monkey": {"a": "speak-no-evil monkey", "b": "1F64A", "j": ["monkey", "forbidden", "face", "speak_no_evil_monkey", "nature", "speak", "omg", "evil", "animal"]}, "kiss-mark": {"a": "kiss mark", "b": "1F48B", "j": ["love", "like", "face", "lips", "valentines", "affection", "kiss"]}, "love-letter": {"a": "love letter", "b": "1F48C", "j": ["envelope", "love", "like", "letter", "heart", "email", "valentines", "mail", "affection"]}, "heart-with-arrow": {"a": "heart with arrow", "b": "1F498", "j": ["arrow", "love", "like", "heart", "cupid", "valentines", "affection"]}, "heart-with-ribbon": {"a": "heart with ribbon", "b": "1F49D", "j": ["valentines", "valentine", "love", "ribbon"]}, "sparkling-heart": {"a": "sparkling heart", "b": "1F496", "j": ["love", "like", "excited", "valentines", "sparkle", "affection"]}, "growing-heart": {"a": "growing heart", "b": "1F497", "j": ["pulse", "nervous", "like", "love", "excited", "pink", "valentines", "growing", "affection"]}, "beating-heart": {"a": "beating heart", "b": "1F493", "j": ["love", "like", "heart", "beating", "pink", "heartbeat", "valentines", "pulsating", "affection"]}, "revolving-hearts": {"a": "revolving hearts", "b": "1F49E", "j": ["revolving", "like", "love", "valentines", "affection"]}, "two-hearts": {"a": "two hearts", "b": "1F495", "j": ["love", "like", "heart", "valentines", "affection"]}, "heart-decoration": {"a": "heart decoration", "b": "1F49F", "j": ["heart", "love", "like", "purple-square"]}, "heart-exclamation": {"a": "heart exclamation", "b": "2763", "j": ["punctuation", "love", "mark", "decoration", "exclamation"]}, "broken-heart": {"a": "broken heart", "b": "1F494", "j": ["heartbreak", "heart", "broken", "sorry", "break", "sad"]}, "heart-on-fire": {"a": "⊛ heart on fire", "b": "2764-FE0F-200D-1F525", "j": ["burn", "heart", "heart on fire", "love", "lust", "sacred heart"]}, "mending-heart": {"a": "⊛ mending heart", "b": "2764-FE0F-200D-1FA79", "j": ["healthier", "improving", "mending", "mending heart", "recovering", "recuperating", "well"]}, "red-heart": {"a": "red heart", "b": "2764", "j": ["heart", "valentines", "love", "like"]}, "orange-heart": {"a": "orange heart", "b": "1F9E1", "j": ["like", "love", "orange", "valentines", "affection"]}, "yellow-heart": {"a": "yellow heart", "b": "1F49B", "j": ["love", "like", "valentines", "yellow", "affection"]}, "green-heart": {"a": "green heart", "b": "1F49A", "j": ["love", "like", "valentines", "green", "affection"]}, "blue-heart": {"a": "blue heart", "b": "1F499", "j": ["blue", "like", "love", "valentines", "affection"]}, "purple-heart": {"a": "purple heart", "b": "1F49C", "j": ["love", "like", "valentines", "affection", "purple"]}, "brown-heart": {"a": "brown heart", "b": "1F90E", "j": ["heart", "brown", "coffee"]}, "black-heart": {"a": "black heart", "b": "1F5A4", "j": ["wicked", "black", "evil"]}, "white-heart": {"a": "white heart", "b": "1F90D", "j": ["heart", "white", "pure"]}, "hundred-points": {"a": "hundred points", "b": "1F4AF", "j": ["test", "full", "score", "quiz", "numbers", "hundred", "100", "perfect", "pass", "century", "exam"]}, "anger-symbol": {"a": "anger symbol", "b": "1F4A2", "j": ["comic", "mad", "angry"]}, "collision": {"a": "collision", "b": "1F4A5", "j": ["boom", "explode", "explosion", "comic", "bomb", "blown"]}, "dizzy": {"a": "dizzy", "b": "1F4AB", "j": ["magic", "star", "comic", "sparkle", "shoot"]}, "sweat-droplets": {"a": "sweat droplets", "b": "1F4A6", "j": ["oops", "sweat", "drip", "water", "comic", "splashing"]}, "dashing-away": {"a": "dashing away", "b": "1F4A8", "j": ["smoke", "fart", "dash", "puff", "air", "fast", "comic", "running", "shoo", "wind"]}, "hole": {"a": "hole", "b": "1F573", "j": ["embarrassing"]}, "bomb": {"a": "bomb", "b": "1F4A3", "j": ["boom", "explode", "explosion", "comic", "terrorism"]}, "speech-balloon": {"a": "speech balloon", "b": "1F4AC", "j": ["bubble", "balloon", "words", "message", "talk", "chatting", "comic", "speech", "dialog"]}, "eye-in-speech-bubble": {"a": "eye in speech bubble", "b": "1F441-FE0F-200D-1F5E8-FE0F", "j": ["info", "witness", "speech bubble", "eye"]}, "left-speech-bubble": {"a": "left speech bubble", "b": "1F5E8", "j": ["message", "talk", "words", "chatting", "speech", "dialog"]}, "right-anger-bubble": {"a": "right anger bubble", "b": "1F5EF", "j": ["bubble", "balloon", "thinking", "caption", "speech", "angry", "mad"]}, "thought-balloon": {"a": "thought balloon", "b": "1F4AD", "j": ["bubble", "dream", "balloon", "thinking", "comic", "cloud", "speech", "thought"]}, "zzz": {"a": "zzz", "b": "1F4A4", "j": ["sleep", "dream", "tired", "comic", "sleepy"]}, "waving-hand": {"a": "waving hand", "b": "1F44B", "j": ["waving", "wave", "farewell", "solong", "gesture", "hand", "hands", "hello", "goodbye", "hi", "palm"]}, "raised-back-of-hand": {"a": "raised back of hand", "b": "1F91A", "j": ["backhand", "fingers", "raised"]}, "hand-with-fingers-splayed": {"a": "hand with fingers splayed", "b": "1F590", "j": ["finger", "fingers", "hand", "splayed", "palm"]}, "raised-hand": {"a": "raised hand", "b": "270B", "j": ["fingers", "stop", "hand", "high 5", "high five", "ban", "palm", "highfive"]}, "vulcan-salute": {"a": "vulcan salute", "b": "1F596", "j": ["finger", "fingers", "hand", "vulcan", "star trek", "spock"]}, "ok-hand": {"a": "OK hand", "b": "1F44C", "j": ["OK", "limbs", "fingers", "hand", "okay", "perfect", "ok"]}, "pinched-fingers": {"a": "pinched fingers", "b": "1F90C", "j": ["pinched", "fingers", "hand gesture", "size", "tiny", "sarcastic", "small", "interrogation"]}, "pinching-hand": {"a": "pinching hand", "b": "1F90F", "j": ["small amount", "size", "small", "tiny"]}, "victory-hand": {"a": "victory hand", "b": "270C", "j": ["victory", "fingers", "hand", "ohyeah", "two", "v", "peace"]}, "crossed-fingers": {"a": "crossed fingers", "b": "1F91E", "j": ["cross", "finger", "lucky", "good", "hand", "luck"]}, "loveyou-gesture": {"a": "love-you gesture", "b": "1F91F", "j": ["ILY", "fingers", "gesture", "hand", "love_you_gesture"]}, "sign-of-the-horns": {"a": "sign of the horns", "b": "1F918", "j": ["finger", "rock_on", "fingers", "rock-on", "hand", "sign_of_horns", "horns", "evil_eye"]}, "call-me-hand": {"a": "call me hand", "b": "1F919", "j": ["gesture", "hand", "call", "hands"]}, "backhand-index-pointing-left": {"a": "backhand index pointing left", "b": "1F448", "j": ["finger", "fingers", "point", "hand", "left", "backhand", "direction", "index"]}, "backhand-index-pointing-right": {"a": "backhand index pointing right", "b": "1F449", "j": ["finger", "right", "fingers", "point", "hand", "backhand", "direction", "index"]}, "backhand-index-pointing-up": {"a": "backhand index pointing up", "b": "1F446", "j": ["finger", "fingers", "point", "hand", "backhand", "direction", "up"]}, "middle-finger": {"a": "middle finger", "b": "1F595", "j": ["flipping", "finger", "middle", "fingers", "hand", "rude"]}, "backhand-index-pointing-down": {"a": "backhand index pointing down", "b": "1F447", "j": ["finger", "fingers", "point", "down", "hand", "backhand", "direction"]}, "index-pointing-up": {"a": "index pointing up", "b": "261D", "j": ["finger", "fingers", "point", "hand", "direction", "up", "index"]}, "thumbs-up": {"a": "thumbs up", "b": "1F44D", "j": ["+1", "yes", "awesome", "like", "cool", "thumb", "thumbsup", "hand", "good", "agree", "accept", "up"]}, "thumbs-down": {"a": "thumbs down", "b": "1F44E", "j": ["-1", "no", "thumb", "down", "hand", "dislike", "thumbsdown"]}, "raised-fist": {"a": "raised fist", "b": "270A", "j": ["fingers", "clenched", "fist", "hand", "grasp", "punch"]}, "oncoming-fist": {"a": "oncoming fist", "b": "1F44A", "j": ["violence", "clenched", "fist", "hit", "hand", "attack", "punch", "angry"]}, "leftfacing-fist": {"a": "left-facing fist", "b": "1F91B", "j": ["left_facing_fist", "leftwards", "fist", "hand", "fistbump"]}, "rightfacing-fist": {"a": "right-facing fist", "b": "1F91C", "j": ["fist", "hand", "right_facing_fist", "rightwards", "fistbump"]}, "clapping-hands": {"a": "clapping hands", "b": "1F44F", "j": ["applause", "hand", "yay", "hands", "clap", "congrats", "praise"]}, "raising-hands": {"a": "raising hands", "b": "1F64C", "j": ["gesture", "hand", "hands", "celebration", "raised", "hooray", "yea"]}, "open-hands": {"a": "open hands", "b": "1F450", "j": ["fingers", "hand", "open", "hands", "butterfly"]}, "palms-up-together": {"a": "palms up together", "b": "1F932", "j": ["gesture", "cupped", "hands", "cupped hands", "prayer"]}, "handshake": {"a": "handshake", "b": "1F91D", "j": ["shake", "meeting", "hand", "agreement"]}, "folded-hands": {"a": "folded hands", "b": "1F64F", "j": ["hand", "high 5", "please", "high five", "thanks", "wish", "pray", "ask", "namaste", "hope", "highfive"]}, "writing-hand": {"a": "writing hand", "b": "270D", "j": ["lower_left_ballpoint_pen", "compose", "hand", "stationery", "write"]}, "nail-polish": {"a": "nail polish", "b": "1F485", "j": ["care", "finger", "manicure", "fashion", "polish", "beauty", "nail", "cosmetics"]}, "selfie": {"a": "selfie", "b": "1F933", "j": ["camera", "phone"]}, "flexed-biceps": {"a": "flexed biceps", "b": "1F4AA", "j": ["strong", "hand", "arm", "comic", "flex", "biceps", "summer", "muscle"]}, "mechanical-arm": {"a": "mechanical arm", "b": "1F9BE", "j": ["prosthetic", "accessibility"]}, "mechanical-leg": {"a": "mechanical leg", "b": "1F9BF", "j": ["prosthetic", "accessibility"]}, "leg": {"a": "leg", "b": "1F9B5", "j": ["limb", "kick"]}, "foot": {"a": "foot", "b": "1F9B6", "j": ["kick", "stomp"]}, "ear": {"a": "ear", "b": "1F442", "j": ["sound", "face", "body", "hear", "listen"]}, "ear-with-hearing-aid": {"a": "ear with hearing aid", "b": "1F9BB", "j": ["hard of hearing", "accessibility"]}, "nose": {"a": "nose", "b": "1F443", "j": ["smell", "sniff", "body"]}, "brain": {"a": "brain", "b": "1F9E0", "j": ["smart", "intelligent"]}, "anatomical-heart": {"a": "anatomical heart", "b": "1FAC0", "j": ["pulse", "heart", "cardiology", "organ", "heartbeat", "health", "anatomical"]}, "lungs": {"a": "lungs", "b": "1FAC1", "j": ["inhalation", "breath", "exhalation", "organ", "respiration", "breathe"]}, "tooth": {"a": "tooth", "b": "1F9B7", "j": ["dentist", "teeth"]}, "bone": {"a": "bone", "b": "1F9B4", "j": ["skeleton"]}, "eyes": {"a": "eyes", "b": "1F440", "j": ["stalk", "peek", "face", "eye", "watch", "see", "look"]}, "eye": {"a": "eye", "b": "1F441", "j": ["stare", "face", "watch", "body", "see", "look"]}, "tongue": {"a": "tongue", "b": "1F445", "j": ["playful", "mouth", "body"]}, "mouth": {"a": "mouth", "b": "1F444", "j": ["lips", "kiss"]}, "baby": {"a": "baby", "b": "1F476", "j": ["toddler", "young", "boy", "girl", "child"]}, "child": {"a": "child", "b": "1F9D2", "j": ["young", "gender-neutral", "unspecified gender"]}, "boy": {"a": "boy", "b": "1F466", "j": ["guy", "man", "male", "young", "teenager"]}, "girl": {"a": "girl", "b": "1F467", "j": ["woman", "young", "zodiac", "Virgo", "teenager", "female"]}, "person": {"a": "person", "b": "1F9D1", "j": ["adult", "gender-neutral", "unspecified gender"]}, "person-blond-hair": {"a": "person: blond hair", "b": "1F471", "j": ["hairstyle", "blond-haired person", "blond", "hair"]}, "man": {"a": "man", "b": "1F468", "j": ["guy", "classy", "moustache", "father", "sir", "dad", "mustache", "adult"]}, "person-beard": {"a": "person: beard", "b": "1F9D4", "j": ["person", "bewhiskered", "man_beard", "beard"]}, "man-beard": {"a": "⊛ man: beard", "b": "1F9D4-200D-2642-FE0F", "j": ["beard", "man", "man: beard"]}, "woman-beard": {"a": "⊛ woman: beard", "b": "1F9D4-200D-2640-FE0F", "j": ["beard", "woman", "woman: beard"]}, "man-red-hair": {"a": "man: red hair", "b": "1F468-200D-1F9B0", "j": ["adult", "red hair", "man", "hairstyle"]}, "man-curly-hair": {"a": "man: curly hair", "b": "1F468-200D-1F9B1", "j": ["curly hair", "adult", "man", "hairstyle"]}, "man-white-hair": {"a": "man: white hair", "b": "1F468-200D-1F9B3", "j": ["man", "elder", "old", "adult", "white hair"]}, "man-bald": {"a": "man: bald", "b": "1F468-200D-1F9B2", "j": ["hairless", "adult", "man", "bald"]}, "woman": {"a": "woman", "b": "1F469", "j": ["girls", "lady", "adult", "female"]}, "woman-red-hair": {"a": "woman: red hair", "b": "1F469-200D-1F9B0", "j": ["woman", "adult", "red hair", "hairstyle"]}, "person-red-hair": {"a": "person: red hair", "b": "1F9D1-200D-1F9B0", "j": ["person", "unspecified gender", "hairstyle", "red hair", "adult", "gender-neutral"]}, "woman-curly-hair": {"a": "woman: curly hair", "b": "1F469-200D-1F9B1", "j": ["woman", "curly hair", "adult", "hairstyle"]}, "person-curly-hair": {"a": "person: curly hair", "b": "1F9D1-200D-1F9B1", "j": ["person", "unspecified gender", "hairstyle", "curly hair", "adult", "gender-neutral"]}, "woman-white-hair": {"a": "woman: white hair", "b": "1F469-200D-1F9B3", "j": ["woman", "elder", "old", "adult", "white hair"]}, "person-white-hair": {"a": "person: white hair", "b": "1F9D1-200D-1F9B3", "j": ["person", "unspecified gender", "elder", "white hair", "old", "adult", "gender-neutral"]}, "woman-bald": {"a": "woman: bald", "b": "1F469-200D-1F9B2", "j": ["hairless", "adult", "bald", "woman"]}, "person-bald": {"a": "person: bald", "b": "1F9D1-200D-1F9B2", "j": ["hairless", "person", "unspecified gender", "bald", "adult", "gender-neutral"]}, "woman-blond-hair": {"a": "woman: blond hair", "b": "1F471-200D-2640-FE0F", "j": ["person", "woman", "hair", "girl", "blond-haired woman", "blonde", "female"]}, "man-blond-hair": {"a": "man: blond hair", "b": "1F471-200D-2642-FE0F", "j": ["guy", "person", "man", "hair", "male", "boy", "blond-haired man", "blond", "blonde"]}, "older-person": {"a": "older person", "b": "1F9D3", "j": ["unspecified gender", "elder", "senior", "human", "old", "adult", "gender-neutral"]}, "old-man": {"a": "old man", "b": "1F474", "j": ["man", "male", "elder", "human", "senior", "old", "men", "adult"]}, "old-woman": {"a": "old woman", "b": "1F475", "j": ["woman", "elder", "human", "lady", "senior", "old", "adult", "women", "female"]}, "person-frowning": {"a": "person frowning", "b": "1F64D", "j": ["frown", "gesture", "worried"]}, "man-frowning": {"a": "man frowning", "b": "1F64D-200D-2642-FE0F", "j": ["frowning", "depressed", "man", "male", "gesture", "boy", "unhappy", "sad", "discouraged"]}, "woman-frowning": {"a": "woman frowning", "b": "1F64D-200D-2640-FE0F", "j": ["frowning", "depressed", "woman", "gesture", "girl", "unhappy", "sad", "discouraged", "female"]}, "person-pouting": {"a": "person pouting", "b": "1F64E", "j": ["pouting", "upset", "gesture"]}, "man-pouting": {"a": "man pouting", "b": "1F64E-200D-2642-FE0F", "j": ["pouting", "man", "male", "gesture", "boy"]}, "woman-pouting": {"a": "woman pouting", "b": "1F64E-200D-2640-FE0F", "j": ["pouting", "woman", "gesture", "girl", "female"]}, "person-gesturing-no": {"a": "person gesturing NO", "b": "1F645", "j": ["decline", "forbidden", "gesture", "prohibited", "hand"]}, "man-gesturing-no": {"a": "man gesturing NO", "b": "1F645-200D-2642-FE0F", "j": ["forbidden", "man", "male", "gesture", "prohibited", "hand", "boy", "nope"]}, "woman-gesturing-no": {"a": "woman gesturing NO", "b": "1F645-200D-2640-FE0F", "j": ["forbidden", "woman", "gesture", "prohibited", "hand", "girl", "female", "nope"]}, "person-gesturing-ok": {"a": "person gesturing OK", "b": "1F646", "j": ["OK", "hand", "gesture", "agree"]}, "man-gesturing-ok": {"a": "man gesturing OK", "b": "1F646-200D-2642-FE0F", "j": ["blue", "OK", "man", "male", "human", "gesture", "boy", "hand", "men"]}, "woman-gesturing-ok": {"a": "woman gesturing OK", "b": "1F646-200D-2640-FE0F", "j": ["OK", "woman", "human", "gesture", "girl", "hand", "pink", "women", "female"]}, "person-tipping-hand": {"a": "person tipping hand", "b": "1F481", "j": ["tipping", "hand", "sassy", "help", "information"]}, "man-tipping-hand": {"a": "man tipping hand", "b": "1F481-200D-2642-FE0F", "j": ["man", "male", "human", "boy", "sassy", "tipping hand", "information"]}, "woman-tipping-hand": {"a": "woman tipping hand", "b": "1F481-200D-2640-FE0F", "j": ["woman", "human", "girl", "sassy", "tipping hand", "information", "female"]}, "person-raising-hand": {"a": "person raising hand", "b": "1F64B", "j": ["gesture", "hand", "raised", "happy", "question"]}, "man-raising-hand": {"a": "man raising hand", "b": "1F64B-200D-2642-FE0F", "j": ["raising hand", "man", "male", "gesture", "boy"]}, "woman-raising-hand": {"a": "woman raising hand", "b": "1F64B-200D-2640-FE0F", "j": ["raising hand", "woman", "gesture", "girl", "female"]}, "deaf-person": {"a": "deaf person", "b": "1F9CF", "j": ["ear", "deaf", "accessibility", "hear"]}, "deaf-man": {"a": "deaf man", "b": "1F9CF-200D-2642-FE0F", "j": ["accessibility", "deaf", "man"]}, "deaf-woman": {"a": "deaf woman", "b": "1F9CF-200D-2640-FE0F", "j": ["deaf", "accessibility", "woman"]}, "person-bowing": {"a": "person bowing", "b": "1F647", "j": ["gesture", "sorry", "apology", "respectiful", "bow"]}, "man-bowing": {"a": "man bowing", "b": "1F647-200D-2642-FE0F", "j": ["man", "male", "gesture", "boy", "bowing", "sorry", "favor", "apology"]}, "woman-bowing": {"a": "woman bowing", "b": "1F647-200D-2640-FE0F", "j": ["woman", "gesture", "girl", "bowing", "sorry", "favor", "apology", "female"]}, "person-facepalming": {"a": "person facepalming", "b": "1F926", "j": ["disappointed", "disbelief", "face", "exasperation", "palm"]}, "man-facepalming": {"a": "man facepalming", "b": "1F926-200D-2642-FE0F", "j": ["disbelief", "facepalm", "man", "male", "boy", "exasperation"]}, "woman-facepalming": {"a": "woman facepalming", "b": "1F926-200D-2640-FE0F", "j": ["disbelief", "facepalm", "woman", "girl", "exasperation", "female"]}, "person-shrugging": {"a": "person shrugging", "b": "1F937", "j": ["regardless", "indifference", "doubt", "shrug", "ignorance"]}, "man-shrugging": {"a": "man shrugging", "b": "1F937-200D-2642-FE0F", "j": ["indifferent", "man", "male", "boy", "doubt", "indifference", "confused", "shrug", "ignorance"]}, "woman-shrugging": {"a": "woman shrugging", "b": "1F937-200D-2640-FE0F", "j": ["indifferent", "woman", "girl", "doubt", "indifference", "confused", "female", "shrug", "ignorance"]}, "health-worker": {"a": "health worker", "b": "1F9D1-200D-2695-FE0F", "j": ["nurse", "doctor", "healthcare", "hospital", "therapist"]}, "man-health-worker": {"a": "man health worker", "b": "1F468-200D-2695-FE0F", "j": ["nurse", "man", "human", "doctor", "healthcare", "therapist"]}, "woman-health-worker": {"a": "woman health worker", "b": "1F469-200D-2695-FE0F", "j": ["nurse", "woman", "human", "doctor", "healthcare", "therapist"]}, "student": {"a": "student", "b": "1F9D1-200D-1F393", "j": ["learn", "graduate"]}, "man-student": {"a": "man student", "b": "1F468-200D-1F393", "j": ["human", "graduate", "student", "man"]}, "woman-student": {"a": "woman student", "b": "1F469-200D-1F393", "j": ["human", "graduate", "student", "woman"]}, "teacher": {"a": "teacher", "b": "1F9D1-200D-1F3EB", "j": ["professor", "instructor"]}, "man-teacher": {"a": "man teacher", "b": "1F468-200D-1F3EB", "j": ["instructor", "man", "teacher", "human", "professor"]}, "woman-teacher": {"a": "woman teacher", "b": "1F469-200D-1F3EB", "j": ["instructor", "woman", "teacher", "human", "professor"]}, "judge": {"a": "judge", "b": "1F9D1-200D-2696-FE0F", "j": ["scales", "justice", "law"]}, "man-judge": {"a": "man judge", "b": "1F468-200D-2696-FE0F", "j": ["court", "man", "human", "scales", "judge", "justice"]}, "woman-judge": {"a": "woman judge", "b": "1F469-200D-2696-FE0F", "j": ["court", "woman", "human", "scales", "judge", "justice"]}, "farmer": {"a": "farmer", "b": "1F9D1-200D-1F33E", "j": ["rancher", "crops", "gardener"]}, "man-farmer": {"a": "man farmer", "b": "1F468-200D-1F33E", "j": ["farmer", "man", "human", "rancher", "gardener"]}, "woman-farmer": {"a": "woman farmer", "b": "1F469-200D-1F33E", "j": ["farmer", "woman", "human", "rancher", "gardener"]}, "cook": {"a": "cook", "b": "1F9D1-200D-1F373", "j": ["chef", "food", "culinary", "kitchen"]}, "man-cook": {"a": "man cook", "b": "1F468-200D-1F373", "j": ["human", "cook", "chef", "man"]}, "woman-cook": {"a": "woman cook", "b": "1F469-200D-1F373", "j": ["human", "cook", "chef", "woman"]}, "mechanic": {"a": "mechanic", "b": "1F9D1-200D-1F527", "j": ["worker", "electrician", "plumber", "technician", "tradesperson"]}, "man-mechanic": {"a": "man mechanic", "b": "1F468-200D-1F527", "j": ["man", "human", "electrician", "plumber", "tradesperson", "mechanic", "wrench"]}, "woman-mechanic": {"a": "woman mechanic", "b": "1F469-200D-1F527", "j": ["woman", "human", "electrician", "plumber", "tradesperson", "mechanic", "wrench"]}, "factory-worker": {"a": "factory worker", "b": "1F9D1-200D-1F3ED", "j": ["worker", "factory", "labor", "industrial", "assembly"]}, "man-factory-worker": {"a": "man factory worker", "b": "1F468-200D-1F3ED", "j": ["man", "worker", "human", "factory", "industrial", "assembly"]}, "woman-factory-worker": {"a": "woman factory worker", "b": "1F469-200D-1F3ED", "j": ["worker", "woman", "human", "factory", "industrial", "assembly"]}, "office-worker": {"a": "office worker", "b": "1F9D1-200D-1F4BC", "j": ["white-collar", "architect", "manager", "business"]}, "man-office-worker": {"a": "man office worker", "b": "1F468-200D-1F4BC", "j": ["white-collar", "architect", "man", "business", "manager", "human"]}, "woman-office-worker": {"a": "woman office worker", "b": "1F469-200D-1F4BC", "j": ["white-collar", "architect", "manager", "business", "woman", "human"]}, "scientist": {"a": "scientist", "b": "1F9D1-200D-1F52C", "j": ["chemistry", "biologist", "physicist", "engineer", "chemist"]}, "man-scientist": {"a": "man scientist", "b": "1F468-200D-1F52C", "j": ["man", "biologist", "human", "physicist", "scientist", "engineer", "chemist"]}, "woman-scientist": {"a": "woman scientist", "b": "1F469-200D-1F52C", "j": ["biologist", "woman", "human", "physicist", "scientist", "engineer", "chemist"]}, "technologist": {"a": "technologist", "b": "1F9D1-200D-1F4BB", "j": ["computer", "software", "coder", "developer", "inventor"]}, "man-technologist": {"a": "man technologist", "b": "1F468-200D-1F4BB", "j": ["programmer", "laptop", "software", "computer", "coder", "man", "human", "developer", "inventor", "engineer", "technologist"]}, "woman-technologist": {"a": "woman technologist", "b": "1F469-200D-1F4BB", "j": ["programmer", "laptop", "software", "computer", "coder", "woman", "human", "developer", "inventor", "engineer", "technologist"]}, "singer": {"a": "singer", "b": "1F9D1-200D-1F3A4", "j": ["song", "artist", "star", "rock", "actor", "entertainer", "performer"]}, "man-singer": {"a": "man singer", "b": "1F468-200D-1F3A4", "j": ["man", "human", "star", "rockstar", "rock", "singer", "actor", "entertainer"]}, "woman-singer": {"a": "woman singer", "b": "1F469-200D-1F3A4", "j": ["woman", "human", "star", "rockstar", "rock", "singer", "actor", "entertainer"]}, "artist": {"a": "artist", "b": "1F9D1-200D-1F3A8", "j": ["painting", "creativity", "palette", "draw"]}, "man-artist": {"a": "man artist", "b": "1F468-200D-1F3A8", "j": ["man", "artist", "human", "painter", "palette"]}, "woman-artist": {"a": "woman artist", "b": "1F469-200D-1F3A8", "j": ["woman", "artist", "human", "painter", "palette"]}, "pilot": {"a": "pilot", "b": "1F9D1-200D-2708-FE0F", "j": ["airplane", "plane", "fly"]}, "man-pilot": {"a": "man pilot", "b": "1F468-200D-2708-FE0F", "j": ["man", "human", "plane", "pilot", "aviator"]}, "woman-pilot": {"a": "woman pilot", "b": "1F469-200D-2708-FE0F", "j": ["woman", "human", "plane", "pilot", "aviator"]}, "astronaut": {"a": "astronaut", "b": "1F9D1-200D-1F680", "j": ["outerspace", "rocket"]}, "man-astronaut": {"a": "man astronaut", "b": "1F468-200D-1F680", "j": ["man", "rocket", "human", "astronaut", "space"]}, "woman-astronaut": {"a": "woman astronaut", "b": "1F469-200D-1F680", "j": ["rocket", "woman", "human", "astronaut", "space"]}, "firefighter": {"a": "firefighter", "b": "1F9D1-200D-1F692", "j": ["firetruck", "fire"]}, "man-firefighter": {"a": "man firefighter", "b": "1F468-200D-1F692", "j": ["firetruck", "man", "human", "fireman", "firefighter"]}, "woman-firefighter": {"a": "woman firefighter", "b": "1F469-200D-1F692", "j": ["firetruck", "woman", "human", "fireman", "firefighter"]}, "police-officer": {"a": "police officer", "b": "1F46E", "j": ["cop", "police", "officer"]}, "man-police-officer": {"a": "man police officer", "b": "1F46E-200D-2642-FE0F", "j": ["police", "man", "officer", "law", "enforcement", "911", "legal", "cop", "arrest"]}, "woman-police-officer": {"a": "woman police officer", "b": "1F46E-200D-2640-FE0F", "j": ["police", "woman", "officer", "law", "enforcement", "arrest", "911", "legal", "cop", "female"]}, "detective": {"a": "detective", "b": "1F575", "j": ["sleuth", "human", "spy"]}, "man-detective": {"a": "man detective", "b": "1F575-FE0F-200D-2642-FE0F", "j": ["spy", "man", "crime", "sleuth", "detective"]}, "woman-detective": {"a": "woman detective", "b": "1F575-FE0F-200D-2640-FE0F", "j": ["spy", "woman", "human", "sleuth", "female", "detective"]}, "guard": {"a": "guard", "b": "1F482", "j": ["protect"]}, "man-guard": {"a": "man guard", "b": "1F482-200D-2642-FE0F", "j": ["guy", "royal", "man", "british", "male", "uk", "gb", "guard"]}, "woman-guard": {"a": "woman guard", "b": "1F482-200D-2640-FE0F", "j": ["royal", "woman", "british", "uk", "gb", "guard", "female"]}, "ninja": {"a": "ninja", "b": "1F977", "j": ["ninjutsu", "japanese", "fighter", "hidden", "stealth", "skills"]}, "construction-worker": {"a": "construction worker", "b": "1F477", "j": ["build", "construction", "worker", "hat", "labor"]}, "man-construction-worker": {"a": "man construction worker", "b": "1F477-200D-2642-FE0F", "j": ["guy", "man", "construction", "male", "worker", "human", "wip", "build", "labor"]}, "woman-construction-worker": {"a": "woman construction worker", "b": "1F477-200D-2640-FE0F", "j": ["build", "construction", "worker", "woman", "human", "wip", "labor", "female"]}, "prince": {"a": "prince", "b": "1F934", "j": ["royal", "man", "male", "crown", "king", "boy"]}, "princess": {"a": "princess", "b": "1F478", "j": ["royal", "woman", "crown", "girl", "fairy tale", "fantasy", "blond", "queen", "female"]}, "person-wearing-turban": {"a": "person wearing turban", "b": "1F473", "j": ["turban", "headdress"]}, "man-wearing-turban": {"a": "man wearing turban", "b": "1F473-200D-2642-FE0F", "j": ["man", "male", "hinduism", "turban", "indian", "arabs"]}, "woman-wearing-turban": {"a": "woman wearing turban", "b": "1F473-200D-2640-FE0F", "j": ["woman", "hinduism", "turban", "indian", "arabs", "female"]}, "person-with-skullcap": {"a": "person with skullcap", "b": "1F472", "j": ["person", "man_with_skullcap", "male", "boy", "hat", "skullcap", "cap", "gua pi mao", "chinese"]}, "woman-with-headscarf": {"a": "woman with headscarf", "b": "1F9D5", "j": ["tichel", "mantilla", "bandana", "head kerchief", "headscarf", "female", "hijab"]}, "person-in-tuxedo": {"a": "person in tuxedo", "b": "1F935", "j": ["person", "wedding", "marriage", "tuxedo", "groom", "man_in_tuxedo", "couple"]}, "man-in-tuxedo": {"a": "man in tuxedo", "b": "1F935-200D-2642-FE0F", "j": ["formal", "fashion", "man", "tuxedo"]}, "woman-in-tuxedo": {"a": "woman in tuxedo", "b": "1F935-200D-2640-FE0F", "j": ["formal", "fashion", "tuxedo", "woman"]}, "person-with-veil": {"a": "person with veil", "b": "1F470", "j": ["person", "wedding", "marriage", "woman", "bride", "veil", "bride_with_veil", "couple"]}, "man-with-veil": {"a": "man with veil", "b": "1F470-200D-2642-FE0F", "j": ["veil", "wedding", "man", "marriage"]}, "woman-with-veil": {"a": "woman with veil", "b": "1F470-200D-2640-FE0F", "j": ["veil", "wedding", "marriage", "woman"]}, "pregnant-woman": {"a": "pregnant woman", "b": "1F930", "j": ["pregnant", "baby", "woman"]}, "breastfeeding": {"a": "breast-feeding", "b": "1F931", "j": ["nursing", "breast", "baby", "breast_feeding"]}, "woman-feeding-baby": {"a": "woman feeding baby", "b": "1F469-200D-1F37C", "j": ["nursing", "birth", "woman", "baby", "feeding", "food"]}, "man-feeding-baby": {"a": "man feeding baby", "b": "1F468-200D-1F37C", "j": ["nursing", "birth", "man", "baby", "feeding", "food"]}, "person-feeding-baby": {"a": "person feeding baby", "b": "1F9D1-200D-1F37C", "j": ["nursing", "person", "birth", "baby", "feeding", "food"]}, "baby-angel": {"a": "baby angel", "b": "1F47C", "j": ["heaven", "baby", "face", "fairy tale", "fantasy", "wings", "angel", "halo"]}, "santa-claus": {"a": "Santa Claus", "b": "1F385", "j": ["claus", "man", "male", "father", "santa", "festival", "xmas", "celebration", "Christmas", "father christmas"]}, "mrs-claus": {"a": "Mrs. Claus", "b": "1F936", "j": ["claus", "Mrs.", "woman", "xmas", "celebration", "Christmas", "mother christmas", "mother", "female"]}, "mx-claus": {"a": "mx claus", "b": "1F9D1-200D-1F384", "j": ["Claus, christmas", "christmas"]}, "superhero": {"a": "superhero", "b": "1F9B8", "j": ["marvel", "superpower", "good", "heroine", "hero"]}, "man-superhero": {"a": "man superhero", "b": "1F9B8-200D-2642-FE0F", "j": ["man", "male", "superpowers", "superpower", "good", "hero"]}, "woman-superhero": {"a": "woman superhero", "b": "1F9B8-200D-2640-FE0F", "j": ["woman", "superpowers", "good", "superpower", "heroine", "hero", "female"]}, "supervillain": {"a": "supervillain", "b": "1F9B9", "j": ["marvel", "superpower", "criminal", "villain", "evil"]}, "man-supervillain": {"a": "man supervillain", "b": "1F9B9-200D-2642-FE0F", "j": ["man", "male", "superpowers", "superpower", "criminal", "bad", "villain", "evil", "hero"]}, "woman-supervillain": {"a": "woman supervillain", "b": "1F9B9-200D-2640-FE0F", "j": ["woman", "superpowers", "superpower", "criminal", "bad", "heroine", "villain", "evil", "female"]}, "mage": {"a": "mage", "b": "1F9D9", "j": ["magic", "wizard", "sorcerer", "sorceress", "witch"]}, "man-mage": {"a": "man mage", "b": "1F9D9-200D-2642-FE0F", "j": ["man", "male", "wizard", "sorcerer", "mage"]}, "woman-mage": {"a": "woman mage", "b": "1F9D9-200D-2640-FE0F", "j": ["woman", "mage", "sorceress", "witch", "female"]}, "fairy": {"a": "fairy", "b": "1F9DA", "j": ["magical", "Puck", "Titania", "Oberon", "wings"]}, "man-fairy": {"a": "man fairy", "b": "1F9DA-200D-2642-FE0F", "j": ["Puck", "Oberon", "man", "male"]}, "woman-fairy": {"a": "woman fairy", "b": "1F9DA-200D-2640-FE0F", "j": ["Titania", "woman", "female"]}, "vampire": {"a": "vampire", "b": "1F9DB", "j": ["undead", "blood", "twilight", "Dracula"]}, "man-vampire": {"a": "man vampire", "b": "1F9DB-200D-2642-FE0F", "j": ["dracula", "man", "male", "undead", "Dracula"]}, "woman-vampire": {"a": "woman vampire", "b": "1F9DB-200D-2640-FE0F", "j": ["woman", "undead", "female"]}, "merperson": {"a": "merperson", "b": "1F9DC", "j": ["mermaid", "merwoman", "sea", "merman"]}, "merman": {"a": "merman", "b": "1F9DC-200D-2642-FE0F", "j": ["triton", "Triton", "man", "male"]}, "mermaid": {"a": "mermaid", "b": "1F9DC-200D-2640-FE0F", "j": ["woman", "merwoman", "ariel", "female"]}, "elf": {"a": "elf", "b": "1F9DD", "j": ["magical", "LOTR style"]}, "man-elf": {"a": "man elf", "b": "1F9DD-200D-2642-FE0F", "j": ["magical", "man", "male"]}, "woman-elf": {"a": "woman elf", "b": "1F9DD-200D-2640-FE0F", "j": ["woman", "magical", "female"]}, "genie": {"a": "genie", "b": "1F9DE", "j": ["(non-human color)", "magical", "wishes", "djinn"]}, "man-genie": {"a": "man genie", "b": "1F9DE-200D-2642-FE0F", "j": ["male", "man", "djinn"]}, "woman-genie": {"a": "woman genie", "b": "1F9DE-200D-2640-FE0F", "j": ["female", "djinn", "woman"]}, "zombie": {"a": "zombie", "b": "1F9DF", "j": ["undead", "dead", "walking dead", "(non-human color)"]}, "man-zombie": {"a": "man zombie", "b": "1F9DF-200D-2642-FE0F", "j": ["dracula", "man", "male", "undead", "walking dead"]}, "woman-zombie": {"a": "woman zombie", "b": "1F9DF-200D-2640-FE0F", "j": ["woman", "undead", "walking dead", "female"]}, "person-getting-massage": {"a": "person getting massage", "b": "1F486", "j": ["relax", "salon", "massage", "face"]}, "man-getting-massage": {"a": "man getting massage", "b": "1F486-200D-2642-FE0F", "j": ["man", "massage", "male", "boy", "face", "head"]}, "woman-getting-massage": {"a": "woman getting massage", "b": "1F486-200D-2640-FE0F", "j": ["massage", "woman", "girl", "face", "head", "female"]}, "person-getting-haircut": {"a": "person getting haircut", "b": "1F487", "j": ["barber", "haircut", "hairstyle", "beauty", "parlor"]}, "man-getting-haircut": {"a": "man getting haircut", "b": "1F487-200D-2642-FE0F", "j": ["boy", "male", "man", "haircut"]}, "woman-getting-haircut": {"a": "woman getting haircut", "b": "1F487-200D-2640-FE0F", "j": ["woman", "girl", "haircut", "female"]}, "person-walking": {"a": "person walking", "b": "1F6B6", "j": ["move", "walking", "walk", "hike"]}, "man-walking": {"a": "man walking", "b": "1F6B6-200D-2642-FE0F", "j": ["man", "human", "steps", "feet", "hike", "walk"]}, "woman-walking": {"a": "woman walking", "b": "1F6B6-200D-2640-FE0F", "j": ["woman", "human", "steps", "feet", "hike", "walk", "female"]}, "person-standing": {"a": "person standing", "b": "1F9CD", "j": ["stand", "standing", "still"]}, "man-standing": {"a": "man standing", "b": "1F9CD-200D-2642-FE0F", "j": ["standing", "man", "still"]}, "woman-standing": {"a": "woman standing", "b": "1F9CD-200D-2640-FE0F", "j": ["standing", "still", "woman"]}, "person-kneeling": {"a": "person kneeling", "b": "1F9CE", "j": ["respectful", "pray", "kneeling", "kneel"]}, "man-kneeling": {"a": "man kneeling", "b": "1F9CE-200D-2642-FE0F", "j": ["respectful", "pray", "man", "kneeling"]}, "woman-kneeling": {"a": "woman kneeling", "b": "1F9CE-200D-2640-FE0F", "j": ["respectful", "pray", "kneeling", "woman"]}, "person-with-white-cane": {"a": "person with white cane", "b": "1F9D1-200D-1F9AF", "j": ["person_with_probing_cane", "blind", "accessibility"]}, "man-with-white-cane": {"a": "man with white cane", "b": "1F468-200D-1F9AF", "j": ["man", "blind", "accessibility", "man_with_probing_cane"]}, "woman-with-white-cane": {"a": "woman with white cane", "b": "1F469-200D-1F9AF", "j": ["woman_with_probing_cane", "blind", "accessibility", "woman"]}, "person-in-motorized-wheelchair": {"a": "person in motorized wheelchair", "b": "1F9D1-200D-1F9BC", "j": ["wheelchair", "disability", "accessibility"]}, "man-in-motorized-wheelchair": {"a": "man in motorized wheelchair", "b": "1F468-200D-1F9BC", "j": ["wheelchair", "disability", "man", "accessibility"]}, "woman-in-motorized-wheelchair": {"a": "woman in motorized wheelchair", "b": "1F469-200D-1F9BC", "j": ["wheelchair", "disability", "accessibility", "woman"]}, "person-in-manual-wheelchair": {"a": "person in manual wheelchair", "b": "1F9D1-200D-1F9BD", "j": ["wheelchair", "disability", "accessibility"]}, "man-in-manual-wheelchair": {"a": "man in manual wheelchair", "b": "1F468-200D-1F9BD", "j": ["wheelchair", "disability", "man", "accessibility"]}, "woman-in-manual-wheelchair": {"a": "woman in manual wheelchair", "b": "1F469-200D-1F9BD", "j": ["wheelchair", "disability", "accessibility", "woman"]}, "person-running": {"a": "person running", "b": "1F3C3", "j": ["running", "marathon", "move"]}, "man-running": {"a": "man running", "b": "1F3C3-200D-2642-FE0F", "j": ["man", "walking", "racing", "race", "running", "exercise", "marathon"]}, "woman-running": {"a": "woman running", "b": "1F3C3-200D-2640-FE0F", "j": ["woman", "walking", "racing", "race", "running", "exercise", "marathon", "female"]}, "woman-dancing": {"a": "woman dancing", "b": "1F483", "j": ["woman", "girl", "dance", "dancing", "fun", "female"]}, "man-dancing": {"a": "man dancing", "b": "1F57A", "j": ["man", "male", "boy", "dance", "dancing", "fun", "dancer"]}, "person-in-suit-levitating": {"a": "person in suit levitating", "b": "1F574", "j": ["person", "business", "jump", "man_in_suit_levitating", "suit", "hover", "levitate"]}, "people-with-bunny-ears": {"a": "people with bunny ears", "b": "1F46F", "j": ["costume", "partying", "perform", "bunny ear", "dancer"]}, "men-with-bunny-ears": {"a": "men with bunny ears", "b": "1F46F-200D-2642-FE0F", "j": ["boys", "male", "partying", "men", "bunny", "bunny ear", "dancer"]}, "women-with-bunny-ears": {"a": "women with bunny ears", "b": "1F46F-200D-2640-FE0F", "j": ["girls", "dancer", "partying", "bunny", "bunny ear", "women", "female"]}, "person-in-steamy-room": {"a": "person in steamy room", "b": "1F9D6", "j": ["spa", "relax", "hamam", "steambath", "sauna", "steam room"]}, "man-in-steamy-room": {"a": "man in steamy room", "b": "1F9D6-200D-2642-FE0F", "j": ["man", "male", "steamroom", "spa", "sauna", "steam room"]}, "woman-in-steamy-room": {"a": "woman in steamy room", "b": "1F9D6-200D-2640-FE0F", "j": ["woman", "steamroom", "spa", "sauna", "steam room", "female"]}, "person-climbing": {"a": "person climbing", "b": "1F9D7", "j": ["sport", "climber"]}, "man-climbing": {"a": "man climbing", "b": "1F9D7-200D-2642-FE0F", "j": ["man", "hobby", "male", "rock", "sports", "climber"]}, "woman-climbing": {"a": "woman climbing", "b": "1F9D7-200D-2640-FE0F", "j": ["hobby", "woman", "rock", "sports", "climber", "female"]}, "person-fencing": {"a": "person fencing", "b": "1F93A", "j": ["sword", "fencer", "fencing", "sports"]}, "horse-racing": {"a": "horse racing", "b": "1F3C7", "j": ["competition", "racehorse", "jockey", "racing", "gambling", "luck", "horse", "betting", "animal"]}, "skier": {"a": "skier", "b": "26F7", "j": ["sports", "snow", "winter", "ski"]}, "snowboarder": {"a": "snowboarder", "b": "1F3C2", "j": ["snow", "winter", "sports", "ski", "snowboard"]}, "person-golfing": {"a": "person golfing", "b": "1F3CC", "j": ["golf", "sports", "business", "ball"]}, "man-golfing": {"a": "man golfing", "b": "1F3CC-FE0F-200D-2642-FE0F", "j": ["golf", "sport", "man"]}, "woman-golfing": {"a": "woman golfing", "b": "1F3CC-FE0F-200D-2640-FE0F", "j": ["business", "woman", "golf", "sports", "female"]}, "person-surfing": {"a": "person surfing", "b": "1F3C4", "j": ["surfing", "sport", "sea"]}, "man-surfing": {"a": "man surfing", "b": "1F3C4-200D-2642-FE0F", "j": ["man", "surfing", "sea", "sports", "ocean", "summer", "beach"]}, "woman-surfing": {"a": "woman surfing", "b": "1F3C4-200D-2640-FE0F", "j": ["woman", "surfing", "sea", "sports", "ocean", "summer", "beach", "female"]}, "person-rowing-boat": {"a": "person rowing boat", "b": "1F6A3", "j": ["sport", "rowboat", "move", "boat"]}, "man-rowing-boat": {"a": "man rowing boat", "b": "1F6A3-200D-2642-FE0F", "j": ["man", "hobby", "boat", "water", "sports", "ship", "rowboat"]}, "woman-rowing-boat": {"a": "woman rowing boat", "b": "1F6A3-200D-2640-FE0F", "j": ["hobby", "woman", "boat", "water", "sports", "ship", "rowboat", "female"]}, "person-swimming": {"a": "person swimming", "b": "1F3CA", "j": ["sport", "pool", "swim"]}, "man-swimming": {"a": "man swimming", "b": "1F3CA-200D-2642-FE0F", "j": ["swim", "man", "human", "athlete", "water", "sports", "exercise", "summer"]}, "woman-swimming": {"a": "woman swimming", "b": "1F3CA-200D-2640-FE0F", "j": ["swim", "woman", "human", "athlete", "water", "sports", "exercise", "summer", "female"]}, "person-bouncing-ball": {"a": "person bouncing ball", "b": "26F9", "j": ["human", "sports", "ball"]}, "man-bouncing-ball": {"a": "man bouncing ball", "b": "26F9-FE0F-200D-2642-FE0F", "j": ["sport", "man", "ball"]}, "woman-bouncing-ball": {"a": "woman bouncing ball", "b": "26F9-FE0F-200D-2640-FE0F", "j": ["woman", "human", "ball", "sports", "female"]}, "person-lifting-weights": {"a": "person lifting weights", "b": "1F3CB", "j": ["sports", "training", "exercise", "weight", "lifter"]}, "man-lifting-weights": {"a": "man lifting weights", "b": "1F3CB-FE0F-200D-2642-FE0F", "j": ["sport", "weight lifter", "man"]}, "woman-lifting-weights": {"a": "woman lifting weights", "b": "1F3CB-FE0F-200D-2640-FE0F", "j": ["woman", "sports", "exercise", "weight lifter", "training", "female"]}, "person-biking": {"a": "person biking", "b": "1F6B4", "j": ["biking", "sport", "bicycle", "move", "cyclist"]}, "man-biking": {"a": "man biking", "b": "1F6B4-200D-2642-FE0F", "j": ["biking", "man", "hipster", "sports", "exercise", "bicycle", "bike", "cyclist"]}, "woman-biking": {"a": "woman biking", "b": "1F6B4-200D-2640-FE0F", "j": ["biking", "woman", "cyclist", "hipster", "sports", "exercise", "bicycle", "bike", "female"]}, "person-mountain-biking": {"a": "person mountain biking", "b": "1F6B5", "j": ["mountain", "bicyclist", "sport", "bicycle", "bike", "move", "cyclist"]}, "man-mountain-biking": {"a": "man mountain biking", "b": "1F6B5-200D-2642-FE0F", "j": ["mountain", "man", "human", "transportation", "sports", "race", "bicycle", "bike", "cyclist"]}, "woman-mountain-biking": {"a": "woman mountain biking", "b": "1F6B5-200D-2640-FE0F", "j": ["biking", "mountain", "woman", "human", "cyclist", "transportation", "sports", "race", "bicycle", "bike", "female"]}, "person-cartwheeling": {"a": "person cartwheeling", "b": "1F938", "j": ["sport", "cartwheel", "gymnastic", "gymnastics"]}, "man-cartwheeling": {"a": "man cartwheeling", "b": "1F938-200D-2642-FE0F", "j": ["cartwheel", "man", "gymnastics"]}, "woman-cartwheeling": {"a": "woman cartwheeling", "b": "1F938-200D-2640-FE0F", "j": ["cartwheel", "gymnastics", "woman"]}, "people-wrestling": {"a": "people wrestling", "b": "1F93C", "j": ["wrestle", "sport", "wrestler"]}, "men-wrestling": {"a": "men wrestling", "b": "1F93C-200D-2642-FE0F", "j": ["wrestle", "wrestlers", "sports", "men"]}, "women-wrestling": {"a": "women wrestling", "b": "1F93C-200D-2640-FE0F", "j": ["wrestle", "women", "sports", "wrestlers"]}, "person-playing-water-polo": {"a": "person playing water polo", "b": "1F93D", "j": ["sport", "polo", "water"]}, "man-playing-water-polo": {"a": "man playing water polo", "b": "1F93D-200D-2642-FE0F", "j": ["pool", "water polo", "man", "sports"]}, "woman-playing-water-polo": {"a": "woman playing water polo", "b": "1F93D-200D-2640-FE0F", "j": ["woman", "pool", "water polo", "sports"]}, "person-playing-handball": {"a": "person playing handball", "b": "1F93E", "j": ["sport", "handball", "ball"]}, "man-playing-handball": {"a": "man playing handball", "b": "1F93E-200D-2642-FE0F", "j": ["handball", "man", "sports"]}, "woman-playing-handball": {"a": "woman playing handball", "b": "1F93E-200D-2640-FE0F", "j": ["woman", "handball", "sports"]}, "person-juggling": {"a": "person juggling", "b": "1F939", "j": ["performance", "balance", "skill", "multitask", "juggle"]}, "man-juggling": {"a": "man juggling", "b": "1F939-200D-2642-FE0F", "j": ["juggling", "balance", "man", "skill", "multitask", "juggle"]}, "woman-juggling": {"a": "woman juggling", "b": "1F939-200D-2640-FE0F", "j": ["juggling", "balance", "skill", "woman", "multitask", "juggle"]}, "person-in-lotus-position": {"a": "person in lotus position", "b": "1F9D8", "j": ["meditation", "meditate", "serenity", "yoga"]}, "man-in-lotus-position": {"a": "man in lotus position", "b": "1F9D8-200D-2642-FE0F", "j": ["man", "male", "meditation", "mindfulness", "yoga", "zen", "serenity"]}, "woman-in-lotus-position": {"a": "woman in lotus position", "b": "1F9D8-200D-2640-FE0F", "j": ["woman", "meditation", "mindfulness", "yoga", "zen", "serenity", "female"]}, "person-taking-bath": {"a": "person taking bath", "b": "1F6C0", "j": ["bathroom", "bath", "clean", "shower", "bathtub"]}, "person-in-bed": {"a": "person in bed", "b": "1F6CC", "j": ["sleep", "rest", "hotel", "bed"]}, "people-holding-hands": {"a": "people holding hands", "b": "1F9D1-200D-1F91D-200D-1F9D1", "j": ["person", "friendship", "hold", "hand", "holding hands", "couple"]}, "women-holding-hands": {"a": "women holding hands", "b": "1F46D", "j": ["friendship", "people", "love", "like", "human", "hand", "holding hands", "women", "couple", "pair", "female"]}, "woman-and-man-holding-hands": {"a": "woman and man holding hands", "b": "1F46B", "j": ["love", "dating", "like", "woman", "marriage", "human", "hand", "valentines", "affection", "couple", "pair", "date", "people", "man", "hold", "holding hands"]}, "men-holding-hands": {"a": "men holding hands", "b": "1F46C", "j": ["friendship", "people", "love", "man", "twins", "like", "human", "bromance", "holding hands", "zodiac", "Gemini", "men", "couple", "pair"]}, "kiss": {"a": "kiss", "b": "1F48F", "j": ["love", "dating", "like", "marriage", "valentines", "couple", "pair"]}, "kiss-woman-man": {"a": "kiss: woman, man", "b": "1F469-200D-2764-FE0F-200D-1F48B-200D-1F468", "j": ["love", "man", "woman", "kiss", "couple"]}, "kiss-man-man": {"a": "kiss: man, man", "b": "1F468-200D-2764-FE0F-200D-1F48B-200D-1F468", "j": ["love", "man", "like", "dating", "marriage", "valentines", "kiss", "couple", "pair"]}, "kiss-woman-woman": {"a": "kiss: woman, woman", "b": "1F469-200D-2764-FE0F-200D-1F48B-200D-1F469", "j": ["love", "like", "dating", "woman", "marriage", "valentines", "kiss", "couple", "pair"]}, "couple-with-heart": {"a": "couple with heart", "b": "1F491", "j": ["love", "like", "dating", "marriage", "human", "valentines", "affection", "couple", "pair"]}, "couple-with-heart-woman-man": {"a": "couple with heart: woman, man", "b": "1F469-200D-2764-FE0F-200D-1F468", "j": ["love", "man", "woman", "couple with heart", "couple"]}, "couple-with-heart-man-man": {"a": "couple with heart: man, man", "b": "1F468-200D-2764-FE0F-200D-1F468", "j": ["love", "man", "like", "dating", "marriage", "human", "couple with heart", "valentines", "affection", "couple", "pair"]}, "couple-with-heart-woman-woman": {"a": "couple with heart: woman, woman", "b": "1F469-200D-2764-FE0F-200D-1F469", "j": ["love", "like", "dating", "woman", "marriage", "human", "couple with heart", "valentines", "affection", "couple", "pair"]}, "family": {"a": "family", "b": "1F46A", "j": ["people", "mom", "father", "human", "parents", "dad", "home", "child", "mother"]}, "family-man-woman-boy": {"a": "family: man, woman, boy", "b": "1F468-200D-1F469-200D-1F466", "j": ["love", "man", "woman", "boy", "family"]}, "family-man-woman-girl": {"a": "family: man, woman, girl", "b": "1F468-200D-1F469-200D-1F467", "j": ["people", "man", "woman", "human", "girl", "parents", "family", "home", "child"]}, "family-man-woman-girl-boy": {"a": "family: man, woman, girl, boy", "b": "1F468-200D-1F469-200D-1F467-200D-1F466", "j": ["people", "man", "woman", "human", "boy", "girl", "parents", "family", "home", "children"]}, "family-man-woman-boy-boy": {"a": "family: man, woman, boy, boy", "b": "1F468-200D-1F469-200D-1F466-200D-1F466", "j": ["people", "man", "woman", "human", "boy", "parents", "family", "home", "children"]}, "family-man-woman-girl-girl": {"a": "family: man, woman, girl, girl", "b": "1F468-200D-1F469-200D-1F467-200D-1F467", "j": ["people", "man", "woman", "human", "girl", "parents", "family", "home", "children"]}, "family-man-man-boy": {"a": "family: man, man, boy", "b": "1F468-200D-1F468-200D-1F466", "j": ["people", "man", "human", "boy", "parents", "family", "home", "children"]}, "family-man-man-girl": {"a": "family: man, man, girl", "b": "1F468-200D-1F468-200D-1F467", "j": ["people", "man", "human", "girl", "parents", "family", "home", "children"]}, "family-man-man-girl-boy": {"a": "family: man, man, girl, boy", "b": "1F468-200D-1F468-200D-1F467-200D-1F466", "j": ["people", "man", "human", "boy", "girl", "parents", "family", "home", "children"]}, "family-man-man-boy-boy": {"a": "family: man, man, boy, boy", "b": "1F468-200D-1F468-200D-1F466-200D-1F466", "j": ["people", "man", "human", "boy", "parents", "family", "home", "children"]}, "family-man-man-girl-girl": {"a": "family: man, man, girl, girl", "b": "1F468-200D-1F468-200D-1F467-200D-1F467", "j": ["people", "man", "human", "girl", "parents", "family", "home", "children"]}, "family-woman-woman-boy": {"a": "family: woman, woman, boy", "b": "1F469-200D-1F469-200D-1F466", "j": ["people", "woman", "human", "boy", "parents", "family", "home", "children"]}, "family-woman-woman-girl": {"a": "family: woman, woman, girl", "b": "1F469-200D-1F469-200D-1F467", "j": ["people", "woman", "human", "girl", "parents", "family", "home", "children"]}, "family-woman-woman-girl-boy": {"a": "family: woman, woman, girl, boy", "b": "1F469-200D-1F469-200D-1F467-200D-1F466", "j": ["people", "woman", "human", "boy", "girl", "parents", "family", "home", "children"]}, "family-woman-woman-boy-boy": {"a": "family: woman, woman, boy, boy", "b": "1F469-200D-1F469-200D-1F466-200D-1F466", "j": ["people", "woman", "human", "boy", "parents", "family", "home", "children"]}, "family-woman-woman-girl-girl": {"a": "family: woman, woman, girl, girl", "b": "1F469-200D-1F469-200D-1F467-200D-1F467", "j": ["people", "woman", "human", "girl", "parents", "family", "home", "children"]}, "family-man-boy": {"a": "family: man, boy", "b": "1F468-200D-1F466", "j": ["people", "man", "human", "boy", "parent", "family", "home", "child"]}, "family-man-boy-boy": {"a": "family: man, boy, boy", "b": "1F468-200D-1F466-200D-1F466", "j": ["people", "man", "human", "boy", "parent", "family", "home", "children"]}, "family-man-girl": {"a": "family: man, girl", "b": "1F468-200D-1F467", "j": ["people", "man", "human", "girl", "parent", "family", "home", "child"]}, "family-man-girl-boy": {"a": "family: man, girl, boy", "b": "1F468-200D-1F467-200D-1F466", "j": ["people", "man", "human", "boy", "girl", "parent", "family", "home", "children"]}, "family-man-girl-girl": {"a": "family: man, girl, girl", "b": "1F468-200D-1F467-200D-1F467", "j": ["people", "man", "human", "girl", "parent", "family", "home", "children"]}, "family-woman-boy": {"a": "family: woman, boy", "b": "1F469-200D-1F466", "j": ["people", "woman", "human", "boy", "parent", "family", "home", "child"]}, "family-woman-boy-boy": {"a": "family: woman, boy, boy", "b": "1F469-200D-1F466-200D-1F466", "j": ["people", "woman", "human", "boy", "parent", "family", "home", "children"]}, "family-woman-girl": {"a": "family: woman, girl", "b": "1F469-200D-1F467", "j": ["people", "woman", "human", "girl", "parent", "family", "home", "child"]}, "family-woman-girl-boy": {"a": "family: woman, girl, boy", "b": "1F469-200D-1F467-200D-1F466", "j": ["people", "woman", "human", "boy", "girl", "parent", "family", "home", "children"]}, "family-woman-girl-girl": {"a": "family: woman, girl, girl", "b": "1F469-200D-1F467-200D-1F467", "j": ["people", "woman", "human", "girl", "parent", "family", "home", "children"]}, "speaking-head": {"a": "speaking head", "b": "1F5E3", "j": ["person", "talk", "human", "sing", "face", "silhouette", "speak", "say", "speaking", "user", "head"]}, "bust-in-silhouette": {"a": "bust in silhouette", "b": "1F464", "j": ["person", "bust", "human", "silhouette", "user"]}, "busts-in-silhouette": {"a": "busts in silhouette", "b": "1F465", "j": ["team", "bust", "person", "group", "human", "silhouette", "user"]}, "people-hugging": {"a": "people hugging", "b": "1FAC2", "j": ["hug", "hello", "thanks", "goodbye", "care"]}, "footprints": {"a": "footprints", "b": "1F463", "j": ["tracking", "footprint", "walking", "clothing", "feet", "print", "beach"]}, "red-hair": {"a": "red hair", "b": "1F9B0", "j": ["ginger", "red hair", "redhead"]}, "curly-hair": {"a": "curly hair", "b": "1F9B1", "j": ["afro", "curly", "curly hair", "ringlets"]}, "white-hair": {"a": "white hair", "b": "1F9B3", "j": ["gray", "hair", "old", "white"]}, "bald": {"a": "bald", "b": "1F9B2", "j": ["bald", "chemotherapy", "hairless", "no hair", "shaven"]}, "monkey-face": {"a": "monkey face", "b": "1F435", "j": ["monkey", "face", "nature", "circus", "animal"]}, "monkey": {"a": "monkey", "b": "1F412", "j": ["banana", "circus", "animal", "nature"]}, "gorilla": {"a": "gorilla", "b": "1F98D", "j": ["circus", "animal", "nature"]}, "orangutan": {"a": "orangutan", "b": "1F9A7", "j": ["animal", "ape"]}, "dog-face": {"a": "dog face", "b": "1F436", "j": ["puppy", "pet", "dog", "face", "nature", "woof", "faithful", "friend", "animal"]}, "dog": {"a": "dog", "b": "1F415", "j": ["pet", "nature", "faithful", "friend", "doge", "animal"]}, "guide-dog": {"a": "guide dog", "b": "1F9AE", "j": ["guide", "animal", "blind", "accessibility"]}, "service-dog": {"a": "service dog", "b": "1F415-200D-1F9BA", "j": ["animal", "accessibility", "dog", "assistance", "service", "blind"]}, "poodle": {"a": "poodle", "b": "1F429", "j": ["pet", "dog", "nature", "101", "animal"]}, "wolf": {"a": "wolf", "b": "1F43A", "j": ["animal", "wild", "face", "nature"]}, "fox": {"a": "fox", "b": "1F98A", "j": ["animal", "face", "nature"]}, "raccoon": {"a": "raccoon", "b": "1F99D", "j": ["curious", "sly", "animal", "nature"]}, "cat-face": {"a": "cat face", "b": "1F431", "j": ["pet", "meow", "kitten", "face", "nature", "cat", "animal"]}, "cat": {"a": "cat", "b": "1F408", "j": ["meow", "pet", "animal", "cats"]}, "black-cat": {"a": "black cat", "b": "1F408-200D-2B1B", "j": ["unlucky", "superstition", "luck", "cat", "black"]}, "lion": {"a": "lion", "b": "1F981", "j": ["zodiac", "Leo", "face", "nature", "animal"]}, "tiger-face": {"a": "tiger face", "b": "1F42F", "j": ["danger", "tiger", "face", "nature", "wild", "cat", "animal", "roar"]}, "tiger": {"a": "tiger", "b": "1F405", "j": ["roar", "animal", "nature"]}, "leopard": {"a": "leopard", "b": "1F406", "j": ["animal", "nature"]}, "horse-face": {"a": "horse face", "b": "1F434", "j": ["brown", "face", "nature", "horse", "animal"]}, "horse": {"a": "horse", "b": "1F40E", "j": ["equestrian", "gamble", "racing", "luck", "racehorse", "animal"]}, "unicorn": {"a": "unicorn", "b": "1F984", "j": ["mystical", "animal", "face", "nature"]}, "zebra": {"a": "zebra", "b": "1F993", "j": ["nature", "safari", "stripe", "stripes", "animal"]}, "deer": {"a": "deer", "b": "1F98C", "j": ["venison", "animal", "horns", "nature"]}, "bison": {"a": "bison", "b": "1F9AC", "j": ["wisent", "buffalo", "herd", "ox"]}, "cow-face": {"a": "cow face", "b": "1F42E", "j": ["cow", "milk", "beef", "ox", "face", "nature", "moo", "animal"]}, "ox": {"a": "ox", "b": "1F402", "j": ["cow", "Taurus", "beef", "zodiac", "bull", "animal"]}, "water-buffalo": {"a": "water buffalo", "b": "1F403", "j": ["cow", "buffalo", "water", "ox", "nature", "animal"]}, "cow": {"a": "cow", "b": "1F404", "j": ["milk", "beef", "ox", "nature", "moo", "animal"]}, "pig-face": {"a": "pig face", "b": "1F437", "j": ["pig", "face", "nature", "oink", "animal"]}, "pig": {"a": "pig", "b": "1F416", "j": ["nature", "animal", "sow"]}, "boar": {"a": "boar", "b": "1F417", "j": ["animal", "pig", "nature"]}, "pig-nose": {"a": "pig nose", "b": "1F43D", "j": ["pig", "face", "oink", "nose", "animal"]}, "ram": {"a": "ram", "b": "1F40F", "j": ["male", "zodiac", "nature", "sheep", "Aries", "animal"]}, "ewe": {"a": "ewe", "b": "1F411", "j": ["nature", "sheep", "shipit", "wool", "animal", "female"]}, "goat": {"a": "goat", "b": "1F410", "j": ["animal", "Capricorn", "zodiac", "nature"]}, "camel": {"a": "camel", "b": "1F42A", "j": ["hump", "dromedary", "hot", "desert", "animal"]}, "twohump-camel": {"a": "two-hump camel", "b": "1F42B", "j": ["animal", "hump", "bactrian", "hot", "desert", "nature", "camel", "two_hump_camel"]}, "llama": {"a": "llama", "b": "1F999", "j": ["guanaco", "vicuña", "alpaca", "nature", "wool", "animal"]}, "giraffe": {"a": "giraffe", "b": "1F992", "j": ["spots", "animal", "safari", "nature"]}, "elephant": {"a": "elephant", "b": "1F418", "j": ["nature", "nose", "circus", "animal", "th"]}, "mammoth": {"a": "mammoth", "b": "1F9A3", "j": ["large", "woolly", "elephant", "extinction", "tusks", "tusk"]}, "rhinoceros": {"a": "rhinoceros", "b": "1F98F", "j": ["nature", "animal", "horn"]}, "hippopotamus": {"a": "hippopotamus", "b": "1F99B", "j": ["nature", "animal", "hippo"]}, "mouse-face": {"a": "mouse face", "b": "1F42D", "j": ["mouse", "face", "nature", "animal", "cheese_wedge", "rodent"]}, "mouse": {"a": "mouse", "b": "1F401", "j": ["rodent", "animal", "nature"]}, "rat": {"a": "rat", "b": "1F400", "j": ["mouse", "animal", "rodent"]}, "hamster": {"a": "hamster", "b": "1F439", "j": ["pet", "animal", "face", "nature"]}, "rabbit-face": {"a": "rabbit face", "b": "1F430", "j": ["pet", "spring", "face", "nature", "rabbit", "bunny", "animal", "magic"]}, "rabbit": {"a": "rabbit", "b": "1F407", "j": ["pet", "spring", "nature", "bunny", "animal", "magic"]}, "chipmunk": {"a": "chipmunk", "b": "1F43F", "j": ["nature", "animal", "squirrel", "rodent"]}, "beaver": {"a": "beaver", "b": "1F9AB", "j": ["animal", "dam", "rodent"]}, "hedgehog": {"a": "hedgehog", "b": "1F994", "j": ["spiny", "animal", "nature"]}, "bat": {"a": "bat", "b": "1F987", "j": ["blind", "animal", "vampire", "nature"]}, "bear": {"a": "bear", "b": "1F43B", "j": ["animal", "wild", "face", "nature"]}, "polar-bear": {"a": "polar bear", "b": "1F43B-200D-2744-FE0F", "j": ["animal", "white", "arctic", "bear"]}, "koala": {"a": "koala", "b": "1F428", "j": ["bear", "animal", "nature"]}, "panda": {"a": "panda", "b": "1F43C", "j": ["animal", "face", "nature"]}, "sloth": {"a": "sloth", "b": "1F9A5", "j": ["slow", "animal", "lazy"]}, "otter": {"a": "otter", "b": "1F9A6", "j": ["playful", "animal", "fishing"]}, "skunk": {"a": "skunk", "b": "1F9A8", "j": ["stink", "animal"]}, "kangaroo": {"a": "kangaroo", "b": "1F998", "j": ["Australia", "australia", "hop", "joey", "nature", "marsupial", "animal", "jump"]}, "badger": {"a": "badger", "b": "1F9A1", "j": ["nature", "pester", "honey badger", "honey", "animal"]}, "paw-prints": {"a": "paw prints", "b": "1F43E", "j": ["pet", "tracking", "dog", "feet", "paw", "cat", "print", "animal", "footprints"]}, "turkey": {"a": "turkey", "b": "1F983", "j": ["animal", "bird"]}, "chicken": {"a": "chicken", "b": "1F414", "j": ["cluck", "animal", "bird", "nature"]}, "rooster": {"a": "rooster", "b": "1F413", "j": ["chicken", "animal", "bird", "nature"]}, "hatching-chick": {"a": "hatching chick", "b": "1F423", "j": ["born", "hatching", "baby", "bird", "chicken", "chick", "egg", "animal"]}, "baby-chick": {"a": "baby chick", "b": "1F424", "j": ["baby", "bird", "chicken", "chick", "animal"]}, "frontfacing-baby-chick": {"a": "front-facing baby chick", "b": "1F425", "j": ["baby", "bird", "chicken", "front_facing_baby_chick", "chick", "animal"]}, "bird": {"a": "bird", "b": "1F426", "j": ["tweet", "spring", "nature", "fly", "animal"]}, "penguin": {"a": "penguin", "b": "1F427", "j": ["animal", "bird", "nature"]}, "dove": {"a": "dove", "b": "1F54A", "j": ["fly", "animal", "bird", "peace"]}, "eagle": {"a": "eagle", "b": "1F985", "j": ["animal", "bird", "nature"]}, "duck": {"a": "duck", "b": "1F986", "j": ["animal", "bird", "mallard", "nature"]}, "swan": {"a": "swan", "b": "1F9A2", "j": ["ugly duckling", "cygnet", "bird", "nature", "animal"]}, "owl": {"a": "owl", "b": "1F989", "j": ["bird", "wise", "nature", "hoot", "animal"]}, "dodo": {"a": "dodo", "b": "1F9A4", "j": ["large", "bird", "Mauritius", "extinction", "animal"]}, "feather": {"a": "feather", "b": "1FAB6", "j": ["flight", "bird", "plumage", "light", "fly"]}, "flamingo": {"a": "flamingo", "b": "1F9A9", "j": ["tropical", "flamboyant", "animal"]}, "peacock": {"a": "peacock", "b": "1F99A", "j": ["peahen", "bird", "proud", "nature", "ostentatious", "animal"]}, "parrot": {"a": "parrot", "b": "1F99C", "j": ["talk", "pirate", "bird", "nature", "animal"]}, "frog": {"a": "frog", "b": "1F438", "j": ["croak", "face", "toad", "nature", "animal"]}, "crocodile": {"a": "crocodile", "b": "1F40A", "j": ["reptile", "alligator", "nature", "animal", "lizard"]}, "turtle": {"a": "turtle", "b": "1F422", "j": ["slow", "nature", "tortoise", "terrapin", "animal"]}, "lizard": {"a": "lizard", "b": "1F98E", "j": ["reptile", "animal", "nature"]}, "snake": {"a": "snake", "b": "1F40D", "j": ["serpent", "Ophiuchus", "zodiac", "nature", "hiss", "bearer", "evil", "animal", "python"]}, "dragon-face": {"a": "dragon face", "b": "1F432", "j": ["face", "myth", "fairy tale", "nature", "dragon", "chinese", "green", "animal"]}, "dragon": {"a": "dragon", "b": "1F409", "j": ["myth", "nature", "fairy tale", "chinese", "green", "animal"]}, "sauropod": {"a": "sauropod", "b": "1F995", "j": ["diplodocus", "brontosaurus", "nature", "dinosaur", "extinct", "animal", "brachiosaurus"]}, "trex": {"a": "T-Rex", "b": "1F996", "j": ["nature", "Tyrannosaurus Rex", "dinosaur", "t_rex", "tyrannosaurus", "extinct", "animal"]}, "spouting-whale": {"a": "spouting whale", "b": "1F433", "j": ["spouting", "whale", "sea", "face", "nature", "ocean", "animal"]}, "whale": {"a": "whale", "b": "1F40B", "j": ["ocean", "animal", "sea", "nature"]}, "dolphin": {"a": "dolphin", "b": "1F42C", "j": ["sea", "fish", "nature", "flipper", "ocean", "animal", "fins", "beach"]}, "seal": {"a": "seal", "b": "1F9AD", "j": ["sea", "sea lion", "animal", "creature"]}, "fish": {"a": "fish", "b": "1F41F", "j": ["zodiac", "nature", "Pisces", "food", "animal"]}, "tropical-fish": {"a": "tropical fish", "b": "1F420", "j": ["swim", "fish", "ocean", "nemo", "tropical", "animal", "beach"]}, "blowfish": {"a": "blowfish", "b": "1F421", "j": ["sea", "fish", "nature", "ocean", "food", "animal"]}, "shark": {"a": "shark", "b": "1F988", "j": ["jaws", "sea", "fish", "nature", "ocean", "animal", "fins", "beach"]}, "octopus": {"a": "octopus", "b": "1F419", "j": ["sea", "nature", "ocean", "creature", "animal", "beach"]}, "spiral-shell": {"a": "spiral shell", "b": "1F41A", "j": ["sea", "shell", "nature", "spiral", "beach"]}, "snail": {"a": "snail", "b": "1F40C", "j": ["slow", "animal", "shell"]}, "butterfly": {"a": "butterfly", "b": "1F98B", "j": ["caterpillar", "nature", "pretty", "insect", "animal"]}, "bug": {"a": "bug", "b": "1F41B", "j": ["worm", "insect", "animal", "nature"]}, "ant": {"a": "ant", "b": "1F41C", "j": ["bug", "insect", "animal", "nature"]}, "honeybee": {"a": "honeybee", "b": "1F41D", "j": ["spring", "nature", "bug", "bee", "honey", "insect", "animal"]}, "beetle": {"a": "beetle", "b": "1FAB2", "j": ["insect", "bug"]}, "lady-beetle": {"a": "lady beetle", "b": "1F41E", "j": ["beetle", "nature", "ladybird", "ladybug", "insect", "animal"]}, "cricket": {"a": "cricket", "b": "1F997", "j": ["chirp", "animal", "Orthoptera", "grasshopper"]}, "cockroach": {"a": "cockroach", "b": "1FAB3", "j": ["pest", "pests", "insect", "roach"]}, "spider": {"a": "spider", "b": "1F577", "j": ["arachnid", "animal", "insect"]}, "spider-web": {"a": "spider web", "b": "1F578", "j": ["silk", "spider", "arachnid", "insect", "animal", "web"]}, "scorpion": {"a": "scorpion", "b": "1F982", "j": ["Scorpio", "zodiac", "scorpio", "arachnid", "animal"]}, "mosquito": {"a": "mosquito", "b": "1F99F", "j": ["malaria", "pest", "nature", "disease", "fever", "insect", "animal", "virus"]}, "fly": {"a": "fly", "b": "1FAB0", "j": ["pest", "rotting", "disease", "maggot", "insect"]}, "worm": {"a": "worm", "b": "1FAB1", "j": ["earthworm", "animal", "annelid", "parasite"]}, "microbe": {"a": "microbe", "b": "1F9A0", "j": ["bacteria", "germs", "amoeba", "virus"]}, "bouquet": {"a": "bouquet", "b": "1F490", "j": ["flowers", "flower", "spring", "nature"]}, "cherry-blossom": {"a": "cherry blossom", "b": "1F338", "j": ["flower", "spring", "nature", "plant", "cherry", "blossom"]}, "white-flower": {"a": "white flower", "b": "1F4AE", "j": ["flower", "japanese", "spring"]}, "rosette": {"a": "rosette", "b": "1F3F5", "j": ["military", "plant", "decoration", "flower"]}, "rose": {"a": "rose", "b": "1F339", "j": ["flower", "love", "spring", "valentines", "flowers"]}, "wilted-flower": {"a": "wilted flower", "b": "1F940", "j": ["flower", "plant", "wilted", "nature"]}, "hibiscus": {"a": "hibiscus", "b": "1F33A", "j": ["flower", "plant", "flowers", "vegetable", "beach"]}, "sunflower": {"a": "sunflower", "b": "1F33B", "j": ["sun", "flower", "nature", "fall", "plant"]}, "blossom": {"a": "blossom", "b": "1F33C", "j": ["flowers", "flower", "yellow", "nature"]}, "tulip": {"a": "tulip", "b": "1F337", "j": ["flower", "spring", "nature", "plant", "summer", "flowers"]}, "seedling": {"a": "seedling", "b": "1F331", "j": ["spring", "young", "lawn", "nature", "plant", "grass"]}, "potted-plant": {"a": "potted plant", "b": "1FAB4", "j": ["house", "nurturing", "greenery", "grow", "plant", "useless", "boring"]}, "evergreen-tree": {"a": "evergreen tree", "b": "1F332", "j": ["tree", "plant", "nature"]}, "deciduous-tree": {"a": "deciduous tree", "b": "1F333", "j": ["shedding", "deciduous", "nature", "plant", "tree"]}, "palm-tree": {"a": "palm tree", "b": "1F334", "j": ["nature", "plant", "tree", "mojito", "summer", "tropical", "vegetable", "palm", "beach"]}, "cactus": {"a": "cactus", "b": "1F335", "j": ["plant", "vegetable", "nature"]}, "sheaf-of-rice": {"a": "sheaf of rice", "b": "1F33E", "j": ["rice", "grain", "nature", "ear", "plant"]}, "herb": {"a": "herb", "b": "1F33F", "j": ["weed", "leaf", "lawn", "medicine", "plant", "vegetable", "grass"]}, "shamrock": {"a": "shamrock", "b": "2618", "j": ["clover", "nature", "plant", "irish", "vegetable"]}, "four-leaf-clover": {"a": "four leaf clover", "b": "1F340", "j": ["four-leaf clover", "leaf", "lucky", "four", "clover", "nature", "plant", "4", "irish", "vegetable"]}, "maple-leaf": {"a": "maple leaf", "b": "1F341", "j": ["leaf", "maple", "ca", "nature", "fall", "plant", "falling", "vegetable"]}, "fallen-leaf": {"a": "fallen leaf", "b": "1F342", "j": ["leaf", "nature", "plant", "falling", "leaves", "vegetable"]}, "leaf-fluttering-in-wind": {"a": "leaf fluttering in wind", "b": "1F343", "j": ["flutter", "leaf", "spring", "lawn", "blow", "nature", "plant", "tree", "vegetable", "wind", "grass"]}, "grapes": {"a": "grapes", "b": "1F347", "j": ["wine", "grape", "food", "fruit"]}, "melon": {"a": "melon", "b": "1F348", "j": ["nature", "food", "fruit"]}, "watermelon": {"a": "watermelon", "b": "1F349", "j": ["fruit", "food", "picnic", "summer"]}, "tangerine": {"a": "tangerine", "b": "1F34A", "j": ["fruit", "food", "orange", "nature"]}, "lemon": {"a": "lemon", "b": "1F34B", "j": ["citrus", "nature", "fruit"]}, "banana": {"a": "banana", "b": "1F34C", "j": ["monkey", "food", "fruit"]}, "pineapple": {"a": "pineapple", "b": "1F34D", "j": ["nature", "food", "fruit"]}, "mango": {"a": "mango", "b": "1F96D", "j": ["tropical", "food", "fruit"]}, "red-apple": {"a": "red apple", "b": "1F34E", "j": ["apple", "fruit", "school", "mac", "red"]}, "green-apple": {"a": "green apple", "b": "1F34F", "j": ["fruit", "apple", "green", "nature"]}, "pear": {"a": "pear", "b": "1F350", "j": ["nature", "food", "fruit"]}, "peach": {"a": "peach", "b": "1F351", "j": ["nature", "food", "fruit"]}, "cherries": {"a": "cherries", "b": "1F352", "j": ["fruit", "red", "cherry", "food", "berries"]}, "strawberry": {"a": "strawberry", "b": "1F353", "j": ["fruit", "food", "berry", "nature"]}, "blueberries": {"a": "blueberries", "b": "1FAD0", "j": ["blue", "blueberry", "berry", "bilberry", "fruit"]}, "kiwi-fruit": {"a": "kiwi fruit", "b": "1F95D", "j": ["kiwi", "food", "fruit"]}, "tomato": {"a": "tomato", "b": "1F345", "j": ["fruit", "food", "vegetable", "nature"]}, "olive": {"a": "olive", "b": "1FAD2", "j": ["food", "fruit"]}, "coconut": {"a": "coconut", "b": "1F965", "j": ["fruit", "piña colada", "nature", "food", "palm"]}, "avocado": {"a": "avocado", "b": "1F951", "j": ["food", "fruit"]}, "eggplant": {"a": "eggplant", "b": "1F346", "j": ["aubergine", "food", "vegetable", "nature"]}, "potato": {"a": "potato", "b": "1F954", "j": ["tuber", "starch", "vegatable", "food", "vegetable"]}, "carrot": {"a": "carrot", "b": "1F955", "j": ["food", "vegetable", "orange"]}, "ear-of-corn": {"a": "ear of corn", "b": "1F33D", "j": ["corn", "maze", "ear", "food", "plant", "maize", "vegetable"]}, "hot-pepper": {"a": "hot pepper", "b": "1F336", "j": ["chili", "hot", "spicy", "pepper", "food", "chilli"]}, "bell-pepper": {"a": "bell pepper", "b": "1FAD1", "j": ["fruit", "pepper", "capsicum", "plant", "vegetable"]}, "cucumber": {"a": "cucumber", "b": "1F952", "j": ["pickle", "food", "vegetable", "fruit"]}, "leafy-green": {"a": "leafy green", "b": "1F96C", "j": ["cabbage", "kale", "bok choy", "plant", "food", "lettuce", "vegetable"]}, "broccoli": {"a": "broccoli", "b": "1F966", "j": ["wild cabbage", "food", "vegetable", "fruit"]}, "garlic": {"a": "garlic", "b": "1F9C4", "j": ["cook", "food", "flavoring", "spice"]}, "onion": {"a": "onion", "b": "1F9C5", "j": ["cook", "food", "flavoring", "spice"]}, "mushroom": {"a": "mushroom", "b": "1F344", "j": ["plant", "vegetable", "toadstool"]}, "peanuts": {"a": "peanuts", "b": "1F95C", "j": ["nut", "food", "vegetable", "peanut"]}, "chestnut": {"a": "chestnut", "b": "1F330", "j": ["plant", "food", "squirrel"]}, "bread": {"a": "bread", "b": "1F35E", "j": ["loaf", "toast", "breakfast", "food", "wheat"]}, "croissant": {"a": "croissant", "b": "1F950", "j": ["french", "bread", "breakfast", "food", "roll"]}, "baguette-bread": {"a": "baguette bread", "b": "1F956", "j": ["french", "baguette", "food", "bread"]}, "flatbread": {"a": "flatbread", "b": "1FAD3", "j": ["arepa", "lavash", "naan", "pita", "food", "flour"]}, "pretzel": {"a": "pretzel", "b": "1F968", "j": ["convoluted", "food", "bread", "twisted"]}, "bagel": {"a": "bagel", "b": "1F96F", "j": ["bread", "bakery", "breakfast", "food", "schmear"]}, "pancakes": {"a": "pancakes", "b": "1F95E", "j": ["hotcakes", "hotcake", "pancake", "flapjacks", "breakfast", "food", "crêpe"]}, "waffle": {"a": "waffle", "b": "1F9C7", "j": ["iron", "food", "breakfast", "indecisive"]}, "cheese-wedge": {"a": "cheese wedge", "b": "1F9C0", "j": ["chadder", "food", "cheese"]}, "meat-on-bone": {"a": "meat on bone", "b": "1F356", "j": ["drumstick", "bone", "good", "meat", "food"]}, "poultry-leg": {"a": "poultry leg", "b": "1F357", "j": ["leg", "drumstick", "bone", "poultry", "bird", "meat", "chicken", "food", "turkey"]}, "cut-of-meat": {"a": "cut of meat", "b": "1F969", "j": ["cow", "steak", "meat", "food", "lambchop", "chop", "porkchop", "cut"]}, "bacon": {"a": "bacon", "b": "1F953", "j": ["pig", "meat", "breakfast", "food", "pork"]}, "hamburger": {"a": "hamburger", "b": "1F354", "j": ["burger king", "fast food", "beef", "meat", "burger", "mcdonalds", "cheeseburger"]}, "french-fries": {"a": "french fries", "b": "1F35F", "j": ["fries", "fast food", "french", "chips", "snack"]}, "pizza": {"a": "pizza", "b": "1F355", "j": ["food", "cheese", "party", "slice"]}, "hot-dog": {"a": "hot dog", "b": "1F32D", "j": ["food", "hotdog", "sausage", "frankfurter"]}, "sandwich": {"a": "sandwich", "b": "1F96A", "j": ["lunch", "food", "bread"]}, "taco": {"a": "taco", "b": "1F32E", "j": ["food", "mexican"]}, "burrito": {"a": "burrito", "b": "1F32F", "j": ["food", "mexican", "wrap"]}, "tamale": {"a": "tamale", "b": "1FAD4", "j": ["masa", "food", "wrapped", "mexican"]}, "stuffed-flatbread": {"a": "stuffed flatbread", "b": "1F959", "j": ["kebab", "flatbread", "food", "stuffed", "gyro", "falafel"]}, "falafel": {"a": "falafel", "b": "1F9C6", "j": ["chickpea", "food", "meatball"]}, "egg": {"a": "egg", "b": "1F95A", "j": ["breakfast", "food", "chicken"]}, "cooking": {"a": "cooking", "b": "1F373", "j": ["breakfast", "food", "frying", "kitchen", "egg", "pan"]}, "shallow-pan-of-food": {"a": "shallow pan of food", "b": "1F958", "j": ["cooking", "shallow", "paella", "food", "pan", "casserole"]}, "pot-of-food": {"a": "pot of food", "b": "1F372", "j": ["pot", "stew", "soup", "meat", "food"]}, "fondue": {"a": "fondue", "b": "1FAD5", "j": ["pot", "melted", "cheese", "chocolate", "food", "Swiss"]}, "bowl-with-spoon": {"a": "bowl with spoon", "b": "1F963", "j": ["porridge", "breakfast", "food", "cereal", "congee", "oatmeal"]}, "green-salad": {"a": "green salad", "b": "1F957", "j": ["salad", "healthy", "food", "green", "lettuce"]}, "popcorn": {"a": "popcorn", "b": "1F37F", "j": ["snack", "food", "films", "movie theater"]}, "butter": {"a": "butter", "b": "1F9C8", "j": ["cook", "food", "dairy"]}, "salt": {"a": "salt", "b": "1F9C2", "j": ["shaker", "condiment"]}, "canned-food": {"a": "canned food", "b": "1F96B", "j": ["soup", "food", "can"]}, "bento-box": {"a": "bento box", "b": "1F371", "j": ["food", "box", "japanese", "bento"]}, "rice-cracker": {"a": "rice cracker", "b": "1F358", "j": ["rice", "food", "japanese", "cracker"]}, "rice-ball": {"a": "rice ball", "b": "1F359", "j": ["rice", "Japanese", "japanese", "ball", "food"]}, "cooked-rice": {"a": "cooked rice", "b": "1F35A", "j": ["china", "rice", "asian", "food", "cooked"]}, "curry-rice": {"a": "curry rice", "b": "1F35B", "j": ["curry", "rice", "hot", "spicy", "food", "indian"]}, "steaming-bowl": {"a": "steaming bowl", "b": "1F35C", "j": ["bowl", "japanese", "steaming", "food", "noodle", "ramen", "chopsticks"]}, "spaghetti": {"a": "spaghetti", "b": "1F35D", "j": ["italian", "food", "noodle", "pasta"]}, "roasted-sweet-potato": {"a": "roasted sweet potato", "b": "1F360", "j": ["roasted", "potato", "nature", "sweet", "food"]}, "oden": {"a": "oden", "b": "1F362", "j": ["stick", "kebab", "skewer", "japanese", "food", "seafood"]}, "sushi": {"a": "sushi", "b": "1F363", "j": ["rice", "food", "japanese", "fish"]}, "fried-shrimp": {"a": "fried shrimp", "b": "1F364", "j": ["prawn", "shrimp", "appetizer", "fried", "tempura", "food", "summer", "animal"]}, "fish-cake-with-swirl": {"a": "fish cake with swirl", "b": "1F365", "j": ["beach", "pink", "narutomaki", "sea", "fish", "surimi", "pastry", "cake", "food", "ramen", "swirl", "kamaboko", "japan"]}, "moon-cake": {"a": "moon cake", "b": "1F96E", "j": ["food", "yuèbǐng", "festival", "autumn"]}, "dango": {"a": "dango", "b": "1F361", "j": ["stick", "dessert", "Japanese", "japanese", "meat", "sweet", "barbecue", "food", "skewer"]}, "dumpling": {"a": "dumpling", "b": "1F95F", "j": ["jiaozi", "food", "pierogi", "empanada", "gyōza", "potsticker"]}, "fortune-cookie": {"a": "fortune cookie", "b": "1F960", "j": ["food", "prophecy"]}, "takeout-box": {"a": "takeout box", "b": "1F961", "j": ["oyster pail", "leftovers", "food"]}, "crab": {"a": "crab", "b": "1F980", "j": ["crustacean", "animal", "zodiac", "Cancer"]}, "lobster": {"a": "lobster", "b": "1F99E", "j": ["claws", "bisque", "nature", "animal", "seafood"]}, "shrimp": {"a": "shrimp", "b": "1F990", "j": ["shellfish", "nature", "ocean", "food", "small", "animal", "seafood"]}, "squid": {"a": "squid", "b": "1F991", "j": ["sea", "nature", "ocean", "food", "animal", "molusc"]}, "oyster": {"a": "oyster", "b": "1F9AA", "j": ["food", "pearl", "diving"]}, "soft-ice-cream": {"a": "soft ice cream", "b": "1F366", "j": ["hot", "dessert", "ice", "soft", "icecream", "sweet", "food", "summer", "cream"]}, "shaved-ice": {"a": "shaved ice", "b": "1F367", "j": ["hot", "dessert", "ice", "sweet", "summer", "shaved"]}, "ice-cream": {"a": "ice cream", "b": "1F368", "j": ["hot", "dessert", "ice", "sweet", "food", "cream"]}, "doughnut": {"a": "doughnut", "b": "1F369", "j": ["dessert", "sweet", "breakfast", "food", "snack", "donut"]}, "cookie": {"a": "cookie", "b": "1F36A", "j": ["dessert", "sweet", "chocolate", "food", "snack", "oreo"]}, "birthday-cake": {"a": "birthday cake", "b": "1F382", "j": ["birthday", "dessert", "pastry", "celebration", "sweet", "cake", "food"]}, "shortcake": {"a": "shortcake", "b": "1F370", "j": ["dessert", "pastry", "sweet", "cake", "food", "slice"]}, "cupcake": {"a": "cupcake", "b": "1F9C1", "j": ["sweet", "bakery", "dessert", "food"]}, "pie": {"a": "pie", "b": "1F967", "j": ["fruit", "dessert", "meat", "filling", "pastry", "food"]}, "chocolate-bar": {"a": "chocolate bar", "b": "1F36B", "j": ["dessert", "bar", "sweet", "chocolate", "food", "snack"]}, "candy": {"a": "candy", "b": "1F36C", "j": ["sweet", "snack", "dessert", "lolly"]}, "lollipop": {"a": "lollipop", "b": "1F36D", "j": ["dessert", "sweet", "candy", "food", "snack"]}, "custard": {"a": "custard", "b": "1F36E", "j": ["sweet", "dessert", "food", "pudding"]}, "honey-pot": {"a": "honey pot", "b": "1F36F", "j": ["pot", "kitchen", "bees", "sweet", "honeypot", "honey"]}, "baby-bottle": {"a": "baby bottle", "b": "1F37C", "j": ["milk", "drink", "bottle", "baby", "food", "container"]}, "glass-of-milk": {"a": "glass of milk", "b": "1F95B", "j": ["cow", "milk", "drink", "beverage", "glass"]}, "hot-beverage": {"a": "hot beverage", "b": "2615", "j": ["hot", "beverage", "drink", "steaming", "coffee", "caffeine", "tea", "latte", "espresso"]}, "teapot": {"a": "teapot", "b": "1FAD6", "j": ["hot", "pot", "drink", "tea"]}, "teacup-without-handle": {"a": "teacup without handle", "b": "1F375", "j": ["bowl", "cup", "british", "beverage", "teacup", "drink", "breakfast", "tea", "green"]}, "sake": {"a": "sake", "b": "1F376", "j": ["cup", "wine", "beverage", "drink", "drunk", "bottle", "bar", "japanese", "alcohol", "booze"]}, "bottle-with-popping-cork": {"a": "bottle with popping cork", "b": "1F37E", "j": ["wine", "drink", "bottle", "bar", "celebration", "popping", "cork"]}, "wine-glass": {"a": "wine glass", "b": "1F377", "j": ["wine", "beverage", "drink", "drunk", "alcohol", "bar", "booze", "glass"]}, "cocktail-glass": {"a": "cocktail glass", "b": "1F378", "j": ["drink", "alcohol", "drunk", "beverage", "bar", "cocktail", "mojito", "booze", "glass"]}, "tropical-drink": {"a": "tropical drink", "b": "1F379", "j": ["drink", "beverage", "alcohol", "bar", "cocktail", "mojito", "summer", "tropical", "booze", "beach"]}, "beer-mug": {"a": "beer mug", "b": "1F37A", "j": ["pub", "drink", "beverage", "drunk", "alcohol", "bar", "relax", "mug", "party", "summer", "booze", "beer"]}, "clinking-beer-mugs": {"a": "clinking beer mugs", "b": "1F37B", "j": ["pub", "drink", "beverage", "drunk", "alcohol", "clink", "bar", "relax", "mug", "party", "summer", "booze", "beer"]}, "clinking-glasses": {"a": "clinking glasses", "b": "1F942", "j": ["cheers", "toast", "champagne", "wine", "drink", "beverage", "alcohol", "clink", "party", "glass", "celebrate"]}, "tumbler-glass": {"a": "tumbler glass", "b": "1F943", "j": ["bourbon", "shot", "drink", "beverage", "drunk", "alcohol", "scotch", "liquor", "tumbler", "whisky", "booze", "glass"]}, "cup-with-straw": {"a": "cup with straw", "b": "1F964", "j": ["malt", "drink", "water", "soft drink", "soda", "juice"]}, "bubble-tea": {"a": "bubble tea", "b": "1F9CB", "j": ["bubble", "boba", "tea", "milk", "pearl", "straw", "milk tea", "taiwan"]}, "beverage-box": {"a": "beverage box", "b": "1F9C3", "j": ["beverage", "drink", "sweet", "straw", "juice", "box"]}, "mate": {"a": "mate", "b": "1F9C9", "j": ["drink", "beverage", "tea"]}, "ice": {"a": "ice", "b": "1F9CA", "j": ["iceberg", "cold", "ice cube", "water"]}, "chopsticks": {"a": "chopsticks", "b": "1F962", "j": ["food", "jeotgarak", "kuaizi", "hashi"]}, "fork-and-knife-with-plate": {"a": "fork and knife with plate", "b": "1F37D", "j": ["meal", "plate", "dinner", "knife", "eat", "lunch", "cooking", "food", "restaurant", "fork"]}, "fork-and-knife": {"a": "fork and knife", "b": "1F374", "j": ["knife", "cutlery", "cooking", "kitchen", "fork"]}, "spoon": {"a": "spoon", "b": "1F944", "j": ["kitchen", "tableware", "cutlery"]}, "kitchen-knife": {"a": "kitchen knife", "b": "1F52A", "j": ["hocho", "knife", "cutlery", "cooking", "weapon", "blade", "kitchen", "tool"]}, "amphora": {"a": "amphora", "b": "1F3FA", "j": ["Aquarius", "jar", "drink", "cooking", "zodiac", "vase", "jug"]}, "globe-showing-europeafrica": {"a": "globe showing Europe-Africa", "b": "1F30D", "j": ["Africa", "globe", "earth", "international", "Europe", "globe_showing_europe_africa", "world"]}, "globe-showing-americas": {"a": "globe showing Americas", "b": "1F30E", "j": ["globe", "earth", "international", "USA", "Americas", "world"]}, "globe-showing-asiaaustralia": {"a": "globe showing Asia-Australia", "b": "1F30F", "j": ["Asia", "globe", "earth", "globe_showing_asia_australia", "east", "Australia", "international", "world"]}, "globe-with-meridians": {"a": "globe with meridians", "b": "1F310", "j": ["meridians", "globe", "earth", "i18n", "international", "world", "internet", "interweb"]}, "world-map": {"a": "world map", "b": "1F5FA", "j": ["map", "location", "world", "direction"]}, "map-of-japan": {"a": "map of Japan", "b": "1F5FE", "j": ["asia", "map", "japanese", "country", "nation", "Japan"]}, "compass": {"a": "compass", "b": "1F9ED", "j": ["orienteering", "navigation", "magnetic"]}, "snowcapped-mountain": {"a": "snow-capped mountain", "b": "1F3D4", "j": ["snow", "mountain", "environment", "cold", "winter", "nature", "photo", "snow_capped_mountain"]}, "mountain": {"a": "mountain", "b": "26F0", "j": ["environment", "photo", "nature"]}, "volcano": {"a": "volcano", "b": "1F30B", "j": ["mountain", "eruption", "disaster", "nature", "photo"]}, "mount-fuji": {"a": "mount fuji", "b": "1F5FB", "j": ["fuji", "mountain", "japanese", "nature", "photo"]}, "camping": {"a": "camping", "b": "1F3D5", "j": ["outdoors", "photo", "tent"]}, "beach-with-umbrella": {"a": "beach with umbrella", "b": "1F3D6", "j": ["sand", "weather", "umbrella", "mojito", "summer", "sunny", "beach"]}, "desert": {"a": "desert", "b": "1F3DC", "j": ["warm", "saharah", "photo"]}, "desert-island": {"a": "desert island", "b": "1F3DD", "j": ["desert", "photo", "mojito", "tropical", "island"]}, "national-park": {"a": "national park", "b": "1F3DE", "j": ["environment", "park", "photo", "nature"]}, "stadium": {"a": "stadium", "b": "1F3DF", "j": ["venue", "sports", "place", "photo", "concert"]}, "classical-building": {"a": "classical building", "b": "1F3DB", "j": ["classical", "history", "culture", "art"]}, "building-construction": {"a": "building construction", "b": "1F3D7", "j": ["progress", "working", "wip", "construction"]}, "brick": {"a": "brick", "b": "1F9F1", "j": ["bricks", "wall", "clay", "mortar"]}, "rock": {"a": "rock", "b": "1FAA8", "j": ["stone", "heavy", "boulder", "solid"]}, "wood": {"a": "wood", "b": "1FAB5", "j": ["timber", "trunk", "log", "lumber", "nature"]}, "hut": {"a": "hut", "b": "1F6D6", "j": ["house", "structure", "yurt", "roundhouse"]}, "houses": {"a": "houses", "b": "1F3D8", "j": ["photo", "buildings"]}, "derelict-house": {"a": "derelict house", "b": "1F3DA", "j": ["abandon", "house", "broken", "building", "derelict", "evict"]}, "house": {"a": "house", "b": "1F3E0", "j": ["building", "home"]}, "house-with-garden": {"a": "house with garden", "b": "1F3E1", "j": ["garden", "house", "nature", "plant", "home"]}, "office-building": {"a": "office building", "b": "1F3E2", "j": ["bureau", "work", "building"]}, "japanese-post-office": {"a": "Japanese post office", "b": "1F3E3", "j": ["envelope", "communication", "Japanese", "building", "post"]}, "post-office": {"a": "post office", "b": "1F3E4", "j": ["email", "post", "European", "building"]}, "hospital": {"a": "hospital", "b": "1F3E5", "j": ["surgery", "building", "doctor", "medicine", "health"]}, "bank": {"a": "bank", "b": "1F3E6", "j": ["cash", "business", "building", "enterprise", "money", "sales"]}, "hotel": {"a": "hotel", "b": "1F3E8", "j": ["checkin", "accomodation", "building"]}, "love-hotel": {"a": "love hotel", "b": "1F3E9", "j": ["like", "dating", "love", "affection", "hotel"]}, "convenience-store": {"a": "convenience store", "b": "1F3EA", "j": ["shopping", "groceries", "building", "store", "convenience"]}, "school": {"a": "school", "b": "1F3EB", "j": ["learn", "building", "education", "student", "teach"]}, "department-store": {"a": "department store", "b": "1F3EC", "j": ["shopping", "department", "mall", "building", "store"]}, "factory": {"a": "factory", "b": "1F3ED", "j": ["smoke", "pollution", "building", "industry"]}, "japanese-castle": {"a": "Japanese castle", "b": "1F3EF", "j": ["castle", "Japanese", "photo", "building"]}, "castle": {"a": "castle", "b": "1F3F0", "j": ["history", "royalty", "European", "building"]}, "wedding": {"a": "wedding", "b": "1F492", "j": ["love", "like", "marriage", "bride", "groom", "romance", "chapel", "affection", "couple"]}, "tokyo-tower": {"a": "Tokyo tower", "b": "1F5FC", "j": ["japanese", "photo", "Tokyo", "tower"]}, "statue-of-liberty": {"a": "Statue of Liberty", "b": "1F5FD", "j": ["newyork", "liberty", "statue", "american"]}, "church": {"a": "church", "b": "26EA", "j": ["cross", "Christian", "building", "christ", "religion"]}, "mosque": {"a": "mosque", "b": "1F54C", "j": ["minaret", "worship", "islam", "Muslim", "religion"]}, "hindu-temple": {"a": "hindu temple", "b": "1F6D5", "j": ["hindu", "temple", "religion"]}, "synagogue": {"a": "synagogue", "b": "1F54D", "j": ["jewish", "Jew", "worship", "Jewish", "judaism", "temple", "religion"]}, "shinto-shrine": {"a": "shinto shrine", "b": "26E9", "j": ["kyoto", "shinto", "temple", "religion", "shrine", "japan"]}, "kaaba": {"a": "kaaba", "b": "1F54B", "j": ["mecca", "mosque", "islam", "Muslim", "religion"]}, "fountain": {"a": "fountain", "b": "26F2", "j": ["fresh", "photo", "summer", "water"]}, "tent": {"a": "tent", "b": "26FA", "j": ["photo", "outdoors", "camping"]}, "foggy": {"a": "foggy", "b": "1F301", "j": ["fog", "mountain", "photo"]}, "night-with-stars": {"a": "night with stars", "b": "1F303", "j": ["night", "downtown", "evening", "star", "city"]}, "cityscape": {"a": "cityscape", "b": "1F3D9", "j": ["night life", "urban", "city", "photo"]}, "sunrise-over-mountains": {"a": "sunrise over mountains", "b": "1F304", "j": ["sun", "sunrise", "mountain", "vacation", "morning", "view", "photo"]}, "sunrise": {"a": "sunrise", "b": "1F305", "j": ["sun", "vacation", "morning", "photo", "view"]}, "cityscape-at-dusk": {"a": "cityscape at dusk", "b": "1F306", "j": ["evening", "sunset", "city", "landscape", "sky", "dusk", "photo", "buildings"]}, "sunset": {"a": "sunset", "b": "1F307", "j": ["sun", "good morning", "dawn", "dusk", "photo"]}, "bridge-at-night": {"a": "bridge at night", "b": "1F309", "j": ["night", "sanfrancisco", "photo", "bridge"]}, "hot-springs": {"a": "hot springs", "b": "2668", "j": ["bath", "springs", "hot", "steaming", "relax", "warm", "hotsprings"]}, "carousel-horse": {"a": "carousel horse", "b": "1F3A0", "j": ["carnival", "carousel", "photo", "horse"]}, "ferris-wheel": {"a": "ferris wheel", "b": "1F3A1", "j": ["wheel", "carnival", "photo", "londoneye", "ferris", "amusement park"]}, "roller-coaster": {"a": "roller coaster", "b": "1F3A2", "j": ["coaster", "playground", "carnival", "photo", "fun", "roller", "amusement park"]}, "barber-pole": {"a": "barber pole", "b": "1F488", "j": ["salon", "hair", "style", "barber", "pole", "haircut"]}, "circus-tent": {"a": "circus tent", "b": "1F3AA", "j": ["festival", "carnival", "tent", "party", "circus"]}, "locomotive": {"a": "locomotive", "b": "1F682", "j": ["railway", "vehicle", "transportation", "engine", "train", "steam"]}, "railway-car": {"a": "railway car", "b": "1F683", "j": ["railway", "vehicle", "electric", "transportation", "tram", "trolleybus", "train", "car"]}, "highspeed-train": {"a": "high-speed train", "b": "1F684", "j": ["railway", "vehicle", "transportation", "speed", "high_speed_train", "train", "shinkansen"]}, "bullet-train": {"a": "bullet train", "b": "1F685", "j": ["railway", "vehicle", "bullet", "transportation", "fast", "speed", "travel", "shinkansen", "train", "public"]}, "train": {"a": "train", "b": "1F686", "j": ["railway", "vehicle", "transportation"]}, "metro": {"a": "metro", "b": "1F687", "j": ["subway", "transportation", "mrt", "blue-square", "underground", "tube"]}, "light-rail": {"a": "light rail", "b": "1F688", "j": ["railway", "vehicle", "transportation"]}, "station": {"a": "station", "b": "1F689", "j": ["railway", "vehicle", "transportation", "train", "public"]}, "tram": {"a": "tram", "b": "1F68A", "j": ["vehicle", "transportation", "trolleybus"]}, "monorail": {"a": "monorail", "b": "1F69D", "j": ["vehicle", "transportation"]}, "mountain-railway": {"a": "mountain railway", "b": "1F69E", "j": ["railway", "vehicle", "mountain", "transportation", "car"]}, "tram-car": {"a": "tram car", "b": "1F68B", "j": ["vehicle", "car", "transportation", "carriage", "trolleybus", "tram", "travel", "public"]}, "bus": {"a": "bus", "b": "1F68C", "j": ["vehicle", "transportation", "car"]}, "oncoming-bus": {"a": "oncoming bus", "b": "1F68D", "j": ["transportation", "vehicle", "oncoming", "bus"]}, "trolleybus": {"a": "trolleybus", "b": "1F68E", "j": ["vehicle", "bus", "transportation", "tram", "trolley", "bart"]}, "minibus": {"a": "minibus", "b": "1F690", "j": ["bus", "vehicle", "transportation", "car"]}, "ambulance": {"a": "ambulance", "b": "1F691", "j": ["hospital", "vehicle", "911", "health"]}, "fire-engine": {"a": "fire engine", "b": "1F692", "j": ["vehicle", "truck", "transportation", "engine", "cars", "fire"]}, "police-car": {"a": "police car", "b": "1F693", "j": ["vehicle", "police", "law", "transportation", "enforcement", "cars", "legal", "patrol", "car"]}, "oncoming-police-car": {"a": "oncoming police car", "b": "1F694", "j": ["vehicle", "police", "law", "oncoming", "enforcement", "911", "legal", "car"]}, "taxi": {"a": "taxi", "b": "1F695", "j": ["vehicle", "transportation", "cars", "uber"]}, "oncoming-taxi": {"a": "oncoming taxi", "b": "1F696", "j": ["vehicle", "oncoming", "cars", "uber", "taxi"]}, "automobile": {"a": "automobile", "b": "1F697", "j": ["vehicle", "transportation", "car", "red"]}, "oncoming-automobile": {"a": "oncoming automobile", "b": "1F698", "j": ["vehicle", "oncoming", "transportation", "automobile", "car"]}, "sport-utility-vehicle": {"a": "sport utility vehicle", "b": "1F699", "j": ["recreational", "vehicle", "sport utility", "transportation"]}, "pickup-truck": {"a": "pickup truck", "b": "1F6FB", "j": ["truck", "transportation", "pick-up", "pickup", "car"]}, "delivery-truck": {"a": "delivery truck", "b": "1F69A", "j": ["delivery", "transportation", "truck", "cars"]}, "articulated-lorry": {"a": "articulated lorry", "b": "1F69B", "j": ["vehicle", "truck", "lorry", "transportation", "express", "semi", "cars"]}, "tractor": {"a": "tractor", "b": "1F69C", "j": ["vehicle", "agriculture", "farming", "car"]}, "racing-car": {"a": "racing car", "b": "1F3CE", "j": ["formula", "f1", "fast", "sports", "race", "racing", "car"]}, "motorcycle": {"a": "motorcycle", "b": "1F3CD", "j": ["fast", "race", "sports", "racing"]}, "motor-scooter": {"a": "motor scooter", "b": "1F6F5", "j": ["vehicle", "scooter", "vespa", "sasha", "motor"]}, "manual-wheelchair": {"a": "manual wheelchair", "b": "1F9BD", "j": ["accessibility"]}, "motorized-wheelchair": {"a": "motorized wheelchair", "b": "1F9BC", "j": ["accessibility"]}, "auto-rickshaw": {"a": "auto rickshaw", "b": "1F6FA", "j": ["tuk tuk", "transportation", "move"]}, "bicycle": {"a": "bicycle", "b": "1F6B2", "j": ["bike", "hipster", "exercise", "sports"]}, "kick-scooter": {"a": "kick scooter", "b": "1F6F4", "j": ["scooter", "razor", "vehicle", "kick"]}, "skateboard": {"a": "skateboard", "b": "1F6F9", "j": ["board"]}, "roller-skate": {"a": "roller skate", "b": "1F6FC", "j": ["roller", "skate", "footwear", "sports"]}, "bus-stop": {"a": "bus stop", "b": "1F68F", "j": ["bus", "stop", "transportation", "busstop", "wait"]}, "motorway": {"a": "motorway", "b": "1F6E3", "j": ["highway", "road", "cupertino", "interstate"]}, "railway-track": {"a": "railway track", "b": "1F6E4", "j": ["railway", "train", "transportation"]}, "oil-drum": {"a": "oil drum", "b": "1F6E2", "j": ["barrell", "drum", "oil"]}, "fuel-pump": {"a": "fuel pump", "b": "26FD", "j": ["petroleum", "gas", "fuel", "pump", "fuelpump", "station", "gas station", "diesel"]}, "police-car-light": {"a": "police car light", "b": "1F6A8", "j": ["revolving", "beacon", "police", "alert", "law", "pinged", "emergency", "light", "ambulance", "911", "legal", "error", "car"]}, "horizontal-traffic-light": {"a": "horizontal traffic light", "b": "1F6A5", "j": ["transportation", "traffic", "light", "signal"]}, "vertical-traffic-light": {"a": "vertical traffic light", "b": "1F6A6", "j": ["traffic", "transportation", "light", "driving", "signal"]}, "stop-sign": {"a": "stop sign", "b": "1F6D1", "j": ["octagonal", "sign", "stop"]}, "construction": {"a": "construction", "b": "1F6A7", "j": ["warning", "wip", "barrier", "progress", "caution"]}, "anchor": {"a": "anchor", "b": "2693", "j": ["boat", "sea", "ferry", "ship", "tool"]}, "sailboat": {"a": "sailboat", "b": "26F5", "j": ["yacht", "resort", "boat", "sailing", "sea", "transportation", "water", "ship", "summer"]}, "canoe": {"a": "canoe", "b": "1F6F6", "j": ["paddle", "ship", "water", "boat"]}, "speedboat": {"a": "speedboat", "b": "1F6A4", "j": ["vehicle", "boat", "transportation", "ship", "summer"]}, "passenger-ship": {"a": "passenger ship", "b": "1F6F3", "j": ["yacht", "passenger", "cruise", "ferry", "ship"]}, "ferry": {"a": "ferry", "b": "26F4", "j": ["yacht", "ship", "passenger", "boat"]}, "motor-boat": {"a": "motor boat", "b": "1F6E5", "j": ["ship", "motorboat", "boat"]}, "ship": {"a": "ship", "b": "1F6A2", "j": ["titanic", "passenger", "boat", "transportation", "deploy"]}, "airplane": {"a": "airplane", "b": "2708", "j": ["vehicle", "flight", "transportation", "fly", "aeroplane"]}, "small-airplane": {"a": "small airplane", "b": "1F6E9", "j": ["vehicle", "flight", "transportation", "fly", "airplane", "aeroplane"]}, "airplane-departure": {"a": "airplane departure", "b": "1F6EB", "j": ["departure", "flight", "check-in", "airport", "airplane", "departures", "aeroplane", "landing"]}, "airplane-arrival": {"a": "airplane arrival", "b": "1F6EC", "j": ["arrivals", "arriving", "flight", "boarding", "airport", "airplane", "aeroplane", "landing"]}, "parachute": {"a": "parachute", "b": "1FA82", "j": ["skydive", "hang-glide", "fly", "parasail", "glide"]}, "seat": {"a": "seat", "b": "1F4BA", "j": ["bus", "transport", "flight", "chair", "sit", "fly", "airplane"]}, "helicopter": {"a": "helicopter", "b": "1F681", "j": ["vehicle", "transportation", "fly"]}, "suspension-railway": {"a": "suspension railway", "b": "1F69F", "j": ["railway", "vehicle", "transportation", "suspension"]}, "mountain-cableway": {"a": "mountain cableway", "b": "1F6A0", "j": ["vehicle", "mountain", "transportation", "ski", "gondola", "cable"]}, "aerial-tramway": {"a": "aerial tramway", "b": "1F6A1", "j": ["vehicle", "aerial", "transportation", "ski", "gondola", "cable", "tramway", "car"]}, "satellite": {"a": "satellite", "b": "1F6F0", "j": ["communication", "gps", "ISS", "space", "NASA", "orbit", "spaceflight"]}, "rocket": {"a": "rocket", "b": "1F680", "j": ["outer space", "launch", "NASA", "ship", "space", "staffmode", "fly", "outer_space"]}, "flying-saucer": {"a": "flying saucer", "b": "1F6F8", "j": ["transportation", "vehicle", "ufo", "UFO"]}, "bellhop-bell": {"a": "bellhop bell", "b": "1F6CE", "j": ["service", "bellhop", "hotel", "bell"]}, "luggage": {"a": "luggage", "b": "1F9F3", "j": ["packing", "travel"]}, "hourglass-done": {"a": "hourglass done", "b": "231B", "j": ["test", "quiz", "timer", "sand", "limit", "oldschool", "exam", "clock", "time"]}, "hourglass-not-done": {"a": "hourglass not done", "b": "23F3", "j": ["hourglass", "timer", "sand", "oldschool", "countdown", "time"]}, "watch": {"a": "watch", "b": "231A", "j": ["accessories", "clock", "time"]}, "alarm-clock": {"a": "alarm clock", "b": "23F0", "j": ["alarm", "clock", "wake", "time"]}, "stopwatch": {"a": "stopwatch", "b": "23F1", "j": ["clock", "time", "deadline"]}, "timer-clock": {"a": "timer clock", "b": "23F2", "j": ["clock", "alarm", "timer"]}, "mantelpiece-clock": {"a": "mantelpiece clock", "b": "1F570", "j": ["clock", "time"]}, "twelve-oclock": {"a": "twelve o’clock", "b": "1F55B", "j": ["midnight", "12", "12:00", "twelve", "midday", "noon", "late", "o’clock", "early", "twelve_o_clock", "schedule", "00", "clock", "time"]}, "twelvethirty": {"a": "twelve-thirty", "b": "1F567", "j": ["12", "twelve_thirty", "thirty", "twelve", "late", "early", "schedule", "12:30", "clock", "time"]}, "one-oclock": {"a": "one o’clock", "b": "1F550", "j": ["1:00", "1", "late", "time", "early", "o’clock", "schedule", "00", "one_o_clock", "clock", "one"]}, "onethirty": {"a": "one-thirty", "b": "1F55C", "j": ["1", "1:30", "thirty", "late", "time", "early", "schedule", "one_thirty", "clock", "one"]}, "two-oclock": {"a": "two o’clock", "b": "1F551", "j": ["two_o_clock", "2", "2:00", "late", "early", "schedule", "o’clock", "00", "clock", "two", "time"]}, "twothirty": {"a": "two-thirty", "b": "1F55D", "j": ["two_thirty", "2", "thirty", "late", "2:30", "early", "schedule", "clock", "two", "time"]}, "three-oclock": {"a": "three o’clock", "b": "1F552", "j": ["3:00", "three_o_clock", "late", "3", "early", "o’clock", "three", "schedule", "00", "clock", "time"]}, "threethirty": {"a": "three-thirty", "b": "1F55E", "j": ["thirty", "late", "3", "3:30", "three", "three_thirty", "early", "schedule", "clock", "time"]}, "four-oclock": {"a": "four o’clock", "b": "1F553", "j": ["four", "late", "early", "schedule", "o’clock", "4", "00", "four_o_clock", "clock", "4:00", "time"]}, "fourthirty": {"a": "four-thirty", "b": "1F55F", "j": ["thirty", "four", "late", "4:30", "early", "schedule", "four_thirty", "4", "clock", "time"]}, "five-oclock": {"a": "five o’clock", "b": "1F554", "j": ["five_o_clock", "late", "early", "schedule", "o’clock", "five", "00", "5:00", "5", "clock", "time"]}, "fivethirty": {"a": "five-thirty", "b": "1F560", "j": ["five_thirty", "thirty", "late", "early", "schedule", "five", "5", "clock", "5:30", "time"]}, "six-oclock": {"a": "six o’clock", "b": "1F555", "j": ["late", "early", "schedule", "o’clock", "six_o_clock", "6", "dawn", "00", "dusk", "6:00", "clock", "six", "time"]}, "sixthirty": {"a": "six-thirty", "b": "1F561", "j": ["thirty", "6:30", "late", "early", "schedule", "6", "six_thirty", "clock", "six", "time"]}, "seven-oclock": {"a": "seven o’clock", "b": "1F556", "j": ["7:00", "7", "seven_o_clock", "late", "early", "schedule", "o’clock", "seven", "00", "clock", "time"]}, "seventhirty": {"a": "seven-thirty", "b": "1F562", "j": ["seven_thirty", "7", "thirty", "7:30", "late", "early", "schedule", "seven", "clock", "time"]}, "eight-oclock": {"a": "eight o’clock", "b": "1F557", "j": ["8:00", "eight", "late", "o’clock", "early", "schedule", "00", "eight_o_clock", "clock", "8", "time"]}, "eightthirty": {"a": "eight-thirty", "b": "1F563", "j": ["8:30", "thirty", "eight_thirty", "eight", "late", "early", "schedule", "clock", "8", "time"]}, "nine-oclock": {"a": "nine o’clock", "b": "1F558", "j": ["nine", "9:00", "9", "nine_o_clock", "late", "early", "schedule", "o’clock", "00", "clock", "time"]}, "ninethirty": {"a": "nine-thirty", "b": "1F564", "j": ["nine", "9", "thirty", "late", "nine_thirty", "early", "schedule", "9:30", "clock", "time"]}, "ten-oclock": {"a": "ten o’clock", "b": "1F559", "j": ["ten", "late", "early", "schedule", "o’clock", "10:00", "00", "10", "ten_o_clock", "clock", "time"]}, "tenthirty": {"a": "ten-thirty", "b": "1F565", "j": ["10:30", "thirty", "ten", "late", "early", "schedule", "ten_thirty", "10", "clock", "time"]}, "eleven-oclock": {"a": "eleven o’clock", "b": "1F55A", "j": ["eleven_o_clock", "eleven", "late", "early", "schedule", "o’clock", "00", "11", "clock", "11:00", "time"]}, "eleventhirty": {"a": "eleven-thirty", "b": "1F566", "j": ["thirty", "eleven", "eleven_thirty", "late", "early", "schedule", "11:30", "11", "clock", "time"]}, "new-moon": {"a": "new moon", "b": "1F311", "j": ["night", "sleep", "evening", "moon", "nature", "space", "planet", "dark", "twilight"]}, "waxing-crescent-moon": {"a": "waxing crescent moon", "b": "1F312", "j": ["night", "sleep", "evening", "crescent", "moon", "nature", "space", "planet", "waxing", "twilight"]}, "first-quarter-moon": {"a": "first quarter moon", "b": "1F313", "j": ["night", "sleep", "evening", "moon", "nature", "space", "planet", "quarter", "twilight"]}, "waxing-gibbous-moon": {"a": "waxing gibbous moon", "b": "1F314", "j": ["night", "sleep", "evening", "moon", "nature", "sky", "space", "planet", "gibbous", "gray", "waxing", "twilight"]}, "full-moon": {"a": "full moon", "b": "1F315", "j": ["night", "full", "sleep", "evening", "moon", "nature", "space", "yellow", "planet", "twilight"]}, "waning-gibbous-moon": {"a": "waning gibbous moon", "b": "1F316", "j": ["night", "sleep", "waning", "evening", "moon", "nature", "waxing_gibbous_moon", "space", "planet", "gibbous", "twilight"]}, "last-quarter-moon": {"a": "last quarter moon", "b": "1F317", "j": ["night", "sleep", "evening", "moon", "nature", "space", "planet", "quarter", "twilight"]}, "waning-crescent-moon": {"a": "waning crescent moon", "b": "1F318", "j": ["night", "sleep", "waning", "evening", "crescent", "moon", "nature", "space", "planet", "twilight"]}, "crescent-moon": {"a": "crescent moon", "b": "1F319", "j": ["night", "sleep", "evening", "crescent", "moon", "sky", "magic"]}, "new-moon-face": {"a": "new moon face", "b": "1F31A", "j": ["night", "sleep", "evening", "moon", "face", "nature", "space", "planet", "twilight"]}, "first-quarter-moon-face": {"a": "first quarter moon face", "b": "1F31B", "j": ["night", "sleep", "evening", "moon", "face", "nature", "space", "planet", "quarter", "twilight"]}, "last-quarter-moon-face": {"a": "last quarter moon face", "b": "1F31C", "j": ["night", "sleep", "evening", "moon", "face", "nature", "space", "planet", "quarter", "twilight"]}, "thermometer": {"a": "thermometer", "b": "1F321", "j": ["weather", "hot", "cold", "temperature"]}, "sun": {"a": "sun", "b": "2600", "j": ["brightness", "rays", "spring", "bright", "nature", "weather", "summer", "sunny", "beach"]}, "full-moon-face": {"a": "full moon face", "b": "1F31D", "j": ["night", "full", "sleep", "evening", "moon", "bright", "face", "nature", "space", "planet", "twilight"]}, "sun-with-face": {"a": "sun with face", "b": "1F31E", "j": ["sun", "bright", "face", "nature", "sky", "morning"]}, "ringed-planet": {"a": "ringed planet", "b": "1FA90", "j": ["outerspace", "saturnine", "saturn"]}, "star": {"a": "star", "b": "2B50", "j": ["night", "yellow"]}, "glowing-star": {"a": "glowing star", "b": "1F31F", "j": ["awesome", "night", "shining", "star", "good", "glittery", "glow", "sparkle", "magic"]}, "shooting-star": {"a": "shooting star", "b": "1F320", "j": ["shooting", "night", "star", "falling", "photo"]}, "milky-way": {"a": "milky way", "b": "1F30C", "j": ["stars", "space", "photo"]}, "cloud": {"a": "cloud", "b": "2601", "j": ["weather", "sky"]}, "sun-behind-cloud": {"a": "sun behind cloud", "b": "26C5", "j": ["sun", "spring", "cloud", "nature", "weather", "morning", "fall", "cloudy"]}, "cloud-with-lightning-and-rain": {"a": "cloud with lightning and rain", "b": "26C8", "j": ["lightning", "rain", "cloud", "weather", "thunder"]}, "sun-behind-small-cloud": {"a": "sun behind small cloud", "b": "1F324", "j": ["sun", "weather", "cloud"]}, "sun-behind-large-cloud": {"a": "sun behind large cloud", "b": "1F325", "j": ["sun", "weather", "cloud"]}, "sun-behind-rain-cloud": {"a": "sun behind rain cloud", "b": "1F326", "j": ["sun", "weather", "rain", "cloud"]}, "cloud-with-rain": {"a": "cloud with rain", "b": "1F327", "j": ["weather", "rain", "cloud"]}, "cloud-with-snow": {"a": "cloud with snow", "b": "1F328", "j": ["weather", "snow", "cold", "cloud"]}, "cloud-with-lightning": {"a": "cloud with lightning", "b": "1F329", "j": ["weather", "lightning", "thunder", "cloud"]}, "tornado": {"a": "tornado", "b": "1F32A", "j": ["cyclone", "cloud", "weather", "twister", "whirlwind"]}, "fog": {"a": "fog", "b": "1F32B", "j": ["weather", "cloud"]}, "wind-face": {"a": "wind face", "b": "1F32C", "j": ["air", "blow", "face", "cloud", "gust", "wind"]}, "cyclone": {"a": "cyclone", "b": "1F300", "j": ["blue", "spin", "whirlpool", "typhoon", "cloud", "weather", "twister", "spiral", "dizzy", "hurricane", "vortex", "swirl", "tornado"]}, "rainbow": {"a": "rainbow", "b": "1F308", "j": ["rain", "spring", "nature", "sky", "photo", "unicorn_face", "happy"]}, "closed-umbrella": {"a": "closed umbrella", "b": "1F302", "j": ["rain", "umbrella", "weather", "clothing", "drizzle"]}, "umbrella": {"a": "umbrella", "b": "2602", "j": ["weather", "clothing", "rain", "spring"]}, "umbrella-with-rain-drops": {"a": "umbrella with rain drops", "b": "2614", "j": ["drop", "rain", "spring", "rainy", "umbrella", "clothing", "weather"]}, "umbrella-on-ground": {"a": "umbrella on ground", "b": "26F1", "j": ["sun", "rain", "umbrella", "weather", "summer"]}, "high-voltage": {"a": "high voltage", "b": "26A1", "j": ["danger", "lightning", "electric", "lightning bolt", "zap", "fast", "weather", "thunder", "voltage"]}, "snowflake": {"a": "snowflake", "b": "2744", "j": ["snow", "cold", "xmas", "winter", "season", "weather", "christmas"]}, "snowman": {"a": "snowman", "b": "2603", "j": ["snow", "cold", "winter", "xmas", "season", "weather", "frozen", "christmas"]}, "snowman-without-snow": {"a": "snowman without snow", "b": "26C4", "j": ["snow", "snowman", "cold", "winter", "xmas", "season", "weather", "frozen", "without_snow", "christmas"]}, "comet": {"a": "comet", "b": "2604", "j": ["space"]}, "fire": {"a": "fire", "b": "1F525", "j": ["flame", "cook", "tool", "hot"]}, "droplet": {"a": "droplet", "b": "1F4A7", "j": ["drop", "sweat", "drip", "spring", "cold", "water", "comic", "faucet"]}, "water-wave": {"a": "water wave", "b": "1F30A", "j": ["wave", "tsunami", "disaster", "sea", "water", "nature", "ocean"]}, "jackolantern": {"a": "jack-o-lantern", "b": "1F383", "j": ["jack_o_lantern", "creepy", "celebration", "halloween", "pumpkin", "light", "fall", "jack", "lantern"]}, "christmas-tree": {"a": "Christmas tree", "b": "1F384", "j": ["vacation", "festival", "xmas", "celebration", "Christmas", "december", "tree"]}, "fireworks": {"a": "fireworks", "b": "1F386", "j": ["congratulations", "festival", "celebration", "carnival", "photo"]}, "sparkler": {"a": "sparkler", "b": "1F387", "j": ["night", "fireworks", "shine", "stars", "celebration", "sparkle"]}, "firecracker": {"a": "firecracker", "b": "1F9E8", "j": ["boom", "fireworks", "explode", "explosion", "explosive", "dynamite"]}, "sparkles": {"a": "sparkles", "b": "2728", "j": ["awesome", "shiny", "cool", "shine", "star", "stars", "*", "good", "sparkle", "magic"]}, "balloon": {"a": "balloon", "b": "1F388", "j": ["birthday", "circus", "celebration", "party"]}, "party-popper": {"a": "party popper", "b": "1F389", "j": ["birthday", "tada", "congratulations", "popper", "celebration", "party", "circus", "magic"]}, "confetti-ball": {"a": "confetti ball", "b": "1F38A", "j": ["birthday", "festival", "ball", "celebration", "party", "confetti", "circus"]}, "tanabata-tree": {"a": "tanabata tree", "b": "1F38B", "j": ["banner", "Japanese", "nature", "celebration", "plant", "summer", "tree", "branch"]}, "pine-decoration": {"a": "pine decoration", "b": "1F38D", "j": ["bamboo", "panda", "pine", "Japanese", "nature", "celebration", "plant", "vegetable"]}, "japanese-dolls": {"a": "Japanese dolls", "b": "1F38E", "j": ["toy", "Japanese", "festival", "japanese", "celebration", "kimono", "doll"]}, "carp-streamer": {"a": "carp streamer", "b": "1F38F", "j": ["carp", "banner", "japanese", "fish", "celebration", "streamer", "koinobori"]}, "wind-chime": {"a": "wind chime", "b": "1F390", "j": ["ding", "spring", "chime", "bell", "celebration", "nature", "wind"]}, "moon-viewing-ceremony": {"a": "moon viewing ceremony", "b": "1F391", "j": ["tsukimi", "asia", "moon", "celebration", "ceremony", "photo", "japan"]}, "red-envelope": {"a": "red envelope", "b": "1F9E7", "j": ["hóngbāo", "lai see", "gift", "money", "good luck"]}, "ribbon": {"a": "ribbon", "b": "1F380", "j": ["bowtie", "pink", "girl", "decoration", "celebration"]}, "wrapped-gift": {"a": "wrapped gift", "b": "1F381", "j": ["birthday", "xmas", "celebration", "gift", "present", "wrapped", "box", "christmas"]}, "reminder-ribbon": {"a": "reminder ribbon", "b": "1F397", "j": ["cause", "support", "sports", "celebration", "reminder", "awareness", "ribbon"]}, "admission-tickets": {"a": "admission tickets", "b": "1F39F", "j": ["admission", "sports", "ticket", "entrance", "concert"]}, "ticket": {"a": "ticket", "b": "1F3AB", "j": ["admission", "event", "pass", "concert"]}, "military-medal": {"a": "military medal", "b": "1F396", "j": ["medal", "military", "award", "celebration", "army", "winning"]}, "trophy": {"a": "trophy", "b": "1F3C6", "j": ["ftw", "award", "contest", "place", "ceremony", "win", "prize"]}, "sports-medal": {"a": "sports medal", "b": "1F3C5", "j": ["medal", "winning", "award"]}, "1st-place-medal": {"a": "1st place medal", "b": "1F947", "j": ["medal", "award", "first", "gold", "winning"]}, "2nd-place-medal": {"a": "2nd place medal", "b": "1F948", "j": ["second", "medal", "award", "silver"]}, "3rd-place-medal": {"a": "3rd place medal", "b": "1F949", "j": ["medal", "award", "third", "bronze"]}, "soccer-ball": {"a": "soccer ball", "b": "26BD", "j": ["sports", "soccer", "football", "ball"]}, "baseball": {"a": "baseball", "b": "26BE", "j": ["balls", "sports", "ball"]}, "softball": {"a": "softball", "b": "1F94E", "j": ["underarm", "sports", "ball", "balls", "glove"]}, "basketball": {"a": "basketball", "b": "1F3C0", "j": ["hoop", "sports", "ball", "balls", "NBA"]}, "volleyball": {"a": "volleyball", "b": "1F3D0", "j": ["game", "balls", "sports", "ball"]}, "american-football": {"a": "american football", "b": "1F3C8", "j": ["sports", "NFL", "ball", "balls", "american", "football"]}, "rugby-football": {"a": "rugby football", "b": "1F3C9", "j": ["team", "sports", "ball", "rugby", "football"]}, "tennis": {"a": "tennis", "b": "1F3BE", "j": ["racquet", "sports", "ball", "balls", "green"]}, "flying-disc": {"a": "flying disc", "b": "1F94F", "j": ["frisbee", "ultimate", "sports"]}, "bowling": {"a": "bowling", "b": "1F3B3", "j": ["play", "sports", "ball", "game", "fun"]}, "cricket-game": {"a": "cricket game", "b": "1F3CF", "j": ["ball", "game", "bat", "sports"]}, "field-hockey": {"a": "field hockey", "b": "1F3D1", "j": ["stick", "ball", "sports", "field", "game", "hockey"]}, "ice-hockey": {"a": "ice hockey", "b": "1F3D2", "j": ["stick", "hockey", "ice", "sports", "game", "puck"]}, "lacrosse": {"a": "lacrosse", "b": "1F94D", "j": ["stick", "goal", "sports", "ball"]}, "ping-pong": {"a": "ping pong", "b": "1F3D3", "j": ["pingpong", "bat", "sports", "paddle", "ball", "game", "table tennis"]}, "badminton": {"a": "badminton", "b": "1F3F8", "j": ["shuttlecock", "racquet", "sports", "game", "birdie"]}, "boxing-glove": {"a": "boxing glove", "b": "1F94A", "j": ["boxing", "fighting", "sports", "glove"]}, "martial-arts-uniform": {"a": "martial arts uniform", "b": "1F94B", "j": ["judo", "martial arts", "taekwondo", "uniform", "karate"]}, "goal-net": {"a": "goal net", "b": "1F945", "j": ["goal", "net", "sports"]}, "flag-in-hole": {"a": "flag in hole", "b": "26F3", "j": ["business", "flag", "golf", "sports", "summer", "hole"]}, "ice-skate": {"a": "ice skate", "b": "26F8", "j": ["ice", "skate", "sports"]}, "fishing-pole": {"a": "fishing pole", "b": "1F3A3", "j": ["hobby", "fish", "food", "pole", "summer"]}, "diving-mask": {"a": "diving mask", "b": "1F93F", "j": ["scuba", "diving", "sport", "ocean", "snorkeling"]}, "running-shirt": {"a": "running shirt", "b": "1F3BD", "j": ["sash", "shirt", "athletics", "play", "pageant", "running"]}, "skis": {"a": "skis", "b": "1F3BF", "j": ["snow", "cold", "winter", "sports", "ski"]}, "sled": {"a": "sled", "b": "1F6F7", "j": ["luge", "toboggan", "sledge", "sleigh"]}, "curling-stone": {"a": "curling stone", "b": "1F94C", "j": ["game", "rock", "sports"]}, "bullseye": {"a": "bullseye", "b": "1F3AF", "j": ["target", "direct hit", "play", "dart", "hit", "bar", "game", "direct_hit"]}, "yoyo": {"a": "yo-yo", "b": "1FA80", "j": ["fluctuate", "toy", "yo_yo"]}, "kite": {"a": "kite", "b": "1FA81", "j": ["soar", "wind", "fly"]}, "pool-8-ball": {"a": "pool 8 ball", "b": "1F3B1", "j": ["pool", "hobby", "billiard", "eight", "ball", "game", "luck", "8", "magic"]}, "crystal-ball": {"a": "crystal ball", "b": "1F52E", "j": ["disco", "tool", "crystal", "ball", "fairy tale", "fantasy", "party", "fortune_teller", "circus", "fortune", "magic"]}, "magic-wand": {"a": "magic wand", "b": "1FA84", "j": ["witch", "power", "supernature", "wizard", "magic"]}, "nazar-amulet": {"a": "nazar amulet", "b": "1F9FF", "j": ["talisman", "charm", "bead", "nazar", "evil-eye"]}, "video-game": {"a": "video game", "b": "1F3AE", "j": ["controller", "play", "game", "PS4", "console"]}, "joystick": {"a": "joystick", "b": "1F579", "j": ["play", "game", "video game"]}, "slot-machine": {"a": "slot machine", "b": "1F3B0", "j": ["slot", "gamble", "casino", "game", "luck", "fruit machine", "bet", "vegas"]}, "game-die": {"a": "game die", "b": "1F3B2", "j": ["random", "play", "dice", "game", "luck", "die", "tabletop"]}, "puzzle-piece": {"a": "puzzle piece", "b": "1F9E9", "j": ["puzzle", "interlocking", "clue", "piece", "jigsaw"]}, "teddy-bear": {"a": "teddy bear", "b": "1F9F8", "j": ["plush", "toy", "plaything", "stuffed"]}, "piata": {"a": "piñata", "b": "1FA85", "j": ["mexico", "celebration", "candy", "pinata", "party"]}, "nesting-dolls": {"a": "nesting dolls", "b": "1FA86", "j": ["nesting", "toy", "russia", "matryoshka", "doll"]}, "spade-suit": {"a": "spade suit", "b": "2660", "j": ["card", "cards", "suits", "game", "poker", "magic"]}, "heart-suit": {"a": "heart suit", "b": "2665", "j": ["card", "cards", "suits", "game", "poker", "magic"]}, "diamond-suit": {"a": "diamond suit", "b": "2666", "j": ["card", "cards", "suits", "game", "poker", "magic"]}, "club-suit": {"a": "club suit", "b": "2663", "j": ["card", "cards", "suits", "game", "poker", "magic"]}, "chess-pawn": {"a": "chess pawn", "b": "265F", "j": ["chess", "expendable", "dupe"]}, "joker": {"a": "joker", "b": "1F0CF", "j": ["play", "magic", "card", "game", "poker", "wildcard", "cards"]}, "mahjong-red-dragon": {"a": "mahjong red dragon", "b": "1F004", "j": ["play", "mahjong", "kanji", "game", "red", "chinese"]}, "flower-playing-cards": {"a": "flower playing cards", "b": "1F3B4", "j": ["flower", "sunset", "card", "Japanese", "playing", "game", "red"]}, "performing-arts": {"a": "performing arts", "b": "1F3AD", "j": ["theater", "acting", "mask", "performing", "drama", "art", "theatre"]}, "framed-picture": {"a": "framed picture", "b": "1F5BC", "j": ["picture", "photography", "painting", "frame", "museum", "art"]}, "artist-palette": {"a": "artist palette", "b": "1F3A8", "j": ["draw", "design", "colors", "paint", "palette", "painting", "museum", "art"]}, "thread": {"a": "thread", "b": "1F9F5", "j": ["string", "needle", "spool", "sewing"]}, "sewing-needle": {"a": "sewing needle", "b": "1FAA1", "j": ["sutures", "stitches", "embroidery", "tailoring", "sewing", "needle"]}, "yarn": {"a": "yarn", "b": "1F9F6", "j": ["crochet", "knit", "ball"]}, "knot": {"a": "knot", "b": "1FAA2", "j": ["tangled", "twist", "rope", "tie", "twine", "scout"]}, "glasses": {"a": "glasses", "b": "1F453", "j": ["accessories", "nerdy", "geek", "eyeglasses", "eyesight", "clothing", "eye", "fashion", "eyewear", "dork"]}, "sunglasses": {"a": "sunglasses", "b": "1F576", "j": ["accessories", "glasses", "cool", "face", "eye", "eyewear", "dark"]}, "goggles": {"a": "goggles", "b": "1F97D", "j": ["welding", "swimming", "protection", "safety", "eye protection", "eyes"]}, "lab-coat": {"a": "lab coat", "b": "1F97C", "j": ["scientist", "chemist", "doctor", "experiment"]}, "safety-vest": {"a": "safety vest", "b": "1F9BA", "j": ["protection", "safety", "emergency", "vest"]}, "necktie": {"a": "necktie", "b": "1F454", "j": ["shirt", "business", "cloth", "formal", "tie", "clothing", "suitup", "fashion"]}, "tshirt": {"a": "t-shirt", "b": "1F455", "j": ["t_shirt", "shirt", "cloth", "clothing", "fashion", "tee", "casual"]}, "jeans": {"a": "jeans", "b": "1F456", "j": ["shopping", "trousers", "clothing", "fashion", "pants"]}, "scarf": {"a": "scarf", "b": "1F9E3", "j": ["neck", "winter", "clothes"]}, "gloves": {"a": "gloves", "b": "1F9E4", "j": ["hands", "hand", "winter", "clothes"]}, "coat": {"a": "coat", "b": "1F9E5", "j": ["jacket"]}, "socks": {"a": "socks", "b": "1F9E6", "j": ["stockings", "stocking", "clothes"]}, "dress": {"a": "dress", "b": "1F457", "j": ["shopping", "clothing", "fashion", "clothes"]}, "kimono": {"a": "kimono", "b": "1F458", "j": ["dress", "japanese", "clothing", "fashion", "women", "female"]}, "sari": {"a": "sari", "b": "1F97B", "j": ["dress", "clothing"]}, "onepiece-swimsuit": {"a": "one-piece swimsuit", "b": "1FA71", "j": ["one_piece_swimsuit", "fashion", "bathing suit"]}, "briefs": {"a": "briefs", "b": "1FA72", "j": ["swimsuit", "one-piece", "clothing", "underwear", "bathing suit"]}, "shorts": {"a": "shorts", "b": "1FA73", "j": ["clothing", "underwear", "pants", "bathing suit"]}, "bikini": {"a": "bikini", "b": "1F459", "j": ["swim", "woman", "girl", "swimming", "clothing", "fashion", "summer", "beach", "female"]}, "womans-clothes": {"a": "woman’s clothes", "b": "1F45A", "j": ["woman_s_clothes", "woman", "shopping_bags", "clothing", "fashion", "female"]}, "purse": {"a": "purse", "b": "1F45B", "j": ["accessories", "shopping", "clothing", "fashion", "money", "coin", "sales"]}, "handbag": {"a": "handbag", "b": "1F45C", "j": ["accessories", "shopping", "accessory", "clothing", "bag", "fashion", "purse"]}, "clutch-bag": {"a": "clutch bag", "b": "1F45D", "j": ["accessories", "shopping", "pouch", "clothing", "bag"]}, "shopping-bags": {"a": "shopping bags", "b": "1F6CD", "j": ["shopping", "mall", "buy", "bag", "purchase", "hotel"]}, "backpack": {"a": "backpack", "b": "1F392", "j": ["satchel", "school", "education", "student", "bag", "rucksack"]}, "thong-sandal": {"a": "thong sandal", "b": "1FA74", "j": ["beach sandals", "thong sandals", "zōri", "thongs", "sandals", "summer", "footwear"]}, "mans-shoe": {"a": "man’s shoe", "b": "1F45E", "j": ["man", "male", "man_s_shoe", "clothing", "fashion", "shoe"]}, "running-shoe": {"a": "running shoe", "b": "1F45F", "j": ["sneakers", "sneaker", "athletic", "shoes", "sports", "clothing", "shoe"]}, "hiking-boot": {"a": "hiking boot", "b": "1F97E", "j": ["backpacking", "boot", "camping", "hiking"]}, "flat-shoe": {"a": "flat shoe", "b": "1F97F", "j": ["ballet flat", "slip-on", "slipper", "ballet"]}, "highheeled-shoe": {"a": "high-heeled shoe", "b": "1F460", "j": ["woman", "pumps", "shoes", "heel", "high_heeled_shoe", "clothing", "fashion", "stiletto", "shoe", "female"]}, "womans-sandal": {"a": "woman’s sandal", "b": "1F461", "j": ["sandal", "woman", "shoes", "flip flops", "clothing", "woman_s_sandal", "fashion", "shoe"]}, "ballet-shoes": {"a": "ballet shoes", "b": "1FA70", "j": ["ballet", "dance"]}, "womans-boot": {"a": "woman’s boot", "b": "1F462", "j": ["woman", "shoes", "clothing", "fashion", "shoe", "boot", "woman_s_boot"]}, "crown": {"a": "crown", "b": "1F451", "j": ["royalty", "kod", "leader", "king", "clothing", "lord", "queen"]}, "womans-hat": {"a": "woman’s hat", "b": "1F452", "j": ["accessories", "spring", "woman", "lady", "woman_s_hat", "hat", "clothing", "fashion", "female"]}, "top-hat": {"a": "top hat", "b": "1F3A9", "j": ["classy", "top", "magic", "hat", "clothing", "tophat", "circus", "gentleman"]}, "graduation-cap": {"a": "graduation cap", "b": "1F393", "j": ["learn", "school", "hat", "college", "cap", "celebration", "clothing", "degree", "education", "legal", "university", "graduation"]}, "billed-cap": {"a": "billed cap", "b": "1F9E2", "j": ["cap", "baseball cap", "baseball"]}, "military-helmet": {"a": "military helmet", "b": "1FA96", "j": ["military", "warrior", "army", "helmet", "protection", "soldier"]}, "rescue-workers-helmet": {"a": "rescue worker’s helmet", "b": "26D1", "j": ["cross", "aid", "build", "construction", "face", "hat", "helmet", "rescue_worker_s_helmet"]}, "prayer-beads": {"a": "prayer beads", "b": "1F4FF", "j": ["dhikr", "religious", "beads", "clothing", "prayer", "necklace", "religion"]}, "lipstick": {"a": "lipstick", "b": "1F484", "j": ["woman", "girl", "makeup", "fashion", "cosmetics", "female"]}, "ring": {"a": "ring", "b": "1F48D", "j": ["wedding", "diamond", "marriage", "valentines", "propose", "fashion", "gem", "engagement", "jewelry"]}, "gem-stone": {"a": "gem stone", "b": "1F48E", "j": ["blue", "diamond", "gem", "ruby", "jewelry", "jewel"]}, "muted-speaker": {"a": "muted speaker", "b": "1F507", "j": ["silence", "speaker", "sound", "mute", "quiet", "silent", "volume"]}, "speaker-low-volume": {"a": "speaker low volume", "b": "1F508", "j": ["silence", "sound", "soft", "broadcast", "volume"]}, "speaker-medium-volume": {"a": "speaker medium volume", "b": "1F509", "j": ["speaker", "broadcast", "medium", "volume"]}, "speaker-high-volume": {"a": "speaker high volume", "b": "1F50A", "j": ["noisy", "noise", "speaker", "broadcast", "volume", "loud"]}, "loudspeaker": {"a": "loudspeaker", "b": "1F4E2", "j": ["public address", "volume", "sound", "loud"]}, "megaphone": {"a": "megaphone", "b": "1F4E3", "j": ["volume", "sound", "cheering", "speaker"]}, "postal-horn": {"a": "postal horn", "b": "1F4EF", "j": ["instrument", "horn", "post", "postal", "music"]}, "bell": {"a": "bell", "b": "1F514", "j": ["sound", "xmas", "chime", "notification", "christmas"]}, "bell-with-slash": {"a": "bell with slash", "b": "1F515", "j": ["forbidden", "sound", "mute", "bell", "quiet", "silent", "volume"]}, "musical-score": {"a": "musical score", "b": "1F3BC", "j": ["clef", "score", "treble", "compose", "music"]}, "musical-note": {"a": "musical note", "b": "1F3B5", "j": ["tone", "score", "sound", "note", "music"]}, "musical-notes": {"a": "musical notes", "b": "1F3B6", "j": ["notes", "note", "score", "music"]}, "studio-microphone": {"a": "studio microphone", "b": "1F399", "j": ["studio", "sing", "artist", "recording", "talkshow", "microphone", "mic", "music"]}, "level-slider": {"a": "level slider", "b": "1F39A", "j": ["slider", "music", "scale", "level"]}, "control-knobs": {"a": "control knobs", "b": "1F39B", "j": ["control", "dial", "music", "knobs"]}, "microphone": {"a": "microphone", "b": "1F3A4", "j": ["PA", "sing", "sound", "talkshow", "mic", "karaoke", "music"]}, "headphone": {"a": "headphone", "b": "1F3A7", "j": ["gadgets", "score", "earbud", "music"]}, "radio": {"a": "radio", "b": "1F4FB", "j": ["communication", "video", "program", "podcast", "music"]}, "saxophone": {"a": "saxophone", "b": "1F3B7", "j": ["sax", "instrument", "jazz", "blues", "music"]}, "accordion": {"a": "accordion", "b": "1FA97", "j": ["squeeze box", "music", "concertina"]}, "guitar": {"a": "guitar", "b": "1F3B8", "j": ["music", "instrument"]}, "musical-keyboard": {"a": "musical keyboard", "b": "1F3B9", "j": ["keyboard", "piano", "compose", "instrument", "music"]}, "trumpet": {"a": "trumpet", "b": "1F3BA", "j": ["brass", "music", "instrument"]}, "violin": {"a": "violin", "b": "1F3BB", "j": ["symphony", "orchestra", "music", "instrument"]}, "banjo": {"a": "banjo", "b": "1FA95", "j": ["instructment", "stringed", "music"]}, "drum": {"a": "drum", "b": "1F941", "j": ["drumsticks", "snare", "music", "instrument"]}, "long-drum": {"a": "long drum", "b": "1FA98", "j": ["drum", "beat", "conga", "music", "rhythm"]}, "mobile-phone": {"a": "mobile phone", "b": "1F4F1", "j": ["apple", "phone", "telephone", "mobile", "gadgets", "dial", "cell", "technology"]}, "mobile-phone-with-arrow": {"a": "mobile phone with arrow", "b": "1F4F2", "j": ["arrow", "incoming", "iphone", "phone", "mobile", "receive", "cell"]}, "telephone": {"a": "telephone", "b": "260E", "j": ["dial", "technology", "communication", "phone"]}, "telephone-receiver": {"a": "telephone receiver", "b": "1F4DE", "j": ["communication", "phone", "telephone", "dial", "receiver", "technology"]}, "pager": {"a": "pager", "b": "1F4DF", "j": ["90s", "bbcall", "oldschool"]}, "fax-machine": {"a": "fax machine", "b": "1F4E0", "j": ["fax", "technology", "communication"]}, "battery": {"a": "battery", "b": "1F50B", "j": ["energy", "power", "sustain"]}, "electric-plug": {"a": "electric plug", "b": "1F50C", "j": ["electric", "power", "charger", "electricity", "plug"]}, "laptop": {"a": "laptop", "b": "1F4BB", "j": ["computer", "display", "monitor", "pc", "screen", "technology", "personal"]}, "desktop-computer": {"a": "desktop computer", "b": "1F5A5", "j": ["computer", "desktop", "computing", "screen", "technology"]}, "printer": {"a": "printer", "b": "1F5A8", "j": ["ink", "computer", "paper"]}, "keyboard": {"a": "keyboard", "b": "2328", "j": ["computer", "text", "input", "type", "technology"]}, "computer-mouse": {"a": "computer mouse", "b": "1F5B1", "j": ["computer", "click"]}, "trackball": {"a": "trackball", "b": "1F5B2", "j": ["trackpad", "computer", "technology"]}, "computer-disk": {"a": "computer disk", "b": "1F4BD", "j": ["minidisk", "computer", "disk", "optical", "record", "90s", "technology", "data"]}, "floppy-disk": {"a": "floppy disk", "b": "1F4BE", "j": ["floppy", "computer", "disk", "80s", "save", "oldschool", "90s", "technology"]}, "optical-disk": {"a": "optical disk", "b": "1F4BF", "j": ["cd", "computer", "disk", "dvd", "optical", "90s", "technology", "disc"]}, "dvd": {"a": "dvd", "b": "1F4C0", "j": ["cd", "computer", "disk", "optical", "blu-ray", "disc"]}, "abacus": {"a": "abacus", "b": "1F9EE", "j": ["calculation"]}, "movie-camera": {"a": "movie camera", "b": "1F3A5", "j": ["cinema", "camera", "record", "film", "movie"]}, "film-frames": {"a": "film frames", "b": "1F39E", "j": ["frames", "movie", "cinema", "film"]}, "film-projector": {"a": "film projector", "b": "1F4FD", "j": ["cinema", "video", "record", "projector", "film", "tape", "movie"]}, "clapper-board": {"a": "clapper board", "b": "1F3AC", "j": ["movie", "clapper", "record", "film"]}, "television": {"a": "television", "b": "1F4FA", "j": ["video", "program", "oldschool", "show", "technology", "tv"]}, "camera": {"a": "camera", "b": "1F4F7", "j": ["gadgets", "photography", "video"]}, "camera-with-flash": {"a": "camera with flash", "b": "1F4F8", "j": ["video", "camera", "gadgets", "photography", "flash"]}, "video-camera": {"a": "video camera", "b": "1F4F9", "j": ["camera", "video", "record", "film"]}, "videocassette": {"a": "videocassette", "b": "1F4FC", "j": ["video", "80s", "record", "tape", "vhs", "oldschool", "90s"]}, "magnifying-glass-tilted-left": {"a": "magnifying glass tilted left", "b": "1F50D", "j": ["magnifying", "find", "search", "tool", "glass", "zoom", "detective"]}, "magnifying-glass-tilted-right": {"a": "magnifying glass tilted right", "b": "1F50E", "j": ["magnifying", "find", "search", "tool", "glass", "zoom", "detective"]}, "candle": {"a": "candle", "b": "1F56F", "j": ["wax", "light", "fire"]}, "light-bulb": {"a": "light bulb", "b": "1F4A1", "j": ["electric", "bulb", "comic", "light", "electricity", "idea"]}, "flashlight": {"a": "flashlight", "b": "1F526", "j": ["night", "electric", "sight", "torch", "light", "camping", "dark", "tool"]}, "red-paper-lantern": {"a": "red paper lantern", "b": "1F3EE", "j": ["paper", "bar", "halloween", "red", "light", "spooky", "lantern"]}, "diya-lamp": {"a": "diya lamp", "b": "1FA94", "j": ["lighting", "lamp", "diya", "oil"]}, "notebook-with-decorative-cover": {"a": "notebook with decorative cover", "b": "1F4D4", "j": ["book", "paper", "decorated", "record", "study", "cover", "classroom", "notes", "notebook"]}, "closed-book": {"a": "closed book", "b": "1F4D5", "j": ["learn", "book", "library", "read", "closed", "textbook", "knowledge"]}, "open-book": {"a": "open book", "b": "1F4D6", "j": ["learn", "book", "literature", "library", "study", "open", "read", "knowledge"]}, "green-book": {"a": "green book", "b": "1F4D7", "j": ["book", "library", "study", "read", "green", "knowledge"]}, "blue-book": {"a": "blue book", "b": "1F4D8", "j": ["blue", "learn", "book", "library", "study", "read", "knowledge"]}, "orange-book": {"a": "orange book", "b": "1F4D9", "j": ["book", "library", "orange", "study", "read", "textbook", "knowledge"]}, "books": {"a": "books", "b": "1F4DA", "j": ["book", "study", "library", "literature"]}, "notebook": {"a": "notebook", "b": "1F4D3", "j": ["paper", "record", "study", "stationery", "notes"]}, "ledger": {"a": "ledger", "b": "1F4D2", "j": ["notebook", "paper", "notes"]}, "page-with-curl": {"a": "page with curl", "b": "1F4C3", "j": ["document", "page", "curl", "paper", "documents", "office"]}, "scroll": {"a": "scroll", "b": "1F4DC", "j": ["paper", "history", "documents", "ancient"]}, "page-facing-up": {"a": "page facing up", "b": "1F4C4", "j": ["document", "page", "paper", "documents", "office", "information"]}, "newspaper": {"a": "newspaper", "b": "1F4F0", "j": ["headline", "paper", "press", "news"]}, "rolledup-newspaper": {"a": "rolled-up newspaper", "b": "1F5DE", "j": ["rolled_up_newspaper", "paper", "press", "news", "headline", "rolled", "newspaper"]}, "bookmark-tabs": {"a": "bookmark tabs", "b": "1F4D1", "j": ["order", "mark", "bookmark", "save", "favorite", "marker", "tidy", "tabs"]}, "bookmark": {"a": "bookmark", "b": "1F516", "j": ["save", "label", "favorite", "mark"]}, "label": {"a": "label", "b": "1F3F7", "j": ["tag", "sale"]}, "money-bag": {"a": "money bag", "b": "1F4B0", "j": ["moneybag", "dollar", "payment", "bag", "money", "coins", "sale"]}, "coin": {"a": "coin", "b": "1FA99", "j": ["metal", "currency", "silver", "treasure", "money", "gold"]}, "yen-banknote": {"a": "yen banknote", "b": "1F4B4", "j": ["bill", "currency", "japanese", "banknote", "dollar", "note", "yen", "money", "sales"]}, "dollar-banknote": {"a": "dollar banknote", "b": "1F4B5", "j": ["bill", "currency", "banknote", "dollar", "note", "money", "sales"]}, "euro-banknote": {"a": "euro banknote", "b": "1F4B6", "j": ["bill", "currency", "euro", "banknote", "dollar", "note", "money", "sales"]}, "pound-banknote": {"a": "pound banknote", "b": "1F4B7", "j": ["bill", "england", "currency", "british", "banknote", "uk", "note", "sterling", "sales", "money", "pound", "bills"]}, "money-with-wings": {"a": "money with wings", "b": "1F4B8", "j": ["bill", "banknote", "dollar", "payment", "money", "fly", "wings", "bills", "sale"]}, "credit-card": {"a": "credit card", "b": "1F4B3", "j": ["shopping", "bill", "card", "dollar", "credit", "payment", "money", "sales"]}, "receipt": {"a": "receipt", "b": "1F9FE", "j": ["bookkeeping", "accounting", "expenses", "evidence", "proof"]}, "chart-increasing-with-yen": {"a": "chart increasing with yen", "b": "1F4B9", "j": ["stats", "graph", "growth", "chart", "yen", "money", "presentation", "green-square"]}, "envelope": {"a": "envelope", "b": "2709", "j": ["letter", "communication", "email", "inbox", "postal"]}, "email": {"a": "e-mail", "b": "1F4E7", "j": ["e_mail", "letter", "communication", "mail", "inbox"]}, "incoming-envelope": {"a": "incoming envelope", "b": "1F4E8", "j": ["envelope", "incoming", "letter", "email", "receive", "e-mail", "inbox"]}, "envelope-with-arrow": {"a": "envelope with arrow", "b": "1F4E9", "j": ["arrow", "envelope", "communication", "email", "outgoing", "e-mail"]}, "outbox-tray": {"a": "outbox tray", "b": "1F4E4", "j": ["letter", "email", "outbox", "mail", "inbox", "box", "sent", "tray"]}, "inbox-tray": {"a": "inbox tray", "b": "1F4E5", "j": ["letter", "email", "documents", "mail", "receive", "inbox", "box", "tray"]}, "package": {"a": "package", "b": "1F4E6", "j": ["moving", "gift", "mail", "cardboard", "box", "parcel"]}, "closed-mailbox-with-raised-flag": {"a": "closed mailbox with raised flag", "b": "1F4EB", "j": ["postbox", "communication", "email", "mailbox", "closed", "mail", "inbox"]}, "closed-mailbox-with-lowered-flag": {"a": "closed mailbox with lowered flag", "b": "1F4EA", "j": ["postbox", "communication", "email", "lowered", "mailbox", "closed", "mail", "inbox"]}, "open-mailbox-with-raised-flag": {"a": "open mailbox with raised flag", "b": "1F4EC", "j": ["postbox", "communication", "email", "open", "mailbox", "mail", "inbox"]}, "open-mailbox-with-lowered-flag": {"a": "open mailbox with lowered flag", "b": "1F4ED", "j": ["postbox", "email", "lowered", "open", "mailbox", "mail", "inbox"]}, "postbox": {"a": "postbox", "b": "1F4EE", "j": ["envelope", "letter", "email", "mailbox", "mail"]}, "ballot-box-with-ballot": {"a": "ballot box with ballot", "b": "1F5F3", "j": ["election", "ballot", "box", "vote"]}, "pencil": {"a": "pencil", "b": "270F", "j": ["paper", "study", "school", "stationery", "writing", "write"]}, "black-nib": {"a": "black nib", "b": "2712", "j": ["stationery", "writing", "write", "nib", "pen"]}, "fountain-pen": {"a": "fountain pen", "b": "1F58B", "j": ["fountain", "stationery", "writing", "write", "pen"]}, "pen": {"a": "pen", "b": "1F58A", "j": ["ballpoint", "write", "stationery", "writing"]}, "paintbrush": {"a": "paintbrush", "b": "1F58C", "j": ["painting", "drawing", "art", "creativity"]}, "crayon": {"a": "crayon", "b": "1F58D", "j": ["creativity", "drawing"]}, "memo": {"a": "memo", "b": "1F4DD", "j": ["test", "pencil", "quiz", "compose", "paper", "documents", "study", "stationery", "writing", "write", "legal", "exam"]}, "briefcase": {"a": "briefcase", "b": "1F4BC", "j": ["job", "work", "business", "law", "documents", "career", "legal"]}, "file-folder": {"a": "file folder", "b": "1F4C1", "j": ["file", "business", "folder", "documents", "office"]}, "open-file-folder": {"a": "open file folder", "b": "1F4C2", "j": ["file", "folder", "documents", "open", "load"]}, "card-index-dividers": {"a": "card index dividers", "b": "1F5C2", "j": ["organizing", "business", "card", "stationery", "dividers", "index"]}, "calendar": {"a": "calendar", "b": "1F4C5", "j": ["date", "schedule"]}, "tearoff-calendar": {"a": "tear-off calendar", "b": "1F4C6", "j": ["date", "schedule", "calendar", "planning", "tear_off_calendar"]}, "spiral-notepad": {"a": "spiral notepad", "b": "1F5D2", "j": ["pad", "memo", "stationery", "note", "spiral"]}, "spiral-calendar": {"a": "spiral calendar", "b": "1F5D3", "j": ["pad", "date", "calendar", "schedule", "planning", "spiral"]}, "card-index": {"a": "card index", "b": "1F4C7", "j": ["business", "card", "stationery", "rolodex", "index"]}, "chart-increasing": {"a": "chart increasing", "b": "1F4C8", "j": ["stats", "upward", "business", "graph", "growth", "good", "trend", "chart", "success", "recovery", "money", "economics", "presentation", "sales"]}, "chart-decreasing": {"a": "chart decreasing", "b": "1F4C9", "j": ["stats", "business", "failure", "recession", "graph", "down", "bad", "trend", "chart", "money", "economics", "presentation", "sales"]}, "bar-chart": {"a": "bar chart", "b": "1F4CA", "j": ["stats", "graph", "bar", "chart", "presentation"]}, "clipboard": {"a": "clipboard", "b": "1F4CB", "j": ["documents", "stationery"]}, "pushpin": {"a": "pushpin", "b": "1F4CC", "j": ["here", "pin", "stationery", "mark"]}, "round-pushpin": {"a": "round pushpin", "b": "1F4CD", "j": ["pin", "map", "pushpin", "location", "stationery", "here"]}, "paperclip": {"a": "paperclip", "b": "1F4CE", "j": ["documents", "stationery"]}, "linked-paperclips": {"a": "linked paperclips", "b": "1F587", "j": ["link", "paperclip", "documents", "stationery"]}, "straight-ruler": {"a": "straight ruler", "b": "1F4CF", "j": ["architect", "math", "school", "stationery", "length", "drawing", "sketch", "calculate", "straight edge", "ruler"]}, "triangular-ruler": {"a": "triangular ruler", "b": "1F4D0", "j": ["architect", "math", "triangle", "stationery", "set", "sketch", "ruler"]}, "scissors": {"a": "scissors", "b": "2702", "j": ["cutting", "tool", "stationery", "cut"]}, "card-file-box": {"a": "card file box", "b": "1F5C3", "j": ["business", "file", "card", "stationery", "box"]}, "file-cabinet": {"a": "file cabinet", "b": "1F5C4", "j": ["file", "cabinet", "organizing", "filing"]}, "wastebasket": {"a": "wastebasket", "b": "1F5D1", "j": ["rubbish", "toss", "garbage", "trash", "bin"]}, "locked": {"a": "locked", "b": "1F512", "j": ["password", "padlock", "closed", "security"]}, "unlocked": {"a": "unlocked", "b": "1F513", "j": ["privacy", "open", "unlock", "lock", "security"]}, "locked-with-pen": {"a": "locked with pen", "b": "1F50F", "j": ["secret", "privacy", "lock", "nib", "security", "ink", "pen"]}, "locked-with-key": {"a": "locked with key", "b": "1F510", "j": ["privacy", "lock", "key", "closed", "security", "secure"]}, "key": {"a": "key", "b": "1F511", "j": ["password", "door", "lock"]}, "old-key": {"a": "old key", "b": "1F5DD", "j": ["door", "clue", "lock", "key", "old", "password"]}, "hammer": {"a": "hammer", "b": "1F528", "j": ["tool", "tools", "build", "create"]}, "axe": {"a": "axe", "b": "1FA93", "j": ["wood", "split", "chop", "tool", "hatchet", "cut"]}, "pick": {"a": "pick", "b": "26CF", "j": ["tool", "dig", "mining", "tools"]}, "hammer-and-pick": {"a": "hammer and pick", "b": "2692", "j": ["hammer", "build", "pick", "tools", "tool", "create"]}, "hammer-and-wrench": {"a": "hammer and wrench", "b": "1F6E0", "j": ["hammer", "build", "spanner", "tools", "tool", "wrench", "create"]}, "dagger": {"a": "dagger", "b": "1F5E1", "j": ["weapon", "knife"]}, "crossed-swords": {"a": "crossed swords", "b": "2694", "j": ["weapon", "crossed", "swords"]}, "water-pistol": {"a": "water pistol", "b": "1F52B", "j": ["violence", "tool", "water", "revolver", "weapon", "gun", "pistol", "handgun"]}, "boomerang": {"a": "boomerang", "b": "1FA83", "j": ["rebound", "australia", "repercussion", "weapon"]}, "bow-and-arrow": {"a": "bow and arrow", "b": "1F3F9", "j": ["arrow", "archer", "zodiac", "sports", "Sagittarius", "bow"]}, "shield": {"a": "shield", "b": "1F6E1", "j": ["weapon", "protection", "security"]}, "carpentry-saw": {"a": "carpentry saw", "b": "1FA9A", "j": ["carpenter", "lumber", "saw", "chop", "tool", "cut"]}, "wrench": {"a": "wrench", "b": "1F527", "j": ["diy", "ikea", "spanner", "tools", "fix", "maintainer", "tool"]}, "screwdriver": {"a": "screwdriver", "b": "1FA9B", "j": ["tool", "screw", "tools"]}, "nut-and-bolt": {"a": "nut and bolt", "b": "1F529", "j": ["handy", "tools", "fix", "nut", "tool", "bolt"]}, "gear": {"a": "gear", "b": "2699", "j": ["cog", "cogwheel", "tool"]}, "clamp": {"a": "clamp", "b": "1F5DC", "j": ["vice", "tool", "compress"]}, "balance-scale": {"a": "balance scale", "b": "2696", "j": ["balance", "Libra", "law", "zodiac", "fairness", "justice", "scale", "weight"]}, "white-cane": {"a": "white cane", "b": "1F9AF", "j": ["blind", "probing_cane", "accessibility"]}, "link": {"a": "link", "b": "1F517", "j": ["url", "rings"]}, "chains": {"a": "chains", "b": "26D3", "j": ["arrest", "lock", "chain"]}, "hook": {"a": "hook", "b": "1FA9D", "j": ["crook", "curve", "catch", "selling point", "tools", "ensnare"]}, "toolbox": {"a": "toolbox", "b": "1F9F0", "j": ["chest", "diy", "tools", "fix", "maintainer", "mechanic", "tool"]}, "magnet": {"a": "magnet", "b": "1F9F2", "j": ["attraction", "magnetic", "horseshoe"]}, "ladder": {"a": "ladder", "b": "1FA9C", "j": ["rung", "step", "tools", "climb"]}, "alembic": {"a": "alembic", "b": "2697", "j": ["chemistry", "distilling", "experiment", "science", "tool"]}, "test-tube": {"a": "test tube", "b": "1F9EA", "j": ["chemistry", "experiment", "lab", "science", "chemist"]}, "petri-dish": {"a": "petri dish", "b": "1F9EB", "j": ["biologist", "culture", "biology", "lab", "bacteria"]}, "dna": {"a": "dna", "b": "1F9EC", "j": ["biologist", "life", "gene", "evolution", "genetics"]}, "microscope": {"a": "microscope", "b": "1F52C", "j": ["study", "experiment", "laboratory", "science", "tool", "zoomin"]}, "telescope": {"a": "telescope", "b": "1F52D", "j": ["stars", "astronomy", "space", "science", "tool", "zoom"]}, "satellite-antenna": {"a": "satellite antenna", "b": "1F4E1", "j": ["communication", "satellite", "space", "antenna", "dish", "future", "radio"]}, "syringe": {"a": "syringe", "b": "1F489", "j": ["nurse", "shot", "doctor", "medicine", "hospital", "health", "sick", "needle", "drugs", "blood"]}, "drop-of-blood": {"a": "drop of blood", "b": "1FA78", "j": ["bleed", "menstruation", "harm", "medicine", "wound", "period", "blood donation", "injury", "hurt"]}, "pill": {"a": "pill", "b": "1F48A", "j": ["drug", "doctor", "medicine", "health", "sick", "pharmacy"]}, "adhesive-bandage": {"a": "adhesive bandage", "b": "1FA79", "j": ["heal", "bandage"]}, "stethoscope": {"a": "stethoscope", "b": "1FA7A", "j": ["heart", "medicine", "doctor", "health"]}, "door": {"a": "door", "b": "1F6AA", "j": ["house", "entry", "exit"]}, "elevator": {"a": "elevator", "b": "1F6D7", "j": ["lift", "hoist", "accessibility"]}, "mirror": {"a": "mirror", "b": "1FA9E", "j": ["reflection", "reflector", "speculum"]}, "window": {"a": "window", "b": "1FA9F", "j": ["transparent", "fresh air", "opening", "view", "scenery", "frame"]}, "bed": {"a": "bed", "b": "1F6CF", "j": ["sleep", "hotel", "rest"]}, "couch-and-lamp": {"a": "couch and lamp", "b": "1F6CB", "j": ["lamp", "chill", "couch", "read", "hotel"]}, "chair": {"a": "chair", "b": "1FA91", "j": ["sit", "furniture", "seat"]}, "toilet": {"a": "toilet", "b": "1F6BD", "j": ["potty", "bathroom", "washroom", "restroom", "wc"]}, "plunger": {"a": "plunger", "b": "1FAA0", "j": ["suction", "plumber", "force cup", "toilet"]}, "shower": {"a": "shower", "b": "1F6BF", "j": ["bathroom", "water", "clean"]}, "bathtub": {"a": "bathtub", "b": "1F6C1", "j": ["shower", "bathroom", "bath", "clean"]}, "mouse-trap": {"a": "mouse trap", "b": "1FAA4", "j": ["trap", "cheese", "bait", "mousetrap", "snare"]}, "razor": {"a": "razor", "b": "1FA92", "j": ["shave", "sharp", "cut"]}, "lotion-bottle": {"a": "lotion bottle", "b": "1F9F4", "j": ["sunscreen", "shampoo", "lotion", "moisturizer"]}, "safety-pin": {"a": "safety pin", "b": "1F9F7", "j": ["punk rock", "diaper"]}, "broom": {"a": "broom", "b": "1F9F9", "j": ["cleaning", "sweeping", "witch"]}, "basket": {"a": "basket", "b": "1F9FA", "j": ["farming", "laundry", "picnic"]}, "roll-of-paper": {"a": "roll of paper", "b": "1F9FB", "j": ["toilet paper", "roll", "paper towels"]}, "bucket": {"a": "bucket", "b": "1FAA3", "j": ["cask", "water", "pail", "vat", "container"]}, "soap": {"a": "soap", "b": "1F9FC", "j": ["soapdish", "bar", "lather", "bathing", "cleaning"]}, "toothbrush": {"a": "toothbrush", "b": "1FAA5", "j": ["brush", "bathroom", "hygiene", "teeth", "clean", "dental"]}, "sponge": {"a": "sponge", "b": "1F9FD", "j": ["absorbing", "cleaning", "porous"]}, "fire-extinguisher": {"a": "fire extinguisher", "b": "1F9EF", "j": ["quench", "extinguish", "fire"]}, "shopping-cart": {"a": "shopping cart", "b": "1F6D2", "j": ["shopping", "cart", "trolley"]}, "cigarette": {"a": "cigarette", "b": "1F6AC", "j": ["smoke", "smoking", "kills", "tobacco", "joint"]}, "coffin": {"a": "coffin", "b": "26B0", "j": ["death", "vampire", "rip", "casket", "funeral", "die", "dead", "box", "cemetery", "graveyard"]}, "headstone": {"a": "headstone", "b": "1FAA6", "j": ["death", "rip", "tombstone", "grave", "cemetery", "graveyard"]}, "funeral-urn": {"a": "funeral urn", "b": "26B1", "j": ["death", "rip", "funeral", "ashes", "die", "dead", "urn"]}, "moai": {"a": "moai", "b": "1F5FF", "j": ["rock", "moyai", "face", "statue", "easter island"]}, "placard": {"a": "placard", "b": "1FAA7", "j": ["sign", "announcement", "picket", "protest", "demonstration"]}, "atm-sign": {"a": "ATM sign", "b": "1F3E7", "j": ["cash", "bank", "teller", "automated", "atm", "blue-square", "payment", "money", "sales"]}, "litter-in-bin-sign": {"a": "litter in bin sign", "b": "1F6AE", "j": ["info", "sign", "litter", "human", "blue-square", "litter bin"]}, "potable-water": {"a": "potable water", "b": "1F6B0", "j": ["restroom", "water", "drinking", "blue-square", "liquid", "potable", "faucet", "cleaning"]}, "wheelchair-symbol": {"a": "wheelchair symbol", "b": "267F", "j": ["blue-square", "access", "disabled", "accessibility"]}, "mens-room": {"a": "men’s room", "b": "1F6B9", "j": ["gender", "man", "male", "restroom", "blue-square", "lavatory", "toilet", "men_s_room", "wc"]}, "womens-room": {"a": "women’s room", "b": "1F6BA", "j": ["gender", "woman", "restroom", "purple-square", "loo", "lavatory", "women_s_room", "toilet", "wc", "female"]}, "restroom": {"a": "restroom", "b": "1F6BB", "j": ["gender", "WC", "blue-square", "lavatory", "toilet", "refresh", "wc"]}, "baby-symbol": {"a": "baby symbol", "b": "1F6BC", "j": ["changing", "orange-square", "baby", "child"]}, "water-closet": {"a": "water closet", "b": "1F6BE", "j": ["restroom", "water", "blue-square", "lavatory", "closet", "toilet", "wc"]}, "passport-control": {"a": "passport control", "b": "1F6C2", "j": ["custom", "blue-square", "control", "passport"]}, "customs": {"a": "customs", "b": "1F6C3", "j": ["blue-square", "border", "passport"]}, "baggage-claim": {"a": "baggage claim", "b": "1F6C4", "j": ["transport", "claim", "baggage", "blue-square", "airport"]}, "left-luggage": {"a": "left luggage", "b": "1F6C5", "j": ["locker", "luggage", "baggage", "blue-square", "travel"]}, "warning": {"a": "warning", "b": "26A0", "j": ["alert", "wip", "problem", "error", "issue", "exclamation"]}, "children-crossing": {"a": "children crossing", "b": "1F6B8", "j": ["danger", "warning", "sign", "crossing", "yellow-diamond", "traffic", "pedestrian", "school", "child", "driving"]}, "no-entry": {"a": "no entry", "b": "26D4", "j": ["forbidden", "circle", "denied", "privacy", "stop", "no", "entry", "prohibited", "traffic", "bad", "not", "limit", "security"]}, "prohibited": {"a": "prohibited", "b": "1F6AB", "j": ["forbidden", "circle", "denied", "stop", "no", "entry", "disallow", "not", "limit", "forbid"]}, "no-bicycles": {"a": "no bicycles", "b": "1F6B3", "j": ["forbidden", "circle", "no", "prohibited", "bicycle", "bike", "cyclist"]}, "no-smoking": {"a": "no smoking", "b": "1F6AD", "j": ["smoke", "forbidden", "smoking", "smell", "no", "prohibited", "cigarette", "blue-square", "not"]}, "no-littering": {"a": "no littering", "b": "1F6AF", "j": ["forbidden", "circle", "litter", "no", "prohibited", "garbage", "not", "trash", "bin"]}, "nonpotable-water": {"a": "non-potable water", "b": "1F6B1", "j": ["non_potable_water", "circle", "non-drinking", "drink", "water", "faucet", "tap", "non-potable"]}, "no-pedestrians": {"a": "no pedestrians", "b": "1F6B7", "j": ["forbidden", "circle", "crossing", "no", "prohibited", "pedestrian", "walking", "not", "rules"]}, "no-mobile-phones": {"a": "no mobile phones", "b": "1F4F5", "j": ["forbidden", "circle", "iphone", "phone", "no", "mute", "mobile", "cell"]}, "no-one-under-eighteen": {"a": "no one under eighteen", "b": "1F51E", "j": ["pub", "underage", "night", "circle", "prohibited", "drink", "18", "eighteen", "age restriction", "minor"]}, "radioactive": {"a": "radioactive", "b": "2622", "j": ["danger", "sign", "nuclear"]}, "biohazard": {"a": "biohazard", "b": "2623", "j": ["danger", "sign"]}, "up-arrow": {"a": "up arrow", "b": "2B06", "j": ["arrow", "top", "blue-square", "continue", "direction", "north", "cardinal"]}, "upright-arrow": {"a": "up-right arrow", "b": "2197", "j": ["arrow", "up_right_arrow", "point", "diagonal", "blue-square", "direction", "northeast", "intercardinal"]}, "right-arrow": {"a": "right arrow", "b": "27A1", "j": ["arrow", "east", "blue-square", "direction", "next", "cardinal"]}, "downright-arrow": {"a": "down-right arrow", "b": "2198", "j": ["arrow", "diagonal", "blue-square", "down_right_arrow", "direction", "intercardinal", "southeast"]}, "down-arrow": {"a": "down arrow", "b": "2B07", "j": ["arrow", "down", "blue-square", "cardinal", "direction", "bottom", "south"]}, "downleft-arrow": {"a": "down-left arrow", "b": "2199", "j": ["arrow", "southwest", "diagonal", "blue-square", "down_left_arrow", "direction", "intercardinal"]}, "left-arrow": {"a": "left arrow", "b": "2B05", "j": ["arrow", "west", "blue-square", "previous", "back", "direction", "cardinal"]}, "upleft-arrow": {"a": "up-left arrow", "b": "2196", "j": ["arrow", "point", "northwest", "up_left_arrow", "diagonal", "blue-square", "direction", "intercardinal"]}, "updown-arrow": {"a": "up-down arrow", "b": "2195", "j": ["arrow", "blue-square", "vertical", "direction", "up_down_arrow", "way"]}, "leftright-arrow": {"a": "left-right arrow", "b": "2194", "j": ["left_right_arrow", "arrow", "sideways", "shape", "direction", "horizontal"]}, "right-arrow-curving-left": {"a": "right arrow curving left", "b": "21A9", "j": ["arrow", "undo", "back", "return", "blue-square", "enter"]}, "left-arrow-curving-right": {"a": "left arrow curving right", "b": "21AA", "j": ["arrow", "blue-square", "return", "direction", "rotate"]}, "right-arrow-curving-up": {"a": "right arrow curving up", "b": "2934", "j": ["blue-square", "arrow", "direction", "top"]}, "right-arrow-curving-down": {"a": "right arrow curving down", "b": "2935", "j": ["arrow", "down", "blue-square", "direction", "bottom"]}, "clockwise-vertical-arrows": {"a": "clockwise vertical arrows", "b": "1F503", "j": ["arrow", "sync", "round", "cycle", "repeat", "reload", "clockwise"]}, "counterclockwise-arrows-button": {"a": "counterclockwise arrows button", "b": "1F504", "j": ["arrow", "sync", "blue-square", "cycle", "anticlockwise", "withershins", "counterclockwise"]}, "back-arrow": {"a": "BACK arrow", "b": "1F519", "j": ["back", "arrow", "return", "words"]}, "end-arrow": {"a": "END arrow", "b": "1F51A", "j": ["end", "arrow", "words"]}, "on-arrow": {"a": "ON! arrow", "b": "1F51B", "j": ["arrow", "words", "on", "mark"]}, "soon-arrow": {"a": "SOON arrow", "b": "1F51C", "j": ["arrow", "soon", "words"]}, "top-arrow": {"a": "TOP arrow", "b": "1F51D", "j": ["arrow", "top", "words", "blue-square", "up"]}, "place-of-worship": {"a": "place of worship", "b": "1F6D0", "j": ["church", "worship", "prayer", "temple", "religion"]}, "atom-symbol": {"a": "atom symbol", "b": "269B", "j": ["chemistry", "atom", "atheist", "science", "physics"]}, "om": {"a": "om", "b": "1F549", "j": ["sikhism", "Hindu", "hinduism", "buddhism", "jainism", "religion"]}, "star-of-david": {"a": "star of David", "b": "2721", "j": ["star", "Jew", "David", "Jewish", "judaism", "religion"]}, "wheel-of-dharma": {"a": "wheel of dharma", "b": "2638", "j": ["dharma", "sikhism", "wheel", "hinduism", "buddhism", "jainism", "Buddhist", "religion"]}, "yin-yang": {"a": "yin yang", "b": "262F", "j": ["balance", "yang", "tao", "taoist", "yin", "religion"]}, "latin-cross": {"a": "latin cross", "b": "271D", "j": ["religion", "cross", "christianity", "Christian"]}, "orthodox-cross": {"a": "orthodox cross", "b": "2626", "j": ["cross", "religion", "suppedaneum", "Christian"]}, "star-and-crescent": {"a": "star and crescent", "b": "262A", "j": ["islam", "Muslim", "religion"]}, "peace-symbol": {"a": "peace symbol", "b": "262E", "j": ["hippie", "peace"]}, "menorah": {"a": "menorah", "b": "1F54E", "j": ["candlestick", "hanukkah", "jewish", "candelabrum", "candles", "religion"]}, "dotted-sixpointed-star": {"a": "dotted six-pointed star", "b": "1F52F", "j": ["jewish", "star", "purple-square", "dotted_six_pointed_star", "fortune", "religion", "hexagram"]}, "aries": {"a": "Aries", "b": "2648", "j": ["astrology", "sign", "ram", "purple-square", "zodiac"]}, "taurus": {"a": "Taurus", "b": "2649", "j": ["astrology", "sign", "purple-square", "ox", "zodiac", "bull"]}, "gemini": {"a": "Gemini", "b": "264A", "j": ["astrology", "sign", "twins", "purple-square", "zodiac"]}, "cancer": {"a": "Cancer", "b": "264B", "j": ["astrology", "sign", "purple-square", "zodiac", "crab"]}, "leo": {"a": "Leo", "b": "264C", "j": ["astrology", "sign", "lion", "purple-square", "zodiac"]}, "virgo": {"a": "Virgo", "b": "264D", "j": ["astrology", "sign", "purple-square", "zodiac"]}, "libra": {"a": "Libra", "b": "264E", "j": ["astrology", "sign", "balance", "purple-square", "zodiac", "scales", "justice"]}, "scorpio": {"a": "Scorpio", "b": "264F", "j": ["astrology", "sign", "scorpion", "purple-square", "zodiac", "scorpius"]}, "sagittarius": {"a": "Sagittarius", "b": "2650", "j": ["astrology", "sign", "archer", "purple-square", "zodiac"]}, "capricorn": {"a": "Capricorn", "b": "2651", "j": ["astrology", "sign", "purple-square", "zodiac", "goat"]}, "aquarius": {"a": "Aquarius", "b": "2652", "j": ["astrology", "sign", "purple-square", "water", "zodiac", "bearer"]}, "pisces": {"a": "Pisces", "b": "2653", "j": ["astrology", "sign", "purple-square", "fish", "zodiac"]}, "ophiuchus": {"a": "Ophiuchus", "b": "26CE", "j": ["astrology", "sign", "serpent", "snake", "purple-square", "zodiac", "constellation", "bearer"]}, "shuffle-tracks-button": {"a": "shuffle tracks button", "b": "1F500", "j": ["arrow", "random", "crossed", "blue-square", "shuffle", "music"]}, "repeat-button": {"a": "repeat button", "b": "1F501", "j": ["arrow", "record", "loop", "repeat", "clockwise"]}, "repeat-single-button": {"a": "repeat single button", "b": "1F502", "j": ["arrow", "once", "blue-square", "loop", "clockwise"]}, "play-button": {"a": "play button", "b": "25B6", "j": ["arrow", "play", "triangle", "blue-square", "direction", "right"]}, "fastforward-button": {"a": "fast-forward button", "b": "23E9", "j": ["arrow", "play", "fast", "fast_forward_button", "blue-square", "speed", "continue", "double", "forward"]}, "next-track-button": {"a": "next track button", "b": "23ED", "j": ["arrow", "next track", "next scene", "triangle", "blue-square", "next", "forward"]}, "play-or-pause-button": {"a": "play or pause button", "b": "23EF", "j": ["arrow", "play", "triangle", "blue-square", "pause", "right"]}, "reverse-button": {"a": "reverse button", "b": "25C0", "j": ["arrow", "reverse", "triangle", "left", "blue-square", "direction"]}, "fast-reverse-button": {"a": "fast reverse button", "b": "23EA", "j": ["arrow", "play", "blue-square", "double", "rewind"]}, "last-track-button": {"a": "last track button", "b": "23EE", "j": ["previous track", "arrow", "previous scene", "triangle", "backward"]}, "upwards-button": {"a": "upwards button", "b": "1F53C", "j": ["arrow", "top", "point", "triangle", "blue-square", "red", "direction", "button", "forward"]}, "fast-up-button": {"a": "fast up button", "b": "23EB", "j": ["arrow", "top", "blue-square", "direction", "double"]}, "downwards-button": {"a": "downwards button", "b": "1F53D", "j": ["arrow", "down", "blue-square", "red", "direction", "button", "bottom"]}, "fast-down-button": {"a": "fast down button", "b": "23EC", "j": ["arrow", "down", "blue-square", "direction", "double", "bottom"]}, "pause-button": {"a": "pause button", "b": "23F8", "j": ["bar", "blue-square", "vertical", "double", "pause"]}, "stop-button": {"a": "stop button", "b": "23F9", "j": ["blue-square", "square", "stop"]}, "record-button": {"a": "record button", "b": "23FA", "j": ["blue-square", "circle", "record"]}, "eject-button": {"a": "eject button", "b": "23CF", "j": ["blue-square", "eject"]}, "cinema": {"a": "cinema", "b": "1F3A6", "j": ["theater", "stage", "camera", "record", "curtain", "film", "blue-square", "movie"]}, "dim-button": {"a": "dim button", "b": "1F505", "j": ["sun", "brightness", "low", "warm", "afternoon", "dim", "summer"]}, "bright-button": {"a": "bright button", "b": "1F506", "j": ["sun", "brightness", "light", "bright"]}, "antenna-bars": {"a": "antenna bars", "b": "1F4F6", "j": ["phone", "bars", "bluetooth", "bar", "mobile", "blue-square", "internet", "antenna", "connection", "wifi", "cell", "reception"]}, "vibration-mode": {"a": "vibration mode", "b": "1F4F3", "j": ["phone", "orange-square", "telephone", "mobile", "vibration", "mode", "cell"]}, "mobile-phone-off": {"a": "mobile phone off", "b": "1F4F4", "j": ["silence", "phone", "orange-square", "telephone", "mute", "mobile", "quiet", "cell", "off"]}, "female-sign": {"a": "female sign", "b": "2640", "j": ["lady", "women", "girl", "woman"]}, "male-sign": {"a": "male sign", "b": "2642", "j": ["boy", "man", "men"]}, "transgender-symbol": {"a": "transgender symbol", "b": "26A7", "j": ["transgender", "lgbtq"]}, "multiply": {"a": "multiply", "b": "2716", "j": ["sign", "multiplication_sign", "math", "cancel", "multiplication", "calculation", "x", "×"]}, "plus": {"a": "plus", "b": "2795", "j": ["sign", "+", "increase", "math", "more", "calculation", "plus_sign", "addition"]}, "minus": {"a": "minus", "b": "2796", "j": ["minus_sign", "sign", "math", "−", "calculation", "-", "less", "subtract"]}, "divide": {"a": "divide", "b": "2797", "j": ["sign", "division_sign", "math", "÷", "division", "calculation"]}, "infinity": {"a": "infinity", "b": "267E", "j": ["unbounded", "universal", "forever"]}, "double-exclamation-mark": {"a": "double exclamation mark", "b": "203C", "j": ["!!", "mark", "bangbang", "exclamation", "!", "surprise"]}, "exclamation-question-mark": {"a": "exclamation question mark", "b": "2049", "j": ["punctuation", "interrobang", "mark", "exclamation", "?", "wat", "!?", "question", "!", "surprise"]}, "red-question-mark": {"a": "red question mark", "b": "2753", "j": ["punctuation", "question_mark", "mark", "?", "question", "confused", "doubt"]}, "white-question-mark": {"a": "white question mark", "b": "2754", "j": ["confused", "punctuation", "mark", "?", "outlined", "huh", "doubts", "question", "gray"]}, "white-exclamation-mark": {"a": "white exclamation mark", "b": "2755", "j": ["warning", "punctuation", "mark", "wow", "outlined", "exclamation", "!", "surprise", "gray"]}, "red-exclamation-mark": {"a": "red exclamation mark", "b": "2757", "j": ["danger", "warning", "punctuation", "heavy_exclamation_mark", "mark", "exclamation_mark", "wow", "exclamation", "!", "surprise"]}, "wavy-dash": {"a": "wavy dash", "b": "3030", "j": ["moustache", "punctuation", "draw", "dash", "squiggle", "scribble", "mustache", "line", "wavy"]}, "currency-exchange": {"a": "currency exchange", "b": "1F4B1", "j": ["currency", "bank", "dollar", "travel", "exchange", "money", "sales"]}, "heavy-dollar-sign": {"a": "heavy dollar sign", "b": "1F4B2", "j": ["currency", "dollar", "payment", "money", "sales", "buck"]}, "medical-symbol": {"a": "medical symbol", "b": "2695", "j": ["staff", "aesculapius", "hospital", "medicine", "health"]}, "recycling-symbol": {"a": "recycling symbol", "b": "267B", "j": ["arrow", "recycle", "environment", "garbage", "trash"]}, "fleurdelis": {"a": "fleur-de-lis", "b": "269C", "j": ["fleur_de_lis", "decorative", "scout"]}, "trident-emblem": {"a": "trident emblem", "b": "1F531", "j": ["emblem", "anchor", "weapon", "ship", "tool", "spear", "trident"]}, "name-badge": {"a": "name badge", "b": "1F4DB", "j": ["name", "forbid", "fire", "badge"]}, "japanese-symbol-for-beginner": {"a": "Japanese symbol for beginner", "b": "1F530", "j": ["chevron", "badge", "leaf", "shield", "Japanese", "beginner"]}, "hollow-red-circle": {"a": "hollow red circle", "b": "2B55", "j": ["large", "circle", "o", "red", "round"]}, "check-mark-button": {"a": "check mark button", "b": "2705", "j": ["election", "check", "✓", "green-square", "mark", "vote", "agree", "answer", "tick", "button", "ok"]}, "check-box-with-check": {"a": "check box with check", "b": "2611", "j": ["election", "yes", "check", "✓", "black-square", "vote", "confirm", "agree", "tick", "box", "ok"]}, "check-mark": {"a": "check mark", "b": "2714", "j": ["yes", "check", "✓", "nike", "mark", "answer", "tick", "ok"]}, "cross-mark": {"a": "cross mark", "b": "274C", "j": ["cross", "mark", "no", "delete", "cancel", "multiply", "remove", "multiplication", "red", "x", "×"]}, "cross-mark-button": {"a": "cross mark button", "b": "274E", "j": ["mark", "no", "square", "deny", "x", "green-square", "×"]}, "curly-loop": {"a": "curly loop", "b": "27B0", "j": ["draw", "curl", "shape", "squiggle", "scribble", "loop"]}, "double-curly-loop": {"a": "double curly loop", "b": "27BF", "j": ["curl", "tape", "cassette", "double", "loop"]}, "part-alternation-mark": {"a": "part alternation mark", "b": "303D", "j": ["stats", "business", "mark", "graph", "bad", "part", "economics", "presentation"]}, "eightspoked-asterisk": {"a": "eight-spoked asterisk", "b": "2733", "j": ["eight_spoked_asterisk", "star", "*", "sparkle", "asterisk", "green-square"]}, "eightpointed-star": {"a": "eight-pointed star", "b": "2734", "j": ["polygon", "orange-square", "star", "*", "shape", "eight_pointed_star"]}, "sparkle": {"a": "sparkle", "b": "2747", "j": ["awesome", "fireworks", "good", "stars", "*", "green-square"]}, "copyright": {"a": "copyright", "b": "00A9", "j": ["ip", "circle", "license", "law", "legal", "c"]}, "registered": {"a": "registered", "b": "00AE", "j": ["alphabet", "circle", "r"]}, "trade-mark": {"a": "trade mark", "b": "2122", "j": ["mark", "tm", "law", "brand", "legal", "trademark"]}, "keycap": {"a": "keycap: *", "b": "002A-FE0F-20E3", "j": ["star", "keycap_"]}, "keycap-0": {"a": "keycap: 0", "b": "0030-FE0F-20E3", "j": ["0", "keycap", "numbers", "blue-square", "null"]}, "keycap-1": {"a": "keycap: 1", "b": "0031-FE0F-20E3", "j": ["numbers", "blue-square", "1", "keycap"]}, "keycap-2": {"a": "keycap: 2", "b": "0032-FE0F-20E3", "j": ["keycap", "numbers", "2", "blue-square", "prime"]}, "keycap-3": {"a": "keycap: 3", "b": "0033-FE0F-20E3", "j": ["keycap", "numbers", "3", "blue-square", "prime"]}, "keycap-4": {"a": "keycap: 4", "b": "0034-FE0F-20E3", "j": ["numbers", "blue-square", "4", "keycap"]}, "keycap-5": {"a": "keycap: 5", "b": "0035-FE0F-20E3", "j": ["keycap", "numbers", "blue-square", "prime", "5"]}, "keycap-6": {"a": "keycap: 6", "b": "0036-FE0F-20E3", "j": ["numbers", "6", "keycap", "blue-square"]}, "keycap-7": {"a": "keycap: 7", "b": "0037-FE0F-20E3", "j": ["7", "keycap", "numbers", "blue-square", "prime"]}, "keycap-8": {"a": "keycap: 8", "b": "0038-FE0F-20E3", "j": ["numbers", "blue-square", "8", "keycap"]}, "keycap-9": {"a": "keycap: 9", "b": "0039-FE0F-20E3", "j": ["numbers", "blue-square", "9", "keycap"]}, "keycap-10": {"a": "keycap: 10", "b": "1F51F", "j": ["numbers", "blue-square", "10", "keycap"]}, "input-latin-uppercase": {"a": "input latin uppercase", "b": "1F520", "j": ["latin", "words", "alphabet", "input", "ABCD", "uppercase", "blue-square", "letters"]}, "input-latin-lowercase": {"a": "input latin lowercase", "b": "1F521", "j": ["latin", "alphabet", "abcd", "input", "blue-square", "letters", "lowercase"]}, "input-numbers": {"a": "input numbers", "b": "1F522", "j": ["numbers", "blue-square", "1234", "input"]}, "input-symbols": {"a": "input symbols", "b": "1F523", "j": ["percent", "〒♪&%", "ampersand", "input", "blue-square", "note", "glyphs", "characters", "music"]}, "input-latin-letters": {"a": "input latin letters", "b": "1F524", "j": ["latin", "alphabet", "input", "blue-square", "abc", "letters"]}, "a-button-blood-type": {"a": "A button (blood type)", "b": "1F170", "j": ["a_button", "letter", "alphabet", "a", "red-square", "blood type"]}, "ab-button-blood-type": {"a": "AB button (blood type)", "b": "1F18E", "j": ["ab_button", "alphabet", "red-square", "ab", "blood type"]}, "b-button-blood-type": {"a": "B button (blood type)", "b": "1F171", "j": ["letter", "alphabet", "b", "red-square", "b_button", "blood type"]}, "cl-button": {"a": "CL button", "b": "1F191", "j": ["alphabet", "red-square", "words", "cl"]}, "cool-button": {"a": "COOL button", "b": "1F192", "j": ["blue-square", "words", "cool"]}, "free-button": {"a": "FREE button", "b": "1F193", "j": ["blue-square", "free", "words"]}, "information": {"a": "information", "b": "2139", "j": ["i", "alphabet", "blue-square", "letter"]}, "id-button": {"a": "ID button", "b": "1F194", "j": ["id", "identity", "purple-square", "words"]}, "circled-m": {"a": "circled M", "b": "24C2", "j": ["circle", "blue-circle", "letter", "alphabet", "m"]}, "new-button": {"a": "NEW button", "b": "1F195", "j": ["blue-square", "start", "new", "words"]}, "ng-button": {"a": "NG button", "b": "1F196", "j": ["icon", "words", "blue-square", "ng", "shape"]}, "o-button-blood-type": {"a": "O button (blood type)", "b": "1F17E", "j": ["letter", "alphabet", "o", "o_button", "red-square", "blood type"]}, "ok-button": {"a": "OK button", "b": "1F197", "j": ["yes", "OK", "good", "agree", "blue-square"]}, "p-button": {"a": "P button", "b": "1F17F", "j": ["letter", "alphabet", "blue-square", "parking", "cars"]}, "sos-button": {"a": "SOS button", "b": "1F198", "j": ["words", "sos", "emergency", "red-square", "911", "help"]}, "up-button": {"a": "UP! button", "b": "1F199", "j": ["mark", "high", "above", "blue-square", "up"]}, "vs-button": {"a": "VS button", "b": "1F19A", "j": ["orange-square", "vs", "words", "versus"]}, "japanese-here-button": {"a": "Japanese “here” button", "b": "1F201", "j": ["destination", "ココ", "katakana", "Japanese", "japanese", "“here”", "blue-square", "here"]}, "japanese-service-charge-button": {"a": "Japanese “service charge” button", "b": "1F202", "j": ["katakana", "Japanese", "japanese", "blue-square", "“service charge”", "サ"]}, "japanese-monthly-amount-button": {"a": "Japanese “monthly amount” button", "b": "1F237", "j": ["orange-square", "moon", "Japanese", "japanese", "kanji", "ideograph", "月", "chinese", "“monthly amount”", "month"]}, "japanese-not-free-of-charge-button": {"a": "Japanese “not free of charge” button", "b": "1F236", "j": ["有", "orange-square", "Japanese", "have", "kanji", "ideograph", "chinese", "“not free of charge”"]}, "japanese-reserved-button": {"a": "Japanese “reserved” button", "b": "1F22F", "j": ["point", "“reserved”", "Japanese", "kanji", "ideograph", "chinese", "green-square", "指"]}, "japanese-bargain-button": {"a": "Japanese “bargain” button", "b": "1F250", "j": ["circle", "得", "obtain", "Japanese", "get", "“bargain”", "kanji", "ideograph", "chinese"]}, "japanese-discount-button": {"a": "Japanese “discount” button", "b": "1F239", "j": ["pink-square", "Japanese", "“discount”", "kanji", "ideograph", "割", "chinese", "divide", "cut"]}, "japanese-free-of-charge-button": {"a": "Japanese “free of charge” button", "b": "1F21A", "j": ["“free of charge”", "orange-square", "Japanese", "japanese", "nothing", "kanji", "ideograph", "chinese", "無"]}, "japanese-prohibited-button": {"a": "Japanese “prohibited” button", "b": "1F232", "j": ["“prohibited”", "forbidden", "禁", "Japanese", "japanese", "red-square", "kanji", "ideograph", "limit", "chinese", "restricted"]}, "japanese-acceptable-button": {"a": "Japanese “acceptable” button", "b": "1F251", "j": ["yes", "good", "orange-circle", "可", "Japanese", "agree", "kanji", "ideograph", "chinese", "ok", "“acceptable”"]}, "japanese-application-button": {"a": "Japanese “application” button", "b": "1F238", "j": ["orange-square", "Japanese", "japanese", "kanji", "ideograph", "“application”", "chinese", "申"]}, "japanese-passing-grade-button": {"a": "Japanese “passing grade” button", "b": "1F234", "j": ["join", "Japanese", "japanese", "“passing grade”", "red-square", "kanji", "ideograph", "chinese", "合"]}, "japanese-vacancy-button": {"a": "Japanese “vacancy” button", "b": "1F233", "j": ["“vacancy”", "空", "Japanese", "japanese", "blue-square", "sky", "kanji", "ideograph", "empty", "chinese"]}, "japanese-congratulations-button": {"a": "Japanese “congratulations” button", "b": "3297", "j": ["Japanese", "japanese", "kanji", "ideograph", "chinese", "red-circle", "“congratulations”", "祝"]}, "japanese-secret-button": {"a": "Japanese “secret” button", "b": "3299", "j": ["privacy", "“secret”", "Japanese", "sshh", "kanji", "ideograph", "秘", "red-circle", "chinese"]}, "japanese-open-for-business-button": {"a": "Japanese “open for business” button", "b": "1F23A", "j": ["orange-square", "Japanese", "営", "japanese", "opening hours", "“open for business”", "ideograph"]}, "japanese-no-vacancy-button": {"a": "Japanese “no vacancy” button", "b": "1F235", "j": ["満", "full", "Japanese", "japanese", "red-square", "kanji", "ideograph", "chinese", "“no vacancy”"]}, "red-circle": {"a": "red circle", "b": "1F534", "j": ["danger", "circle", "shape", "red", "geometric", "error"]}, "orange-circle": {"a": "orange circle", "b": "1F7E0", "j": ["circle", "orange", "round"]}, "yellow-circle": {"a": "yellow circle", "b": "1F7E1", "j": ["circle", "round", "yellow"]}, "green-circle": {"a": "green circle", "b": "1F7E2", "j": ["circle", "round", "green"]}, "blue-circle": {"a": "blue circle", "b": "1F535", "j": ["blue", "circle", "icon", "geometric", "shape", "button"]}, "purple-circle": {"a": "purple circle", "b": "1F7E3", "j": ["circle", "purple", "round"]}, "brown-circle": {"a": "brown circle", "b": "1F7E4", "j": ["circle", "brown", "round"]}, "black-circle": {"a": "black circle", "b": "26AB", "j": ["circle", "shape", "geometric", "button", "round"]}, "white-circle": {"a": "white circle", "b": "26AA", "j": ["circle", "shape", "round", "geometric"]}, "red-square": {"a": "red square", "b": "1F7E5", "j": ["red", "square"]}, "orange-square": {"a": "orange square", "b": "1F7E7", "j": ["square", "orange"]}, "yellow-square": {"a": "yellow square", "b": "1F7E8", "j": ["square", "yellow"]}, "green-square": {"a": "green square", "b": "1F7E9", "j": ["square", "green"]}, "blue-square": {"a": "blue square", "b": "1F7E6", "j": ["blue", "square"]}, "purple-square": {"a": "purple square", "b": "1F7EA", "j": ["square", "purple"]}, "brown-square": {"a": "brown square", "b": "1F7EB", "j": ["square", "brown"]}, "black-large-square": {"a": "black large square", "b": "2B1B", "j": ["icon", "geometric", "shape", "square", "button"]}, "white-large-square": {"a": "white large square", "b": "2B1C", "j": ["icon", "stone", "shape", "geometric", "square", "button"]}, "black-medium-square": {"a": "black medium square", "b": "25FC", "j": ["icon", "geometric", "shape", "square", "button"]}, "white-medium-square": {"a": "white medium square", "b": "25FB", "j": ["icon", "stone", "shape", "geometric", "square"]}, "black-mediumsmall-square": {"a": "black medium-small square", "b": "25FE", "j": ["icon", "geometric", "shape", "square", "black_medium_small_square", "button"]}, "white-mediumsmall-square": {"a": "white medium-small square", "b": "25FD", "j": ["icon", "stone", "geometric", "shape", "square", "white_medium_small_square", "button"]}, "black-small-square": {"a": "black small square", "b": "25AA", "j": ["geometric", "shape", "icon", "square"]}, "white-small-square": {"a": "white small square", "b": "25AB", "j": ["geometric", "shape", "icon", "square"]}, "large-orange-diamond": {"a": "large orange diamond", "b": "1F536", "j": ["diamond", "orange", "gem", "shape", "geometric", "jewel"]}, "large-blue-diamond": {"a": "large blue diamond", "b": "1F537", "j": ["blue", "diamond", "geometric", "shape", "gem", "jewel"]}, "small-orange-diamond": {"a": "small orange diamond", "b": "1F538", "j": ["diamond", "orange", "gem", "shape", "geometric", "jewel"]}, "small-blue-diamond": {"a": "small blue diamond", "b": "1F539", "j": ["blue", "diamond", "geometric", "shape", "gem", "jewel"]}, "red-triangle-pointed-up": {"a": "red triangle pointed up", "b": "1F53A", "j": ["top", "geometric", "shape", "red", "direction", "up"]}, "red-triangle-pointed-down": {"a": "red triangle pointed down", "b": "1F53B", "j": ["down", "shape", "red", "geometric", "direction", "bottom"]}, "diamond-with-a-dot": {"a": "diamond with a dot", "b": "1F4A0", "j": ["blue", "diamond", "fancy", "inside", "crystal", "comic", "geometric", "gem", "jewel"]}, "radio-button": {"a": "radio button", "b": "1F518", "j": ["circle", "input", "geometric", "old", "button", "music", "radio"]}, "white-square-button": {"a": "white square button", "b": "1F533", "j": ["input", "outlined", "geometric", "shape", "square", "button"]}, "black-square-button": {"a": "black square button", "b": "1F532", "j": ["input", "geometric", "shape", "square", "button", "frame"]}, "chequered-flag": {"a": "chequered flag", "b": "1F3C1", "j": ["checkered", "contest", "finishline", "race", "racing", "gokart", "chequered"]}, "triangular-flag": {"a": "triangular flag", "b": "1F6A9", "j": ["place", "post", "milestone", "mark"]}, "crossed-flags": {"a": "crossed flags", "b": "1F38C", "j": ["cross", "Japanese", "crossed", "japanese", "celebration", "nation", "country", "border"]}, "black-flag": {"a": "black flag", "b": "1F3F4", "j": ["waving", "pirate"]}, "white-flag": {"a": "white flag", "b": "1F3F3", "j": ["waving", "give up", "loser", "losing", "fail", "lost", "surrender"]}, "rainbow-flag": {"a": "rainbow flag", "b": "1F3F3-FE0F-200D-1F308", "j": ["homosexual", "glbt", "flag", "pride", "bisexual", "gay", "queer", "lesbian", "lgbt", "rainbow", "transgender"]}, "transgender-flag": {"a": "transgender flag", "b": "1F3F3-FE0F-200D-26A7-FE0F", "j": ["flag", "lgbtq", "light blue", "pink", "white", "transgender"]}, "pirate-flag": {"a": "pirate flag", "b": "1F3F4-200D-2620-FE0F", "j": ["banner", "pirate", "skull", "flag", "Jolly Roger", "treasure", "plunder", "crossbones"]}, "flag-ascension-island": {"a": "flag: Ascension Island", "b": "1F1E6-1F1E8", "j": ["flag"]}, "flag-andorra": {"a": "flag: Andorra", "b": "1F1E6-1F1E9", "j": ["banner", "ad", "flag", "country", "nation"]}, "flag-united-arab-emirates": {"a": "flag: United Arab Emirates", "b": "1F1E6-1F1EA", "j": ["united", "banner", "flag", "arab", "nation", "country", "emirates"]}, "flag-afghanistan": {"a": "flag: Afghanistan", "b": "1F1E6-1F1EB", "j": ["banner", "af", "flag", "country", "nation"]}, "flag-antigua--barbuda": {"a": "flag: Antigua & Barbuda", "b": "1F1E6-1F1EC", "j": ["banner", "antigua", "flag", "flag_antigua_barbuda", "nation", "country", "barbuda"]}, "flag-anguilla": {"a": "flag: Anguilla", "b": "1F1E6-1F1EE", "j": ["banner", "flag", "ai", "country", "nation"]}, "flag-albania": {"a": "flag: Albania", "b": "1F1E6-1F1F1", "j": ["banner", "flag", "nation", "country", "al"]}, "flag-armenia": {"a": "flag: Armenia", "b": "1F1E6-1F1F2", "j": ["banner", "am", "flag", "nation", "country"]}, "flag-angola": {"a": "flag: Angola", "b": "1F1E6-1F1F4", "j": ["banner", "flag", "ao", "country", "nation"]}, "flag-antarctica": {"a": "flag: Antarctica", "b": "1F1E6-1F1F6", "j": ["banner", "flag", "nation", "country", "aq"]}, "flag-argentina": {"a": "flag: Argentina", "b": "1F1E6-1F1F7", "j": ["banner", "flag", "ar", "nation", "country"]}, "flag-american-samoa": {"a": "flag: American Samoa", "b": "1F1E6-1F1F8", "j": ["banner", "flag", "ws", "nation", "country", "american"]}, "flag-austria": {"a": "flag: Austria", "b": "1F1E6-1F1F9", "j": ["banner", "at", "flag", "nation", "country"]}, "flag-australia": {"a": "flag: Australia", "b": "1F1E6-1F1FA", "j": ["banner", "flag", "au", "nation", "country"]}, "flag-aruba": {"a": "flag: Aruba", "b": "1F1E6-1F1FC", "j": ["banner", "flag", "nation", "country", "aw"]}, "flag-land-islands": {"a": "flag: Åland Islands", "b": "1F1E6-1F1FD", "j": ["banner", "Åland", "flag_aland_islands", "flag", "islands", "nation", "country"]}, "flag-azerbaijan": {"a": "flag: Azerbaijan", "b": "1F1E6-1F1FF", "j": ["banner", "az", "flag", "country", "nation"]}, "flag-bosnia--herzegovina": {"a": "flag: Bosnia & Herzegovina", "b": "1F1E7-1F1E6", "j": ["banner", "flag", "flag_bosnia_herzegovina", "herzegovina", "bosnia", "nation", "country"]}, "flag-barbados": {"a": "flag: Barbados", "b": "1F1E7-1F1E7", "j": ["banner", "bb", "flag", "country", "nation"]}, "flag-bangladesh": {"a": "flag: Bangladesh", "b": "1F1E7-1F1E9", "j": ["banner", "flag", "country", "nation", "bd"]}, "flag-belgium": {"a": "flag: Belgium", "b": "1F1E7-1F1EA", "j": ["banner", "flag", "country", "nation", "be"]}, "flag-burkina-faso": {"a": "flag: Burkina Faso", "b": "1F1E7-1F1EB", "j": ["banner", "flag", "faso", "nation", "country", "burkina"]}, "flag-bulgaria": {"a": "flag: Bulgaria", "b": "1F1E7-1F1EC", "j": ["banner", "flag", "bg", "country", "nation"]}, "flag-bahrain": {"a": "flag: Bahrain", "b": "1F1E7-1F1ED", "j": ["banner", "flag", "bh", "country", "nation"]}, "flag-burundi": {"a": "flag: Burundi", "b": "1F1E7-1F1EE", "j": ["banner", "flag", "bi", "country", "nation"]}, "flag-benin": {"a": "flag: Benin", "b": "1F1E7-1F1EF", "j": ["banner", "flag", "bj", "country", "nation"]}, "flag-st-barthlemy": {"a": "flag: St. Barthélemy", "b": "1F1E7-1F1F1", "j": ["banner", "flag", "flag_st_barthelemy", "nation", "country", "barthélemy", "saint"]}, "flag-bermuda": {"a": "flag: Bermuda", "b": "1F1E7-1F1F2", "j": ["banner", "bm", "flag", "country", "nation"]}, "flag-brunei": {"a": "flag: Brunei", "b": "1F1E7-1F1F3", "j": ["banner", "darussalam", "flag", "nation", "bn", "country"]}, "flag-bolivia": {"a": "flag: Bolivia", "b": "1F1E7-1F1F4", "j": ["banner", "flag", "country", "nation", "bo"]}, "flag-caribbean-netherlands": {"a": "flag: Caribbean Netherlands", "b": "1F1E7-1F1F6", "j": ["banner", "flag", "bonaire", "nation", "country"]}, "flag-brazil": {"a": "flag: Brazil", "b": "1F1E7-1F1F7", "j": ["banner", "flag", "br", "country", "nation"]}, "flag-bahamas": {"a": "flag: Bahamas", "b": "1F1E7-1F1F8", "j": ["banner", "flag", "country", "nation", "bs"]}, "flag-bhutan": {"a": "flag: Bhutan", "b": "1F1E7-1F1F9", "j": ["bt", "banner", "flag", "country", "nation"]}, "flag-bouvet-island": {"a": "flag: Bouvet Island", "b": "1F1E7-1F1FB", "j": ["norway", "flag"]}, "flag-botswana": {"a": "flag: Botswana", "b": "1F1E7-1F1FC", "j": ["banner", "flag", "bw", "country", "nation"]}, "flag-belarus": {"a": "flag: Belarus", "b": "1F1E7-1F1FE", "j": ["banner", "flag", "nation", "country", "by"]}, "flag-belize": {"a": "flag: Belize", "b": "1F1E7-1F1FF", "j": ["banner", "flag", "country", "bz", "nation"]}, "flag-canada": {"a": "flag: Canada", "b": "1F1E8-1F1E6", "j": ["banner", "flag", "ca", "country", "nation"]}, "flag-cocos-keeling-islands": {"a": "flag: Cocos (Keeling) Islands", "b": "1F1E8-1F1E8", "j": ["keeling", "banner", "flag", "cocos", "islands", "nation", "country", "flag_cocos_islands"]}, "flag-congo--kinshasa": {"a": "flag: Congo - Kinshasa", "b": "1F1E8-1F1E9", "j": ["banner", "flag_congo_kinshasa", "republic", "democratic", "flag", "congo", "nation", "country"]}, "flag-central-african-republic": {"a": "flag: Central African Republic", "b": "1F1E8-1F1EB", "j": ["banner", "republic", "flag", "nation", "african", "country", "central"]}, "flag-congo--brazzaville": {"a": "flag: Congo - Brazzaville", "b": "1F1E8-1F1EC", "j": ["banner", "flag", "congo", "flag_congo_brazzaville", "country", "nation"]}, "flag-switzerland": {"a": "flag: Switzerland", "b": "1F1E8-1F1ED", "j": ["banner", "ch", "flag", "country", "nation"]}, "flag-cte-divoire": {"a": "flag: Côte d’Ivoire", "b": "1F1E8-1F1EE", "j": ["banner", "coast", "flag", "country", "nation", "flag_cote_d_ivoire", "ivory"]}, "flag-cook-islands": {"a": "flag: Cook Islands", "b": "1F1E8-1F1F0", "j": ["banner", "flag", "islands", "nation", "country", "cook"]}, "flag-chile": {"a": "flag: Chile", "b": "1F1E8-1F1F1", "j": ["flag", "banner", "nation", "country"]}, "flag-cameroon": {"a": "flag: Cameroon", "b": "1F1E8-1F1F2", "j": ["banner", "flag", "cm", "nation", "country"]}, "flag-china": {"a": "flag: China", "b": "1F1E8-1F1F3", "j": ["china", "banner", "flag", "prc", "country", "chinese", "nation"]}, "flag-colombia": {"a": "flag: Colombia", "b": "1F1E8-1F1F4", "j": ["banner", "co", "flag", "nation", "country"]}, "flag-clipperton-island": {"a": "flag: Clipperton Island", "b": "1F1E8-1F1F5", "j": ["flag"]}, "flag-costa-rica": {"a": "flag: Costa Rica", "b": "1F1E8-1F1F7", "j": ["banner", "flag", "nation", "rica", "costa", "country"]}, "flag-cuba": {"a": "flag: Cuba", "b": "1F1E8-1F1FA", "j": ["banner", "cu", "flag", "nation", "country"]}, "flag-cape-verde": {"a": "flag: Cape Verde", "b": "1F1E8-1F1FB", "j": ["banner", "flag", "cabo", "verde", "nation", "country"]}, "flag-curaao": {"a": "flag: Curaçao", "b": "1F1E8-1F1FC", "j": ["banner", "flag", "curaçao", "country", "flag_curacao", "nation"]}, "flag-christmas-island": {"a": "flag: Christmas Island", "b": "1F1E8-1F1FD", "j": ["banner", "flag", "nation", "country", "island", "christmas"]}, "flag-cyprus": {"a": "flag: Cyprus", "b": "1F1E8-1F1FE", "j": ["banner", "cy", "flag", "country", "nation"]}, "flag-czechia": {"a": "flag: Czechia", "b": "1F1E8-1F1FF", "j": ["cz", "banner", "flag", "nation", "country"]}, "flag-germany": {"a": "flag: Germany", "b": "1F1E9-1F1EA", "j": ["banner", "flag", "german", "country", "nation"]}, "flag-diego-garcia": {"a": "flag: Diego Garcia", "b": "1F1E9-1F1EC", "j": ["flag"]}, "flag-djibouti": {"a": "flag: Djibouti", "b": "1F1E9-1F1EF", "j": ["banner", "flag", "dj", "country", "nation"]}, "flag-denmark": {"a": "flag: Denmark", "b": "1F1E9-1F1F0", "j": ["banner", "flag", "dk", "country", "nation"]}, "flag-dominica": {"a": "flag: Dominica", "b": "1F1E9-1F1F2", "j": ["banner", "dm", "flag", "country", "nation"]}, "flag-dominican-republic": {"a": "flag: Dominican Republic", "b": "1F1E9-1F1F4", "j": ["banner", "republic", "flag", "dominican", "nation", "country"]}, "flag-algeria": {"a": "flag: Algeria", "b": "1F1E9-1F1FF", "j": ["banner", "flag", "dz", "country", "nation"]}, "flag-ceuta--melilla": {"a": "flag: Ceuta & Melilla", "b": "1F1EA-1F1E6", "j": ["flag_ceuta_melilla", "flag"]}, "flag-ecuador": {"a": "flag: Ecuador", "b": "1F1EA-1F1E8", "j": ["banner", "flag", "ec", "country", "nation"]}, "flag-estonia": {"a": "flag: Estonia", "b": "1F1EA-1F1EA", "j": ["ee", "banner", "flag", "nation", "country"]}, "flag-egypt": {"a": "flag: Egypt", "b": "1F1EA-1F1EC", "j": ["banner", "flag", "eg", "country", "nation"]}, "flag-western-sahara": {"a": "flag: Western Sahara", "b": "1F1EA-1F1ED", "j": ["banner", "flag", "sahara", "nation", "country", "western"]}, "flag-eritrea": {"a": "flag: Eritrea", "b": "1F1EA-1F1F7", "j": ["banner", "flag", "er", "country", "nation"]}, "flag-spain": {"a": "flag: Spain", "b": "1F1EA-1F1F8", "j": ["spain", "banner", "flag", "country", "nation"]}, "flag-ethiopia": {"a": "flag: Ethiopia", "b": "1F1EA-1F1F9", "j": ["banner", "flag", "et", "nation", "country"]}, "flag-european-union": {"a": "flag: European Union", "b": "1F1EA-1F1FA", "j": ["banner", "european", "flag", "union"]}, "flag-finland": {"a": "flag: Finland", "b": "1F1EB-1F1EE", "j": ["banner", "fi", "flag", "nation", "country"]}, "flag-fiji": {"a": "flag: Fiji", "b": "1F1EB-1F1EF", "j": ["banner", "fj", "flag", "country", "nation"]}, "flag-falkland-islands": {"a": "flag: Falkland Islands", "b": "1F1EB-1F1F0", "j": ["banner", "flag", "malvinas", "falkland", "islands", "nation", "country"]}, "flag-micronesia": {"a": "flag: Micronesia", "b": "1F1EB-1F1F2", "j": ["banner", "flag", "federated", "micronesia", "nation", "country", "states"]}, "flag-faroe-islands": {"a": "flag: Faroe Islands", "b": "1F1EB-1F1F4", "j": ["banner", "flag", "islands", "nation", "country", "faroe"]}, "flag-france": {"a": "flag: France", "b": "1F1EB-1F1F7", "j": ["banner", "flag", "french", "france", "nation", "country"]}, "flag-gabon": {"a": "flag: Gabon", "b": "1F1EC-1F1E6", "j": ["banner", "flag", "ga", "country", "nation"]}, "flag-united-kingdom": {"a": "flag: United Kingdom", "b": "1F1EC-1F1E7", "j": ["united", "banner", "UK", "england", "ireland", "flag", "british", "britain", "english", "northern", "great", "kingdom", "nation", "country", "union jack"]}, "flag-grenada": {"a": "flag: Grenada", "b": "1F1EC-1F1E9", "j": ["banner", "flag", "gd", "country", "nation"]}, "flag-georgia": {"a": "flag: Georgia", "b": "1F1EC-1F1EA", "j": ["banner", "flag", "ge", "country", "nation"]}, "flag-french-guiana": {"a": "flag: French Guiana", "b": "1F1EC-1F1EB", "j": ["banner", "flag", "french", "guiana", "nation", "country"]}, "flag-guernsey": {"a": "flag: Guernsey", "b": "1F1EC-1F1EC", "j": ["banner", "gg", "flag", "country", "nation"]}, "flag-ghana": {"a": "flag: Ghana", "b": "1F1EC-1F1ED", "j": ["banner", "flag", "country", "nation", "gh"]}, "flag-gibraltar": {"a": "flag: Gibraltar", "b": "1F1EC-1F1EE", "j": ["banner", "flag", "nation", "country", "gi"]}, "flag-greenland": {"a": "flag: Greenland", "b": "1F1EC-1F1F1", "j": ["banner", "flag", "country", "nation", "gl"]}, "flag-gambia": {"a": "flag: Gambia", "b": "1F1EC-1F1F2", "j": ["banner", "gm", "flag", "country", "nation"]}, "flag-guinea": {"a": "flag: Guinea", "b": "1F1EC-1F1F3", "j": ["banner", "flag", "gn", "country", "nation"]}, "flag-guadeloupe": {"a": "flag: Guadeloupe", "b": "1F1EC-1F1F5", "j": ["banner", "flag", "country", "gp", "nation"]}, "flag-equatorial-guinea": {"a": "flag: Equatorial Guinea", "b": "1F1EC-1F1F6", "j": ["banner", "flag", "gn", "equatorial", "nation", "country"]}, "flag-greece": {"a": "flag: Greece", "b": "1F1EC-1F1F7", "j": ["banner", "flag", "gr", "nation", "country"]}, "flag-south-georgia--south-sandwich-islands": {"a": "flag: South Georgia & South Sandwich Islands", "b": "1F1EC-1F1F8", "j": ["banner", "flag", "flag_south_georgia_south_sandwich_islands", "islands", "georgia", "nation", "country", "sandwich", "south"]}, "flag-guatemala": {"a": "flag: Guatemala", "b": "1F1EC-1F1F9", "j": ["banner", "flag", "gt", "country", "nation"]}, "flag-guam": {"a": "flag: Guam", "b": "1F1EC-1F1FA", "j": ["banner", "flag", "nation", "country", "gu"]}, "flag-guineabissau": {"a": "flag: Guinea-Bissau", "b": "1F1EC-1F1FC", "j": ["banner", "flag_guinea_bissau", "flag", "nation", "country", "bissau", "gw"]}, "flag-guyana": {"a": "flag: Guyana", "b": "1F1EC-1F1FE", "j": ["banner", "flag", "gy", "country", "nation"]}, "flag-hong-kong-sar-china": {"a": "flag: Hong Kong SAR China", "b": "1F1ED-1F1F0", "j": ["banner", "kong", "flag", "hong", "nation", "country"]}, "flag-heard--mcdonald-islands": {"a": "flag: Heard & McDonald Islands", "b": "1F1ED-1F1F2", "j": ["flag_heard_mcdonald_islands", "flag"]}, "flag-honduras": {"a": "flag: Honduras", "b": "1F1ED-1F1F3", "j": ["banner", "flag", "hn", "nation", "country"]}, "flag-croatia": {"a": "flag: Croatia", "b": "1F1ED-1F1F7", "j": ["banner", "flag", "country", "nation", "hr"]}, "flag-haiti": {"a": "flag: Haiti", "b": "1F1ED-1F1F9", "j": ["banner", "flag", "country", "nation", "ht"]}, "flag-hungary": {"a": "flag: Hungary", "b": "1F1ED-1F1FA", "j": ["banner", "flag", "hu", "country", "nation"]}, "flag-canary-islands": {"a": "flag: Canary Islands", "b": "1F1EE-1F1E8", "j": ["banner", "flag", "canary", "islands", "nation", "country"]}, "flag-indonesia": {"a": "flag: Indonesia", "b": "1F1EE-1F1E9", "j": ["flag", "banner", "nation", "country"]}, "flag-ireland": {"a": "flag: Ireland", "b": "1F1EE-1F1EA", "j": ["banner", "flag", "ie", "nation", "country"]}, "flag-israel": {"a": "flag: Israel", "b": "1F1EE-1F1F1", "j": ["banner", "flag", "il", "country", "nation"]}, "flag-isle-of-man": {"a": "flag: Isle of Man", "b": "1F1EE-1F1F2", "j": ["isle", "banner", "man", "flag", "nation", "country"]}, "flag-india": {"a": "flag: India", "b": "1F1EE-1F1F3", "j": ["banner", "flag", "in", "country", "nation"]}, "flag-british-indian-ocean-territory": {"a": "flag: British Indian Ocean Territory", "b": "1F1EE-1F1F4", "j": ["banner", "flag", "british", "ocean", "nation", "territory", "country", "indian"]}, "flag-iraq": {"a": "flag: Iraq", "b": "1F1EE-1F1F6", "j": ["banner", "iq", "flag", "nation", "country"]}, "flag-iran": {"a": "flag: Iran", "b": "1F1EE-1F1F7", "j": ["banner", "republic", "flag", "iran", "islamic", "nation", "country"]}, "flag-iceland": {"a": "flag: Iceland", "b": "1F1EE-1F1F8", "j": ["banner", "flag", "is", "country", "nation"]}, "flag-italy": {"a": "flag: Italy", "b": "1F1EE-1F1F9", "j": ["banner", "flag", "italy", "country", "nation"]}, "flag-jersey": {"a": "flag: Jersey", "b": "1F1EF-1F1EA", "j": ["je", "banner", "flag", "nation", "country"]}, "flag-jamaica": {"a": "flag: Jamaica", "b": "1F1EF-1F1F2", "j": ["banner", "flag", "nation", "country", "jm"]}, "flag-jordan": {"a": "flag: Jordan", "b": "1F1EF-1F1F4", "j": ["jo", "banner", "flag", "nation", "country"]}, "flag-japan": {"a": "flag: Japan", "b": "1F1EF-1F1F5", "j": ["banner", "flag", "japanese", "nation", "country"]}, "flag-kenya": {"a": "flag: Kenya", "b": "1F1F0-1F1EA", "j": ["banner", "flag", "country", "nation", "ke"]}, "flag-kyrgyzstan": {"a": "flag: Kyrgyzstan", "b": "1F1F0-1F1EC", "j": ["kg", "banner", "flag", "nation", "country"]}, "flag-cambodia": {"a": "flag: Cambodia", "b": "1F1F0-1F1ED", "j": ["banner", "flag", "kh", "nation", "country"]}, "flag-kiribati": {"a": "flag: Kiribati", "b": "1F1F0-1F1EE", "j": ["banner", "flag", "nation", "country", "ki"]}, "flag-comoros": {"a": "flag: Comoros", "b": "1F1F0-1F1F2", "j": ["banner", "flag", "km", "country", "nation"]}, "flag-st-kitts--nevis": {"a": "flag: St. Kitts & Nevis", "b": "1F1F0-1F1F3", "j": ["nevis", "banner", "kitts", "flag", "flag_st_kitts_nevis", "nation", "country", "saint"]}, "flag-north-korea": {"a": "flag: North Korea", "b": "1F1F0-1F1F5", "j": ["banner", "flag", "korea", "country", "nation", "north"]}, "flag-south-korea": {"a": "flag: South Korea", "b": "1F1F0-1F1F7", "j": ["banner", "flag", "korea", "nation", "country", "south"]}, "flag-kuwait": {"a": "flag: Kuwait", "b": "1F1F0-1F1FC", "j": ["banner", "flag", "kw", "nation", "country"]}, "flag-cayman-islands": {"a": "flag: Cayman Islands", "b": "1F1F0-1F1FE", "j": ["banner", "flag", "cayman", "islands", "nation", "country"]}, "flag-kazakhstan": {"a": "flag: Kazakhstan", "b": "1F1F0-1F1FF", "j": ["kz", "banner", "flag", "nation", "country"]}, "flag-laos": {"a": "flag: Laos", "b": "1F1F1-1F1E6", "j": ["banner", "republic", "flag", "democratic", "nation", "country", "lao"]}, "flag-lebanon": {"a": "flag: Lebanon", "b": "1F1F1-1F1E7", "j": ["banner", "flag", "lb", "country", "nation"]}, "flag-st-lucia": {"a": "flag: St. Lucia", "b": "1F1F1-1F1E8", "j": ["banner", "flag", "lucia", "nation", "country", "saint"]}, "flag-liechtenstein": {"a": "flag: Liechtenstein", "b": "1F1F1-1F1EE", "j": ["banner", "flag", "country", "nation", "li"]}, "flag-sri-lanka": {"a": "flag: Sri Lanka", "b": "1F1F1-1F1F0", "j": ["lanka", "banner", "flag", "nation", "country", "sri"]}, "flag-liberia": {"a": "flag: Liberia", "b": "1F1F1-1F1F7", "j": ["banner", "flag", "lr", "country", "nation"]}, "flag-lesotho": {"a": "flag: Lesotho", "b": "1F1F1-1F1F8", "j": ["banner", "flag", "country", "nation", "ls"]}, "flag-lithuania": {"a": "flag: Lithuania", "b": "1F1F1-1F1F9", "j": ["banner", "flag", "lt", "country", "nation"]}, "flag-luxembourg": {"a": "flag: Luxembourg", "b": "1F1F1-1F1FA", "j": ["banner", "flag", "country", "nation", "lu"]}, "flag-latvia": {"a": "flag: Latvia", "b": "1F1F1-1F1FB", "j": ["lv", "banner", "flag", "nation", "country"]}, "flag-libya": {"a": "flag: Libya", "b": "1F1F1-1F1FE", "j": ["banner", "ly", "flag", "country", "nation"]}, "flag-morocco": {"a": "flag: Morocco", "b": "1F1F2-1F1E6", "j": ["banner", "ma", "flag", "country", "nation"]}, "flag-monaco": {"a": "flag: Monaco", "b": "1F1F2-1F1E8", "j": ["banner", "flag", "mc", "nation", "country"]}, "flag-moldova": {"a": "flag: Moldova", "b": "1F1F2-1F1E9", "j": ["banner", "republic", "flag", "country", "nation", "moldova"]}, "flag-montenegro": {"a": "flag: Montenegro", "b": "1F1F2-1F1EA", "j": ["banner", "flag", "me", "country", "nation"]}, "flag-st-martin": {"a": "flag: St. Martin", "b": "1F1F2-1F1EB", "j": ["flag"]}, "flag-madagascar": {"a": "flag: Madagascar", "b": "1F1F2-1F1EC", "j": ["banner", "flag", "country", "nation", "mg"]}, "flag-marshall-islands": {"a": "flag: Marshall Islands", "b": "1F1F2-1F1ED", "j": ["banner", "flag", "islands", "nation", "country", "marshall"]}, "flag-north-macedonia": {"a": "flag: North Macedonia", "b": "1F1F2-1F1F0", "j": ["banner", "flag", "macedonia", "country", "nation"]}, "flag-mali": {"a": "flag: Mali", "b": "1F1F2-1F1F1", "j": ["banner", "flag", "country", "ml", "nation"]}, "flag-myanmar-burma": {"a": "flag: Myanmar (Burma)", "b": "1F1F2-1F1F2", "j": ["banner", "flag", "flag_myanmar", "mm", "country", "nation"]}, "flag-mongolia": {"a": "flag: Mongolia", "b": "1F1F2-1F1F3", "j": ["banner", "flag", "mn", "country", "nation"]}, "flag-macao-sar-china": {"a": "flag: Macao SAR China", "b": "1F1F2-1F1F4", "j": ["banner", "flag", "country", "macao", "nation"]}, "flag-northern-mariana-islands": {"a": "flag: Northern Mariana Islands", "b": "1F1F2-1F1F5", "j": ["banner", "flag", "northern", "islands", "nation", "country", "mariana"]}, "flag-martinique": {"a": "flag: Martinique", "b": "1F1F2-1F1F6", "j": ["banner", "flag", "country", "nation", "mq"]}, "flag-mauritania": {"a": "flag: Mauritania", "b": "1F1F2-1F1F7", "j": ["banner", "mr", "flag", "country", "nation"]}, "flag-montserrat": {"a": "flag: Montserrat", "b": "1F1F2-1F1F8", "j": ["banner", "flag", "ms", "country", "nation"]}, "flag-malta": {"a": "flag: Malta", "b": "1F1F2-1F1F9", "j": ["banner", "mt", "flag", "country", "nation"]}, "flag-mauritius": {"a": "flag: Mauritius", "b": "1F1F2-1F1FA", "j": ["banner", "flag", "country", "nation", "mu"]}, "flag-maldives": {"a": "flag: Maldives", "b": "1F1F2-1F1FB", "j": ["banner", "mv", "flag", "country", "nation"]}, "flag-malawi": {"a": "flag: Malawi", "b": "1F1F2-1F1FC", "j": ["banner", "flag", "country", "nation", "mw"]}, "flag-mexico": {"a": "flag: Mexico", "b": "1F1F2-1F1FD", "j": ["banner", "flag", "mx", "nation", "country"]}, "flag-malaysia": {"a": "flag: Malaysia", "b": "1F1F2-1F1FE", "j": ["banner", "flag", "my", "country", "nation"]}, "flag-mozambique": {"a": "flag: Mozambique", "b": "1F1F2-1F1FF", "j": ["banner", "flag", "country", "nation", "mz"]}, "flag-namibia": {"a": "flag: Namibia", "b": "1F1F3-1F1E6", "j": ["banner", "flag", "nation", "country", "na"]}, "flag-new-caledonia": {"a": "flag: New Caledonia", "b": "1F1F3-1F1E8", "j": ["banner", "flag", "new", "nation", "country", "caledonia"]}, "flag-niger": {"a": "flag: Niger", "b": "1F1F3-1F1EA", "j": ["banner", "flag", "ne", "nation", "country"]}, "flag-norfolk-island": {"a": "flag: Norfolk Island", "b": "1F1F3-1F1EB", "j": ["banner", "flag", "nation", "country", "norfolk", "island"]}, "flag-nigeria": {"a": "flag: Nigeria", "b": "1F1F3-1F1EC", "j": ["flag", "banner", "nation", "country"]}, "flag-nicaragua": {"a": "flag: Nicaragua", "b": "1F1F3-1F1EE", "j": ["banner", "flag", "ni", "country", "nation"]}, "flag-netherlands": {"a": "flag: Netherlands", "b": "1F1F3-1F1F1", "j": ["banner", "flag", "nl", "country", "nation"]}, "flag-norway": {"a": "flag: Norway", "b": "1F1F3-1F1F4", "j": ["banner", "flag", "no", "country", "nation"]}, "flag-nepal": {"a": "flag: Nepal", "b": "1F1F3-1F1F5", "j": ["banner", "flag", "country", "nation", "np"]}, "flag-nauru": {"a": "flag: Nauru", "b": "1F1F3-1F1F7", "j": ["banner", "nr", "flag", "nation", "country"]}, "flag-niue": {"a": "flag: Niue", "b": "1F1F3-1F1FA", "j": ["banner", "flag", "nu", "country", "nation"]}, "flag-new-zealand": {"a": "flag: New Zealand", "b": "1F1F3-1F1FF", "j": ["banner", "flag", "zealand", "nation", "country", "new"]}, "flag-oman": {"a": "flag: Oman", "b": "1F1F4-1F1F2", "j": ["banner", "flag", "nation", "country", "om_symbol"]}, "flag-panama": {"a": "flag: Panama", "b": "1F1F5-1F1E6", "j": ["banner", "flag", "pa", "country", "nation"]}, "flag-peru": {"a": "flag: Peru", "b": "1F1F5-1F1EA", "j": ["banner", "flag", "country", "nation", "pe"]}, "flag-french-polynesia": {"a": "flag: French Polynesia", "b": "1F1F5-1F1EB", "j": ["banner", "flag", "french", "polynesia", "nation", "country"]}, "flag-papua-new-guinea": {"a": "flag: Papua New Guinea", "b": "1F1F5-1F1EC", "j": ["banner", "flag", "papua", "nation", "country", "new", "guinea"]}, "flag-philippines": {"a": "flag: Philippines", "b": "1F1F5-1F1ED", "j": ["banner", "flag", "ph", "country", "nation"]}, "flag-pakistan": {"a": "flag: Pakistan", "b": "1F1F5-1F1F0", "j": ["banner", "flag", "pk", "country", "nation"]}, "flag-poland": {"a": "flag: Poland", "b": "1F1F5-1F1F1", "j": ["banner", "pl", "flag", "country", "nation"]}, "flag-st-pierre--miquelon": {"a": "flag: St. Pierre & Miquelon", "b": "1F1F5-1F1F2", "j": ["banner", "flag", "flag_st_pierre_miquelon", "miquelon", "nation", "country", "saint", "pierre"]}, "flag-pitcairn-islands": {"a": "flag: Pitcairn Islands", "b": "1F1F5-1F1F3", "j": ["banner", "flag", "nation", "country", "pitcairn"]}, "flag-puerto-rico": {"a": "flag: Puerto Rico", "b": "1F1F5-1F1F7", "j": ["banner", "puerto", "flag", "nation", "country", "rico"]}, "flag-palestinian-territories": {"a": "flag: Palestinian Territories", "b": "1F1F5-1F1F8", "j": ["banner", "flag", "palestinian", "territories", "nation", "country", "palestine"]}, "flag-portugal": {"a": "flag: Portugal", "b": "1F1F5-1F1F9", "j": ["banner", "flag", "country", "nation", "pt"]}, "flag-palau": {"a": "flag: Palau", "b": "1F1F5-1F1FC", "j": ["banner", "flag", "country", "nation", "pw"]}, "flag-paraguay": {"a": "flag: Paraguay", "b": "1F1F5-1F1FE", "j": ["banner", "flag", "py", "nation", "country"]}, "flag-qatar": {"a": "flag: Qatar", "b": "1F1F6-1F1E6", "j": ["banner", "flag", "country", "nation", "qa"]}, "flag-runion": {"a": "flag: Réunion", "b": "1F1F7-1F1EA", "j": ["banner", "flag", "réunion", "country", "nation", "flag_reunion"]}, "flag-romania": {"a": "flag: Romania", "b": "1F1F7-1F1F4", "j": ["banner", "flag", "nation", "country", "ro"]}, "flag-serbia": {"a": "flag: Serbia", "b": "1F1F7-1F1F8", "j": ["banner", "flag", "rs", "country", "nation"]}, "flag-russia": {"a": "flag: Russia", "b": "1F1F7-1F1FA", "j": ["banner", "russian", "flag", "federation", "nation", "country"]}, "flag-rwanda": {"a": "flag: Rwanda", "b": "1F1F7-1F1FC", "j": ["banner", "flag", "country", "nation", "rw"]}, "flag-saudi-arabia": {"a": "flag: Saudi Arabia", "b": "1F1F8-1F1E6", "j": ["flag", "banner", "nation", "country"]}, "flag-solomon-islands": {"a": "flag: Solomon Islands", "b": "1F1F8-1F1E7", "j": ["banner", "flag", "islands", "nation", "country", "solomon"]}, "flag-seychelles": {"a": "flag: Seychelles", "b": "1F1F8-1F1E8", "j": ["banner", "flag", "sc", "nation", "country"]}, "flag-sudan": {"a": "flag: Sudan", "b": "1F1F8-1F1E9", "j": ["banner", "sd", "flag", "country", "nation"]}, "flag-sweden": {"a": "flag: Sweden", "b": "1F1F8-1F1EA", "j": ["banner", "flag", "se", "country", "nation"]}, "flag-singapore": {"a": "flag: Singapore", "b": "1F1F8-1F1EC", "j": ["banner", "flag", "country", "nation", "sg"]}, "flag-st-helena": {"a": "flag: St. Helena", "b": "1F1F8-1F1ED", "j": ["banner", "flag", "cunha", "ascension", "helena", "nation", "country", "saint", "tristan"]}, "flag-slovenia": {"a": "flag: Slovenia", "b": "1F1F8-1F1EE", "j": ["banner", "flag", "nation", "si", "country"]}, "flag-svalbard--jan-mayen": {"a": "flag: Svalbard & Jan Mayen", "b": "1F1F8-1F1EF", "j": ["flag_svalbard_jan_mayen", "flag"]}, "flag-slovakia": {"a": "flag: Slovakia", "b": "1F1F8-1F1F0", "j": ["sk", "banner", "flag", "nation", "country"]}, "flag-sierra-leone": {"a": "flag: Sierra Leone", "b": "1F1F8-1F1F1", "j": ["banner", "flag", "sierra", "leone", "nation", "country"]}, "flag-san-marino": {"a": "flag: San Marino", "b": "1F1F8-1F1F2", "j": ["banner", "flag", "san", "nation", "country", "marino"]}, "flag-senegal": {"a": "flag: Senegal", "b": "1F1F8-1F1F3", "j": ["banner", "flag", "nation", "sn", "country"]}, "flag-somalia": {"a": "flag: Somalia", "b": "1F1F8-1F1F4", "j": ["banner", "so", "flag", "country", "nation"]}, "flag-suriname": {"a": "flag: Suriname", "b": "1F1F8-1F1F7", "j": ["banner", "flag", "sr", "country", "nation"]}, "flag-south-sudan": {"a": "flag: South Sudan", "b": "1F1F8-1F1F8", "j": ["banner", "sd", "flag", "nation", "country", "south"]}, "flag-so-tom--prncipe": {"a": "flag: São Tomé & Príncipe", "b": "1F1F8-1F1F9", "j": ["tome", "sao", "banner", "flag", "principe", "nation", "flag_sao_tome_principe", "country"]}, "flag-el-salvador": {"a": "flag: El Salvador", "b": "1F1F8-1F1FB", "j": ["banner", "flag", "nation", "country", "salvador", "el"]}, "flag-sint-maarten": {"a": "flag: Sint Maarten", "b": "1F1F8-1F1FD", "j": ["banner", "flag", "maarten", "dutch", "sint", "nation", "country"]}, "flag-syria": {"a": "flag: Syria", "b": "1F1F8-1F1FE", "j": ["banner", "republic", "flag", "syrian", "arab", "nation", "country"]}, "flag-eswatini": {"a": "flag: Eswatini", "b": "1F1F8-1F1FF", "j": ["banner", "flag", "sz", "country", "nation"]}, "flag-tristan-da-cunha": {"a": "flag: Tristan da Cunha", "b": "1F1F9-1F1E6", "j": ["flag"]}, "flag-turks--caicos-islands": {"a": "flag: Turks & Caicos Islands", "b": "1F1F9-1F1E8", "j": ["banner", "caicos", "flag", "islands", "nation", "country", "turks", "flag_turks_caicos_islands"]}, "flag-chad": {"a": "flag: Chad", "b": "1F1F9-1F1E9", "j": ["banner", "td", "flag", "country", "nation"]}, "flag-french-southern-territories": {"a": "flag: French Southern Territories", "b": "1F1F9-1F1EB", "j": ["banner", "flag", "french", "southern", "territories", "nation", "country"]}, "flag-togo": {"a": "flag: Togo", "b": "1F1F9-1F1EC", "j": ["banner", "flag", "tg", "country", "nation"]}, "flag-thailand": {"a": "flag: Thailand", "b": "1F1F9-1F1ED", "j": ["banner", "flag", "country", "nation", "th"]}, "flag-tajikistan": {"a": "flag: Tajikistan", "b": "1F1F9-1F1EF", "j": ["banner", "flag", "tj", "country", "nation"]}, "flag-tokelau": {"a": "flag: Tokelau", "b": "1F1F9-1F1F0", "j": ["tk", "banner", "flag", "country", "nation"]}, "flag-timorleste": {"a": "flag: Timor-Leste", "b": "1F1F9-1F1F1", "j": ["leste", "banner", "timor", "flag", "nation", "country", "flag_timor_leste"]}, "flag-turkmenistan": {"a": "flag: Turkmenistan", "b": "1F1F9-1F1F2", "j": ["flag", "banner", "country", "nation"]}, "flag-tunisia": {"a": "flag: Tunisia", "b": "1F1F9-1F1F3", "j": ["banner", "flag", "country", "nation", "tn"]}, "flag-tonga": {"a": "flag: Tonga", "b": "1F1F9-1F1F4", "j": ["banner", "flag", "country", "nation", "to"]}, "flag-turkey": {"a": "flag: Turkey", "b": "1F1F9-1F1F7", "j": ["banner", "flag", "nation", "turkey", "country"]}, "flag-trinidad--tobago": {"a": "flag: Trinidad & Tobago", "b": "1F1F9-1F1F9", "j": ["banner", "flag_trinidad_tobago", "flag", "trinidad", "nation", "country", "tobago"]}, "flag-tuvalu": {"a": "flag: Tuvalu", "b": "1F1F9-1F1FB", "j": ["flag", "banner", "nation", "country"]}, "flag-taiwan": {"a": "flag: Taiwan", "b": "1F1F9-1F1FC", "j": ["banner", "flag", "country", "nation", "tw"]}, "flag-tanzania": {"a": "flag: Tanzania", "b": "1F1F9-1F1FF", "j": ["united", "banner", "republic", "flag", "nation", "country", "tanzania"]}, "flag-ukraine": {"a": "flag: Ukraine", "b": "1F1FA-1F1E6", "j": ["banner", "flag", "ua", "country", "nation"]}, "flag-uganda": {"a": "flag: Uganda", "b": "1F1FA-1F1EC", "j": ["banner", "flag", "ug", "country", "nation"]}, "flag-us-outlying-islands": {"a": "flag: U.S. Outlying Islands", "b": "1F1FA-1F1F2", "j": ["flag_u_s_outlying_islands", "flag"]}, "flag-united-nations": {"a": "flag: United Nations", "b": "1F1FA-1F1F3", "j": ["banner", "un", "flag"]}, "flag-united-states": {"a": "flag: United States", "b": "1F1FA-1F1F8", "j": ["united", "banner", "flag", "america", "nation", "country", "states"]}, "flag-uruguay": {"a": "flag: Uruguay", "b": "1F1FA-1F1FE", "j": ["banner", "flag", "uy", "country", "nation"]}, "flag-uzbekistan": {"a": "flag: Uzbekistan", "b": "1F1FA-1F1FF", "j": ["banner", "uz", "flag", "country", "nation"]}, "flag-vatican-city": {"a": "flag: Vatican City", "b": "1F1FB-1F1E6", "j": ["banner", "flag", "vatican", "city", "nation", "country"]}, "flag-st-vincent--grenadines": {"a": "flag: St. Vincent & Grenadines", "b": "1F1FB-1F1E8", "j": ["banner", "flag", "flag_st_vincent_grenadines", "grenadines", "nation", "country", "vincent", "saint"]}, "flag-venezuela": {"a": "flag: Venezuela", "b": "1F1FB-1F1EA", "j": ["banner", "republic", "flag", "bolivarian", "ve", "nation", "country"]}, "flag-british-virgin-islands": {"a": "flag: British Virgin Islands", "b": "1F1FB-1F1EC", "j": ["banner", "virgin", "bvi", "flag", "british", "islands", "nation", "country"]}, "flag-us-virgin-islands": {"a": "flag: U.S. Virgin Islands", "b": "1F1FB-1F1EE", "j": ["banner", "virgin", "flag", "us", "islands", "nation", "country", "flag_u_s_virgin_islands"]}, "flag-vietnam": {"a": "flag: Vietnam", "b": "1F1FB-1F1F3", "j": ["banner", "flag", "nation", "nam", "country", "viet"]}, "flag-vanuatu": {"a": "flag: Vanuatu", "b": "1F1FB-1F1FA", "j": ["banner", "flag", "vu", "country", "nation"]}, "flag-wallis--futuna": {"a": "flag: Wallis & Futuna", "b": "1F1FC-1F1EB", "j": ["banner", "flag_wallis_futuna", "flag", "wallis", "nation", "country", "futuna"]}, "flag-samoa": {"a": "flag: Samoa", "b": "1F1FC-1F1F8", "j": ["banner", "flag", "ws", "nation", "country"]}, "flag-kosovo": {"a": "flag: Kosovo", "b": "1F1FD-1F1F0", "j": ["banner", "flag", "country", "nation", "xk"]}, "flag-yemen": {"a": "flag: Yemen", "b": "1F1FE-1F1EA", "j": ["banner", "flag", "nation", "ye", "country"]}, "flag-mayotte": {"a": "flag: Mayotte", "b": "1F1FE-1F1F9", "j": ["banner", "flag", "yt", "country", "nation"]}, "flag-south-africa": {"a": "flag: South Africa", "b": "1F1FF-1F1E6", "j": ["banner", "africa", "flag", "nation", "country", "south"]}, "flag-zambia": {"a": "flag: Zambia", "b": "1F1FF-1F1F2", "j": ["banner", "flag", "zm", "country", "nation"]}, "flag-zimbabwe": {"a": "flag: Zimbabwe", "b": "1F1FF-1F1FC", "j": ["banner", "flag", "zw", "country", "nation"]}, "flag-england": {"a": "flag: England", "b": "1F3F4-E0067-E0062-E0065-E006E-E0067-E007F", "j": ["english", "flag"]}, "flag-scotland": {"a": "flag: Scotland", "b": "1F3F4-E0067-E0062-E0073-E0063-E0074-E007F", "j": ["scottish", "flag"]}, "flag-wales": {"a": "flag: Wales", "b": "1F3F4-E0067-E0062-E0077-E006C-E0073-E007F", "j": ["welsh", "flag"]}}, "aliases": {}} \ No newline at end of file From a40adb903af21802abbf2e47877c44e886847be0 Mon Sep 17 00:00:00 2001 From: oogm Date: Fri, 26 Mar 2021 17:21:02 +0100 Subject: [PATCH 5/6] Update emoji import script to ease execution, output smaller .json files and capitalize emoji names --- tools/import_emojis.py | 25 ++++++++++++++++--- .../main/res/raw/emoji_picker_datasource.json | 2 +- 2 files changed, 22 insertions(+), 5 deletions(-) mode change 100644 => 100755 tools/import_emojis.py diff --git a/tools/import_emojis.py b/tools/import_emojis.py old mode 100644 new mode 100755 index 6f204c23f2..f5638175a9 --- a/tools/import_emojis.py +++ b/tools/import_emojis.py @@ -1,10 +1,15 @@ +#!/usr/bin/env python3 from collections import OrderedDict import requests import json import re +import os from bs4 import BeautifulSoup +# A list of words to not capitalize in emoji-names +capitalization_exclude = {'with', 'a', 'at', 'of', 'for', 'and', 'over', 'the', 'off', 'on', 'out', 'in', 'but', 'or'} + # Create skeleton of the final json file as a python dictionary: emoji_picker_datasource = { "compressed": True, @@ -17,6 +22,7 @@ emoji_picker_datasource_emojis = emoji_picker_datasource["emojis"] # Get official emoji list from unicode.org (Emoji List, v13.1 at time of writing) +print("Fetching emoji list from Unicode.org...",) req = requests.get("https://unicode.org/emoji/charts/emoji-list.html") soup = BeautifulSoup(req.content, 'html.parser') @@ -24,6 +30,7 @@ soup = BeautifulSoup(req.content, 'html.parser') table = soup.body.table # Go over all rows +print("Extracting emojis...") for row in table.find_all('tr'): # Add "bigheads" rows to categories if 'bighead' in next(row.children)['class']: @@ -55,6 +62,11 @@ for row in table.find_all('tr'): emoji_id = emoji_id.strip() # Remove leading/trailing whitespaces emoji_id = emoji_id.replace(' ', '-') + # Capitalize name according to the same rules as the previous emoji_picker_datasource.json + # - Words are separated by any non-word character (\W), e.g. space, comma, parentheses, dots, etc. + # - Words are capitalized if they are either at the beginning of the name OR not in capitalization_exclude (extracted from the previous datasource, too) + emoji_name_cap = "".join([w.capitalize() if i == 0 or w not in capitalization_exclude else w for i, w in enumerate(re.split('(\W)', emoji_name))]) + # Extract emoji unicode-codepoint emoji_code_raw = code_element.text emoji_code_list = emoji_code_raw.split(" ") @@ -69,7 +81,7 @@ for row in table.find_all('tr'): # Add the emoji itself to the "emojis" dict emoji_picker_datasource_emojis[emoji_id] = { - "a": emoji_name, + "a": emoji_name_cap, "b": emoji_code, "j": emoji_keywords } @@ -78,10 +90,12 @@ for row in table.find_all('tr'): # There is no official specification of keywords beyond that, but muan/emojilib maintains a well maintained and # established repository with additional keywords. We extend our list with the keywords from there. # At the time of writing it had additional keyword information for all emojis except a few from the newest unicode 13.1. +print("Fetching additional keywords from Emojilib...") req = requests.get("https://raw.githubusercontent.com/muan/emojilib/main/dist/emoji-en-US.json") emojilib_data = json.loads(req.content) # We just go over all the official emojis from unicode, and add the keywords there +print("Adding keywords to emojis...") for emoji in emoji_picker_datasource_emojis: emoji_name = emoji_picker_datasource_emojis[emoji]["a"] emoji_code = emoji_picker_datasource_emojis[emoji]["b"] @@ -95,7 +109,7 @@ for emoji in emoji_picker_datasource_emojis: elif emoji_unicode+chr(0xfe0f) in emojilib_data: emoji_additional_keywords = emojilib_data[emoji_unicode+chr(0xfe0f)] else: - print("No additional keywords for", emoji_unicode, emoji_picker_datasource_emojis[emoji]) + print("* No additional keywords for", emoji_unicode, emoji_picker_datasource_emojis[emoji]) continue # If additional keywords exist, add them to emoji_picker_datasource_emojis @@ -110,5 +124,8 @@ for emoji in emoji_picker_datasource_emojis: emoji_picker_datasource['categories'] = [x for x in emoji_picker_datasource['categories'] if x['id'] != 'component'] # Write result to file (overwrite previous), without escaping unicode characters -with open("../vector/src/main/res/raw/emoji_picker_datasource.json", "w") as outfile: - json.dump(emoji_picker_datasource, outfile, ensure_ascii=False) +print("Writing emoji_picker_datasource.json...") +scripts_dir = os.path.dirname(os.path.abspath(__file__)) +with open(os.path.join(scripts_dir, "../vector/src/main/res/raw/emoji_picker_datasource.json"), "w") as outfile: + json.dump(emoji_picker_datasource, outfile, ensure_ascii=False, separators=(',', ':')) +print("Done.") diff --git a/vector/src/main/res/raw/emoji_picker_datasource.json b/vector/src/main/res/raw/emoji_picker_datasource.json index e0314e9a77..cc676a4dd0 100644 --- a/vector/src/main/res/raw/emoji_picker_datasource.json +++ b/vector/src/main/res/raw/emoji_picker_datasource.json @@ -1 +1 @@ -{"compressed": true, "categories": [{"id": "smileys_&_emotion", "name": "Smileys & Emotion", "emojis": ["grinning-face", "grinning-face-with-big-eyes", "grinning-face-with-smiling-eyes", "beaming-face-with-smiling-eyes", "grinning-squinting-face", "grinning-face-with-sweat", "rolling-on-the-floor-laughing", "face-with-tears-of-joy", "slightly-smiling-face", "upsidedown-face", "winking-face", "smiling-face-with-smiling-eyes", "smiling-face-with-halo", "smiling-face-with-hearts", "smiling-face-with-hearteyes", "starstruck", "face-blowing-a-kiss", "kissing-face", "smiling-face", "kissing-face-with-closed-eyes", "kissing-face-with-smiling-eyes", "smiling-face-with-tear", "face-savoring-food", "face-with-tongue", "winking-face-with-tongue", "zany-face", "squinting-face-with-tongue", "moneymouth-face", "hugging-face", "face-with-hand-over-mouth", "shushing-face", "thinking-face", "zippermouth-face", "face-with-raised-eyebrow", "neutral-face", "expressionless-face", "face-without-mouth", "face-in-clouds", "smirking-face", "unamused-face", "face-with-rolling-eyes", "grimacing-face", "face-exhaling", "lying-face", "relieved-face", "pensive-face", "sleepy-face", "drooling-face", "sleeping-face", "face-with-medical-mask", "face-with-thermometer", "face-with-headbandage", "nauseated-face", "face-vomiting", "sneezing-face", "hot-face", "cold-face", "woozy-face", "knockedout-face", "face-with-spiral-eyes", "exploding-head", "cowboy-hat-face", "partying-face", "disguised-face", "smiling-face-with-sunglasses", "nerd-face", "face-with-monocle", "confused-face", "worried-face", "slightly-frowning-face", "frowning-face", "face-with-open-mouth", "hushed-face", "astonished-face", "flushed-face", "pleading-face", "frowning-face-with-open-mouth", "anguished-face", "fearful-face", "anxious-face-with-sweat", "sad-but-relieved-face", "crying-face", "loudly-crying-face", "face-screaming-in-fear", "confounded-face", "persevering-face", "disappointed-face", "downcast-face-with-sweat", "weary-face", "tired-face", "yawning-face", "face-with-steam-from-nose", "pouting-face", "angry-face", "face-with-symbols-on-mouth", "smiling-face-with-horns", "angry-face-with-horns", "skull", "skull-and-crossbones", "pile-of-poo", "clown-face", "ogre", "goblin", "ghost", "alien", "alien-monster", "robot", "grinning-cat", "grinning-cat-with-smiling-eyes", "cat-with-tears-of-joy", "smiling-cat-with-hearteyes", "cat-with-wry-smile", "kissing-cat", "weary-cat", "crying-cat", "pouting-cat", "seenoevil-monkey", "hearnoevil-monkey", "speaknoevil-monkey", "kiss-mark", "love-letter", "heart-with-arrow", "heart-with-ribbon", "sparkling-heart", "growing-heart", "beating-heart", "revolving-hearts", "two-hearts", "heart-decoration", "heart-exclamation", "broken-heart", "heart-on-fire", "mending-heart", "red-heart", "orange-heart", "yellow-heart", "green-heart", "blue-heart", "purple-heart", "brown-heart", "black-heart", "white-heart", "hundred-points", "anger-symbol", "collision", "dizzy", "sweat-droplets", "dashing-away", "hole", "bomb", "speech-balloon", "eye-in-speech-bubble", "left-speech-bubble", "right-anger-bubble", "thought-balloon", "zzz"]}, {"id": "people_&_body", "name": "People & Body", "emojis": ["waving-hand", "raised-back-of-hand", "hand-with-fingers-splayed", "raised-hand", "vulcan-salute", "ok-hand", "pinched-fingers", "pinching-hand", "victory-hand", "crossed-fingers", "loveyou-gesture", "sign-of-the-horns", "call-me-hand", "backhand-index-pointing-left", "backhand-index-pointing-right", "backhand-index-pointing-up", "middle-finger", "backhand-index-pointing-down", "index-pointing-up", "thumbs-up", "thumbs-down", "raised-fist", "oncoming-fist", "leftfacing-fist", "rightfacing-fist", "clapping-hands", "raising-hands", "open-hands", "palms-up-together", "handshake", "folded-hands", "writing-hand", "nail-polish", "selfie", "flexed-biceps", "mechanical-arm", "mechanical-leg", "leg", "foot", "ear", "ear-with-hearing-aid", "nose", "brain", "anatomical-heart", "lungs", "tooth", "bone", "eyes", "eye", "tongue", "mouth", "baby", "child", "boy", "girl", "person", "person-blond-hair", "man", "person-beard", "man-beard", "woman-beard", "man-red-hair", "man-curly-hair", "man-white-hair", "man-bald", "woman", "woman-red-hair", "person-red-hair", "woman-curly-hair", "person-curly-hair", "woman-white-hair", "person-white-hair", "woman-bald", "person-bald", "woman-blond-hair", "man-blond-hair", "older-person", "old-man", "old-woman", "person-frowning", "man-frowning", "woman-frowning", "person-pouting", "man-pouting", "woman-pouting", "person-gesturing-no", "man-gesturing-no", "woman-gesturing-no", "person-gesturing-ok", "man-gesturing-ok", "woman-gesturing-ok", "person-tipping-hand", "man-tipping-hand", "woman-tipping-hand", "person-raising-hand", "man-raising-hand", "woman-raising-hand", "deaf-person", "deaf-man", "deaf-woman", "person-bowing", "man-bowing", "woman-bowing", "person-facepalming", "man-facepalming", "woman-facepalming", "person-shrugging", "man-shrugging", "woman-shrugging", "health-worker", "man-health-worker", "woman-health-worker", "student", "man-student", "woman-student", "teacher", "man-teacher", "woman-teacher", "judge", "man-judge", "woman-judge", "farmer", "man-farmer", "woman-farmer", "cook", "man-cook", "woman-cook", "mechanic", "man-mechanic", "woman-mechanic", "factory-worker", "man-factory-worker", "woman-factory-worker", "office-worker", "man-office-worker", "woman-office-worker", "scientist", "man-scientist", "woman-scientist", "technologist", "man-technologist", "woman-technologist", "singer", "man-singer", "woman-singer", "artist", "man-artist", "woman-artist", "pilot", "man-pilot", "woman-pilot", "astronaut", "man-astronaut", "woman-astronaut", "firefighter", "man-firefighter", "woman-firefighter", "police-officer", "man-police-officer", "woman-police-officer", "detective", "man-detective", "woman-detective", "guard", "man-guard", "woman-guard", "ninja", "construction-worker", "man-construction-worker", "woman-construction-worker", "prince", "princess", "person-wearing-turban", "man-wearing-turban", "woman-wearing-turban", "person-with-skullcap", "woman-with-headscarf", "person-in-tuxedo", "man-in-tuxedo", "woman-in-tuxedo", "person-with-veil", "man-with-veil", "woman-with-veil", "pregnant-woman", "breastfeeding", "woman-feeding-baby", "man-feeding-baby", "person-feeding-baby", "baby-angel", "santa-claus", "mrs-claus", "mx-claus", "superhero", "man-superhero", "woman-superhero", "supervillain", "man-supervillain", "woman-supervillain", "mage", "man-mage", "woman-mage", "fairy", "man-fairy", "woman-fairy", "vampire", "man-vampire", "woman-vampire", "merperson", "merman", "mermaid", "elf", "man-elf", "woman-elf", "genie", "man-genie", "woman-genie", "zombie", "man-zombie", "woman-zombie", "person-getting-massage", "man-getting-massage", "woman-getting-massage", "person-getting-haircut", "man-getting-haircut", "woman-getting-haircut", "person-walking", "man-walking", "woman-walking", "person-standing", "man-standing", "woman-standing", "person-kneeling", "man-kneeling", "woman-kneeling", "person-with-white-cane", "man-with-white-cane", "woman-with-white-cane", "person-in-motorized-wheelchair", "man-in-motorized-wheelchair", "woman-in-motorized-wheelchair", "person-in-manual-wheelchair", "man-in-manual-wheelchair", "woman-in-manual-wheelchair", "person-running", "man-running", "woman-running", "woman-dancing", "man-dancing", "person-in-suit-levitating", "people-with-bunny-ears", "men-with-bunny-ears", "women-with-bunny-ears", "person-in-steamy-room", "man-in-steamy-room", "woman-in-steamy-room", "person-climbing", "man-climbing", "woman-climbing", "person-fencing", "horse-racing", "skier", "snowboarder", "person-golfing", "man-golfing", "woman-golfing", "person-surfing", "man-surfing", "woman-surfing", "person-rowing-boat", "man-rowing-boat", "woman-rowing-boat", "person-swimming", "man-swimming", "woman-swimming", "person-bouncing-ball", "man-bouncing-ball", "woman-bouncing-ball", "person-lifting-weights", "man-lifting-weights", "woman-lifting-weights", "person-biking", "man-biking", "woman-biking", "person-mountain-biking", "man-mountain-biking", "woman-mountain-biking", "person-cartwheeling", "man-cartwheeling", "woman-cartwheeling", "people-wrestling", "men-wrestling", "women-wrestling", "person-playing-water-polo", "man-playing-water-polo", "woman-playing-water-polo", "person-playing-handball", "man-playing-handball", "woman-playing-handball", "person-juggling", "man-juggling", "woman-juggling", "person-in-lotus-position", "man-in-lotus-position", "woman-in-lotus-position", "person-taking-bath", "person-in-bed", "people-holding-hands", "women-holding-hands", "woman-and-man-holding-hands", "men-holding-hands", "kiss", "kiss-woman-man", "kiss-man-man", "kiss-woman-woman", "couple-with-heart", "couple-with-heart-woman-man", "couple-with-heart-man-man", "couple-with-heart-woman-woman", "family", "family-man-woman-boy", "family-man-woman-girl", "family-man-woman-girl-boy", "family-man-woman-boy-boy", "family-man-woman-girl-girl", "family-man-man-boy", "family-man-man-girl", "family-man-man-girl-boy", "family-man-man-boy-boy", "family-man-man-girl-girl", "family-woman-woman-boy", "family-woman-woman-girl", "family-woman-woman-girl-boy", "family-woman-woman-boy-boy", "family-woman-woman-girl-girl", "family-man-boy", "family-man-boy-boy", "family-man-girl", "family-man-girl-boy", "family-man-girl-girl", "family-woman-boy", "family-woman-boy-boy", "family-woman-girl", "family-woman-girl-boy", "family-woman-girl-girl", "speaking-head", "bust-in-silhouette", "busts-in-silhouette", "people-hugging", "footprints"]}, {"id": "animals_&_nature", "name": "Animals & Nature", "emojis": ["monkey-face", "monkey", "gorilla", "orangutan", "dog-face", "dog", "guide-dog", "service-dog", "poodle", "wolf", "fox", "raccoon", "cat-face", "cat", "black-cat", "lion", "tiger-face", "tiger", "leopard", "horse-face", "horse", "unicorn", "zebra", "deer", "bison", "cow-face", "ox", "water-buffalo", "cow", "pig-face", "pig", "boar", "pig-nose", "ram", "ewe", "goat", "camel", "twohump-camel", "llama", "giraffe", "elephant", "mammoth", "rhinoceros", "hippopotamus", "mouse-face", "mouse", "rat", "hamster", "rabbit-face", "rabbit", "chipmunk", "beaver", "hedgehog", "bat", "bear", "polar-bear", "koala", "panda", "sloth", "otter", "skunk", "kangaroo", "badger", "paw-prints", "turkey", "chicken", "rooster", "hatching-chick", "baby-chick", "frontfacing-baby-chick", "bird", "penguin", "dove", "eagle", "duck", "swan", "owl", "dodo", "feather", "flamingo", "peacock", "parrot", "frog", "crocodile", "turtle", "lizard", "snake", "dragon-face", "dragon", "sauropod", "trex", "spouting-whale", "whale", "dolphin", "seal", "fish", "tropical-fish", "blowfish", "shark", "octopus", "spiral-shell", "snail", "butterfly", "bug", "ant", "honeybee", "beetle", "lady-beetle", "cricket", "cockroach", "spider", "spider-web", "scorpion", "mosquito", "fly", "worm", "microbe", "bouquet", "cherry-blossom", "white-flower", "rosette", "rose", "wilted-flower", "hibiscus", "sunflower", "blossom", "tulip", "seedling", "potted-plant", "evergreen-tree", "deciduous-tree", "palm-tree", "cactus", "sheaf-of-rice", "herb", "shamrock", "four-leaf-clover", "maple-leaf", "fallen-leaf", "leaf-fluttering-in-wind"]}, {"id": "food_&_drink", "name": "Food & Drink", "emojis": ["grapes", "melon", "watermelon", "tangerine", "lemon", "banana", "pineapple", "mango", "red-apple", "green-apple", "pear", "peach", "cherries", "strawberry", "blueberries", "kiwi-fruit", "tomato", "olive", "coconut", "avocado", "eggplant", "potato", "carrot", "ear-of-corn", "hot-pepper", "bell-pepper", "cucumber", "leafy-green", "broccoli", "garlic", "onion", "mushroom", "peanuts", "chestnut", "bread", "croissant", "baguette-bread", "flatbread", "pretzel", "bagel", "pancakes", "waffle", "cheese-wedge", "meat-on-bone", "poultry-leg", "cut-of-meat", "bacon", "hamburger", "french-fries", "pizza", "hot-dog", "sandwich", "taco", "burrito", "tamale", "stuffed-flatbread", "falafel", "egg", "cooking", "shallow-pan-of-food", "pot-of-food", "fondue", "bowl-with-spoon", "green-salad", "popcorn", "butter", "salt", "canned-food", "bento-box", "rice-cracker", "rice-ball", "cooked-rice", "curry-rice", "steaming-bowl", "spaghetti", "roasted-sweet-potato", "oden", "sushi", "fried-shrimp", "fish-cake-with-swirl", "moon-cake", "dango", "dumpling", "fortune-cookie", "takeout-box", "crab", "lobster", "shrimp", "squid", "oyster", "soft-ice-cream", "shaved-ice", "ice-cream", "doughnut", "cookie", "birthday-cake", "shortcake", "cupcake", "pie", "chocolate-bar", "candy", "lollipop", "custard", "honey-pot", "baby-bottle", "glass-of-milk", "hot-beverage", "teapot", "teacup-without-handle", "sake", "bottle-with-popping-cork", "wine-glass", "cocktail-glass", "tropical-drink", "beer-mug", "clinking-beer-mugs", "clinking-glasses", "tumbler-glass", "cup-with-straw", "bubble-tea", "beverage-box", "mate", "ice", "chopsticks", "fork-and-knife-with-plate", "fork-and-knife", "spoon", "kitchen-knife", "amphora"]}, {"id": "travel_&_places", "name": "Travel & Places", "emojis": ["globe-showing-europeafrica", "globe-showing-americas", "globe-showing-asiaaustralia", "globe-with-meridians", "world-map", "map-of-japan", "compass", "snowcapped-mountain", "mountain", "volcano", "mount-fuji", "camping", "beach-with-umbrella", "desert", "desert-island", "national-park", "stadium", "classical-building", "building-construction", "brick", "rock", "wood", "hut", "houses", "derelict-house", "house", "house-with-garden", "office-building", "japanese-post-office", "post-office", "hospital", "bank", "hotel", "love-hotel", "convenience-store", "school", "department-store", "factory", "japanese-castle", "castle", "wedding", "tokyo-tower", "statue-of-liberty", "church", "mosque", "hindu-temple", "synagogue", "shinto-shrine", "kaaba", "fountain", "tent", "foggy", "night-with-stars", "cityscape", "sunrise-over-mountains", "sunrise", "cityscape-at-dusk", "sunset", "bridge-at-night", "hot-springs", "carousel-horse", "ferris-wheel", "roller-coaster", "barber-pole", "circus-tent", "locomotive", "railway-car", "highspeed-train", "bullet-train", "train", "metro", "light-rail", "station", "tram", "monorail", "mountain-railway", "tram-car", "bus", "oncoming-bus", "trolleybus", "minibus", "ambulance", "fire-engine", "police-car", "oncoming-police-car", "taxi", "oncoming-taxi", "automobile", "oncoming-automobile", "sport-utility-vehicle", "pickup-truck", "delivery-truck", "articulated-lorry", "tractor", "racing-car", "motorcycle", "motor-scooter", "manual-wheelchair", "motorized-wheelchair", "auto-rickshaw", "bicycle", "kick-scooter", "skateboard", "roller-skate", "bus-stop", "motorway", "railway-track", "oil-drum", "fuel-pump", "police-car-light", "horizontal-traffic-light", "vertical-traffic-light", "stop-sign", "construction", "anchor", "sailboat", "canoe", "speedboat", "passenger-ship", "ferry", "motor-boat", "ship", "airplane", "small-airplane", "airplane-departure", "airplane-arrival", "parachute", "seat", "helicopter", "suspension-railway", "mountain-cableway", "aerial-tramway", "satellite", "rocket", "flying-saucer", "bellhop-bell", "luggage", "hourglass-done", "hourglass-not-done", "watch", "alarm-clock", "stopwatch", "timer-clock", "mantelpiece-clock", "twelve-oclock", "twelvethirty", "one-oclock", "onethirty", "two-oclock", "twothirty", "three-oclock", "threethirty", "four-oclock", "fourthirty", "five-oclock", "fivethirty", "six-oclock", "sixthirty", "seven-oclock", "seventhirty", "eight-oclock", "eightthirty", "nine-oclock", "ninethirty", "ten-oclock", "tenthirty", "eleven-oclock", "eleventhirty", "new-moon", "waxing-crescent-moon", "first-quarter-moon", "waxing-gibbous-moon", "full-moon", "waning-gibbous-moon", "last-quarter-moon", "waning-crescent-moon", "crescent-moon", "new-moon-face", "first-quarter-moon-face", "last-quarter-moon-face", "thermometer", "sun", "full-moon-face", "sun-with-face", "ringed-planet", "star", "glowing-star", "shooting-star", "milky-way", "cloud", "sun-behind-cloud", "cloud-with-lightning-and-rain", "sun-behind-small-cloud", "sun-behind-large-cloud", "sun-behind-rain-cloud", "cloud-with-rain", "cloud-with-snow", "cloud-with-lightning", "tornado", "fog", "wind-face", "cyclone", "rainbow", "closed-umbrella", "umbrella", "umbrella-with-rain-drops", "umbrella-on-ground", "high-voltage", "snowflake", "snowman", "snowman-without-snow", "comet", "fire", "droplet", "water-wave"]}, {"id": "activities", "name": "Activities", "emojis": ["jackolantern", "christmas-tree", "fireworks", "sparkler", "firecracker", "sparkles", "balloon", "party-popper", "confetti-ball", "tanabata-tree", "pine-decoration", "japanese-dolls", "carp-streamer", "wind-chime", "moon-viewing-ceremony", "red-envelope", "ribbon", "wrapped-gift", "reminder-ribbon", "admission-tickets", "ticket", "military-medal", "trophy", "sports-medal", "1st-place-medal", "2nd-place-medal", "3rd-place-medal", "soccer-ball", "baseball", "softball", "basketball", "volleyball", "american-football", "rugby-football", "tennis", "flying-disc", "bowling", "cricket-game", "field-hockey", "ice-hockey", "lacrosse", "ping-pong", "badminton", "boxing-glove", "martial-arts-uniform", "goal-net", "flag-in-hole", "ice-skate", "fishing-pole", "diving-mask", "running-shirt", "skis", "sled", "curling-stone", "bullseye", "yoyo", "kite", "pool-8-ball", "crystal-ball", "magic-wand", "nazar-amulet", "video-game", "joystick", "slot-machine", "game-die", "puzzle-piece", "teddy-bear", "piata", "nesting-dolls", "spade-suit", "heart-suit", "diamond-suit", "club-suit", "chess-pawn", "joker", "mahjong-red-dragon", "flower-playing-cards", "performing-arts", "framed-picture", "artist-palette", "thread", "sewing-needle", "yarn", "knot"]}, {"id": "objects", "name": "Objects", "emojis": ["glasses", "sunglasses", "goggles", "lab-coat", "safety-vest", "necktie", "tshirt", "jeans", "scarf", "gloves", "coat", "socks", "dress", "kimono", "sari", "onepiece-swimsuit", "briefs", "shorts", "bikini", "womans-clothes", "purse", "handbag", "clutch-bag", "shopping-bags", "backpack", "thong-sandal", "mans-shoe", "running-shoe", "hiking-boot", "flat-shoe", "highheeled-shoe", "womans-sandal", "ballet-shoes", "womans-boot", "crown", "womans-hat", "top-hat", "graduation-cap", "billed-cap", "military-helmet", "rescue-workers-helmet", "prayer-beads", "lipstick", "ring", "gem-stone", "muted-speaker", "speaker-low-volume", "speaker-medium-volume", "speaker-high-volume", "loudspeaker", "megaphone", "postal-horn", "bell", "bell-with-slash", "musical-score", "musical-note", "musical-notes", "studio-microphone", "level-slider", "control-knobs", "microphone", "headphone", "radio", "saxophone", "accordion", "guitar", "musical-keyboard", "trumpet", "violin", "banjo", "drum", "long-drum", "mobile-phone", "mobile-phone-with-arrow", "telephone", "telephone-receiver", "pager", "fax-machine", "battery", "electric-plug", "laptop", "desktop-computer", "printer", "keyboard", "computer-mouse", "trackball", "computer-disk", "floppy-disk", "optical-disk", "dvd", "abacus", "movie-camera", "film-frames", "film-projector", "clapper-board", "television", "camera", "camera-with-flash", "video-camera", "videocassette", "magnifying-glass-tilted-left", "magnifying-glass-tilted-right", "candle", "light-bulb", "flashlight", "red-paper-lantern", "diya-lamp", "notebook-with-decorative-cover", "closed-book", "open-book", "green-book", "blue-book", "orange-book", "books", "notebook", "ledger", "page-with-curl", "scroll", "page-facing-up", "newspaper", "rolledup-newspaper", "bookmark-tabs", "bookmark", "label", "money-bag", "coin", "yen-banknote", "dollar-banknote", "euro-banknote", "pound-banknote", "money-with-wings", "credit-card", "receipt", "chart-increasing-with-yen", "envelope", "email", "incoming-envelope", "envelope-with-arrow", "outbox-tray", "inbox-tray", "package", "closed-mailbox-with-raised-flag", "closed-mailbox-with-lowered-flag", "open-mailbox-with-raised-flag", "open-mailbox-with-lowered-flag", "postbox", "ballot-box-with-ballot", "pencil", "black-nib", "fountain-pen", "pen", "paintbrush", "crayon", "memo", "briefcase", "file-folder", "open-file-folder", "card-index-dividers", "calendar", "tearoff-calendar", "spiral-notepad", "spiral-calendar", "card-index", "chart-increasing", "chart-decreasing", "bar-chart", "clipboard", "pushpin", "round-pushpin", "paperclip", "linked-paperclips", "straight-ruler", "triangular-ruler", "scissors", "card-file-box", "file-cabinet", "wastebasket", "locked", "unlocked", "locked-with-pen", "locked-with-key", "key", "old-key", "hammer", "axe", "pick", "hammer-and-pick", "hammer-and-wrench", "dagger", "crossed-swords", "water-pistol", "boomerang", "bow-and-arrow", "shield", "carpentry-saw", "wrench", "screwdriver", "nut-and-bolt", "gear", "clamp", "balance-scale", "white-cane", "link", "chains", "hook", "toolbox", "magnet", "ladder", "alembic", "test-tube", "petri-dish", "dna", "microscope", "telescope", "satellite-antenna", "syringe", "drop-of-blood", "pill", "adhesive-bandage", "stethoscope", "door", "elevator", "mirror", "window", "bed", "couch-and-lamp", "chair", "toilet", "plunger", "shower", "bathtub", "mouse-trap", "razor", "lotion-bottle", "safety-pin", "broom", "basket", "roll-of-paper", "bucket", "soap", "toothbrush", "sponge", "fire-extinguisher", "shopping-cart", "cigarette", "coffin", "headstone", "funeral-urn", "moai", "placard"]}, {"id": "symbols", "name": "Symbols", "emojis": ["atm-sign", "litter-in-bin-sign", "potable-water", "wheelchair-symbol", "mens-room", "womens-room", "restroom", "baby-symbol", "water-closet", "passport-control", "customs", "baggage-claim", "left-luggage", "warning", "children-crossing", "no-entry", "prohibited", "no-bicycles", "no-smoking", "no-littering", "nonpotable-water", "no-pedestrians", "no-mobile-phones", "no-one-under-eighteen", "radioactive", "biohazard", "up-arrow", "upright-arrow", "right-arrow", "downright-arrow", "down-arrow", "downleft-arrow", "left-arrow", "upleft-arrow", "updown-arrow", "leftright-arrow", "right-arrow-curving-left", "left-arrow-curving-right", "right-arrow-curving-up", "right-arrow-curving-down", "clockwise-vertical-arrows", "counterclockwise-arrows-button", "back-arrow", "end-arrow", "on-arrow", "soon-arrow", "top-arrow", "place-of-worship", "atom-symbol", "om", "star-of-david", "wheel-of-dharma", "yin-yang", "latin-cross", "orthodox-cross", "star-and-crescent", "peace-symbol", "menorah", "dotted-sixpointed-star", "aries", "taurus", "gemini", "cancer", "leo", "virgo", "libra", "scorpio", "sagittarius", "capricorn", "aquarius", "pisces", "ophiuchus", "shuffle-tracks-button", "repeat-button", "repeat-single-button", "play-button", "fastforward-button", "next-track-button", "play-or-pause-button", "reverse-button", "fast-reverse-button", "last-track-button", "upwards-button", "fast-up-button", "downwards-button", "fast-down-button", "pause-button", "stop-button", "record-button", "eject-button", "cinema", "dim-button", "bright-button", "antenna-bars", "vibration-mode", "mobile-phone-off", "female-sign", "male-sign", "transgender-symbol", "multiply", "plus", "minus", "divide", "infinity", "double-exclamation-mark", "exclamation-question-mark", "red-question-mark", "white-question-mark", "white-exclamation-mark", "red-exclamation-mark", "wavy-dash", "currency-exchange", "heavy-dollar-sign", "medical-symbol", "recycling-symbol", "fleurdelis", "trident-emblem", "name-badge", "japanese-symbol-for-beginner", "hollow-red-circle", "check-mark-button", "check-box-with-check", "check-mark", "cross-mark", "cross-mark-button", "curly-loop", "double-curly-loop", "part-alternation-mark", "eightspoked-asterisk", "eightpointed-star", "sparkle", "copyright", "registered", "trade-mark", "keycap", "keycap", "keycap-0", "keycap-1", "keycap-2", "keycap-3", "keycap-4", "keycap-5", "keycap-6", "keycap-7", "keycap-8", "keycap-9", "keycap-10", "input-latin-uppercase", "input-latin-lowercase", "input-numbers", "input-symbols", "input-latin-letters", "a-button-blood-type", "ab-button-blood-type", "b-button-blood-type", "cl-button", "cool-button", "free-button", "information", "id-button", "circled-m", "new-button", "ng-button", "o-button-blood-type", "ok-button", "p-button", "sos-button", "up-button", "vs-button", "japanese-here-button", "japanese-service-charge-button", "japanese-monthly-amount-button", "japanese-not-free-of-charge-button", "japanese-reserved-button", "japanese-bargain-button", "japanese-discount-button", "japanese-free-of-charge-button", "japanese-prohibited-button", "japanese-acceptable-button", "japanese-application-button", "japanese-passing-grade-button", "japanese-vacancy-button", "japanese-congratulations-button", "japanese-secret-button", "japanese-open-for-business-button", "japanese-no-vacancy-button", "red-circle", "orange-circle", "yellow-circle", "green-circle", "blue-circle", "purple-circle", "brown-circle", "black-circle", "white-circle", "red-square", "orange-square", "yellow-square", "green-square", "blue-square", "purple-square", "brown-square", "black-large-square", "white-large-square", "black-medium-square", "white-medium-square", "black-mediumsmall-square", "white-mediumsmall-square", "black-small-square", "white-small-square", "large-orange-diamond", "large-blue-diamond", "small-orange-diamond", "small-blue-diamond", "red-triangle-pointed-up", "red-triangle-pointed-down", "diamond-with-a-dot", "radio-button", "white-square-button", "black-square-button"]}, {"id": "flags", "name": "Flags", "emojis": ["chequered-flag", "triangular-flag", "crossed-flags", "black-flag", "white-flag", "rainbow-flag", "transgender-flag", "pirate-flag", "flag-ascension-island", "flag-andorra", "flag-united-arab-emirates", "flag-afghanistan", "flag-antigua--barbuda", "flag-anguilla", "flag-albania", "flag-armenia", "flag-angola", "flag-antarctica", "flag-argentina", "flag-american-samoa", "flag-austria", "flag-australia", "flag-aruba", "flag-land-islands", "flag-azerbaijan", "flag-bosnia--herzegovina", "flag-barbados", "flag-bangladesh", "flag-belgium", "flag-burkina-faso", "flag-bulgaria", "flag-bahrain", "flag-burundi", "flag-benin", "flag-st-barthlemy", "flag-bermuda", "flag-brunei", "flag-bolivia", "flag-caribbean-netherlands", "flag-brazil", "flag-bahamas", "flag-bhutan", "flag-bouvet-island", "flag-botswana", "flag-belarus", "flag-belize", "flag-canada", "flag-cocos-keeling-islands", "flag-congo--kinshasa", "flag-central-african-republic", "flag-congo--brazzaville", "flag-switzerland", "flag-cte-divoire", "flag-cook-islands", "flag-chile", "flag-cameroon", "flag-china", "flag-colombia", "flag-clipperton-island", "flag-costa-rica", "flag-cuba", "flag-cape-verde", "flag-curaao", "flag-christmas-island", "flag-cyprus", "flag-czechia", "flag-germany", "flag-diego-garcia", "flag-djibouti", "flag-denmark", "flag-dominica", "flag-dominican-republic", "flag-algeria", "flag-ceuta--melilla", "flag-ecuador", "flag-estonia", "flag-egypt", "flag-western-sahara", "flag-eritrea", "flag-spain", "flag-ethiopia", "flag-european-union", "flag-finland", "flag-fiji", "flag-falkland-islands", "flag-micronesia", "flag-faroe-islands", "flag-france", "flag-gabon", "flag-united-kingdom", "flag-grenada", "flag-georgia", "flag-french-guiana", "flag-guernsey", "flag-ghana", "flag-gibraltar", "flag-greenland", "flag-gambia", "flag-guinea", "flag-guadeloupe", "flag-equatorial-guinea", "flag-greece", "flag-south-georgia--south-sandwich-islands", "flag-guatemala", "flag-guam", "flag-guineabissau", "flag-guyana", "flag-hong-kong-sar-china", "flag-heard--mcdonald-islands", "flag-honduras", "flag-croatia", "flag-haiti", "flag-hungary", "flag-canary-islands", "flag-indonesia", "flag-ireland", "flag-israel", "flag-isle-of-man", "flag-india", "flag-british-indian-ocean-territory", "flag-iraq", "flag-iran", "flag-iceland", "flag-italy", "flag-jersey", "flag-jamaica", "flag-jordan", "flag-japan", "flag-kenya", "flag-kyrgyzstan", "flag-cambodia", "flag-kiribati", "flag-comoros", "flag-st-kitts--nevis", "flag-north-korea", "flag-south-korea", "flag-kuwait", "flag-cayman-islands", "flag-kazakhstan", "flag-laos", "flag-lebanon", "flag-st-lucia", "flag-liechtenstein", "flag-sri-lanka", "flag-liberia", "flag-lesotho", "flag-lithuania", "flag-luxembourg", "flag-latvia", "flag-libya", "flag-morocco", "flag-monaco", "flag-moldova", "flag-montenegro", "flag-st-martin", "flag-madagascar", "flag-marshall-islands", "flag-north-macedonia", "flag-mali", "flag-myanmar-burma", "flag-mongolia", "flag-macao-sar-china", "flag-northern-mariana-islands", "flag-martinique", "flag-mauritania", "flag-montserrat", "flag-malta", "flag-mauritius", "flag-maldives", "flag-malawi", "flag-mexico", "flag-malaysia", "flag-mozambique", "flag-namibia", "flag-new-caledonia", "flag-niger", "flag-norfolk-island", "flag-nigeria", "flag-nicaragua", "flag-netherlands", "flag-norway", "flag-nepal", "flag-nauru", "flag-niue", "flag-new-zealand", "flag-oman", "flag-panama", "flag-peru", "flag-french-polynesia", "flag-papua-new-guinea", "flag-philippines", "flag-pakistan", "flag-poland", "flag-st-pierre--miquelon", "flag-pitcairn-islands", "flag-puerto-rico", "flag-palestinian-territories", "flag-portugal", "flag-palau", "flag-paraguay", "flag-qatar", "flag-runion", "flag-romania", "flag-serbia", "flag-russia", "flag-rwanda", "flag-saudi-arabia", "flag-solomon-islands", "flag-seychelles", "flag-sudan", "flag-sweden", "flag-singapore", "flag-st-helena", "flag-slovenia", "flag-svalbard--jan-mayen", "flag-slovakia", "flag-sierra-leone", "flag-san-marino", "flag-senegal", "flag-somalia", "flag-suriname", "flag-south-sudan", "flag-so-tom--prncipe", "flag-el-salvador", "flag-sint-maarten", "flag-syria", "flag-eswatini", "flag-tristan-da-cunha", "flag-turks--caicos-islands", "flag-chad", "flag-french-southern-territories", "flag-togo", "flag-thailand", "flag-tajikistan", "flag-tokelau", "flag-timorleste", "flag-turkmenistan", "flag-tunisia", "flag-tonga", "flag-turkey", "flag-trinidad--tobago", "flag-tuvalu", "flag-taiwan", "flag-tanzania", "flag-ukraine", "flag-uganda", "flag-us-outlying-islands", "flag-united-nations", "flag-united-states", "flag-uruguay", "flag-uzbekistan", "flag-vatican-city", "flag-st-vincent--grenadines", "flag-venezuela", "flag-british-virgin-islands", "flag-us-virgin-islands", "flag-vietnam", "flag-vanuatu", "flag-wallis--futuna", "flag-samoa", "flag-kosovo", "flag-yemen", "flag-mayotte", "flag-south-africa", "flag-zambia", "flag-zimbabwe", "flag-england", "flag-scotland", "flag-wales"]}], "emojis": {"grinning-face": {"a": "grinning face", "b": "1F600", "j": ["grin", "joy", ":D", "face", "smile", "happy"]}, "grinning-face-with-big-eyes": {"a": "grinning face with big eyes", "b": "1F603", "j": ["joy", ":)", ":D", "open", "face", "smile", "mouth", "haha", "happy", "funny"]}, "grinning-face-with-smiling-eyes": {"a": "grinning face with smiling eyes", "b": "1F604", "j": ["like", "joy", ":)", ":D", "open", "face", "smile", "eye", "mouth", "haha", "laugh", "happy", "funny"]}, "beaming-face-with-smiling-eyes": {"a": "beaming face with smiling eyes", "b": "1F601", "j": ["grin", "joy", "face", "smile", "eye", "kawaii", "happy"]}, "grinning-squinting-face": {"a": "grinning squinting face", "b": "1F606", "j": ["joy", "XD", "face", "smile", "satisfied", "mouth", "laugh", "haha", "happy", "lol", "glad"]}, "grinning-face-with-sweat": {"a": "grinning face with sweat", "b": "1F605", "j": ["sweat", "relief", "hot", "cold", "open", "face", "smile", "laugh", "happy"]}, "rolling-on-the-floor-laughing": {"a": "rolling on the floor laughing", "b": "1F923", "j": ["lol", "rolling", "rotfl", "laughing", "face", "laugh", "haha", "floor", "rofl"]}, "face-with-tears-of-joy": {"a": "face with tears of joy", "b": "1F602", "j": ["cry", "tears", "joy", "weep", "face", "laugh", "haha", "happy", "happytears", "tear"]}, "slightly-smiling-face": {"a": "slightly smiling face", "b": "1F642", "j": ["smile", "face"]}, "upsidedown-face": {"a": "upside-down face", "b": "1F643", "j": ["face", "smile", "upside_down_face", "silly", "upside-down", "flipped"]}, "winking-face": {"a": "winking face", "b": "1F609", "j": [";)", "secret", "mischievous", "face", "smile", "eye", "happy", "wink"]}, "smiling-face-with-smiling-eyes": {"a": "smiling face with smiling eyes", "b": "1F60A", "j": ["embarrassed", "joy", "flushed", "blush", "face", "smile", "eye", "happy", "shy", "crush"]}, "smiling-face-with-halo": {"a": "smiling face with halo", "b": "1F607", "j": ["heaven", "innocent", "face", "fantasy", "angel", "halo"]}, "smiling-face-with-hearts": {"a": "smiling face with hearts", "b": "1F970", "j": ["love", "like", "infatuation", "face", "valentines", "hearts", "in love", "adore", "affection", "crush"]}, "smiling-face-with-hearteyes": {"a": "smiling face with heart-eyes", "b": "1F60D", "j": ["love", "like", "heart", "infatuation", "face", "smile", "eye", "valentines", "affection", "smiling_face_with_heart_eyes", "crush"]}, "starstruck": {"a": "star-struck", "b": "1F929", "j": ["grinning", "star", "face", "star_struck", "starry", "smile", "starry-eyed", "eyes"]}, "face-blowing-a-kiss": {"a": "face blowing a kiss", "b": "1F618", "j": ["love", "like", "infatuation", "face", "valentines", "affection", "kiss"]}, "kissing-face": {"a": "kissing face", "b": "1F617", "j": ["love", "like", "infatuation", "3", "face", "valentines", "kiss"]}, "smiling-face": {"a": "smiling face", "b": "263A", "j": ["relaxed", "happiness", "massage", "blush", "face", "outlined", "smile"]}, "kissing-face-with-closed-eyes": {"a": "kissing face with closed eyes", "b": "1F61A", "j": ["love", "like", "infatuation", "face", "eye", "valentines", "closed", "affection", "kiss"]}, "kissing-face-with-smiling-eyes": {"a": "kissing face with smiling eyes", "b": "1F619", "j": ["infatuation", "face", "smile", "valentines", "eye", "affection", "kiss"]}, "smiling-face-with-tear": {"a": "smiling face with tear", "b": "1F972", "j": ["grateful", "relieved", "proud", "pretend", "touched", "smiling", "cry", "sad", "tear"]}, "face-savoring-food": {"a": "face savoring food", "b": "1F60B", "j": ["tongue", "joy", "yummy", "silly", "face", "savouring", "smile", "happy", "nom", "delicious", "yum"]}, "face-with-tongue": {"a": "face with tongue", "b": "1F61B", "j": ["tongue", "mischievous", "playful", "face", "smile", "prank", "childish"]}, "winking-face-with-tongue": {"a": "winking face with tongue", "b": "1F61C", "j": ["tongue", "playful", "mischievous", "face", "smile", "eye", "joke", "wink", "prank", "childish"]}, "zany-face": {"a": "zany face", "b": "1F92A", "j": ["large", "crazy", "face", "goofy", "eye", "small"]}, "squinting-face-with-tongue": {"a": "squinting face with tongue", "b": "1F61D", "j": ["tongue", "playful", "mischievous", "taste", "face", "horrible", "eye", "smile", "prank"]}, "moneymouth-face": {"a": "money-mouth face", "b": "1F911", "j": ["rich", "face", "dollar", "mouth", "money_mouth_face", "money"]}, "hugging-face": {"a": "hugging face", "b": "1F917", "j": ["smile", "hugging", "face", "hug"]}, "face-with-hand-over-mouth": {"a": "face with hand over mouth", "b": "1F92D", "j": ["whoops", "face", "sudden realization", "shock", "surprise"]}, "shushing-face": {"a": "shushing face", "b": "1F92B", "j": ["quiet", "shush", "face", "shhh"]}, "thinking-face": {"a": "thinking face", "b": "1F914", "j": ["think", "consider", "hmmm", "thinking", "face"]}, "zippermouth-face": {"a": "zipper-mouth face", "b": "1F910", "j": ["secret", "zipper_mouth_face", "face", "sealed", "mouth", "zipper"]}, "face-with-raised-eyebrow": {"a": "face with raised eyebrow", "b": "1F928", "j": ["disbelief", "skeptic", "disapproval", "face", "mild surprise", "scepticism", "distrust", "surprise"]}, "neutral-face": {"a": "neutral face", "b": "1F610", "j": ["deadpan", "neutral", "face", "meh", "indifference", ":|"]}, "expressionless-face": {"a": "expressionless face", "b": "1F611", "j": ["inexpressive", "indifferent", "deadpan", "-_-", "face", "meh", "expressionless", "unexpressive"]}, "face-without-mouth": {"a": "face without mouth", "b": "1F636", "j": ["hellokitty", "face", "quiet", "mouth", "silent"]}, "face-in-clouds": {"a": "⊛ face in clouds", "b": "1F636-200D-1F32B-FE0F", "j": ["absentminded", "face in clouds", "face in the fog", "head in clouds"]}, "smirking-face": {"a": "smirking face", "b": "1F60F", "j": ["smug", "face", "smile", "sarcasm", "mean", "prank", "smirk"]}, "unamused-face": {"a": "unamused face", "b": "1F612", "j": ["side_eye", "bored", "unamused", "unhappy", "straight face", "face", "skeptical", "dubious", "sarcasm", "indifference", "serious", "unimpressed"]}, "face-with-rolling-eyes": {"a": "face with rolling eyes", "b": "1F644", "j": ["rolling", "frustrated", "face", "eyeroll", "eyes"]}, "grimacing-face": {"a": "grimacing face", "b": "1F62C", "j": ["grimace", "teeth", "face"]}, "face-exhaling": {"a": "⊛ face exhaling", "b": "1F62E-200D-1F4A8", "j": ["exhale", "face exhaling", "gasp", "groan", "relief", "whisper", "whistle"]}, "lying-face": {"a": "lying face", "b": "1F925", "j": ["pinocchio", "face", "lie"]}, "relieved-face": {"a": "relieved face", "b": "1F60C", "j": ["relaxed", "massage", "happiness", "relieved", "phew", "face"]}, "pensive-face": {"a": "pensive face", "b": "1F614", "j": ["depressed", "upset", "pensive", "face", "sad", "dejected"]}, "sleepy-face": {"a": "sleepy face", "b": "1F62A", "j": ["sleep", "tired", "face", "nap", "rest"]}, "drooling-face": {"a": "drooling face", "b": "1F924", "j": ["face", "drooling"]}, "sleeping-face": {"a": "sleeping face", "b": "1F634", "j": ["night", "sleep", "tired", "zzz", "face", "sleepy"]}, "face-with-medical-mask": {"a": "face with medical mask", "b": "1F637", "j": ["ill", "mask", "cold", "face", "doctor", "disease", "sick"]}, "face-with-thermometer": {"a": "face with thermometer", "b": "1F912", "j": ["ill", "thermometer", "fever", "cold", "face", "temperature", "sick"]}, "face-with-headbandage": {"a": "face with head-bandage", "b": "1F915", "j": ["face_with_head_bandage", "face", "injury", "clumsy", "hurt", "injured", "bandage"]}, "nauseated-face": {"a": "nauseated face", "b": "1F922", "j": ["ill", "throw up", "gross", "face", "green", "sick", "vomit", "nauseated"]}, "face-vomiting": {"a": "face vomiting", "b": "1F92E", "j": ["sick", "vomit", "face", "puke"]}, "sneezing-face": {"a": "sneezing face", "b": "1F927", "j": ["gesundheit", "face", "sick", "sneeze", "allergy"]}, "hot-face": {"a": "hot face", "b": "1F975", "j": ["sweating", "heat", "hot", "red-faced", "feverish", "face", "red", "heat stroke"]}, "cold-face": {"a": "cold face", "b": "1F976", "j": ["blue", "blue-faced", "frostbite", "freezing", "cold", "face", "icicles", "frozen"]}, "woozy-face": {"a": "woozy face", "b": "1F974", "j": ["face", "intoxicated", "dizzy", "wavy mouth", "tipsy", "uneven eyes", "wavy"]}, "knockedout-face": {"a": "knocked-out face", "b": "1F635", "j": ["knocked out", "dizzy_face", "unconscious", "face", "spent", "dizzy", "dead", "xox"]}, "face-with-spiral-eyes": {"a": "⊛ face with spiral eyes", "b": "1F635-200D-1F4AB", "j": ["dizzy", "face with spiral eyes", "hypnotized", "spiral", "trouble", "whoa"]}, "exploding-head": {"a": "exploding head", "b": "1F92F", "j": ["face", "shocked", "mind blown", "blown", "mind"]}, "cowboy-hat-face": {"a": "cowboy hat face", "b": "1F920", "j": ["hat", "cowboy", "face", "cowgirl"]}, "partying-face": {"a": "partying face", "b": "1F973", "j": ["face", "hat", "celebration", "horn", "party", "woohoo"]}, "disguised-face": {"a": "disguised face", "b": "1F978", "j": ["moustache", "glasses", "face", "brows", "disguise", "pretent", "nose", "incognito"]}, "smiling-face-with-sunglasses": {"a": "smiling face with sunglasses", "b": "1F60E", "j": ["sun", "cool", "sunglasses", "bright", "face", "sunglass", "smile", "summer", "beach"]}, "nerd-face": {"a": "nerd face", "b": "1F913", "j": ["nerdy", "geek", "nerd", "face", "dork"]}, "face-with-monocle": {"a": "face with monocle", "b": "1F9D0", "j": ["wealthy", "face", "stuffy"]}, "confused-face": {"a": "confused face", "b": "1F615", "j": ["hmmm", "face", "huh", "meh", "weird", "indifference", "confused", ":/"]}, "worried-face": {"a": "worried face", "b": "1F61F", "j": ["nervous", ":(", "face", "concern", "worried"]}, "slightly-frowning-face": {"a": "slightly frowning face", "b": "1F641", "j": ["frowning", "upset", "disappointed", "frown", "face", "sad"]}, "frowning-face": {"a": "frowning face", "b": "2639", "j": ["frown", "upset", "sad", "face"]}, "face-with-open-mouth": {"a": "face with open mouth", "b": "1F62E", "j": [":O", "open", "face", "wow", "impressed", "mouth", "whoa", "sympathy", "surprise"]}, "hushed-face": {"a": "hushed face", "b": "1F62F", "j": ["shh", "stunned", "face", "hushed", "surprised", "woo"]}, "astonished-face": {"a": "astonished face", "b": "1F632", "j": ["face", "shocked", "surprised", "astonished", "totally", "poisoned", "xox"]}, "flushed-face": {"a": "flushed face", "b": "1F633", "j": ["flattered", "blush", "face", "dazed", "flushed", "shy"]}, "pleading-face": {"a": "pleading face", "b": "1F97A", "j": ["puppy eyes", "begging", "face", "mercy"]}, "frowning-face-with-open-mouth": {"a": "frowning face with open mouth", "b": "1F626", "j": ["frown", "open", "face", "mouth", "what", "aw"]}, "anguished-face": {"a": "anguished face", "b": "1F627", "j": ["stunned", "nervous", "face", "anguished"]}, "fearful-face": {"a": "fearful face", "b": "1F628", "j": ["oops", "nervous", "face", "scared", "huh", "fear", "terrified", "fearful"]}, "anxious-face-with-sweat": {"a": "anxious face with sweat", "b": "1F630", "j": ["blue", "sweat", "nervous", "cold", "face", "rushed"]}, "sad-but-relieved-face": {"a": "sad but relieved face", "b": "1F625", "j": ["disappointed", "nervous", "sweat", "relieved", "whew", "phew", "face"]}, "crying-face": {"a": "crying face", "b": "1F622", "j": ["depressed", "upset", "tears", "face", ":'(", "cry", "sad", "tear"]}, "loudly-crying-face": {"a": "loudly crying face", "b": "1F62D", "j": ["depressed", "upset", "tears", "face", "cry", "sad", "tear", "sob"]}, "face-screaming-in-fear": {"a": "face screaming in fear", "b": "1F631", "j": ["munch", "face", "omg", "scared", "scream", "fear"]}, "confounded-face": {"a": "confounded face", "b": "1F616", "j": ["confounded", "oops", ":S", "sick", "unwell", "face", "confused"]}, "persevering-face": {"a": "persevering face", "b": "1F623", "j": ["oops", "upset", "persevere", "no", "face", "sick"]}, "disappointed-face": {"a": "disappointed face", "b": "1F61E", "j": ["depressed", "upset", "disappointed", ":(", "face", "sad"]}, "downcast-face-with-sweat": {"a": "downcast face with sweat", "b": "1F613", "j": ["sweat", "tired", "hot", "cold", "face", "exercise", "sad"]}, "weary-face": {"a": "weary face", "b": "1F629", "j": ["upset", "tired", "frustrated", "face", "sleepy", "sad", "weary"]}, "tired-face": {"a": "tired face", "b": "1F62B", "j": ["upset", "whine", "tired", "frustrated", "face", "sick"]}, "yawning-face": {"a": "yawning face", "b": "1F971", "j": ["", "bored", "tired", "yawn", "sleepy"]}, "face-with-steam-from-nose": {"a": "face with steam from nose", "b": "1F624", "j": ["triumph", "gas", "pride", "phew", "face", "proud", "won"]}, "pouting-face": {"a": "pouting face", "b": "1F621", "j": ["pouting", "rage", "despise", "hate", "face", "red", "angry", "mad"]}, "angry-face": {"a": "angry face", "b": "1F620", "j": ["annoyed", "anger", "frustrated", "face", "angry", "mad"]}, "face-with-symbols-on-mouth": {"a": "face with symbols on mouth", "b": "1F92C", "j": ["cursing", "swearing", "face", "expletive", "cussing", "profanity"]}, "smiling-face-with-horns": {"a": "smiling face with horns", "b": "1F608", "j": ["face", "fairy tale", "smile", "fantasy", "devil", "horns"]}, "angry-face-with-horns": {"a": "angry face with horns", "b": "1F47F", "j": ["face", "devil", "fantasy", "demon", "imp", "horns", "angry"]}, "skull": {"a": "skull", "b": "1F480", "j": ["death", "skeleton", "face", "creepy", "fairy tale", "dead", "monster"]}, "skull-and-crossbones": {"a": "skull and crossbones", "b": "2620", "j": ["danger", "death", "pirate", "skull", "scary", "face", "poison", "evil", "crossbones", "deadly", "monster"]}, "pile-of-poo": {"a": "pile of poo", "b": "1F4A9", "j": ["dung", "poop", "hankey", "face", "shitface", "fail", "turd", "shit", "poo", "monster"]}, "clown-face": {"a": "clown face", "b": "1F921", "j": ["clown", "face"]}, "ogre": {"a": "ogre", "b": "1F479", "j": ["mask", "scary", "japanese", "face", "creepy", "fairy tale", "halloween", "red", "fantasy", "creature", "troll", "devil", "demon", "monster"]}, "goblin": {"a": "goblin", "b": "1F47A", "j": ["mask", "scary", "japanese", "face", "creepy", "fairy tale", "red", "fantasy", "creature", "evil", "monster"]}, "ghost": {"a": "ghost", "b": "1F47B", "j": ["scary", "face", "fairy tale", "halloween", "spooky", "fantasy", "creature", "monster"]}, "alien": {"a": "alien", "b": "1F47D", "j": ["extraterrestrial", "paul", "face", "fantasy", "creature", "ufo", "weird", "outer_space", "UFO"]}, "alien-monster": {"a": "alien monster", "b": "1F47E", "j": ["extraterrestrial", "play", "face", "alien", "game", "creature", "ufo", "arcade", "monster"]}, "robot": {"a": "robot", "b": "1F916", "j": ["computer", "face", "bot", "machine", "monster"]}, "grinning-cat": {"a": "grinning cat", "b": "1F63A", "j": ["grinning", "cats", "open", "face", "smile", "mouth", "happy", "cat", "animal"]}, "grinning-cat-with-smiling-eyes": {"a": "grinning cat with smiling eyes", "b": "1F638", "j": ["animal", "cats", "grin", "face", "smile", "eye", "cat"]}, "cat-with-tears-of-joy": {"a": "cat with tears of joy", "b": "1F639", "j": ["animal", "tears", "cats", "joy", "face", "haha", "happy", "cat", "tear"]}, "smiling-cat-with-hearteyes": {"a": "smiling cat with heart-eyes", "b": "1F63B", "j": ["animal", "love", "like", "cats", "heart", "face", "smile", "eye", "smiling_cat_with_heart_eyes", "valentines", "affection", "cat"]}, "cat-with-wry-smile": {"a": "cat with wry smile", "b": "1F63C", "j": ["animal", "ironic", "cats", "face", "smile", "wry", "cat", "smirk"]}, "kissing-cat": {"a": "kissing cat", "b": "1F63D", "j": ["animal", "cats", "face", "eye", "kiss", "cat"]}, "weary-cat": {"a": "weary cat", "b": "1F640", "j": ["cats", "weary", "munch", "face", "oh", "surprised", "scared", "scream", "cat", "animal"]}, "crying-cat": {"a": "crying cat", "b": "1F63F", "j": ["upset", "animal", "tears", "cats", "weep", "face", "cry", "sad", "cat", "tear"]}, "pouting-cat": {"a": "pouting cat", "b": "1F63E", "j": ["pouting", "cats", "face", "cat", "animal"]}, "seenoevil-monkey": {"a": "see-no-evil monkey", "b": "1F648", "j": ["monkey", "forbidden", "face", "nature", "haha", "evil", "see", "animal", "see_no_evil_monkey"]}, "hearnoevil-monkey": {"a": "hear-no-evil monkey", "b": "1F649", "j": ["monkey", "forbidden", "animal", "hear_no_evil_monkey", "face", "nature", "evil", "hear"]}, "speaknoevil-monkey": {"a": "speak-no-evil monkey", "b": "1F64A", "j": ["monkey", "forbidden", "face", "speak_no_evil_monkey", "nature", "speak", "omg", "evil", "animal"]}, "kiss-mark": {"a": "kiss mark", "b": "1F48B", "j": ["love", "like", "face", "lips", "valentines", "affection", "kiss"]}, "love-letter": {"a": "love letter", "b": "1F48C", "j": ["envelope", "love", "like", "letter", "heart", "email", "valentines", "mail", "affection"]}, "heart-with-arrow": {"a": "heart with arrow", "b": "1F498", "j": ["arrow", "love", "like", "heart", "cupid", "valentines", "affection"]}, "heart-with-ribbon": {"a": "heart with ribbon", "b": "1F49D", "j": ["valentines", "valentine", "love", "ribbon"]}, "sparkling-heart": {"a": "sparkling heart", "b": "1F496", "j": ["love", "like", "excited", "valentines", "sparkle", "affection"]}, "growing-heart": {"a": "growing heart", "b": "1F497", "j": ["pulse", "nervous", "like", "love", "excited", "pink", "valentines", "growing", "affection"]}, "beating-heart": {"a": "beating heart", "b": "1F493", "j": ["love", "like", "heart", "beating", "pink", "heartbeat", "valentines", "pulsating", "affection"]}, "revolving-hearts": {"a": "revolving hearts", "b": "1F49E", "j": ["revolving", "like", "love", "valentines", "affection"]}, "two-hearts": {"a": "two hearts", "b": "1F495", "j": ["love", "like", "heart", "valentines", "affection"]}, "heart-decoration": {"a": "heart decoration", "b": "1F49F", "j": ["heart", "love", "like", "purple-square"]}, "heart-exclamation": {"a": "heart exclamation", "b": "2763", "j": ["punctuation", "love", "mark", "decoration", "exclamation"]}, "broken-heart": {"a": "broken heart", "b": "1F494", "j": ["heartbreak", "heart", "broken", "sorry", "break", "sad"]}, "heart-on-fire": {"a": "⊛ heart on fire", "b": "2764-FE0F-200D-1F525", "j": ["burn", "heart", "heart on fire", "love", "lust", "sacred heart"]}, "mending-heart": {"a": "⊛ mending heart", "b": "2764-FE0F-200D-1FA79", "j": ["healthier", "improving", "mending", "mending heart", "recovering", "recuperating", "well"]}, "red-heart": {"a": "red heart", "b": "2764", "j": ["heart", "valentines", "love", "like"]}, "orange-heart": {"a": "orange heart", "b": "1F9E1", "j": ["like", "love", "orange", "valentines", "affection"]}, "yellow-heart": {"a": "yellow heart", "b": "1F49B", "j": ["love", "like", "valentines", "yellow", "affection"]}, "green-heart": {"a": "green heart", "b": "1F49A", "j": ["love", "like", "valentines", "green", "affection"]}, "blue-heart": {"a": "blue heart", "b": "1F499", "j": ["blue", "like", "love", "valentines", "affection"]}, "purple-heart": {"a": "purple heart", "b": "1F49C", "j": ["love", "like", "valentines", "affection", "purple"]}, "brown-heart": {"a": "brown heart", "b": "1F90E", "j": ["heart", "brown", "coffee"]}, "black-heart": {"a": "black heart", "b": "1F5A4", "j": ["wicked", "black", "evil"]}, "white-heart": {"a": "white heart", "b": "1F90D", "j": ["heart", "white", "pure"]}, "hundred-points": {"a": "hundred points", "b": "1F4AF", "j": ["test", "full", "score", "quiz", "numbers", "hundred", "100", "perfect", "pass", "century", "exam"]}, "anger-symbol": {"a": "anger symbol", "b": "1F4A2", "j": ["comic", "mad", "angry"]}, "collision": {"a": "collision", "b": "1F4A5", "j": ["boom", "explode", "explosion", "comic", "bomb", "blown"]}, "dizzy": {"a": "dizzy", "b": "1F4AB", "j": ["magic", "star", "comic", "sparkle", "shoot"]}, "sweat-droplets": {"a": "sweat droplets", "b": "1F4A6", "j": ["oops", "sweat", "drip", "water", "comic", "splashing"]}, "dashing-away": {"a": "dashing away", "b": "1F4A8", "j": ["smoke", "fart", "dash", "puff", "air", "fast", "comic", "running", "shoo", "wind"]}, "hole": {"a": "hole", "b": "1F573", "j": ["embarrassing"]}, "bomb": {"a": "bomb", "b": "1F4A3", "j": ["boom", "explode", "explosion", "comic", "terrorism"]}, "speech-balloon": {"a": "speech balloon", "b": "1F4AC", "j": ["bubble", "balloon", "words", "message", "talk", "chatting", "comic", "speech", "dialog"]}, "eye-in-speech-bubble": {"a": "eye in speech bubble", "b": "1F441-FE0F-200D-1F5E8-FE0F", "j": ["info", "witness", "speech bubble", "eye"]}, "left-speech-bubble": {"a": "left speech bubble", "b": "1F5E8", "j": ["message", "talk", "words", "chatting", "speech", "dialog"]}, "right-anger-bubble": {"a": "right anger bubble", "b": "1F5EF", "j": ["bubble", "balloon", "thinking", "caption", "speech", "angry", "mad"]}, "thought-balloon": {"a": "thought balloon", "b": "1F4AD", "j": ["bubble", "dream", "balloon", "thinking", "comic", "cloud", "speech", "thought"]}, "zzz": {"a": "zzz", "b": "1F4A4", "j": ["sleep", "dream", "tired", "comic", "sleepy"]}, "waving-hand": {"a": "waving hand", "b": "1F44B", "j": ["waving", "wave", "farewell", "solong", "gesture", "hand", "hands", "hello", "goodbye", "hi", "palm"]}, "raised-back-of-hand": {"a": "raised back of hand", "b": "1F91A", "j": ["backhand", "fingers", "raised"]}, "hand-with-fingers-splayed": {"a": "hand with fingers splayed", "b": "1F590", "j": ["finger", "fingers", "hand", "splayed", "palm"]}, "raised-hand": {"a": "raised hand", "b": "270B", "j": ["fingers", "stop", "hand", "high 5", "high five", "ban", "palm", "highfive"]}, "vulcan-salute": {"a": "vulcan salute", "b": "1F596", "j": ["finger", "fingers", "hand", "vulcan", "star trek", "spock"]}, "ok-hand": {"a": "OK hand", "b": "1F44C", "j": ["OK", "limbs", "fingers", "hand", "okay", "perfect", "ok"]}, "pinched-fingers": {"a": "pinched fingers", "b": "1F90C", "j": ["pinched", "fingers", "hand gesture", "size", "tiny", "sarcastic", "small", "interrogation"]}, "pinching-hand": {"a": "pinching hand", "b": "1F90F", "j": ["small amount", "size", "small", "tiny"]}, "victory-hand": {"a": "victory hand", "b": "270C", "j": ["victory", "fingers", "hand", "ohyeah", "two", "v", "peace"]}, "crossed-fingers": {"a": "crossed fingers", "b": "1F91E", "j": ["cross", "finger", "lucky", "good", "hand", "luck"]}, "loveyou-gesture": {"a": "love-you gesture", "b": "1F91F", "j": ["ILY", "fingers", "gesture", "hand", "love_you_gesture"]}, "sign-of-the-horns": {"a": "sign of the horns", "b": "1F918", "j": ["finger", "rock_on", "fingers", "rock-on", "hand", "sign_of_horns", "horns", "evil_eye"]}, "call-me-hand": {"a": "call me hand", "b": "1F919", "j": ["gesture", "hand", "call", "hands"]}, "backhand-index-pointing-left": {"a": "backhand index pointing left", "b": "1F448", "j": ["finger", "fingers", "point", "hand", "left", "backhand", "direction", "index"]}, "backhand-index-pointing-right": {"a": "backhand index pointing right", "b": "1F449", "j": ["finger", "right", "fingers", "point", "hand", "backhand", "direction", "index"]}, "backhand-index-pointing-up": {"a": "backhand index pointing up", "b": "1F446", "j": ["finger", "fingers", "point", "hand", "backhand", "direction", "up"]}, "middle-finger": {"a": "middle finger", "b": "1F595", "j": ["flipping", "finger", "middle", "fingers", "hand", "rude"]}, "backhand-index-pointing-down": {"a": "backhand index pointing down", "b": "1F447", "j": ["finger", "fingers", "point", "down", "hand", "backhand", "direction"]}, "index-pointing-up": {"a": "index pointing up", "b": "261D", "j": ["finger", "fingers", "point", "hand", "direction", "up", "index"]}, "thumbs-up": {"a": "thumbs up", "b": "1F44D", "j": ["+1", "yes", "awesome", "like", "cool", "thumb", "thumbsup", "hand", "good", "agree", "accept", "up"]}, "thumbs-down": {"a": "thumbs down", "b": "1F44E", "j": ["-1", "no", "thumb", "down", "hand", "dislike", "thumbsdown"]}, "raised-fist": {"a": "raised fist", "b": "270A", "j": ["fingers", "clenched", "fist", "hand", "grasp", "punch"]}, "oncoming-fist": {"a": "oncoming fist", "b": "1F44A", "j": ["violence", "clenched", "fist", "hit", "hand", "attack", "punch", "angry"]}, "leftfacing-fist": {"a": "left-facing fist", "b": "1F91B", "j": ["left_facing_fist", "leftwards", "fist", "hand", "fistbump"]}, "rightfacing-fist": {"a": "right-facing fist", "b": "1F91C", "j": ["fist", "hand", "right_facing_fist", "rightwards", "fistbump"]}, "clapping-hands": {"a": "clapping hands", "b": "1F44F", "j": ["applause", "hand", "yay", "hands", "clap", "congrats", "praise"]}, "raising-hands": {"a": "raising hands", "b": "1F64C", "j": ["gesture", "hand", "hands", "celebration", "raised", "hooray", "yea"]}, "open-hands": {"a": "open hands", "b": "1F450", "j": ["fingers", "hand", "open", "hands", "butterfly"]}, "palms-up-together": {"a": "palms up together", "b": "1F932", "j": ["gesture", "cupped", "hands", "cupped hands", "prayer"]}, "handshake": {"a": "handshake", "b": "1F91D", "j": ["shake", "meeting", "hand", "agreement"]}, "folded-hands": {"a": "folded hands", "b": "1F64F", "j": ["hand", "high 5", "please", "high five", "thanks", "wish", "pray", "ask", "namaste", "hope", "highfive"]}, "writing-hand": {"a": "writing hand", "b": "270D", "j": ["lower_left_ballpoint_pen", "compose", "hand", "stationery", "write"]}, "nail-polish": {"a": "nail polish", "b": "1F485", "j": ["care", "finger", "manicure", "fashion", "polish", "beauty", "nail", "cosmetics"]}, "selfie": {"a": "selfie", "b": "1F933", "j": ["camera", "phone"]}, "flexed-biceps": {"a": "flexed biceps", "b": "1F4AA", "j": ["strong", "hand", "arm", "comic", "flex", "biceps", "summer", "muscle"]}, "mechanical-arm": {"a": "mechanical arm", "b": "1F9BE", "j": ["prosthetic", "accessibility"]}, "mechanical-leg": {"a": "mechanical leg", "b": "1F9BF", "j": ["prosthetic", "accessibility"]}, "leg": {"a": "leg", "b": "1F9B5", "j": ["limb", "kick"]}, "foot": {"a": "foot", "b": "1F9B6", "j": ["kick", "stomp"]}, "ear": {"a": "ear", "b": "1F442", "j": ["sound", "face", "body", "hear", "listen"]}, "ear-with-hearing-aid": {"a": "ear with hearing aid", "b": "1F9BB", "j": ["hard of hearing", "accessibility"]}, "nose": {"a": "nose", "b": "1F443", "j": ["smell", "sniff", "body"]}, "brain": {"a": "brain", "b": "1F9E0", "j": ["smart", "intelligent"]}, "anatomical-heart": {"a": "anatomical heart", "b": "1FAC0", "j": ["pulse", "heart", "cardiology", "organ", "heartbeat", "health", "anatomical"]}, "lungs": {"a": "lungs", "b": "1FAC1", "j": ["inhalation", "breath", "exhalation", "organ", "respiration", "breathe"]}, "tooth": {"a": "tooth", "b": "1F9B7", "j": ["dentist", "teeth"]}, "bone": {"a": "bone", "b": "1F9B4", "j": ["skeleton"]}, "eyes": {"a": "eyes", "b": "1F440", "j": ["stalk", "peek", "face", "eye", "watch", "see", "look"]}, "eye": {"a": "eye", "b": "1F441", "j": ["stare", "face", "watch", "body", "see", "look"]}, "tongue": {"a": "tongue", "b": "1F445", "j": ["playful", "mouth", "body"]}, "mouth": {"a": "mouth", "b": "1F444", "j": ["lips", "kiss"]}, "baby": {"a": "baby", "b": "1F476", "j": ["toddler", "young", "boy", "girl", "child"]}, "child": {"a": "child", "b": "1F9D2", "j": ["young", "gender-neutral", "unspecified gender"]}, "boy": {"a": "boy", "b": "1F466", "j": ["guy", "man", "male", "young", "teenager"]}, "girl": {"a": "girl", "b": "1F467", "j": ["woman", "young", "zodiac", "Virgo", "teenager", "female"]}, "person": {"a": "person", "b": "1F9D1", "j": ["adult", "gender-neutral", "unspecified gender"]}, "person-blond-hair": {"a": "person: blond hair", "b": "1F471", "j": ["hairstyle", "blond-haired person", "blond", "hair"]}, "man": {"a": "man", "b": "1F468", "j": ["guy", "classy", "moustache", "father", "sir", "dad", "mustache", "adult"]}, "person-beard": {"a": "person: beard", "b": "1F9D4", "j": ["person", "bewhiskered", "man_beard", "beard"]}, "man-beard": {"a": "⊛ man: beard", "b": "1F9D4-200D-2642-FE0F", "j": ["beard", "man", "man: beard"]}, "woman-beard": {"a": "⊛ woman: beard", "b": "1F9D4-200D-2640-FE0F", "j": ["beard", "woman", "woman: beard"]}, "man-red-hair": {"a": "man: red hair", "b": "1F468-200D-1F9B0", "j": ["adult", "red hair", "man", "hairstyle"]}, "man-curly-hair": {"a": "man: curly hair", "b": "1F468-200D-1F9B1", "j": ["curly hair", "adult", "man", "hairstyle"]}, "man-white-hair": {"a": "man: white hair", "b": "1F468-200D-1F9B3", "j": ["man", "elder", "old", "adult", "white hair"]}, "man-bald": {"a": "man: bald", "b": "1F468-200D-1F9B2", "j": ["hairless", "adult", "man", "bald"]}, "woman": {"a": "woman", "b": "1F469", "j": ["girls", "lady", "adult", "female"]}, "woman-red-hair": {"a": "woman: red hair", "b": "1F469-200D-1F9B0", "j": ["woman", "adult", "red hair", "hairstyle"]}, "person-red-hair": {"a": "person: red hair", "b": "1F9D1-200D-1F9B0", "j": ["person", "unspecified gender", "hairstyle", "red hair", "adult", "gender-neutral"]}, "woman-curly-hair": {"a": "woman: curly hair", "b": "1F469-200D-1F9B1", "j": ["woman", "curly hair", "adult", "hairstyle"]}, "person-curly-hair": {"a": "person: curly hair", "b": "1F9D1-200D-1F9B1", "j": ["person", "unspecified gender", "hairstyle", "curly hair", "adult", "gender-neutral"]}, "woman-white-hair": {"a": "woman: white hair", "b": "1F469-200D-1F9B3", "j": ["woman", "elder", "old", "adult", "white hair"]}, "person-white-hair": {"a": "person: white hair", "b": "1F9D1-200D-1F9B3", "j": ["person", "unspecified gender", "elder", "white hair", "old", "adult", "gender-neutral"]}, "woman-bald": {"a": "woman: bald", "b": "1F469-200D-1F9B2", "j": ["hairless", "adult", "bald", "woman"]}, "person-bald": {"a": "person: bald", "b": "1F9D1-200D-1F9B2", "j": ["hairless", "person", "unspecified gender", "bald", "adult", "gender-neutral"]}, "woman-blond-hair": {"a": "woman: blond hair", "b": "1F471-200D-2640-FE0F", "j": ["person", "woman", "hair", "girl", "blond-haired woman", "blonde", "female"]}, "man-blond-hair": {"a": "man: blond hair", "b": "1F471-200D-2642-FE0F", "j": ["guy", "person", "man", "hair", "male", "boy", "blond-haired man", "blond", "blonde"]}, "older-person": {"a": "older person", "b": "1F9D3", "j": ["unspecified gender", "elder", "senior", "human", "old", "adult", "gender-neutral"]}, "old-man": {"a": "old man", "b": "1F474", "j": ["man", "male", "elder", "human", "senior", "old", "men", "adult"]}, "old-woman": {"a": "old woman", "b": "1F475", "j": ["woman", "elder", "human", "lady", "senior", "old", "adult", "women", "female"]}, "person-frowning": {"a": "person frowning", "b": "1F64D", "j": ["frown", "gesture", "worried"]}, "man-frowning": {"a": "man frowning", "b": "1F64D-200D-2642-FE0F", "j": ["frowning", "depressed", "man", "male", "gesture", "boy", "unhappy", "sad", "discouraged"]}, "woman-frowning": {"a": "woman frowning", "b": "1F64D-200D-2640-FE0F", "j": ["frowning", "depressed", "woman", "gesture", "girl", "unhappy", "sad", "discouraged", "female"]}, "person-pouting": {"a": "person pouting", "b": "1F64E", "j": ["pouting", "upset", "gesture"]}, "man-pouting": {"a": "man pouting", "b": "1F64E-200D-2642-FE0F", "j": ["pouting", "man", "male", "gesture", "boy"]}, "woman-pouting": {"a": "woman pouting", "b": "1F64E-200D-2640-FE0F", "j": ["pouting", "woman", "gesture", "girl", "female"]}, "person-gesturing-no": {"a": "person gesturing NO", "b": "1F645", "j": ["decline", "forbidden", "gesture", "prohibited", "hand"]}, "man-gesturing-no": {"a": "man gesturing NO", "b": "1F645-200D-2642-FE0F", "j": ["forbidden", "man", "male", "gesture", "prohibited", "hand", "boy", "nope"]}, "woman-gesturing-no": {"a": "woman gesturing NO", "b": "1F645-200D-2640-FE0F", "j": ["forbidden", "woman", "gesture", "prohibited", "hand", "girl", "female", "nope"]}, "person-gesturing-ok": {"a": "person gesturing OK", "b": "1F646", "j": ["OK", "hand", "gesture", "agree"]}, "man-gesturing-ok": {"a": "man gesturing OK", "b": "1F646-200D-2642-FE0F", "j": ["blue", "OK", "man", "male", "human", "gesture", "boy", "hand", "men"]}, "woman-gesturing-ok": {"a": "woman gesturing OK", "b": "1F646-200D-2640-FE0F", "j": ["OK", "woman", "human", "gesture", "girl", "hand", "pink", "women", "female"]}, "person-tipping-hand": {"a": "person tipping hand", "b": "1F481", "j": ["tipping", "hand", "sassy", "help", "information"]}, "man-tipping-hand": {"a": "man tipping hand", "b": "1F481-200D-2642-FE0F", "j": ["man", "male", "human", "boy", "sassy", "tipping hand", "information"]}, "woman-tipping-hand": {"a": "woman tipping hand", "b": "1F481-200D-2640-FE0F", "j": ["woman", "human", "girl", "sassy", "tipping hand", "information", "female"]}, "person-raising-hand": {"a": "person raising hand", "b": "1F64B", "j": ["gesture", "hand", "raised", "happy", "question"]}, "man-raising-hand": {"a": "man raising hand", "b": "1F64B-200D-2642-FE0F", "j": ["raising hand", "man", "male", "gesture", "boy"]}, "woman-raising-hand": {"a": "woman raising hand", "b": "1F64B-200D-2640-FE0F", "j": ["raising hand", "woman", "gesture", "girl", "female"]}, "deaf-person": {"a": "deaf person", "b": "1F9CF", "j": ["ear", "deaf", "accessibility", "hear"]}, "deaf-man": {"a": "deaf man", "b": "1F9CF-200D-2642-FE0F", "j": ["accessibility", "deaf", "man"]}, "deaf-woman": {"a": "deaf woman", "b": "1F9CF-200D-2640-FE0F", "j": ["deaf", "accessibility", "woman"]}, "person-bowing": {"a": "person bowing", "b": "1F647", "j": ["gesture", "sorry", "apology", "respectiful", "bow"]}, "man-bowing": {"a": "man bowing", "b": "1F647-200D-2642-FE0F", "j": ["man", "male", "gesture", "boy", "bowing", "sorry", "favor", "apology"]}, "woman-bowing": {"a": "woman bowing", "b": "1F647-200D-2640-FE0F", "j": ["woman", "gesture", "girl", "bowing", "sorry", "favor", "apology", "female"]}, "person-facepalming": {"a": "person facepalming", "b": "1F926", "j": ["disappointed", "disbelief", "face", "exasperation", "palm"]}, "man-facepalming": {"a": "man facepalming", "b": "1F926-200D-2642-FE0F", "j": ["disbelief", "facepalm", "man", "male", "boy", "exasperation"]}, "woman-facepalming": {"a": "woman facepalming", "b": "1F926-200D-2640-FE0F", "j": ["disbelief", "facepalm", "woman", "girl", "exasperation", "female"]}, "person-shrugging": {"a": "person shrugging", "b": "1F937", "j": ["regardless", "indifference", "doubt", "shrug", "ignorance"]}, "man-shrugging": {"a": "man shrugging", "b": "1F937-200D-2642-FE0F", "j": ["indifferent", "man", "male", "boy", "doubt", "indifference", "confused", "shrug", "ignorance"]}, "woman-shrugging": {"a": "woman shrugging", "b": "1F937-200D-2640-FE0F", "j": ["indifferent", "woman", "girl", "doubt", "indifference", "confused", "female", "shrug", "ignorance"]}, "health-worker": {"a": "health worker", "b": "1F9D1-200D-2695-FE0F", "j": ["nurse", "doctor", "healthcare", "hospital", "therapist"]}, "man-health-worker": {"a": "man health worker", "b": "1F468-200D-2695-FE0F", "j": ["nurse", "man", "human", "doctor", "healthcare", "therapist"]}, "woman-health-worker": {"a": "woman health worker", "b": "1F469-200D-2695-FE0F", "j": ["nurse", "woman", "human", "doctor", "healthcare", "therapist"]}, "student": {"a": "student", "b": "1F9D1-200D-1F393", "j": ["learn", "graduate"]}, "man-student": {"a": "man student", "b": "1F468-200D-1F393", "j": ["human", "graduate", "student", "man"]}, "woman-student": {"a": "woman student", "b": "1F469-200D-1F393", "j": ["human", "graduate", "student", "woman"]}, "teacher": {"a": "teacher", "b": "1F9D1-200D-1F3EB", "j": ["professor", "instructor"]}, "man-teacher": {"a": "man teacher", "b": "1F468-200D-1F3EB", "j": ["instructor", "man", "teacher", "human", "professor"]}, "woman-teacher": {"a": "woman teacher", "b": "1F469-200D-1F3EB", "j": ["instructor", "woman", "teacher", "human", "professor"]}, "judge": {"a": "judge", "b": "1F9D1-200D-2696-FE0F", "j": ["scales", "justice", "law"]}, "man-judge": {"a": "man judge", "b": "1F468-200D-2696-FE0F", "j": ["court", "man", "human", "scales", "judge", "justice"]}, "woman-judge": {"a": "woman judge", "b": "1F469-200D-2696-FE0F", "j": ["court", "woman", "human", "scales", "judge", "justice"]}, "farmer": {"a": "farmer", "b": "1F9D1-200D-1F33E", "j": ["rancher", "crops", "gardener"]}, "man-farmer": {"a": "man farmer", "b": "1F468-200D-1F33E", "j": ["farmer", "man", "human", "rancher", "gardener"]}, "woman-farmer": {"a": "woman farmer", "b": "1F469-200D-1F33E", "j": ["farmer", "woman", "human", "rancher", "gardener"]}, "cook": {"a": "cook", "b": "1F9D1-200D-1F373", "j": ["chef", "food", "culinary", "kitchen"]}, "man-cook": {"a": "man cook", "b": "1F468-200D-1F373", "j": ["human", "cook", "chef", "man"]}, "woman-cook": {"a": "woman cook", "b": "1F469-200D-1F373", "j": ["human", "cook", "chef", "woman"]}, "mechanic": {"a": "mechanic", "b": "1F9D1-200D-1F527", "j": ["worker", "electrician", "plumber", "technician", "tradesperson"]}, "man-mechanic": {"a": "man mechanic", "b": "1F468-200D-1F527", "j": ["man", "human", "electrician", "plumber", "tradesperson", "mechanic", "wrench"]}, "woman-mechanic": {"a": "woman mechanic", "b": "1F469-200D-1F527", "j": ["woman", "human", "electrician", "plumber", "tradesperson", "mechanic", "wrench"]}, "factory-worker": {"a": "factory worker", "b": "1F9D1-200D-1F3ED", "j": ["worker", "factory", "labor", "industrial", "assembly"]}, "man-factory-worker": {"a": "man factory worker", "b": "1F468-200D-1F3ED", "j": ["man", "worker", "human", "factory", "industrial", "assembly"]}, "woman-factory-worker": {"a": "woman factory worker", "b": "1F469-200D-1F3ED", "j": ["worker", "woman", "human", "factory", "industrial", "assembly"]}, "office-worker": {"a": "office worker", "b": "1F9D1-200D-1F4BC", "j": ["white-collar", "architect", "manager", "business"]}, "man-office-worker": {"a": "man office worker", "b": "1F468-200D-1F4BC", "j": ["white-collar", "architect", "man", "business", "manager", "human"]}, "woman-office-worker": {"a": "woman office worker", "b": "1F469-200D-1F4BC", "j": ["white-collar", "architect", "manager", "business", "woman", "human"]}, "scientist": {"a": "scientist", "b": "1F9D1-200D-1F52C", "j": ["chemistry", "biologist", "physicist", "engineer", "chemist"]}, "man-scientist": {"a": "man scientist", "b": "1F468-200D-1F52C", "j": ["man", "biologist", "human", "physicist", "scientist", "engineer", "chemist"]}, "woman-scientist": {"a": "woman scientist", "b": "1F469-200D-1F52C", "j": ["biologist", "woman", "human", "physicist", "scientist", "engineer", "chemist"]}, "technologist": {"a": "technologist", "b": "1F9D1-200D-1F4BB", "j": ["computer", "software", "coder", "developer", "inventor"]}, "man-technologist": {"a": "man technologist", "b": "1F468-200D-1F4BB", "j": ["programmer", "laptop", "software", "computer", "coder", "man", "human", "developer", "inventor", "engineer", "technologist"]}, "woman-technologist": {"a": "woman technologist", "b": "1F469-200D-1F4BB", "j": ["programmer", "laptop", "software", "computer", "coder", "woman", "human", "developer", "inventor", "engineer", "technologist"]}, "singer": {"a": "singer", "b": "1F9D1-200D-1F3A4", "j": ["song", "artist", "star", "rock", "actor", "entertainer", "performer"]}, "man-singer": {"a": "man singer", "b": "1F468-200D-1F3A4", "j": ["man", "human", "star", "rockstar", "rock", "singer", "actor", "entertainer"]}, "woman-singer": {"a": "woman singer", "b": "1F469-200D-1F3A4", "j": ["woman", "human", "star", "rockstar", "rock", "singer", "actor", "entertainer"]}, "artist": {"a": "artist", "b": "1F9D1-200D-1F3A8", "j": ["painting", "creativity", "palette", "draw"]}, "man-artist": {"a": "man artist", "b": "1F468-200D-1F3A8", "j": ["man", "artist", "human", "painter", "palette"]}, "woman-artist": {"a": "woman artist", "b": "1F469-200D-1F3A8", "j": ["woman", "artist", "human", "painter", "palette"]}, "pilot": {"a": "pilot", "b": "1F9D1-200D-2708-FE0F", "j": ["airplane", "plane", "fly"]}, "man-pilot": {"a": "man pilot", "b": "1F468-200D-2708-FE0F", "j": ["man", "human", "plane", "pilot", "aviator"]}, "woman-pilot": {"a": "woman pilot", "b": "1F469-200D-2708-FE0F", "j": ["woman", "human", "plane", "pilot", "aviator"]}, "astronaut": {"a": "astronaut", "b": "1F9D1-200D-1F680", "j": ["outerspace", "rocket"]}, "man-astronaut": {"a": "man astronaut", "b": "1F468-200D-1F680", "j": ["man", "rocket", "human", "astronaut", "space"]}, "woman-astronaut": {"a": "woman astronaut", "b": "1F469-200D-1F680", "j": ["rocket", "woman", "human", "astronaut", "space"]}, "firefighter": {"a": "firefighter", "b": "1F9D1-200D-1F692", "j": ["firetruck", "fire"]}, "man-firefighter": {"a": "man firefighter", "b": "1F468-200D-1F692", "j": ["firetruck", "man", "human", "fireman", "firefighter"]}, "woman-firefighter": {"a": "woman firefighter", "b": "1F469-200D-1F692", "j": ["firetruck", "woman", "human", "fireman", "firefighter"]}, "police-officer": {"a": "police officer", "b": "1F46E", "j": ["cop", "police", "officer"]}, "man-police-officer": {"a": "man police officer", "b": "1F46E-200D-2642-FE0F", "j": ["police", "man", "officer", "law", "enforcement", "911", "legal", "cop", "arrest"]}, "woman-police-officer": {"a": "woman police officer", "b": "1F46E-200D-2640-FE0F", "j": ["police", "woman", "officer", "law", "enforcement", "arrest", "911", "legal", "cop", "female"]}, "detective": {"a": "detective", "b": "1F575", "j": ["sleuth", "human", "spy"]}, "man-detective": {"a": "man detective", "b": "1F575-FE0F-200D-2642-FE0F", "j": ["spy", "man", "crime", "sleuth", "detective"]}, "woman-detective": {"a": "woman detective", "b": "1F575-FE0F-200D-2640-FE0F", "j": ["spy", "woman", "human", "sleuth", "female", "detective"]}, "guard": {"a": "guard", "b": "1F482", "j": ["protect"]}, "man-guard": {"a": "man guard", "b": "1F482-200D-2642-FE0F", "j": ["guy", "royal", "man", "british", "male", "uk", "gb", "guard"]}, "woman-guard": {"a": "woman guard", "b": "1F482-200D-2640-FE0F", "j": ["royal", "woman", "british", "uk", "gb", "guard", "female"]}, "ninja": {"a": "ninja", "b": "1F977", "j": ["ninjutsu", "japanese", "fighter", "hidden", "stealth", "skills"]}, "construction-worker": {"a": "construction worker", "b": "1F477", "j": ["build", "construction", "worker", "hat", "labor"]}, "man-construction-worker": {"a": "man construction worker", "b": "1F477-200D-2642-FE0F", "j": ["guy", "man", "construction", "male", "worker", "human", "wip", "build", "labor"]}, "woman-construction-worker": {"a": "woman construction worker", "b": "1F477-200D-2640-FE0F", "j": ["build", "construction", "worker", "woman", "human", "wip", "labor", "female"]}, "prince": {"a": "prince", "b": "1F934", "j": ["royal", "man", "male", "crown", "king", "boy"]}, "princess": {"a": "princess", "b": "1F478", "j": ["royal", "woman", "crown", "girl", "fairy tale", "fantasy", "blond", "queen", "female"]}, "person-wearing-turban": {"a": "person wearing turban", "b": "1F473", "j": ["turban", "headdress"]}, "man-wearing-turban": {"a": "man wearing turban", "b": "1F473-200D-2642-FE0F", "j": ["man", "male", "hinduism", "turban", "indian", "arabs"]}, "woman-wearing-turban": {"a": "woman wearing turban", "b": "1F473-200D-2640-FE0F", "j": ["woman", "hinduism", "turban", "indian", "arabs", "female"]}, "person-with-skullcap": {"a": "person with skullcap", "b": "1F472", "j": ["person", "man_with_skullcap", "male", "boy", "hat", "skullcap", "cap", "gua pi mao", "chinese"]}, "woman-with-headscarf": {"a": "woman with headscarf", "b": "1F9D5", "j": ["tichel", "mantilla", "bandana", "head kerchief", "headscarf", "female", "hijab"]}, "person-in-tuxedo": {"a": "person in tuxedo", "b": "1F935", "j": ["person", "wedding", "marriage", "tuxedo", "groom", "man_in_tuxedo", "couple"]}, "man-in-tuxedo": {"a": "man in tuxedo", "b": "1F935-200D-2642-FE0F", "j": ["formal", "fashion", "man", "tuxedo"]}, "woman-in-tuxedo": {"a": "woman in tuxedo", "b": "1F935-200D-2640-FE0F", "j": ["formal", "fashion", "tuxedo", "woman"]}, "person-with-veil": {"a": "person with veil", "b": "1F470", "j": ["person", "wedding", "marriage", "woman", "bride", "veil", "bride_with_veil", "couple"]}, "man-with-veil": {"a": "man with veil", "b": "1F470-200D-2642-FE0F", "j": ["veil", "wedding", "man", "marriage"]}, "woman-with-veil": {"a": "woman with veil", "b": "1F470-200D-2640-FE0F", "j": ["veil", "wedding", "marriage", "woman"]}, "pregnant-woman": {"a": "pregnant woman", "b": "1F930", "j": ["pregnant", "baby", "woman"]}, "breastfeeding": {"a": "breast-feeding", "b": "1F931", "j": ["nursing", "breast", "baby", "breast_feeding"]}, "woman-feeding-baby": {"a": "woman feeding baby", "b": "1F469-200D-1F37C", "j": ["nursing", "birth", "woman", "baby", "feeding", "food"]}, "man-feeding-baby": {"a": "man feeding baby", "b": "1F468-200D-1F37C", "j": ["nursing", "birth", "man", "baby", "feeding", "food"]}, "person-feeding-baby": {"a": "person feeding baby", "b": "1F9D1-200D-1F37C", "j": ["nursing", "person", "birth", "baby", "feeding", "food"]}, "baby-angel": {"a": "baby angel", "b": "1F47C", "j": ["heaven", "baby", "face", "fairy tale", "fantasy", "wings", "angel", "halo"]}, "santa-claus": {"a": "Santa Claus", "b": "1F385", "j": ["claus", "man", "male", "father", "santa", "festival", "xmas", "celebration", "Christmas", "father christmas"]}, "mrs-claus": {"a": "Mrs. Claus", "b": "1F936", "j": ["claus", "Mrs.", "woman", "xmas", "celebration", "Christmas", "mother christmas", "mother", "female"]}, "mx-claus": {"a": "mx claus", "b": "1F9D1-200D-1F384", "j": ["Claus, christmas", "christmas"]}, "superhero": {"a": "superhero", "b": "1F9B8", "j": ["marvel", "superpower", "good", "heroine", "hero"]}, "man-superhero": {"a": "man superhero", "b": "1F9B8-200D-2642-FE0F", "j": ["man", "male", "superpowers", "superpower", "good", "hero"]}, "woman-superhero": {"a": "woman superhero", "b": "1F9B8-200D-2640-FE0F", "j": ["woman", "superpowers", "good", "superpower", "heroine", "hero", "female"]}, "supervillain": {"a": "supervillain", "b": "1F9B9", "j": ["marvel", "superpower", "criminal", "villain", "evil"]}, "man-supervillain": {"a": "man supervillain", "b": "1F9B9-200D-2642-FE0F", "j": ["man", "male", "superpowers", "superpower", "criminal", "bad", "villain", "evil", "hero"]}, "woman-supervillain": {"a": "woman supervillain", "b": "1F9B9-200D-2640-FE0F", "j": ["woman", "superpowers", "superpower", "criminal", "bad", "heroine", "villain", "evil", "female"]}, "mage": {"a": "mage", "b": "1F9D9", "j": ["magic", "wizard", "sorcerer", "sorceress", "witch"]}, "man-mage": {"a": "man mage", "b": "1F9D9-200D-2642-FE0F", "j": ["man", "male", "wizard", "sorcerer", "mage"]}, "woman-mage": {"a": "woman mage", "b": "1F9D9-200D-2640-FE0F", "j": ["woman", "mage", "sorceress", "witch", "female"]}, "fairy": {"a": "fairy", "b": "1F9DA", "j": ["magical", "Puck", "Titania", "Oberon", "wings"]}, "man-fairy": {"a": "man fairy", "b": "1F9DA-200D-2642-FE0F", "j": ["Puck", "Oberon", "man", "male"]}, "woman-fairy": {"a": "woman fairy", "b": "1F9DA-200D-2640-FE0F", "j": ["Titania", "woman", "female"]}, "vampire": {"a": "vampire", "b": "1F9DB", "j": ["undead", "blood", "twilight", "Dracula"]}, "man-vampire": {"a": "man vampire", "b": "1F9DB-200D-2642-FE0F", "j": ["dracula", "man", "male", "undead", "Dracula"]}, "woman-vampire": {"a": "woman vampire", "b": "1F9DB-200D-2640-FE0F", "j": ["woman", "undead", "female"]}, "merperson": {"a": "merperson", "b": "1F9DC", "j": ["mermaid", "merwoman", "sea", "merman"]}, "merman": {"a": "merman", "b": "1F9DC-200D-2642-FE0F", "j": ["triton", "Triton", "man", "male"]}, "mermaid": {"a": "mermaid", "b": "1F9DC-200D-2640-FE0F", "j": ["woman", "merwoman", "ariel", "female"]}, "elf": {"a": "elf", "b": "1F9DD", "j": ["magical", "LOTR style"]}, "man-elf": {"a": "man elf", "b": "1F9DD-200D-2642-FE0F", "j": ["magical", "man", "male"]}, "woman-elf": {"a": "woman elf", "b": "1F9DD-200D-2640-FE0F", "j": ["woman", "magical", "female"]}, "genie": {"a": "genie", "b": "1F9DE", "j": ["(non-human color)", "magical", "wishes", "djinn"]}, "man-genie": {"a": "man genie", "b": "1F9DE-200D-2642-FE0F", "j": ["male", "man", "djinn"]}, "woman-genie": {"a": "woman genie", "b": "1F9DE-200D-2640-FE0F", "j": ["female", "djinn", "woman"]}, "zombie": {"a": "zombie", "b": "1F9DF", "j": ["undead", "dead", "walking dead", "(non-human color)"]}, "man-zombie": {"a": "man zombie", "b": "1F9DF-200D-2642-FE0F", "j": ["dracula", "man", "male", "undead", "walking dead"]}, "woman-zombie": {"a": "woman zombie", "b": "1F9DF-200D-2640-FE0F", "j": ["woman", "undead", "walking dead", "female"]}, "person-getting-massage": {"a": "person getting massage", "b": "1F486", "j": ["relax", "salon", "massage", "face"]}, "man-getting-massage": {"a": "man getting massage", "b": "1F486-200D-2642-FE0F", "j": ["man", "massage", "male", "boy", "face", "head"]}, "woman-getting-massage": {"a": "woman getting massage", "b": "1F486-200D-2640-FE0F", "j": ["massage", "woman", "girl", "face", "head", "female"]}, "person-getting-haircut": {"a": "person getting haircut", "b": "1F487", "j": ["barber", "haircut", "hairstyle", "beauty", "parlor"]}, "man-getting-haircut": {"a": "man getting haircut", "b": "1F487-200D-2642-FE0F", "j": ["boy", "male", "man", "haircut"]}, "woman-getting-haircut": {"a": "woman getting haircut", "b": "1F487-200D-2640-FE0F", "j": ["woman", "girl", "haircut", "female"]}, "person-walking": {"a": "person walking", "b": "1F6B6", "j": ["move", "walking", "walk", "hike"]}, "man-walking": {"a": "man walking", "b": "1F6B6-200D-2642-FE0F", "j": ["man", "human", "steps", "feet", "hike", "walk"]}, "woman-walking": {"a": "woman walking", "b": "1F6B6-200D-2640-FE0F", "j": ["woman", "human", "steps", "feet", "hike", "walk", "female"]}, "person-standing": {"a": "person standing", "b": "1F9CD", "j": ["stand", "standing", "still"]}, "man-standing": {"a": "man standing", "b": "1F9CD-200D-2642-FE0F", "j": ["standing", "man", "still"]}, "woman-standing": {"a": "woman standing", "b": "1F9CD-200D-2640-FE0F", "j": ["standing", "still", "woman"]}, "person-kneeling": {"a": "person kneeling", "b": "1F9CE", "j": ["respectful", "pray", "kneeling", "kneel"]}, "man-kneeling": {"a": "man kneeling", "b": "1F9CE-200D-2642-FE0F", "j": ["respectful", "pray", "man", "kneeling"]}, "woman-kneeling": {"a": "woman kneeling", "b": "1F9CE-200D-2640-FE0F", "j": ["respectful", "pray", "kneeling", "woman"]}, "person-with-white-cane": {"a": "person with white cane", "b": "1F9D1-200D-1F9AF", "j": ["person_with_probing_cane", "blind", "accessibility"]}, "man-with-white-cane": {"a": "man with white cane", "b": "1F468-200D-1F9AF", "j": ["man", "blind", "accessibility", "man_with_probing_cane"]}, "woman-with-white-cane": {"a": "woman with white cane", "b": "1F469-200D-1F9AF", "j": ["woman_with_probing_cane", "blind", "accessibility", "woman"]}, "person-in-motorized-wheelchair": {"a": "person in motorized wheelchair", "b": "1F9D1-200D-1F9BC", "j": ["wheelchair", "disability", "accessibility"]}, "man-in-motorized-wheelchair": {"a": "man in motorized wheelchair", "b": "1F468-200D-1F9BC", "j": ["wheelchair", "disability", "man", "accessibility"]}, "woman-in-motorized-wheelchair": {"a": "woman in motorized wheelchair", "b": "1F469-200D-1F9BC", "j": ["wheelchair", "disability", "accessibility", "woman"]}, "person-in-manual-wheelchair": {"a": "person in manual wheelchair", "b": "1F9D1-200D-1F9BD", "j": ["wheelchair", "disability", "accessibility"]}, "man-in-manual-wheelchair": {"a": "man in manual wheelchair", "b": "1F468-200D-1F9BD", "j": ["wheelchair", "disability", "man", "accessibility"]}, "woman-in-manual-wheelchair": {"a": "woman in manual wheelchair", "b": "1F469-200D-1F9BD", "j": ["wheelchair", "disability", "accessibility", "woman"]}, "person-running": {"a": "person running", "b": "1F3C3", "j": ["running", "marathon", "move"]}, "man-running": {"a": "man running", "b": "1F3C3-200D-2642-FE0F", "j": ["man", "walking", "racing", "race", "running", "exercise", "marathon"]}, "woman-running": {"a": "woman running", "b": "1F3C3-200D-2640-FE0F", "j": ["woman", "walking", "racing", "race", "running", "exercise", "marathon", "female"]}, "woman-dancing": {"a": "woman dancing", "b": "1F483", "j": ["woman", "girl", "dance", "dancing", "fun", "female"]}, "man-dancing": {"a": "man dancing", "b": "1F57A", "j": ["man", "male", "boy", "dance", "dancing", "fun", "dancer"]}, "person-in-suit-levitating": {"a": "person in suit levitating", "b": "1F574", "j": ["person", "business", "jump", "man_in_suit_levitating", "suit", "hover", "levitate"]}, "people-with-bunny-ears": {"a": "people with bunny ears", "b": "1F46F", "j": ["costume", "partying", "perform", "bunny ear", "dancer"]}, "men-with-bunny-ears": {"a": "men with bunny ears", "b": "1F46F-200D-2642-FE0F", "j": ["boys", "male", "partying", "men", "bunny", "bunny ear", "dancer"]}, "women-with-bunny-ears": {"a": "women with bunny ears", "b": "1F46F-200D-2640-FE0F", "j": ["girls", "dancer", "partying", "bunny", "bunny ear", "women", "female"]}, "person-in-steamy-room": {"a": "person in steamy room", "b": "1F9D6", "j": ["spa", "relax", "hamam", "steambath", "sauna", "steam room"]}, "man-in-steamy-room": {"a": "man in steamy room", "b": "1F9D6-200D-2642-FE0F", "j": ["man", "male", "steamroom", "spa", "sauna", "steam room"]}, "woman-in-steamy-room": {"a": "woman in steamy room", "b": "1F9D6-200D-2640-FE0F", "j": ["woman", "steamroom", "spa", "sauna", "steam room", "female"]}, "person-climbing": {"a": "person climbing", "b": "1F9D7", "j": ["sport", "climber"]}, "man-climbing": {"a": "man climbing", "b": "1F9D7-200D-2642-FE0F", "j": ["man", "hobby", "male", "rock", "sports", "climber"]}, "woman-climbing": {"a": "woman climbing", "b": "1F9D7-200D-2640-FE0F", "j": ["hobby", "woman", "rock", "sports", "climber", "female"]}, "person-fencing": {"a": "person fencing", "b": "1F93A", "j": ["sword", "fencer", "fencing", "sports"]}, "horse-racing": {"a": "horse racing", "b": "1F3C7", "j": ["competition", "racehorse", "jockey", "racing", "gambling", "luck", "horse", "betting", "animal"]}, "skier": {"a": "skier", "b": "26F7", "j": ["sports", "snow", "winter", "ski"]}, "snowboarder": {"a": "snowboarder", "b": "1F3C2", "j": ["snow", "winter", "sports", "ski", "snowboard"]}, "person-golfing": {"a": "person golfing", "b": "1F3CC", "j": ["golf", "sports", "business", "ball"]}, "man-golfing": {"a": "man golfing", "b": "1F3CC-FE0F-200D-2642-FE0F", "j": ["golf", "sport", "man"]}, "woman-golfing": {"a": "woman golfing", "b": "1F3CC-FE0F-200D-2640-FE0F", "j": ["business", "woman", "golf", "sports", "female"]}, "person-surfing": {"a": "person surfing", "b": "1F3C4", "j": ["surfing", "sport", "sea"]}, "man-surfing": {"a": "man surfing", "b": "1F3C4-200D-2642-FE0F", "j": ["man", "surfing", "sea", "sports", "ocean", "summer", "beach"]}, "woman-surfing": {"a": "woman surfing", "b": "1F3C4-200D-2640-FE0F", "j": ["woman", "surfing", "sea", "sports", "ocean", "summer", "beach", "female"]}, "person-rowing-boat": {"a": "person rowing boat", "b": "1F6A3", "j": ["sport", "rowboat", "move", "boat"]}, "man-rowing-boat": {"a": "man rowing boat", "b": "1F6A3-200D-2642-FE0F", "j": ["man", "hobby", "boat", "water", "sports", "ship", "rowboat"]}, "woman-rowing-boat": {"a": "woman rowing boat", "b": "1F6A3-200D-2640-FE0F", "j": ["hobby", "woman", "boat", "water", "sports", "ship", "rowboat", "female"]}, "person-swimming": {"a": "person swimming", "b": "1F3CA", "j": ["sport", "pool", "swim"]}, "man-swimming": {"a": "man swimming", "b": "1F3CA-200D-2642-FE0F", "j": ["swim", "man", "human", "athlete", "water", "sports", "exercise", "summer"]}, "woman-swimming": {"a": "woman swimming", "b": "1F3CA-200D-2640-FE0F", "j": ["swim", "woman", "human", "athlete", "water", "sports", "exercise", "summer", "female"]}, "person-bouncing-ball": {"a": "person bouncing ball", "b": "26F9", "j": ["human", "sports", "ball"]}, "man-bouncing-ball": {"a": "man bouncing ball", "b": "26F9-FE0F-200D-2642-FE0F", "j": ["sport", "man", "ball"]}, "woman-bouncing-ball": {"a": "woman bouncing ball", "b": "26F9-FE0F-200D-2640-FE0F", "j": ["woman", "human", "ball", "sports", "female"]}, "person-lifting-weights": {"a": "person lifting weights", "b": "1F3CB", "j": ["sports", "training", "exercise", "weight", "lifter"]}, "man-lifting-weights": {"a": "man lifting weights", "b": "1F3CB-FE0F-200D-2642-FE0F", "j": ["sport", "weight lifter", "man"]}, "woman-lifting-weights": {"a": "woman lifting weights", "b": "1F3CB-FE0F-200D-2640-FE0F", "j": ["woman", "sports", "exercise", "weight lifter", "training", "female"]}, "person-biking": {"a": "person biking", "b": "1F6B4", "j": ["biking", "sport", "bicycle", "move", "cyclist"]}, "man-biking": {"a": "man biking", "b": "1F6B4-200D-2642-FE0F", "j": ["biking", "man", "hipster", "sports", "exercise", "bicycle", "bike", "cyclist"]}, "woman-biking": {"a": "woman biking", "b": "1F6B4-200D-2640-FE0F", "j": ["biking", "woman", "cyclist", "hipster", "sports", "exercise", "bicycle", "bike", "female"]}, "person-mountain-biking": {"a": "person mountain biking", "b": "1F6B5", "j": ["mountain", "bicyclist", "sport", "bicycle", "bike", "move", "cyclist"]}, "man-mountain-biking": {"a": "man mountain biking", "b": "1F6B5-200D-2642-FE0F", "j": ["mountain", "man", "human", "transportation", "sports", "race", "bicycle", "bike", "cyclist"]}, "woman-mountain-biking": {"a": "woman mountain biking", "b": "1F6B5-200D-2640-FE0F", "j": ["biking", "mountain", "woman", "human", "cyclist", "transportation", "sports", "race", "bicycle", "bike", "female"]}, "person-cartwheeling": {"a": "person cartwheeling", "b": "1F938", "j": ["sport", "cartwheel", "gymnastic", "gymnastics"]}, "man-cartwheeling": {"a": "man cartwheeling", "b": "1F938-200D-2642-FE0F", "j": ["cartwheel", "man", "gymnastics"]}, "woman-cartwheeling": {"a": "woman cartwheeling", "b": "1F938-200D-2640-FE0F", "j": ["cartwheel", "gymnastics", "woman"]}, "people-wrestling": {"a": "people wrestling", "b": "1F93C", "j": ["wrestle", "sport", "wrestler"]}, "men-wrestling": {"a": "men wrestling", "b": "1F93C-200D-2642-FE0F", "j": ["wrestle", "wrestlers", "sports", "men"]}, "women-wrestling": {"a": "women wrestling", "b": "1F93C-200D-2640-FE0F", "j": ["wrestle", "women", "sports", "wrestlers"]}, "person-playing-water-polo": {"a": "person playing water polo", "b": "1F93D", "j": ["sport", "polo", "water"]}, "man-playing-water-polo": {"a": "man playing water polo", "b": "1F93D-200D-2642-FE0F", "j": ["pool", "water polo", "man", "sports"]}, "woman-playing-water-polo": {"a": "woman playing water polo", "b": "1F93D-200D-2640-FE0F", "j": ["woman", "pool", "water polo", "sports"]}, "person-playing-handball": {"a": "person playing handball", "b": "1F93E", "j": ["sport", "handball", "ball"]}, "man-playing-handball": {"a": "man playing handball", "b": "1F93E-200D-2642-FE0F", "j": ["handball", "man", "sports"]}, "woman-playing-handball": {"a": "woman playing handball", "b": "1F93E-200D-2640-FE0F", "j": ["woman", "handball", "sports"]}, "person-juggling": {"a": "person juggling", "b": "1F939", "j": ["performance", "balance", "skill", "multitask", "juggle"]}, "man-juggling": {"a": "man juggling", "b": "1F939-200D-2642-FE0F", "j": ["juggling", "balance", "man", "skill", "multitask", "juggle"]}, "woman-juggling": {"a": "woman juggling", "b": "1F939-200D-2640-FE0F", "j": ["juggling", "balance", "skill", "woman", "multitask", "juggle"]}, "person-in-lotus-position": {"a": "person in lotus position", "b": "1F9D8", "j": ["meditation", "meditate", "serenity", "yoga"]}, "man-in-lotus-position": {"a": "man in lotus position", "b": "1F9D8-200D-2642-FE0F", "j": ["man", "male", "meditation", "mindfulness", "yoga", "zen", "serenity"]}, "woman-in-lotus-position": {"a": "woman in lotus position", "b": "1F9D8-200D-2640-FE0F", "j": ["woman", "meditation", "mindfulness", "yoga", "zen", "serenity", "female"]}, "person-taking-bath": {"a": "person taking bath", "b": "1F6C0", "j": ["bathroom", "bath", "clean", "shower", "bathtub"]}, "person-in-bed": {"a": "person in bed", "b": "1F6CC", "j": ["sleep", "rest", "hotel", "bed"]}, "people-holding-hands": {"a": "people holding hands", "b": "1F9D1-200D-1F91D-200D-1F9D1", "j": ["person", "friendship", "hold", "hand", "holding hands", "couple"]}, "women-holding-hands": {"a": "women holding hands", "b": "1F46D", "j": ["friendship", "people", "love", "like", "human", "hand", "holding hands", "women", "couple", "pair", "female"]}, "woman-and-man-holding-hands": {"a": "woman and man holding hands", "b": "1F46B", "j": ["love", "dating", "like", "woman", "marriage", "human", "hand", "valentines", "affection", "couple", "pair", "date", "people", "man", "hold", "holding hands"]}, "men-holding-hands": {"a": "men holding hands", "b": "1F46C", "j": ["friendship", "people", "love", "man", "twins", "like", "human", "bromance", "holding hands", "zodiac", "Gemini", "men", "couple", "pair"]}, "kiss": {"a": "kiss", "b": "1F48F", "j": ["love", "dating", "like", "marriage", "valentines", "couple", "pair"]}, "kiss-woman-man": {"a": "kiss: woman, man", "b": "1F469-200D-2764-FE0F-200D-1F48B-200D-1F468", "j": ["love", "man", "woman", "kiss", "couple"]}, "kiss-man-man": {"a": "kiss: man, man", "b": "1F468-200D-2764-FE0F-200D-1F48B-200D-1F468", "j": ["love", "man", "like", "dating", "marriage", "valentines", "kiss", "couple", "pair"]}, "kiss-woman-woman": {"a": "kiss: woman, woman", "b": "1F469-200D-2764-FE0F-200D-1F48B-200D-1F469", "j": ["love", "like", "dating", "woman", "marriage", "valentines", "kiss", "couple", "pair"]}, "couple-with-heart": {"a": "couple with heart", "b": "1F491", "j": ["love", "like", "dating", "marriage", "human", "valentines", "affection", "couple", "pair"]}, "couple-with-heart-woman-man": {"a": "couple with heart: woman, man", "b": "1F469-200D-2764-FE0F-200D-1F468", "j": ["love", "man", "woman", "couple with heart", "couple"]}, "couple-with-heart-man-man": {"a": "couple with heart: man, man", "b": "1F468-200D-2764-FE0F-200D-1F468", "j": ["love", "man", "like", "dating", "marriage", "human", "couple with heart", "valentines", "affection", "couple", "pair"]}, "couple-with-heart-woman-woman": {"a": "couple with heart: woman, woman", "b": "1F469-200D-2764-FE0F-200D-1F469", "j": ["love", "like", "dating", "woman", "marriage", "human", "couple with heart", "valentines", "affection", "couple", "pair"]}, "family": {"a": "family", "b": "1F46A", "j": ["people", "mom", "father", "human", "parents", "dad", "home", "child", "mother"]}, "family-man-woman-boy": {"a": "family: man, woman, boy", "b": "1F468-200D-1F469-200D-1F466", "j": ["love", "man", "woman", "boy", "family"]}, "family-man-woman-girl": {"a": "family: man, woman, girl", "b": "1F468-200D-1F469-200D-1F467", "j": ["people", "man", "woman", "human", "girl", "parents", "family", "home", "child"]}, "family-man-woman-girl-boy": {"a": "family: man, woman, girl, boy", "b": "1F468-200D-1F469-200D-1F467-200D-1F466", "j": ["people", "man", "woman", "human", "boy", "girl", "parents", "family", "home", "children"]}, "family-man-woman-boy-boy": {"a": "family: man, woman, boy, boy", "b": "1F468-200D-1F469-200D-1F466-200D-1F466", "j": ["people", "man", "woman", "human", "boy", "parents", "family", "home", "children"]}, "family-man-woman-girl-girl": {"a": "family: man, woman, girl, girl", "b": "1F468-200D-1F469-200D-1F467-200D-1F467", "j": ["people", "man", "woman", "human", "girl", "parents", "family", "home", "children"]}, "family-man-man-boy": {"a": "family: man, man, boy", "b": "1F468-200D-1F468-200D-1F466", "j": ["people", "man", "human", "boy", "parents", "family", "home", "children"]}, "family-man-man-girl": {"a": "family: man, man, girl", "b": "1F468-200D-1F468-200D-1F467", "j": ["people", "man", "human", "girl", "parents", "family", "home", "children"]}, "family-man-man-girl-boy": {"a": "family: man, man, girl, boy", "b": "1F468-200D-1F468-200D-1F467-200D-1F466", "j": ["people", "man", "human", "boy", "girl", "parents", "family", "home", "children"]}, "family-man-man-boy-boy": {"a": "family: man, man, boy, boy", "b": "1F468-200D-1F468-200D-1F466-200D-1F466", "j": ["people", "man", "human", "boy", "parents", "family", "home", "children"]}, "family-man-man-girl-girl": {"a": "family: man, man, girl, girl", "b": "1F468-200D-1F468-200D-1F467-200D-1F467", "j": ["people", "man", "human", "girl", "parents", "family", "home", "children"]}, "family-woman-woman-boy": {"a": "family: woman, woman, boy", "b": "1F469-200D-1F469-200D-1F466", "j": ["people", "woman", "human", "boy", "parents", "family", "home", "children"]}, "family-woman-woman-girl": {"a": "family: woman, woman, girl", "b": "1F469-200D-1F469-200D-1F467", "j": ["people", "woman", "human", "girl", "parents", "family", "home", "children"]}, "family-woman-woman-girl-boy": {"a": "family: woman, woman, girl, boy", "b": "1F469-200D-1F469-200D-1F467-200D-1F466", "j": ["people", "woman", "human", "boy", "girl", "parents", "family", "home", "children"]}, "family-woman-woman-boy-boy": {"a": "family: woman, woman, boy, boy", "b": "1F469-200D-1F469-200D-1F466-200D-1F466", "j": ["people", "woman", "human", "boy", "parents", "family", "home", "children"]}, "family-woman-woman-girl-girl": {"a": "family: woman, woman, girl, girl", "b": "1F469-200D-1F469-200D-1F467-200D-1F467", "j": ["people", "woman", "human", "girl", "parents", "family", "home", "children"]}, "family-man-boy": {"a": "family: man, boy", "b": "1F468-200D-1F466", "j": ["people", "man", "human", "boy", "parent", "family", "home", "child"]}, "family-man-boy-boy": {"a": "family: man, boy, boy", "b": "1F468-200D-1F466-200D-1F466", "j": ["people", "man", "human", "boy", "parent", "family", "home", "children"]}, "family-man-girl": {"a": "family: man, girl", "b": "1F468-200D-1F467", "j": ["people", "man", "human", "girl", "parent", "family", "home", "child"]}, "family-man-girl-boy": {"a": "family: man, girl, boy", "b": "1F468-200D-1F467-200D-1F466", "j": ["people", "man", "human", "boy", "girl", "parent", "family", "home", "children"]}, "family-man-girl-girl": {"a": "family: man, girl, girl", "b": "1F468-200D-1F467-200D-1F467", "j": ["people", "man", "human", "girl", "parent", "family", "home", "children"]}, "family-woman-boy": {"a": "family: woman, boy", "b": "1F469-200D-1F466", "j": ["people", "woman", "human", "boy", "parent", "family", "home", "child"]}, "family-woman-boy-boy": {"a": "family: woman, boy, boy", "b": "1F469-200D-1F466-200D-1F466", "j": ["people", "woman", "human", "boy", "parent", "family", "home", "children"]}, "family-woman-girl": {"a": "family: woman, girl", "b": "1F469-200D-1F467", "j": ["people", "woman", "human", "girl", "parent", "family", "home", "child"]}, "family-woman-girl-boy": {"a": "family: woman, girl, boy", "b": "1F469-200D-1F467-200D-1F466", "j": ["people", "woman", "human", "boy", "girl", "parent", "family", "home", "children"]}, "family-woman-girl-girl": {"a": "family: woman, girl, girl", "b": "1F469-200D-1F467-200D-1F467", "j": ["people", "woman", "human", "girl", "parent", "family", "home", "children"]}, "speaking-head": {"a": "speaking head", "b": "1F5E3", "j": ["person", "talk", "human", "sing", "face", "silhouette", "speak", "say", "speaking", "user", "head"]}, "bust-in-silhouette": {"a": "bust in silhouette", "b": "1F464", "j": ["person", "bust", "human", "silhouette", "user"]}, "busts-in-silhouette": {"a": "busts in silhouette", "b": "1F465", "j": ["team", "bust", "person", "group", "human", "silhouette", "user"]}, "people-hugging": {"a": "people hugging", "b": "1FAC2", "j": ["hug", "hello", "thanks", "goodbye", "care"]}, "footprints": {"a": "footprints", "b": "1F463", "j": ["tracking", "footprint", "walking", "clothing", "feet", "print", "beach"]}, "red-hair": {"a": "red hair", "b": "1F9B0", "j": ["ginger", "red hair", "redhead"]}, "curly-hair": {"a": "curly hair", "b": "1F9B1", "j": ["afro", "curly", "curly hair", "ringlets"]}, "white-hair": {"a": "white hair", "b": "1F9B3", "j": ["gray", "hair", "old", "white"]}, "bald": {"a": "bald", "b": "1F9B2", "j": ["bald", "chemotherapy", "hairless", "no hair", "shaven"]}, "monkey-face": {"a": "monkey face", "b": "1F435", "j": ["monkey", "face", "nature", "circus", "animal"]}, "monkey": {"a": "monkey", "b": "1F412", "j": ["banana", "circus", "animal", "nature"]}, "gorilla": {"a": "gorilla", "b": "1F98D", "j": ["circus", "animal", "nature"]}, "orangutan": {"a": "orangutan", "b": "1F9A7", "j": ["animal", "ape"]}, "dog-face": {"a": "dog face", "b": "1F436", "j": ["puppy", "pet", "dog", "face", "nature", "woof", "faithful", "friend", "animal"]}, "dog": {"a": "dog", "b": "1F415", "j": ["pet", "nature", "faithful", "friend", "doge", "animal"]}, "guide-dog": {"a": "guide dog", "b": "1F9AE", "j": ["guide", "animal", "blind", "accessibility"]}, "service-dog": {"a": "service dog", "b": "1F415-200D-1F9BA", "j": ["animal", "accessibility", "dog", "assistance", "service", "blind"]}, "poodle": {"a": "poodle", "b": "1F429", "j": ["pet", "dog", "nature", "101", "animal"]}, "wolf": {"a": "wolf", "b": "1F43A", "j": ["animal", "wild", "face", "nature"]}, "fox": {"a": "fox", "b": "1F98A", "j": ["animal", "face", "nature"]}, "raccoon": {"a": "raccoon", "b": "1F99D", "j": ["curious", "sly", "animal", "nature"]}, "cat-face": {"a": "cat face", "b": "1F431", "j": ["pet", "meow", "kitten", "face", "nature", "cat", "animal"]}, "cat": {"a": "cat", "b": "1F408", "j": ["meow", "pet", "animal", "cats"]}, "black-cat": {"a": "black cat", "b": "1F408-200D-2B1B", "j": ["unlucky", "superstition", "luck", "cat", "black"]}, "lion": {"a": "lion", "b": "1F981", "j": ["zodiac", "Leo", "face", "nature", "animal"]}, "tiger-face": {"a": "tiger face", "b": "1F42F", "j": ["danger", "tiger", "face", "nature", "wild", "cat", "animal", "roar"]}, "tiger": {"a": "tiger", "b": "1F405", "j": ["roar", "animal", "nature"]}, "leopard": {"a": "leopard", "b": "1F406", "j": ["animal", "nature"]}, "horse-face": {"a": "horse face", "b": "1F434", "j": ["brown", "face", "nature", "horse", "animal"]}, "horse": {"a": "horse", "b": "1F40E", "j": ["equestrian", "gamble", "racing", "luck", "racehorse", "animal"]}, "unicorn": {"a": "unicorn", "b": "1F984", "j": ["mystical", "animal", "face", "nature"]}, "zebra": {"a": "zebra", "b": "1F993", "j": ["nature", "safari", "stripe", "stripes", "animal"]}, "deer": {"a": "deer", "b": "1F98C", "j": ["venison", "animal", "horns", "nature"]}, "bison": {"a": "bison", "b": "1F9AC", "j": ["wisent", "buffalo", "herd", "ox"]}, "cow-face": {"a": "cow face", "b": "1F42E", "j": ["cow", "milk", "beef", "ox", "face", "nature", "moo", "animal"]}, "ox": {"a": "ox", "b": "1F402", "j": ["cow", "Taurus", "beef", "zodiac", "bull", "animal"]}, "water-buffalo": {"a": "water buffalo", "b": "1F403", "j": ["cow", "buffalo", "water", "ox", "nature", "animal"]}, "cow": {"a": "cow", "b": "1F404", "j": ["milk", "beef", "ox", "nature", "moo", "animal"]}, "pig-face": {"a": "pig face", "b": "1F437", "j": ["pig", "face", "nature", "oink", "animal"]}, "pig": {"a": "pig", "b": "1F416", "j": ["nature", "animal", "sow"]}, "boar": {"a": "boar", "b": "1F417", "j": ["animal", "pig", "nature"]}, "pig-nose": {"a": "pig nose", "b": "1F43D", "j": ["pig", "face", "oink", "nose", "animal"]}, "ram": {"a": "ram", "b": "1F40F", "j": ["male", "zodiac", "nature", "sheep", "Aries", "animal"]}, "ewe": {"a": "ewe", "b": "1F411", "j": ["nature", "sheep", "shipit", "wool", "animal", "female"]}, "goat": {"a": "goat", "b": "1F410", "j": ["animal", "Capricorn", "zodiac", "nature"]}, "camel": {"a": "camel", "b": "1F42A", "j": ["hump", "dromedary", "hot", "desert", "animal"]}, "twohump-camel": {"a": "two-hump camel", "b": "1F42B", "j": ["animal", "hump", "bactrian", "hot", "desert", "nature", "camel", "two_hump_camel"]}, "llama": {"a": "llama", "b": "1F999", "j": ["guanaco", "vicuña", "alpaca", "nature", "wool", "animal"]}, "giraffe": {"a": "giraffe", "b": "1F992", "j": ["spots", "animal", "safari", "nature"]}, "elephant": {"a": "elephant", "b": "1F418", "j": ["nature", "nose", "circus", "animal", "th"]}, "mammoth": {"a": "mammoth", "b": "1F9A3", "j": ["large", "woolly", "elephant", "extinction", "tusks", "tusk"]}, "rhinoceros": {"a": "rhinoceros", "b": "1F98F", "j": ["nature", "animal", "horn"]}, "hippopotamus": {"a": "hippopotamus", "b": "1F99B", "j": ["nature", "animal", "hippo"]}, "mouse-face": {"a": "mouse face", "b": "1F42D", "j": ["mouse", "face", "nature", "animal", "cheese_wedge", "rodent"]}, "mouse": {"a": "mouse", "b": "1F401", "j": ["rodent", "animal", "nature"]}, "rat": {"a": "rat", "b": "1F400", "j": ["mouse", "animal", "rodent"]}, "hamster": {"a": "hamster", "b": "1F439", "j": ["pet", "animal", "face", "nature"]}, "rabbit-face": {"a": "rabbit face", "b": "1F430", "j": ["pet", "spring", "face", "nature", "rabbit", "bunny", "animal", "magic"]}, "rabbit": {"a": "rabbit", "b": "1F407", "j": ["pet", "spring", "nature", "bunny", "animal", "magic"]}, "chipmunk": {"a": "chipmunk", "b": "1F43F", "j": ["nature", "animal", "squirrel", "rodent"]}, "beaver": {"a": "beaver", "b": "1F9AB", "j": ["animal", "dam", "rodent"]}, "hedgehog": {"a": "hedgehog", "b": "1F994", "j": ["spiny", "animal", "nature"]}, "bat": {"a": "bat", "b": "1F987", "j": ["blind", "animal", "vampire", "nature"]}, "bear": {"a": "bear", "b": "1F43B", "j": ["animal", "wild", "face", "nature"]}, "polar-bear": {"a": "polar bear", "b": "1F43B-200D-2744-FE0F", "j": ["animal", "white", "arctic", "bear"]}, "koala": {"a": "koala", "b": "1F428", "j": ["bear", "animal", "nature"]}, "panda": {"a": "panda", "b": "1F43C", "j": ["animal", "face", "nature"]}, "sloth": {"a": "sloth", "b": "1F9A5", "j": ["slow", "animal", "lazy"]}, "otter": {"a": "otter", "b": "1F9A6", "j": ["playful", "animal", "fishing"]}, "skunk": {"a": "skunk", "b": "1F9A8", "j": ["stink", "animal"]}, "kangaroo": {"a": "kangaroo", "b": "1F998", "j": ["Australia", "australia", "hop", "joey", "nature", "marsupial", "animal", "jump"]}, "badger": {"a": "badger", "b": "1F9A1", "j": ["nature", "pester", "honey badger", "honey", "animal"]}, "paw-prints": {"a": "paw prints", "b": "1F43E", "j": ["pet", "tracking", "dog", "feet", "paw", "cat", "print", "animal", "footprints"]}, "turkey": {"a": "turkey", "b": "1F983", "j": ["animal", "bird"]}, "chicken": {"a": "chicken", "b": "1F414", "j": ["cluck", "animal", "bird", "nature"]}, "rooster": {"a": "rooster", "b": "1F413", "j": ["chicken", "animal", "bird", "nature"]}, "hatching-chick": {"a": "hatching chick", "b": "1F423", "j": ["born", "hatching", "baby", "bird", "chicken", "chick", "egg", "animal"]}, "baby-chick": {"a": "baby chick", "b": "1F424", "j": ["baby", "bird", "chicken", "chick", "animal"]}, "frontfacing-baby-chick": {"a": "front-facing baby chick", "b": "1F425", "j": ["baby", "bird", "chicken", "front_facing_baby_chick", "chick", "animal"]}, "bird": {"a": "bird", "b": "1F426", "j": ["tweet", "spring", "nature", "fly", "animal"]}, "penguin": {"a": "penguin", "b": "1F427", "j": ["animal", "bird", "nature"]}, "dove": {"a": "dove", "b": "1F54A", "j": ["fly", "animal", "bird", "peace"]}, "eagle": {"a": "eagle", "b": "1F985", "j": ["animal", "bird", "nature"]}, "duck": {"a": "duck", "b": "1F986", "j": ["animal", "bird", "mallard", "nature"]}, "swan": {"a": "swan", "b": "1F9A2", "j": ["ugly duckling", "cygnet", "bird", "nature", "animal"]}, "owl": {"a": "owl", "b": "1F989", "j": ["bird", "wise", "nature", "hoot", "animal"]}, "dodo": {"a": "dodo", "b": "1F9A4", "j": ["large", "bird", "Mauritius", "extinction", "animal"]}, "feather": {"a": "feather", "b": "1FAB6", "j": ["flight", "bird", "plumage", "light", "fly"]}, "flamingo": {"a": "flamingo", "b": "1F9A9", "j": ["tropical", "flamboyant", "animal"]}, "peacock": {"a": "peacock", "b": "1F99A", "j": ["peahen", "bird", "proud", "nature", "ostentatious", "animal"]}, "parrot": {"a": "parrot", "b": "1F99C", "j": ["talk", "pirate", "bird", "nature", "animal"]}, "frog": {"a": "frog", "b": "1F438", "j": ["croak", "face", "toad", "nature", "animal"]}, "crocodile": {"a": "crocodile", "b": "1F40A", "j": ["reptile", "alligator", "nature", "animal", "lizard"]}, "turtle": {"a": "turtle", "b": "1F422", "j": ["slow", "nature", "tortoise", "terrapin", "animal"]}, "lizard": {"a": "lizard", "b": "1F98E", "j": ["reptile", "animal", "nature"]}, "snake": {"a": "snake", "b": "1F40D", "j": ["serpent", "Ophiuchus", "zodiac", "nature", "hiss", "bearer", "evil", "animal", "python"]}, "dragon-face": {"a": "dragon face", "b": "1F432", "j": ["face", "myth", "fairy tale", "nature", "dragon", "chinese", "green", "animal"]}, "dragon": {"a": "dragon", "b": "1F409", "j": ["myth", "nature", "fairy tale", "chinese", "green", "animal"]}, "sauropod": {"a": "sauropod", "b": "1F995", "j": ["diplodocus", "brontosaurus", "nature", "dinosaur", "extinct", "animal", "brachiosaurus"]}, "trex": {"a": "T-Rex", "b": "1F996", "j": ["nature", "Tyrannosaurus Rex", "dinosaur", "t_rex", "tyrannosaurus", "extinct", "animal"]}, "spouting-whale": {"a": "spouting whale", "b": "1F433", "j": ["spouting", "whale", "sea", "face", "nature", "ocean", "animal"]}, "whale": {"a": "whale", "b": "1F40B", "j": ["ocean", "animal", "sea", "nature"]}, "dolphin": {"a": "dolphin", "b": "1F42C", "j": ["sea", "fish", "nature", "flipper", "ocean", "animal", "fins", "beach"]}, "seal": {"a": "seal", "b": "1F9AD", "j": ["sea", "sea lion", "animal", "creature"]}, "fish": {"a": "fish", "b": "1F41F", "j": ["zodiac", "nature", "Pisces", "food", "animal"]}, "tropical-fish": {"a": "tropical fish", "b": "1F420", "j": ["swim", "fish", "ocean", "nemo", "tropical", "animal", "beach"]}, "blowfish": {"a": "blowfish", "b": "1F421", "j": ["sea", "fish", "nature", "ocean", "food", "animal"]}, "shark": {"a": "shark", "b": "1F988", "j": ["jaws", "sea", "fish", "nature", "ocean", "animal", "fins", "beach"]}, "octopus": {"a": "octopus", "b": "1F419", "j": ["sea", "nature", "ocean", "creature", "animal", "beach"]}, "spiral-shell": {"a": "spiral shell", "b": "1F41A", "j": ["sea", "shell", "nature", "spiral", "beach"]}, "snail": {"a": "snail", "b": "1F40C", "j": ["slow", "animal", "shell"]}, "butterfly": {"a": "butterfly", "b": "1F98B", "j": ["caterpillar", "nature", "pretty", "insect", "animal"]}, "bug": {"a": "bug", "b": "1F41B", "j": ["worm", "insect", "animal", "nature"]}, "ant": {"a": "ant", "b": "1F41C", "j": ["bug", "insect", "animal", "nature"]}, "honeybee": {"a": "honeybee", "b": "1F41D", "j": ["spring", "nature", "bug", "bee", "honey", "insect", "animal"]}, "beetle": {"a": "beetle", "b": "1FAB2", "j": ["insect", "bug"]}, "lady-beetle": {"a": "lady beetle", "b": "1F41E", "j": ["beetle", "nature", "ladybird", "ladybug", "insect", "animal"]}, "cricket": {"a": "cricket", "b": "1F997", "j": ["chirp", "animal", "Orthoptera", "grasshopper"]}, "cockroach": {"a": "cockroach", "b": "1FAB3", "j": ["pest", "pests", "insect", "roach"]}, "spider": {"a": "spider", "b": "1F577", "j": ["arachnid", "animal", "insect"]}, "spider-web": {"a": "spider web", "b": "1F578", "j": ["silk", "spider", "arachnid", "insect", "animal", "web"]}, "scorpion": {"a": "scorpion", "b": "1F982", "j": ["Scorpio", "zodiac", "scorpio", "arachnid", "animal"]}, "mosquito": {"a": "mosquito", "b": "1F99F", "j": ["malaria", "pest", "nature", "disease", "fever", "insect", "animal", "virus"]}, "fly": {"a": "fly", "b": "1FAB0", "j": ["pest", "rotting", "disease", "maggot", "insect"]}, "worm": {"a": "worm", "b": "1FAB1", "j": ["earthworm", "animal", "annelid", "parasite"]}, "microbe": {"a": "microbe", "b": "1F9A0", "j": ["bacteria", "germs", "amoeba", "virus"]}, "bouquet": {"a": "bouquet", "b": "1F490", "j": ["flowers", "flower", "spring", "nature"]}, "cherry-blossom": {"a": "cherry blossom", "b": "1F338", "j": ["flower", "spring", "nature", "plant", "cherry", "blossom"]}, "white-flower": {"a": "white flower", "b": "1F4AE", "j": ["flower", "japanese", "spring"]}, "rosette": {"a": "rosette", "b": "1F3F5", "j": ["military", "plant", "decoration", "flower"]}, "rose": {"a": "rose", "b": "1F339", "j": ["flower", "love", "spring", "valentines", "flowers"]}, "wilted-flower": {"a": "wilted flower", "b": "1F940", "j": ["flower", "plant", "wilted", "nature"]}, "hibiscus": {"a": "hibiscus", "b": "1F33A", "j": ["flower", "plant", "flowers", "vegetable", "beach"]}, "sunflower": {"a": "sunflower", "b": "1F33B", "j": ["sun", "flower", "nature", "fall", "plant"]}, "blossom": {"a": "blossom", "b": "1F33C", "j": ["flowers", "flower", "yellow", "nature"]}, "tulip": {"a": "tulip", "b": "1F337", "j": ["flower", "spring", "nature", "plant", "summer", "flowers"]}, "seedling": {"a": "seedling", "b": "1F331", "j": ["spring", "young", "lawn", "nature", "plant", "grass"]}, "potted-plant": {"a": "potted plant", "b": "1FAB4", "j": ["house", "nurturing", "greenery", "grow", "plant", "useless", "boring"]}, "evergreen-tree": {"a": "evergreen tree", "b": "1F332", "j": ["tree", "plant", "nature"]}, "deciduous-tree": {"a": "deciduous tree", "b": "1F333", "j": ["shedding", "deciduous", "nature", "plant", "tree"]}, "palm-tree": {"a": "palm tree", "b": "1F334", "j": ["nature", "plant", "tree", "mojito", "summer", "tropical", "vegetable", "palm", "beach"]}, "cactus": {"a": "cactus", "b": "1F335", "j": ["plant", "vegetable", "nature"]}, "sheaf-of-rice": {"a": "sheaf of rice", "b": "1F33E", "j": ["rice", "grain", "nature", "ear", "plant"]}, "herb": {"a": "herb", "b": "1F33F", "j": ["weed", "leaf", "lawn", "medicine", "plant", "vegetable", "grass"]}, "shamrock": {"a": "shamrock", "b": "2618", "j": ["clover", "nature", "plant", "irish", "vegetable"]}, "four-leaf-clover": {"a": "four leaf clover", "b": "1F340", "j": ["four-leaf clover", "leaf", "lucky", "four", "clover", "nature", "plant", "4", "irish", "vegetable"]}, "maple-leaf": {"a": "maple leaf", "b": "1F341", "j": ["leaf", "maple", "ca", "nature", "fall", "plant", "falling", "vegetable"]}, "fallen-leaf": {"a": "fallen leaf", "b": "1F342", "j": ["leaf", "nature", "plant", "falling", "leaves", "vegetable"]}, "leaf-fluttering-in-wind": {"a": "leaf fluttering in wind", "b": "1F343", "j": ["flutter", "leaf", "spring", "lawn", "blow", "nature", "plant", "tree", "vegetable", "wind", "grass"]}, "grapes": {"a": "grapes", "b": "1F347", "j": ["wine", "grape", "food", "fruit"]}, "melon": {"a": "melon", "b": "1F348", "j": ["nature", "food", "fruit"]}, "watermelon": {"a": "watermelon", "b": "1F349", "j": ["fruit", "food", "picnic", "summer"]}, "tangerine": {"a": "tangerine", "b": "1F34A", "j": ["fruit", "food", "orange", "nature"]}, "lemon": {"a": "lemon", "b": "1F34B", "j": ["citrus", "nature", "fruit"]}, "banana": {"a": "banana", "b": "1F34C", "j": ["monkey", "food", "fruit"]}, "pineapple": {"a": "pineapple", "b": "1F34D", "j": ["nature", "food", "fruit"]}, "mango": {"a": "mango", "b": "1F96D", "j": ["tropical", "food", "fruit"]}, "red-apple": {"a": "red apple", "b": "1F34E", "j": ["apple", "fruit", "school", "mac", "red"]}, "green-apple": {"a": "green apple", "b": "1F34F", "j": ["fruit", "apple", "green", "nature"]}, "pear": {"a": "pear", "b": "1F350", "j": ["nature", "food", "fruit"]}, "peach": {"a": "peach", "b": "1F351", "j": ["nature", "food", "fruit"]}, "cherries": {"a": "cherries", "b": "1F352", "j": ["fruit", "red", "cherry", "food", "berries"]}, "strawberry": {"a": "strawberry", "b": "1F353", "j": ["fruit", "food", "berry", "nature"]}, "blueberries": {"a": "blueberries", "b": "1FAD0", "j": ["blue", "blueberry", "berry", "bilberry", "fruit"]}, "kiwi-fruit": {"a": "kiwi fruit", "b": "1F95D", "j": ["kiwi", "food", "fruit"]}, "tomato": {"a": "tomato", "b": "1F345", "j": ["fruit", "food", "vegetable", "nature"]}, "olive": {"a": "olive", "b": "1FAD2", "j": ["food", "fruit"]}, "coconut": {"a": "coconut", "b": "1F965", "j": ["fruit", "piña colada", "nature", "food", "palm"]}, "avocado": {"a": "avocado", "b": "1F951", "j": ["food", "fruit"]}, "eggplant": {"a": "eggplant", "b": "1F346", "j": ["aubergine", "food", "vegetable", "nature"]}, "potato": {"a": "potato", "b": "1F954", "j": ["tuber", "starch", "vegatable", "food", "vegetable"]}, "carrot": {"a": "carrot", "b": "1F955", "j": ["food", "vegetable", "orange"]}, "ear-of-corn": {"a": "ear of corn", "b": "1F33D", "j": ["corn", "maze", "ear", "food", "plant", "maize", "vegetable"]}, "hot-pepper": {"a": "hot pepper", "b": "1F336", "j": ["chili", "hot", "spicy", "pepper", "food", "chilli"]}, "bell-pepper": {"a": "bell pepper", "b": "1FAD1", "j": ["fruit", "pepper", "capsicum", "plant", "vegetable"]}, "cucumber": {"a": "cucumber", "b": "1F952", "j": ["pickle", "food", "vegetable", "fruit"]}, "leafy-green": {"a": "leafy green", "b": "1F96C", "j": ["cabbage", "kale", "bok choy", "plant", "food", "lettuce", "vegetable"]}, "broccoli": {"a": "broccoli", "b": "1F966", "j": ["wild cabbage", "food", "vegetable", "fruit"]}, "garlic": {"a": "garlic", "b": "1F9C4", "j": ["cook", "food", "flavoring", "spice"]}, "onion": {"a": "onion", "b": "1F9C5", "j": ["cook", "food", "flavoring", "spice"]}, "mushroom": {"a": "mushroom", "b": "1F344", "j": ["plant", "vegetable", "toadstool"]}, "peanuts": {"a": "peanuts", "b": "1F95C", "j": ["nut", "food", "vegetable", "peanut"]}, "chestnut": {"a": "chestnut", "b": "1F330", "j": ["plant", "food", "squirrel"]}, "bread": {"a": "bread", "b": "1F35E", "j": ["loaf", "toast", "breakfast", "food", "wheat"]}, "croissant": {"a": "croissant", "b": "1F950", "j": ["french", "bread", "breakfast", "food", "roll"]}, "baguette-bread": {"a": "baguette bread", "b": "1F956", "j": ["french", "baguette", "food", "bread"]}, "flatbread": {"a": "flatbread", "b": "1FAD3", "j": ["arepa", "lavash", "naan", "pita", "food", "flour"]}, "pretzel": {"a": "pretzel", "b": "1F968", "j": ["convoluted", "food", "bread", "twisted"]}, "bagel": {"a": "bagel", "b": "1F96F", "j": ["bread", "bakery", "breakfast", "food", "schmear"]}, "pancakes": {"a": "pancakes", "b": "1F95E", "j": ["hotcakes", "hotcake", "pancake", "flapjacks", "breakfast", "food", "crêpe"]}, "waffle": {"a": "waffle", "b": "1F9C7", "j": ["iron", "food", "breakfast", "indecisive"]}, "cheese-wedge": {"a": "cheese wedge", "b": "1F9C0", "j": ["chadder", "food", "cheese"]}, "meat-on-bone": {"a": "meat on bone", "b": "1F356", "j": ["drumstick", "bone", "good", "meat", "food"]}, "poultry-leg": {"a": "poultry leg", "b": "1F357", "j": ["leg", "drumstick", "bone", "poultry", "bird", "meat", "chicken", "food", "turkey"]}, "cut-of-meat": {"a": "cut of meat", "b": "1F969", "j": ["cow", "steak", "meat", "food", "lambchop", "chop", "porkchop", "cut"]}, "bacon": {"a": "bacon", "b": "1F953", "j": ["pig", "meat", "breakfast", "food", "pork"]}, "hamburger": {"a": "hamburger", "b": "1F354", "j": ["burger king", "fast food", "beef", "meat", "burger", "mcdonalds", "cheeseburger"]}, "french-fries": {"a": "french fries", "b": "1F35F", "j": ["fries", "fast food", "french", "chips", "snack"]}, "pizza": {"a": "pizza", "b": "1F355", "j": ["food", "cheese", "party", "slice"]}, "hot-dog": {"a": "hot dog", "b": "1F32D", "j": ["food", "hotdog", "sausage", "frankfurter"]}, "sandwich": {"a": "sandwich", "b": "1F96A", "j": ["lunch", "food", "bread"]}, "taco": {"a": "taco", "b": "1F32E", "j": ["food", "mexican"]}, "burrito": {"a": "burrito", "b": "1F32F", "j": ["food", "mexican", "wrap"]}, "tamale": {"a": "tamale", "b": "1FAD4", "j": ["masa", "food", "wrapped", "mexican"]}, "stuffed-flatbread": {"a": "stuffed flatbread", "b": "1F959", "j": ["kebab", "flatbread", "food", "stuffed", "gyro", "falafel"]}, "falafel": {"a": "falafel", "b": "1F9C6", "j": ["chickpea", "food", "meatball"]}, "egg": {"a": "egg", "b": "1F95A", "j": ["breakfast", "food", "chicken"]}, "cooking": {"a": "cooking", "b": "1F373", "j": ["breakfast", "food", "frying", "kitchen", "egg", "pan"]}, "shallow-pan-of-food": {"a": "shallow pan of food", "b": "1F958", "j": ["cooking", "shallow", "paella", "food", "pan", "casserole"]}, "pot-of-food": {"a": "pot of food", "b": "1F372", "j": ["pot", "stew", "soup", "meat", "food"]}, "fondue": {"a": "fondue", "b": "1FAD5", "j": ["pot", "melted", "cheese", "chocolate", "food", "Swiss"]}, "bowl-with-spoon": {"a": "bowl with spoon", "b": "1F963", "j": ["porridge", "breakfast", "food", "cereal", "congee", "oatmeal"]}, "green-salad": {"a": "green salad", "b": "1F957", "j": ["salad", "healthy", "food", "green", "lettuce"]}, "popcorn": {"a": "popcorn", "b": "1F37F", "j": ["snack", "food", "films", "movie theater"]}, "butter": {"a": "butter", "b": "1F9C8", "j": ["cook", "food", "dairy"]}, "salt": {"a": "salt", "b": "1F9C2", "j": ["shaker", "condiment"]}, "canned-food": {"a": "canned food", "b": "1F96B", "j": ["soup", "food", "can"]}, "bento-box": {"a": "bento box", "b": "1F371", "j": ["food", "box", "japanese", "bento"]}, "rice-cracker": {"a": "rice cracker", "b": "1F358", "j": ["rice", "food", "japanese", "cracker"]}, "rice-ball": {"a": "rice ball", "b": "1F359", "j": ["rice", "Japanese", "japanese", "ball", "food"]}, "cooked-rice": {"a": "cooked rice", "b": "1F35A", "j": ["china", "rice", "asian", "food", "cooked"]}, "curry-rice": {"a": "curry rice", "b": "1F35B", "j": ["curry", "rice", "hot", "spicy", "food", "indian"]}, "steaming-bowl": {"a": "steaming bowl", "b": "1F35C", "j": ["bowl", "japanese", "steaming", "food", "noodle", "ramen", "chopsticks"]}, "spaghetti": {"a": "spaghetti", "b": "1F35D", "j": ["italian", "food", "noodle", "pasta"]}, "roasted-sweet-potato": {"a": "roasted sweet potato", "b": "1F360", "j": ["roasted", "potato", "nature", "sweet", "food"]}, "oden": {"a": "oden", "b": "1F362", "j": ["stick", "kebab", "skewer", "japanese", "food", "seafood"]}, "sushi": {"a": "sushi", "b": "1F363", "j": ["rice", "food", "japanese", "fish"]}, "fried-shrimp": {"a": "fried shrimp", "b": "1F364", "j": ["prawn", "shrimp", "appetizer", "fried", "tempura", "food", "summer", "animal"]}, "fish-cake-with-swirl": {"a": "fish cake with swirl", "b": "1F365", "j": ["beach", "pink", "narutomaki", "sea", "fish", "surimi", "pastry", "cake", "food", "ramen", "swirl", "kamaboko", "japan"]}, "moon-cake": {"a": "moon cake", "b": "1F96E", "j": ["food", "yuèbǐng", "festival", "autumn"]}, "dango": {"a": "dango", "b": "1F361", "j": ["stick", "dessert", "Japanese", "japanese", "meat", "sweet", "barbecue", "food", "skewer"]}, "dumpling": {"a": "dumpling", "b": "1F95F", "j": ["jiaozi", "food", "pierogi", "empanada", "gyōza", "potsticker"]}, "fortune-cookie": {"a": "fortune cookie", "b": "1F960", "j": ["food", "prophecy"]}, "takeout-box": {"a": "takeout box", "b": "1F961", "j": ["oyster pail", "leftovers", "food"]}, "crab": {"a": "crab", "b": "1F980", "j": ["crustacean", "animal", "zodiac", "Cancer"]}, "lobster": {"a": "lobster", "b": "1F99E", "j": ["claws", "bisque", "nature", "animal", "seafood"]}, "shrimp": {"a": "shrimp", "b": "1F990", "j": ["shellfish", "nature", "ocean", "food", "small", "animal", "seafood"]}, "squid": {"a": "squid", "b": "1F991", "j": ["sea", "nature", "ocean", "food", "animal", "molusc"]}, "oyster": {"a": "oyster", "b": "1F9AA", "j": ["food", "pearl", "diving"]}, "soft-ice-cream": {"a": "soft ice cream", "b": "1F366", "j": ["hot", "dessert", "ice", "soft", "icecream", "sweet", "food", "summer", "cream"]}, "shaved-ice": {"a": "shaved ice", "b": "1F367", "j": ["hot", "dessert", "ice", "sweet", "summer", "shaved"]}, "ice-cream": {"a": "ice cream", "b": "1F368", "j": ["hot", "dessert", "ice", "sweet", "food", "cream"]}, "doughnut": {"a": "doughnut", "b": "1F369", "j": ["dessert", "sweet", "breakfast", "food", "snack", "donut"]}, "cookie": {"a": "cookie", "b": "1F36A", "j": ["dessert", "sweet", "chocolate", "food", "snack", "oreo"]}, "birthday-cake": {"a": "birthday cake", "b": "1F382", "j": ["birthday", "dessert", "pastry", "celebration", "sweet", "cake", "food"]}, "shortcake": {"a": "shortcake", "b": "1F370", "j": ["dessert", "pastry", "sweet", "cake", "food", "slice"]}, "cupcake": {"a": "cupcake", "b": "1F9C1", "j": ["sweet", "bakery", "dessert", "food"]}, "pie": {"a": "pie", "b": "1F967", "j": ["fruit", "dessert", "meat", "filling", "pastry", "food"]}, "chocolate-bar": {"a": "chocolate bar", "b": "1F36B", "j": ["dessert", "bar", "sweet", "chocolate", "food", "snack"]}, "candy": {"a": "candy", "b": "1F36C", "j": ["sweet", "snack", "dessert", "lolly"]}, "lollipop": {"a": "lollipop", "b": "1F36D", "j": ["dessert", "sweet", "candy", "food", "snack"]}, "custard": {"a": "custard", "b": "1F36E", "j": ["sweet", "dessert", "food", "pudding"]}, "honey-pot": {"a": "honey pot", "b": "1F36F", "j": ["pot", "kitchen", "bees", "sweet", "honeypot", "honey"]}, "baby-bottle": {"a": "baby bottle", "b": "1F37C", "j": ["milk", "drink", "bottle", "baby", "food", "container"]}, "glass-of-milk": {"a": "glass of milk", "b": "1F95B", "j": ["cow", "milk", "drink", "beverage", "glass"]}, "hot-beverage": {"a": "hot beverage", "b": "2615", "j": ["hot", "beverage", "drink", "steaming", "coffee", "caffeine", "tea", "latte", "espresso"]}, "teapot": {"a": "teapot", "b": "1FAD6", "j": ["hot", "pot", "drink", "tea"]}, "teacup-without-handle": {"a": "teacup without handle", "b": "1F375", "j": ["bowl", "cup", "british", "beverage", "teacup", "drink", "breakfast", "tea", "green"]}, "sake": {"a": "sake", "b": "1F376", "j": ["cup", "wine", "beverage", "drink", "drunk", "bottle", "bar", "japanese", "alcohol", "booze"]}, "bottle-with-popping-cork": {"a": "bottle with popping cork", "b": "1F37E", "j": ["wine", "drink", "bottle", "bar", "celebration", "popping", "cork"]}, "wine-glass": {"a": "wine glass", "b": "1F377", "j": ["wine", "beverage", "drink", "drunk", "alcohol", "bar", "booze", "glass"]}, "cocktail-glass": {"a": "cocktail glass", "b": "1F378", "j": ["drink", "alcohol", "drunk", "beverage", "bar", "cocktail", "mojito", "booze", "glass"]}, "tropical-drink": {"a": "tropical drink", "b": "1F379", "j": ["drink", "beverage", "alcohol", "bar", "cocktail", "mojito", "summer", "tropical", "booze", "beach"]}, "beer-mug": {"a": "beer mug", "b": "1F37A", "j": ["pub", "drink", "beverage", "drunk", "alcohol", "bar", "relax", "mug", "party", "summer", "booze", "beer"]}, "clinking-beer-mugs": {"a": "clinking beer mugs", "b": "1F37B", "j": ["pub", "drink", "beverage", "drunk", "alcohol", "clink", "bar", "relax", "mug", "party", "summer", "booze", "beer"]}, "clinking-glasses": {"a": "clinking glasses", "b": "1F942", "j": ["cheers", "toast", "champagne", "wine", "drink", "beverage", "alcohol", "clink", "party", "glass", "celebrate"]}, "tumbler-glass": {"a": "tumbler glass", "b": "1F943", "j": ["bourbon", "shot", "drink", "beverage", "drunk", "alcohol", "scotch", "liquor", "tumbler", "whisky", "booze", "glass"]}, "cup-with-straw": {"a": "cup with straw", "b": "1F964", "j": ["malt", "drink", "water", "soft drink", "soda", "juice"]}, "bubble-tea": {"a": "bubble tea", "b": "1F9CB", "j": ["bubble", "boba", "tea", "milk", "pearl", "straw", "milk tea", "taiwan"]}, "beverage-box": {"a": "beverage box", "b": "1F9C3", "j": ["beverage", "drink", "sweet", "straw", "juice", "box"]}, "mate": {"a": "mate", "b": "1F9C9", "j": ["drink", "beverage", "tea"]}, "ice": {"a": "ice", "b": "1F9CA", "j": ["iceberg", "cold", "ice cube", "water"]}, "chopsticks": {"a": "chopsticks", "b": "1F962", "j": ["food", "jeotgarak", "kuaizi", "hashi"]}, "fork-and-knife-with-plate": {"a": "fork and knife with plate", "b": "1F37D", "j": ["meal", "plate", "dinner", "knife", "eat", "lunch", "cooking", "food", "restaurant", "fork"]}, "fork-and-knife": {"a": "fork and knife", "b": "1F374", "j": ["knife", "cutlery", "cooking", "kitchen", "fork"]}, "spoon": {"a": "spoon", "b": "1F944", "j": ["kitchen", "tableware", "cutlery"]}, "kitchen-knife": {"a": "kitchen knife", "b": "1F52A", "j": ["hocho", "knife", "cutlery", "cooking", "weapon", "blade", "kitchen", "tool"]}, "amphora": {"a": "amphora", "b": "1F3FA", "j": ["Aquarius", "jar", "drink", "cooking", "zodiac", "vase", "jug"]}, "globe-showing-europeafrica": {"a": "globe showing Europe-Africa", "b": "1F30D", "j": ["Africa", "globe", "earth", "international", "Europe", "globe_showing_europe_africa", "world"]}, "globe-showing-americas": {"a": "globe showing Americas", "b": "1F30E", "j": ["globe", "earth", "international", "USA", "Americas", "world"]}, "globe-showing-asiaaustralia": {"a": "globe showing Asia-Australia", "b": "1F30F", "j": ["Asia", "globe", "earth", "globe_showing_asia_australia", "east", "Australia", "international", "world"]}, "globe-with-meridians": {"a": "globe with meridians", "b": "1F310", "j": ["meridians", "globe", "earth", "i18n", "international", "world", "internet", "interweb"]}, "world-map": {"a": "world map", "b": "1F5FA", "j": ["map", "location", "world", "direction"]}, "map-of-japan": {"a": "map of Japan", "b": "1F5FE", "j": ["asia", "map", "japanese", "country", "nation", "Japan"]}, "compass": {"a": "compass", "b": "1F9ED", "j": ["orienteering", "navigation", "magnetic"]}, "snowcapped-mountain": {"a": "snow-capped mountain", "b": "1F3D4", "j": ["snow", "mountain", "environment", "cold", "winter", "nature", "photo", "snow_capped_mountain"]}, "mountain": {"a": "mountain", "b": "26F0", "j": ["environment", "photo", "nature"]}, "volcano": {"a": "volcano", "b": "1F30B", "j": ["mountain", "eruption", "disaster", "nature", "photo"]}, "mount-fuji": {"a": "mount fuji", "b": "1F5FB", "j": ["fuji", "mountain", "japanese", "nature", "photo"]}, "camping": {"a": "camping", "b": "1F3D5", "j": ["outdoors", "photo", "tent"]}, "beach-with-umbrella": {"a": "beach with umbrella", "b": "1F3D6", "j": ["sand", "weather", "umbrella", "mojito", "summer", "sunny", "beach"]}, "desert": {"a": "desert", "b": "1F3DC", "j": ["warm", "saharah", "photo"]}, "desert-island": {"a": "desert island", "b": "1F3DD", "j": ["desert", "photo", "mojito", "tropical", "island"]}, "national-park": {"a": "national park", "b": "1F3DE", "j": ["environment", "park", "photo", "nature"]}, "stadium": {"a": "stadium", "b": "1F3DF", "j": ["venue", "sports", "place", "photo", "concert"]}, "classical-building": {"a": "classical building", "b": "1F3DB", "j": ["classical", "history", "culture", "art"]}, "building-construction": {"a": "building construction", "b": "1F3D7", "j": ["progress", "working", "wip", "construction"]}, "brick": {"a": "brick", "b": "1F9F1", "j": ["bricks", "wall", "clay", "mortar"]}, "rock": {"a": "rock", "b": "1FAA8", "j": ["stone", "heavy", "boulder", "solid"]}, "wood": {"a": "wood", "b": "1FAB5", "j": ["timber", "trunk", "log", "lumber", "nature"]}, "hut": {"a": "hut", "b": "1F6D6", "j": ["house", "structure", "yurt", "roundhouse"]}, "houses": {"a": "houses", "b": "1F3D8", "j": ["photo", "buildings"]}, "derelict-house": {"a": "derelict house", "b": "1F3DA", "j": ["abandon", "house", "broken", "building", "derelict", "evict"]}, "house": {"a": "house", "b": "1F3E0", "j": ["building", "home"]}, "house-with-garden": {"a": "house with garden", "b": "1F3E1", "j": ["garden", "house", "nature", "plant", "home"]}, "office-building": {"a": "office building", "b": "1F3E2", "j": ["bureau", "work", "building"]}, "japanese-post-office": {"a": "Japanese post office", "b": "1F3E3", "j": ["envelope", "communication", "Japanese", "building", "post"]}, "post-office": {"a": "post office", "b": "1F3E4", "j": ["email", "post", "European", "building"]}, "hospital": {"a": "hospital", "b": "1F3E5", "j": ["surgery", "building", "doctor", "medicine", "health"]}, "bank": {"a": "bank", "b": "1F3E6", "j": ["cash", "business", "building", "enterprise", "money", "sales"]}, "hotel": {"a": "hotel", "b": "1F3E8", "j": ["checkin", "accomodation", "building"]}, "love-hotel": {"a": "love hotel", "b": "1F3E9", "j": ["like", "dating", "love", "affection", "hotel"]}, "convenience-store": {"a": "convenience store", "b": "1F3EA", "j": ["shopping", "groceries", "building", "store", "convenience"]}, "school": {"a": "school", "b": "1F3EB", "j": ["learn", "building", "education", "student", "teach"]}, "department-store": {"a": "department store", "b": "1F3EC", "j": ["shopping", "department", "mall", "building", "store"]}, "factory": {"a": "factory", "b": "1F3ED", "j": ["smoke", "pollution", "building", "industry"]}, "japanese-castle": {"a": "Japanese castle", "b": "1F3EF", "j": ["castle", "Japanese", "photo", "building"]}, "castle": {"a": "castle", "b": "1F3F0", "j": ["history", "royalty", "European", "building"]}, "wedding": {"a": "wedding", "b": "1F492", "j": ["love", "like", "marriage", "bride", "groom", "romance", "chapel", "affection", "couple"]}, "tokyo-tower": {"a": "Tokyo tower", "b": "1F5FC", "j": ["japanese", "photo", "Tokyo", "tower"]}, "statue-of-liberty": {"a": "Statue of Liberty", "b": "1F5FD", "j": ["newyork", "liberty", "statue", "american"]}, "church": {"a": "church", "b": "26EA", "j": ["cross", "Christian", "building", "christ", "religion"]}, "mosque": {"a": "mosque", "b": "1F54C", "j": ["minaret", "worship", "islam", "Muslim", "religion"]}, "hindu-temple": {"a": "hindu temple", "b": "1F6D5", "j": ["hindu", "temple", "religion"]}, "synagogue": {"a": "synagogue", "b": "1F54D", "j": ["jewish", "Jew", "worship", "Jewish", "judaism", "temple", "religion"]}, "shinto-shrine": {"a": "shinto shrine", "b": "26E9", "j": ["kyoto", "shinto", "temple", "religion", "shrine", "japan"]}, "kaaba": {"a": "kaaba", "b": "1F54B", "j": ["mecca", "mosque", "islam", "Muslim", "religion"]}, "fountain": {"a": "fountain", "b": "26F2", "j": ["fresh", "photo", "summer", "water"]}, "tent": {"a": "tent", "b": "26FA", "j": ["photo", "outdoors", "camping"]}, "foggy": {"a": "foggy", "b": "1F301", "j": ["fog", "mountain", "photo"]}, "night-with-stars": {"a": "night with stars", "b": "1F303", "j": ["night", "downtown", "evening", "star", "city"]}, "cityscape": {"a": "cityscape", "b": "1F3D9", "j": ["night life", "urban", "city", "photo"]}, "sunrise-over-mountains": {"a": "sunrise over mountains", "b": "1F304", "j": ["sun", "sunrise", "mountain", "vacation", "morning", "view", "photo"]}, "sunrise": {"a": "sunrise", "b": "1F305", "j": ["sun", "vacation", "morning", "photo", "view"]}, "cityscape-at-dusk": {"a": "cityscape at dusk", "b": "1F306", "j": ["evening", "sunset", "city", "landscape", "sky", "dusk", "photo", "buildings"]}, "sunset": {"a": "sunset", "b": "1F307", "j": ["sun", "good morning", "dawn", "dusk", "photo"]}, "bridge-at-night": {"a": "bridge at night", "b": "1F309", "j": ["night", "sanfrancisco", "photo", "bridge"]}, "hot-springs": {"a": "hot springs", "b": "2668", "j": ["bath", "springs", "hot", "steaming", "relax", "warm", "hotsprings"]}, "carousel-horse": {"a": "carousel horse", "b": "1F3A0", "j": ["carnival", "carousel", "photo", "horse"]}, "ferris-wheel": {"a": "ferris wheel", "b": "1F3A1", "j": ["wheel", "carnival", "photo", "londoneye", "ferris", "amusement park"]}, "roller-coaster": {"a": "roller coaster", "b": "1F3A2", "j": ["coaster", "playground", "carnival", "photo", "fun", "roller", "amusement park"]}, "barber-pole": {"a": "barber pole", "b": "1F488", "j": ["salon", "hair", "style", "barber", "pole", "haircut"]}, "circus-tent": {"a": "circus tent", "b": "1F3AA", "j": ["festival", "carnival", "tent", "party", "circus"]}, "locomotive": {"a": "locomotive", "b": "1F682", "j": ["railway", "vehicle", "transportation", "engine", "train", "steam"]}, "railway-car": {"a": "railway car", "b": "1F683", "j": ["railway", "vehicle", "electric", "transportation", "tram", "trolleybus", "train", "car"]}, "highspeed-train": {"a": "high-speed train", "b": "1F684", "j": ["railway", "vehicle", "transportation", "speed", "high_speed_train", "train", "shinkansen"]}, "bullet-train": {"a": "bullet train", "b": "1F685", "j": ["railway", "vehicle", "bullet", "transportation", "fast", "speed", "travel", "shinkansen", "train", "public"]}, "train": {"a": "train", "b": "1F686", "j": ["railway", "vehicle", "transportation"]}, "metro": {"a": "metro", "b": "1F687", "j": ["subway", "transportation", "mrt", "blue-square", "underground", "tube"]}, "light-rail": {"a": "light rail", "b": "1F688", "j": ["railway", "vehicle", "transportation"]}, "station": {"a": "station", "b": "1F689", "j": ["railway", "vehicle", "transportation", "train", "public"]}, "tram": {"a": "tram", "b": "1F68A", "j": ["vehicle", "transportation", "trolleybus"]}, "monorail": {"a": "monorail", "b": "1F69D", "j": ["vehicle", "transportation"]}, "mountain-railway": {"a": "mountain railway", "b": "1F69E", "j": ["railway", "vehicle", "mountain", "transportation", "car"]}, "tram-car": {"a": "tram car", "b": "1F68B", "j": ["vehicle", "car", "transportation", "carriage", "trolleybus", "tram", "travel", "public"]}, "bus": {"a": "bus", "b": "1F68C", "j": ["vehicle", "transportation", "car"]}, "oncoming-bus": {"a": "oncoming bus", "b": "1F68D", "j": ["transportation", "vehicle", "oncoming", "bus"]}, "trolleybus": {"a": "trolleybus", "b": "1F68E", "j": ["vehicle", "bus", "transportation", "tram", "trolley", "bart"]}, "minibus": {"a": "minibus", "b": "1F690", "j": ["bus", "vehicle", "transportation", "car"]}, "ambulance": {"a": "ambulance", "b": "1F691", "j": ["hospital", "vehicle", "911", "health"]}, "fire-engine": {"a": "fire engine", "b": "1F692", "j": ["vehicle", "truck", "transportation", "engine", "cars", "fire"]}, "police-car": {"a": "police car", "b": "1F693", "j": ["vehicle", "police", "law", "transportation", "enforcement", "cars", "legal", "patrol", "car"]}, "oncoming-police-car": {"a": "oncoming police car", "b": "1F694", "j": ["vehicle", "police", "law", "oncoming", "enforcement", "911", "legal", "car"]}, "taxi": {"a": "taxi", "b": "1F695", "j": ["vehicle", "transportation", "cars", "uber"]}, "oncoming-taxi": {"a": "oncoming taxi", "b": "1F696", "j": ["vehicle", "oncoming", "cars", "uber", "taxi"]}, "automobile": {"a": "automobile", "b": "1F697", "j": ["vehicle", "transportation", "car", "red"]}, "oncoming-automobile": {"a": "oncoming automobile", "b": "1F698", "j": ["vehicle", "oncoming", "transportation", "automobile", "car"]}, "sport-utility-vehicle": {"a": "sport utility vehicle", "b": "1F699", "j": ["recreational", "vehicle", "sport utility", "transportation"]}, "pickup-truck": {"a": "pickup truck", "b": "1F6FB", "j": ["truck", "transportation", "pick-up", "pickup", "car"]}, "delivery-truck": {"a": "delivery truck", "b": "1F69A", "j": ["delivery", "transportation", "truck", "cars"]}, "articulated-lorry": {"a": "articulated lorry", "b": "1F69B", "j": ["vehicle", "truck", "lorry", "transportation", "express", "semi", "cars"]}, "tractor": {"a": "tractor", "b": "1F69C", "j": ["vehicle", "agriculture", "farming", "car"]}, "racing-car": {"a": "racing car", "b": "1F3CE", "j": ["formula", "f1", "fast", "sports", "race", "racing", "car"]}, "motorcycle": {"a": "motorcycle", "b": "1F3CD", "j": ["fast", "race", "sports", "racing"]}, "motor-scooter": {"a": "motor scooter", "b": "1F6F5", "j": ["vehicle", "scooter", "vespa", "sasha", "motor"]}, "manual-wheelchair": {"a": "manual wheelchair", "b": "1F9BD", "j": ["accessibility"]}, "motorized-wheelchair": {"a": "motorized wheelchair", "b": "1F9BC", "j": ["accessibility"]}, "auto-rickshaw": {"a": "auto rickshaw", "b": "1F6FA", "j": ["tuk tuk", "transportation", "move"]}, "bicycle": {"a": "bicycle", "b": "1F6B2", "j": ["bike", "hipster", "exercise", "sports"]}, "kick-scooter": {"a": "kick scooter", "b": "1F6F4", "j": ["scooter", "razor", "vehicle", "kick"]}, "skateboard": {"a": "skateboard", "b": "1F6F9", "j": ["board"]}, "roller-skate": {"a": "roller skate", "b": "1F6FC", "j": ["roller", "skate", "footwear", "sports"]}, "bus-stop": {"a": "bus stop", "b": "1F68F", "j": ["bus", "stop", "transportation", "busstop", "wait"]}, "motorway": {"a": "motorway", "b": "1F6E3", "j": ["highway", "road", "cupertino", "interstate"]}, "railway-track": {"a": "railway track", "b": "1F6E4", "j": ["railway", "train", "transportation"]}, "oil-drum": {"a": "oil drum", "b": "1F6E2", "j": ["barrell", "drum", "oil"]}, "fuel-pump": {"a": "fuel pump", "b": "26FD", "j": ["petroleum", "gas", "fuel", "pump", "fuelpump", "station", "gas station", "diesel"]}, "police-car-light": {"a": "police car light", "b": "1F6A8", "j": ["revolving", "beacon", "police", "alert", "law", "pinged", "emergency", "light", "ambulance", "911", "legal", "error", "car"]}, "horizontal-traffic-light": {"a": "horizontal traffic light", "b": "1F6A5", "j": ["transportation", "traffic", "light", "signal"]}, "vertical-traffic-light": {"a": "vertical traffic light", "b": "1F6A6", "j": ["traffic", "transportation", "light", "driving", "signal"]}, "stop-sign": {"a": "stop sign", "b": "1F6D1", "j": ["octagonal", "sign", "stop"]}, "construction": {"a": "construction", "b": "1F6A7", "j": ["warning", "wip", "barrier", "progress", "caution"]}, "anchor": {"a": "anchor", "b": "2693", "j": ["boat", "sea", "ferry", "ship", "tool"]}, "sailboat": {"a": "sailboat", "b": "26F5", "j": ["yacht", "resort", "boat", "sailing", "sea", "transportation", "water", "ship", "summer"]}, "canoe": {"a": "canoe", "b": "1F6F6", "j": ["paddle", "ship", "water", "boat"]}, "speedboat": {"a": "speedboat", "b": "1F6A4", "j": ["vehicle", "boat", "transportation", "ship", "summer"]}, "passenger-ship": {"a": "passenger ship", "b": "1F6F3", "j": ["yacht", "passenger", "cruise", "ferry", "ship"]}, "ferry": {"a": "ferry", "b": "26F4", "j": ["yacht", "ship", "passenger", "boat"]}, "motor-boat": {"a": "motor boat", "b": "1F6E5", "j": ["ship", "motorboat", "boat"]}, "ship": {"a": "ship", "b": "1F6A2", "j": ["titanic", "passenger", "boat", "transportation", "deploy"]}, "airplane": {"a": "airplane", "b": "2708", "j": ["vehicle", "flight", "transportation", "fly", "aeroplane"]}, "small-airplane": {"a": "small airplane", "b": "1F6E9", "j": ["vehicle", "flight", "transportation", "fly", "airplane", "aeroplane"]}, "airplane-departure": {"a": "airplane departure", "b": "1F6EB", "j": ["departure", "flight", "check-in", "airport", "airplane", "departures", "aeroplane", "landing"]}, "airplane-arrival": {"a": "airplane arrival", "b": "1F6EC", "j": ["arrivals", "arriving", "flight", "boarding", "airport", "airplane", "aeroplane", "landing"]}, "parachute": {"a": "parachute", "b": "1FA82", "j": ["skydive", "hang-glide", "fly", "parasail", "glide"]}, "seat": {"a": "seat", "b": "1F4BA", "j": ["bus", "transport", "flight", "chair", "sit", "fly", "airplane"]}, "helicopter": {"a": "helicopter", "b": "1F681", "j": ["vehicle", "transportation", "fly"]}, "suspension-railway": {"a": "suspension railway", "b": "1F69F", "j": ["railway", "vehicle", "transportation", "suspension"]}, "mountain-cableway": {"a": "mountain cableway", "b": "1F6A0", "j": ["vehicle", "mountain", "transportation", "ski", "gondola", "cable"]}, "aerial-tramway": {"a": "aerial tramway", "b": "1F6A1", "j": ["vehicle", "aerial", "transportation", "ski", "gondola", "cable", "tramway", "car"]}, "satellite": {"a": "satellite", "b": "1F6F0", "j": ["communication", "gps", "ISS", "space", "NASA", "orbit", "spaceflight"]}, "rocket": {"a": "rocket", "b": "1F680", "j": ["outer space", "launch", "NASA", "ship", "space", "staffmode", "fly", "outer_space"]}, "flying-saucer": {"a": "flying saucer", "b": "1F6F8", "j": ["transportation", "vehicle", "ufo", "UFO"]}, "bellhop-bell": {"a": "bellhop bell", "b": "1F6CE", "j": ["service", "bellhop", "hotel", "bell"]}, "luggage": {"a": "luggage", "b": "1F9F3", "j": ["packing", "travel"]}, "hourglass-done": {"a": "hourglass done", "b": "231B", "j": ["test", "quiz", "timer", "sand", "limit", "oldschool", "exam", "clock", "time"]}, "hourglass-not-done": {"a": "hourglass not done", "b": "23F3", "j": ["hourglass", "timer", "sand", "oldschool", "countdown", "time"]}, "watch": {"a": "watch", "b": "231A", "j": ["accessories", "clock", "time"]}, "alarm-clock": {"a": "alarm clock", "b": "23F0", "j": ["alarm", "clock", "wake", "time"]}, "stopwatch": {"a": "stopwatch", "b": "23F1", "j": ["clock", "time", "deadline"]}, "timer-clock": {"a": "timer clock", "b": "23F2", "j": ["clock", "alarm", "timer"]}, "mantelpiece-clock": {"a": "mantelpiece clock", "b": "1F570", "j": ["clock", "time"]}, "twelve-oclock": {"a": "twelve o’clock", "b": "1F55B", "j": ["midnight", "12", "12:00", "twelve", "midday", "noon", "late", "o’clock", "early", "twelve_o_clock", "schedule", "00", "clock", "time"]}, "twelvethirty": {"a": "twelve-thirty", "b": "1F567", "j": ["12", "twelve_thirty", "thirty", "twelve", "late", "early", "schedule", "12:30", "clock", "time"]}, "one-oclock": {"a": "one o’clock", "b": "1F550", "j": ["1:00", "1", "late", "time", "early", "o’clock", "schedule", "00", "one_o_clock", "clock", "one"]}, "onethirty": {"a": "one-thirty", "b": "1F55C", "j": ["1", "1:30", "thirty", "late", "time", "early", "schedule", "one_thirty", "clock", "one"]}, "two-oclock": {"a": "two o’clock", "b": "1F551", "j": ["two_o_clock", "2", "2:00", "late", "early", "schedule", "o’clock", "00", "clock", "two", "time"]}, "twothirty": {"a": "two-thirty", "b": "1F55D", "j": ["two_thirty", "2", "thirty", "late", "2:30", "early", "schedule", "clock", "two", "time"]}, "three-oclock": {"a": "three o’clock", "b": "1F552", "j": ["3:00", "three_o_clock", "late", "3", "early", "o’clock", "three", "schedule", "00", "clock", "time"]}, "threethirty": {"a": "three-thirty", "b": "1F55E", "j": ["thirty", "late", "3", "3:30", "three", "three_thirty", "early", "schedule", "clock", "time"]}, "four-oclock": {"a": "four o’clock", "b": "1F553", "j": ["four", "late", "early", "schedule", "o’clock", "4", "00", "four_o_clock", "clock", "4:00", "time"]}, "fourthirty": {"a": "four-thirty", "b": "1F55F", "j": ["thirty", "four", "late", "4:30", "early", "schedule", "four_thirty", "4", "clock", "time"]}, "five-oclock": {"a": "five o’clock", "b": "1F554", "j": ["five_o_clock", "late", "early", "schedule", "o’clock", "five", "00", "5:00", "5", "clock", "time"]}, "fivethirty": {"a": "five-thirty", "b": "1F560", "j": ["five_thirty", "thirty", "late", "early", "schedule", "five", "5", "clock", "5:30", "time"]}, "six-oclock": {"a": "six o’clock", "b": "1F555", "j": ["late", "early", "schedule", "o’clock", "six_o_clock", "6", "dawn", "00", "dusk", "6:00", "clock", "six", "time"]}, "sixthirty": {"a": "six-thirty", "b": "1F561", "j": ["thirty", "6:30", "late", "early", "schedule", "6", "six_thirty", "clock", "six", "time"]}, "seven-oclock": {"a": "seven o’clock", "b": "1F556", "j": ["7:00", "7", "seven_o_clock", "late", "early", "schedule", "o’clock", "seven", "00", "clock", "time"]}, "seventhirty": {"a": "seven-thirty", "b": "1F562", "j": ["seven_thirty", "7", "thirty", "7:30", "late", "early", "schedule", "seven", "clock", "time"]}, "eight-oclock": {"a": "eight o’clock", "b": "1F557", "j": ["8:00", "eight", "late", "o’clock", "early", "schedule", "00", "eight_o_clock", "clock", "8", "time"]}, "eightthirty": {"a": "eight-thirty", "b": "1F563", "j": ["8:30", "thirty", "eight_thirty", "eight", "late", "early", "schedule", "clock", "8", "time"]}, "nine-oclock": {"a": "nine o’clock", "b": "1F558", "j": ["nine", "9:00", "9", "nine_o_clock", "late", "early", "schedule", "o’clock", "00", "clock", "time"]}, "ninethirty": {"a": "nine-thirty", "b": "1F564", "j": ["nine", "9", "thirty", "late", "nine_thirty", "early", "schedule", "9:30", "clock", "time"]}, "ten-oclock": {"a": "ten o’clock", "b": "1F559", "j": ["ten", "late", "early", "schedule", "o’clock", "10:00", "00", "10", "ten_o_clock", "clock", "time"]}, "tenthirty": {"a": "ten-thirty", "b": "1F565", "j": ["10:30", "thirty", "ten", "late", "early", "schedule", "ten_thirty", "10", "clock", "time"]}, "eleven-oclock": {"a": "eleven o’clock", "b": "1F55A", "j": ["eleven_o_clock", "eleven", "late", "early", "schedule", "o’clock", "00", "11", "clock", "11:00", "time"]}, "eleventhirty": {"a": "eleven-thirty", "b": "1F566", "j": ["thirty", "eleven", "eleven_thirty", "late", "early", "schedule", "11:30", "11", "clock", "time"]}, "new-moon": {"a": "new moon", "b": "1F311", "j": ["night", "sleep", "evening", "moon", "nature", "space", "planet", "dark", "twilight"]}, "waxing-crescent-moon": {"a": "waxing crescent moon", "b": "1F312", "j": ["night", "sleep", "evening", "crescent", "moon", "nature", "space", "planet", "waxing", "twilight"]}, "first-quarter-moon": {"a": "first quarter moon", "b": "1F313", "j": ["night", "sleep", "evening", "moon", "nature", "space", "planet", "quarter", "twilight"]}, "waxing-gibbous-moon": {"a": "waxing gibbous moon", "b": "1F314", "j": ["night", "sleep", "evening", "moon", "nature", "sky", "space", "planet", "gibbous", "gray", "waxing", "twilight"]}, "full-moon": {"a": "full moon", "b": "1F315", "j": ["night", "full", "sleep", "evening", "moon", "nature", "space", "yellow", "planet", "twilight"]}, "waning-gibbous-moon": {"a": "waning gibbous moon", "b": "1F316", "j": ["night", "sleep", "waning", "evening", "moon", "nature", "waxing_gibbous_moon", "space", "planet", "gibbous", "twilight"]}, "last-quarter-moon": {"a": "last quarter moon", "b": "1F317", "j": ["night", "sleep", "evening", "moon", "nature", "space", "planet", "quarter", "twilight"]}, "waning-crescent-moon": {"a": "waning crescent moon", "b": "1F318", "j": ["night", "sleep", "waning", "evening", "crescent", "moon", "nature", "space", "planet", "twilight"]}, "crescent-moon": {"a": "crescent moon", "b": "1F319", "j": ["night", "sleep", "evening", "crescent", "moon", "sky", "magic"]}, "new-moon-face": {"a": "new moon face", "b": "1F31A", "j": ["night", "sleep", "evening", "moon", "face", "nature", "space", "planet", "twilight"]}, "first-quarter-moon-face": {"a": "first quarter moon face", "b": "1F31B", "j": ["night", "sleep", "evening", "moon", "face", "nature", "space", "planet", "quarter", "twilight"]}, "last-quarter-moon-face": {"a": "last quarter moon face", "b": "1F31C", "j": ["night", "sleep", "evening", "moon", "face", "nature", "space", "planet", "quarter", "twilight"]}, "thermometer": {"a": "thermometer", "b": "1F321", "j": ["weather", "hot", "cold", "temperature"]}, "sun": {"a": "sun", "b": "2600", "j": ["brightness", "rays", "spring", "bright", "nature", "weather", "summer", "sunny", "beach"]}, "full-moon-face": {"a": "full moon face", "b": "1F31D", "j": ["night", "full", "sleep", "evening", "moon", "bright", "face", "nature", "space", "planet", "twilight"]}, "sun-with-face": {"a": "sun with face", "b": "1F31E", "j": ["sun", "bright", "face", "nature", "sky", "morning"]}, "ringed-planet": {"a": "ringed planet", "b": "1FA90", "j": ["outerspace", "saturnine", "saturn"]}, "star": {"a": "star", "b": "2B50", "j": ["night", "yellow"]}, "glowing-star": {"a": "glowing star", "b": "1F31F", "j": ["awesome", "night", "shining", "star", "good", "glittery", "glow", "sparkle", "magic"]}, "shooting-star": {"a": "shooting star", "b": "1F320", "j": ["shooting", "night", "star", "falling", "photo"]}, "milky-way": {"a": "milky way", "b": "1F30C", "j": ["stars", "space", "photo"]}, "cloud": {"a": "cloud", "b": "2601", "j": ["weather", "sky"]}, "sun-behind-cloud": {"a": "sun behind cloud", "b": "26C5", "j": ["sun", "spring", "cloud", "nature", "weather", "morning", "fall", "cloudy"]}, "cloud-with-lightning-and-rain": {"a": "cloud with lightning and rain", "b": "26C8", "j": ["lightning", "rain", "cloud", "weather", "thunder"]}, "sun-behind-small-cloud": {"a": "sun behind small cloud", "b": "1F324", "j": ["sun", "weather", "cloud"]}, "sun-behind-large-cloud": {"a": "sun behind large cloud", "b": "1F325", "j": ["sun", "weather", "cloud"]}, "sun-behind-rain-cloud": {"a": "sun behind rain cloud", "b": "1F326", "j": ["sun", "weather", "rain", "cloud"]}, "cloud-with-rain": {"a": "cloud with rain", "b": "1F327", "j": ["weather", "rain", "cloud"]}, "cloud-with-snow": {"a": "cloud with snow", "b": "1F328", "j": ["weather", "snow", "cold", "cloud"]}, "cloud-with-lightning": {"a": "cloud with lightning", "b": "1F329", "j": ["weather", "lightning", "thunder", "cloud"]}, "tornado": {"a": "tornado", "b": "1F32A", "j": ["cyclone", "cloud", "weather", "twister", "whirlwind"]}, "fog": {"a": "fog", "b": "1F32B", "j": ["weather", "cloud"]}, "wind-face": {"a": "wind face", "b": "1F32C", "j": ["air", "blow", "face", "cloud", "gust", "wind"]}, "cyclone": {"a": "cyclone", "b": "1F300", "j": ["blue", "spin", "whirlpool", "typhoon", "cloud", "weather", "twister", "spiral", "dizzy", "hurricane", "vortex", "swirl", "tornado"]}, "rainbow": {"a": "rainbow", "b": "1F308", "j": ["rain", "spring", "nature", "sky", "photo", "unicorn_face", "happy"]}, "closed-umbrella": {"a": "closed umbrella", "b": "1F302", "j": ["rain", "umbrella", "weather", "clothing", "drizzle"]}, "umbrella": {"a": "umbrella", "b": "2602", "j": ["weather", "clothing", "rain", "spring"]}, "umbrella-with-rain-drops": {"a": "umbrella with rain drops", "b": "2614", "j": ["drop", "rain", "spring", "rainy", "umbrella", "clothing", "weather"]}, "umbrella-on-ground": {"a": "umbrella on ground", "b": "26F1", "j": ["sun", "rain", "umbrella", "weather", "summer"]}, "high-voltage": {"a": "high voltage", "b": "26A1", "j": ["danger", "lightning", "electric", "lightning bolt", "zap", "fast", "weather", "thunder", "voltage"]}, "snowflake": {"a": "snowflake", "b": "2744", "j": ["snow", "cold", "xmas", "winter", "season", "weather", "christmas"]}, "snowman": {"a": "snowman", "b": "2603", "j": ["snow", "cold", "winter", "xmas", "season", "weather", "frozen", "christmas"]}, "snowman-without-snow": {"a": "snowman without snow", "b": "26C4", "j": ["snow", "snowman", "cold", "winter", "xmas", "season", "weather", "frozen", "without_snow", "christmas"]}, "comet": {"a": "comet", "b": "2604", "j": ["space"]}, "fire": {"a": "fire", "b": "1F525", "j": ["flame", "cook", "tool", "hot"]}, "droplet": {"a": "droplet", "b": "1F4A7", "j": ["drop", "sweat", "drip", "spring", "cold", "water", "comic", "faucet"]}, "water-wave": {"a": "water wave", "b": "1F30A", "j": ["wave", "tsunami", "disaster", "sea", "water", "nature", "ocean"]}, "jackolantern": {"a": "jack-o-lantern", "b": "1F383", "j": ["jack_o_lantern", "creepy", "celebration", "halloween", "pumpkin", "light", "fall", "jack", "lantern"]}, "christmas-tree": {"a": "Christmas tree", "b": "1F384", "j": ["vacation", "festival", "xmas", "celebration", "Christmas", "december", "tree"]}, "fireworks": {"a": "fireworks", "b": "1F386", "j": ["congratulations", "festival", "celebration", "carnival", "photo"]}, "sparkler": {"a": "sparkler", "b": "1F387", "j": ["night", "fireworks", "shine", "stars", "celebration", "sparkle"]}, "firecracker": {"a": "firecracker", "b": "1F9E8", "j": ["boom", "fireworks", "explode", "explosion", "explosive", "dynamite"]}, "sparkles": {"a": "sparkles", "b": "2728", "j": ["awesome", "shiny", "cool", "shine", "star", "stars", "*", "good", "sparkle", "magic"]}, "balloon": {"a": "balloon", "b": "1F388", "j": ["birthday", "circus", "celebration", "party"]}, "party-popper": {"a": "party popper", "b": "1F389", "j": ["birthday", "tada", "congratulations", "popper", "celebration", "party", "circus", "magic"]}, "confetti-ball": {"a": "confetti ball", "b": "1F38A", "j": ["birthday", "festival", "ball", "celebration", "party", "confetti", "circus"]}, "tanabata-tree": {"a": "tanabata tree", "b": "1F38B", "j": ["banner", "Japanese", "nature", "celebration", "plant", "summer", "tree", "branch"]}, "pine-decoration": {"a": "pine decoration", "b": "1F38D", "j": ["bamboo", "panda", "pine", "Japanese", "nature", "celebration", "plant", "vegetable"]}, "japanese-dolls": {"a": "Japanese dolls", "b": "1F38E", "j": ["toy", "Japanese", "festival", "japanese", "celebration", "kimono", "doll"]}, "carp-streamer": {"a": "carp streamer", "b": "1F38F", "j": ["carp", "banner", "japanese", "fish", "celebration", "streamer", "koinobori"]}, "wind-chime": {"a": "wind chime", "b": "1F390", "j": ["ding", "spring", "chime", "bell", "celebration", "nature", "wind"]}, "moon-viewing-ceremony": {"a": "moon viewing ceremony", "b": "1F391", "j": ["tsukimi", "asia", "moon", "celebration", "ceremony", "photo", "japan"]}, "red-envelope": {"a": "red envelope", "b": "1F9E7", "j": ["hóngbāo", "lai see", "gift", "money", "good luck"]}, "ribbon": {"a": "ribbon", "b": "1F380", "j": ["bowtie", "pink", "girl", "decoration", "celebration"]}, "wrapped-gift": {"a": "wrapped gift", "b": "1F381", "j": ["birthday", "xmas", "celebration", "gift", "present", "wrapped", "box", "christmas"]}, "reminder-ribbon": {"a": "reminder ribbon", "b": "1F397", "j": ["cause", "support", "sports", "celebration", "reminder", "awareness", "ribbon"]}, "admission-tickets": {"a": "admission tickets", "b": "1F39F", "j": ["admission", "sports", "ticket", "entrance", "concert"]}, "ticket": {"a": "ticket", "b": "1F3AB", "j": ["admission", "event", "pass", "concert"]}, "military-medal": {"a": "military medal", "b": "1F396", "j": ["medal", "military", "award", "celebration", "army", "winning"]}, "trophy": {"a": "trophy", "b": "1F3C6", "j": ["ftw", "award", "contest", "place", "ceremony", "win", "prize"]}, "sports-medal": {"a": "sports medal", "b": "1F3C5", "j": ["medal", "winning", "award"]}, "1st-place-medal": {"a": "1st place medal", "b": "1F947", "j": ["medal", "award", "first", "gold", "winning"]}, "2nd-place-medal": {"a": "2nd place medal", "b": "1F948", "j": ["second", "medal", "award", "silver"]}, "3rd-place-medal": {"a": "3rd place medal", "b": "1F949", "j": ["medal", "award", "third", "bronze"]}, "soccer-ball": {"a": "soccer ball", "b": "26BD", "j": ["sports", "soccer", "football", "ball"]}, "baseball": {"a": "baseball", "b": "26BE", "j": ["balls", "sports", "ball"]}, "softball": {"a": "softball", "b": "1F94E", "j": ["underarm", "sports", "ball", "balls", "glove"]}, "basketball": {"a": "basketball", "b": "1F3C0", "j": ["hoop", "sports", "ball", "balls", "NBA"]}, "volleyball": {"a": "volleyball", "b": "1F3D0", "j": ["game", "balls", "sports", "ball"]}, "american-football": {"a": "american football", "b": "1F3C8", "j": ["sports", "NFL", "ball", "balls", "american", "football"]}, "rugby-football": {"a": "rugby football", "b": "1F3C9", "j": ["team", "sports", "ball", "rugby", "football"]}, "tennis": {"a": "tennis", "b": "1F3BE", "j": ["racquet", "sports", "ball", "balls", "green"]}, "flying-disc": {"a": "flying disc", "b": "1F94F", "j": ["frisbee", "ultimate", "sports"]}, "bowling": {"a": "bowling", "b": "1F3B3", "j": ["play", "sports", "ball", "game", "fun"]}, "cricket-game": {"a": "cricket game", "b": "1F3CF", "j": ["ball", "game", "bat", "sports"]}, "field-hockey": {"a": "field hockey", "b": "1F3D1", "j": ["stick", "ball", "sports", "field", "game", "hockey"]}, "ice-hockey": {"a": "ice hockey", "b": "1F3D2", "j": ["stick", "hockey", "ice", "sports", "game", "puck"]}, "lacrosse": {"a": "lacrosse", "b": "1F94D", "j": ["stick", "goal", "sports", "ball"]}, "ping-pong": {"a": "ping pong", "b": "1F3D3", "j": ["pingpong", "bat", "sports", "paddle", "ball", "game", "table tennis"]}, "badminton": {"a": "badminton", "b": "1F3F8", "j": ["shuttlecock", "racquet", "sports", "game", "birdie"]}, "boxing-glove": {"a": "boxing glove", "b": "1F94A", "j": ["boxing", "fighting", "sports", "glove"]}, "martial-arts-uniform": {"a": "martial arts uniform", "b": "1F94B", "j": ["judo", "martial arts", "taekwondo", "uniform", "karate"]}, "goal-net": {"a": "goal net", "b": "1F945", "j": ["goal", "net", "sports"]}, "flag-in-hole": {"a": "flag in hole", "b": "26F3", "j": ["business", "flag", "golf", "sports", "summer", "hole"]}, "ice-skate": {"a": "ice skate", "b": "26F8", "j": ["ice", "skate", "sports"]}, "fishing-pole": {"a": "fishing pole", "b": "1F3A3", "j": ["hobby", "fish", "food", "pole", "summer"]}, "diving-mask": {"a": "diving mask", "b": "1F93F", "j": ["scuba", "diving", "sport", "ocean", "snorkeling"]}, "running-shirt": {"a": "running shirt", "b": "1F3BD", "j": ["sash", "shirt", "athletics", "play", "pageant", "running"]}, "skis": {"a": "skis", "b": "1F3BF", "j": ["snow", "cold", "winter", "sports", "ski"]}, "sled": {"a": "sled", "b": "1F6F7", "j": ["luge", "toboggan", "sledge", "sleigh"]}, "curling-stone": {"a": "curling stone", "b": "1F94C", "j": ["game", "rock", "sports"]}, "bullseye": {"a": "bullseye", "b": "1F3AF", "j": ["target", "direct hit", "play", "dart", "hit", "bar", "game", "direct_hit"]}, "yoyo": {"a": "yo-yo", "b": "1FA80", "j": ["fluctuate", "toy", "yo_yo"]}, "kite": {"a": "kite", "b": "1FA81", "j": ["soar", "wind", "fly"]}, "pool-8-ball": {"a": "pool 8 ball", "b": "1F3B1", "j": ["pool", "hobby", "billiard", "eight", "ball", "game", "luck", "8", "magic"]}, "crystal-ball": {"a": "crystal ball", "b": "1F52E", "j": ["disco", "tool", "crystal", "ball", "fairy tale", "fantasy", "party", "fortune_teller", "circus", "fortune", "magic"]}, "magic-wand": {"a": "magic wand", "b": "1FA84", "j": ["witch", "power", "supernature", "wizard", "magic"]}, "nazar-amulet": {"a": "nazar amulet", "b": "1F9FF", "j": ["talisman", "charm", "bead", "nazar", "evil-eye"]}, "video-game": {"a": "video game", "b": "1F3AE", "j": ["controller", "play", "game", "PS4", "console"]}, "joystick": {"a": "joystick", "b": "1F579", "j": ["play", "game", "video game"]}, "slot-machine": {"a": "slot machine", "b": "1F3B0", "j": ["slot", "gamble", "casino", "game", "luck", "fruit machine", "bet", "vegas"]}, "game-die": {"a": "game die", "b": "1F3B2", "j": ["random", "play", "dice", "game", "luck", "die", "tabletop"]}, "puzzle-piece": {"a": "puzzle piece", "b": "1F9E9", "j": ["puzzle", "interlocking", "clue", "piece", "jigsaw"]}, "teddy-bear": {"a": "teddy bear", "b": "1F9F8", "j": ["plush", "toy", "plaything", "stuffed"]}, "piata": {"a": "piñata", "b": "1FA85", "j": ["mexico", "celebration", "candy", "pinata", "party"]}, "nesting-dolls": {"a": "nesting dolls", "b": "1FA86", "j": ["nesting", "toy", "russia", "matryoshka", "doll"]}, "spade-suit": {"a": "spade suit", "b": "2660", "j": ["card", "cards", "suits", "game", "poker", "magic"]}, "heart-suit": {"a": "heart suit", "b": "2665", "j": ["card", "cards", "suits", "game", "poker", "magic"]}, "diamond-suit": {"a": "diamond suit", "b": "2666", "j": ["card", "cards", "suits", "game", "poker", "magic"]}, "club-suit": {"a": "club suit", "b": "2663", "j": ["card", "cards", "suits", "game", "poker", "magic"]}, "chess-pawn": {"a": "chess pawn", "b": "265F", "j": ["chess", "expendable", "dupe"]}, "joker": {"a": "joker", "b": "1F0CF", "j": ["play", "magic", "card", "game", "poker", "wildcard", "cards"]}, "mahjong-red-dragon": {"a": "mahjong red dragon", "b": "1F004", "j": ["play", "mahjong", "kanji", "game", "red", "chinese"]}, "flower-playing-cards": {"a": "flower playing cards", "b": "1F3B4", "j": ["flower", "sunset", "card", "Japanese", "playing", "game", "red"]}, "performing-arts": {"a": "performing arts", "b": "1F3AD", "j": ["theater", "acting", "mask", "performing", "drama", "art", "theatre"]}, "framed-picture": {"a": "framed picture", "b": "1F5BC", "j": ["picture", "photography", "painting", "frame", "museum", "art"]}, "artist-palette": {"a": "artist palette", "b": "1F3A8", "j": ["draw", "design", "colors", "paint", "palette", "painting", "museum", "art"]}, "thread": {"a": "thread", "b": "1F9F5", "j": ["string", "needle", "spool", "sewing"]}, "sewing-needle": {"a": "sewing needle", "b": "1FAA1", "j": ["sutures", "stitches", "embroidery", "tailoring", "sewing", "needle"]}, "yarn": {"a": "yarn", "b": "1F9F6", "j": ["crochet", "knit", "ball"]}, "knot": {"a": "knot", "b": "1FAA2", "j": ["tangled", "twist", "rope", "tie", "twine", "scout"]}, "glasses": {"a": "glasses", "b": "1F453", "j": ["accessories", "nerdy", "geek", "eyeglasses", "eyesight", "clothing", "eye", "fashion", "eyewear", "dork"]}, "sunglasses": {"a": "sunglasses", "b": "1F576", "j": ["accessories", "glasses", "cool", "face", "eye", "eyewear", "dark"]}, "goggles": {"a": "goggles", "b": "1F97D", "j": ["welding", "swimming", "protection", "safety", "eye protection", "eyes"]}, "lab-coat": {"a": "lab coat", "b": "1F97C", "j": ["scientist", "chemist", "doctor", "experiment"]}, "safety-vest": {"a": "safety vest", "b": "1F9BA", "j": ["protection", "safety", "emergency", "vest"]}, "necktie": {"a": "necktie", "b": "1F454", "j": ["shirt", "business", "cloth", "formal", "tie", "clothing", "suitup", "fashion"]}, "tshirt": {"a": "t-shirt", "b": "1F455", "j": ["t_shirt", "shirt", "cloth", "clothing", "fashion", "tee", "casual"]}, "jeans": {"a": "jeans", "b": "1F456", "j": ["shopping", "trousers", "clothing", "fashion", "pants"]}, "scarf": {"a": "scarf", "b": "1F9E3", "j": ["neck", "winter", "clothes"]}, "gloves": {"a": "gloves", "b": "1F9E4", "j": ["hands", "hand", "winter", "clothes"]}, "coat": {"a": "coat", "b": "1F9E5", "j": ["jacket"]}, "socks": {"a": "socks", "b": "1F9E6", "j": ["stockings", "stocking", "clothes"]}, "dress": {"a": "dress", "b": "1F457", "j": ["shopping", "clothing", "fashion", "clothes"]}, "kimono": {"a": "kimono", "b": "1F458", "j": ["dress", "japanese", "clothing", "fashion", "women", "female"]}, "sari": {"a": "sari", "b": "1F97B", "j": ["dress", "clothing"]}, "onepiece-swimsuit": {"a": "one-piece swimsuit", "b": "1FA71", "j": ["one_piece_swimsuit", "fashion", "bathing suit"]}, "briefs": {"a": "briefs", "b": "1FA72", "j": ["swimsuit", "one-piece", "clothing", "underwear", "bathing suit"]}, "shorts": {"a": "shorts", "b": "1FA73", "j": ["clothing", "underwear", "pants", "bathing suit"]}, "bikini": {"a": "bikini", "b": "1F459", "j": ["swim", "woman", "girl", "swimming", "clothing", "fashion", "summer", "beach", "female"]}, "womans-clothes": {"a": "woman’s clothes", "b": "1F45A", "j": ["woman_s_clothes", "woman", "shopping_bags", "clothing", "fashion", "female"]}, "purse": {"a": "purse", "b": "1F45B", "j": ["accessories", "shopping", "clothing", "fashion", "money", "coin", "sales"]}, "handbag": {"a": "handbag", "b": "1F45C", "j": ["accessories", "shopping", "accessory", "clothing", "bag", "fashion", "purse"]}, "clutch-bag": {"a": "clutch bag", "b": "1F45D", "j": ["accessories", "shopping", "pouch", "clothing", "bag"]}, "shopping-bags": {"a": "shopping bags", "b": "1F6CD", "j": ["shopping", "mall", "buy", "bag", "purchase", "hotel"]}, "backpack": {"a": "backpack", "b": "1F392", "j": ["satchel", "school", "education", "student", "bag", "rucksack"]}, "thong-sandal": {"a": "thong sandal", "b": "1FA74", "j": ["beach sandals", "thong sandals", "zōri", "thongs", "sandals", "summer", "footwear"]}, "mans-shoe": {"a": "man’s shoe", "b": "1F45E", "j": ["man", "male", "man_s_shoe", "clothing", "fashion", "shoe"]}, "running-shoe": {"a": "running shoe", "b": "1F45F", "j": ["sneakers", "sneaker", "athletic", "shoes", "sports", "clothing", "shoe"]}, "hiking-boot": {"a": "hiking boot", "b": "1F97E", "j": ["backpacking", "boot", "camping", "hiking"]}, "flat-shoe": {"a": "flat shoe", "b": "1F97F", "j": ["ballet flat", "slip-on", "slipper", "ballet"]}, "highheeled-shoe": {"a": "high-heeled shoe", "b": "1F460", "j": ["woman", "pumps", "shoes", "heel", "high_heeled_shoe", "clothing", "fashion", "stiletto", "shoe", "female"]}, "womans-sandal": {"a": "woman’s sandal", "b": "1F461", "j": ["sandal", "woman", "shoes", "flip flops", "clothing", "woman_s_sandal", "fashion", "shoe"]}, "ballet-shoes": {"a": "ballet shoes", "b": "1FA70", "j": ["ballet", "dance"]}, "womans-boot": {"a": "woman’s boot", "b": "1F462", "j": ["woman", "shoes", "clothing", "fashion", "shoe", "boot", "woman_s_boot"]}, "crown": {"a": "crown", "b": "1F451", "j": ["royalty", "kod", "leader", "king", "clothing", "lord", "queen"]}, "womans-hat": {"a": "woman’s hat", "b": "1F452", "j": ["accessories", "spring", "woman", "lady", "woman_s_hat", "hat", "clothing", "fashion", "female"]}, "top-hat": {"a": "top hat", "b": "1F3A9", "j": ["classy", "top", "magic", "hat", "clothing", "tophat", "circus", "gentleman"]}, "graduation-cap": {"a": "graduation cap", "b": "1F393", "j": ["learn", "school", "hat", "college", "cap", "celebration", "clothing", "degree", "education", "legal", "university", "graduation"]}, "billed-cap": {"a": "billed cap", "b": "1F9E2", "j": ["cap", "baseball cap", "baseball"]}, "military-helmet": {"a": "military helmet", "b": "1FA96", "j": ["military", "warrior", "army", "helmet", "protection", "soldier"]}, "rescue-workers-helmet": {"a": "rescue worker’s helmet", "b": "26D1", "j": ["cross", "aid", "build", "construction", "face", "hat", "helmet", "rescue_worker_s_helmet"]}, "prayer-beads": {"a": "prayer beads", "b": "1F4FF", "j": ["dhikr", "religious", "beads", "clothing", "prayer", "necklace", "religion"]}, "lipstick": {"a": "lipstick", "b": "1F484", "j": ["woman", "girl", "makeup", "fashion", "cosmetics", "female"]}, "ring": {"a": "ring", "b": "1F48D", "j": ["wedding", "diamond", "marriage", "valentines", "propose", "fashion", "gem", "engagement", "jewelry"]}, "gem-stone": {"a": "gem stone", "b": "1F48E", "j": ["blue", "diamond", "gem", "ruby", "jewelry", "jewel"]}, "muted-speaker": {"a": "muted speaker", "b": "1F507", "j": ["silence", "speaker", "sound", "mute", "quiet", "silent", "volume"]}, "speaker-low-volume": {"a": "speaker low volume", "b": "1F508", "j": ["silence", "sound", "soft", "broadcast", "volume"]}, "speaker-medium-volume": {"a": "speaker medium volume", "b": "1F509", "j": ["speaker", "broadcast", "medium", "volume"]}, "speaker-high-volume": {"a": "speaker high volume", "b": "1F50A", "j": ["noisy", "noise", "speaker", "broadcast", "volume", "loud"]}, "loudspeaker": {"a": "loudspeaker", "b": "1F4E2", "j": ["public address", "volume", "sound", "loud"]}, "megaphone": {"a": "megaphone", "b": "1F4E3", "j": ["volume", "sound", "cheering", "speaker"]}, "postal-horn": {"a": "postal horn", "b": "1F4EF", "j": ["instrument", "horn", "post", "postal", "music"]}, "bell": {"a": "bell", "b": "1F514", "j": ["sound", "xmas", "chime", "notification", "christmas"]}, "bell-with-slash": {"a": "bell with slash", "b": "1F515", "j": ["forbidden", "sound", "mute", "bell", "quiet", "silent", "volume"]}, "musical-score": {"a": "musical score", "b": "1F3BC", "j": ["clef", "score", "treble", "compose", "music"]}, "musical-note": {"a": "musical note", "b": "1F3B5", "j": ["tone", "score", "sound", "note", "music"]}, "musical-notes": {"a": "musical notes", "b": "1F3B6", "j": ["notes", "note", "score", "music"]}, "studio-microphone": {"a": "studio microphone", "b": "1F399", "j": ["studio", "sing", "artist", "recording", "talkshow", "microphone", "mic", "music"]}, "level-slider": {"a": "level slider", "b": "1F39A", "j": ["slider", "music", "scale", "level"]}, "control-knobs": {"a": "control knobs", "b": "1F39B", "j": ["control", "dial", "music", "knobs"]}, "microphone": {"a": "microphone", "b": "1F3A4", "j": ["PA", "sing", "sound", "talkshow", "mic", "karaoke", "music"]}, "headphone": {"a": "headphone", "b": "1F3A7", "j": ["gadgets", "score", "earbud", "music"]}, "radio": {"a": "radio", "b": "1F4FB", "j": ["communication", "video", "program", "podcast", "music"]}, "saxophone": {"a": "saxophone", "b": "1F3B7", "j": ["sax", "instrument", "jazz", "blues", "music"]}, "accordion": {"a": "accordion", "b": "1FA97", "j": ["squeeze box", "music", "concertina"]}, "guitar": {"a": "guitar", "b": "1F3B8", "j": ["music", "instrument"]}, "musical-keyboard": {"a": "musical keyboard", "b": "1F3B9", "j": ["keyboard", "piano", "compose", "instrument", "music"]}, "trumpet": {"a": "trumpet", "b": "1F3BA", "j": ["brass", "music", "instrument"]}, "violin": {"a": "violin", "b": "1F3BB", "j": ["symphony", "orchestra", "music", "instrument"]}, "banjo": {"a": "banjo", "b": "1FA95", "j": ["instructment", "stringed", "music"]}, "drum": {"a": "drum", "b": "1F941", "j": ["drumsticks", "snare", "music", "instrument"]}, "long-drum": {"a": "long drum", "b": "1FA98", "j": ["drum", "beat", "conga", "music", "rhythm"]}, "mobile-phone": {"a": "mobile phone", "b": "1F4F1", "j": ["apple", "phone", "telephone", "mobile", "gadgets", "dial", "cell", "technology"]}, "mobile-phone-with-arrow": {"a": "mobile phone with arrow", "b": "1F4F2", "j": ["arrow", "incoming", "iphone", "phone", "mobile", "receive", "cell"]}, "telephone": {"a": "telephone", "b": "260E", "j": ["dial", "technology", "communication", "phone"]}, "telephone-receiver": {"a": "telephone receiver", "b": "1F4DE", "j": ["communication", "phone", "telephone", "dial", "receiver", "technology"]}, "pager": {"a": "pager", "b": "1F4DF", "j": ["90s", "bbcall", "oldschool"]}, "fax-machine": {"a": "fax machine", "b": "1F4E0", "j": ["fax", "technology", "communication"]}, "battery": {"a": "battery", "b": "1F50B", "j": ["energy", "power", "sustain"]}, "electric-plug": {"a": "electric plug", "b": "1F50C", "j": ["electric", "power", "charger", "electricity", "plug"]}, "laptop": {"a": "laptop", "b": "1F4BB", "j": ["computer", "display", "monitor", "pc", "screen", "technology", "personal"]}, "desktop-computer": {"a": "desktop computer", "b": "1F5A5", "j": ["computer", "desktop", "computing", "screen", "technology"]}, "printer": {"a": "printer", "b": "1F5A8", "j": ["ink", "computer", "paper"]}, "keyboard": {"a": "keyboard", "b": "2328", "j": ["computer", "text", "input", "type", "technology"]}, "computer-mouse": {"a": "computer mouse", "b": "1F5B1", "j": ["computer", "click"]}, "trackball": {"a": "trackball", "b": "1F5B2", "j": ["trackpad", "computer", "technology"]}, "computer-disk": {"a": "computer disk", "b": "1F4BD", "j": ["minidisk", "computer", "disk", "optical", "record", "90s", "technology", "data"]}, "floppy-disk": {"a": "floppy disk", "b": "1F4BE", "j": ["floppy", "computer", "disk", "80s", "save", "oldschool", "90s", "technology"]}, "optical-disk": {"a": "optical disk", "b": "1F4BF", "j": ["cd", "computer", "disk", "dvd", "optical", "90s", "technology", "disc"]}, "dvd": {"a": "dvd", "b": "1F4C0", "j": ["cd", "computer", "disk", "optical", "blu-ray", "disc"]}, "abacus": {"a": "abacus", "b": "1F9EE", "j": ["calculation"]}, "movie-camera": {"a": "movie camera", "b": "1F3A5", "j": ["cinema", "camera", "record", "film", "movie"]}, "film-frames": {"a": "film frames", "b": "1F39E", "j": ["frames", "movie", "cinema", "film"]}, "film-projector": {"a": "film projector", "b": "1F4FD", "j": ["cinema", "video", "record", "projector", "film", "tape", "movie"]}, "clapper-board": {"a": "clapper board", "b": "1F3AC", "j": ["movie", "clapper", "record", "film"]}, "television": {"a": "television", "b": "1F4FA", "j": ["video", "program", "oldschool", "show", "technology", "tv"]}, "camera": {"a": "camera", "b": "1F4F7", "j": ["gadgets", "photography", "video"]}, "camera-with-flash": {"a": "camera with flash", "b": "1F4F8", "j": ["video", "camera", "gadgets", "photography", "flash"]}, "video-camera": {"a": "video camera", "b": "1F4F9", "j": ["camera", "video", "record", "film"]}, "videocassette": {"a": "videocassette", "b": "1F4FC", "j": ["video", "80s", "record", "tape", "vhs", "oldschool", "90s"]}, "magnifying-glass-tilted-left": {"a": "magnifying glass tilted left", "b": "1F50D", "j": ["magnifying", "find", "search", "tool", "glass", "zoom", "detective"]}, "magnifying-glass-tilted-right": {"a": "magnifying glass tilted right", "b": "1F50E", "j": ["magnifying", "find", "search", "tool", "glass", "zoom", "detective"]}, "candle": {"a": "candle", "b": "1F56F", "j": ["wax", "light", "fire"]}, "light-bulb": {"a": "light bulb", "b": "1F4A1", "j": ["electric", "bulb", "comic", "light", "electricity", "idea"]}, "flashlight": {"a": "flashlight", "b": "1F526", "j": ["night", "electric", "sight", "torch", "light", "camping", "dark", "tool"]}, "red-paper-lantern": {"a": "red paper lantern", "b": "1F3EE", "j": ["paper", "bar", "halloween", "red", "light", "spooky", "lantern"]}, "diya-lamp": {"a": "diya lamp", "b": "1FA94", "j": ["lighting", "lamp", "diya", "oil"]}, "notebook-with-decorative-cover": {"a": "notebook with decorative cover", "b": "1F4D4", "j": ["book", "paper", "decorated", "record", "study", "cover", "classroom", "notes", "notebook"]}, "closed-book": {"a": "closed book", "b": "1F4D5", "j": ["learn", "book", "library", "read", "closed", "textbook", "knowledge"]}, "open-book": {"a": "open book", "b": "1F4D6", "j": ["learn", "book", "literature", "library", "study", "open", "read", "knowledge"]}, "green-book": {"a": "green book", "b": "1F4D7", "j": ["book", "library", "study", "read", "green", "knowledge"]}, "blue-book": {"a": "blue book", "b": "1F4D8", "j": ["blue", "learn", "book", "library", "study", "read", "knowledge"]}, "orange-book": {"a": "orange book", "b": "1F4D9", "j": ["book", "library", "orange", "study", "read", "textbook", "knowledge"]}, "books": {"a": "books", "b": "1F4DA", "j": ["book", "study", "library", "literature"]}, "notebook": {"a": "notebook", "b": "1F4D3", "j": ["paper", "record", "study", "stationery", "notes"]}, "ledger": {"a": "ledger", "b": "1F4D2", "j": ["notebook", "paper", "notes"]}, "page-with-curl": {"a": "page with curl", "b": "1F4C3", "j": ["document", "page", "curl", "paper", "documents", "office"]}, "scroll": {"a": "scroll", "b": "1F4DC", "j": ["paper", "history", "documents", "ancient"]}, "page-facing-up": {"a": "page facing up", "b": "1F4C4", "j": ["document", "page", "paper", "documents", "office", "information"]}, "newspaper": {"a": "newspaper", "b": "1F4F0", "j": ["headline", "paper", "press", "news"]}, "rolledup-newspaper": {"a": "rolled-up newspaper", "b": "1F5DE", "j": ["rolled_up_newspaper", "paper", "press", "news", "headline", "rolled", "newspaper"]}, "bookmark-tabs": {"a": "bookmark tabs", "b": "1F4D1", "j": ["order", "mark", "bookmark", "save", "favorite", "marker", "tidy", "tabs"]}, "bookmark": {"a": "bookmark", "b": "1F516", "j": ["save", "label", "favorite", "mark"]}, "label": {"a": "label", "b": "1F3F7", "j": ["tag", "sale"]}, "money-bag": {"a": "money bag", "b": "1F4B0", "j": ["moneybag", "dollar", "payment", "bag", "money", "coins", "sale"]}, "coin": {"a": "coin", "b": "1FA99", "j": ["metal", "currency", "silver", "treasure", "money", "gold"]}, "yen-banknote": {"a": "yen banknote", "b": "1F4B4", "j": ["bill", "currency", "japanese", "banknote", "dollar", "note", "yen", "money", "sales"]}, "dollar-banknote": {"a": "dollar banknote", "b": "1F4B5", "j": ["bill", "currency", "banknote", "dollar", "note", "money", "sales"]}, "euro-banknote": {"a": "euro banknote", "b": "1F4B6", "j": ["bill", "currency", "euro", "banknote", "dollar", "note", "money", "sales"]}, "pound-banknote": {"a": "pound banknote", "b": "1F4B7", "j": ["bill", "england", "currency", "british", "banknote", "uk", "note", "sterling", "sales", "money", "pound", "bills"]}, "money-with-wings": {"a": "money with wings", "b": "1F4B8", "j": ["bill", "banknote", "dollar", "payment", "money", "fly", "wings", "bills", "sale"]}, "credit-card": {"a": "credit card", "b": "1F4B3", "j": ["shopping", "bill", "card", "dollar", "credit", "payment", "money", "sales"]}, "receipt": {"a": "receipt", "b": "1F9FE", "j": ["bookkeeping", "accounting", "expenses", "evidence", "proof"]}, "chart-increasing-with-yen": {"a": "chart increasing with yen", "b": "1F4B9", "j": ["stats", "graph", "growth", "chart", "yen", "money", "presentation", "green-square"]}, "envelope": {"a": "envelope", "b": "2709", "j": ["letter", "communication", "email", "inbox", "postal"]}, "email": {"a": "e-mail", "b": "1F4E7", "j": ["e_mail", "letter", "communication", "mail", "inbox"]}, "incoming-envelope": {"a": "incoming envelope", "b": "1F4E8", "j": ["envelope", "incoming", "letter", "email", "receive", "e-mail", "inbox"]}, "envelope-with-arrow": {"a": "envelope with arrow", "b": "1F4E9", "j": ["arrow", "envelope", "communication", "email", "outgoing", "e-mail"]}, "outbox-tray": {"a": "outbox tray", "b": "1F4E4", "j": ["letter", "email", "outbox", "mail", "inbox", "box", "sent", "tray"]}, "inbox-tray": {"a": "inbox tray", "b": "1F4E5", "j": ["letter", "email", "documents", "mail", "receive", "inbox", "box", "tray"]}, "package": {"a": "package", "b": "1F4E6", "j": ["moving", "gift", "mail", "cardboard", "box", "parcel"]}, "closed-mailbox-with-raised-flag": {"a": "closed mailbox with raised flag", "b": "1F4EB", "j": ["postbox", "communication", "email", "mailbox", "closed", "mail", "inbox"]}, "closed-mailbox-with-lowered-flag": {"a": "closed mailbox with lowered flag", "b": "1F4EA", "j": ["postbox", "communication", "email", "lowered", "mailbox", "closed", "mail", "inbox"]}, "open-mailbox-with-raised-flag": {"a": "open mailbox with raised flag", "b": "1F4EC", "j": ["postbox", "communication", "email", "open", "mailbox", "mail", "inbox"]}, "open-mailbox-with-lowered-flag": {"a": "open mailbox with lowered flag", "b": "1F4ED", "j": ["postbox", "email", "lowered", "open", "mailbox", "mail", "inbox"]}, "postbox": {"a": "postbox", "b": "1F4EE", "j": ["envelope", "letter", "email", "mailbox", "mail"]}, "ballot-box-with-ballot": {"a": "ballot box with ballot", "b": "1F5F3", "j": ["election", "ballot", "box", "vote"]}, "pencil": {"a": "pencil", "b": "270F", "j": ["paper", "study", "school", "stationery", "writing", "write"]}, "black-nib": {"a": "black nib", "b": "2712", "j": ["stationery", "writing", "write", "nib", "pen"]}, "fountain-pen": {"a": "fountain pen", "b": "1F58B", "j": ["fountain", "stationery", "writing", "write", "pen"]}, "pen": {"a": "pen", "b": "1F58A", "j": ["ballpoint", "write", "stationery", "writing"]}, "paintbrush": {"a": "paintbrush", "b": "1F58C", "j": ["painting", "drawing", "art", "creativity"]}, "crayon": {"a": "crayon", "b": "1F58D", "j": ["creativity", "drawing"]}, "memo": {"a": "memo", "b": "1F4DD", "j": ["test", "pencil", "quiz", "compose", "paper", "documents", "study", "stationery", "writing", "write", "legal", "exam"]}, "briefcase": {"a": "briefcase", "b": "1F4BC", "j": ["job", "work", "business", "law", "documents", "career", "legal"]}, "file-folder": {"a": "file folder", "b": "1F4C1", "j": ["file", "business", "folder", "documents", "office"]}, "open-file-folder": {"a": "open file folder", "b": "1F4C2", "j": ["file", "folder", "documents", "open", "load"]}, "card-index-dividers": {"a": "card index dividers", "b": "1F5C2", "j": ["organizing", "business", "card", "stationery", "dividers", "index"]}, "calendar": {"a": "calendar", "b": "1F4C5", "j": ["date", "schedule"]}, "tearoff-calendar": {"a": "tear-off calendar", "b": "1F4C6", "j": ["date", "schedule", "calendar", "planning", "tear_off_calendar"]}, "spiral-notepad": {"a": "spiral notepad", "b": "1F5D2", "j": ["pad", "memo", "stationery", "note", "spiral"]}, "spiral-calendar": {"a": "spiral calendar", "b": "1F5D3", "j": ["pad", "date", "calendar", "schedule", "planning", "spiral"]}, "card-index": {"a": "card index", "b": "1F4C7", "j": ["business", "card", "stationery", "rolodex", "index"]}, "chart-increasing": {"a": "chart increasing", "b": "1F4C8", "j": ["stats", "upward", "business", "graph", "growth", "good", "trend", "chart", "success", "recovery", "money", "economics", "presentation", "sales"]}, "chart-decreasing": {"a": "chart decreasing", "b": "1F4C9", "j": ["stats", "business", "failure", "recession", "graph", "down", "bad", "trend", "chart", "money", "economics", "presentation", "sales"]}, "bar-chart": {"a": "bar chart", "b": "1F4CA", "j": ["stats", "graph", "bar", "chart", "presentation"]}, "clipboard": {"a": "clipboard", "b": "1F4CB", "j": ["documents", "stationery"]}, "pushpin": {"a": "pushpin", "b": "1F4CC", "j": ["here", "pin", "stationery", "mark"]}, "round-pushpin": {"a": "round pushpin", "b": "1F4CD", "j": ["pin", "map", "pushpin", "location", "stationery", "here"]}, "paperclip": {"a": "paperclip", "b": "1F4CE", "j": ["documents", "stationery"]}, "linked-paperclips": {"a": "linked paperclips", "b": "1F587", "j": ["link", "paperclip", "documents", "stationery"]}, "straight-ruler": {"a": "straight ruler", "b": "1F4CF", "j": ["architect", "math", "school", "stationery", "length", "drawing", "sketch", "calculate", "straight edge", "ruler"]}, "triangular-ruler": {"a": "triangular ruler", "b": "1F4D0", "j": ["architect", "math", "triangle", "stationery", "set", "sketch", "ruler"]}, "scissors": {"a": "scissors", "b": "2702", "j": ["cutting", "tool", "stationery", "cut"]}, "card-file-box": {"a": "card file box", "b": "1F5C3", "j": ["business", "file", "card", "stationery", "box"]}, "file-cabinet": {"a": "file cabinet", "b": "1F5C4", "j": ["file", "cabinet", "organizing", "filing"]}, "wastebasket": {"a": "wastebasket", "b": "1F5D1", "j": ["rubbish", "toss", "garbage", "trash", "bin"]}, "locked": {"a": "locked", "b": "1F512", "j": ["password", "padlock", "closed", "security"]}, "unlocked": {"a": "unlocked", "b": "1F513", "j": ["privacy", "open", "unlock", "lock", "security"]}, "locked-with-pen": {"a": "locked with pen", "b": "1F50F", "j": ["secret", "privacy", "lock", "nib", "security", "ink", "pen"]}, "locked-with-key": {"a": "locked with key", "b": "1F510", "j": ["privacy", "lock", "key", "closed", "security", "secure"]}, "key": {"a": "key", "b": "1F511", "j": ["password", "door", "lock"]}, "old-key": {"a": "old key", "b": "1F5DD", "j": ["door", "clue", "lock", "key", "old", "password"]}, "hammer": {"a": "hammer", "b": "1F528", "j": ["tool", "tools", "build", "create"]}, "axe": {"a": "axe", "b": "1FA93", "j": ["wood", "split", "chop", "tool", "hatchet", "cut"]}, "pick": {"a": "pick", "b": "26CF", "j": ["tool", "dig", "mining", "tools"]}, "hammer-and-pick": {"a": "hammer and pick", "b": "2692", "j": ["hammer", "build", "pick", "tools", "tool", "create"]}, "hammer-and-wrench": {"a": "hammer and wrench", "b": "1F6E0", "j": ["hammer", "build", "spanner", "tools", "tool", "wrench", "create"]}, "dagger": {"a": "dagger", "b": "1F5E1", "j": ["weapon", "knife"]}, "crossed-swords": {"a": "crossed swords", "b": "2694", "j": ["weapon", "crossed", "swords"]}, "water-pistol": {"a": "water pistol", "b": "1F52B", "j": ["violence", "tool", "water", "revolver", "weapon", "gun", "pistol", "handgun"]}, "boomerang": {"a": "boomerang", "b": "1FA83", "j": ["rebound", "australia", "repercussion", "weapon"]}, "bow-and-arrow": {"a": "bow and arrow", "b": "1F3F9", "j": ["arrow", "archer", "zodiac", "sports", "Sagittarius", "bow"]}, "shield": {"a": "shield", "b": "1F6E1", "j": ["weapon", "protection", "security"]}, "carpentry-saw": {"a": "carpentry saw", "b": "1FA9A", "j": ["carpenter", "lumber", "saw", "chop", "tool", "cut"]}, "wrench": {"a": "wrench", "b": "1F527", "j": ["diy", "ikea", "spanner", "tools", "fix", "maintainer", "tool"]}, "screwdriver": {"a": "screwdriver", "b": "1FA9B", "j": ["tool", "screw", "tools"]}, "nut-and-bolt": {"a": "nut and bolt", "b": "1F529", "j": ["handy", "tools", "fix", "nut", "tool", "bolt"]}, "gear": {"a": "gear", "b": "2699", "j": ["cog", "cogwheel", "tool"]}, "clamp": {"a": "clamp", "b": "1F5DC", "j": ["vice", "tool", "compress"]}, "balance-scale": {"a": "balance scale", "b": "2696", "j": ["balance", "Libra", "law", "zodiac", "fairness", "justice", "scale", "weight"]}, "white-cane": {"a": "white cane", "b": "1F9AF", "j": ["blind", "probing_cane", "accessibility"]}, "link": {"a": "link", "b": "1F517", "j": ["url", "rings"]}, "chains": {"a": "chains", "b": "26D3", "j": ["arrest", "lock", "chain"]}, "hook": {"a": "hook", "b": "1FA9D", "j": ["crook", "curve", "catch", "selling point", "tools", "ensnare"]}, "toolbox": {"a": "toolbox", "b": "1F9F0", "j": ["chest", "diy", "tools", "fix", "maintainer", "mechanic", "tool"]}, "magnet": {"a": "magnet", "b": "1F9F2", "j": ["attraction", "magnetic", "horseshoe"]}, "ladder": {"a": "ladder", "b": "1FA9C", "j": ["rung", "step", "tools", "climb"]}, "alembic": {"a": "alembic", "b": "2697", "j": ["chemistry", "distilling", "experiment", "science", "tool"]}, "test-tube": {"a": "test tube", "b": "1F9EA", "j": ["chemistry", "experiment", "lab", "science", "chemist"]}, "petri-dish": {"a": "petri dish", "b": "1F9EB", "j": ["biologist", "culture", "biology", "lab", "bacteria"]}, "dna": {"a": "dna", "b": "1F9EC", "j": ["biologist", "life", "gene", "evolution", "genetics"]}, "microscope": {"a": "microscope", "b": "1F52C", "j": ["study", "experiment", "laboratory", "science", "tool", "zoomin"]}, "telescope": {"a": "telescope", "b": "1F52D", "j": ["stars", "astronomy", "space", "science", "tool", "zoom"]}, "satellite-antenna": {"a": "satellite antenna", "b": "1F4E1", "j": ["communication", "satellite", "space", "antenna", "dish", "future", "radio"]}, "syringe": {"a": "syringe", "b": "1F489", "j": ["nurse", "shot", "doctor", "medicine", "hospital", "health", "sick", "needle", "drugs", "blood"]}, "drop-of-blood": {"a": "drop of blood", "b": "1FA78", "j": ["bleed", "menstruation", "harm", "medicine", "wound", "period", "blood donation", "injury", "hurt"]}, "pill": {"a": "pill", "b": "1F48A", "j": ["drug", "doctor", "medicine", "health", "sick", "pharmacy"]}, "adhesive-bandage": {"a": "adhesive bandage", "b": "1FA79", "j": ["heal", "bandage"]}, "stethoscope": {"a": "stethoscope", "b": "1FA7A", "j": ["heart", "medicine", "doctor", "health"]}, "door": {"a": "door", "b": "1F6AA", "j": ["house", "entry", "exit"]}, "elevator": {"a": "elevator", "b": "1F6D7", "j": ["lift", "hoist", "accessibility"]}, "mirror": {"a": "mirror", "b": "1FA9E", "j": ["reflection", "reflector", "speculum"]}, "window": {"a": "window", "b": "1FA9F", "j": ["transparent", "fresh air", "opening", "view", "scenery", "frame"]}, "bed": {"a": "bed", "b": "1F6CF", "j": ["sleep", "hotel", "rest"]}, "couch-and-lamp": {"a": "couch and lamp", "b": "1F6CB", "j": ["lamp", "chill", "couch", "read", "hotel"]}, "chair": {"a": "chair", "b": "1FA91", "j": ["sit", "furniture", "seat"]}, "toilet": {"a": "toilet", "b": "1F6BD", "j": ["potty", "bathroom", "washroom", "restroom", "wc"]}, "plunger": {"a": "plunger", "b": "1FAA0", "j": ["suction", "plumber", "force cup", "toilet"]}, "shower": {"a": "shower", "b": "1F6BF", "j": ["bathroom", "water", "clean"]}, "bathtub": {"a": "bathtub", "b": "1F6C1", "j": ["shower", "bathroom", "bath", "clean"]}, "mouse-trap": {"a": "mouse trap", "b": "1FAA4", "j": ["trap", "cheese", "bait", "mousetrap", "snare"]}, "razor": {"a": "razor", "b": "1FA92", "j": ["shave", "sharp", "cut"]}, "lotion-bottle": {"a": "lotion bottle", "b": "1F9F4", "j": ["sunscreen", "shampoo", "lotion", "moisturizer"]}, "safety-pin": {"a": "safety pin", "b": "1F9F7", "j": ["punk rock", "diaper"]}, "broom": {"a": "broom", "b": "1F9F9", "j": ["cleaning", "sweeping", "witch"]}, "basket": {"a": "basket", "b": "1F9FA", "j": ["farming", "laundry", "picnic"]}, "roll-of-paper": {"a": "roll of paper", "b": "1F9FB", "j": ["toilet paper", "roll", "paper towels"]}, "bucket": {"a": "bucket", "b": "1FAA3", "j": ["cask", "water", "pail", "vat", "container"]}, "soap": {"a": "soap", "b": "1F9FC", "j": ["soapdish", "bar", "lather", "bathing", "cleaning"]}, "toothbrush": {"a": "toothbrush", "b": "1FAA5", "j": ["brush", "bathroom", "hygiene", "teeth", "clean", "dental"]}, "sponge": {"a": "sponge", "b": "1F9FD", "j": ["absorbing", "cleaning", "porous"]}, "fire-extinguisher": {"a": "fire extinguisher", "b": "1F9EF", "j": ["quench", "extinguish", "fire"]}, "shopping-cart": {"a": "shopping cart", "b": "1F6D2", "j": ["shopping", "cart", "trolley"]}, "cigarette": {"a": "cigarette", "b": "1F6AC", "j": ["smoke", "smoking", "kills", "tobacco", "joint"]}, "coffin": {"a": "coffin", "b": "26B0", "j": ["death", "vampire", "rip", "casket", "funeral", "die", "dead", "box", "cemetery", "graveyard"]}, "headstone": {"a": "headstone", "b": "1FAA6", "j": ["death", "rip", "tombstone", "grave", "cemetery", "graveyard"]}, "funeral-urn": {"a": "funeral urn", "b": "26B1", "j": ["death", "rip", "funeral", "ashes", "die", "dead", "urn"]}, "moai": {"a": "moai", "b": "1F5FF", "j": ["rock", "moyai", "face", "statue", "easter island"]}, "placard": {"a": "placard", "b": "1FAA7", "j": ["sign", "announcement", "picket", "protest", "demonstration"]}, "atm-sign": {"a": "ATM sign", "b": "1F3E7", "j": ["cash", "bank", "teller", "automated", "atm", "blue-square", "payment", "money", "sales"]}, "litter-in-bin-sign": {"a": "litter in bin sign", "b": "1F6AE", "j": ["info", "sign", "litter", "human", "blue-square", "litter bin"]}, "potable-water": {"a": "potable water", "b": "1F6B0", "j": ["restroom", "water", "drinking", "blue-square", "liquid", "potable", "faucet", "cleaning"]}, "wheelchair-symbol": {"a": "wheelchair symbol", "b": "267F", "j": ["blue-square", "access", "disabled", "accessibility"]}, "mens-room": {"a": "men’s room", "b": "1F6B9", "j": ["gender", "man", "male", "restroom", "blue-square", "lavatory", "toilet", "men_s_room", "wc"]}, "womens-room": {"a": "women’s room", "b": "1F6BA", "j": ["gender", "woman", "restroom", "purple-square", "loo", "lavatory", "women_s_room", "toilet", "wc", "female"]}, "restroom": {"a": "restroom", "b": "1F6BB", "j": ["gender", "WC", "blue-square", "lavatory", "toilet", "refresh", "wc"]}, "baby-symbol": {"a": "baby symbol", "b": "1F6BC", "j": ["changing", "orange-square", "baby", "child"]}, "water-closet": {"a": "water closet", "b": "1F6BE", "j": ["restroom", "water", "blue-square", "lavatory", "closet", "toilet", "wc"]}, "passport-control": {"a": "passport control", "b": "1F6C2", "j": ["custom", "blue-square", "control", "passport"]}, "customs": {"a": "customs", "b": "1F6C3", "j": ["blue-square", "border", "passport"]}, "baggage-claim": {"a": "baggage claim", "b": "1F6C4", "j": ["transport", "claim", "baggage", "blue-square", "airport"]}, "left-luggage": {"a": "left luggage", "b": "1F6C5", "j": ["locker", "luggage", "baggage", "blue-square", "travel"]}, "warning": {"a": "warning", "b": "26A0", "j": ["alert", "wip", "problem", "error", "issue", "exclamation"]}, "children-crossing": {"a": "children crossing", "b": "1F6B8", "j": ["danger", "warning", "sign", "crossing", "yellow-diamond", "traffic", "pedestrian", "school", "child", "driving"]}, "no-entry": {"a": "no entry", "b": "26D4", "j": ["forbidden", "circle", "denied", "privacy", "stop", "no", "entry", "prohibited", "traffic", "bad", "not", "limit", "security"]}, "prohibited": {"a": "prohibited", "b": "1F6AB", "j": ["forbidden", "circle", "denied", "stop", "no", "entry", "disallow", "not", "limit", "forbid"]}, "no-bicycles": {"a": "no bicycles", "b": "1F6B3", "j": ["forbidden", "circle", "no", "prohibited", "bicycle", "bike", "cyclist"]}, "no-smoking": {"a": "no smoking", "b": "1F6AD", "j": ["smoke", "forbidden", "smoking", "smell", "no", "prohibited", "cigarette", "blue-square", "not"]}, "no-littering": {"a": "no littering", "b": "1F6AF", "j": ["forbidden", "circle", "litter", "no", "prohibited", "garbage", "not", "trash", "bin"]}, "nonpotable-water": {"a": "non-potable water", "b": "1F6B1", "j": ["non_potable_water", "circle", "non-drinking", "drink", "water", "faucet", "tap", "non-potable"]}, "no-pedestrians": {"a": "no pedestrians", "b": "1F6B7", "j": ["forbidden", "circle", "crossing", "no", "prohibited", "pedestrian", "walking", "not", "rules"]}, "no-mobile-phones": {"a": "no mobile phones", "b": "1F4F5", "j": ["forbidden", "circle", "iphone", "phone", "no", "mute", "mobile", "cell"]}, "no-one-under-eighteen": {"a": "no one under eighteen", "b": "1F51E", "j": ["pub", "underage", "night", "circle", "prohibited", "drink", "18", "eighteen", "age restriction", "minor"]}, "radioactive": {"a": "radioactive", "b": "2622", "j": ["danger", "sign", "nuclear"]}, "biohazard": {"a": "biohazard", "b": "2623", "j": ["danger", "sign"]}, "up-arrow": {"a": "up arrow", "b": "2B06", "j": ["arrow", "top", "blue-square", "continue", "direction", "north", "cardinal"]}, "upright-arrow": {"a": "up-right arrow", "b": "2197", "j": ["arrow", "up_right_arrow", "point", "diagonal", "blue-square", "direction", "northeast", "intercardinal"]}, "right-arrow": {"a": "right arrow", "b": "27A1", "j": ["arrow", "east", "blue-square", "direction", "next", "cardinal"]}, "downright-arrow": {"a": "down-right arrow", "b": "2198", "j": ["arrow", "diagonal", "blue-square", "down_right_arrow", "direction", "intercardinal", "southeast"]}, "down-arrow": {"a": "down arrow", "b": "2B07", "j": ["arrow", "down", "blue-square", "cardinal", "direction", "bottom", "south"]}, "downleft-arrow": {"a": "down-left arrow", "b": "2199", "j": ["arrow", "southwest", "diagonal", "blue-square", "down_left_arrow", "direction", "intercardinal"]}, "left-arrow": {"a": "left arrow", "b": "2B05", "j": ["arrow", "west", "blue-square", "previous", "back", "direction", "cardinal"]}, "upleft-arrow": {"a": "up-left arrow", "b": "2196", "j": ["arrow", "point", "northwest", "up_left_arrow", "diagonal", "blue-square", "direction", "intercardinal"]}, "updown-arrow": {"a": "up-down arrow", "b": "2195", "j": ["arrow", "blue-square", "vertical", "direction", "up_down_arrow", "way"]}, "leftright-arrow": {"a": "left-right arrow", "b": "2194", "j": ["left_right_arrow", "arrow", "sideways", "shape", "direction", "horizontal"]}, "right-arrow-curving-left": {"a": "right arrow curving left", "b": "21A9", "j": ["arrow", "undo", "back", "return", "blue-square", "enter"]}, "left-arrow-curving-right": {"a": "left arrow curving right", "b": "21AA", "j": ["arrow", "blue-square", "return", "direction", "rotate"]}, "right-arrow-curving-up": {"a": "right arrow curving up", "b": "2934", "j": ["blue-square", "arrow", "direction", "top"]}, "right-arrow-curving-down": {"a": "right arrow curving down", "b": "2935", "j": ["arrow", "down", "blue-square", "direction", "bottom"]}, "clockwise-vertical-arrows": {"a": "clockwise vertical arrows", "b": "1F503", "j": ["arrow", "sync", "round", "cycle", "repeat", "reload", "clockwise"]}, "counterclockwise-arrows-button": {"a": "counterclockwise arrows button", "b": "1F504", "j": ["arrow", "sync", "blue-square", "cycle", "anticlockwise", "withershins", "counterclockwise"]}, "back-arrow": {"a": "BACK arrow", "b": "1F519", "j": ["back", "arrow", "return", "words"]}, "end-arrow": {"a": "END arrow", "b": "1F51A", "j": ["end", "arrow", "words"]}, "on-arrow": {"a": "ON! arrow", "b": "1F51B", "j": ["arrow", "words", "on", "mark"]}, "soon-arrow": {"a": "SOON arrow", "b": "1F51C", "j": ["arrow", "soon", "words"]}, "top-arrow": {"a": "TOP arrow", "b": "1F51D", "j": ["arrow", "top", "words", "blue-square", "up"]}, "place-of-worship": {"a": "place of worship", "b": "1F6D0", "j": ["church", "worship", "prayer", "temple", "religion"]}, "atom-symbol": {"a": "atom symbol", "b": "269B", "j": ["chemistry", "atom", "atheist", "science", "physics"]}, "om": {"a": "om", "b": "1F549", "j": ["sikhism", "Hindu", "hinduism", "buddhism", "jainism", "religion"]}, "star-of-david": {"a": "star of David", "b": "2721", "j": ["star", "Jew", "David", "Jewish", "judaism", "religion"]}, "wheel-of-dharma": {"a": "wheel of dharma", "b": "2638", "j": ["dharma", "sikhism", "wheel", "hinduism", "buddhism", "jainism", "Buddhist", "religion"]}, "yin-yang": {"a": "yin yang", "b": "262F", "j": ["balance", "yang", "tao", "taoist", "yin", "religion"]}, "latin-cross": {"a": "latin cross", "b": "271D", "j": ["religion", "cross", "christianity", "Christian"]}, "orthodox-cross": {"a": "orthodox cross", "b": "2626", "j": ["cross", "religion", "suppedaneum", "Christian"]}, "star-and-crescent": {"a": "star and crescent", "b": "262A", "j": ["islam", "Muslim", "religion"]}, "peace-symbol": {"a": "peace symbol", "b": "262E", "j": ["hippie", "peace"]}, "menorah": {"a": "menorah", "b": "1F54E", "j": ["candlestick", "hanukkah", "jewish", "candelabrum", "candles", "religion"]}, "dotted-sixpointed-star": {"a": "dotted six-pointed star", "b": "1F52F", "j": ["jewish", "star", "purple-square", "dotted_six_pointed_star", "fortune", "religion", "hexagram"]}, "aries": {"a": "Aries", "b": "2648", "j": ["astrology", "sign", "ram", "purple-square", "zodiac"]}, "taurus": {"a": "Taurus", "b": "2649", "j": ["astrology", "sign", "purple-square", "ox", "zodiac", "bull"]}, "gemini": {"a": "Gemini", "b": "264A", "j": ["astrology", "sign", "twins", "purple-square", "zodiac"]}, "cancer": {"a": "Cancer", "b": "264B", "j": ["astrology", "sign", "purple-square", "zodiac", "crab"]}, "leo": {"a": "Leo", "b": "264C", "j": ["astrology", "sign", "lion", "purple-square", "zodiac"]}, "virgo": {"a": "Virgo", "b": "264D", "j": ["astrology", "sign", "purple-square", "zodiac"]}, "libra": {"a": "Libra", "b": "264E", "j": ["astrology", "sign", "balance", "purple-square", "zodiac", "scales", "justice"]}, "scorpio": {"a": "Scorpio", "b": "264F", "j": ["astrology", "sign", "scorpion", "purple-square", "zodiac", "scorpius"]}, "sagittarius": {"a": "Sagittarius", "b": "2650", "j": ["astrology", "sign", "archer", "purple-square", "zodiac"]}, "capricorn": {"a": "Capricorn", "b": "2651", "j": ["astrology", "sign", "purple-square", "zodiac", "goat"]}, "aquarius": {"a": "Aquarius", "b": "2652", "j": ["astrology", "sign", "purple-square", "water", "zodiac", "bearer"]}, "pisces": {"a": "Pisces", "b": "2653", "j": ["astrology", "sign", "purple-square", "fish", "zodiac"]}, "ophiuchus": {"a": "Ophiuchus", "b": "26CE", "j": ["astrology", "sign", "serpent", "snake", "purple-square", "zodiac", "constellation", "bearer"]}, "shuffle-tracks-button": {"a": "shuffle tracks button", "b": "1F500", "j": ["arrow", "random", "crossed", "blue-square", "shuffle", "music"]}, "repeat-button": {"a": "repeat button", "b": "1F501", "j": ["arrow", "record", "loop", "repeat", "clockwise"]}, "repeat-single-button": {"a": "repeat single button", "b": "1F502", "j": ["arrow", "once", "blue-square", "loop", "clockwise"]}, "play-button": {"a": "play button", "b": "25B6", "j": ["arrow", "play", "triangle", "blue-square", "direction", "right"]}, "fastforward-button": {"a": "fast-forward button", "b": "23E9", "j": ["arrow", "play", "fast", "fast_forward_button", "blue-square", "speed", "continue", "double", "forward"]}, "next-track-button": {"a": "next track button", "b": "23ED", "j": ["arrow", "next track", "next scene", "triangle", "blue-square", "next", "forward"]}, "play-or-pause-button": {"a": "play or pause button", "b": "23EF", "j": ["arrow", "play", "triangle", "blue-square", "pause", "right"]}, "reverse-button": {"a": "reverse button", "b": "25C0", "j": ["arrow", "reverse", "triangle", "left", "blue-square", "direction"]}, "fast-reverse-button": {"a": "fast reverse button", "b": "23EA", "j": ["arrow", "play", "blue-square", "double", "rewind"]}, "last-track-button": {"a": "last track button", "b": "23EE", "j": ["previous track", "arrow", "previous scene", "triangle", "backward"]}, "upwards-button": {"a": "upwards button", "b": "1F53C", "j": ["arrow", "top", "point", "triangle", "blue-square", "red", "direction", "button", "forward"]}, "fast-up-button": {"a": "fast up button", "b": "23EB", "j": ["arrow", "top", "blue-square", "direction", "double"]}, "downwards-button": {"a": "downwards button", "b": "1F53D", "j": ["arrow", "down", "blue-square", "red", "direction", "button", "bottom"]}, "fast-down-button": {"a": "fast down button", "b": "23EC", "j": ["arrow", "down", "blue-square", "direction", "double", "bottom"]}, "pause-button": {"a": "pause button", "b": "23F8", "j": ["bar", "blue-square", "vertical", "double", "pause"]}, "stop-button": {"a": "stop button", "b": "23F9", "j": ["blue-square", "square", "stop"]}, "record-button": {"a": "record button", "b": "23FA", "j": ["blue-square", "circle", "record"]}, "eject-button": {"a": "eject button", "b": "23CF", "j": ["blue-square", "eject"]}, "cinema": {"a": "cinema", "b": "1F3A6", "j": ["theater", "stage", "camera", "record", "curtain", "film", "blue-square", "movie"]}, "dim-button": {"a": "dim button", "b": "1F505", "j": ["sun", "brightness", "low", "warm", "afternoon", "dim", "summer"]}, "bright-button": {"a": "bright button", "b": "1F506", "j": ["sun", "brightness", "light", "bright"]}, "antenna-bars": {"a": "antenna bars", "b": "1F4F6", "j": ["phone", "bars", "bluetooth", "bar", "mobile", "blue-square", "internet", "antenna", "connection", "wifi", "cell", "reception"]}, "vibration-mode": {"a": "vibration mode", "b": "1F4F3", "j": ["phone", "orange-square", "telephone", "mobile", "vibration", "mode", "cell"]}, "mobile-phone-off": {"a": "mobile phone off", "b": "1F4F4", "j": ["silence", "phone", "orange-square", "telephone", "mute", "mobile", "quiet", "cell", "off"]}, "female-sign": {"a": "female sign", "b": "2640", "j": ["lady", "women", "girl", "woman"]}, "male-sign": {"a": "male sign", "b": "2642", "j": ["boy", "man", "men"]}, "transgender-symbol": {"a": "transgender symbol", "b": "26A7", "j": ["transgender", "lgbtq"]}, "multiply": {"a": "multiply", "b": "2716", "j": ["sign", "multiplication_sign", "math", "cancel", "multiplication", "calculation", "x", "×"]}, "plus": {"a": "plus", "b": "2795", "j": ["sign", "+", "increase", "math", "more", "calculation", "plus_sign", "addition"]}, "minus": {"a": "minus", "b": "2796", "j": ["minus_sign", "sign", "math", "−", "calculation", "-", "less", "subtract"]}, "divide": {"a": "divide", "b": "2797", "j": ["sign", "division_sign", "math", "÷", "division", "calculation"]}, "infinity": {"a": "infinity", "b": "267E", "j": ["unbounded", "universal", "forever"]}, "double-exclamation-mark": {"a": "double exclamation mark", "b": "203C", "j": ["!!", "mark", "bangbang", "exclamation", "!", "surprise"]}, "exclamation-question-mark": {"a": "exclamation question mark", "b": "2049", "j": ["punctuation", "interrobang", "mark", "exclamation", "?", "wat", "!?", "question", "!", "surprise"]}, "red-question-mark": {"a": "red question mark", "b": "2753", "j": ["punctuation", "question_mark", "mark", "?", "question", "confused", "doubt"]}, "white-question-mark": {"a": "white question mark", "b": "2754", "j": ["confused", "punctuation", "mark", "?", "outlined", "huh", "doubts", "question", "gray"]}, "white-exclamation-mark": {"a": "white exclamation mark", "b": "2755", "j": ["warning", "punctuation", "mark", "wow", "outlined", "exclamation", "!", "surprise", "gray"]}, "red-exclamation-mark": {"a": "red exclamation mark", "b": "2757", "j": ["danger", "warning", "punctuation", "heavy_exclamation_mark", "mark", "exclamation_mark", "wow", "exclamation", "!", "surprise"]}, "wavy-dash": {"a": "wavy dash", "b": "3030", "j": ["moustache", "punctuation", "draw", "dash", "squiggle", "scribble", "mustache", "line", "wavy"]}, "currency-exchange": {"a": "currency exchange", "b": "1F4B1", "j": ["currency", "bank", "dollar", "travel", "exchange", "money", "sales"]}, "heavy-dollar-sign": {"a": "heavy dollar sign", "b": "1F4B2", "j": ["currency", "dollar", "payment", "money", "sales", "buck"]}, "medical-symbol": {"a": "medical symbol", "b": "2695", "j": ["staff", "aesculapius", "hospital", "medicine", "health"]}, "recycling-symbol": {"a": "recycling symbol", "b": "267B", "j": ["arrow", "recycle", "environment", "garbage", "trash"]}, "fleurdelis": {"a": "fleur-de-lis", "b": "269C", "j": ["fleur_de_lis", "decorative", "scout"]}, "trident-emblem": {"a": "trident emblem", "b": "1F531", "j": ["emblem", "anchor", "weapon", "ship", "tool", "spear", "trident"]}, "name-badge": {"a": "name badge", "b": "1F4DB", "j": ["name", "forbid", "fire", "badge"]}, "japanese-symbol-for-beginner": {"a": "Japanese symbol for beginner", "b": "1F530", "j": ["chevron", "badge", "leaf", "shield", "Japanese", "beginner"]}, "hollow-red-circle": {"a": "hollow red circle", "b": "2B55", "j": ["large", "circle", "o", "red", "round"]}, "check-mark-button": {"a": "check mark button", "b": "2705", "j": ["election", "check", "✓", "green-square", "mark", "vote", "agree", "answer", "tick", "button", "ok"]}, "check-box-with-check": {"a": "check box with check", "b": "2611", "j": ["election", "yes", "check", "✓", "black-square", "vote", "confirm", "agree", "tick", "box", "ok"]}, "check-mark": {"a": "check mark", "b": "2714", "j": ["yes", "check", "✓", "nike", "mark", "answer", "tick", "ok"]}, "cross-mark": {"a": "cross mark", "b": "274C", "j": ["cross", "mark", "no", "delete", "cancel", "multiply", "remove", "multiplication", "red", "x", "×"]}, "cross-mark-button": {"a": "cross mark button", "b": "274E", "j": ["mark", "no", "square", "deny", "x", "green-square", "×"]}, "curly-loop": {"a": "curly loop", "b": "27B0", "j": ["draw", "curl", "shape", "squiggle", "scribble", "loop"]}, "double-curly-loop": {"a": "double curly loop", "b": "27BF", "j": ["curl", "tape", "cassette", "double", "loop"]}, "part-alternation-mark": {"a": "part alternation mark", "b": "303D", "j": ["stats", "business", "mark", "graph", "bad", "part", "economics", "presentation"]}, "eightspoked-asterisk": {"a": "eight-spoked asterisk", "b": "2733", "j": ["eight_spoked_asterisk", "star", "*", "sparkle", "asterisk", "green-square"]}, "eightpointed-star": {"a": "eight-pointed star", "b": "2734", "j": ["polygon", "orange-square", "star", "*", "shape", "eight_pointed_star"]}, "sparkle": {"a": "sparkle", "b": "2747", "j": ["awesome", "fireworks", "good", "stars", "*", "green-square"]}, "copyright": {"a": "copyright", "b": "00A9", "j": ["ip", "circle", "license", "law", "legal", "c"]}, "registered": {"a": "registered", "b": "00AE", "j": ["alphabet", "circle", "r"]}, "trade-mark": {"a": "trade mark", "b": "2122", "j": ["mark", "tm", "law", "brand", "legal", "trademark"]}, "keycap": {"a": "keycap: *", "b": "002A-FE0F-20E3", "j": ["star", "keycap_"]}, "keycap-0": {"a": "keycap: 0", "b": "0030-FE0F-20E3", "j": ["0", "keycap", "numbers", "blue-square", "null"]}, "keycap-1": {"a": "keycap: 1", "b": "0031-FE0F-20E3", "j": ["numbers", "blue-square", "1", "keycap"]}, "keycap-2": {"a": "keycap: 2", "b": "0032-FE0F-20E3", "j": ["keycap", "numbers", "2", "blue-square", "prime"]}, "keycap-3": {"a": "keycap: 3", "b": "0033-FE0F-20E3", "j": ["keycap", "numbers", "3", "blue-square", "prime"]}, "keycap-4": {"a": "keycap: 4", "b": "0034-FE0F-20E3", "j": ["numbers", "blue-square", "4", "keycap"]}, "keycap-5": {"a": "keycap: 5", "b": "0035-FE0F-20E3", "j": ["keycap", "numbers", "blue-square", "prime", "5"]}, "keycap-6": {"a": "keycap: 6", "b": "0036-FE0F-20E3", "j": ["numbers", "6", "keycap", "blue-square"]}, "keycap-7": {"a": "keycap: 7", "b": "0037-FE0F-20E3", "j": ["7", "keycap", "numbers", "blue-square", "prime"]}, "keycap-8": {"a": "keycap: 8", "b": "0038-FE0F-20E3", "j": ["numbers", "blue-square", "8", "keycap"]}, "keycap-9": {"a": "keycap: 9", "b": "0039-FE0F-20E3", "j": ["numbers", "blue-square", "9", "keycap"]}, "keycap-10": {"a": "keycap: 10", "b": "1F51F", "j": ["numbers", "blue-square", "10", "keycap"]}, "input-latin-uppercase": {"a": "input latin uppercase", "b": "1F520", "j": ["latin", "words", "alphabet", "input", "ABCD", "uppercase", "blue-square", "letters"]}, "input-latin-lowercase": {"a": "input latin lowercase", "b": "1F521", "j": ["latin", "alphabet", "abcd", "input", "blue-square", "letters", "lowercase"]}, "input-numbers": {"a": "input numbers", "b": "1F522", "j": ["numbers", "blue-square", "1234", "input"]}, "input-symbols": {"a": "input symbols", "b": "1F523", "j": ["percent", "〒♪&%", "ampersand", "input", "blue-square", "note", "glyphs", "characters", "music"]}, "input-latin-letters": {"a": "input latin letters", "b": "1F524", "j": ["latin", "alphabet", "input", "blue-square", "abc", "letters"]}, "a-button-blood-type": {"a": "A button (blood type)", "b": "1F170", "j": ["a_button", "letter", "alphabet", "a", "red-square", "blood type"]}, "ab-button-blood-type": {"a": "AB button (blood type)", "b": "1F18E", "j": ["ab_button", "alphabet", "red-square", "ab", "blood type"]}, "b-button-blood-type": {"a": "B button (blood type)", "b": "1F171", "j": ["letter", "alphabet", "b", "red-square", "b_button", "blood type"]}, "cl-button": {"a": "CL button", "b": "1F191", "j": ["alphabet", "red-square", "words", "cl"]}, "cool-button": {"a": "COOL button", "b": "1F192", "j": ["blue-square", "words", "cool"]}, "free-button": {"a": "FREE button", "b": "1F193", "j": ["blue-square", "free", "words"]}, "information": {"a": "information", "b": "2139", "j": ["i", "alphabet", "blue-square", "letter"]}, "id-button": {"a": "ID button", "b": "1F194", "j": ["id", "identity", "purple-square", "words"]}, "circled-m": {"a": "circled M", "b": "24C2", "j": ["circle", "blue-circle", "letter", "alphabet", "m"]}, "new-button": {"a": "NEW button", "b": "1F195", "j": ["blue-square", "start", "new", "words"]}, "ng-button": {"a": "NG button", "b": "1F196", "j": ["icon", "words", "blue-square", "ng", "shape"]}, "o-button-blood-type": {"a": "O button (blood type)", "b": "1F17E", "j": ["letter", "alphabet", "o", "o_button", "red-square", "blood type"]}, "ok-button": {"a": "OK button", "b": "1F197", "j": ["yes", "OK", "good", "agree", "blue-square"]}, "p-button": {"a": "P button", "b": "1F17F", "j": ["letter", "alphabet", "blue-square", "parking", "cars"]}, "sos-button": {"a": "SOS button", "b": "1F198", "j": ["words", "sos", "emergency", "red-square", "911", "help"]}, "up-button": {"a": "UP! button", "b": "1F199", "j": ["mark", "high", "above", "blue-square", "up"]}, "vs-button": {"a": "VS button", "b": "1F19A", "j": ["orange-square", "vs", "words", "versus"]}, "japanese-here-button": {"a": "Japanese “here” button", "b": "1F201", "j": ["destination", "ココ", "katakana", "Japanese", "japanese", "“here”", "blue-square", "here"]}, "japanese-service-charge-button": {"a": "Japanese “service charge” button", "b": "1F202", "j": ["katakana", "Japanese", "japanese", "blue-square", "“service charge”", "サ"]}, "japanese-monthly-amount-button": {"a": "Japanese “monthly amount” button", "b": "1F237", "j": ["orange-square", "moon", "Japanese", "japanese", "kanji", "ideograph", "月", "chinese", "“monthly amount”", "month"]}, "japanese-not-free-of-charge-button": {"a": "Japanese “not free of charge” button", "b": "1F236", "j": ["有", "orange-square", "Japanese", "have", "kanji", "ideograph", "chinese", "“not free of charge”"]}, "japanese-reserved-button": {"a": "Japanese “reserved” button", "b": "1F22F", "j": ["point", "“reserved”", "Japanese", "kanji", "ideograph", "chinese", "green-square", "指"]}, "japanese-bargain-button": {"a": "Japanese “bargain” button", "b": "1F250", "j": ["circle", "得", "obtain", "Japanese", "get", "“bargain”", "kanji", "ideograph", "chinese"]}, "japanese-discount-button": {"a": "Japanese “discount” button", "b": "1F239", "j": ["pink-square", "Japanese", "“discount”", "kanji", "ideograph", "割", "chinese", "divide", "cut"]}, "japanese-free-of-charge-button": {"a": "Japanese “free of charge” button", "b": "1F21A", "j": ["“free of charge”", "orange-square", "Japanese", "japanese", "nothing", "kanji", "ideograph", "chinese", "無"]}, "japanese-prohibited-button": {"a": "Japanese “prohibited” button", "b": "1F232", "j": ["“prohibited”", "forbidden", "禁", "Japanese", "japanese", "red-square", "kanji", "ideograph", "limit", "chinese", "restricted"]}, "japanese-acceptable-button": {"a": "Japanese “acceptable” button", "b": "1F251", "j": ["yes", "good", "orange-circle", "可", "Japanese", "agree", "kanji", "ideograph", "chinese", "ok", "“acceptable”"]}, "japanese-application-button": {"a": "Japanese “application” button", "b": "1F238", "j": ["orange-square", "Japanese", "japanese", "kanji", "ideograph", "“application”", "chinese", "申"]}, "japanese-passing-grade-button": {"a": "Japanese “passing grade” button", "b": "1F234", "j": ["join", "Japanese", "japanese", "“passing grade”", "red-square", "kanji", "ideograph", "chinese", "合"]}, "japanese-vacancy-button": {"a": "Japanese “vacancy” button", "b": "1F233", "j": ["“vacancy”", "空", "Japanese", "japanese", "blue-square", "sky", "kanji", "ideograph", "empty", "chinese"]}, "japanese-congratulations-button": {"a": "Japanese “congratulations” button", "b": "3297", "j": ["Japanese", "japanese", "kanji", "ideograph", "chinese", "red-circle", "“congratulations”", "祝"]}, "japanese-secret-button": {"a": "Japanese “secret” button", "b": "3299", "j": ["privacy", "“secret”", "Japanese", "sshh", "kanji", "ideograph", "秘", "red-circle", "chinese"]}, "japanese-open-for-business-button": {"a": "Japanese “open for business” button", "b": "1F23A", "j": ["orange-square", "Japanese", "営", "japanese", "opening hours", "“open for business”", "ideograph"]}, "japanese-no-vacancy-button": {"a": "Japanese “no vacancy” button", "b": "1F235", "j": ["満", "full", "Japanese", "japanese", "red-square", "kanji", "ideograph", "chinese", "“no vacancy”"]}, "red-circle": {"a": "red circle", "b": "1F534", "j": ["danger", "circle", "shape", "red", "geometric", "error"]}, "orange-circle": {"a": "orange circle", "b": "1F7E0", "j": ["circle", "orange", "round"]}, "yellow-circle": {"a": "yellow circle", "b": "1F7E1", "j": ["circle", "round", "yellow"]}, "green-circle": {"a": "green circle", "b": "1F7E2", "j": ["circle", "round", "green"]}, "blue-circle": {"a": "blue circle", "b": "1F535", "j": ["blue", "circle", "icon", "geometric", "shape", "button"]}, "purple-circle": {"a": "purple circle", "b": "1F7E3", "j": ["circle", "purple", "round"]}, "brown-circle": {"a": "brown circle", "b": "1F7E4", "j": ["circle", "brown", "round"]}, "black-circle": {"a": "black circle", "b": "26AB", "j": ["circle", "shape", "geometric", "button", "round"]}, "white-circle": {"a": "white circle", "b": "26AA", "j": ["circle", "shape", "round", "geometric"]}, "red-square": {"a": "red square", "b": "1F7E5", "j": ["red", "square"]}, "orange-square": {"a": "orange square", "b": "1F7E7", "j": ["square", "orange"]}, "yellow-square": {"a": "yellow square", "b": "1F7E8", "j": ["square", "yellow"]}, "green-square": {"a": "green square", "b": "1F7E9", "j": ["square", "green"]}, "blue-square": {"a": "blue square", "b": "1F7E6", "j": ["blue", "square"]}, "purple-square": {"a": "purple square", "b": "1F7EA", "j": ["square", "purple"]}, "brown-square": {"a": "brown square", "b": "1F7EB", "j": ["square", "brown"]}, "black-large-square": {"a": "black large square", "b": "2B1B", "j": ["icon", "geometric", "shape", "square", "button"]}, "white-large-square": {"a": "white large square", "b": "2B1C", "j": ["icon", "stone", "shape", "geometric", "square", "button"]}, "black-medium-square": {"a": "black medium square", "b": "25FC", "j": ["icon", "geometric", "shape", "square", "button"]}, "white-medium-square": {"a": "white medium square", "b": "25FB", "j": ["icon", "stone", "shape", "geometric", "square"]}, "black-mediumsmall-square": {"a": "black medium-small square", "b": "25FE", "j": ["icon", "geometric", "shape", "square", "black_medium_small_square", "button"]}, "white-mediumsmall-square": {"a": "white medium-small square", "b": "25FD", "j": ["icon", "stone", "geometric", "shape", "square", "white_medium_small_square", "button"]}, "black-small-square": {"a": "black small square", "b": "25AA", "j": ["geometric", "shape", "icon", "square"]}, "white-small-square": {"a": "white small square", "b": "25AB", "j": ["geometric", "shape", "icon", "square"]}, "large-orange-diamond": {"a": "large orange diamond", "b": "1F536", "j": ["diamond", "orange", "gem", "shape", "geometric", "jewel"]}, "large-blue-diamond": {"a": "large blue diamond", "b": "1F537", "j": ["blue", "diamond", "geometric", "shape", "gem", "jewel"]}, "small-orange-diamond": {"a": "small orange diamond", "b": "1F538", "j": ["diamond", "orange", "gem", "shape", "geometric", "jewel"]}, "small-blue-diamond": {"a": "small blue diamond", "b": "1F539", "j": ["blue", "diamond", "geometric", "shape", "gem", "jewel"]}, "red-triangle-pointed-up": {"a": "red triangle pointed up", "b": "1F53A", "j": ["top", "geometric", "shape", "red", "direction", "up"]}, "red-triangle-pointed-down": {"a": "red triangle pointed down", "b": "1F53B", "j": ["down", "shape", "red", "geometric", "direction", "bottom"]}, "diamond-with-a-dot": {"a": "diamond with a dot", "b": "1F4A0", "j": ["blue", "diamond", "fancy", "inside", "crystal", "comic", "geometric", "gem", "jewel"]}, "radio-button": {"a": "radio button", "b": "1F518", "j": ["circle", "input", "geometric", "old", "button", "music", "radio"]}, "white-square-button": {"a": "white square button", "b": "1F533", "j": ["input", "outlined", "geometric", "shape", "square", "button"]}, "black-square-button": {"a": "black square button", "b": "1F532", "j": ["input", "geometric", "shape", "square", "button", "frame"]}, "chequered-flag": {"a": "chequered flag", "b": "1F3C1", "j": ["checkered", "contest", "finishline", "race", "racing", "gokart", "chequered"]}, "triangular-flag": {"a": "triangular flag", "b": "1F6A9", "j": ["place", "post", "milestone", "mark"]}, "crossed-flags": {"a": "crossed flags", "b": "1F38C", "j": ["cross", "Japanese", "crossed", "japanese", "celebration", "nation", "country", "border"]}, "black-flag": {"a": "black flag", "b": "1F3F4", "j": ["waving", "pirate"]}, "white-flag": {"a": "white flag", "b": "1F3F3", "j": ["waving", "give up", "loser", "losing", "fail", "lost", "surrender"]}, "rainbow-flag": {"a": "rainbow flag", "b": "1F3F3-FE0F-200D-1F308", "j": ["homosexual", "glbt", "flag", "pride", "bisexual", "gay", "queer", "lesbian", "lgbt", "rainbow", "transgender"]}, "transgender-flag": {"a": "transgender flag", "b": "1F3F3-FE0F-200D-26A7-FE0F", "j": ["flag", "lgbtq", "light blue", "pink", "white", "transgender"]}, "pirate-flag": {"a": "pirate flag", "b": "1F3F4-200D-2620-FE0F", "j": ["banner", "pirate", "skull", "flag", "Jolly Roger", "treasure", "plunder", "crossbones"]}, "flag-ascension-island": {"a": "flag: Ascension Island", "b": "1F1E6-1F1E8", "j": ["flag"]}, "flag-andorra": {"a": "flag: Andorra", "b": "1F1E6-1F1E9", "j": ["banner", "ad", "flag", "country", "nation"]}, "flag-united-arab-emirates": {"a": "flag: United Arab Emirates", "b": "1F1E6-1F1EA", "j": ["united", "banner", "flag", "arab", "nation", "country", "emirates"]}, "flag-afghanistan": {"a": "flag: Afghanistan", "b": "1F1E6-1F1EB", "j": ["banner", "af", "flag", "country", "nation"]}, "flag-antigua--barbuda": {"a": "flag: Antigua & Barbuda", "b": "1F1E6-1F1EC", "j": ["banner", "antigua", "flag", "flag_antigua_barbuda", "nation", "country", "barbuda"]}, "flag-anguilla": {"a": "flag: Anguilla", "b": "1F1E6-1F1EE", "j": ["banner", "flag", "ai", "country", "nation"]}, "flag-albania": {"a": "flag: Albania", "b": "1F1E6-1F1F1", "j": ["banner", "flag", "nation", "country", "al"]}, "flag-armenia": {"a": "flag: Armenia", "b": "1F1E6-1F1F2", "j": ["banner", "am", "flag", "nation", "country"]}, "flag-angola": {"a": "flag: Angola", "b": "1F1E6-1F1F4", "j": ["banner", "flag", "ao", "country", "nation"]}, "flag-antarctica": {"a": "flag: Antarctica", "b": "1F1E6-1F1F6", "j": ["banner", "flag", "nation", "country", "aq"]}, "flag-argentina": {"a": "flag: Argentina", "b": "1F1E6-1F1F7", "j": ["banner", "flag", "ar", "nation", "country"]}, "flag-american-samoa": {"a": "flag: American Samoa", "b": "1F1E6-1F1F8", "j": ["banner", "flag", "ws", "nation", "country", "american"]}, "flag-austria": {"a": "flag: Austria", "b": "1F1E6-1F1F9", "j": ["banner", "at", "flag", "nation", "country"]}, "flag-australia": {"a": "flag: Australia", "b": "1F1E6-1F1FA", "j": ["banner", "flag", "au", "nation", "country"]}, "flag-aruba": {"a": "flag: Aruba", "b": "1F1E6-1F1FC", "j": ["banner", "flag", "nation", "country", "aw"]}, "flag-land-islands": {"a": "flag: Åland Islands", "b": "1F1E6-1F1FD", "j": ["banner", "Åland", "flag_aland_islands", "flag", "islands", "nation", "country"]}, "flag-azerbaijan": {"a": "flag: Azerbaijan", "b": "1F1E6-1F1FF", "j": ["banner", "az", "flag", "country", "nation"]}, "flag-bosnia--herzegovina": {"a": "flag: Bosnia & Herzegovina", "b": "1F1E7-1F1E6", "j": ["banner", "flag", "flag_bosnia_herzegovina", "herzegovina", "bosnia", "nation", "country"]}, "flag-barbados": {"a": "flag: Barbados", "b": "1F1E7-1F1E7", "j": ["banner", "bb", "flag", "country", "nation"]}, "flag-bangladesh": {"a": "flag: Bangladesh", "b": "1F1E7-1F1E9", "j": ["banner", "flag", "country", "nation", "bd"]}, "flag-belgium": {"a": "flag: Belgium", "b": "1F1E7-1F1EA", "j": ["banner", "flag", "country", "nation", "be"]}, "flag-burkina-faso": {"a": "flag: Burkina Faso", "b": "1F1E7-1F1EB", "j": ["banner", "flag", "faso", "nation", "country", "burkina"]}, "flag-bulgaria": {"a": "flag: Bulgaria", "b": "1F1E7-1F1EC", "j": ["banner", "flag", "bg", "country", "nation"]}, "flag-bahrain": {"a": "flag: Bahrain", "b": "1F1E7-1F1ED", "j": ["banner", "flag", "bh", "country", "nation"]}, "flag-burundi": {"a": "flag: Burundi", "b": "1F1E7-1F1EE", "j": ["banner", "flag", "bi", "country", "nation"]}, "flag-benin": {"a": "flag: Benin", "b": "1F1E7-1F1EF", "j": ["banner", "flag", "bj", "country", "nation"]}, "flag-st-barthlemy": {"a": "flag: St. Barthélemy", "b": "1F1E7-1F1F1", "j": ["banner", "flag", "flag_st_barthelemy", "nation", "country", "barthélemy", "saint"]}, "flag-bermuda": {"a": "flag: Bermuda", "b": "1F1E7-1F1F2", "j": ["banner", "bm", "flag", "country", "nation"]}, "flag-brunei": {"a": "flag: Brunei", "b": "1F1E7-1F1F3", "j": ["banner", "darussalam", "flag", "nation", "bn", "country"]}, "flag-bolivia": {"a": "flag: Bolivia", "b": "1F1E7-1F1F4", "j": ["banner", "flag", "country", "nation", "bo"]}, "flag-caribbean-netherlands": {"a": "flag: Caribbean Netherlands", "b": "1F1E7-1F1F6", "j": ["banner", "flag", "bonaire", "nation", "country"]}, "flag-brazil": {"a": "flag: Brazil", "b": "1F1E7-1F1F7", "j": ["banner", "flag", "br", "country", "nation"]}, "flag-bahamas": {"a": "flag: Bahamas", "b": "1F1E7-1F1F8", "j": ["banner", "flag", "country", "nation", "bs"]}, "flag-bhutan": {"a": "flag: Bhutan", "b": "1F1E7-1F1F9", "j": ["bt", "banner", "flag", "country", "nation"]}, "flag-bouvet-island": {"a": "flag: Bouvet Island", "b": "1F1E7-1F1FB", "j": ["norway", "flag"]}, "flag-botswana": {"a": "flag: Botswana", "b": "1F1E7-1F1FC", "j": ["banner", "flag", "bw", "country", "nation"]}, "flag-belarus": {"a": "flag: Belarus", "b": "1F1E7-1F1FE", "j": ["banner", "flag", "nation", "country", "by"]}, "flag-belize": {"a": "flag: Belize", "b": "1F1E7-1F1FF", "j": ["banner", "flag", "country", "bz", "nation"]}, "flag-canada": {"a": "flag: Canada", "b": "1F1E8-1F1E6", "j": ["banner", "flag", "ca", "country", "nation"]}, "flag-cocos-keeling-islands": {"a": "flag: Cocos (Keeling) Islands", "b": "1F1E8-1F1E8", "j": ["keeling", "banner", "flag", "cocos", "islands", "nation", "country", "flag_cocos_islands"]}, "flag-congo--kinshasa": {"a": "flag: Congo - Kinshasa", "b": "1F1E8-1F1E9", "j": ["banner", "flag_congo_kinshasa", "republic", "democratic", "flag", "congo", "nation", "country"]}, "flag-central-african-republic": {"a": "flag: Central African Republic", "b": "1F1E8-1F1EB", "j": ["banner", "republic", "flag", "nation", "african", "country", "central"]}, "flag-congo--brazzaville": {"a": "flag: Congo - Brazzaville", "b": "1F1E8-1F1EC", "j": ["banner", "flag", "congo", "flag_congo_brazzaville", "country", "nation"]}, "flag-switzerland": {"a": "flag: Switzerland", "b": "1F1E8-1F1ED", "j": ["banner", "ch", "flag", "country", "nation"]}, "flag-cte-divoire": {"a": "flag: Côte d’Ivoire", "b": "1F1E8-1F1EE", "j": ["banner", "coast", "flag", "country", "nation", "flag_cote_d_ivoire", "ivory"]}, "flag-cook-islands": {"a": "flag: Cook Islands", "b": "1F1E8-1F1F0", "j": ["banner", "flag", "islands", "nation", "country", "cook"]}, "flag-chile": {"a": "flag: Chile", "b": "1F1E8-1F1F1", "j": ["flag", "banner", "nation", "country"]}, "flag-cameroon": {"a": "flag: Cameroon", "b": "1F1E8-1F1F2", "j": ["banner", "flag", "cm", "nation", "country"]}, "flag-china": {"a": "flag: China", "b": "1F1E8-1F1F3", "j": ["china", "banner", "flag", "prc", "country", "chinese", "nation"]}, "flag-colombia": {"a": "flag: Colombia", "b": "1F1E8-1F1F4", "j": ["banner", "co", "flag", "nation", "country"]}, "flag-clipperton-island": {"a": "flag: Clipperton Island", "b": "1F1E8-1F1F5", "j": ["flag"]}, "flag-costa-rica": {"a": "flag: Costa Rica", "b": "1F1E8-1F1F7", "j": ["banner", "flag", "nation", "rica", "costa", "country"]}, "flag-cuba": {"a": "flag: Cuba", "b": "1F1E8-1F1FA", "j": ["banner", "cu", "flag", "nation", "country"]}, "flag-cape-verde": {"a": "flag: Cape Verde", "b": "1F1E8-1F1FB", "j": ["banner", "flag", "cabo", "verde", "nation", "country"]}, "flag-curaao": {"a": "flag: Curaçao", "b": "1F1E8-1F1FC", "j": ["banner", "flag", "curaçao", "country", "flag_curacao", "nation"]}, "flag-christmas-island": {"a": "flag: Christmas Island", "b": "1F1E8-1F1FD", "j": ["banner", "flag", "nation", "country", "island", "christmas"]}, "flag-cyprus": {"a": "flag: Cyprus", "b": "1F1E8-1F1FE", "j": ["banner", "cy", "flag", "country", "nation"]}, "flag-czechia": {"a": "flag: Czechia", "b": "1F1E8-1F1FF", "j": ["cz", "banner", "flag", "nation", "country"]}, "flag-germany": {"a": "flag: Germany", "b": "1F1E9-1F1EA", "j": ["banner", "flag", "german", "country", "nation"]}, "flag-diego-garcia": {"a": "flag: Diego Garcia", "b": "1F1E9-1F1EC", "j": ["flag"]}, "flag-djibouti": {"a": "flag: Djibouti", "b": "1F1E9-1F1EF", "j": ["banner", "flag", "dj", "country", "nation"]}, "flag-denmark": {"a": "flag: Denmark", "b": "1F1E9-1F1F0", "j": ["banner", "flag", "dk", "country", "nation"]}, "flag-dominica": {"a": "flag: Dominica", "b": "1F1E9-1F1F2", "j": ["banner", "dm", "flag", "country", "nation"]}, "flag-dominican-republic": {"a": "flag: Dominican Republic", "b": "1F1E9-1F1F4", "j": ["banner", "republic", "flag", "dominican", "nation", "country"]}, "flag-algeria": {"a": "flag: Algeria", "b": "1F1E9-1F1FF", "j": ["banner", "flag", "dz", "country", "nation"]}, "flag-ceuta--melilla": {"a": "flag: Ceuta & Melilla", "b": "1F1EA-1F1E6", "j": ["flag_ceuta_melilla", "flag"]}, "flag-ecuador": {"a": "flag: Ecuador", "b": "1F1EA-1F1E8", "j": ["banner", "flag", "ec", "country", "nation"]}, "flag-estonia": {"a": "flag: Estonia", "b": "1F1EA-1F1EA", "j": ["ee", "banner", "flag", "nation", "country"]}, "flag-egypt": {"a": "flag: Egypt", "b": "1F1EA-1F1EC", "j": ["banner", "flag", "eg", "country", "nation"]}, "flag-western-sahara": {"a": "flag: Western Sahara", "b": "1F1EA-1F1ED", "j": ["banner", "flag", "sahara", "nation", "country", "western"]}, "flag-eritrea": {"a": "flag: Eritrea", "b": "1F1EA-1F1F7", "j": ["banner", "flag", "er", "country", "nation"]}, "flag-spain": {"a": "flag: Spain", "b": "1F1EA-1F1F8", "j": ["spain", "banner", "flag", "country", "nation"]}, "flag-ethiopia": {"a": "flag: Ethiopia", "b": "1F1EA-1F1F9", "j": ["banner", "flag", "et", "nation", "country"]}, "flag-european-union": {"a": "flag: European Union", "b": "1F1EA-1F1FA", "j": ["banner", "european", "flag", "union"]}, "flag-finland": {"a": "flag: Finland", "b": "1F1EB-1F1EE", "j": ["banner", "fi", "flag", "nation", "country"]}, "flag-fiji": {"a": "flag: Fiji", "b": "1F1EB-1F1EF", "j": ["banner", "fj", "flag", "country", "nation"]}, "flag-falkland-islands": {"a": "flag: Falkland Islands", "b": "1F1EB-1F1F0", "j": ["banner", "flag", "malvinas", "falkland", "islands", "nation", "country"]}, "flag-micronesia": {"a": "flag: Micronesia", "b": "1F1EB-1F1F2", "j": ["banner", "flag", "federated", "micronesia", "nation", "country", "states"]}, "flag-faroe-islands": {"a": "flag: Faroe Islands", "b": "1F1EB-1F1F4", "j": ["banner", "flag", "islands", "nation", "country", "faroe"]}, "flag-france": {"a": "flag: France", "b": "1F1EB-1F1F7", "j": ["banner", "flag", "french", "france", "nation", "country"]}, "flag-gabon": {"a": "flag: Gabon", "b": "1F1EC-1F1E6", "j": ["banner", "flag", "ga", "country", "nation"]}, "flag-united-kingdom": {"a": "flag: United Kingdom", "b": "1F1EC-1F1E7", "j": ["united", "banner", "UK", "england", "ireland", "flag", "british", "britain", "english", "northern", "great", "kingdom", "nation", "country", "union jack"]}, "flag-grenada": {"a": "flag: Grenada", "b": "1F1EC-1F1E9", "j": ["banner", "flag", "gd", "country", "nation"]}, "flag-georgia": {"a": "flag: Georgia", "b": "1F1EC-1F1EA", "j": ["banner", "flag", "ge", "country", "nation"]}, "flag-french-guiana": {"a": "flag: French Guiana", "b": "1F1EC-1F1EB", "j": ["banner", "flag", "french", "guiana", "nation", "country"]}, "flag-guernsey": {"a": "flag: Guernsey", "b": "1F1EC-1F1EC", "j": ["banner", "gg", "flag", "country", "nation"]}, "flag-ghana": {"a": "flag: Ghana", "b": "1F1EC-1F1ED", "j": ["banner", "flag", "country", "nation", "gh"]}, "flag-gibraltar": {"a": "flag: Gibraltar", "b": "1F1EC-1F1EE", "j": ["banner", "flag", "nation", "country", "gi"]}, "flag-greenland": {"a": "flag: Greenland", "b": "1F1EC-1F1F1", "j": ["banner", "flag", "country", "nation", "gl"]}, "flag-gambia": {"a": "flag: Gambia", "b": "1F1EC-1F1F2", "j": ["banner", "gm", "flag", "country", "nation"]}, "flag-guinea": {"a": "flag: Guinea", "b": "1F1EC-1F1F3", "j": ["banner", "flag", "gn", "country", "nation"]}, "flag-guadeloupe": {"a": "flag: Guadeloupe", "b": "1F1EC-1F1F5", "j": ["banner", "flag", "country", "gp", "nation"]}, "flag-equatorial-guinea": {"a": "flag: Equatorial Guinea", "b": "1F1EC-1F1F6", "j": ["banner", "flag", "gn", "equatorial", "nation", "country"]}, "flag-greece": {"a": "flag: Greece", "b": "1F1EC-1F1F7", "j": ["banner", "flag", "gr", "nation", "country"]}, "flag-south-georgia--south-sandwich-islands": {"a": "flag: South Georgia & South Sandwich Islands", "b": "1F1EC-1F1F8", "j": ["banner", "flag", "flag_south_georgia_south_sandwich_islands", "islands", "georgia", "nation", "country", "sandwich", "south"]}, "flag-guatemala": {"a": "flag: Guatemala", "b": "1F1EC-1F1F9", "j": ["banner", "flag", "gt", "country", "nation"]}, "flag-guam": {"a": "flag: Guam", "b": "1F1EC-1F1FA", "j": ["banner", "flag", "nation", "country", "gu"]}, "flag-guineabissau": {"a": "flag: Guinea-Bissau", "b": "1F1EC-1F1FC", "j": ["banner", "flag_guinea_bissau", "flag", "nation", "country", "bissau", "gw"]}, "flag-guyana": {"a": "flag: Guyana", "b": "1F1EC-1F1FE", "j": ["banner", "flag", "gy", "country", "nation"]}, "flag-hong-kong-sar-china": {"a": "flag: Hong Kong SAR China", "b": "1F1ED-1F1F0", "j": ["banner", "kong", "flag", "hong", "nation", "country"]}, "flag-heard--mcdonald-islands": {"a": "flag: Heard & McDonald Islands", "b": "1F1ED-1F1F2", "j": ["flag_heard_mcdonald_islands", "flag"]}, "flag-honduras": {"a": "flag: Honduras", "b": "1F1ED-1F1F3", "j": ["banner", "flag", "hn", "nation", "country"]}, "flag-croatia": {"a": "flag: Croatia", "b": "1F1ED-1F1F7", "j": ["banner", "flag", "country", "nation", "hr"]}, "flag-haiti": {"a": "flag: Haiti", "b": "1F1ED-1F1F9", "j": ["banner", "flag", "country", "nation", "ht"]}, "flag-hungary": {"a": "flag: Hungary", "b": "1F1ED-1F1FA", "j": ["banner", "flag", "hu", "country", "nation"]}, "flag-canary-islands": {"a": "flag: Canary Islands", "b": "1F1EE-1F1E8", "j": ["banner", "flag", "canary", "islands", "nation", "country"]}, "flag-indonesia": {"a": "flag: Indonesia", "b": "1F1EE-1F1E9", "j": ["flag", "banner", "nation", "country"]}, "flag-ireland": {"a": "flag: Ireland", "b": "1F1EE-1F1EA", "j": ["banner", "flag", "ie", "nation", "country"]}, "flag-israel": {"a": "flag: Israel", "b": "1F1EE-1F1F1", "j": ["banner", "flag", "il", "country", "nation"]}, "flag-isle-of-man": {"a": "flag: Isle of Man", "b": "1F1EE-1F1F2", "j": ["isle", "banner", "man", "flag", "nation", "country"]}, "flag-india": {"a": "flag: India", "b": "1F1EE-1F1F3", "j": ["banner", "flag", "in", "country", "nation"]}, "flag-british-indian-ocean-territory": {"a": "flag: British Indian Ocean Territory", "b": "1F1EE-1F1F4", "j": ["banner", "flag", "british", "ocean", "nation", "territory", "country", "indian"]}, "flag-iraq": {"a": "flag: Iraq", "b": "1F1EE-1F1F6", "j": ["banner", "iq", "flag", "nation", "country"]}, "flag-iran": {"a": "flag: Iran", "b": "1F1EE-1F1F7", "j": ["banner", "republic", "flag", "iran", "islamic", "nation", "country"]}, "flag-iceland": {"a": "flag: Iceland", "b": "1F1EE-1F1F8", "j": ["banner", "flag", "is", "country", "nation"]}, "flag-italy": {"a": "flag: Italy", "b": "1F1EE-1F1F9", "j": ["banner", "flag", "italy", "country", "nation"]}, "flag-jersey": {"a": "flag: Jersey", "b": "1F1EF-1F1EA", "j": ["je", "banner", "flag", "nation", "country"]}, "flag-jamaica": {"a": "flag: Jamaica", "b": "1F1EF-1F1F2", "j": ["banner", "flag", "nation", "country", "jm"]}, "flag-jordan": {"a": "flag: Jordan", "b": "1F1EF-1F1F4", "j": ["jo", "banner", "flag", "nation", "country"]}, "flag-japan": {"a": "flag: Japan", "b": "1F1EF-1F1F5", "j": ["banner", "flag", "japanese", "nation", "country"]}, "flag-kenya": {"a": "flag: Kenya", "b": "1F1F0-1F1EA", "j": ["banner", "flag", "country", "nation", "ke"]}, "flag-kyrgyzstan": {"a": "flag: Kyrgyzstan", "b": "1F1F0-1F1EC", "j": ["kg", "banner", "flag", "nation", "country"]}, "flag-cambodia": {"a": "flag: Cambodia", "b": "1F1F0-1F1ED", "j": ["banner", "flag", "kh", "nation", "country"]}, "flag-kiribati": {"a": "flag: Kiribati", "b": "1F1F0-1F1EE", "j": ["banner", "flag", "nation", "country", "ki"]}, "flag-comoros": {"a": "flag: Comoros", "b": "1F1F0-1F1F2", "j": ["banner", "flag", "km", "country", "nation"]}, "flag-st-kitts--nevis": {"a": "flag: St. Kitts & Nevis", "b": "1F1F0-1F1F3", "j": ["nevis", "banner", "kitts", "flag", "flag_st_kitts_nevis", "nation", "country", "saint"]}, "flag-north-korea": {"a": "flag: North Korea", "b": "1F1F0-1F1F5", "j": ["banner", "flag", "korea", "country", "nation", "north"]}, "flag-south-korea": {"a": "flag: South Korea", "b": "1F1F0-1F1F7", "j": ["banner", "flag", "korea", "nation", "country", "south"]}, "flag-kuwait": {"a": "flag: Kuwait", "b": "1F1F0-1F1FC", "j": ["banner", "flag", "kw", "nation", "country"]}, "flag-cayman-islands": {"a": "flag: Cayman Islands", "b": "1F1F0-1F1FE", "j": ["banner", "flag", "cayman", "islands", "nation", "country"]}, "flag-kazakhstan": {"a": "flag: Kazakhstan", "b": "1F1F0-1F1FF", "j": ["kz", "banner", "flag", "nation", "country"]}, "flag-laos": {"a": "flag: Laos", "b": "1F1F1-1F1E6", "j": ["banner", "republic", "flag", "democratic", "nation", "country", "lao"]}, "flag-lebanon": {"a": "flag: Lebanon", "b": "1F1F1-1F1E7", "j": ["banner", "flag", "lb", "country", "nation"]}, "flag-st-lucia": {"a": "flag: St. Lucia", "b": "1F1F1-1F1E8", "j": ["banner", "flag", "lucia", "nation", "country", "saint"]}, "flag-liechtenstein": {"a": "flag: Liechtenstein", "b": "1F1F1-1F1EE", "j": ["banner", "flag", "country", "nation", "li"]}, "flag-sri-lanka": {"a": "flag: Sri Lanka", "b": "1F1F1-1F1F0", "j": ["lanka", "banner", "flag", "nation", "country", "sri"]}, "flag-liberia": {"a": "flag: Liberia", "b": "1F1F1-1F1F7", "j": ["banner", "flag", "lr", "country", "nation"]}, "flag-lesotho": {"a": "flag: Lesotho", "b": "1F1F1-1F1F8", "j": ["banner", "flag", "country", "nation", "ls"]}, "flag-lithuania": {"a": "flag: Lithuania", "b": "1F1F1-1F1F9", "j": ["banner", "flag", "lt", "country", "nation"]}, "flag-luxembourg": {"a": "flag: Luxembourg", "b": "1F1F1-1F1FA", "j": ["banner", "flag", "country", "nation", "lu"]}, "flag-latvia": {"a": "flag: Latvia", "b": "1F1F1-1F1FB", "j": ["lv", "banner", "flag", "nation", "country"]}, "flag-libya": {"a": "flag: Libya", "b": "1F1F1-1F1FE", "j": ["banner", "ly", "flag", "country", "nation"]}, "flag-morocco": {"a": "flag: Morocco", "b": "1F1F2-1F1E6", "j": ["banner", "ma", "flag", "country", "nation"]}, "flag-monaco": {"a": "flag: Monaco", "b": "1F1F2-1F1E8", "j": ["banner", "flag", "mc", "nation", "country"]}, "flag-moldova": {"a": "flag: Moldova", "b": "1F1F2-1F1E9", "j": ["banner", "republic", "flag", "country", "nation", "moldova"]}, "flag-montenegro": {"a": "flag: Montenegro", "b": "1F1F2-1F1EA", "j": ["banner", "flag", "me", "country", "nation"]}, "flag-st-martin": {"a": "flag: St. Martin", "b": "1F1F2-1F1EB", "j": ["flag"]}, "flag-madagascar": {"a": "flag: Madagascar", "b": "1F1F2-1F1EC", "j": ["banner", "flag", "country", "nation", "mg"]}, "flag-marshall-islands": {"a": "flag: Marshall Islands", "b": "1F1F2-1F1ED", "j": ["banner", "flag", "islands", "nation", "country", "marshall"]}, "flag-north-macedonia": {"a": "flag: North Macedonia", "b": "1F1F2-1F1F0", "j": ["banner", "flag", "macedonia", "country", "nation"]}, "flag-mali": {"a": "flag: Mali", "b": "1F1F2-1F1F1", "j": ["banner", "flag", "country", "ml", "nation"]}, "flag-myanmar-burma": {"a": "flag: Myanmar (Burma)", "b": "1F1F2-1F1F2", "j": ["banner", "flag", "flag_myanmar", "mm", "country", "nation"]}, "flag-mongolia": {"a": "flag: Mongolia", "b": "1F1F2-1F1F3", "j": ["banner", "flag", "mn", "country", "nation"]}, "flag-macao-sar-china": {"a": "flag: Macao SAR China", "b": "1F1F2-1F1F4", "j": ["banner", "flag", "country", "macao", "nation"]}, "flag-northern-mariana-islands": {"a": "flag: Northern Mariana Islands", "b": "1F1F2-1F1F5", "j": ["banner", "flag", "northern", "islands", "nation", "country", "mariana"]}, "flag-martinique": {"a": "flag: Martinique", "b": "1F1F2-1F1F6", "j": ["banner", "flag", "country", "nation", "mq"]}, "flag-mauritania": {"a": "flag: Mauritania", "b": "1F1F2-1F1F7", "j": ["banner", "mr", "flag", "country", "nation"]}, "flag-montserrat": {"a": "flag: Montserrat", "b": "1F1F2-1F1F8", "j": ["banner", "flag", "ms", "country", "nation"]}, "flag-malta": {"a": "flag: Malta", "b": "1F1F2-1F1F9", "j": ["banner", "mt", "flag", "country", "nation"]}, "flag-mauritius": {"a": "flag: Mauritius", "b": "1F1F2-1F1FA", "j": ["banner", "flag", "country", "nation", "mu"]}, "flag-maldives": {"a": "flag: Maldives", "b": "1F1F2-1F1FB", "j": ["banner", "mv", "flag", "country", "nation"]}, "flag-malawi": {"a": "flag: Malawi", "b": "1F1F2-1F1FC", "j": ["banner", "flag", "country", "nation", "mw"]}, "flag-mexico": {"a": "flag: Mexico", "b": "1F1F2-1F1FD", "j": ["banner", "flag", "mx", "nation", "country"]}, "flag-malaysia": {"a": "flag: Malaysia", "b": "1F1F2-1F1FE", "j": ["banner", "flag", "my", "country", "nation"]}, "flag-mozambique": {"a": "flag: Mozambique", "b": "1F1F2-1F1FF", "j": ["banner", "flag", "country", "nation", "mz"]}, "flag-namibia": {"a": "flag: Namibia", "b": "1F1F3-1F1E6", "j": ["banner", "flag", "nation", "country", "na"]}, "flag-new-caledonia": {"a": "flag: New Caledonia", "b": "1F1F3-1F1E8", "j": ["banner", "flag", "new", "nation", "country", "caledonia"]}, "flag-niger": {"a": "flag: Niger", "b": "1F1F3-1F1EA", "j": ["banner", "flag", "ne", "nation", "country"]}, "flag-norfolk-island": {"a": "flag: Norfolk Island", "b": "1F1F3-1F1EB", "j": ["banner", "flag", "nation", "country", "norfolk", "island"]}, "flag-nigeria": {"a": "flag: Nigeria", "b": "1F1F3-1F1EC", "j": ["flag", "banner", "nation", "country"]}, "flag-nicaragua": {"a": "flag: Nicaragua", "b": "1F1F3-1F1EE", "j": ["banner", "flag", "ni", "country", "nation"]}, "flag-netherlands": {"a": "flag: Netherlands", "b": "1F1F3-1F1F1", "j": ["banner", "flag", "nl", "country", "nation"]}, "flag-norway": {"a": "flag: Norway", "b": "1F1F3-1F1F4", "j": ["banner", "flag", "no", "country", "nation"]}, "flag-nepal": {"a": "flag: Nepal", "b": "1F1F3-1F1F5", "j": ["banner", "flag", "country", "nation", "np"]}, "flag-nauru": {"a": "flag: Nauru", "b": "1F1F3-1F1F7", "j": ["banner", "nr", "flag", "nation", "country"]}, "flag-niue": {"a": "flag: Niue", "b": "1F1F3-1F1FA", "j": ["banner", "flag", "nu", "country", "nation"]}, "flag-new-zealand": {"a": "flag: New Zealand", "b": "1F1F3-1F1FF", "j": ["banner", "flag", "zealand", "nation", "country", "new"]}, "flag-oman": {"a": "flag: Oman", "b": "1F1F4-1F1F2", "j": ["banner", "flag", "nation", "country", "om_symbol"]}, "flag-panama": {"a": "flag: Panama", "b": "1F1F5-1F1E6", "j": ["banner", "flag", "pa", "country", "nation"]}, "flag-peru": {"a": "flag: Peru", "b": "1F1F5-1F1EA", "j": ["banner", "flag", "country", "nation", "pe"]}, "flag-french-polynesia": {"a": "flag: French Polynesia", "b": "1F1F5-1F1EB", "j": ["banner", "flag", "french", "polynesia", "nation", "country"]}, "flag-papua-new-guinea": {"a": "flag: Papua New Guinea", "b": "1F1F5-1F1EC", "j": ["banner", "flag", "papua", "nation", "country", "new", "guinea"]}, "flag-philippines": {"a": "flag: Philippines", "b": "1F1F5-1F1ED", "j": ["banner", "flag", "ph", "country", "nation"]}, "flag-pakistan": {"a": "flag: Pakistan", "b": "1F1F5-1F1F0", "j": ["banner", "flag", "pk", "country", "nation"]}, "flag-poland": {"a": "flag: Poland", "b": "1F1F5-1F1F1", "j": ["banner", "pl", "flag", "country", "nation"]}, "flag-st-pierre--miquelon": {"a": "flag: St. Pierre & Miquelon", "b": "1F1F5-1F1F2", "j": ["banner", "flag", "flag_st_pierre_miquelon", "miquelon", "nation", "country", "saint", "pierre"]}, "flag-pitcairn-islands": {"a": "flag: Pitcairn Islands", "b": "1F1F5-1F1F3", "j": ["banner", "flag", "nation", "country", "pitcairn"]}, "flag-puerto-rico": {"a": "flag: Puerto Rico", "b": "1F1F5-1F1F7", "j": ["banner", "puerto", "flag", "nation", "country", "rico"]}, "flag-palestinian-territories": {"a": "flag: Palestinian Territories", "b": "1F1F5-1F1F8", "j": ["banner", "flag", "palestinian", "territories", "nation", "country", "palestine"]}, "flag-portugal": {"a": "flag: Portugal", "b": "1F1F5-1F1F9", "j": ["banner", "flag", "country", "nation", "pt"]}, "flag-palau": {"a": "flag: Palau", "b": "1F1F5-1F1FC", "j": ["banner", "flag", "country", "nation", "pw"]}, "flag-paraguay": {"a": "flag: Paraguay", "b": "1F1F5-1F1FE", "j": ["banner", "flag", "py", "nation", "country"]}, "flag-qatar": {"a": "flag: Qatar", "b": "1F1F6-1F1E6", "j": ["banner", "flag", "country", "nation", "qa"]}, "flag-runion": {"a": "flag: Réunion", "b": "1F1F7-1F1EA", "j": ["banner", "flag", "réunion", "country", "nation", "flag_reunion"]}, "flag-romania": {"a": "flag: Romania", "b": "1F1F7-1F1F4", "j": ["banner", "flag", "nation", "country", "ro"]}, "flag-serbia": {"a": "flag: Serbia", "b": "1F1F7-1F1F8", "j": ["banner", "flag", "rs", "country", "nation"]}, "flag-russia": {"a": "flag: Russia", "b": "1F1F7-1F1FA", "j": ["banner", "russian", "flag", "federation", "nation", "country"]}, "flag-rwanda": {"a": "flag: Rwanda", "b": "1F1F7-1F1FC", "j": ["banner", "flag", "country", "nation", "rw"]}, "flag-saudi-arabia": {"a": "flag: Saudi Arabia", "b": "1F1F8-1F1E6", "j": ["flag", "banner", "nation", "country"]}, "flag-solomon-islands": {"a": "flag: Solomon Islands", "b": "1F1F8-1F1E7", "j": ["banner", "flag", "islands", "nation", "country", "solomon"]}, "flag-seychelles": {"a": "flag: Seychelles", "b": "1F1F8-1F1E8", "j": ["banner", "flag", "sc", "nation", "country"]}, "flag-sudan": {"a": "flag: Sudan", "b": "1F1F8-1F1E9", "j": ["banner", "sd", "flag", "country", "nation"]}, "flag-sweden": {"a": "flag: Sweden", "b": "1F1F8-1F1EA", "j": ["banner", "flag", "se", "country", "nation"]}, "flag-singapore": {"a": "flag: Singapore", "b": "1F1F8-1F1EC", "j": ["banner", "flag", "country", "nation", "sg"]}, "flag-st-helena": {"a": "flag: St. Helena", "b": "1F1F8-1F1ED", "j": ["banner", "flag", "cunha", "ascension", "helena", "nation", "country", "saint", "tristan"]}, "flag-slovenia": {"a": "flag: Slovenia", "b": "1F1F8-1F1EE", "j": ["banner", "flag", "nation", "si", "country"]}, "flag-svalbard--jan-mayen": {"a": "flag: Svalbard & Jan Mayen", "b": "1F1F8-1F1EF", "j": ["flag_svalbard_jan_mayen", "flag"]}, "flag-slovakia": {"a": "flag: Slovakia", "b": "1F1F8-1F1F0", "j": ["sk", "banner", "flag", "nation", "country"]}, "flag-sierra-leone": {"a": "flag: Sierra Leone", "b": "1F1F8-1F1F1", "j": ["banner", "flag", "sierra", "leone", "nation", "country"]}, "flag-san-marino": {"a": "flag: San Marino", "b": "1F1F8-1F1F2", "j": ["banner", "flag", "san", "nation", "country", "marino"]}, "flag-senegal": {"a": "flag: Senegal", "b": "1F1F8-1F1F3", "j": ["banner", "flag", "nation", "sn", "country"]}, "flag-somalia": {"a": "flag: Somalia", "b": "1F1F8-1F1F4", "j": ["banner", "so", "flag", "country", "nation"]}, "flag-suriname": {"a": "flag: Suriname", "b": "1F1F8-1F1F7", "j": ["banner", "flag", "sr", "country", "nation"]}, "flag-south-sudan": {"a": "flag: South Sudan", "b": "1F1F8-1F1F8", "j": ["banner", "sd", "flag", "nation", "country", "south"]}, "flag-so-tom--prncipe": {"a": "flag: São Tomé & Príncipe", "b": "1F1F8-1F1F9", "j": ["tome", "sao", "banner", "flag", "principe", "nation", "flag_sao_tome_principe", "country"]}, "flag-el-salvador": {"a": "flag: El Salvador", "b": "1F1F8-1F1FB", "j": ["banner", "flag", "nation", "country", "salvador", "el"]}, "flag-sint-maarten": {"a": "flag: Sint Maarten", "b": "1F1F8-1F1FD", "j": ["banner", "flag", "maarten", "dutch", "sint", "nation", "country"]}, "flag-syria": {"a": "flag: Syria", "b": "1F1F8-1F1FE", "j": ["banner", "republic", "flag", "syrian", "arab", "nation", "country"]}, "flag-eswatini": {"a": "flag: Eswatini", "b": "1F1F8-1F1FF", "j": ["banner", "flag", "sz", "country", "nation"]}, "flag-tristan-da-cunha": {"a": "flag: Tristan da Cunha", "b": "1F1F9-1F1E6", "j": ["flag"]}, "flag-turks--caicos-islands": {"a": "flag: Turks & Caicos Islands", "b": "1F1F9-1F1E8", "j": ["banner", "caicos", "flag", "islands", "nation", "country", "turks", "flag_turks_caicos_islands"]}, "flag-chad": {"a": "flag: Chad", "b": "1F1F9-1F1E9", "j": ["banner", "td", "flag", "country", "nation"]}, "flag-french-southern-territories": {"a": "flag: French Southern Territories", "b": "1F1F9-1F1EB", "j": ["banner", "flag", "french", "southern", "territories", "nation", "country"]}, "flag-togo": {"a": "flag: Togo", "b": "1F1F9-1F1EC", "j": ["banner", "flag", "tg", "country", "nation"]}, "flag-thailand": {"a": "flag: Thailand", "b": "1F1F9-1F1ED", "j": ["banner", "flag", "country", "nation", "th"]}, "flag-tajikistan": {"a": "flag: Tajikistan", "b": "1F1F9-1F1EF", "j": ["banner", "flag", "tj", "country", "nation"]}, "flag-tokelau": {"a": "flag: Tokelau", "b": "1F1F9-1F1F0", "j": ["tk", "banner", "flag", "country", "nation"]}, "flag-timorleste": {"a": "flag: Timor-Leste", "b": "1F1F9-1F1F1", "j": ["leste", "banner", "timor", "flag", "nation", "country", "flag_timor_leste"]}, "flag-turkmenistan": {"a": "flag: Turkmenistan", "b": "1F1F9-1F1F2", "j": ["flag", "banner", "country", "nation"]}, "flag-tunisia": {"a": "flag: Tunisia", "b": "1F1F9-1F1F3", "j": ["banner", "flag", "country", "nation", "tn"]}, "flag-tonga": {"a": "flag: Tonga", "b": "1F1F9-1F1F4", "j": ["banner", "flag", "country", "nation", "to"]}, "flag-turkey": {"a": "flag: Turkey", "b": "1F1F9-1F1F7", "j": ["banner", "flag", "nation", "turkey", "country"]}, "flag-trinidad--tobago": {"a": "flag: Trinidad & Tobago", "b": "1F1F9-1F1F9", "j": ["banner", "flag_trinidad_tobago", "flag", "trinidad", "nation", "country", "tobago"]}, "flag-tuvalu": {"a": "flag: Tuvalu", "b": "1F1F9-1F1FB", "j": ["flag", "banner", "nation", "country"]}, "flag-taiwan": {"a": "flag: Taiwan", "b": "1F1F9-1F1FC", "j": ["banner", "flag", "country", "nation", "tw"]}, "flag-tanzania": {"a": "flag: Tanzania", "b": "1F1F9-1F1FF", "j": ["united", "banner", "republic", "flag", "nation", "country", "tanzania"]}, "flag-ukraine": {"a": "flag: Ukraine", "b": "1F1FA-1F1E6", "j": ["banner", "flag", "ua", "country", "nation"]}, "flag-uganda": {"a": "flag: Uganda", "b": "1F1FA-1F1EC", "j": ["banner", "flag", "ug", "country", "nation"]}, "flag-us-outlying-islands": {"a": "flag: U.S. Outlying Islands", "b": "1F1FA-1F1F2", "j": ["flag_u_s_outlying_islands", "flag"]}, "flag-united-nations": {"a": "flag: United Nations", "b": "1F1FA-1F1F3", "j": ["banner", "un", "flag"]}, "flag-united-states": {"a": "flag: United States", "b": "1F1FA-1F1F8", "j": ["united", "banner", "flag", "america", "nation", "country", "states"]}, "flag-uruguay": {"a": "flag: Uruguay", "b": "1F1FA-1F1FE", "j": ["banner", "flag", "uy", "country", "nation"]}, "flag-uzbekistan": {"a": "flag: Uzbekistan", "b": "1F1FA-1F1FF", "j": ["banner", "uz", "flag", "country", "nation"]}, "flag-vatican-city": {"a": "flag: Vatican City", "b": "1F1FB-1F1E6", "j": ["banner", "flag", "vatican", "city", "nation", "country"]}, "flag-st-vincent--grenadines": {"a": "flag: St. Vincent & Grenadines", "b": "1F1FB-1F1E8", "j": ["banner", "flag", "flag_st_vincent_grenadines", "grenadines", "nation", "country", "vincent", "saint"]}, "flag-venezuela": {"a": "flag: Venezuela", "b": "1F1FB-1F1EA", "j": ["banner", "republic", "flag", "bolivarian", "ve", "nation", "country"]}, "flag-british-virgin-islands": {"a": "flag: British Virgin Islands", "b": "1F1FB-1F1EC", "j": ["banner", "virgin", "bvi", "flag", "british", "islands", "nation", "country"]}, "flag-us-virgin-islands": {"a": "flag: U.S. Virgin Islands", "b": "1F1FB-1F1EE", "j": ["banner", "virgin", "flag", "us", "islands", "nation", "country", "flag_u_s_virgin_islands"]}, "flag-vietnam": {"a": "flag: Vietnam", "b": "1F1FB-1F1F3", "j": ["banner", "flag", "nation", "nam", "country", "viet"]}, "flag-vanuatu": {"a": "flag: Vanuatu", "b": "1F1FB-1F1FA", "j": ["banner", "flag", "vu", "country", "nation"]}, "flag-wallis--futuna": {"a": "flag: Wallis & Futuna", "b": "1F1FC-1F1EB", "j": ["banner", "flag_wallis_futuna", "flag", "wallis", "nation", "country", "futuna"]}, "flag-samoa": {"a": "flag: Samoa", "b": "1F1FC-1F1F8", "j": ["banner", "flag", "ws", "nation", "country"]}, "flag-kosovo": {"a": "flag: Kosovo", "b": "1F1FD-1F1F0", "j": ["banner", "flag", "country", "nation", "xk"]}, "flag-yemen": {"a": "flag: Yemen", "b": "1F1FE-1F1EA", "j": ["banner", "flag", "nation", "ye", "country"]}, "flag-mayotte": {"a": "flag: Mayotte", "b": "1F1FE-1F1F9", "j": ["banner", "flag", "yt", "country", "nation"]}, "flag-south-africa": {"a": "flag: South Africa", "b": "1F1FF-1F1E6", "j": ["banner", "africa", "flag", "nation", "country", "south"]}, "flag-zambia": {"a": "flag: Zambia", "b": "1F1FF-1F1F2", "j": ["banner", "flag", "zm", "country", "nation"]}, "flag-zimbabwe": {"a": "flag: Zimbabwe", "b": "1F1FF-1F1FC", "j": ["banner", "flag", "zw", "country", "nation"]}, "flag-england": {"a": "flag: England", "b": "1F3F4-E0067-E0062-E0065-E006E-E0067-E007F", "j": ["english", "flag"]}, "flag-scotland": {"a": "flag: Scotland", "b": "1F3F4-E0067-E0062-E0073-E0063-E0074-E007F", "j": ["scottish", "flag"]}, "flag-wales": {"a": "flag: Wales", "b": "1F3F4-E0067-E0062-E0077-E006C-E0073-E007F", "j": ["welsh", "flag"]}}, "aliases": {}} \ No newline at end of file +{"compressed":true,"categories":[{"id":"smileys_&_emotion","name":"Smileys & Emotion","emojis":["grinning-face","grinning-face-with-big-eyes","grinning-face-with-smiling-eyes","beaming-face-with-smiling-eyes","grinning-squinting-face","grinning-face-with-sweat","rolling-on-the-floor-laughing","face-with-tears-of-joy","slightly-smiling-face","upsidedown-face","winking-face","smiling-face-with-smiling-eyes","smiling-face-with-halo","smiling-face-with-hearts","smiling-face-with-hearteyes","starstruck","face-blowing-a-kiss","kissing-face","smiling-face","kissing-face-with-closed-eyes","kissing-face-with-smiling-eyes","smiling-face-with-tear","face-savoring-food","face-with-tongue","winking-face-with-tongue","zany-face","squinting-face-with-tongue","moneymouth-face","hugging-face","face-with-hand-over-mouth","shushing-face","thinking-face","zippermouth-face","face-with-raised-eyebrow","neutral-face","expressionless-face","face-without-mouth","face-in-clouds","smirking-face","unamused-face","face-with-rolling-eyes","grimacing-face","face-exhaling","lying-face","relieved-face","pensive-face","sleepy-face","drooling-face","sleeping-face","face-with-medical-mask","face-with-thermometer","face-with-headbandage","nauseated-face","face-vomiting","sneezing-face","hot-face","cold-face","woozy-face","knockedout-face","face-with-spiral-eyes","exploding-head","cowboy-hat-face","partying-face","disguised-face","smiling-face-with-sunglasses","nerd-face","face-with-monocle","confused-face","worried-face","slightly-frowning-face","frowning-face","face-with-open-mouth","hushed-face","astonished-face","flushed-face","pleading-face","frowning-face-with-open-mouth","anguished-face","fearful-face","anxious-face-with-sweat","sad-but-relieved-face","crying-face","loudly-crying-face","face-screaming-in-fear","confounded-face","persevering-face","disappointed-face","downcast-face-with-sweat","weary-face","tired-face","yawning-face","face-with-steam-from-nose","pouting-face","angry-face","face-with-symbols-on-mouth","smiling-face-with-horns","angry-face-with-horns","skull","skull-and-crossbones","pile-of-poo","clown-face","ogre","goblin","ghost","alien","alien-monster","robot","grinning-cat","grinning-cat-with-smiling-eyes","cat-with-tears-of-joy","smiling-cat-with-hearteyes","cat-with-wry-smile","kissing-cat","weary-cat","crying-cat","pouting-cat","seenoevil-monkey","hearnoevil-monkey","speaknoevil-monkey","kiss-mark","love-letter","heart-with-arrow","heart-with-ribbon","sparkling-heart","growing-heart","beating-heart","revolving-hearts","two-hearts","heart-decoration","heart-exclamation","broken-heart","heart-on-fire","mending-heart","red-heart","orange-heart","yellow-heart","green-heart","blue-heart","purple-heart","brown-heart","black-heart","white-heart","hundred-points","anger-symbol","collision","dizzy","sweat-droplets","dashing-away","hole","bomb","speech-balloon","eye-in-speech-bubble","left-speech-bubble","right-anger-bubble","thought-balloon","zzz"]},{"id":"people_&_body","name":"People & Body","emojis":["waving-hand","raised-back-of-hand","hand-with-fingers-splayed","raised-hand","vulcan-salute","ok-hand","pinched-fingers","pinching-hand","victory-hand","crossed-fingers","loveyou-gesture","sign-of-the-horns","call-me-hand","backhand-index-pointing-left","backhand-index-pointing-right","backhand-index-pointing-up","middle-finger","backhand-index-pointing-down","index-pointing-up","thumbs-up","thumbs-down","raised-fist","oncoming-fist","leftfacing-fist","rightfacing-fist","clapping-hands","raising-hands","open-hands","palms-up-together","handshake","folded-hands","writing-hand","nail-polish","selfie","flexed-biceps","mechanical-arm","mechanical-leg","leg","foot","ear","ear-with-hearing-aid","nose","brain","anatomical-heart","lungs","tooth","bone","eyes","eye","tongue","mouth","baby","child","boy","girl","person","person-blond-hair","man","person-beard","man-beard","woman-beard","man-red-hair","man-curly-hair","man-white-hair","man-bald","woman","woman-red-hair","person-red-hair","woman-curly-hair","person-curly-hair","woman-white-hair","person-white-hair","woman-bald","person-bald","woman-blond-hair","man-blond-hair","older-person","old-man","old-woman","person-frowning","man-frowning","woman-frowning","person-pouting","man-pouting","woman-pouting","person-gesturing-no","man-gesturing-no","woman-gesturing-no","person-gesturing-ok","man-gesturing-ok","woman-gesturing-ok","person-tipping-hand","man-tipping-hand","woman-tipping-hand","person-raising-hand","man-raising-hand","woman-raising-hand","deaf-person","deaf-man","deaf-woman","person-bowing","man-bowing","woman-bowing","person-facepalming","man-facepalming","woman-facepalming","person-shrugging","man-shrugging","woman-shrugging","health-worker","man-health-worker","woman-health-worker","student","man-student","woman-student","teacher","man-teacher","woman-teacher","judge","man-judge","woman-judge","farmer","man-farmer","woman-farmer","cook","man-cook","woman-cook","mechanic","man-mechanic","woman-mechanic","factory-worker","man-factory-worker","woman-factory-worker","office-worker","man-office-worker","woman-office-worker","scientist","man-scientist","woman-scientist","technologist","man-technologist","woman-technologist","singer","man-singer","woman-singer","artist","man-artist","woman-artist","pilot","man-pilot","woman-pilot","astronaut","man-astronaut","woman-astronaut","firefighter","man-firefighter","woman-firefighter","police-officer","man-police-officer","woman-police-officer","detective","man-detective","woman-detective","guard","man-guard","woman-guard","ninja","construction-worker","man-construction-worker","woman-construction-worker","prince","princess","person-wearing-turban","man-wearing-turban","woman-wearing-turban","person-with-skullcap","woman-with-headscarf","person-in-tuxedo","man-in-tuxedo","woman-in-tuxedo","person-with-veil","man-with-veil","woman-with-veil","pregnant-woman","breastfeeding","woman-feeding-baby","man-feeding-baby","person-feeding-baby","baby-angel","santa-claus","mrs-claus","mx-claus","superhero","man-superhero","woman-superhero","supervillain","man-supervillain","woman-supervillain","mage","man-mage","woman-mage","fairy","man-fairy","woman-fairy","vampire","man-vampire","woman-vampire","merperson","merman","mermaid","elf","man-elf","woman-elf","genie","man-genie","woman-genie","zombie","man-zombie","woman-zombie","person-getting-massage","man-getting-massage","woman-getting-massage","person-getting-haircut","man-getting-haircut","woman-getting-haircut","person-walking","man-walking","woman-walking","person-standing","man-standing","woman-standing","person-kneeling","man-kneeling","woman-kneeling","person-with-white-cane","man-with-white-cane","woman-with-white-cane","person-in-motorized-wheelchair","man-in-motorized-wheelchair","woman-in-motorized-wheelchair","person-in-manual-wheelchair","man-in-manual-wheelchair","woman-in-manual-wheelchair","person-running","man-running","woman-running","woman-dancing","man-dancing","person-in-suit-levitating","people-with-bunny-ears","men-with-bunny-ears","women-with-bunny-ears","person-in-steamy-room","man-in-steamy-room","woman-in-steamy-room","person-climbing","man-climbing","woman-climbing","person-fencing","horse-racing","skier","snowboarder","person-golfing","man-golfing","woman-golfing","person-surfing","man-surfing","woman-surfing","person-rowing-boat","man-rowing-boat","woman-rowing-boat","person-swimming","man-swimming","woman-swimming","person-bouncing-ball","man-bouncing-ball","woman-bouncing-ball","person-lifting-weights","man-lifting-weights","woman-lifting-weights","person-biking","man-biking","woman-biking","person-mountain-biking","man-mountain-biking","woman-mountain-biking","person-cartwheeling","man-cartwheeling","woman-cartwheeling","people-wrestling","men-wrestling","women-wrestling","person-playing-water-polo","man-playing-water-polo","woman-playing-water-polo","person-playing-handball","man-playing-handball","woman-playing-handball","person-juggling","man-juggling","woman-juggling","person-in-lotus-position","man-in-lotus-position","woman-in-lotus-position","person-taking-bath","person-in-bed","people-holding-hands","women-holding-hands","woman-and-man-holding-hands","men-holding-hands","kiss","kiss-woman-man","kiss-man-man","kiss-woman-woman","couple-with-heart","couple-with-heart-woman-man","couple-with-heart-man-man","couple-with-heart-woman-woman","family","family-man-woman-boy","family-man-woman-girl","family-man-woman-girl-boy","family-man-woman-boy-boy","family-man-woman-girl-girl","family-man-man-boy","family-man-man-girl","family-man-man-girl-boy","family-man-man-boy-boy","family-man-man-girl-girl","family-woman-woman-boy","family-woman-woman-girl","family-woman-woman-girl-boy","family-woman-woman-boy-boy","family-woman-woman-girl-girl","family-man-boy","family-man-boy-boy","family-man-girl","family-man-girl-boy","family-man-girl-girl","family-woman-boy","family-woman-boy-boy","family-woman-girl","family-woman-girl-boy","family-woman-girl-girl","speaking-head","bust-in-silhouette","busts-in-silhouette","people-hugging","footprints"]},{"id":"animals_&_nature","name":"Animals & Nature","emojis":["monkey-face","monkey","gorilla","orangutan","dog-face","dog","guide-dog","service-dog","poodle","wolf","fox","raccoon","cat-face","cat","black-cat","lion","tiger-face","tiger","leopard","horse-face","horse","unicorn","zebra","deer","bison","cow-face","ox","water-buffalo","cow","pig-face","pig","boar","pig-nose","ram","ewe","goat","camel","twohump-camel","llama","giraffe","elephant","mammoth","rhinoceros","hippopotamus","mouse-face","mouse","rat","hamster","rabbit-face","rabbit","chipmunk","beaver","hedgehog","bat","bear","polar-bear","koala","panda","sloth","otter","skunk","kangaroo","badger","paw-prints","turkey","chicken","rooster","hatching-chick","baby-chick","frontfacing-baby-chick","bird","penguin","dove","eagle","duck","swan","owl","dodo","feather","flamingo","peacock","parrot","frog","crocodile","turtle","lizard","snake","dragon-face","dragon","sauropod","trex","spouting-whale","whale","dolphin","seal","fish","tropical-fish","blowfish","shark","octopus","spiral-shell","snail","butterfly","bug","ant","honeybee","beetle","lady-beetle","cricket","cockroach","spider","spider-web","scorpion","mosquito","fly","worm","microbe","bouquet","cherry-blossom","white-flower","rosette","rose","wilted-flower","hibiscus","sunflower","blossom","tulip","seedling","potted-plant","evergreen-tree","deciduous-tree","palm-tree","cactus","sheaf-of-rice","herb","shamrock","four-leaf-clover","maple-leaf","fallen-leaf","leaf-fluttering-in-wind"]},{"id":"food_&_drink","name":"Food & Drink","emojis":["grapes","melon","watermelon","tangerine","lemon","banana","pineapple","mango","red-apple","green-apple","pear","peach","cherries","strawberry","blueberries","kiwi-fruit","tomato","olive","coconut","avocado","eggplant","potato","carrot","ear-of-corn","hot-pepper","bell-pepper","cucumber","leafy-green","broccoli","garlic","onion","mushroom","peanuts","chestnut","bread","croissant","baguette-bread","flatbread","pretzel","bagel","pancakes","waffle","cheese-wedge","meat-on-bone","poultry-leg","cut-of-meat","bacon","hamburger","french-fries","pizza","hot-dog","sandwich","taco","burrito","tamale","stuffed-flatbread","falafel","egg","cooking","shallow-pan-of-food","pot-of-food","fondue","bowl-with-spoon","green-salad","popcorn","butter","salt","canned-food","bento-box","rice-cracker","rice-ball","cooked-rice","curry-rice","steaming-bowl","spaghetti","roasted-sweet-potato","oden","sushi","fried-shrimp","fish-cake-with-swirl","moon-cake","dango","dumpling","fortune-cookie","takeout-box","crab","lobster","shrimp","squid","oyster","soft-ice-cream","shaved-ice","ice-cream","doughnut","cookie","birthday-cake","shortcake","cupcake","pie","chocolate-bar","candy","lollipop","custard","honey-pot","baby-bottle","glass-of-milk","hot-beverage","teapot","teacup-without-handle","sake","bottle-with-popping-cork","wine-glass","cocktail-glass","tropical-drink","beer-mug","clinking-beer-mugs","clinking-glasses","tumbler-glass","cup-with-straw","bubble-tea","beverage-box","mate","ice","chopsticks","fork-and-knife-with-plate","fork-and-knife","spoon","kitchen-knife","amphora"]},{"id":"travel_&_places","name":"Travel & Places","emojis":["globe-showing-europeafrica","globe-showing-americas","globe-showing-asiaaustralia","globe-with-meridians","world-map","map-of-japan","compass","snowcapped-mountain","mountain","volcano","mount-fuji","camping","beach-with-umbrella","desert","desert-island","national-park","stadium","classical-building","building-construction","brick","rock","wood","hut","houses","derelict-house","house","house-with-garden","office-building","japanese-post-office","post-office","hospital","bank","hotel","love-hotel","convenience-store","school","department-store","factory","japanese-castle","castle","wedding","tokyo-tower","statue-of-liberty","church","mosque","hindu-temple","synagogue","shinto-shrine","kaaba","fountain","tent","foggy","night-with-stars","cityscape","sunrise-over-mountains","sunrise","cityscape-at-dusk","sunset","bridge-at-night","hot-springs","carousel-horse","ferris-wheel","roller-coaster","barber-pole","circus-tent","locomotive","railway-car","highspeed-train","bullet-train","train","metro","light-rail","station","tram","monorail","mountain-railway","tram-car","bus","oncoming-bus","trolleybus","minibus","ambulance","fire-engine","police-car","oncoming-police-car","taxi","oncoming-taxi","automobile","oncoming-automobile","sport-utility-vehicle","pickup-truck","delivery-truck","articulated-lorry","tractor","racing-car","motorcycle","motor-scooter","manual-wheelchair","motorized-wheelchair","auto-rickshaw","bicycle","kick-scooter","skateboard","roller-skate","bus-stop","motorway","railway-track","oil-drum","fuel-pump","police-car-light","horizontal-traffic-light","vertical-traffic-light","stop-sign","construction","anchor","sailboat","canoe","speedboat","passenger-ship","ferry","motor-boat","ship","airplane","small-airplane","airplane-departure","airplane-arrival","parachute","seat","helicopter","suspension-railway","mountain-cableway","aerial-tramway","satellite","rocket","flying-saucer","bellhop-bell","luggage","hourglass-done","hourglass-not-done","watch","alarm-clock","stopwatch","timer-clock","mantelpiece-clock","twelve-oclock","twelvethirty","one-oclock","onethirty","two-oclock","twothirty","three-oclock","threethirty","four-oclock","fourthirty","five-oclock","fivethirty","six-oclock","sixthirty","seven-oclock","seventhirty","eight-oclock","eightthirty","nine-oclock","ninethirty","ten-oclock","tenthirty","eleven-oclock","eleventhirty","new-moon","waxing-crescent-moon","first-quarter-moon","waxing-gibbous-moon","full-moon","waning-gibbous-moon","last-quarter-moon","waning-crescent-moon","crescent-moon","new-moon-face","first-quarter-moon-face","last-quarter-moon-face","thermometer","sun","full-moon-face","sun-with-face","ringed-planet","star","glowing-star","shooting-star","milky-way","cloud","sun-behind-cloud","cloud-with-lightning-and-rain","sun-behind-small-cloud","sun-behind-large-cloud","sun-behind-rain-cloud","cloud-with-rain","cloud-with-snow","cloud-with-lightning","tornado","fog","wind-face","cyclone","rainbow","closed-umbrella","umbrella","umbrella-with-rain-drops","umbrella-on-ground","high-voltage","snowflake","snowman","snowman-without-snow","comet","fire","droplet","water-wave"]},{"id":"activities","name":"Activities","emojis":["jackolantern","christmas-tree","fireworks","sparkler","firecracker","sparkles","balloon","party-popper","confetti-ball","tanabata-tree","pine-decoration","japanese-dolls","carp-streamer","wind-chime","moon-viewing-ceremony","red-envelope","ribbon","wrapped-gift","reminder-ribbon","admission-tickets","ticket","military-medal","trophy","sports-medal","1st-place-medal","2nd-place-medal","3rd-place-medal","soccer-ball","baseball","softball","basketball","volleyball","american-football","rugby-football","tennis","flying-disc","bowling","cricket-game","field-hockey","ice-hockey","lacrosse","ping-pong","badminton","boxing-glove","martial-arts-uniform","goal-net","flag-in-hole","ice-skate","fishing-pole","diving-mask","running-shirt","skis","sled","curling-stone","bullseye","yoyo","kite","pool-8-ball","crystal-ball","magic-wand","nazar-amulet","video-game","joystick","slot-machine","game-die","puzzle-piece","teddy-bear","piata","nesting-dolls","spade-suit","heart-suit","diamond-suit","club-suit","chess-pawn","joker","mahjong-red-dragon","flower-playing-cards","performing-arts","framed-picture","artist-palette","thread","sewing-needle","yarn","knot"]},{"id":"objects","name":"Objects","emojis":["glasses","sunglasses","goggles","lab-coat","safety-vest","necktie","tshirt","jeans","scarf","gloves","coat","socks","dress","kimono","sari","onepiece-swimsuit","briefs","shorts","bikini","womans-clothes","purse","handbag","clutch-bag","shopping-bags","backpack","thong-sandal","mans-shoe","running-shoe","hiking-boot","flat-shoe","highheeled-shoe","womans-sandal","ballet-shoes","womans-boot","crown","womans-hat","top-hat","graduation-cap","billed-cap","military-helmet","rescue-workers-helmet","prayer-beads","lipstick","ring","gem-stone","muted-speaker","speaker-low-volume","speaker-medium-volume","speaker-high-volume","loudspeaker","megaphone","postal-horn","bell","bell-with-slash","musical-score","musical-note","musical-notes","studio-microphone","level-slider","control-knobs","microphone","headphone","radio","saxophone","accordion","guitar","musical-keyboard","trumpet","violin","banjo","drum","long-drum","mobile-phone","mobile-phone-with-arrow","telephone","telephone-receiver","pager","fax-machine","battery","electric-plug","laptop","desktop-computer","printer","keyboard","computer-mouse","trackball","computer-disk","floppy-disk","optical-disk","dvd","abacus","movie-camera","film-frames","film-projector","clapper-board","television","camera","camera-with-flash","video-camera","videocassette","magnifying-glass-tilted-left","magnifying-glass-tilted-right","candle","light-bulb","flashlight","red-paper-lantern","diya-lamp","notebook-with-decorative-cover","closed-book","open-book","green-book","blue-book","orange-book","books","notebook","ledger","page-with-curl","scroll","page-facing-up","newspaper","rolledup-newspaper","bookmark-tabs","bookmark","label","money-bag","coin","yen-banknote","dollar-banknote","euro-banknote","pound-banknote","money-with-wings","credit-card","receipt","chart-increasing-with-yen","envelope","email","incoming-envelope","envelope-with-arrow","outbox-tray","inbox-tray","package","closed-mailbox-with-raised-flag","closed-mailbox-with-lowered-flag","open-mailbox-with-raised-flag","open-mailbox-with-lowered-flag","postbox","ballot-box-with-ballot","pencil","black-nib","fountain-pen","pen","paintbrush","crayon","memo","briefcase","file-folder","open-file-folder","card-index-dividers","calendar","tearoff-calendar","spiral-notepad","spiral-calendar","card-index","chart-increasing","chart-decreasing","bar-chart","clipboard","pushpin","round-pushpin","paperclip","linked-paperclips","straight-ruler","triangular-ruler","scissors","card-file-box","file-cabinet","wastebasket","locked","unlocked","locked-with-pen","locked-with-key","key","old-key","hammer","axe","pick","hammer-and-pick","hammer-and-wrench","dagger","crossed-swords","water-pistol","boomerang","bow-and-arrow","shield","carpentry-saw","wrench","screwdriver","nut-and-bolt","gear","clamp","balance-scale","white-cane","link","chains","hook","toolbox","magnet","ladder","alembic","test-tube","petri-dish","dna","microscope","telescope","satellite-antenna","syringe","drop-of-blood","pill","adhesive-bandage","stethoscope","door","elevator","mirror","window","bed","couch-and-lamp","chair","toilet","plunger","shower","bathtub","mouse-trap","razor","lotion-bottle","safety-pin","broom","basket","roll-of-paper","bucket","soap","toothbrush","sponge","fire-extinguisher","shopping-cart","cigarette","coffin","headstone","funeral-urn","moai","placard"]},{"id":"symbols","name":"Symbols","emojis":["atm-sign","litter-in-bin-sign","potable-water","wheelchair-symbol","mens-room","womens-room","restroom","baby-symbol","water-closet","passport-control","customs","baggage-claim","left-luggage","warning","children-crossing","no-entry","prohibited","no-bicycles","no-smoking","no-littering","nonpotable-water","no-pedestrians","no-mobile-phones","no-one-under-eighteen","radioactive","biohazard","up-arrow","upright-arrow","right-arrow","downright-arrow","down-arrow","downleft-arrow","left-arrow","upleft-arrow","updown-arrow","leftright-arrow","right-arrow-curving-left","left-arrow-curving-right","right-arrow-curving-up","right-arrow-curving-down","clockwise-vertical-arrows","counterclockwise-arrows-button","back-arrow","end-arrow","on-arrow","soon-arrow","top-arrow","place-of-worship","atom-symbol","om","star-of-david","wheel-of-dharma","yin-yang","latin-cross","orthodox-cross","star-and-crescent","peace-symbol","menorah","dotted-sixpointed-star","aries","taurus","gemini","cancer","leo","virgo","libra","scorpio","sagittarius","capricorn","aquarius","pisces","ophiuchus","shuffle-tracks-button","repeat-button","repeat-single-button","play-button","fastforward-button","next-track-button","play-or-pause-button","reverse-button","fast-reverse-button","last-track-button","upwards-button","fast-up-button","downwards-button","fast-down-button","pause-button","stop-button","record-button","eject-button","cinema","dim-button","bright-button","antenna-bars","vibration-mode","mobile-phone-off","female-sign","male-sign","transgender-symbol","multiply","plus","minus","divide","infinity","double-exclamation-mark","exclamation-question-mark","red-question-mark","white-question-mark","white-exclamation-mark","red-exclamation-mark","wavy-dash","currency-exchange","heavy-dollar-sign","medical-symbol","recycling-symbol","fleurdelis","trident-emblem","name-badge","japanese-symbol-for-beginner","hollow-red-circle","check-mark-button","check-box-with-check","check-mark","cross-mark","cross-mark-button","curly-loop","double-curly-loop","part-alternation-mark","eightspoked-asterisk","eightpointed-star","sparkle","copyright","registered","trade-mark","keycap","keycap","keycap-0","keycap-1","keycap-2","keycap-3","keycap-4","keycap-5","keycap-6","keycap-7","keycap-8","keycap-9","keycap-10","input-latin-uppercase","input-latin-lowercase","input-numbers","input-symbols","input-latin-letters","a-button-blood-type","ab-button-blood-type","b-button-blood-type","cl-button","cool-button","free-button","information","id-button","circled-m","new-button","ng-button","o-button-blood-type","ok-button","p-button","sos-button","up-button","vs-button","japanese-here-button","japanese-service-charge-button","japanese-monthly-amount-button","japanese-not-free-of-charge-button","japanese-reserved-button","japanese-bargain-button","japanese-discount-button","japanese-free-of-charge-button","japanese-prohibited-button","japanese-acceptable-button","japanese-application-button","japanese-passing-grade-button","japanese-vacancy-button","japanese-congratulations-button","japanese-secret-button","japanese-open-for-business-button","japanese-no-vacancy-button","red-circle","orange-circle","yellow-circle","green-circle","blue-circle","purple-circle","brown-circle","black-circle","white-circle","red-square","orange-square","yellow-square","green-square","blue-square","purple-square","brown-square","black-large-square","white-large-square","black-medium-square","white-medium-square","black-mediumsmall-square","white-mediumsmall-square","black-small-square","white-small-square","large-orange-diamond","large-blue-diamond","small-orange-diamond","small-blue-diamond","red-triangle-pointed-up","red-triangle-pointed-down","diamond-with-a-dot","radio-button","white-square-button","black-square-button"]},{"id":"flags","name":"Flags","emojis":["chequered-flag","triangular-flag","crossed-flags","black-flag","white-flag","rainbow-flag","transgender-flag","pirate-flag","flag-ascension-island","flag-andorra","flag-united-arab-emirates","flag-afghanistan","flag-antigua--barbuda","flag-anguilla","flag-albania","flag-armenia","flag-angola","flag-antarctica","flag-argentina","flag-american-samoa","flag-austria","flag-australia","flag-aruba","flag-land-islands","flag-azerbaijan","flag-bosnia--herzegovina","flag-barbados","flag-bangladesh","flag-belgium","flag-burkina-faso","flag-bulgaria","flag-bahrain","flag-burundi","flag-benin","flag-st-barthlemy","flag-bermuda","flag-brunei","flag-bolivia","flag-caribbean-netherlands","flag-brazil","flag-bahamas","flag-bhutan","flag-bouvet-island","flag-botswana","flag-belarus","flag-belize","flag-canada","flag-cocos-keeling-islands","flag-congo--kinshasa","flag-central-african-republic","flag-congo--brazzaville","flag-switzerland","flag-cte-divoire","flag-cook-islands","flag-chile","flag-cameroon","flag-china","flag-colombia","flag-clipperton-island","flag-costa-rica","flag-cuba","flag-cape-verde","flag-curaao","flag-christmas-island","flag-cyprus","flag-czechia","flag-germany","flag-diego-garcia","flag-djibouti","flag-denmark","flag-dominica","flag-dominican-republic","flag-algeria","flag-ceuta--melilla","flag-ecuador","flag-estonia","flag-egypt","flag-western-sahara","flag-eritrea","flag-spain","flag-ethiopia","flag-european-union","flag-finland","flag-fiji","flag-falkland-islands","flag-micronesia","flag-faroe-islands","flag-france","flag-gabon","flag-united-kingdom","flag-grenada","flag-georgia","flag-french-guiana","flag-guernsey","flag-ghana","flag-gibraltar","flag-greenland","flag-gambia","flag-guinea","flag-guadeloupe","flag-equatorial-guinea","flag-greece","flag-south-georgia--south-sandwich-islands","flag-guatemala","flag-guam","flag-guineabissau","flag-guyana","flag-hong-kong-sar-china","flag-heard--mcdonald-islands","flag-honduras","flag-croatia","flag-haiti","flag-hungary","flag-canary-islands","flag-indonesia","flag-ireland","flag-israel","flag-isle-of-man","flag-india","flag-british-indian-ocean-territory","flag-iraq","flag-iran","flag-iceland","flag-italy","flag-jersey","flag-jamaica","flag-jordan","flag-japan","flag-kenya","flag-kyrgyzstan","flag-cambodia","flag-kiribati","flag-comoros","flag-st-kitts--nevis","flag-north-korea","flag-south-korea","flag-kuwait","flag-cayman-islands","flag-kazakhstan","flag-laos","flag-lebanon","flag-st-lucia","flag-liechtenstein","flag-sri-lanka","flag-liberia","flag-lesotho","flag-lithuania","flag-luxembourg","flag-latvia","flag-libya","flag-morocco","flag-monaco","flag-moldova","flag-montenegro","flag-st-martin","flag-madagascar","flag-marshall-islands","flag-north-macedonia","flag-mali","flag-myanmar-burma","flag-mongolia","flag-macao-sar-china","flag-northern-mariana-islands","flag-martinique","flag-mauritania","flag-montserrat","flag-malta","flag-mauritius","flag-maldives","flag-malawi","flag-mexico","flag-malaysia","flag-mozambique","flag-namibia","flag-new-caledonia","flag-niger","flag-norfolk-island","flag-nigeria","flag-nicaragua","flag-netherlands","flag-norway","flag-nepal","flag-nauru","flag-niue","flag-new-zealand","flag-oman","flag-panama","flag-peru","flag-french-polynesia","flag-papua-new-guinea","flag-philippines","flag-pakistan","flag-poland","flag-st-pierre--miquelon","flag-pitcairn-islands","flag-puerto-rico","flag-palestinian-territories","flag-portugal","flag-palau","flag-paraguay","flag-qatar","flag-runion","flag-romania","flag-serbia","flag-russia","flag-rwanda","flag-saudi-arabia","flag-solomon-islands","flag-seychelles","flag-sudan","flag-sweden","flag-singapore","flag-st-helena","flag-slovenia","flag-svalbard--jan-mayen","flag-slovakia","flag-sierra-leone","flag-san-marino","flag-senegal","flag-somalia","flag-suriname","flag-south-sudan","flag-so-tom--prncipe","flag-el-salvador","flag-sint-maarten","flag-syria","flag-eswatini","flag-tristan-da-cunha","flag-turks--caicos-islands","flag-chad","flag-french-southern-territories","flag-togo","flag-thailand","flag-tajikistan","flag-tokelau","flag-timorleste","flag-turkmenistan","flag-tunisia","flag-tonga","flag-turkey","flag-trinidad--tobago","flag-tuvalu","flag-taiwan","flag-tanzania","flag-ukraine","flag-uganda","flag-us-outlying-islands","flag-united-nations","flag-united-states","flag-uruguay","flag-uzbekistan","flag-vatican-city","flag-st-vincent--grenadines","flag-venezuela","flag-british-virgin-islands","flag-us-virgin-islands","flag-vietnam","flag-vanuatu","flag-wallis--futuna","flag-samoa","flag-kosovo","flag-yemen","flag-mayotte","flag-south-africa","flag-zambia","flag-zimbabwe","flag-england","flag-scotland","flag-wales"]}],"emojis":{"grinning-face":{"a":"Grinning Face","b":"1F600","j":["grin","joy",":D","smile","happy","face"]},"grinning-face-with-big-eyes":{"a":"Grinning Face with Big Eyes","b":"1F603","j":["mouth","open","joy",":)",":D","funny","smile","happy","face","haha"]},"grinning-face-with-smiling-eyes":{"a":"Grinning Face with Smiling Eyes","b":"1F604","j":["mouth","open","eye","joy",":)","like",":D","funny","smile","happy","laugh","face","haha"]},"beaming-face-with-smiling-eyes":{"a":"Beaming Face with Smiling Eyes","b":"1F601","j":["grin","joy","eye","smile","kawaii","happy","face"]},"grinning-squinting-face":{"a":"Grinning Squinting Face","b":"1F606","j":["mouth","lol","joy","glad","XD","haha","smile","happy","laugh","face","satisfied"]},"grinning-face-with-sweat":{"a":"Grinning Face with Sweat","b":"1F605","j":["relief","open","sweat","hot","smile","cold","happy","laugh","face"]},"rolling-on-the-floor-laughing":{"a":"Rolling on the Floor Laughing","b":"1F923","j":["floor","lol","rolling","rotfl","rofl","laughing","laugh","face","haha"]},"face-with-tears-of-joy":{"a":"Face with Tears of Joy","b":"1F602","j":["tears","weep","tear","cry","joy","happytears","happy","laugh","face","haha"]},"slightly-smiling-face":{"a":"Slightly Smiling Face","b":"1F642","j":["smile","face"]},"upsidedown-face":{"a":"Upside-Down Face","b":"1F643","j":["upside_down_face","flipped","upside-down","smile","face","silly"]},"winking-face":{"a":"Winking Face","b":"1F609","j":["mischievous",";)","wink","eye","smile","secret","happy","face"]},"smiling-face-with-smiling-eyes":{"a":"Smiling Face with Smiling Eyes","b":"1F60A","j":["blush","eye","joy","smile","embarrassed","shy","crush","happy","flushed","face"]},"smiling-face-with-halo":{"a":"Smiling Face with Halo","b":"1F607","j":["halo","fantasy","innocent","angel","face","heaven"]},"smiling-face-with-hearts":{"a":"Smiling Face with Hearts","b":"1F970","j":["infatuation","hearts","love","like","valentines","affection","in love","crush","adore","face"]},"smiling-face-with-hearteyes":{"a":"Smiling Face with Heart-Eyes","b":"1F60D","j":["heart","smiling face with heart-eyes","eye","love","infatuation","like","affection","smile","valentines","smiling_face_with_heart_eyes","crush","face"]},"starstruck":{"a":"Star-Struck","b":"1F929","j":["starry-eyed","eyes","star_struck","grinning","smile","star-struck","starry","face","star"]},"face-blowing-a-kiss":{"a":"Face Blowing a Kiss","b":"1F618","j":["infatuation","love","kiss","like","valentines","affection","face"]},"kissing-face":{"a":"Kissing Face","b":"1F617","j":["3","infatuation","kiss","love","like","valentines","face"]},"smiling-face":{"a":"Smiling Face","b":"263A","j":["massage","outlined","blush","smile","happiness","relaxed","face"]},"kissing-face-with-closed-eyes":{"a":"Kissing Face with Closed Eyes","b":"1F61A","j":["closed","infatuation","eye","kiss","love","like","valentines","affection","face"]},"kissing-face-with-smiling-eyes":{"a":"Kissing Face with Smiling Eyes","b":"1F619","j":["infatuation","eye","kiss","valentines","smile","affection","face"]},"smiling-face-with-tear":{"a":"Smiling Face with Tear","b":"1F972","j":["touched","sad","grateful","tear","relieved","cry","smiling","proud","pretend"]},"face-savoring-food":{"a":"Face Savoring Food","b":"1F60B","j":["joy","nom","tongue","savouring","smile","delicious","yummy","yum","happy","face","silly"]},"face-with-tongue":{"a":"Face with Tongue","b":"1F61B","j":["prank","mischievous","playful","childish","tongue","smile","face"]},"winking-face-with-tongue":{"a":"Winking Face with Tongue","b":"1F61C","j":["prank","mischievous","playful","childish","wink","eye","tongue","smile","joke","face"]},"zany-face":{"a":"Zany Face","b":"1F92A","j":["eye","small","large","crazy","goofy","face"]},"squinting-face-with-tongue":{"a":"Squinting Face with Tongue","b":"1F61D","j":["prank","mischievous","taste","playful","eye","tongue","horrible","smile","face"]},"moneymouth-face":{"a":"Money-Mouth Face","b":"1F911","j":["mouth","dollar","money-mouth face","money","rich","face","money_mouth_face"]},"hugging-face":{"a":"Hugging Face","b":"1F917","j":["hugging","smile","hug","face"]},"face-with-hand-over-mouth":{"a":"Face with Hand over Mouth","b":"1F92D","j":["surprise","whoops","shock","face","sudden realization"]},"shushing-face":{"a":"Shushing Face","b":"1F92B","j":["shhh","shush","quiet","face"]},"thinking-face":{"a":"Thinking Face","b":"1F914","j":["consider","face","thinking","think","hmmm"]},"zippermouth-face":{"a":"Zipper-Mouth Face","b":"1F910","j":["zipper-mouth face","mouth","sealed","zipper_mouth_face","zipper","secret","face"]},"face-with-raised-eyebrow":{"a":"Face with Raised Eyebrow","b":"1F928","j":["disbelief","surprise","mild surprise","scepticism","disapproval","distrust","face","skeptic"]},"neutral-face":{"a":"Neutral Face","b":"1F610","j":["deadpan",":|","neutral","meh","face","indifference"]},"expressionless-face":{"a":"Expressionless Face","b":"1F611","j":["unexpressive","expressionless","-_-","deadpan","indifferent","meh","face","inexpressive"]},"face-without-mouth":{"a":"Face Without Mouth","b":"1F636","j":["mouth","silent","hellokitty","quiet","face"]},"face-in-clouds":{"a":"⊛ Face in Clouds","b":"1F636-200D-1F32B-FE0F","j":["absentminded","face in clouds","face in the fog","head in clouds"]},"smirking-face":{"a":"Smirking Face","b":"1F60F","j":["prank","smug","mean","sarcasm","smirk","smile","face"]},"unamused-face":{"a":"Unamused Face","b":"1F612","j":["unhappy","straight face","bored","side_eye","skeptical","dubious","sarcasm","unamused","serious","unimpressed","face","indifference"]},"face-with-rolling-eyes":{"a":"Face with Rolling Eyes","b":"1F644","j":["eyeroll","frustrated","rolling","eyes","face"]},"grimacing-face":{"a":"Grimacing Face","b":"1F62C","j":["teeth","grimace","face"]},"face-exhaling":{"a":"⊛ Face Exhaling","b":"1F62E-200D-1F4A8","j":["exhale","face exhaling","gasp","groan","relief","whisper","whistle"]},"lying-face":{"a":"Lying Face","b":"1F925","j":["lie","face","pinocchio"]},"relieved-face":{"a":"Relieved Face","b":"1F60C","j":["massage","relieved","phew","happiness","relaxed","face"]},"pensive-face":{"a":"Pensive Face","b":"1F614","j":["dejected","sad","pensive","depressed","upset","face"]},"sleepy-face":{"a":"Sleepy Face","b":"1F62A","j":["tired","rest","nap","face","sleep"]},"drooling-face":{"a":"Drooling Face","b":"1F924","j":["face","drooling"]},"sleeping-face":{"a":"Sleeping Face","b":"1F634","j":["night","sleepy","zzz","tired","face","sleep"]},"face-with-medical-mask":{"a":"Face with Medical Mask","b":"1F637","j":["sick","doctor","ill","disease","mask","cold","face"]},"face-with-thermometer":{"a":"Face with Thermometer","b":"1F912","j":["sick","thermometer","temperature","fever","ill","cold","face"]},"face-with-headbandage":{"a":"Face with Head-Bandage","b":"1F915","j":["face_with_head_bandage","injured","injury","clumsy","face with head-bandage","bandage","face","hurt"]},"nauseated-face":{"a":"Nauseated Face","b":"1F922","j":["sick","throw up","nauseated","ill","green","vomit","gross","face"]},"face-vomiting":{"a":"Face Vomiting","b":"1F92E","j":["puke","vomit","face","sick"]},"sneezing-face":{"a":"Sneezing Face","b":"1F927","j":["sick","allergy","sneeze","gesundheit","face"]},"hot-face":{"a":"Hot Face","b":"1F975","j":["red","hot","heat","feverish","heat stroke","sweating","face","red-faced"]},"cold-face":{"a":"Cold Face","b":"1F976","j":["icicles","freezing","frozen","blue-faced","frostbite","cold","face","blue"]},"woozy-face":{"a":"Woozy Face","b":"1F974","j":["dizzy","face","wavy mouth","tipsy","wavy","uneven eyes","intoxicated"]},"knockedout-face":{"a":"Knocked-out Face","b":"1F635","j":["knocked-out face","dizzy_face","dizzy","knocked out","xox","spent","unconscious","face","dead"]},"face-with-spiral-eyes":{"a":"⊛ Face with Spiral Eyes","b":"1F635-200D-1F4AB","j":["dizzy","face with spiral eyes","hypnotized","spiral","trouble","whoa"]},"exploding-head":{"a":"Exploding Head","b":"1F92F","j":["shocked","mind","blown","mind blown","face"]},"cowboy-hat-face":{"a":"Cowboy Hat Face","b":"1F920","j":["cowboy","cowgirl","face","hat"]},"partying-face":{"a":"Partying Face","b":"1F973","j":["hat","celebration","horn","woohoo","face","party"]},"disguised-face":{"a":"Disguised Face","b":"1F978","j":["brows","glasses","incognito","moustache","disguise","nose","face","pretent"]},"smiling-face-with-sunglasses":{"a":"Smiling Face with Sunglasses","b":"1F60E","j":["cool","sunglass","sun","smile","bright","beach","summer","sunglasses","face"]},"nerd-face":{"a":"Nerd Face","b":"1F913","j":["nerdy","dork","nerd","geek","face"]},"face-with-monocle":{"a":"Face with Monocle","b":"1F9D0","j":["wealthy","stuffy","face"]},"confused-face":{"a":"Confused Face","b":"1F615","j":[":/","face","meh","confused","huh","hmmm","weird","indifference"]},"worried-face":{"a":"Worried Face","b":"1F61F","j":[":(","worried","nervous","concern","face"]},"slightly-frowning-face":{"a":"Slightly Frowning Face","b":"1F641","j":["sad","frowning","frown","disappointed","upset","face"]},"frowning-face":{"a":"Frowning Face","b":"2639","j":["sad","upset","face","frown"]},"face-with-open-mouth":{"a":"Face with Open Mouth","b":"1F62E","j":["surprise","mouth","wow","whoa","open","sympathy","impressed",":O","face"]},"hushed-face":{"a":"Hushed Face","b":"1F62F","j":["shh","woo","surprised","hushed","stunned","face"]},"astonished-face":{"a":"Astonished Face","b":"1F632","j":["shocked","poisoned","totally","surprised","astonished","xox","face"]},"flushed-face":{"a":"Flushed Face","b":"1F633","j":["blush","flattered","shy","dazed","flushed","face"]},"pleading-face":{"a":"Pleading Face","b":"1F97A","j":["begging","mercy","face","puppy eyes"]},"frowning-face-with-open-mouth":{"a":"Frowning Face with Open Mouth","b":"1F626","j":["mouth","aw","what","open","frown","face"]},"anguished-face":{"a":"Anguished Face","b":"1F627","j":["stunned","anguished","face","nervous"]},"fearful-face":{"a":"Fearful Face","b":"1F628","j":["fearful","terrified","oops","scared","fear","nervous","huh","face"]},"anxious-face-with-sweat":{"a":"Anxious Face with Sweat","b":"1F630","j":["sweat","nervous","cold","rushed","face","blue"]},"sad-but-relieved-face":{"a":"Sad but Relieved Face","b":"1F625","j":["whew","relieved","sweat","phew","disappointed","nervous","face"]},"crying-face":{"a":"Crying Face","b":"1F622","j":["sad","tears","tear",":'(","cry","depressed","upset","face"]},"loudly-crying-face":{"a":"Loudly Crying Face","b":"1F62D","j":["sad","tears","tear","cry","depressed","sob","upset","face"]},"face-screaming-in-fear":{"a":"Face Screaming in Fear","b":"1F631","j":["munch","scared","scream","omg","fear","face"]},"confounded-face":{"a":"Confounded Face","b":"1F616","j":["unwell","sick","confounded","oops",":S","confused","face"]},"persevering-face":{"a":"Persevering Face","b":"1F623","j":["sick","no","oops","upset","face","persevere"]},"disappointed-face":{"a":"Disappointed Face","b":"1F61E","j":["sad","depressed","disappointed",":(","upset","face"]},"downcast-face-with-sweat":{"a":"Downcast Face with Sweat","b":"1F613","j":["sad","exercise","sweat","hot","tired","cold","face"]},"weary-face":{"a":"Weary Face","b":"1F629","j":["sad","weary","sleepy","frustrated","tired","upset","face"]},"tired-face":{"a":"Tired Face","b":"1F62B","j":["sick","frustrated","tired","upset","whine","face"]},"yawning-face":{"a":"Yawning Face","b":"1F971","j":["","bored","yawn","tired","sleepy"]},"face-with-steam-from-nose":{"a":"Face with Steam From Nose","b":"1F624","j":["gas","won","pride","phew","proud","face","triumph"]},"pouting-face":{"a":"Pouting Face","b":"1F621","j":["despise","red","mad","hate","angry","pouting","face","rage"]},"angry-face":{"a":"Angry Face","b":"1F620","j":["annoyed","mad","frustrated","angry","anger","face"]},"face-with-symbols-on-mouth":{"a":"Face with Symbols on Mouth","b":"1F92C","j":["swearing","profanity","cursing","expletive","cussing","face"]},"smiling-face-with-horns":{"a":"Smiling Face with Horns","b":"1F608","j":["devil","horns","fairy tale","fantasy","smile","face"]},"angry-face-with-horns":{"a":"Angry Face with Horns","b":"1F47F","j":["demon","imp","devil","horns","fantasy","angry","face"]},"skull":{"a":"Skull","b":"1F480","j":["monster","skeleton","fairy tale","creepy","death","face","dead"]},"skull-and-crossbones":{"a":"Skull and Crossbones","b":"2620","j":["monster","scary","poison","skull","crossbones","deadly","evil","danger","death","face","pirate"]},"pile-of-poo":{"a":"Pile of Poo","b":"1F4A9","j":["monster","poop","dung","shitface","hankey","poo","shit","turd","face","fail"]},"clown-face":{"a":"Clown Face","b":"1F921","j":["face","clown"]},"ogre":{"a":"Ogre","b":"1F479","j":["monster","demon","devil","red","fairy tale","fantasy","troll","halloween","creepy","creature","mask","japanese","scary","face"]},"goblin":{"a":"Goblin","b":"1F47A","j":["monster","red","fairy tale","fantasy","creature","creepy","mask","japanese","scary","evil","face"]},"ghost":{"a":"Ghost","b":"1F47B","j":["monster","fairy tale","fantasy","halloween","spooky","creature","scary","face"]},"alien":{"a":"Alien","b":"1F47D","j":["paul","ufo","outer_space","UFO","extraterrestrial","fantasy","creature","face","weird"]},"alien-monster":{"a":"Alien Monster","b":"1F47E","j":["monster","ufo","arcade","alien","extraterrestrial","creature","game","face","play"]},"robot":{"a":"Robot","b":"1F916","j":["monster","machine","bot","computer","face"]},"grinning-cat":{"a":"Grinning Cat","b":"1F63A","j":["mouth","open","animal","grinning","smile","cats","happy","cat","face"]},"grinning-cat-with-smiling-eyes":{"a":"Grinning Cat with Smiling Eyes","b":"1F638","j":["grin","animal","eye","cats","smile","cat","face"]},"cat-with-tears-of-joy":{"a":"Cat with Tears of Joy","b":"1F639","j":["tears","tear","joy","animal","cats","happy","cat","face","haha"]},"smiling-cat-with-hearteyes":{"a":"Smiling Cat with Heart-Eyes","b":"1F63B","j":["heart","smiling cat with heart-eyes","smiling_cat_with_heart_eyes","eye","love","animal","like","affection","smile","cats","valentines","cat","face"]},"cat-with-wry-smile":{"a":"Cat with Wry Smile","b":"1F63C","j":["animal","ironic","smirk","smile","cats","wry","cat","face"]},"kissing-cat":{"a":"Kissing Cat","b":"1F63D","j":["animal","kiss","eye","cats","cat","face"]},"weary-cat":{"a":"Weary Cat","b":"1F640","j":["weary","cat","animal","munch","scared","surprised","scream","cats","oh","face"]},"crying-cat":{"a":"Crying Cat","b":"1F63F","j":["sad","tears","tear","weep","cry","animal","cats","upset","cat","face"]},"pouting-cat":{"a":"Pouting Cat","b":"1F63E","j":["animal","cats","pouting","cat","face"]},"seenoevil-monkey":{"a":"See-No-Evil Monkey","b":"1F648","j":["animal","see","see-no-evil monkey","face","see_no_evil_monkey","nature","forbidden","evil","monkey","haha"]},"hearnoevil-monkey":{"a":"Hear-No-Evil Monkey","b":"1F649","j":["hear-no-evil monkey","hear","monkey","animal","hear_no_evil_monkey","nature","forbidden","evil","face"]},"speaknoevil-monkey":{"a":"Speak-No-Evil Monkey","b":"1F64A","j":["speak","speak-no-evil monkey","animal","face","omg","speak_no_evil_monkey","nature","forbidden","evil","monkey"]},"kiss-mark":{"a":"Kiss Mark","b":"1F48B","j":["lips","love","kiss","like","valentines","affection","face"]},"love-letter":{"a":"Love Letter","b":"1F48C","j":["heart","letter","envelope","email","love","like","valentines","mail","affection"]},"heart-with-arrow":{"a":"Heart with Arrow","b":"1F498","j":["cupid","heart","arrow","love","like","valentines","affection"]},"heart-with-ribbon":{"a":"Heart with Ribbon","b":"1F49D","j":["ribbon","love","valentines","valentine"]},"sparkling-heart":{"a":"Sparkling Heart","b":"1F496","j":["sparkle","love","like","valentines","excited","affection"]},"growing-heart":{"a":"Growing Heart","b":"1F497","j":["pink","pulse","growing","love","like","valentines","nervous","excited","affection"]},"beating-heart":{"a":"Beating Heart","b":"1F493","j":["heartbeat","pink","heart","love","like","valentines","beating","affection","pulsating"]},"revolving-hearts":{"a":"Revolving Hearts","b":"1F49E","j":["love","like","valentines","revolving","affection"]},"two-hearts":{"a":"Two Hearts","b":"1F495","j":["heart","love","like","valentines","affection"]},"heart-decoration":{"a":"Heart Decoration","b":"1F49F","j":["purple-square","heart","love","like"]},"heart-exclamation":{"a":"Heart Exclamation","b":"2763","j":["exclamation","decoration","punctuation","love","mark"]},"broken-heart":{"a":"Broken Heart","b":"1F494","j":["sad","heart","heartbreak","break","sorry","broken"]},"heart-on-fire":{"a":"⊛ Heart on Fire","b":"2764-FE0F-200D-1F525","j":["burn","heart","heart on fire","love","lust","sacred heart"]},"mending-heart":{"a":"⊛ Mending Heart","b":"2764-FE0F-200D-1FA79","j":["healthier","improving","mending","mending heart","recovering","recuperating","well"]},"red-heart":{"a":"Red Heart","b":"2764","j":["heart","love","valentines","like"]},"orange-heart":{"a":"Orange Heart","b":"1F9E1","j":["love","like","orange","valentines","affection"]},"yellow-heart":{"a":"Yellow Heart","b":"1F49B","j":["yellow","love","like","valentines","affection"]},"green-heart":{"a":"Green Heart","b":"1F49A","j":["love","like","green","valentines","affection"]},"blue-heart":{"a":"Blue Heart","b":"1F499","j":["love","like","valentines","affection","blue"]},"purple-heart":{"a":"Purple Heart","b":"1F49C","j":["love","like","purple","valentines","affection"]},"brown-heart":{"a":"Brown Heart","b":"1F90E","j":["brown","coffee","heart"]},"black-heart":{"a":"Black Heart","b":"1F5A4","j":["black","wicked","evil"]},"white-heart":{"a":"White Heart","b":"1F90D","j":["heart","pure","white"]},"hundred-points":{"a":"Hundred Points","b":"1F4AF","j":["test","100","exam","score","numbers","full","quiz","hundred","century","pass","perfect"]},"anger-symbol":{"a":"Anger Symbol","b":"1F4A2","j":["mad","comic","angry"]},"collision":{"a":"Collision","b":"1F4A5","j":["explode","boom","bomb","comic","blown","explosion"]},"dizzy":{"a":"Dizzy","b":"1F4AB","j":["sparkle","magic","shoot","comic","star"]},"sweat-droplets":{"a":"Sweat Droplets","b":"1F4A6","j":["sweat","oops","water","drip","comic","splashing"]},"dashing-away":{"a":"Dashing Away","b":"1F4A8","j":["running","air","fart","shoo","wind","smoke","comic","fast","puff","dash"]},"hole":{"a":"Hole","b":"1F573","j":["embarrassing"]},"bomb":{"a":"Bomb","b":"1F4A3","j":["explode","terrorism","boom","comic","explosion"]},"speech-balloon":{"a":"Speech Balloon","b":"1F4AC","j":["chatting","dialog","speech","bubble","words","message","balloon","comic","talk"]},"eye-in-speech-bubble":{"a":"Eye in Speech Bubble","b":"1F441-FE0F-200D-1F5E8-FE0F","j":["speech bubble","info","eye","witness"]},"left-speech-bubble":{"a":"Left Speech Bubble","b":"1F5E8","j":["chatting","dialog","speech","words","message","talk"]},"right-anger-bubble":{"a":"Right Anger Bubble","b":"1F5EF","j":["mad","speech","bubble","thinking","balloon","angry","caption"]},"thought-balloon":{"a":"Thought Balloon","b":"1F4AD","j":["thought","dream","cloud","bubble","speech","thinking","balloon","comic"]},"zzz":{"a":"Zzz","b":"1F4A4","j":["dream","tired","comic","sleepy","sleep"]},"waving-hand":{"a":"Waving Hand","b":"1F44B","j":["palm","gesture","farewell","wave","hands","hello","hi","solong","waving","hand","goodbye"]},"raised-back-of-hand":{"a":"Raised Back of Hand","b":"1F91A","j":["raised","fingers","backhand"]},"hand-with-fingers-splayed":{"a":"Hand with Fingers Splayed","b":"1F590","j":["splayed","palm","finger","hand","fingers"]},"raised-hand":{"a":"Raised Hand","b":"270B","j":["stop","palm","high 5","highfive","high five","hand","fingers","ban"]},"vulcan-salute":{"a":"Vulcan Salute","b":"1F596","j":["spock","finger","hand","star trek","fingers","vulcan"]},"ok-hand":{"a":"Ok Hand","b":"1F44C","j":["ok","perfect","limbs","hand","OK","okay","fingers"]},"pinched-fingers":{"a":"Pinched Fingers","b":"1F90C","j":["pinched","small","interrogation","hand gesture","sarcastic","size","fingers","tiny"]},"pinching-hand":{"a":"Pinching Hand","b":"1F90F","j":["small","size","small amount","tiny"]},"victory-hand":{"a":"Victory Hand","b":"270C","j":["victory","ohyeah","peace","two","v","hand","fingers"]},"crossed-fingers":{"a":"Crossed Fingers","b":"1F91E","j":["lucky","cross","luck","finger","good","hand"]},"loveyou-gesture":{"a":"Love-You Gesture","b":"1F91F","j":["gesture","love-you gesture","hand","ILY","fingers","love_you_gesture"]},"sign-of-the-horns":{"a":"Sign of the Horns","b":"1F918","j":["evil_eye","sign_of_horns","horns","finger","rock_on","hand","fingers","rock-on"]},"call-me-hand":{"a":"Call Me Hand","b":"1F919","j":["hand","gesture","call","hands"]},"backhand-index-pointing-left":{"a":"Backhand Index Pointing Left","b":"1F448","j":["point","backhand","index","left","direction","finger","hand","fingers"]},"backhand-index-pointing-right":{"a":"Backhand Index Pointing Right","b":"1F449","j":["point","backhand","index","direction","right","finger","hand","fingers"]},"backhand-index-pointing-up":{"a":"Backhand Index Pointing Up","b":"1F446","j":["up","point","backhand","direction","finger","hand","fingers"]},"middle-finger":{"a":"Middle Finger","b":"1F595","j":["flipping","rude","middle","finger","hand","fingers"]},"backhand-index-pointing-down":{"a":"Backhand Index Pointing Down","b":"1F447","j":["point","backhand","direction","down","finger","hand","fingers"]},"index-pointing-up":{"a":"Index Pointing Up","b":"261D","j":["up","point","index","direction","finger","hand","fingers"]},"thumbs-up":{"a":"Thumbs Up","b":"1F44D","j":["up","cool","thumb","+1","thumbsup","awesome","like","good","accept","hand","yes","agree"]},"thumbs-down":{"a":"Thumbs Down","b":"1F44E","j":["-1","thumb","no","dislike","down","thumbsdown","hand"]},"raised-fist":{"a":"Raised Fist","b":"270A","j":["punch","fist","grasp","clenched","hand","fingers"]},"oncoming-fist":{"a":"Oncoming Fist","b":"1F44A","j":["punch","attack","fist","hit","clenched","angry","hand","violence"]},"leftfacing-fist":{"a":"Left-Facing Fist","b":"1F91B","j":["fist","left-facing fist","leftwards","left_facing_fist","hand","fistbump"]},"rightfacing-fist":{"a":"Right-Facing Fist","b":"1F91C","j":["rightwards","fist","right-facing fist","right_facing_fist","hand","fistbump"]},"clapping-hands":{"a":"Clapping Hands","b":"1F44F","j":["congrats","praise","applause","yay","hands","hand","clap"]},"raising-hands":{"a":"Raising Hands","b":"1F64C","j":["hooray","gesture","celebration","raised","yea","hands","hand"]},"open-hands":{"a":"Open Hands","b":"1F450","j":["open","butterfly","hands","hand","fingers"]},"palms-up-together":{"a":"Palms Up Together","b":"1F932","j":["gesture","hands","cupped hands","cupped","prayer"]},"handshake":{"a":"Handshake","b":"1F91D","j":["agreement","hand","meeting","shake"]},"folded-hands":{"a":"Folded Hands","b":"1F64F","j":["thanks","wish","please","high 5","hope","namaste","pray","highfive","high five","hand","ask"]},"writing-hand":{"a":"Writing Hand","b":"270D","j":["lower_left_ballpoint_pen","write","stationery","compose","hand"]},"nail-polish":{"a":"Nail Polish","b":"1F485","j":["manicure","polish","beauty","finger","fashion","nail","cosmetics","care"]},"selfie":{"a":"Selfie","b":"1F933","j":["camera","phone"]},"flexed-biceps":{"a":"Flexed Biceps","b":"1F4AA","j":["strong","hand","flex","biceps","comic","arm","summer","muscle"]},"mechanical-arm":{"a":"Mechanical Arm","b":"1F9BE","j":["accessibility","prosthetic"]},"mechanical-leg":{"a":"Mechanical Leg","b":"1F9BF","j":["accessibility","prosthetic"]},"leg":{"a":"Leg","b":"1F9B5","j":["limb","kick"]},"foot":{"a":"Foot","b":"1F9B6","j":["stomp","kick"]},"ear":{"a":"Ear","b":"1F442","j":["listen","hear","body","sound","face"]},"ear-with-hearing-aid":{"a":"Ear with Hearing Aid","b":"1F9BB","j":["accessibility","hard of hearing"]},"nose":{"a":"Nose","b":"1F443","j":["body","smell","sniff"]},"brain":{"a":"Brain","b":"1F9E0","j":["smart","intelligent"]},"anatomical-heart":{"a":"Anatomical Heart","b":"1FAC0","j":["heartbeat","heart","pulse","health","organ","anatomical","cardiology"]},"lungs":{"a":"Lungs","b":"1FAC1","j":["organ","respiration","breathe","exhalation","breath","inhalation"]},"tooth":{"a":"Tooth","b":"1F9B7","j":["teeth","dentist"]},"bone":{"a":"Bone","b":"1F9B4","j":["skeleton"]},"eyes":{"a":"Eyes","b":"1F440","j":["stalk","eye","see","peek","watch","look","face"]},"eye":{"a":"Eye","b":"1F441","j":["body","stare","see","watch","look","face"]},"tongue":{"a":"Tongue","b":"1F445","j":["body","mouth","playful"]},"mouth":{"a":"Mouth","b":"1F444","j":["lips","kiss"]},"baby":{"a":"Baby","b":"1F476","j":["young","child","girl","boy","toddler"]},"child":{"a":"Child","b":"1F9D2","j":["gender-neutral","unspecified gender","young"]},"boy":{"a":"Boy","b":"1F466","j":["male","man","teenager","young","guy"]},"girl":{"a":"Girl","b":"1F467","j":["Virgo","woman","teenager","young","female","zodiac"]},"person":{"a":"Person","b":"1F9D1","j":["gender-neutral","unspecified gender","adult"]},"person-blond-hair":{"a":"Person: Blond Hair","b":"1F471","j":["blond","blond-haired person","hair","person: blond hair","hairstyle"]},"man":{"a":"Man","b":"1F468","j":["dad","classy","adult","mustache","guy","moustache","father","sir"]},"person-beard":{"a":"Person: Beard","b":"1F9D4","j":["man_beard","beard","bewhiskered","person: beard","person"]},"man-beard":{"a":"⊛ Man: Beard","b":"1F9D4-200D-2642-FE0F","j":["beard","man","man: beard"]},"woman-beard":{"a":"⊛ Woman: Beard","b":"1F9D4-200D-2640-FE0F","j":["beard","woman","woman: beard"]},"man-red-hair":{"a":"Man: Red Hair","b":"1F468-200D-1F9B0","j":["man","hairstyle","adult","red hair"]},"man-curly-hair":{"a":"Man: Curly Hair","b":"1F468-200D-1F9B1","j":["man","curly hair","hairstyle","adult"]},"man-white-hair":{"a":"Man: White Hair","b":"1F468-200D-1F9B3","j":["man","old","adult","white hair","elder"]},"man-bald":{"a":"Man: Bald","b":"1F468-200D-1F9B2","j":["man","hairless","bald","adult"]},"woman":{"a":"Woman","b":"1F469","j":["female","lady","adult","girls"]},"woman-red-hair":{"a":"Woman: Red Hair","b":"1F469-200D-1F9B0","j":["woman","hairstyle","adult","red hair"]},"person-red-hair":{"a":"Person: Red Hair","b":"1F9D1-200D-1F9B0","j":["gender-neutral","unspecified gender","adult","red hair","hairstyle","person"]},"woman-curly-hair":{"a":"Woman: Curly Hair","b":"1F469-200D-1F9B1","j":["curly hair","hairstyle","woman","adult"]},"person-curly-hair":{"a":"Person: Curly Hair","b":"1F9D1-200D-1F9B1","j":["gender-neutral","unspecified gender","adult","curly hair","hairstyle","person"]},"woman-white-hair":{"a":"Woman: White Hair","b":"1F469-200D-1F9B3","j":["woman","old","adult","white hair","elder"]},"person-white-hair":{"a":"Person: White Hair","b":"1F9D1-200D-1F9B3","j":["gender-neutral","unspecified gender","old","adult","white hair","person","elder"]},"woman-bald":{"a":"Woman: Bald","b":"1F469-200D-1F9B2","j":["woman","bald","hairless","adult"]},"person-bald":{"a":"Person: Bald","b":"1F9D1-200D-1F9B2","j":["gender-neutral","bald","unspecified gender","adult","hairless","person"]},"woman-blond-hair":{"a":"Woman: Blond Hair","b":"1F471-200D-2640-FE0F","j":["blond-haired woman","woman","female","hair","girl","woman: blond hair","person","blonde"]},"man-blond-hair":{"a":"Man: Blond Hair","b":"1F471-200D-2642-FE0F","j":["blond","male","man","blond-haired man","man: blond hair","hair","guy","boy","person","blonde"]},"older-person":{"a":"Older Person","b":"1F9D3","j":["gender-neutral","unspecified gender","old","adult","senior","human","elder"]},"old-man":{"a":"Old Man","b":"1F474","j":["male","men","man","old","adult","senior","human","elder"]},"old-woman":{"a":"Old Woman","b":"1F475","j":["old","woman","adult","female","lady","senior","women","human","elder"]},"person-frowning":{"a":"Person Frowning","b":"1F64D","j":["frown","gesture","worried"]},"man-frowning":{"a":"Man Frowning","b":"1F64D-200D-2642-FE0F","j":["sad","unhappy","frowning","male","man","gesture","depressed","boy","discouraged"]},"woman-frowning":{"a":"Woman Frowning","b":"1F64D-200D-2640-FE0F","j":["sad","unhappy","frowning","gesture","woman","depressed","female","girl","discouraged"]},"person-pouting":{"a":"Person Pouting","b":"1F64E","j":["gesture","upset","pouting"]},"man-pouting":{"a":"Man Pouting","b":"1F64E-200D-2642-FE0F","j":["male","man","gesture","pouting","boy"]},"woman-pouting":{"a":"Woman Pouting","b":"1F64E-200D-2640-FE0F","j":["gesture","woman","female","girl","pouting"]},"person-gesturing-no":{"a":"Person Gesturing No","b":"1F645","j":["prohibited","gesture","hand","forbidden","decline","person gesturing NO"]},"man-gesturing-no":{"a":"Man Gesturing No","b":"1F645-200D-2642-FE0F","j":["male","nope","man","gesture","prohibited","hand","forbidden","boy","man gesturing NO"]},"woman-gesturing-no":{"a":"Woman Gesturing No","b":"1F645-200D-2640-FE0F","j":["nope","prohibited","gesture","woman","woman gesturing NO","female","girl","hand","forbidden"]},"person-gesturing-ok":{"a":"Person Gesturing Ok","b":"1F646","j":["person gesturing OK","gesture","hand","OK","agree"]},"man-gesturing-ok":{"a":"Man Gesturing Ok","b":"1F646-200D-2642-FE0F","j":["male","men","OK","man","gesture","man gesturing OK","hand","boy","human","blue"]},"woman-gesturing-ok":{"a":"Woman Gesturing Ok","b":"1F646-200D-2640-FE0F","j":["pink","OK","gesture","woman","female","woman gesturing OK","girl","hand","women","human"]},"person-tipping-hand":{"a":"Person Tipping Hand","b":"1F481","j":["information","tipping","sassy","help","hand"]},"man-tipping-hand":{"a":"Man Tipping Hand","b":"1F481-200D-2642-FE0F","j":["male","information","man","sassy","tipping hand","boy","human"]},"woman-tipping-hand":{"a":"Woman Tipping Hand","b":"1F481-200D-2640-FE0F","j":["information","woman","sassy","female","girl","tipping hand","human"]},"person-raising-hand":{"a":"Person Raising Hand","b":"1F64B","j":["gesture","raised","question","hand","happy"]},"man-raising-hand":{"a":"Man Raising Hand","b":"1F64B-200D-2642-FE0F","j":["male","man","gesture","raising hand","boy"]},"woman-raising-hand":{"a":"Woman Raising Hand","b":"1F64B-200D-2640-FE0F","j":["gesture","woman","female","raising hand","girl"]},"deaf-person":{"a":"Deaf Person","b":"1F9CF","j":["accessibility","ear","deaf","hear"]},"deaf-man":{"a":"Deaf Man","b":"1F9CF-200D-2642-FE0F","j":["man","accessibility","deaf"]},"deaf-woman":{"a":"Deaf Woman","b":"1F9CF-200D-2640-FE0F","j":["woman","deaf","accessibility"]},"person-bowing":{"a":"Person Bowing","b":"1F647","j":["bow","gesture","sorry","respectiful","apology"]},"man-bowing":{"a":"Man Bowing","b":"1F647-200D-2642-FE0F","j":["favor","male","man","gesture","sorry","apology","boy","bowing"]},"woman-bowing":{"a":"Woman Bowing","b":"1F647-200D-2640-FE0F","j":["favor","gesture","woman","sorry","apology","female","girl","bowing"]},"person-facepalming":{"a":"Person Facepalming","b":"1F926","j":["disbelief","palm","exasperation","disappointed","face"]},"man-facepalming":{"a":"Man Facepalming","b":"1F926-200D-2642-FE0F","j":["disbelief","male","exasperation","man","facepalm","boy"]},"woman-facepalming":{"a":"Woman Facepalming","b":"1F926-200D-2640-FE0F","j":["disbelief","exasperation","woman","facepalm","female","girl"]},"person-shrugging":{"a":"Person Shrugging","b":"1F937","j":["shrug","ignorance","regardless","doubt","indifference"]},"man-shrugging":{"a":"Man Shrugging","b":"1F937-200D-2642-FE0F","j":["male","shrug","ignorance","man","indifferent","confused","boy","doubt","indifference"]},"woman-shrugging":{"a":"Woman Shrugging","b":"1F937-200D-2640-FE0F","j":["shrug","ignorance","woman","indifferent","female","girl","confused","doubt","indifference"]},"health-worker":{"a":"Health Worker","b":"1F9D1-200D-2695-FE0F","j":["nurse","doctor","healthcare","hospital","therapist"]},"man-health-worker":{"a":"Man Health Worker","b":"1F468-200D-2695-FE0F","j":["nurse","man","doctor","healthcare","human","therapist"]},"woman-health-worker":{"a":"Woman Health Worker","b":"1F469-200D-2695-FE0F","j":["nurse","woman","doctor","healthcare","human","therapist"]},"student":{"a":"Student","b":"1F9D1-200D-1F393","j":["graduate","learn"]},"man-student":{"a":"Man Student","b":"1F468-200D-1F393","j":["man","student","human","graduate"]},"woman-student":{"a":"Woman Student","b":"1F469-200D-1F393","j":["woman","student","human","graduate"]},"teacher":{"a":"Teacher","b":"1F9D1-200D-1F3EB","j":["instructor","professor"]},"man-teacher":{"a":"Man Teacher","b":"1F468-200D-1F3EB","j":["man","teacher","professor","instructor","human"]},"woman-teacher":{"a":"Woman Teacher","b":"1F469-200D-1F3EB","j":["woman","teacher","professor","instructor","human"]},"judge":{"a":"Judge","b":"1F9D1-200D-2696-FE0F","j":["law","scales","justice"]},"man-judge":{"a":"Man Judge","b":"1F468-200D-2696-FE0F","j":["man","scales","court","judge","human","justice"]},"woman-judge":{"a":"Woman Judge","b":"1F469-200D-2696-FE0F","j":["woman","scales","court","judge","human","justice"]},"farmer":{"a":"Farmer","b":"1F9D1-200D-1F33E","j":["rancher","crops","gardener"]},"man-farmer":{"a":"Man Farmer","b":"1F468-200D-1F33E","j":["man","rancher","farmer","gardener","human"]},"woman-farmer":{"a":"Woman Farmer","b":"1F469-200D-1F33E","j":["rancher","woman","farmer","gardener","human"]},"cook":{"a":"Cook","b":"1F9D1-200D-1F373","j":["culinary","kitchen","chef","food"]},"man-cook":{"a":"Man Cook","b":"1F468-200D-1F373","j":["cook","human","chef","man"]},"woman-cook":{"a":"Woman Cook","b":"1F469-200D-1F373","j":["cook","woman","human","chef"]},"mechanic":{"a":"Mechanic","b":"1F9D1-200D-1F527","j":["tradesperson","plumber","electrician","worker","technician"]},"man-mechanic":{"a":"Man Mechanic","b":"1F468-200D-1F527","j":["plumber","tradesperson","wrench","man","electrician","mechanic","human"]},"woman-mechanic":{"a":"Woman Mechanic","b":"1F469-200D-1F527","j":["tradesperson","plumber","wrench","woman","electrician","mechanic","human"]},"factory-worker":{"a":"Factory Worker","b":"1F9D1-200D-1F3ED","j":["industrial","assembly","worker","factory","labor"]},"man-factory-worker":{"a":"Man Factory Worker","b":"1F468-200D-1F3ED","j":["man","industrial","assembly","worker","factory","human"]},"woman-factory-worker":{"a":"Woman Factory Worker","b":"1F469-200D-1F3ED","j":["woman","industrial","assembly","worker","factory","human"]},"office-worker":{"a":"Office Worker","b":"1F9D1-200D-1F4BC","j":["business","white-collar","architect","manager"]},"man-office-worker":{"a":"Man Office Worker","b":"1F468-200D-1F4BC","j":["business","architect","man","white-collar","human","manager"]},"woman-office-worker":{"a":"Woman Office Worker","b":"1F469-200D-1F4BC","j":["business","architect","woman","white-collar","human","manager"]},"scientist":{"a":"Scientist","b":"1F9D1-200D-1F52C","j":["chemist","chemistry","biologist","physicist","engineer"]},"man-scientist":{"a":"Man Scientist","b":"1F468-200D-1F52C","j":["man","chemist","biologist","physicist","human","engineer","scientist"]},"woman-scientist":{"a":"Woman Scientist","b":"1F469-200D-1F52C","j":["woman","chemist","biologist","physicist","human","engineer","scientist"]},"technologist":{"a":"Technologist","b":"1F9D1-200D-1F4BB","j":["inventor","software","computer","developer","coder"]},"man-technologist":{"a":"Man Technologist","b":"1F468-200D-1F4BB","j":["inventor","man","engineer","software","laptop","computer","developer","coder","technologist","human","programmer"]},"woman-technologist":{"a":"Woman Technologist","b":"1F469-200D-1F4BB","j":["inventor","woman","engineer","software","laptop","computer","developer","coder","technologist","human","programmer"]},"singer":{"a":"Singer","b":"1F9D1-200D-1F3A4","j":["actor","entertainer","performer","rock","song","artist","star"]},"man-singer":{"a":"Man Singer","b":"1F468-200D-1F3A4","j":["actor","entertainer","singer","rockstar","man","rock","human","star"]},"woman-singer":{"a":"Woman Singer","b":"1F469-200D-1F3A4","j":["actor","entertainer","singer","rockstar","woman","rock","human","star"]},"artist":{"a":"Artist","b":"1F9D1-200D-1F3A8","j":["palette","creativity","draw","painting"]},"man-artist":{"a":"Man Artist","b":"1F468-200D-1F3A8","j":["man","painter","palette","artist","human"]},"woman-artist":{"a":"Woman Artist","b":"1F469-200D-1F3A8","j":["woman","painter","palette","artist","human"]},"pilot":{"a":"Pilot","b":"1F9D1-200D-2708-FE0F","j":["airplane","plane","fly"]},"man-pilot":{"a":"Man Pilot","b":"1F468-200D-2708-FE0F","j":["man","plane","pilot","human","aviator"]},"woman-pilot":{"a":"Woman Pilot","b":"1F469-200D-2708-FE0F","j":["woman","plane","pilot","human","aviator"]},"astronaut":{"a":"Astronaut","b":"1F9D1-200D-1F680","j":["outerspace","rocket"]},"man-astronaut":{"a":"Man Astronaut","b":"1F468-200D-1F680","j":["man","space","astronaut","rocket","human"]},"woman-astronaut":{"a":"Woman Astronaut","b":"1F469-200D-1F680","j":["woman","space","astronaut","rocket","human"]},"firefighter":{"a":"Firefighter","b":"1F9D1-200D-1F692","j":["fire","firetruck"]},"man-firefighter":{"a":"Man Firefighter","b":"1F468-200D-1F692","j":["man","firetruck","firefighter","human","fireman"]},"woman-firefighter":{"a":"Woman Firefighter","b":"1F469-200D-1F692","j":["firetruck","woman","firefighter","human","fireman"]},"police-officer":{"a":"Police Officer","b":"1F46E","j":["cop","officer","police"]},"man-police-officer":{"a":"Man Police Officer","b":"1F46E-200D-2642-FE0F","j":["arrest","cop","man","911","officer","police","enforcement","legal","law"]},"woman-police-officer":{"a":"Woman Police Officer","b":"1F46E-200D-2640-FE0F","j":["arrest","cop","woman","911","female","officer","police","enforcement","legal","law"]},"detective":{"a":"Detective","b":"1F575","j":["spy","sleuth","human"]},"man-detective":{"a":"Man Detective","b":"1F575-FE0F-200D-2642-FE0F","j":["sleuth","man","spy","crime","detective"]},"woman-detective":{"a":"Woman Detective","b":"1F575-FE0F-200D-2640-FE0F","j":["sleuth","spy","woman","detective","female","human"]},"guard":{"a":"Guard","b":"1F482","j":["protect"]},"man-guard":{"a":"Man Guard","b":"1F482-200D-2642-FE0F","j":["uk","male","british","man","royal","guy","gb","guard"]},"woman-guard":{"a":"Woman Guard","b":"1F482-200D-2640-FE0F","j":["uk","british","royal","woman","female","gb","guard"]},"ninja":{"a":"Ninja","b":"1F977","j":["fighter","ninjutsu","stealth","skills","hidden","japanese"]},"construction-worker":{"a":"Construction Worker","b":"1F477","j":["hat","construction","build","worker","labor"]},"man-construction-worker":{"a":"Man Construction Worker","b":"1F477-200D-2642-FE0F","j":["male","wip","man","construction","build","guy","worker","human","labor"]},"woman-construction-worker":{"a":"Woman Construction Worker","b":"1F477-200D-2640-FE0F","j":["wip","woman","construction","build","female","worker","human","labor"]},"prince":{"a":"Prince","b":"1F934","j":["male","man","royal","crown","boy","king"]},"princess":{"a":"Princess","b":"1F478","j":["blond","queen","fairy tale","royal","woman","crown","fantasy","female","girl"]},"person-wearing-turban":{"a":"Person Wearing Turban","b":"1F473","j":["headdress","turban"]},"man-wearing-turban":{"a":"Man Wearing Turban","b":"1F473-200D-2642-FE0F","j":["male","turban","hinduism","man","indian","arabs"]},"woman-wearing-turban":{"a":"Woman Wearing Turban","b":"1F473-200D-2640-FE0F","j":["turban","hinduism","woman","female","indian","arabs"]},"person-with-skullcap":{"a":"Person with Skullcap","b":"1F472","j":["male","hat","cap","man_with_skullcap","skullcap","chinese","gua pi mao","boy","person"]},"woman-with-headscarf":{"a":"Woman with Headscarf","b":"1F9D5","j":["hijab","head kerchief","mantilla","bandana","female","tichel","headscarf"]},"person-in-tuxedo":{"a":"Person in Tuxedo","b":"1F935","j":["wedding","marriage","couple","groom","tuxedo","person","man_in_tuxedo"]},"man-in-tuxedo":{"a":"Man in Tuxedo","b":"1F935-200D-2642-FE0F","j":["man","tuxedo","fashion","formal"]},"woman-in-tuxedo":{"a":"Woman in Tuxedo","b":"1F935-200D-2640-FE0F","j":["woman","tuxedo","fashion","formal"]},"person-with-veil":{"a":"Person with Veil","b":"1F470","j":["bride","wedding","veil","marriage","woman","couple","bride_with_veil","person"]},"man-with-veil":{"a":"Man with Veil","b":"1F470-200D-2642-FE0F","j":["man","marriage","wedding","veil"]},"woman-with-veil":{"a":"Woman with Veil","b":"1F470-200D-2640-FE0F","j":["woman","marriage","wedding","veil"]},"pregnant-woman":{"a":"Pregnant Woman","b":"1F930","j":["woman","pregnant","baby"]},"breastfeeding":{"a":"Breast-Feeding","b":"1F931","j":["breast","breast-feeding","breast_feeding","nursing","baby"]},"woman-feeding-baby":{"a":"Woman Feeding Baby","b":"1F469-200D-1F37C","j":["food","birth","woman","feeding","nursing","baby"]},"man-feeding-baby":{"a":"Man Feeding Baby","b":"1F468-200D-1F37C","j":["food","birth","man","feeding","nursing","baby"]},"person-feeding-baby":{"a":"Person Feeding Baby","b":"1F9D1-200D-1F37C","j":["food","birth","feeding","nursing","baby","person"]},"baby-angel":{"a":"Baby Angel","b":"1F47C","j":["fairy tale","halo","fantasy","wings","baby","angel","face","heaven"]},"santa-claus":{"a":"Santa Claus","b":"1F385","j":["xmas","male","festival","man","father christmas","celebration","santa","Christmas","claus","father"]},"mrs-claus":{"a":"Mrs. Claus","b":"1F936","j":["xmas","mother","Mrs.","woman","celebration","female","mother christmas","Christmas","claus"]},"mx-claus":{"a":"Mx Claus","b":"1F9D1-200D-1F384","j":["Claus, christmas","christmas"]},"superhero":{"a":"Superhero","b":"1F9B8","j":["heroine","marvel","good","superpower","hero"]},"man-superhero":{"a":"Man Superhero","b":"1F9B8-200D-2642-FE0F","j":["male","man","superpowers","good","superpower","hero"]},"woman-superhero":{"a":"Woman Superhero","b":"1F9B8-200D-2640-FE0F","j":["woman","heroine","superpowers","female","good","superpower","hero"]},"supervillain":{"a":"Supervillain","b":"1F9B9","j":["villain","marvel","criminal","superpower","evil"]},"man-supervillain":{"a":"Man Supervillain","b":"1F9B9-200D-2642-FE0F","j":["villain","male","man","criminal","superpowers","bad","superpower","evil","hero"]},"woman-supervillain":{"a":"Woman Supervillain","b":"1F9B9-200D-2640-FE0F","j":["villain","woman","heroine","criminal","female","superpowers","bad","superpower","evil"]},"mage":{"a":"Mage","b":"1F9D9","j":["sorcerer","wizard","witch","sorceress","magic"]},"man-mage":{"a":"Man Mage","b":"1F9D9-200D-2642-FE0F","j":["sorcerer","male","wizard","man","mage"]},"woman-mage":{"a":"Woman Mage","b":"1F9D9-200D-2640-FE0F","j":["woman","witch","sorceress","mage","female"]},"fairy":{"a":"Fairy","b":"1F9DA","j":["Titania","wings","Oberon","Puck","magical"]},"man-fairy":{"a":"Man Fairy","b":"1F9DA-200D-2642-FE0F","j":["man","Puck","male","Oberon"]},"woman-fairy":{"a":"Woman Fairy","b":"1F9DA-200D-2640-FE0F","j":["Titania","female","woman"]},"vampire":{"a":"Vampire","b":"1F9DB","j":["undead","blood","twilight","Dracula"]},"man-vampire":{"a":"Man Vampire","b":"1F9DB-200D-2642-FE0F","j":["male","Dracula","man","dracula","undead"]},"woman-vampire":{"a":"Woman Vampire","b":"1F9DB-200D-2640-FE0F","j":["woman","female","undead"]},"merperson":{"a":"Merperson","b":"1F9DC","j":["mermaid","sea","merman","merwoman"]},"merman":{"a":"Merman","b":"1F9DC-200D-2642-FE0F","j":["man","male","Triton","triton"]},"mermaid":{"a":"Mermaid","b":"1F9DC-200D-2640-FE0F","j":["woman","female","merwoman","ariel"]},"elf":{"a":"Elf","b":"1F9DD","j":["LOTR style","magical"]},"man-elf":{"a":"Man Elf","b":"1F9DD-200D-2642-FE0F","j":["man","male","magical"]},"woman-elf":{"a":"Woman Elf","b":"1F9DD-200D-2640-FE0F","j":["woman","female","magical"]},"genie":{"a":"Genie","b":"1F9DE","j":["(non-human color)","djinn","wishes","magical"]},"man-genie":{"a":"Man Genie","b":"1F9DE-200D-2642-FE0F","j":["man","male","djinn"]},"woman-genie":{"a":"Woman Genie","b":"1F9DE-200D-2640-FE0F","j":["woman","female","djinn"]},"zombie":{"a":"Zombie","b":"1F9DF","j":["(non-human color)","undead","walking dead","dead"]},"man-zombie":{"a":"Man Zombie","b":"1F9DF-200D-2642-FE0F","j":["walking dead","male","man","dracula","undead"]},"woman-zombie":{"a":"Woman Zombie","b":"1F9DF-200D-2640-FE0F","j":["woman","female","walking dead","undead"]},"person-getting-massage":{"a":"Person Getting Massage","b":"1F486","j":["relax","massage","face","salon"]},"man-getting-massage":{"a":"Man Getting Massage","b":"1F486-200D-2642-FE0F","j":["massage","male","man","head","boy","face"]},"woman-getting-massage":{"a":"Woman Getting Massage","b":"1F486-200D-2640-FE0F","j":["massage","woman","female","head","girl","face"]},"person-getting-haircut":{"a":"Person Getting Haircut","b":"1F487","j":["parlor","haircut","beauty","barber","hairstyle"]},"man-getting-haircut":{"a":"Man Getting Haircut","b":"1F487-200D-2642-FE0F","j":["man","boy","haircut","male"]},"woman-getting-haircut":{"a":"Woman Getting Haircut","b":"1F487-200D-2640-FE0F","j":["woman","female","haircut","girl"]},"person-walking":{"a":"Person Walking","b":"1F6B6","j":["walk","move","walking","hike"]},"man-walking":{"a":"Man Walking","b":"1F6B6-200D-2642-FE0F","j":["feet","walk","man","hike","human","steps"]},"woman-walking":{"a":"Woman Walking","b":"1F6B6-200D-2640-FE0F","j":["feet","walk","woman","hike","female","human","steps"]},"person-standing":{"a":"Person Standing","b":"1F9CD","j":["standing","stand","still"]},"man-standing":{"a":"Man Standing","b":"1F9CD-200D-2642-FE0F","j":["man","standing","still"]},"woman-standing":{"a":"Woman Standing","b":"1F9CD-200D-2640-FE0F","j":["standing","woman","still"]},"person-kneeling":{"a":"Person Kneeling","b":"1F9CE","j":["kneel","kneeling","pray","respectful"]},"man-kneeling":{"a":"Man Kneeling","b":"1F9CE-200D-2642-FE0F","j":["man","kneeling","pray","respectful"]},"woman-kneeling":{"a":"Woman Kneeling","b":"1F9CE-200D-2640-FE0F","j":["woman","pray","kneeling","respectful"]},"person-with-white-cane":{"a":"Person with White Cane","b":"1F9D1-200D-1F9AF","j":["accessibility","blind","person_with_probing_cane"]},"man-with-white-cane":{"a":"Man with White Cane","b":"1F468-200D-1F9AF","j":["man","accessibility","blind","man_with_probing_cane"]},"woman-with-white-cane":{"a":"Woman with White Cane","b":"1F469-200D-1F9AF","j":["woman","blind","woman_with_probing_cane","accessibility"]},"person-in-motorized-wheelchair":{"a":"Person in Motorized Wheelchair","b":"1F9D1-200D-1F9BC","j":["accessibility","disability","wheelchair"]},"man-in-motorized-wheelchair":{"a":"Man in Motorized Wheelchair","b":"1F468-200D-1F9BC","j":["man","accessibility","disability","wheelchair"]},"woman-in-motorized-wheelchair":{"a":"Woman in Motorized Wheelchair","b":"1F469-200D-1F9BC","j":["wheelchair","woman","disability","accessibility"]},"person-in-manual-wheelchair":{"a":"Person in Manual Wheelchair","b":"1F9D1-200D-1F9BD","j":["accessibility","disability","wheelchair"]},"man-in-manual-wheelchair":{"a":"Man in Manual Wheelchair","b":"1F468-200D-1F9BD","j":["man","accessibility","disability","wheelchair"]},"woman-in-manual-wheelchair":{"a":"Woman in Manual Wheelchair","b":"1F469-200D-1F9BD","j":["wheelchair","woman","disability","accessibility"]},"person-running":{"a":"Person Running","b":"1F3C3","j":["running","move","marathon"]},"man-running":{"a":"Man Running","b":"1F3C3-200D-2642-FE0F","j":["exercise","running","man","racing","race","marathon","walking"]},"woman-running":{"a":"Woman Running","b":"1F3C3-200D-2640-FE0F","j":["exercise","running","woman","racing","race","marathon","female","walking"]},"woman-dancing":{"a":"Woman Dancing","b":"1F483","j":["dance","woman","female","dancing","girl","fun"]},"man-dancing":{"a":"Man Dancing","b":"1F57A","j":["dancer","male","dance","man","dancing","boy","fun"]},"person-in-suit-levitating":{"a":"Person in Suit Levitating","b":"1F574","j":["business","jump","hover","levitate","suit","man_in_suit_levitating","person"]},"people-with-bunny-ears":{"a":"People with Bunny Ears","b":"1F46F","j":["dancer","partying","bunny ear","costume","perform"]},"men-with-bunny-ears":{"a":"Men with Bunny Ears","b":"1F46F-200D-2642-FE0F","j":["dancer","male","bunny","men","boys","partying","bunny ear"]},"women-with-bunny-ears":{"a":"Women with Bunny Ears","b":"1F46F-200D-2640-FE0F","j":["dancer","bunny","partying","female","bunny ear","women","girls"]},"person-in-steamy-room":{"a":"Person in Steamy Room","b":"1F9D6","j":["relax","sauna","spa","steambath","hamam","steam room"]},"man-in-steamy-room":{"a":"Man in Steamy Room","b":"1F9D6-200D-2642-FE0F","j":["sauna","male","spa","man","steamroom","steam room"]},"woman-in-steamy-room":{"a":"Woman in Steamy Room","b":"1F9D6-200D-2640-FE0F","j":["sauna","spa","woman","steamroom","female","steam room"]},"person-climbing":{"a":"Person Climbing","b":"1F9D7","j":["sport","climber"]},"man-climbing":{"a":"Man Climbing","b":"1F9D7-200D-2642-FE0F","j":["male","sports","man","rock","hobby","climber"]},"woman-climbing":{"a":"Woman Climbing","b":"1F9D7-200D-2640-FE0F","j":["sports","woman","rock","hobby","female","climber"]},"person-fencing":{"a":"Person Fencing","b":"1F93A","j":["sword","fencing","sports","fencer"]},"horse-racing":{"a":"Horse Racing","b":"1F3C7","j":["racehorse","racing","animal","competition","horse","luck","betting","gambling","jockey"]},"skier":{"a":"Skier","b":"26F7","j":["ski","winter","sports","snow"]},"snowboarder":{"a":"Snowboarder","b":"1F3C2","j":["sports","snow","winter","snowboard","ski"]},"person-golfing":{"a":"Person Golfing","b":"1F3CC","j":["business","golf","sports","ball"]},"man-golfing":{"a":"Man Golfing","b":"1F3CC-FE0F-200D-2642-FE0F","j":["golf","sport","man"]},"woman-golfing":{"a":"Woman Golfing","b":"1F3CC-FE0F-200D-2640-FE0F","j":["business","sports","golf","woman","female"]},"person-surfing":{"a":"Person Surfing","b":"1F3C4","j":["sport","sea","surfing"]},"man-surfing":{"a":"Man Surfing","b":"1F3C4-200D-2642-FE0F","j":["sports","man","sea","ocean","surfing","beach","summer"]},"woman-surfing":{"a":"Woman Surfing","b":"1F3C4-200D-2640-FE0F","j":["sports","woman","ocean","sea","female","surfing","beach","summer"]},"person-rowing-boat":{"a":"Person Rowing Boat","b":"1F6A3","j":["sport","rowboat","boat","move"]},"man-rowing-boat":{"a":"Man Rowing Boat","b":"1F6A3-200D-2642-FE0F","j":["rowboat","boat","sports","man","ship","water","hobby"]},"woman-rowing-boat":{"a":"Woman Rowing Boat","b":"1F6A3-200D-2640-FE0F","j":["rowboat","boat","sports","woman","water","ship","hobby","female"]},"person-swimming":{"a":"Person Swimming","b":"1F3CA","j":["swim","sport","pool"]},"man-swimming":{"a":"Man Swimming","b":"1F3CA-200D-2642-FE0F","j":["swim","exercise","athlete","sports","man","water","summer","human"]},"woman-swimming":{"a":"Woman Swimming","b":"1F3CA-200D-2640-FE0F","j":["swim","exercise","athlete","sports","woman","water","female","summer","human"]},"person-bouncing-ball":{"a":"Person Bouncing Ball","b":"26F9","j":["human","sports","ball"]},"man-bouncing-ball":{"a":"Man Bouncing Ball","b":"26F9-FE0F-200D-2642-FE0F","j":["man","sport","ball"]},"woman-bouncing-ball":{"a":"Woman Bouncing Ball","b":"26F9-FE0F-200D-2640-FE0F","j":["sports","woman","female","ball","human"]},"person-lifting-weights":{"a":"Person Lifting Weights","b":"1F3CB","j":["exercise","sports","lifter","training","weight"]},"man-lifting-weights":{"a":"Man Lifting Weights","b":"1F3CB-FE0F-200D-2642-FE0F","j":["man","sport","weight lifter"]},"woman-lifting-weights":{"a":"Woman Lifting Weights","b":"1F3CB-FE0F-200D-2640-FE0F","j":["exercise","sports","woman","female","training","weight lifter"]},"person-biking":{"a":"Person Biking","b":"1F6B4","j":["cyclist","sport","move","biking","bicycle"]},"man-biking":{"a":"Man Biking","b":"1F6B4-200D-2642-FE0F","j":["exercise","sports","cyclist","man","bike","bicycle","biking","hipster"]},"woman-biking":{"a":"Woman Biking","b":"1F6B4-200D-2640-FE0F","j":["exercise","sports","cyclist","woman","bike","bicycle","biking","hipster","female"]},"person-mountain-biking":{"a":"Person Mountain Biking","b":"1F6B5","j":["cyclist","sport","bike","move","bicycle","mountain","bicyclist"]},"man-mountain-biking":{"a":"Man Mountain Biking","b":"1F6B5-200D-2642-FE0F","j":["transportation","cyclist","man","bike","sports","race","bicycle","mountain","human"]},"woman-mountain-biking":{"a":"Woman Mountain Biking","b":"1F6B5-200D-2640-FE0F","j":["transportation","cyclist","sports","bike","woman","race","bicycle","biking","female","mountain","human"]},"person-cartwheeling":{"a":"Person Cartwheeling","b":"1F938","j":["cartwheel","gymnastic","gymnastics","sport"]},"man-cartwheeling":{"a":"Man Cartwheeling","b":"1F938-200D-2642-FE0F","j":["cartwheel","gymnastics","man"]},"woman-cartwheeling":{"a":"Woman Cartwheeling","b":"1F938-200D-2640-FE0F","j":["cartwheel","woman","gymnastics"]},"people-wrestling":{"a":"People Wrestling","b":"1F93C","j":["sport","wrestle","wrestler"]},"men-wrestling":{"a":"Men Wrestling","b":"1F93C-200D-2642-FE0F","j":["wrestle","men","sports","wrestlers"]},"women-wrestling":{"a":"Women Wrestling","b":"1F93C-200D-2640-FE0F","j":["wrestle","women","sports","wrestlers"]},"person-playing-water-polo":{"a":"Person Playing Water Polo","b":"1F93D","j":["sport","water","polo"]},"man-playing-water-polo":{"a":"Man Playing Water Polo","b":"1F93D-200D-2642-FE0F","j":["man","water polo","sports","pool"]},"woman-playing-water-polo":{"a":"Woman Playing Water Polo","b":"1F93D-200D-2640-FE0F","j":["woman","water polo","sports","pool"]},"person-playing-handball":{"a":"Person Playing Handball","b":"1F93E","j":["sport","handball","ball"]},"man-playing-handball":{"a":"Man Playing Handball","b":"1F93E-200D-2642-FE0F","j":["man","handball","sports"]},"woman-playing-handball":{"a":"Woman Playing Handball","b":"1F93E-200D-2640-FE0F","j":["woman","handball","sports"]},"person-juggling":{"a":"Person Juggling","b":"1F939","j":["balance","juggle","skill","multitask","performance"]},"man-juggling":{"a":"Man Juggling","b":"1F939-200D-2642-FE0F","j":["balance","man","juggle","juggling","skill","multitask"]},"woman-juggling":{"a":"Woman Juggling","b":"1F939-200D-2640-FE0F","j":["balance","woman","juggle","juggling","skill","multitask"]},"person-in-lotus-position":{"a":"Person in Lotus Position","b":"1F9D8","j":["meditation","yoga","serenity","meditate"]},"man-in-lotus-position":{"a":"Man in Lotus Position","b":"1F9D8-200D-2642-FE0F","j":["meditation","yoga","male","man","mindfulness","serenity","zen"]},"woman-in-lotus-position":{"a":"Woman in Lotus Position","b":"1F9D8-200D-2640-FE0F","j":["meditation","yoga","woman","female","mindfulness","serenity","zen"]},"person-taking-bath":{"a":"Person Taking Bath","b":"1F6C0","j":["bath","bathtub","bathroom","clean","shower"]},"person-in-bed":{"a":"Person in Bed","b":"1F6CC","j":["rest","hotel","bed","sleep"]},"people-holding-hands":{"a":"People Holding Hands","b":"1F9D1-200D-1F91D-200D-1F9D1","j":["friendship","couple","hold","holding hands","hand","person"]},"women-holding-hands":{"a":"Women Holding Hands","b":"1F46D","j":["hand","pair","friendship","couple","love","like","female","holding hands","people","women","human"]},"woman-and-man-holding-hands":{"a":"Woman and Man Holding Hands","b":"1F46B","j":["dating","man","marriage","couple","love","like","valentines","hold","people","hand","human","affection","pair","woman","holding hands","date"]},"men-holding-hands":{"a":"Men Holding Hands","b":"1F46C","j":["Gemini","men","pair","man","twins","friendship","couple","love","like","holding hands","people","human","zodiac","bromance"]},"kiss":{"a":"Kiss","b":"1F48F","j":["pair","marriage","love","couple","like","valentines","dating"]},"kiss-woman-man":{"a":"Kiss: Woman, Man","b":"1F469-200D-2764-FE0F-200D-1F48B-200D-1F468","j":["man","woman","kiss","love","couple"]},"kiss-man-man":{"a":"Kiss: Man, Man","b":"1F468-200D-2764-FE0F-200D-1F48B-200D-1F468","j":["pair","man","marriage","kiss","couple","love","like","valentines","dating"]},"kiss-woman-woman":{"a":"Kiss: Woman, Woman","b":"1F469-200D-2764-FE0F-200D-1F48B-200D-1F469","j":["pair","woman","marriage","kiss","couple","love","like","valentines","dating"]},"couple-with-heart":{"a":"Couple with Heart","b":"1F491","j":["pair","marriage","love","couple","like","valentines","dating","human","affection"]},"couple-with-heart-woman-man":{"a":"Couple with Heart: Woman, Man","b":"1F469-200D-2764-FE0F-200D-1F468","j":["man","woman","love","couple with heart","couple"]},"couple-with-heart-man-man":{"a":"Couple with Heart: Man, Man","b":"1F468-200D-2764-FE0F-200D-1F468","j":["pair","man","marriage","love","couple","couple with heart","like","valentines","dating","human","affection"]},"couple-with-heart-woman-woman":{"a":"Couple with Heart: Woman, Woman","b":"1F469-200D-2764-FE0F-200D-1F469","j":["pair","woman","marriage","love","couple","couple with heart","like","valentines","dating","human","affection"]},"family":{"a":"Family","b":"1F46A","j":["mom","mother","dad","father","parents","child","home","people","human"]},"family-man-woman-boy":{"a":"Family: Man, Woman, Boy","b":"1F468-200D-1F469-200D-1F466","j":["man","woman","family","love","boy"]},"family-man-woman-girl":{"a":"Family: Man, Woman, Girl","b":"1F468-200D-1F469-200D-1F467","j":["parents","man","woman","family","child","girl","home","people","human"]},"family-man-woman-girl-boy":{"a":"Family: Man, Woman, Girl, Boy","b":"1F468-200D-1F469-200D-1F467-200D-1F466","j":["children","parents","man","woman","family","girl","home","people","boy","human"]},"family-man-woman-boy-boy":{"a":"Family: Man, Woman, Boy, Boy","b":"1F468-200D-1F469-200D-1F466-200D-1F466","j":["children","parents","man","woman","family","home","people","boy","human"]},"family-man-woman-girl-girl":{"a":"Family: Man, Woman, Girl, Girl","b":"1F468-200D-1F469-200D-1F467-200D-1F467","j":["children","parents","man","woman","family","girl","home","people","human"]},"family-man-man-boy":{"a":"Family: Man, Man, Boy","b":"1F468-200D-1F468-200D-1F466","j":["children","parents","man","family","home","people","boy","human"]},"family-man-man-girl":{"a":"Family: Man, Man, Girl","b":"1F468-200D-1F468-200D-1F467","j":["children","parents","man","family","girl","home","people","human"]},"family-man-man-girl-boy":{"a":"Family: Man, Man, Girl, Boy","b":"1F468-200D-1F468-200D-1F467-200D-1F466","j":["children","parents","man","family","girl","home","people","boy","human"]},"family-man-man-boy-boy":{"a":"Family: Man, Man, Boy, Boy","b":"1F468-200D-1F468-200D-1F466-200D-1F466","j":["children","parents","man","family","home","people","boy","human"]},"family-man-man-girl-girl":{"a":"Family: Man, Man, Girl, Girl","b":"1F468-200D-1F468-200D-1F467-200D-1F467","j":["children","parents","man","family","girl","home","people","human"]},"family-woman-woman-boy":{"a":"Family: Woman, Woman, Boy","b":"1F469-200D-1F469-200D-1F466","j":["children","parents","woman","family","home","people","boy","human"]},"family-woman-woman-girl":{"a":"Family: Woman, Woman, Girl","b":"1F469-200D-1F469-200D-1F467","j":["children","parents","woman","family","girl","home","people","human"]},"family-woman-woman-girl-boy":{"a":"Family: Woman, Woman, Girl, Boy","b":"1F469-200D-1F469-200D-1F467-200D-1F466","j":["children","parents","woman","family","girl","home","people","boy","human"]},"family-woman-woman-boy-boy":{"a":"Family: Woman, Woman, Boy, Boy","b":"1F469-200D-1F469-200D-1F466-200D-1F466","j":["children","parents","woman","family","home","people","boy","human"]},"family-woman-woman-girl-girl":{"a":"Family: Woman, Woman, Girl, Girl","b":"1F469-200D-1F469-200D-1F467-200D-1F467","j":["children","parents","woman","family","girl","home","people","human"]},"family-man-boy":{"a":"Family: Man, Boy","b":"1F468-200D-1F466","j":["man","parent","family","child","home","people","boy","human"]},"family-man-boy-boy":{"a":"Family: Man, Boy, Boy","b":"1F468-200D-1F466-200D-1F466","j":["children","man","parent","family","home","people","boy","human"]},"family-man-girl":{"a":"Family: Man, Girl","b":"1F468-200D-1F467","j":["man","parent","family","child","girl","home","people","human"]},"family-man-girl-boy":{"a":"Family: Man, Girl, Boy","b":"1F468-200D-1F467-200D-1F466","j":["children","man","parent","family","girl","home","people","boy","human"]},"family-man-girl-girl":{"a":"Family: Man, Girl, Girl","b":"1F468-200D-1F467-200D-1F467","j":["children","man","parent","family","girl","home","people","human"]},"family-woman-boy":{"a":"Family: Woman, Boy","b":"1F469-200D-1F466","j":["woman","family","parent","child","home","people","boy","human"]},"family-woman-boy-boy":{"a":"Family: Woman, Boy, Boy","b":"1F469-200D-1F466-200D-1F466","j":["children","woman","family","parent","home","people","boy","human"]},"family-woman-girl":{"a":"Family: Woman, Girl","b":"1F469-200D-1F467","j":["woman","family","parent","child","girl","home","people","human"]},"family-woman-girl-boy":{"a":"Family: Woman, Girl, Boy","b":"1F469-200D-1F467-200D-1F466","j":["children","woman","family","parent","girl","home","people","boy","human"]},"family-woman-girl-girl":{"a":"Family: Woman, Girl, Girl","b":"1F469-200D-1F467-200D-1F467","j":["children","woman","family","parent","girl","home","people","human"]},"speaking-head":{"a":"Speaking Head","b":"1F5E3","j":["speak","talk","say","sing","user","face","head","silhouette","speaking","human","person"]},"bust-in-silhouette":{"a":"Bust in Silhouette","b":"1F464","j":["bust","user","silhouette","human","person"]},"busts-in-silhouette":{"a":"Busts in Silhouette","b":"1F465","j":["group","bust","user","team","silhouette","human","person"]},"people-hugging":{"a":"People Hugging","b":"1FAC2","j":["thanks","hug","goodbye","hello","care"]},"footprints":{"a":"Footprints","b":"1F463","j":["clothing","print","tracking","feet","footprint","walking","beach"]},"red-hair":{"a":"Red Hair","b":"1F9B0","j":["ginger","red hair","redhead"]},"curly-hair":{"a":"Curly Hair","b":"1F9B1","j":["afro","curly","curly hair","ringlets"]},"white-hair":{"a":"White Hair","b":"1F9B3","j":["gray","hair","old","white"]},"bald":{"a":"Bald","b":"1F9B2","j":["bald","chemotherapy","hairless","no hair","shaven"]},"monkey-face":{"a":"Monkey Face","b":"1F435","j":["animal","circus","face","nature","monkey"]},"monkey":{"a":"Monkey","b":"1F412","j":["banana","animal","circus","nature"]},"gorilla":{"a":"Gorilla","b":"1F98D","j":["animal","circus","nature"]},"orangutan":{"a":"Orangutan","b":"1F9A7","j":["ape","animal"]},"dog-face":{"a":"Dog Face","b":"1F436","j":["animal","dog","pet","friend","nature","puppy","faithful","face","woof"]},"dog":{"a":"Dog","b":"1F415","j":["animal","pet","friend","nature","doge","faithful"]},"guide-dog":{"a":"Guide Dog","b":"1F9AE","j":["accessibility","animal","blind","guide"]},"service-dog":{"a":"Service Dog","b":"1F415-200D-1F9BA","j":["blind","animal","assistance","dog","accessibility","service"]},"poodle":{"a":"Poodle","b":"1F429","j":["animal","dog","pet","nature","101"]},"wolf":{"a":"Wolf","b":"1F43A","j":["animal","face","wild","nature"]},"fox":{"a":"Fox","b":"1F98A","j":["animal","face","nature"]},"raccoon":{"a":"Raccoon","b":"1F99D","j":["curious","animal","sly","nature"]},"cat-face":{"a":"Cat Face","b":"1F431","j":["meow","animal","pet","nature","kitten","cat","face"]},"cat":{"a":"Cat","b":"1F408","j":["animal","pet","cats","meow"]},"black-cat":{"a":"Black Cat","b":"1F408-200D-2B1B","j":["black","unlucky","luck","cat","superstition"]},"lion":{"a":"Lion","b":"1F981","j":["animal","Leo","nature","face","zodiac"]},"tiger-face":{"a":"Tiger Face","b":"1F42F","j":["tiger","animal","roar","wild","nature","danger","cat","face"]},"tiger":{"a":"Tiger","b":"1F405","j":["roar","animal","nature"]},"leopard":{"a":"Leopard","b":"1F406","j":["animal","nature"]},"horse-face":{"a":"Horse Face","b":"1F434","j":["brown","animal","horse","nature","face"]},"horse":{"a":"Horse","b":"1F40E","j":["racehorse","equestrian","animal","racing","luck","gamble"]},"unicorn":{"a":"Unicorn","b":"1F984","j":["nature","animal","mystical","face"]},"zebra":{"a":"Zebra","b":"1F993","j":["safari","stripes","animal","stripe","nature"]},"deer":{"a":"Deer","b":"1F98C","j":["venison","animal","horns","nature"]},"bison":{"a":"Bison","b":"1F9AC","j":["ox","herd","buffalo","wisent"]},"cow-face":{"a":"Cow Face","b":"1F42E","j":["nature","ox","cow","animal","beef","milk","moo","face"]},"ox":{"a":"Ox","b":"1F402","j":["Taurus","animal","cow","beef","bull","zodiac"]},"water-buffalo":{"a":"Water Buffalo","b":"1F403","j":["ox","water","animal","cow","buffalo","nature"]},"cow":{"a":"Cow","b":"1F404","j":["ox","animal","moo","beef","milk","nature"]},"pig-face":{"a":"Pig Face","b":"1F437","j":["pig","animal","nature","face","oink"]},"pig":{"a":"Pig","b":"1F416","j":["animal","sow","nature"]},"boar":{"a":"Boar","b":"1F417","j":["pig","animal","nature"]},"pig-nose":{"a":"Pig Nose","b":"1F43D","j":["pig","animal","nose","face","oink"]},"ram":{"a":"Ram","b":"1F40F","j":["Aries","sheep","male","animal","nature","zodiac"]},"ewe":{"a":"Ewe","b":"1F411","j":["sheep","shipit","animal","wool","female","nature"]},"goat":{"a":"Goat","b":"1F410","j":["Capricorn","animal","zodiac","nature"]},"camel":{"a":"Camel","b":"1F42A","j":["dromedary","hot","animal","desert","hump"]},"twohump-camel":{"a":"Two-Hump Camel","b":"1F42B","j":["camel","two_hump_camel","hot","animal","two-hump camel","desert","nature","bactrian","hump"]},"llama":{"a":"Llama","b":"1F999","j":["alpaca","nature","animal","wool","vicuña","guanaco"]},"giraffe":{"a":"Giraffe","b":"1F992","j":["nature","spots","animal","safari"]},"elephant":{"a":"Elephant","b":"1F418","j":["animal","nature","th","nose","circus"]},"mammoth":{"a":"Mammoth","b":"1F9A3","j":["tusk","extinction","large","woolly","elephant","tusks"]},"rhinoceros":{"a":"Rhinoceros","b":"1F98F","j":["nature","animal","horn"]},"hippopotamus":{"a":"Hippopotamus","b":"1F99B","j":["hippo","animal","nature"]},"mouse-face":{"a":"Mouse Face","b":"1F42D","j":["mouse","animal","cheese_wedge","nature","face","rodent"]},"mouse":{"a":"Mouse","b":"1F401","j":["animal","rodent","nature"]},"rat":{"a":"Rat","b":"1F400","j":["mouse","animal","rodent"]},"hamster":{"a":"Hamster","b":"1F439","j":["pet","animal","face","nature"]},"rabbit-face":{"a":"Rabbit Face","b":"1F430","j":["bunny","animal","spring","magic","pet","rabbit","nature","face"]},"rabbit":{"a":"Rabbit","b":"1F407","j":["bunny","animal","spring","magic","pet","nature"]},"chipmunk":{"a":"Chipmunk","b":"1F43F","j":["animal","squirrel","rodent","nature"]},"beaver":{"a":"Beaver","b":"1F9AB","j":["animal","dam","rodent"]},"hedgehog":{"a":"Hedgehog","b":"1F994","j":["animal","spiny","nature"]},"bat":{"a":"Bat","b":"1F987","j":["blind","vampire","animal","nature"]},"bear":{"a":"Bear","b":"1F43B","j":["animal","face","wild","nature"]},"polar-bear":{"a":"Polar Bear","b":"1F43B-200D-2744-FE0F","j":["bear","animal","white","arctic"]},"koala":{"a":"Koala","b":"1F428","j":["bear","animal","nature"]},"panda":{"a":"Panda","b":"1F43C","j":["animal","face","nature"]},"sloth":{"a":"Sloth","b":"1F9A5","j":["slow","lazy","animal"]},"otter":{"a":"Otter","b":"1F9A6","j":["fishing","animal","playful"]},"skunk":{"a":"Skunk","b":"1F9A8","j":["stink","animal"]},"kangaroo":{"a":"Kangaroo","b":"1F998","j":["jump","hop","australia","marsupial","animal","Australia","nature","joey"]},"badger":{"a":"Badger","b":"1F9A1","j":["animal","pester","nature","honey","honey badger"]},"paw-prints":{"a":"Paw Prints","b":"1F43E","j":["print","tracking","feet","cat","animal","paw","dog","pet","footprints"]},"turkey":{"a":"Turkey","b":"1F983","j":["animal","bird"]},"chicken":{"a":"Chicken","b":"1F414","j":["animal","cluck","bird","nature"]},"rooster":{"a":"Rooster","b":"1F413","j":["nature","animal","chicken","bird"]},"hatching-chick":{"a":"Hatching Chick","b":"1F423","j":["animal","chick","egg","born","baby","bird","hatching","chicken"]},"baby-chick":{"a":"Baby Chick","b":"1F424","j":["animal","chick","baby","bird","chicken"]},"frontfacing-baby-chick":{"a":"Front-Facing Baby Chick","b":"1F425","j":["chicken","animal","front_facing_baby_chick","chick","front-facing baby chick","baby","bird"]},"bird":{"a":"Bird","b":"1F426","j":["fly","animal","spring","tweet","nature"]},"penguin":{"a":"Penguin","b":"1F427","j":["nature","animal","bird"]},"dove":{"a":"Dove","b":"1F54A","j":["animal","fly","peace","bird"]},"eagle":{"a":"Eagle","b":"1F985","j":["nature","animal","bird"]},"duck":{"a":"Duck","b":"1F986","j":["nature","animal","mallard","bird"]},"swan":{"a":"Swan","b":"1F9A2","j":["nature","animal","ugly duckling","cygnet","bird"]},"owl":{"a":"Owl","b":"1F989","j":["wise","nature","animal","bird","hoot"]},"dodo":{"a":"Dodo","b":"1F9A4","j":["extinction","Mauritius","animal","large","bird"]},"feather":{"a":"Feather","b":"1FAB6","j":["fly","flight","plumage","light","bird"]},"flamingo":{"a":"Flamingo","b":"1F9A9","j":["animal","flamboyant","tropical"]},"peacock":{"a":"Peacock","b":"1F99A","j":["ostentatious","animal","peahen","proud","nature","bird"]},"parrot":{"a":"Parrot","b":"1F99C","j":["nature","animal","bird","talk","pirate"]},"frog":{"a":"Frog","b":"1F438","j":["animal","toad","croak","nature","face"]},"crocodile":{"a":"Crocodile","b":"1F40A","j":["alligator","animal","nature","reptile","lizard"]},"turtle":{"a":"Turtle","b":"1F422","j":["slow","animal","tortoise","terrapin","nature"]},"lizard":{"a":"Lizard","b":"1F98E","j":["reptile","animal","nature"]},"snake":{"a":"Snake","b":"1F40D","j":["python","animal","bearer","Ophiuchus","hiss","nature","serpent","evil","zodiac"]},"dragon-face":{"a":"Dragon Face","b":"1F432","j":["dragon","fairy tale","myth","animal","green","chinese","nature","face"]},"dragon":{"a":"Dragon","b":"1F409","j":["fairy tale","myth","animal","green","chinese","nature"]},"sauropod":{"a":"Sauropod","b":"1F995","j":["dinosaur","brontosaurus","animal","brachiosaurus","diplodocus","nature","extinct"]},"trex":{"a":"T-Rex","b":"1F996","j":["dinosaur","t_rex","animal","Tyrannosaurus Rex","tyrannosaurus","nature","extinct"]},"spouting-whale":{"a":"Spouting Whale","b":"1F433","j":["nature","sea","ocean","animal","spouting","whale","face"]},"whale":{"a":"Whale","b":"1F40B","j":["sea","ocean","animal","nature"]},"dolphin":{"a":"Dolphin","b":"1F42C","j":["fish","sea","ocean","animal","flipper","fins","beach","nature"]},"seal":{"a":"Seal","b":"1F9AD","j":["sea","animal","sea lion","creature"]},"fish":{"a":"Fish","b":"1F41F","j":["Pisces","food","animal","nature","zodiac"]},"tropical-fish":{"a":"Tropical Fish","b":"1F420","j":["swim","fish","nemo","ocean","animal","beach","tropical"]},"blowfish":{"a":"Blowfish","b":"1F421","j":["fish","food","sea","ocean","animal","nature"]},"shark":{"a":"Shark","b":"1F988","j":["fish","sea","ocean","animal","fins","beach","nature","jaws"]},"octopus":{"a":"Octopus","b":"1F419","j":["sea","ocean","animal","beach","nature","creature"]},"spiral-shell":{"a":"Spiral Shell","b":"1F41A","j":["sea","beach","nature","spiral","shell"]},"snail":{"a":"Snail","b":"1F40C","j":["slow","animal","shell"]},"butterfly":{"a":"Butterfly","b":"1F98B","j":["pretty","animal","caterpillar","nature","insect"]},"bug":{"a":"Bug","b":"1F41B","j":["nature","animal","worm","insect"]},"ant":{"a":"Ant","b":"1F41C","j":["nature","bug","animal","insect"]},"honeybee":{"a":"Honeybee","b":"1F41D","j":["bee","animal","spring","nature","honey","bug","insect"]},"beetle":{"a":"Beetle","b":"1FAB2","j":["bug","insect"]},"lady-beetle":{"a":"Lady Beetle","b":"1F41E","j":["ladybird","beetle","animal","ladybug","nature","insect"]},"cricket":{"a":"Cricket","b":"1F997","j":["chirp","animal","grasshopper","Orthoptera"]},"cockroach":{"a":"Cockroach","b":"1FAB3","j":["pest","roach","pests","insect"]},"spider":{"a":"Spider","b":"1F577","j":["arachnid","animal","insect"]},"spider-web":{"a":"Spider Web","b":"1F578","j":["spider","web","animal","arachnid","silk","insect"]},"scorpion":{"a":"Scorpion","b":"1F982","j":["Scorpio","animal","scorpio","arachnid","zodiac"]},"mosquito":{"a":"Mosquito","b":"1F99F","j":["virus","animal","fever","disease","malaria","nature","pest","insect"]},"fly":{"a":"Fly","b":"1FAB0","j":["maggot","disease","pest","rotting","insect"]},"worm":{"a":"Worm","b":"1FAB1","j":["annelid","earthworm","animal","parasite"]},"microbe":{"a":"Microbe","b":"1F9A0","j":["amoeba","virus","bacteria","germs"]},"bouquet":{"a":"Bouquet","b":"1F490","j":["flowers","spring","flower","nature"]},"cherry-blossom":{"a":"Cherry Blossom","b":"1F338","j":["blossom","spring","flower","nature","plant","cherry"]},"white-flower":{"a":"White Flower","b":"1F4AE","j":["japanese","spring","flower"]},"rosette":{"a":"Rosette","b":"1F3F5","j":["plant","military","flower","decoration"]},"rose":{"a":"Rose","b":"1F339","j":["flowers","spring","love","valentines","flower"]},"wilted-flower":{"a":"Wilted Flower","b":"1F940","j":["plant","wilted","flower","nature"]},"hibiscus":{"a":"Hibiscus","b":"1F33A","j":["flowers","vegetable","beach","flower","plant"]},"sunflower":{"a":"Sunflower","b":"1F33B","j":["sun","flower","nature","plant","fall"]},"blossom":{"a":"Blossom","b":"1F33C","j":["flowers","yellow","flower","nature"]},"tulip":{"a":"Tulip","b":"1F337","j":["flowers","spring","flower","nature","summer","plant"]},"seedling":{"a":"Seedling","b":"1F331","j":["lawn","spring","young","nature","plant","grass"]},"potted-plant":{"a":"Potted Plant","b":"1FAB4","j":["useless","boring","greenery","house","nurturing","plant","grow"]},"evergreen-tree":{"a":"Evergreen Tree","b":"1F332","j":["plant","tree","nature"]},"deciduous-tree":{"a":"Deciduous Tree","b":"1F333","j":["deciduous","shedding","tree","nature","plant"]},"palm-tree":{"a":"Palm Tree","b":"1F334","j":["mojito","vegetable","palm","beach","tree","nature","summer","plant","tropical"]},"cactus":{"a":"Cactus","b":"1F335","j":["plant","vegetable","nature"]},"sheaf-of-rice":{"a":"Sheaf of Rice","b":"1F33E","j":["rice","grain","nature","ear","plant"]},"herb":{"a":"Herb","b":"1F33F","j":["lawn","vegetable","medicine","leaf","plant","weed","grass"]},"shamrock":{"a":"Shamrock","b":"2618","j":["irish","vegetable","clover","nature","plant"]},"four-leaf-clover":{"a":"Four Leaf Clover","b":"1F340","j":["lucky","irish","four","vegetable","clover","four-leaf clover","leaf","4","nature","plant"]},"maple-leaf":{"a":"Maple Leaf","b":"1F341","j":["ca","vegetable","leaf","falling","nature","plant","maple","fall"]},"fallen-leaf":{"a":"Fallen Leaf","b":"1F342","j":["vegetable","leaf","leaves","falling","nature","plant"]},"leaf-fluttering-in-wind":{"a":"Leaf Fluttering in Wind","b":"1F343","j":["grass","lawn","vegetable","leaf","spring","flutter","wind","tree","nature","plant","blow"]},"grapes":{"a":"Grapes","b":"1F347","j":["wine","food","grape","fruit"]},"melon":{"a":"Melon","b":"1F348","j":["food","fruit","nature"]},"watermelon":{"a":"Watermelon","b":"1F349","j":["summer","food","picnic","fruit"]},"tangerine":{"a":"Tangerine","b":"1F34A","j":["food","orange","fruit","nature"]},"lemon":{"a":"Lemon","b":"1F34B","j":["fruit","citrus","nature"]},"banana":{"a":"Banana","b":"1F34C","j":["food","monkey","fruit"]},"pineapple":{"a":"Pineapple","b":"1F34D","j":["food","fruit","nature"]},"mango":{"a":"Mango","b":"1F96D","j":["food","fruit","tropical"]},"red-apple":{"a":"Red Apple","b":"1F34E","j":["red","fruit","school","mac","apple"]},"green-apple":{"a":"Green Apple","b":"1F34F","j":["green","fruit","apple","nature"]},"pear":{"a":"Pear","b":"1F350","j":["food","fruit","nature"]},"peach":{"a":"Peach","b":"1F351","j":["food","fruit","nature"]},"cherries":{"a":"Cherries","b":"1F352","j":["food","red","fruit","berries","cherry"]},"strawberry":{"a":"Strawberry","b":"1F353","j":["food","nature","berry","fruit"]},"blueberries":{"a":"Blueberries","b":"1FAD0","j":["fruit","berry","blue","bilberry","blueberry"]},"kiwi-fruit":{"a":"Kiwi Fruit","b":"1F95D","j":["food","kiwi","fruit"]},"tomato":{"a":"Tomato","b":"1F345","j":["food","fruit","vegetable","nature"]},"olive":{"a":"Olive","b":"1FAD2","j":["food","fruit"]},"coconut":{"a":"Coconut","b":"1F965","j":["food","fruit","palm","nature","piña colada"]},"avocado":{"a":"Avocado","b":"1F951","j":["food","fruit"]},"eggplant":{"a":"Eggplant","b":"1F346","j":["food","aubergine","vegetable","nature"]},"potato":{"a":"Potato","b":"1F954","j":["food","tuber","vegetable","vegatable","starch"]},"carrot":{"a":"Carrot","b":"1F955","j":["food","vegetable","orange"]},"ear-of-corn":{"a":"Ear of Corn","b":"1F33D","j":["food","vegetable","corn","maize","maze","ear","plant"]},"hot-pepper":{"a":"Hot Pepper","b":"1F336","j":["food","hot","spicy","chili","pepper","chilli"]},"bell-pepper":{"a":"Bell Pepper","b":"1FAD1","j":["fruit","vegetable","capsicum","pepper","plant"]},"cucumber":{"a":"Cucumber","b":"1F952","j":["food","pickle","vegetable","fruit"]},"leafy-green":{"a":"Leafy Green","b":"1F96C","j":["food","vegetable","cabbage","kale","plant","lettuce","bok choy"]},"broccoli":{"a":"Broccoli","b":"1F966","j":["food","wild cabbage","fruit","vegetable"]},"garlic":{"a":"Garlic","b":"1F9C4","j":["cook","food","spice","flavoring"]},"onion":{"a":"Onion","b":"1F9C5","j":["cook","food","spice","flavoring"]},"mushroom":{"a":"Mushroom","b":"1F344","j":["toadstool","plant","vegetable"]},"peanuts":{"a":"Peanuts","b":"1F95C","j":["nut","food","peanut","vegetable"]},"chestnut":{"a":"Chestnut","b":"1F330","j":["plant","squirrel","food"]},"bread":{"a":"Bread","b":"1F35E","j":["food","wheat","loaf","breakfast","toast"]},"croissant":{"a":"Croissant","b":"1F950","j":["food","bread","breakfast","french","roll"]},"baguette-bread":{"a":"Baguette Bread","b":"1F956","j":["food","bread","french","baguette"]},"flatbread":{"a":"Flatbread","b":"1FAD3","j":["food","pita","naan","arepa","lavash","flour"]},"pretzel":{"a":"Pretzel","b":"1F968","j":["twisted","food","bread","convoluted"]},"bagel":{"a":"Bagel","b":"1F96F","j":["food","bread","breakfast","schmear","bakery"]},"pancakes":{"a":"Pancakes","b":"1F95E","j":["flapjacks","food","pancake","hotcakes","breakfast","crêpe","hotcake"]},"waffle":{"a":"Waffle","b":"1F9C7","j":["food","breakfast","indecisive","iron"]},"cheese-wedge":{"a":"Cheese Wedge","b":"1F9C0","j":["food","chadder","cheese"]},"meat-on-bone":{"a":"Meat on Bone","b":"1F356","j":["food","drumstick","bone","good","meat"]},"poultry-leg":{"a":"Poultry Leg","b":"1F357","j":["food","turkey","drumstick","bone","leg","poultry","bird","meat","chicken"]},"cut-of-meat":{"a":"Cut of Meat","b":"1F969","j":["food","porkchop","chop","cow","cut","lambchop","steak","meat"]},"bacon":{"a":"Bacon","b":"1F953","j":["pig","food","pork","breakfast","meat"]},"hamburger":{"a":"Hamburger","b":"1F354","j":["burger","cheeseburger","beef","fast food","burger king","meat","mcdonalds"]},"french-fries":{"a":"French Fries","b":"1F35F","j":["fries","fast food","french","chips","snack"]},"pizza":{"a":"Pizza","b":"1F355","j":["food","cheese","party","slice"]},"hot-dog":{"a":"Hot Dog","b":"1F32D","j":["hotdog","food","sausage","frankfurter"]},"sandwich":{"a":"Sandwich","b":"1F96A","j":["lunch","bread","food"]},"taco":{"a":"Taco","b":"1F32E","j":["mexican","food"]},"burrito":{"a":"Burrito","b":"1F32F","j":["wrap","mexican","food"]},"tamale":{"a":"Tamale","b":"1FAD4","j":["mexican","food","wrapped","masa"]},"stuffed-flatbread":{"a":"Stuffed Flatbread","b":"1F959","j":["food","kebab","stuffed","gyro","falafel","flatbread"]},"falafel":{"a":"Falafel","b":"1F9C6","j":["chickpea","food","meatball"]},"egg":{"a":"Egg","b":"1F95A","j":["food","chicken","breakfast"]},"cooking":{"a":"Cooking","b":"1F373","j":["food","frying","kitchen","breakfast","egg","pan"]},"shallow-pan-of-food":{"a":"Shallow Pan of Food","b":"1F958","j":["food","casserole","cooking","paella","pan","shallow"]},"pot-of-food":{"a":"Pot of Food","b":"1F372","j":["food","stew","pot","soup","meat"]},"fondue":{"a":"Fondue","b":"1FAD5","j":["food","pot","chocolate","melted","Swiss","cheese"]},"bowl-with-spoon":{"a":"Bowl with Spoon","b":"1F963","j":["food","congee","porridge","breakfast","cereal","oatmeal"]},"green-salad":{"a":"Green Salad","b":"1F957","j":["food","healthy","green","lettuce","salad"]},"popcorn":{"a":"Popcorn","b":"1F37F","j":["movie theater","food","films","snack"]},"butter":{"a":"Butter","b":"1F9C8","j":["cook","food","dairy"]},"salt":{"a":"Salt","b":"1F9C2","j":["shaker","condiment"]},"canned-food":{"a":"Canned Food","b":"1F96B","j":["soup","food","can"]},"bento-box":{"a":"Bento Box","b":"1F371","j":["bento","food","japanese","box"]},"rice-cracker":{"a":"Rice Cracker","b":"1F358","j":["rice","japanese","food","cracker"]},"rice-ball":{"a":"Rice Ball","b":"1F359","j":["food","Japanese","rice","ball","japanese"]},"cooked-rice":{"a":"Cooked Rice","b":"1F35A","j":["food","china","rice","asian","cooked"]},"curry-rice":{"a":"Curry Rice","b":"1F35B","j":["food","hot","spicy","curry","rice","indian"]},"steaming-bowl":{"a":"Steaming Bowl","b":"1F35C","j":["food","noodle","steaming","bowl","chopsticks","japanese","ramen"]},"spaghetti":{"a":"Spaghetti","b":"1F35D","j":["pasta","italian","noodle","food"]},"roasted-sweet-potato":{"a":"Roasted Sweet Potato","b":"1F360","j":["food","potato","roasted","nature","sweet"]},"oden":{"a":"Oden","b":"1F362","j":["food","kebab","seafood","skewer","japanese","stick"]},"sushi":{"a":"Sushi","b":"1F363","j":["rice","fish","food","japanese"]},"fried-shrimp":{"a":"Fried Shrimp","b":"1F364","j":["tempura","food","shrimp","animal","prawn","appetizer","summer","fried"]},"fish-cake-with-swirl":{"a":"Fish Cake with Swirl","b":"1F365","j":["fish","food","pink","kamaboko","sea","pastry","narutomaki","cake","swirl","beach","japan","ramen","surimi"]},"moon-cake":{"a":"Moon Cake","b":"1F96E","j":["yuèbǐng","autumn","food","festival"]},"dango":{"a":"Dango","b":"1F361","j":["food","stick","Japanese","skewer","japanese","dessert","sweet","barbecue","meat"]},"dumpling":{"a":"Dumpling","b":"1F95F","j":["food","empanada","jiaozi","potsticker","gyōza","pierogi"]},"fortune-cookie":{"a":"Fortune Cookie","b":"1F960","j":["food","prophecy"]},"takeout-box":{"a":"Takeout Box","b":"1F961","j":["leftovers","food","oyster pail"]},"crab":{"a":"Crab","b":"1F980","j":["Cancer","animal","crustacean","zodiac"]},"lobster":{"a":"Lobster","b":"1F99E","j":["bisque","animal","seafood","claws","nature"]},"shrimp":{"a":"Shrimp","b":"1F990","j":["food","shellfish","ocean","animal","small","seafood","nature"]},"squid":{"a":"Squid","b":"1F991","j":["food","sea","ocean","animal","nature","molusc"]},"oyster":{"a":"Oyster","b":"1F9AA","j":["diving","food","pearl"]},"soft-ice-cream":{"a":"Soft Ice Cream","b":"1F366","j":["food","soft","icecream","ice","hot","dessert","summer","sweet","cream"]},"shaved-ice":{"a":"Shaved Ice","b":"1F367","j":["ice","shaved","hot","dessert","summer","sweet"]},"ice-cream":{"a":"Ice Cream","b":"1F368","j":["food","ice","hot","dessert","sweet","cream"]},"doughnut":{"a":"Doughnut","b":"1F369","j":["food","breakfast","donut","dessert","sweet","snack"]},"cookie":{"a":"Cookie","b":"1F36A","j":["food","oreo","chocolate","dessert","sweet","snack"]},"birthday-cake":{"a":"Birthday Cake","b":"1F382","j":["food","birthday","celebration","pastry","cake","dessert","sweet"]},"shortcake":{"a":"Shortcake","b":"1F370","j":["food","pastry","cake","dessert","sweet","slice"]},"cupcake":{"a":"Cupcake","b":"1F9C1","j":["bakery","food","sweet","dessert"]},"pie":{"a":"Pie","b":"1F967","j":["food","fruit","pastry","filling","dessert","meat"]},"chocolate-bar":{"a":"Chocolate Bar","b":"1F36B","j":["food","chocolate","bar","dessert","sweet","snack"]},"candy":{"a":"Candy","b":"1F36C","j":["sweet","snack","lolly","dessert"]},"lollipop":{"a":"Lollipop","b":"1F36D","j":["candy","food","dessert","sweet","snack"]},"custard":{"a":"Custard","b":"1F36E","j":["sweet","food","dessert","pudding"]},"honey-pot":{"a":"Honey Pot","b":"1F36F","j":["honeypot","pot","kitchen","bees","honey","sweet"]},"baby-bottle":{"a":"Baby Bottle","b":"1F37C","j":["bottle","food","container","milk","drink","baby"]},"glass-of-milk":{"a":"Glass of Milk","b":"1F95B","j":["cow","milk","beverage","drink","glass"]},"hot-beverage":{"a":"Hot Beverage","b":"2615","j":["latte","tea","steaming","coffee","caffeine","hot","espresso","beverage","drink"]},"teapot":{"a":"Teapot","b":"1FAD6","j":["tea","hot","drink","pot"]},"teacup-without-handle":{"a":"Teacup Without Handle","b":"1F375","j":["tea","teacup","british","breakfast","green","beverage","drink","bowl","cup"]},"sake":{"a":"Sake","b":"1F376","j":["bottle","drunk","wine","booze","beverage","bar","drink","japanese","alcohol","cup"]},"bottle-with-popping-cork":{"a":"Bottle with Popping Cork","b":"1F37E","j":["bottle","wine","celebration","cork","bar","drink","popping"]},"wine-glass":{"a":"Wine Glass","b":"1F377","j":["wine","booze","beverage","bar","drink","drunk","alcohol","glass"]},"cocktail-glass":{"a":"Cocktail Glass","b":"1F378","j":["mojito","booze","beverage","bar","cocktail","drink","drunk","alcohol","glass"]},"tropical-drink":{"a":"Tropical Drink","b":"1F379","j":["mojito","booze","beverage","bar","drink","cocktail","beach","summer","alcohol","tropical"]},"beer-mug":{"a":"Beer Mug","b":"1F37A","j":["relax","beer","booze","beverage","bar","drink","summer","drunk","alcohol","pub","mug","party"]},"clinking-beer-mugs":{"a":"Clinking Beer Mugs","b":"1F37B","j":["relax","beer","booze","beverage","bar","drink","summer","drunk","alcohol","pub","mug","clink","party"]},"clinking-glasses":{"a":"Clinking Glasses","b":"1F942","j":["wine","champagne","cheers","toast","beverage","drink","celebrate","alcohol","glass","clink","party"]},"tumbler-glass":{"a":"Tumbler Glass","b":"1F943","j":["whisky","booze","liquor","bourbon","shot","beverage","drink","scotch","drunk","alcohol","glass","tumbler"]},"cup-with-straw":{"a":"Cup with Straw","b":"1F964","j":["soda","soft drink","water","juice","malt","drink"]},"bubble-tea":{"a":"Bubble Tea","b":"1F9CB","j":["tea","boba","milk tea","bubble","straw","milk","taiwan","pearl"]},"beverage-box":{"a":"Beverage Box","b":"1F9C3","j":["straw","juice","beverage","drink","box","sweet"]},"mate":{"a":"Mate","b":"1F9C9","j":["beverage","tea","drink"]},"ice":{"a":"Ice","b":"1F9CA","j":["cold","water","ice cube","iceberg"]},"chopsticks":{"a":"Chopsticks","b":"1F962","j":["jeotgarak","food","hashi","kuaizi"]},"fork-and-knife-with-plate":{"a":"Fork and Knife with Plate","b":"1F37D","j":["food","dinner","knife","cooking","restaurant","plate","meal","lunch","fork","eat"]},"fork-and-knife":{"a":"Fork and Knife","b":"1F374","j":["cooking","knife","kitchen","cutlery","fork"]},"spoon":{"a":"Spoon","b":"1F944","j":["tableware","kitchen","cutlery"]},"kitchen-knife":{"a":"Kitchen Knife","b":"1F52A","j":["blade","cooking","knife","hocho","tool","kitchen","cutlery","weapon"]},"amphora":{"a":"Amphora","b":"1F3FA","j":["jar","cooking","Aquarius","jug","drink","vase","zodiac"]},"globe-showing-europeafrica":{"a":"Globe Showing Europe-Africa","b":"1F30D","j":["Europe","globe showing Europe-Africa","world","international","Africa","globe_showing_europe_africa","earth","globe"]},"globe-showing-americas":{"a":"Globe Showing Americas","b":"1F30E","j":["USA","world","international","globe showing Americas","earth","Americas","globe"]},"globe-showing-asiaaustralia":{"a":"Globe Showing Asia-Australia","b":"1F30F","j":["globe showing Asia-Australia","world","international","Asia","earth","globe_showing_asia_australia","east","Australia","globe"]},"globe-with-meridians":{"a":"Globe with Meridians","b":"1F310","j":["world","international","meridians","internet","earth","interweb","globe","i18n"]},"world-map":{"a":"World Map","b":"1F5FA","j":["location","direction","map","world"]},"map-of-japan":{"a":"Map of Japan","b":"1F5FE","j":["map of Japan","Japan","asia","japanese","country","map","nation"]},"compass":{"a":"Compass","b":"1F9ED","j":["magnetic","orienteering","navigation"]},"snowcapped-mountain":{"a":"Snow-Capped Mountain","b":"1F3D4","j":["snow-capped mountain","snow_capped_mountain","snow","photo","winter","mountain","nature","cold","environment"]},"mountain":{"a":"Mountain","b":"26F0","j":["photo","environment","nature"]},"volcano":{"a":"Volcano","b":"1F30B","j":["photo","eruption","disaster","mountain","nature"]},"mount-fuji":{"a":"Mount Fuji","b":"1F5FB","j":["fuji","photo","mountain","nature","japanese"]},"camping":{"a":"Camping","b":"1F3D5","j":["photo","outdoors","tent"]},"beach-with-umbrella":{"a":"Beach with Umbrella","b":"1F3D6","j":["mojito","sand","umbrella","sunny","beach","summer","weather"]},"desert":{"a":"Desert","b":"1F3DC","j":["photo","saharah","warm"]},"desert-island":{"a":"Desert Island","b":"1F3DD","j":["mojito","photo","desert","island","tropical"]},"national-park":{"a":"National Park","b":"1F3DE","j":["photo","park","environment","nature"]},"stadium":{"a":"Stadium","b":"1F3DF","j":["sports","photo","concert","venue","place"]},"classical-building":{"a":"Classical Building","b":"1F3DB","j":["history","classical","art","culture"]},"building-construction":{"a":"Building Construction","b":"1F3D7","j":["working","construction","progress","wip"]},"brick":{"a":"Brick","b":"1F9F1","j":["clay","bricks","mortar","wall"]},"rock":{"a":"Rock","b":"1FAA8","j":["heavy","solid","boulder","stone"]},"wood":{"a":"Wood","b":"1FAB5","j":["log","trunk","timber","nature","lumber"]},"hut":{"a":"Hut","b":"1F6D6","j":["yurt","roundhouse","structure","house"]},"houses":{"a":"Houses","b":"1F3D8","j":["photo","buildings"]},"derelict-house":{"a":"Derelict House","b":"1F3DA","j":["evict","house","broken","derelict","building","abandon"]},"house":{"a":"House","b":"1F3E0","j":["building","home"]},"house-with-garden":{"a":"House with Garden","b":"1F3E1","j":["nature","house","home","plant","garden"]},"office-building":{"a":"Office Building","b":"1F3E2","j":["building","work","bureau"]},"japanese-post-office":{"a":"Japanese Post Office","b":"1F3E3","j":["communication","envelope","Japanese post office","Japanese","building","post"]},"post-office":{"a":"Post Office","b":"1F3E4","j":["email","building","European","post"]},"hospital":{"a":"Hospital","b":"1F3E5","j":["health","medicine","surgery","doctor","building"]},"bank":{"a":"Bank","b":"1F3E6","j":["business","enterprise","cash","money","building","sales"]},"hotel":{"a":"Hotel","b":"1F3E8","j":["accomodation","building","checkin"]},"love-hotel":{"a":"Love Hotel","b":"1F3E9","j":["love","like","dating","hotel","affection"]},"convenience-store":{"a":"Convenience Store","b":"1F3EA","j":["store","building","groceries","convenience","shopping"]},"school":{"a":"School","b":"1F3EB","j":["student","learn","teach","education","building"]},"department-store":{"a":"Department Store","b":"1F3EC","j":["store","building","department","mall","shopping"]},"factory":{"a":"Factory","b":"1F3ED","j":["smoke","building","pollution","industry"]},"japanese-castle":{"a":"Japanese Castle","b":"1F3EF","j":["castle","building","Japanese","photo"]},"castle":{"a":"Castle","b":"1F3F0","j":["building","royalty","history","European"]},"wedding":{"a":"Wedding","b":"1F492","j":["romance","bride","marriage","love","couple","like","chapel","groom","affection"]},"tokyo-tower":{"a":"Tokyo Tower","b":"1F5FC","j":["photo","japanese","tower","Tokyo"]},"statue-of-liberty":{"a":"Statue of Liberty","b":"1F5FD","j":["statue","newyork","liberty","american"]},"church":{"a":"Church","b":"26EA","j":["religion","cross","building","Christian","christ"]},"mosque":{"a":"Mosque","b":"1F54C","j":["islam","worship","minaret","religion","Muslim"]},"hindu-temple":{"a":"Hindu Temple","b":"1F6D5","j":["temple","religion","hindu"]},"synagogue":{"a":"Synagogue","b":"1F54D","j":["Jew","worship","religion","jewish","temple","Jewish","judaism"]},"shinto-shrine":{"a":"Shinto Shrine","b":"26E9","j":["kyoto","shrine","religion","temple","japan","shinto"]},"kaaba":{"a":"Kaaba","b":"1F54B","j":["islam","religion","mosque","mecca","Muslim"]},"fountain":{"a":"Fountain","b":"26F2","j":["photo","water","fresh","summer"]},"tent":{"a":"Tent","b":"26FA","j":["photo","outdoors","camping"]},"foggy":{"a":"Foggy","b":"1F301","j":["photo","fog","mountain"]},"night-with-stars":{"a":"Night with Stars","b":"1F303","j":["night","downtown","city","evening","star"]},"cityscape":{"a":"Cityscape","b":"1F3D9","j":["photo","night life","urban","city"]},"sunrise-over-mountains":{"a":"Sunrise over Mountains","b":"1F304","j":["morning","photo","sunrise","sun","mountain","view","vacation"]},"sunrise":{"a":"Sunrise","b":"1F305","j":["morning","photo","sun","view","vacation"]},"cityscape-at-dusk":{"a":"Cityscape at Dusk","b":"1F306","j":["dusk","photo","sunset","city","sky","evening","landscape","buildings"]},"sunset":{"a":"Sunset","b":"1F307","j":["dusk","photo","good morning","dawn","sun"]},"bridge-at-night":{"a":"Bridge at Night","b":"1F309","j":["photo","night","bridge","sanfrancisco"]},"hot-springs":{"a":"Hot Springs","b":"2668","j":["relax","steaming","bath","springs","hot","warm","hotsprings"]},"carousel-horse":{"a":"Carousel Horse","b":"1F3A0","j":["photo","carnival","carousel","horse"]},"ferris-wheel":{"a":"Ferris Wheel","b":"1F3A1","j":["photo","wheel","londoneye","amusement park","ferris","carnival"]},"roller-coaster":{"a":"Roller Coaster","b":"1F3A2","j":["roller","photo","playground","amusement park","carnival","coaster","fun"]},"barber-pole":{"a":"Barber Pole","b":"1F488","j":["pole","style","haircut","barber","hair","salon"]},"circus-tent":{"a":"Circus Tent","b":"1F3AA","j":["festival","circus","carnival","party","tent"]},"locomotive":{"a":"Locomotive","b":"1F682","j":["vehicle","train","transportation","steam","railway","engine"]},"railway-car":{"a":"Railway Car","b":"1F683","j":["car","electric","vehicle","train","trolleybus","transportation","railway","tram"]},"highspeed-train":{"a":"High-Speed Train","b":"1F684","j":["vehicle","high_speed_train","train","speed","transportation","shinkansen","railway","high-speed train"]},"bullet-train":{"a":"Bullet Train","b":"1F685","j":["vehicle","train","speed","transportation","bullet","shinkansen","railway","travel","fast","public"]},"train":{"a":"Train","b":"1F686","j":["vehicle","railway","transportation"]},"metro":{"a":"Metro","b":"1F687","j":["transportation","subway","tube","blue-square","mrt","underground"]},"light-rail":{"a":"Light Rail","b":"1F688","j":["vehicle","railway","transportation"]},"station":{"a":"Station","b":"1F689","j":["vehicle","train","transportation","railway","public"]},"tram":{"a":"Tram","b":"1F68A","j":["vehicle","trolleybus","transportation"]},"monorail":{"a":"Monorail","b":"1F69D","j":["vehicle","transportation"]},"mountain-railway":{"a":"Mountain Railway","b":"1F69E","j":["car","vehicle","transportation","railway","mountain"]},"tram-car":{"a":"Tram Car","b":"1F68B","j":["car","vehicle","trolleybus","transportation","carriage","travel","public","tram"]},"bus":{"a":"Bus","b":"1F68C","j":["car","vehicle","transportation"]},"oncoming-bus":{"a":"Oncoming Bus","b":"1F68D","j":["bus","vehicle","transportation","oncoming"]},"trolleybus":{"a":"Trolleybus","b":"1F68E","j":["bus","vehicle","transportation","trolley","bart","tram"]},"minibus":{"a":"Minibus","b":"1F690","j":["bus","vehicle","transportation","car"]},"ambulance":{"a":"Ambulance","b":"1F691","j":["911","vehicle","health","hospital"]},"fire-engine":{"a":"Fire Engine","b":"1F692","j":["cars","truck","vehicle","transportation","fire","engine"]},"police-car":{"a":"Police Car","b":"1F693","j":["cars","car","vehicle","transportation","patrol","police","enforcement","legal","law"]},"oncoming-police-car":{"a":"Oncoming Police Car","b":"1F694","j":["car","vehicle","oncoming","911","police","enforcement","legal","law"]},"taxi":{"a":"Taxi","b":"1F695","j":["cars","vehicle","uber","transportation"]},"oncoming-taxi":{"a":"Oncoming Taxi","b":"1F696","j":["cars","vehicle","oncoming","taxi","uber"]},"automobile":{"a":"Automobile","b":"1F697","j":["car","vehicle","red","transportation"]},"oncoming-automobile":{"a":"Oncoming Automobile","b":"1F698","j":["car","vehicle","automobile","transportation","oncoming"]},"sport-utility-vehicle":{"a":"Sport Utility Vehicle","b":"1F699","j":["vehicle","recreational","transportation","sport utility"]},"pickup-truck":{"a":"Pickup Truck","b":"1F6FB","j":["car","truck","transportation","pickup","pick-up"]},"delivery-truck":{"a":"Delivery Truck","b":"1F69A","j":["cars","truck","transportation","delivery"]},"articulated-lorry":{"a":"Articulated Lorry","b":"1F69B","j":["cars","truck","vehicle","transportation","semi","lorry","express"]},"tractor":{"a":"Tractor","b":"1F69C","j":["car","vehicle","farming","agriculture"]},"racing-car":{"a":"Racing Car","b":"1F3CE","j":["car","sports","racing","race","f1","fast","formula"]},"motorcycle":{"a":"Motorcycle","b":"1F3CD","j":["racing","fast","sports","race"]},"motor-scooter":{"a":"Motor Scooter","b":"1F6F5","j":["vehicle","vespa","sasha","motor","scooter"]},"manual-wheelchair":{"a":"Manual Wheelchair","b":"1F9BD","j":["accessibility"]},"motorized-wheelchair":{"a":"Motorized Wheelchair","b":"1F9BC","j":["accessibility"]},"auto-rickshaw":{"a":"Auto Rickshaw","b":"1F6FA","j":["move","tuk tuk","transportation"]},"bicycle":{"a":"Bicycle","b":"1F6B2","j":["exercise","bike","sports","hipster"]},"kick-scooter":{"a":"Kick Scooter","b":"1F6F4","j":["vehicle","razor","scooter","kick"]},"skateboard":{"a":"Skateboard","b":"1F6F9","j":["board"]},"roller-skate":{"a":"Roller Skate","b":"1F6FC","j":["roller","skate","sports","footwear"]},"bus-stop":{"a":"Bus Stop","b":"1F68F","j":["bus","stop","busstop","transportation","wait"]},"motorway":{"a":"Motorway","b":"1F6E3","j":["highway","road","cupertino","interstate"]},"railway-track":{"a":"Railway Track","b":"1F6E4","j":["railway","train","transportation"]},"oil-drum":{"a":"Oil Drum","b":"1F6E2","j":["oil","barrell","drum"]},"fuel-pump":{"a":"Fuel Pump","b":"26FD","j":["gas","fuel","diesel","pump","fuelpump","station","petroleum","gas station"]},"police-car-light":{"a":"Police Car Light","b":"1F6A8","j":["car","ambulance","911","beacon","light","error","emergency","pinged","police","revolving","legal","law","alert"]},"horizontal-traffic-light":{"a":"Horizontal Traffic Light","b":"1F6A5","j":["light","traffic","signal","transportation"]},"vertical-traffic-light":{"a":"Vertical Traffic Light","b":"1F6A6","j":["traffic","transportation","driving","light","signal"]},"stop-sign":{"a":"Stop Sign","b":"1F6D1","j":["octagonal","stop","sign"]},"construction":{"a":"Construction","b":"1F6A7","j":["progress","caution","wip","barrier","warning"]},"anchor":{"a":"Anchor","b":"2693","j":["boat","ship","sea","tool","ferry"]},"sailboat":{"a":"Sailboat","b":"26F5","j":["boat","yacht","transportation","sea","ship","resort","water","summer","sailing"]},"canoe":{"a":"Canoe","b":"1F6F6","j":["ship","water","boat","paddle"]},"speedboat":{"a":"Speedboat","b":"1F6A4","j":["vehicle","boat","transportation","ship","summer"]},"passenger-ship":{"a":"Passenger Ship","b":"1F6F3","j":["yacht","ship","cruise","ferry","passenger"]},"ferry":{"a":"Ferry","b":"26F4","j":["ship","yacht","boat","passenger"]},"motor-boat":{"a":"Motor Boat","b":"1F6E5","j":["motorboat","ship","boat"]},"ship":{"a":"Ship","b":"1F6A2","j":["boat","transportation","titanic","deploy","passenger"]},"airplane":{"a":"Airplane","b":"2708","j":["vehicle","transportation","flight","aeroplane","fly"]},"small-airplane":{"a":"Small Airplane","b":"1F6E9","j":["vehicle","transportation","flight","aeroplane","fly","airplane"]},"airplane-departure":{"a":"Airplane Departure","b":"1F6EB","j":["check-in","departures","departure","flight","airport","aeroplane","airplane","landing"]},"airplane-arrival":{"a":"Airplane Arrival","b":"1F6EC","j":["flight","airport","arrivals","aeroplane","boarding","arriving","airplane","landing"]},"parachute":{"a":"Parachute","b":"1FA82","j":["hang-glide","parasail","skydive","fly","glide"]},"seat":{"a":"Seat","b":"1F4BA","j":["bus","chair","flight","transport","sit","fly","airplane"]},"helicopter":{"a":"Helicopter","b":"1F681","j":["vehicle","transportation","fly"]},"suspension-railway":{"a":"Suspension Railway","b":"1F69F","j":["vehicle","railway","suspension","transportation"]},"mountain-cableway":{"a":"Mountain Cableway","b":"1F6A0","j":["vehicle","transportation","gondola","cable","mountain","ski"]},"aerial-tramway":{"a":"Aerial Tramway","b":"1F6A1","j":["car","vehicle","transportation","gondola","cable","aerial","ski","tramway"]},"satellite":{"a":"Satellite","b":"1F6F0","j":["communication","gps","spaceflight","ISS","NASA","space","orbit"]},"rocket":{"a":"Rocket","b":"1F680","j":["staffmode","outer_space","NASA","ship","space","fly","outer space","launch"]},"flying-saucer":{"a":"Flying Saucer","b":"1F6F8","j":["vehicle","ufo","transportation","UFO"]},"bellhop-bell":{"a":"Bellhop Bell","b":"1F6CE","j":["bell","bellhop","hotel","service"]},"luggage":{"a":"Luggage","b":"1F9F3","j":["travel","packing"]},"hourglass-done":{"a":"Hourglass Done","b":"231B","j":["test","clock","exam","sand","limit","time","quiz","timer","oldschool"]},"hourglass-not-done":{"a":"Hourglass Not Done","b":"23F3","j":["sand","hourglass","time","countdown","timer","oldschool"]},"watch":{"a":"Watch","b":"231A","j":["time","clock","accessories"]},"alarm-clock":{"a":"Alarm Clock","b":"23F0","j":["time","clock","alarm","wake"]},"stopwatch":{"a":"Stopwatch","b":"23F1","j":["time","clock","deadline"]},"timer-clock":{"a":"Timer Clock","b":"23F2","j":["clock","timer","alarm"]},"mantelpiece-clock":{"a":"Mantelpiece Clock","b":"1F570","j":["time","clock"]},"twelve-oclock":{"a":"Twelve O’Clock","b":"1F55B","j":["o’clock","clock","twelve_o_clock","noon","12","00","late","time","early","twelve","midnight","12:00","midday","schedule"]},"twelvethirty":{"a":"Twelve-Thirty","b":"1F567","j":["clock","late","12","time","schedule","early","twelve_thirty","twelve","twelve-thirty","thirty","12:30"]},"one-oclock":{"a":"One O’Clock","b":"1F550","j":["o’clock","clock","late","00","time","early","one","1","1:00","one_o_clock","schedule"]},"onethirty":{"a":"One-Thirty","b":"1F55C","j":["clock","late","time","schedule","early","one","1","1:30","one_thirty","thirty","one-thirty"]},"two-oclock":{"a":"Two O’Clock","b":"1F551","j":["o’clock","clock","late","00","time","early","two","two_o_clock","2:00","2","schedule"]},"twothirty":{"a":"Two-Thirty","b":"1F55D","j":["2:30","clock","late","two_thirty","time","early","two","two-thirty","2","thirty","schedule"]},"three-oclock":{"a":"Three O’Clock","b":"1F552","j":["o’clock","clock","late","00","three","3","time","early","3:00","three_o_clock","schedule"]},"threethirty":{"a":"Three-Thirty","b":"1F55E","j":["clock","late","three","3","time","early","three_thirty","schedule","three-thirty","thirty","3:30"]},"four-oclock":{"a":"Four O’Clock","b":"1F553","j":["o’clock","clock","four","00","late","time","early","four_o_clock","4","4:00","schedule"]},"fourthirty":{"a":"Four-Thirty","b":"1F55F","j":["clock","four","four-thirty","late","time","4:30","early","four_thirty","4","thirty","schedule"]},"five-oclock":{"a":"Five O’Clock","b":"1F554","j":["o’clock","clock","5:00","00","late","five_o_clock","five","time","early","5","schedule"]},"fivethirty":{"a":"Five-Thirty","b":"1F560","j":["clock","5:30","late","five","time","early","five_thirty","5","five-thirty","thirty","schedule"]},"six-oclock":{"a":"Six O’Clock","b":"1F555","j":["o’clock","clock","late","00","dusk","time","six_o_clock","six","early","dawn","6","6:00","schedule"]},"sixthirty":{"a":"Six-Thirty","b":"1F561","j":["clock","late","six_thirty","time","six","early","6","six-thirty","6:30","thirty","schedule"]},"seven-oclock":{"a":"Seven O’Clock","b":"1F556","j":["o’clock","clock","seven","late","00","7","time","early","seven_o_clock","7:00","schedule"]},"seventhirty":{"a":"Seven-Thirty","b":"1F562","j":["seven_thirty","clock","seven","late","7","time","7:30","early","seven-thirty","thirty","schedule"]},"eight-oclock":{"a":"Eight O’Clock","b":"1F557","j":["o’clock","clock","late","00","8:00","time","early","eight","8","eight_o_clock","schedule"]},"eightthirty":{"a":"Eight-Thirty","b":"1F563","j":["clock","late","eight_thirty","time","8:30","early","eight-thirty","eight","8","thirty","schedule"]},"nine-oclock":{"a":"Nine O’Clock","b":"1F558","j":["o’clock","clock","late","00","nine","nine_o_clock","time","early","9:00","9","schedule"]},"ninethirty":{"a":"Nine-Thirty","b":"1F564","j":["clock","late","nine","time","early","nine-thirty","nine_thirty","9:30","9","thirty","schedule"]},"ten-oclock":{"a":"Ten O’Clock","b":"1F559","j":["o’clock","clock","10","late","00","ten_o_clock","time","early","ten","10:00","schedule"]},"tenthirty":{"a":"Ten-Thirty","b":"1F565","j":["ten-thirty","clock","10","late","time","ten_thirty","early","10:30","ten","thirty","schedule"]},"eleven-oclock":{"a":"Eleven O’Clock","b":"1F55A","j":["o’clock","clock","late","00","time","eleven","11","early","11:00","eleven_o_clock","schedule"]},"eleventhirty":{"a":"Eleven-Thirty","b":"1F566","j":["clock","late","eleven-thirty","time","schedule","eleven","11","early","eleven_thirty","thirty","11:30"]},"new-moon":{"a":"New Moon","b":"1F311","j":["planet","night","space","evening","twilight","nature","dark","moon","sleep"]},"waxing-crescent-moon":{"a":"Waxing Crescent Moon","b":"1F312","j":["planet","night","waxing","space","evening","crescent","twilight","nature","moon","sleep"]},"first-quarter-moon":{"a":"First Quarter Moon","b":"1F313","j":["quarter","planet","night","space","evening","twilight","nature","moon","sleep"]},"waxing-gibbous-moon":{"a":"Waxing Gibbous Moon","b":"1F314","j":["planet","night","waxing","gibbous","gray","space","sky","evening","twilight","nature","moon","sleep"]},"full-moon":{"a":"Full Moon","b":"1F315","j":["yellow","planet","night","full","space","evening","twilight","nature","moon","sleep"]},"waning-gibbous-moon":{"a":"Waning Gibbous Moon","b":"1F316","j":["waning","planet","night","gibbous","space","waxing_gibbous_moon","evening","twilight","nature","moon","sleep"]},"last-quarter-moon":{"a":"Last Quarter Moon","b":"1F317","j":["quarter","planet","night","space","evening","twilight","nature","moon","sleep"]},"waning-crescent-moon":{"a":"Waning Crescent Moon","b":"1F318","j":["waning","planet","night","space","evening","crescent","twilight","nature","moon","sleep"]},"crescent-moon":{"a":"Crescent Moon","b":"1F319","j":["night","magic","sky","evening","crescent","moon","sleep"]},"new-moon-face":{"a":"New Moon Face","b":"1F31A","j":["planet","night","space","evening","twilight","nature","moon","face","sleep"]},"first-quarter-moon-face":{"a":"First Quarter Moon Face","b":"1F31B","j":["quarter","planet","night","space","evening","twilight","nature","moon","face","sleep"]},"last-quarter-moon-face":{"a":"Last Quarter Moon Face","b":"1F31C","j":["quarter","planet","night","space","evening","twilight","nature","moon","face","sleep"]},"thermometer":{"a":"Thermometer","b":"1F321","j":["cold","hot","temperature","weather"]},"sun":{"a":"Sun","b":"2600","j":["rays","spring","sunny","bright","nature","summer","beach","brightness","weather"]},"full-moon-face":{"a":"Full Moon Face","b":"1F31D","j":["planet","night","full","space","evening","bright","twilight","nature","moon","face","sleep"]},"sun-with-face":{"a":"Sun with Face","b":"1F31E","j":["morning","sun","sky","bright","nature","face"]},"ringed-planet":{"a":"Ringed Planet","b":"1FA90","j":["saturn","outerspace","saturnine"]},"star":{"a":"Star","b":"2B50","j":["yellow","night"]},"glowing-star":{"a":"Glowing Star","b":"1F31F","j":["sparkle","night","glow","awesome","glittery","magic","good","star","shining"]},"shooting-star":{"a":"Shooting Star","b":"1F320","j":["night","shooting","photo","falling","star"]},"milky-way":{"a":"Milky Way","b":"1F30C","j":["photo","space","stars"]},"cloud":{"a":"Cloud","b":"2601","j":["sky","weather"]},"sun-behind-cloud":{"a":"Sun Behind Cloud","b":"26C5","j":["morning","cloud","spring","cloudy","sun","nature","fall","weather"]},"cloud-with-lightning-and-rain":{"a":"Cloud with Lightning and Rain","b":"26C8","j":["rain","lightning","thunder","cloud","weather"]},"sun-behind-small-cloud":{"a":"Sun Behind Small Cloud","b":"1F324","j":["sun","cloud","weather"]},"sun-behind-large-cloud":{"a":"Sun Behind Large Cloud","b":"1F325","j":["sun","cloud","weather"]},"sun-behind-rain-cloud":{"a":"Sun Behind Rain Cloud","b":"1F326","j":["rain","sun","cloud","weather"]},"cloud-with-rain":{"a":"Cloud with Rain","b":"1F327","j":["rain","cloud","weather"]},"cloud-with-snow":{"a":"Cloud with Snow","b":"1F328","j":["cold","cloud","snow","weather"]},"cloud-with-lightning":{"a":"Cloud with Lightning","b":"1F329","j":["lightning","cloud","thunder","weather"]},"tornado":{"a":"Tornado","b":"1F32A","j":["whirlwind","twister","cyclone","cloud","weather"]},"fog":{"a":"Fog","b":"1F32B","j":["cloud","weather"]},"wind-face":{"a":"Wind Face","b":"1F32C","j":["air","gust","cloud","wind","blow","face"]},"cyclone":{"a":"Cyclone","b":"1F300","j":["vortex","dizzy","tornado","twister","cloud","hurricane","typhoon","spin","weather","swirl","whirlpool","spiral","blue"]},"rainbow":{"a":"Rainbow","b":"1F308","j":["rain","photo","spring","sky","nature","unicorn_face","happy"]},"closed-umbrella":{"a":"Closed Umbrella","b":"1F302","j":["clothing","drizzle","umbrella","rain","weather"]},"umbrella":{"a":"Umbrella","b":"2602","j":["rain","clothing","spring","weather"]},"umbrella-with-rain-drops":{"a":"Umbrella with Rain Drops","b":"2614","j":["clothing","umbrella","drop","rain","spring","rainy","weather"]},"umbrella-on-ground":{"a":"Umbrella on Ground","b":"26F1","j":["umbrella","rain","sun","summer","weather"]},"high-voltage":{"a":"High Voltage","b":"26A1","j":["electric","zap","lightning","thunder","lightning bolt","fast","voltage","danger","weather"]},"snowflake":{"a":"Snowflake","b":"2744","j":["xmas","snow","christmas","season","winter","cold","weather"]},"snowman":{"a":"Snowman","b":"2603","j":["xmas","snow","christmas","season","winter","weather","cold","frozen"]},"snowman-without-snow":{"a":"Snowman Without Snow","b":"26C4","j":["xmas","snow","christmas","winter","season","frozen","cold","without_snow","snowman","weather"]},"comet":{"a":"Comet","b":"2604","j":["space"]},"fire":{"a":"Fire","b":"1F525","j":["cook","hot","tool","flame"]},"droplet":{"a":"Droplet","b":"1F4A7","j":["sweat","drop","water","spring","drip","comic","cold","faucet"]},"water-wave":{"a":"Water Wave","b":"1F30A","j":["sea","water","ocean","tsunami","disaster","nature","wave"]},"jackolantern":{"a":"Jack-O-Lantern","b":"1F383","j":["jack_o_lantern","pumpkin","jack-o-lantern","celebration","halloween","creepy","light","jack","fall","lantern"]},"christmas-tree":{"a":"Christmas Tree","b":"1F384","j":["xmas","festival","celebration","Christmas","december","tree","vacation"]},"fireworks":{"a":"Fireworks","b":"1F386","j":["festival","photo","celebration","carnival","congratulations"]},"sparkler":{"a":"Sparkler","b":"1F387","j":["stars","night","sparkle","fireworks","celebration","shine"]},"firecracker":{"a":"Firecracker","b":"1F9E8","j":["explode","explosive","fireworks","boom","dynamite","explosion"]},"sparkles":{"a":"Sparkles","b":"2728","j":["*","stars","sparkle","cool","awesome","magic","shiny","good","shine","star"]},"balloon":{"a":"Balloon","b":"1F388","j":["birthday","celebration","circus","party"]},"party-popper":{"a":"Party Popper","b":"1F389","j":["birthday","celebration","tada","magic","popper","congratulations","circus","party"]},"confetti-ball":{"a":"Confetti Ball","b":"1F38A","j":["festival","birthday","celebration","ball","confetti","circus","party"]},"tanabata-tree":{"a":"Tanabata Tree","b":"1F38B","j":["branch","celebration","Japanese","banner","tree","nature","summer","plant"]},"pine-decoration":{"a":"Pine Decoration","b":"1F38D","j":["pine","panda","vegetable","bamboo","celebration","Japanese","nature","plant"]},"japanese-dolls":{"a":"Japanese Dolls","b":"1F38E","j":["Japanese dolls","festival","toy","celebration","Japanese","kimono","japanese","doll"]},"carp-streamer":{"a":"Carp Streamer","b":"1F38F","j":["fish","celebration","carp","banner","streamer","japanese","koinobori"]},"wind-chime":{"a":"Wind Chime","b":"1F390","j":["spring","celebration","ding","chime","bell","wind","nature"]},"moon-viewing-ceremony":{"a":"Moon Viewing Ceremony","b":"1F391","j":["ceremony","photo","celebration","tsukimi","asia","japan","moon"]},"red-envelope":{"a":"Red Envelope","b":"1F9E7","j":["good luck","hóngbāo","lai see","gift","money"]},"ribbon":{"a":"Ribbon","b":"1F380","j":["pink","decoration","celebration","girl","bowtie"]},"wrapped-gift":{"a":"Wrapped Gift","b":"1F381","j":["xmas","wrapped","christmas","birthday","celebration","present","gift","box"]},"reminder-ribbon":{"a":"Reminder Ribbon","b":"1F397","j":["cause","ribbon","sports","support","celebration","reminder","awareness"]},"admission-tickets":{"a":"Admission Tickets","b":"1F39F","j":["entrance","sports","admission","concert","ticket"]},"ticket":{"a":"Ticket","b":"1F3AB","j":["concert","admission","pass","event"]},"military-medal":{"a":"Military Medal","b":"1F396","j":["winning","military","award","celebration","army","medal"]},"trophy":{"a":"Trophy","b":"1F3C6","j":["ftw","win","prize","award","ceremony","contest","place"]},"sports-medal":{"a":"Sports Medal","b":"1F3C5","j":["medal","winning","award"]},"1st-place-medal":{"a":"1st Place Medal","b":"1F947","j":["winning","gold","award","first","medal"]},"2nd-place-medal":{"a":"2nd Place Medal","b":"1F948","j":["medal","second","silver","award"]},"3rd-place-medal":{"a":"3rd Place Medal","b":"1F949","j":["medal","third","bronze","award"]},"soccer-ball":{"a":"Soccer Ball","b":"26BD","j":["football","soccer","sports","ball"]},"baseball":{"a":"Baseball","b":"26BE","j":["balls","sports","ball"]},"softball":{"a":"Softball","b":"1F94E","j":["sports","balls","underarm","glove","ball"]},"basketball":{"a":"Basketball","b":"1F3C0","j":["sports","balls","ball","NBA","hoop"]},"volleyball":{"a":"Volleyball","b":"1F3D0","j":["game","balls","sports","ball"]},"american-football":{"a":"American Football","b":"1F3C8","j":["NFL","sports","balls","ball","football","american"]},"rugby-football":{"a":"Rugby Football","b":"1F3C9","j":["sports","team","rugby","ball","football"]},"tennis":{"a":"Tennis","b":"1F3BE","j":["sports","balls","green","racquet","ball"]},"flying-disc":{"a":"Flying Disc","b":"1F94F","j":["ultimate","sports","frisbee"]},"bowling":{"a":"Bowling","b":"1F3B3","j":["sports","ball","game","play","fun"]},"cricket-game":{"a":"Cricket Game","b":"1F3CF","j":["game","bat","sports","ball"]},"field-hockey":{"a":"Field Hockey","b":"1F3D1","j":["sports","hockey","ball","stick","game","field"]},"ice-hockey":{"a":"Ice Hockey","b":"1F3D2","j":["ice","sports","hockey","puck","stick","game"]},"lacrosse":{"a":"Lacrosse","b":"1F94D","j":["stick","sports","goal","ball"]},"ping-pong":{"a":"Ping Pong","b":"1F3D3","j":["bat","pingpong","sports","paddle","table tennis","ball","game"]},"badminton":{"a":"Badminton","b":"1F3F8","j":["birdie","sports","racquet","game","shuttlecock"]},"boxing-glove":{"a":"Boxing Glove","b":"1F94A","j":["boxing","glove","sports","fighting"]},"martial-arts-uniform":{"a":"Martial Arts Uniform","b":"1F94B","j":["taekwondo","karate","uniform","martial arts","judo"]},"goal-net":{"a":"Goal Net","b":"1F945","j":["net","sports","goal"]},"flag-in-hole":{"a":"Flag in Hole","b":"26F3","j":["business","hole","sports","golf","flag","summer"]},"ice-skate":{"a":"Ice Skate","b":"26F8","j":["skate","sports","ice"]},"fishing-pole":{"a":"Fishing Pole","b":"1F3A3","j":["pole","fish","food","hobby","summer"]},"diving-mask":{"a":"Diving Mask","b":"1F93F","j":["scuba","sport","ocean","diving","snorkeling"]},"running-shirt":{"a":"Running Shirt","b":"1F3BD","j":["running","sash","pageant","shirt","athletics","play"]},"skis":{"a":"Skis","b":"1F3BF","j":["sports","snow","winter","cold","ski"]},"sled":{"a":"Sled","b":"1F6F7","j":["luge","sledge","sleigh","toboggan"]},"curling-stone":{"a":"Curling Stone","b":"1F94C","j":["game","sports","rock"]},"bullseye":{"a":"Bullseye","b":"1F3AF","j":["dart","direct hit","target","bar","hit","game","direct_hit","play"]},"yoyo":{"a":"Yo-Yo","b":"1FA80","j":["toy","yo-yo","fluctuate","yo_yo"]},"kite":{"a":"Kite","b":"1FA81","j":["wind","soar","fly"]},"pool-8-ball":{"a":"Pool 8 Ball","b":"1F3B1","j":["8","billiard","pool","hobby","luck","magic","eight","ball","game"]},"crystal-ball":{"a":"Crystal Ball","b":"1F52E","j":["fairy tale","tool","fantasy","magic","crystal","fortune_teller","ball","fortune","disco","circus","party"]},"magic-wand":{"a":"Magic Wand","b":"1FA84","j":["wizard","witch","magic","supernature","power"]},"nazar-amulet":{"a":"Nazar Amulet","b":"1F9FF","j":["nazar","talisman","evil-eye","bead","charm"]},"video-game":{"a":"Video Game","b":"1F3AE","j":["console","PS4","controller","game","play"]},"joystick":{"a":"Joystick","b":"1F579","j":["game","video game","play"]},"slot-machine":{"a":"Slot Machine","b":"1F3B0","j":["casino","bet","vegas","luck","slot","gamble","game","fruit machine"]},"game-die":{"a":"Game Die","b":"1F3B2","j":["random","tabletop","luck","die","game","dice","play"]},"puzzle-piece":{"a":"Puzzle Piece","b":"1F9E9","j":["puzzle","piece","jigsaw","interlocking","clue"]},"teddy-bear":{"a":"Teddy Bear","b":"1F9F8","j":["toy","plaything","plush","stuffed"]},"piata":{"a":"Piñata","b":"1FA85","j":["candy","celebration","mexico","pinata","piñata","party"]},"nesting-dolls":{"a":"Nesting Dolls","b":"1FA86","j":["matryoshka","toy","nesting","doll","russia"]},"spade-suit":{"a":"Spade Suit","b":"2660","j":["cards","suits","card","magic","game","poker"]},"heart-suit":{"a":"Heart Suit","b":"2665","j":["cards","suits","card","magic","game","poker"]},"diamond-suit":{"a":"Diamond Suit","b":"2666","j":["cards","suits","card","magic","game","poker"]},"club-suit":{"a":"Club Suit","b":"2663","j":["cards","suits","card","magic","game","poker"]},"chess-pawn":{"a":"Chess Pawn","b":"265F","j":["chess","dupe","expendable"]},"joker":{"a":"Joker","b":"1F0CF","j":["cards","card","magic","wildcard","game","poker","play"]},"mahjong-red-dragon":{"a":"Mahjong Red Dragon","b":"1F004","j":["red","mahjong","chinese","kanji","game","play"]},"flower-playing-cards":{"a":"Flower Playing Cards","b":"1F3B4","j":["card","red","sunset","Japanese","playing","flower","game"]},"performing-arts":{"a":"Performing Arts","b":"1F3AD","j":["theatre","drama","acting","mask","performing","art","theater"]},"framed-picture":{"a":"Framed Picture","b":"1F5BC","j":["frame","photography","museum","art","picture","painting"]},"artist-palette":{"a":"Artist Palette","b":"1F3A8","j":["draw","paint","museum","palette","design","colors","art","painting"]},"thread":{"a":"Thread","b":"1F9F5","j":["needle","spool","sewing","string"]},"sewing-needle":{"a":"Sewing Needle","b":"1FAA1","j":["needle","sewing","embroidery","sutures","stitches","tailoring"]},"yarn":{"a":"Yarn","b":"1F9F6","j":["knit","crochet","ball"]},"knot":{"a":"Knot","b":"1FAA2","j":["rope","twist","tangled","tie","twine","scout"]},"glasses":{"a":"Glasses","b":"1F453","j":["eyeglasses","nerdy","clothing","dork","eye","accessories","eyesight","fashion","geek","eyewear"]},"sunglasses":{"a":"Sunglasses","b":"1F576","j":["cool","glasses","eye","accessories","dark","eyewear","face"]},"goggles":{"a":"Goggles","b":"1F97D","j":["swimming","eyes","eye protection","welding","safety","protection"]},"lab-coat":{"a":"Lab Coat","b":"1F97C","j":["chemist","doctor","scientist","experiment"]},"safety-vest":{"a":"Safety Vest","b":"1F9BA","j":["vest","emergency","safety","protection"]},"necktie":{"a":"Necktie","b":"1F454","j":["business","clothing","suitup","shirt","tie","fashion","formal","cloth"]},"tshirt":{"a":"T-Shirt","b":"1F455","j":["casual","clothing","t_shirt","shirt","fashion","tee","t-shirt","cloth"]},"jeans":{"a":"Jeans","b":"1F456","j":["clothing","trousers","fashion","pants","shopping"]},"scarf":{"a":"Scarf","b":"1F9E3","j":["clothes","neck","winter"]},"gloves":{"a":"Gloves","b":"1F9E4","j":["clothes","hand","winter","hands"]},"coat":{"a":"Coat","b":"1F9E5","j":["jacket"]},"socks":{"a":"Socks","b":"1F9E6","j":["clothes","stockings","stocking"]},"dress":{"a":"Dress","b":"1F457","j":["clothes","clothing","fashion","shopping"]},"kimono":{"a":"Kimono","b":"1F458","j":["clothing","dress","female","fashion","japanese","women"]},"sari":{"a":"Sari","b":"1F97B","j":["clothing","dress"]},"onepiece-swimsuit":{"a":"One-Piece Swimsuit","b":"1FA71","j":["bathing suit","fashion","one-piece swimsuit","one_piece_swimsuit"]},"briefs":{"a":"Briefs","b":"1FA72","j":["clothing","swimsuit","one-piece","bathing suit","underwear"]},"shorts":{"a":"Shorts","b":"1FA73","j":["underwear","clothing","pants","bathing suit"]},"bikini":{"a":"Bikini","b":"1F459","j":["swim","clothing","woman","swimming","female","girl","fashion","beach","summer"]},"womans-clothes":{"a":"Woman’S Clothes","b":"1F45A","j":["clothing","shopping_bags","woman","woman_s_clothes","female","woman’s clothes","fashion"]},"purse":{"a":"Purse","b":"1F45B","j":["clothing","accessories","shopping","money","sales","fashion","coin"]},"handbag":{"a":"Handbag","b":"1F45C","j":["clothing","purse","accessory","accessories","fashion","bag","shopping"]},"clutch-bag":{"a":"Clutch Bag","b":"1F45D","j":["clothing","accessories","shopping","bag","pouch"]},"shopping-bags":{"a":"Shopping Bags","b":"1F6CD","j":["purchase","buy","bag","hotel","mall","shopping"]},"backpack":{"a":"Backpack","b":"1F392","j":["satchel","school","student","education","bag","rucksack"]},"thong-sandal":{"a":"Thong Sandal","b":"1FA74","j":["zōri","thongs","sandals","thong sandals","footwear","summer","beach sandals"]},"mans-shoe":{"a":"Man’S Shoe","b":"1F45E","j":["shoe","clothing","male","man","fashion","man_s_shoe","man’s shoe"]},"running-shoe":{"a":"Running Shoe","b":"1F45F","j":["shoe","clothing","sports","shoes","sneakers","athletic","sneaker"]},"hiking-boot":{"a":"Hiking Boot","b":"1F97E","j":["hiking","backpacking","camping","boot"]},"flat-shoe":{"a":"Flat Shoe","b":"1F97F","j":["slipper","slip-on","ballet flat","ballet"]},"highheeled-shoe":{"a":"High-Heeled Shoe","b":"1F460","j":["shoe","clothing","shoes","woman","stiletto","female","heel","pumps","fashion","high_heeled_shoe","high-heeled shoe"]},"womans-sandal":{"a":"Woman’S Sandal","b":"1F461","j":["shoe","flip flops","clothing","shoes","woman","woman_s_sandal","sandal","fashion","woman’s sandal"]},"ballet-shoes":{"a":"Ballet Shoes","b":"1FA70","j":["ballet","dance"]},"womans-boot":{"a":"Woman’S Boot","b":"1F462","j":["shoe","clothing","shoes","woman","woman’s boot","fashion","boot","woman_s_boot"]},"crown":{"a":"Crown","b":"1F451","j":["clothing","royalty","queen","leader","lord","kod","king"]},"womans-hat":{"a":"Woman’S Hat","b":"1F452","j":["clothing","hat","woman’s hat","woman","spring","woman_s_hat","accessories","female","fashion","lady"]},"top-hat":{"a":"Top Hat","b":"1F3A9","j":["clothing","hat","tophat","classy","top","magic","gentleman","circus"]},"graduation-cap":{"a":"Graduation Cap","b":"1F393","j":["clothing","hat","school","cap","celebration","degree","learn","education","university","graduation","legal","college"]},"billed-cap":{"a":"Billed Cap","b":"1F9E2","j":["cap","baseball","baseball cap"]},"military-helmet":{"a":"Military Helmet","b":"1FA96","j":["military","army","helmet","protection","warrior","soldier"]},"rescue-workers-helmet":{"a":"Rescue Worker’S Helmet","b":"26D1","j":["hat","rescue worker’s helmet","construction","build","cross","aid","helmet","rescue_worker_s_helmet","face"]},"prayer-beads":{"a":"Prayer Beads","b":"1F4FF","j":["beads","clothing","religion","religious","dhikr","necklace","prayer"]},"lipstick":{"a":"Lipstick","b":"1F484","j":["woman","female","makeup","girl","fashion","cosmetics"]},"ring":{"a":"Ring","b":"1F48D","j":["wedding","gem","marriage","jewelry","valentines","propose","fashion","diamond","engagement"]},"gem-stone":{"a":"Gem Stone","b":"1F48E","j":["gem","ruby","jewel","jewelry","diamond","blue"]},"muted-speaker":{"a":"Muted Speaker","b":"1F507","j":["speaker","sound","silent","mute","silence","volume","quiet"]},"speaker-low-volume":{"a":"Speaker Low Volume","b":"1F508","j":["broadcast","soft","silence","volume","sound"]},"speaker-medium-volume":{"a":"Speaker Medium Volume","b":"1F509","j":["speaker","volume","medium","broadcast"]},"speaker-high-volume":{"a":"Speaker High Volume","b":"1F50A","j":["speaker","broadcast","noise","loud","volume","noisy"]},"loudspeaker":{"a":"Loudspeaker","b":"1F4E2","j":["volume","public address","sound","loud"]},"megaphone":{"a":"Megaphone","b":"1F4E3","j":["speaker","cheering","sound","volume"]},"postal-horn":{"a":"Postal Horn","b":"1F4EF","j":["postal","horn","music","post","instrument"]},"bell":{"a":"Bell","b":"1F514","j":["xmas","christmas","chime","notification","sound"]},"bell-with-slash":{"a":"Bell with Slash","b":"1F515","j":["silent","mute","bell","volume","sound","forbidden","quiet"]},"musical-score":{"a":"Musical Score","b":"1F3BC","j":["score","treble","clef","compose","music"]},"musical-note":{"a":"Musical Note","b":"1F3B5","j":["score","note","music","tone","sound"]},"musical-notes":{"a":"Musical Notes","b":"1F3B6","j":["note","score","music","notes"]},"studio-microphone":{"a":"Studio Microphone","b":"1F399","j":["mic","recording","microphone","sing","talkshow","music","artist","studio"]},"level-slider":{"a":"Level Slider","b":"1F39A","j":["scale","slider","music","level"]},"control-knobs":{"a":"Control Knobs","b":"1F39B","j":["control","dial","music","knobs"]},"microphone":{"a":"Microphone","b":"1F3A4","j":["mic","karaoke","sing","PA","talkshow","music","sound"]},"headphone":{"a":"Headphone","b":"1F3A7","j":["gadgets","earbud","music","score"]},"radio":{"a":"Radio","b":"1F4FB","j":["podcast","communication","video","program","music"]},"saxophone":{"a":"Saxophone","b":"1F3B7","j":["sax","jazz","blues","music","instrument"]},"accordion":{"a":"Accordion","b":"1FA97","j":["concertina","music","squeeze box"]},"guitar":{"a":"Guitar","b":"1F3B8","j":["instrument","music"]},"musical-keyboard":{"a":"Musical Keyboard","b":"1F3B9","j":["piano","keyboard","compose","music","instrument"]},"trumpet":{"a":"Trumpet","b":"1F3BA","j":["brass","instrument","music"]},"violin":{"a":"Violin","b":"1F3BB","j":["orchestra","instrument","music","symphony"]},"banjo":{"a":"Banjo","b":"1FA95","j":["instructment","stringed","music"]},"drum":{"a":"Drum","b":"1F941","j":["drumsticks","instrument","music","snare"]},"long-drum":{"a":"Long Drum","b":"1FA98","j":["beat","rhythm","drum","music","conga"]},"mobile-phone":{"a":"Mobile Phone","b":"1F4F1","j":["gadgets","dial","mobile","cell","phone","telephone","technology","apple"]},"mobile-phone-with-arrow":{"a":"Mobile Phone with Arrow","b":"1F4F2","j":["mobile","receive","arrow","cell","incoming","iphone","phone"]},"telephone":{"a":"Telephone","b":"260E","j":["dial","communication","phone","technology"]},"telephone-receiver":{"a":"Telephone Receiver","b":"1F4DE","j":["communication","dial","receiver","telephone","technology","phone"]},"pager":{"a":"Pager","b":"1F4DF","j":["bbcall","90s","oldschool"]},"fax-machine":{"a":"Fax Machine","b":"1F4E0","j":["communication","fax","technology"]},"battery":{"a":"Battery","b":"1F50B","j":["sustain","energy","power"]},"electric-plug":{"a":"Electric Plug","b":"1F50C","j":["electric","electricity","plug","charger","power"]},"laptop":{"a":"Laptop","b":"1F4BB","j":["screen","personal","display","technology","computer","pc","monitor"]},"desktop-computer":{"a":"Desktop Computer","b":"1F5A5","j":["screen","desktop","technology","computer","computing"]},"printer":{"a":"Printer","b":"1F5A8","j":["paper","ink","computer"]},"keyboard":{"a":"Keyboard","b":"2328","j":["type","text","technology","computer","input"]},"computer-mouse":{"a":"Computer Mouse","b":"1F5B1","j":["click","computer"]},"trackball":{"a":"Trackball","b":"1F5B2","j":["trackpad","technology","computer"]},"computer-disk":{"a":"Computer Disk","b":"1F4BD","j":["90s","optical","minidisk","technology","computer","record","data","disk"]},"floppy-disk":{"a":"Floppy Disk","b":"1F4BE","j":["oldschool","80s","90s","floppy","technology","computer","save","disk"]},"optical-disk":{"a":"Optical Disk","b":"1F4BF","j":["90s","disc","optical","cd","technology","computer","dvd","disk"]},"dvd":{"a":"Dvd","b":"1F4C0","j":["blu-ray","disc","optical","cd","computer","disk"]},"abacus":{"a":"Abacus","b":"1F9EE","j":["calculation"]},"movie-camera":{"a":"Movie Camera","b":"1F3A5","j":["movie","camera","cinema","film","record"]},"film-frames":{"a":"Film Frames","b":"1F39E","j":["cinema","frames","movie","film"]},"film-projector":{"a":"Film Projector","b":"1F4FD","j":["movie","cinema","projector","video","film","record","tape"]},"clapper-board":{"a":"Clapper Board","b":"1F3AC","j":["clapper","movie","record","film"]},"television":{"a":"Television","b":"1F4FA","j":["video","program","tv","technology","oldschool","show"]},"camera":{"a":"Camera","b":"1F4F7","j":["gadgets","video","photography"]},"camera-with-flash":{"a":"Camera with Flash","b":"1F4F8","j":["gadgets","camera","photography","flash","video"]},"video-camera":{"a":"Video Camera","b":"1F4F9","j":["record","camera","video","film"]},"videocassette":{"a":"Videocassette","b":"1F4FC","j":["vhs","80s","90s","video","oldschool","record","tape"]},"magnifying-glass-tilted-left":{"a":"Magnifying Glass Tilted Left","b":"1F50D","j":["find","zoom","detective","search","tool","magnifying","glass"]},"magnifying-glass-tilted-right":{"a":"Magnifying Glass Tilted Right","b":"1F50E","j":["find","zoom","detective","search","tool","magnifying","glass"]},"candle":{"a":"Candle","b":"1F56F","j":["light","fire","wax"]},"light-bulb":{"a":"Light Bulb","b":"1F4A1","j":["electric","electricity","idea","light","comic","bulb"]},"flashlight":{"a":"Flashlight","b":"1F526","j":["electric","torch","sight","night","tool","light","dark","camping"]},"red-paper-lantern":{"a":"Red Paper Lantern","b":"1F3EE","j":["red","paper","halloween","spooky","light","bar","lantern"]},"diya-lamp":{"a":"Diya Lamp","b":"1FA94","j":["oil","lamp","diya","lighting"]},"notebook-with-decorative-cover":{"a":"Notebook with Decorative Cover","b":"1F4D4","j":["decorated","notebook","cover","paper","book","record","study","notes","classroom"]},"closed-book":{"a":"Closed Book","b":"1F4D5","j":["closed","read","learn","textbook","book","knowledge","library"]},"open-book":{"a":"Open Book","b":"1F4D6","j":["open","read","learn","book","literature","knowledge","library","study"]},"green-book":{"a":"Green Book","b":"1F4D7","j":["read","green","book","knowledge","library","study"]},"blue-book":{"a":"Blue Book","b":"1F4D8","j":["read","learn","book","knowledge","library","study","blue"]},"orange-book":{"a":"Orange Book","b":"1F4D9","j":["read","orange","textbook","book","knowledge","library","study"]},"books":{"a":"Books","b":"1F4DA","j":["library","book","study","literature"]},"notebook":{"a":"Notebook","b":"1F4D3","j":["paper","stationery","record","study","notes"]},"ledger":{"a":"Ledger","b":"1F4D2","j":["paper","notes","notebook"]},"page-with-curl":{"a":"Page with Curl","b":"1F4C3","j":["document","paper","documents","page","office","curl"]},"scroll":{"a":"Scroll","b":"1F4DC","j":["paper","documents","ancient","history"]},"page-facing-up":{"a":"Page Facing Up","b":"1F4C4","j":["document","information","paper","documents","page","office"]},"newspaper":{"a":"Newspaper","b":"1F4F0","j":["paper","news","press","headline"]},"rolledup-newspaper":{"a":"Rolled-Up Newspaper","b":"1F5DE","j":["rolled","paper","press","newspaper","news","rolled-up newspaper","rolled_up_newspaper","headline"]},"bookmark-tabs":{"a":"Bookmark Tabs","b":"1F4D1","j":["order","bookmark","tidy","mark","marker","save","favorite","tabs"]},"bookmark":{"a":"Bookmark","b":"1F516","j":["save","label","mark","favorite"]},"label":{"a":"Label","b":"1F3F7","j":["tag","sale"]},"money-bag":{"a":"Money Bag","b":"1F4B0","j":["sale","payment","coins","dollar","moneybag","money","bag"]},"coin":{"a":"Coin","b":"1FA99","j":["gold","currency","money","treasure","silver","metal"]},"yen-banknote":{"a":"Yen Banknote","b":"1F4B4","j":["banknote","currency","bill","note","dollar","money","sales","yen","japanese"]},"dollar-banknote":{"a":"Dollar Banknote","b":"1F4B5","j":["banknote","currency","bill","dollar","note","money","sales"]},"euro-banknote":{"a":"Euro Banknote","b":"1F4B6","j":["banknote","currency","bill","euro","note","dollar","money","sales"]},"pound-banknote":{"a":"Pound Banknote","b":"1F4B7","j":["banknote","uk","currency","bill","british","sterling","note","money","sales","bills","england","pound"]},"money-with-wings":{"a":"Money with Wings","b":"1F4B8","j":["banknote","bill","sale","wings","payment","dollar","money","bills","fly"]},"credit-card":{"a":"Credit Card","b":"1F4B3","j":["credit","card","bill","payment","dollar","money","sales","shopping"]},"receipt":{"a":"Receipt","b":"1F9FE","j":["evidence","proof","accounting","expenses","bookkeeping"]},"chart-increasing-with-yen":{"a":"Chart Increasing with Yen","b":"1F4B9","j":["stats","presentation","growth","green-square","money","chart","yen","graph"]},"envelope":{"a":"Envelope","b":"2709","j":["postal","letter","communication","email","inbox"]},"email":{"a":"E-Mail","b":"1F4E7","j":["letter","communication","e_mail","inbox","e-mail","mail"]},"incoming-envelope":{"a":"Incoming Envelope","b":"1F4E8","j":["letter","envelope","receive","email","incoming","e-mail","inbox"]},"envelope-with-arrow":{"a":"Envelope with Arrow","b":"1F4E9","j":["communication","envelope","email","arrow","outgoing","e-mail"]},"outbox-tray":{"a":"Outbox Tray","b":"1F4E4","j":["letter","sent","email","outbox","tray","box","mail","inbox"]},"inbox-tray":{"a":"Inbox Tray","b":"1F4E5","j":["letter","receive","email","documents","tray","box","mail","inbox"]},"package":{"a":"Package","b":"1F4E6","j":["cardboard","gift","moving","box","parcel","mail"]},"closed-mailbox-with-raised-flag":{"a":"Closed Mailbox with Raised Flag","b":"1F4EB","j":["communication","closed","email","inbox","mailbox","mail","postbox"]},"closed-mailbox-with-lowered-flag":{"a":"Closed Mailbox with Lowered Flag","b":"1F4EA","j":["communication","closed","email","lowered","inbox","mailbox","mail","postbox"]},"open-mailbox-with-raised-flag":{"a":"Open Mailbox with Raised Flag","b":"1F4EC","j":["communication","open","email","inbox","mailbox","mail","postbox"]},"open-mailbox-with-lowered-flag":{"a":"Open Mailbox with Lowered Flag","b":"1F4ED","j":["open","email","lowered","inbox","mailbox","mail","postbox"]},"postbox":{"a":"Postbox","b":"1F4EE","j":["letter","envelope","email","mailbox","mail"]},"ballot-box-with-ballot":{"a":"Ballot Box with Ballot","b":"1F5F3","j":["election","ballot","box","vote"]},"pencil":{"a":"Pencil","b":"270F","j":["paper","school","write","stationery","writing","study"]},"black-nib":{"a":"Black Nib","b":"2712","j":["pen","write","stationery","writing","nib"]},"fountain-pen":{"a":"Fountain Pen","b":"1F58B","j":["pen","write","stationery","fountain","writing"]},"pen":{"a":"Pen","b":"1F58A","j":["stationery","ballpoint","writing","write"]},"paintbrush":{"a":"Paintbrush","b":"1F58C","j":["drawing","art","creativity","painting"]},"crayon":{"a":"Crayon","b":"1F58D","j":["drawing","creativity"]},"memo":{"a":"Memo","b":"1F4DD","j":["test","exam","paper","quiz","write","pencil","stationery","documents","compose","legal","writing","study"]},"briefcase":{"a":"Briefcase","b":"1F4BC","j":["business","documents","work","legal","job","law","career"]},"file-folder":{"a":"File Folder","b":"1F4C1","j":["business","file","folder","documents","office"]},"open-file-folder":{"a":"Open File Folder","b":"1F4C2","j":["open","file","load","folder","documents"]},"card-index-dividers":{"a":"Card Index Dividers","b":"1F5C2","j":["business","card","index","dividers","stationery","organizing"]},"calendar":{"a":"Calendar","b":"1F4C5","j":["date","schedule"]},"tearoff-calendar":{"a":"Tear-off Calendar","b":"1F4C6","j":["tear-off calendar","tear_off_calendar","planning","calendar","date","schedule"]},"spiral-notepad":{"a":"Spiral Notepad","b":"1F5D2","j":["memo","stationery","note","pad","spiral"]},"spiral-calendar":{"a":"Spiral Calendar","b":"1F5D3","j":["pad","planning","calendar","date","spiral","schedule"]},"card-index":{"a":"Card Index","b":"1F4C7","j":["business","card","index","rolodex","stationery"]},"chart-increasing":{"a":"Chart Increasing","b":"1F4C8","j":["business","stats","presentation","growth","success","money","chart","sales","good","recovery","graph","trend","upward","economics"]},"chart-decreasing":{"a":"Chart Decreasing","b":"1F4C9","j":["business","stats","failure","presentation","down","money","chart","recession","sales","bad","graph","trend","economics"]},"bar-chart":{"a":"Bar Chart","b":"1F4CA","j":["stats","presentation","bar","chart","graph"]},"clipboard":{"a":"Clipboard","b":"1F4CB","j":["stationery","documents"]},"pushpin":{"a":"Pushpin","b":"1F4CC","j":["stationery","mark","here","pin"]},"round-pushpin":{"a":"Round Pushpin","b":"1F4CD","j":["pushpin","location","stationery","map","here","pin"]},"paperclip":{"a":"Paperclip","b":"1F4CE","j":["stationery","documents"]},"linked-paperclips":{"a":"Linked Paperclips","b":"1F587","j":["stationery","link","documents","paperclip"]},"straight-ruler":{"a":"Straight Ruler","b":"1F4CF","j":["drawing","architect","sketch","school","math","stationery","calculate","straight edge","ruler","length"]},"triangular-ruler":{"a":"Triangular Ruler","b":"1F4D0","j":["sketch","architect","math","triangle","stationery","ruler","set"]},"scissors":{"a":"Scissors","b":"2702","j":["stationery","tool","cut","cutting"]},"card-file-box":{"a":"Card File Box","b":"1F5C3","j":["business","card","file","stationery","box"]},"file-cabinet":{"a":"File Cabinet","b":"1F5C4","j":["cabinet","file","filing","organizing"]},"wastebasket":{"a":"Wastebasket","b":"1F5D1","j":["rubbish","trash","garbage","bin","toss"]},"locked":{"a":"Locked","b":"1F512","j":["padlock","closed","password","security"]},"unlocked":{"a":"Unlocked","b":"1F513","j":["privacy","unlock","open","lock","security"]},"locked-with-pen":{"a":"Locked with Pen","b":"1F50F","j":["privacy","pen","lock","ink","security","secret","nib"]},"locked-with-key":{"a":"Locked with Key","b":"1F510","j":["privacy","closed","lock","key","security","secure"]},"key":{"a":"Key","b":"1F511","j":["door","password","lock"]},"old-key":{"a":"Old Key","b":"1F5DD","j":["password","lock","old","door","key","clue"]},"hammer":{"a":"Hammer","b":"1F528","j":["create","tools","tool","build"]},"axe":{"a":"Axe","b":"1FA93","j":["chop","hatchet","wood","tool","split","cut"]},"pick":{"a":"Pick","b":"26CF","j":["dig","tools","tool","mining"]},"hammer-and-pick":{"a":"Hammer and Pick","b":"2692","j":["hammer","build","tool","pick","create","tools"]},"hammer-and-wrench":{"a":"Hammer and Wrench","b":"1F6E0","j":["spanner","wrench","hammer","build","tool","create","tools"]},"dagger":{"a":"Dagger","b":"1F5E1","j":["knife","weapon"]},"crossed-swords":{"a":"Crossed Swords","b":"2694","j":["crossed","weapon","swords"]},"water-pistol":{"a":"Water Pistol","b":"1F52B","j":["gun","water","revolver","tool","weapon","handgun","pistol","violence"]},"boomerang":{"a":"Boomerang","b":"1FA83","j":["repercussion","rebound","australia","weapon"]},"bow-and-arrow":{"a":"Bow and Arrow","b":"1F3F9","j":["archer","sports","bow","Sagittarius","arrow","zodiac"]},"shield":{"a":"Shield","b":"1F6E1","j":["protection","security","weapon"]},"carpentry-saw":{"a":"Carpentry Saw","b":"1FA9A","j":["chop","carpenter","tool","cut","lumber","saw"]},"wrench":{"a":"Wrench","b":"1F527","j":["spanner","fix","tool","diy","ikea","maintainer","tools"]},"screwdriver":{"a":"Screwdriver","b":"1FA9B","j":["screw","tools","tool"]},"nut-and-bolt":{"a":"Nut and Bolt","b":"1F529","j":["fix","nut","bolt","tool","handy","tools"]},"gear":{"a":"Gear","b":"2699","j":["cogwheel","tool","cog"]},"clamp":{"a":"Clamp","b":"1F5DC","j":["compress","vice","tool"]},"balance-scale":{"a":"Balance Scale","b":"2696","j":["balance","scale","Libra","weight","law","justice","zodiac","fairness"]},"white-cane":{"a":"White Cane","b":"1F9AF","j":["accessibility","blind","probing_cane"]},"link":{"a":"Link","b":"1F517","j":["rings","url"]},"chains":{"a":"Chains","b":"26D3","j":["arrest","chain","lock"]},"hook":{"a":"Hook","b":"1FA9D","j":["crook","catch","ensnare","curve","selling point","tools"]},"toolbox":{"a":"Toolbox","b":"1F9F0","j":["fix","chest","tool","diy","mechanic","maintainer","tools"]},"magnet":{"a":"Magnet","b":"1F9F2","j":["magnetic","attraction","horseshoe"]},"ladder":{"a":"Ladder","b":"1FA9C","j":["rung","tools","climb","step"]},"alembic":{"a":"Alembic","b":"2697","j":["tool","chemistry","experiment","distilling","science"]},"test-tube":{"a":"Test Tube","b":"1F9EA","j":["chemist","experiment","chemistry","lab","science"]},"petri-dish":{"a":"Petri Dish","b":"1F9EB","j":["bacteria","culture","biology","lab","biologist"]},"dna":{"a":"Dna","b":"1F9EC","j":["genetics","gene","biologist","life","evolution"]},"microscope":{"a":"Microscope","b":"1F52C","j":["tool","experiment","zoomin","laboratory","study","science"]},"telescope":{"a":"Telescope","b":"1F52D","j":["stars","zoom","space","tool","astronomy","science"]},"satellite-antenna":{"a":"Satellite Antenna","b":"1F4E1","j":["communication","space","satellite","future","antenna","radio","dish"]},"syringe":{"a":"Syringe","b":"1F489","j":["sick","needle","drugs","blood","health","nurse","medicine","doctor","shot","hospital"]},"drop-of-blood":{"a":"Drop of Blood","b":"1FA78","j":["period","harm","injury","medicine","menstruation","wound","bleed","blood donation","hurt"]},"pill":{"a":"Pill","b":"1F48A","j":["sick","health","medicine","doctor","drug","pharmacy"]},"adhesive-bandage":{"a":"Adhesive Bandage","b":"1FA79","j":["bandage","heal"]},"stethoscope":{"a":"Stethoscope","b":"1FA7A","j":["medicine","heart","doctor","health"]},"door":{"a":"Door","b":"1F6AA","j":["entry","exit","house"]},"elevator":{"a":"Elevator","b":"1F6D7","j":["accessibility","hoist","lift"]},"mirror":{"a":"Mirror","b":"1FA9E","j":["speculum","reflection","reflector"]},"window":{"a":"Window","b":"1FA9F","j":["frame","transparent","scenery","fresh air","opening","view"]},"bed":{"a":"Bed","b":"1F6CF","j":["rest","hotel","sleep"]},"couch-and-lamp":{"a":"Couch and Lamp","b":"1F6CB","j":["lamp","read","chill","couch","hotel"]},"chair":{"a":"Chair","b":"1FA91","j":["furniture","sit","seat"]},"toilet":{"a":"Toilet","b":"1F6BD","j":["washroom","bathroom","potty","restroom","wc"]},"plunger":{"a":"Plunger","b":"1FAA0","j":["suction","plumber","toilet","force cup"]},"shower":{"a":"Shower","b":"1F6BF","j":["water","bathroom","clean"]},"bathtub":{"a":"Bathtub","b":"1F6C1","j":["shower","bath","bathroom","clean"]},"mouse-trap":{"a":"Mouse Trap","b":"1FAA4","j":["trap","bait","snare","cheese","mousetrap"]},"razor":{"a":"Razor","b":"1FA92","j":["cut","sharp","shave"]},"lotion-bottle":{"a":"Lotion Bottle","b":"1F9F4","j":["moisturizer","lotion","sunscreen","shampoo"]},"safety-pin":{"a":"Safety Pin","b":"1F9F7","j":["diaper","punk rock"]},"broom":{"a":"Broom","b":"1F9F9","j":["cleaning","sweeping","witch"]},"basket":{"a":"Basket","b":"1F9FA","j":["picnic","farming","laundry"]},"roll-of-paper":{"a":"Roll of Paper","b":"1F9FB","j":["roll","paper towels","toilet paper"]},"bucket":{"a":"Bucket","b":"1FAA3","j":["vat","water","container","cask","pail"]},"soap":{"a":"Soap","b":"1F9FC","j":["soapdish","lather","bar","bathing","cleaning"]},"toothbrush":{"a":"Toothbrush","b":"1FAA5","j":["hygiene","teeth","dental","bathroom","clean","brush"]},"sponge":{"a":"Sponge","b":"1F9FD","j":["porous","cleaning","absorbing"]},"fire-extinguisher":{"a":"Fire Extinguisher","b":"1F9EF","j":["fire","extinguish","quench"]},"shopping-cart":{"a":"Shopping Cart","b":"1F6D2","j":["trolley","cart","shopping"]},"cigarette":{"a":"Cigarette","b":"1F6AC","j":["kills","smoking","smoke","joint","tobacco"]},"coffin":{"a":"Coffin","b":"26B0","j":["funeral","cemetery","vampire","rip","die","graveyard","box","death","casket","dead"]},"headstone":{"a":"Headstone","b":"1FAA6","j":["cemetery","rip","graveyard","grave","tombstone","death"]},"funeral-urn":{"a":"Funeral Urn","b":"26B1","j":["funeral","rip","ashes","die","urn","death","dead"]},"moai":{"a":"Moai","b":"1F5FF","j":["moyai","rock","statue","face","easter island"]},"placard":{"a":"Placard","b":"1FAA7","j":["demonstration","picket","sign","announcement","protest"]},"atm-sign":{"a":"Atm Sign","b":"1F3E7","j":["teller","cash","payment","ATM sign","money","sales","automated","blue-square","atm","bank"]},"litter-in-bin-sign":{"a":"Litter in Bin Sign","b":"1F6AE","j":["info","litter bin","sign","blue-square","litter","human"]},"potable-water":{"a":"Potable Water","b":"1F6B0","j":["cleaning","water","restroom","potable","blue-square","drinking","faucet","liquid"]},"wheelchair-symbol":{"a":"Wheelchair Symbol","b":"267F","j":["accessibility","disabled","blue-square","access"]},"mens-room":{"a":"Men’S Room","b":"1F6B9","j":["lavatory","men_s_room","male","man","toilet","gender","restroom","blue-square","men’s room","wc"]},"womens-room":{"a":"Women’S Room","b":"1F6BA","j":["lavatory","purple-square","loo","women_s_room","woman","toilet","gender","female","restroom","women’s room","wc"]},"restroom":{"a":"Restroom","b":"1F6BB","j":["lavatory","toilet","gender","refresh","WC","blue-square","wc"]},"baby-symbol":{"a":"Baby Symbol","b":"1F6BC","j":["orange-square","child","changing","baby"]},"water-closet":{"a":"Water Closet","b":"1F6BE","j":["lavatory","water","toilet","closet","restroom","blue-square","wc"]},"passport-control":{"a":"Passport Control","b":"1F6C2","j":["control","passport","blue-square","custom"]},"customs":{"a":"Customs","b":"1F6C3","j":["border","blue-square","passport"]},"baggage-claim":{"a":"Baggage Claim","b":"1F6C4","j":["baggage","claim","transport","airport","blue-square"]},"left-luggage":{"a":"Left Luggage","b":"1F6C5","j":["baggage","luggage","travel","blue-square","locker"]},"warning":{"a":"Warning","b":"26A0","j":["exclamation","wip","issue","error","problem","alert"]},"children-crossing":{"a":"Children Crossing","b":"1F6B8","j":["traffic","driving","school","sign","child","pedestrian","crossing","warning","danger","yellow-diamond"]},"no-entry":{"a":"No Entry","b":"26D4","j":["privacy","traffic","limit","stop","no","not","prohibited","denied","entry","circle","bad","security","forbidden"]},"prohibited":{"a":"Prohibited","b":"1F6AB","j":["limit","stop","disallow","no","not","denied","forbid","entry","circle","forbidden"]},"no-bicycles":{"a":"No Bicycles","b":"1F6B3","j":["cyclist","no","bike","prohibited","bicycle","circle","forbidden"]},"no-smoking":{"a":"No Smoking","b":"1F6AD","j":["cigarette","no","prohibited","not","smoking","smell","smoke","blue-square","forbidden"]},"no-littering":{"a":"No Littering","b":"1F6AF","j":["trash","not","no","prohibited","garbage","bin","circle","litter","forbidden"]},"nonpotable-water":{"a":"Non-Potable Water","b":"1F6B1","j":["non_potable_water","faucet","water","drink","circle","tap","non-drinking","non-potable"]},"no-pedestrians":{"a":"No Pedestrians","b":"1F6B7","j":["no","not","prohibited","rules","circle","walking","pedestrian","crossing","forbidden"]},"no-mobile-phones":{"a":"No Mobile Phones","b":"1F4F5","j":["mobile","no","mute","cell","circle","iphone","forbidden","phone"]},"no-one-under-eighteen":{"a":"No One Under Eighteen","b":"1F51E","j":["night","prohibited","underage","eighteen","drink","circle","18","minor","pub","age restriction"]},"radioactive":{"a":"Radioactive","b":"2622","j":["nuclear","danger","sign"]},"biohazard":{"a":"Biohazard","b":"2623","j":["danger","sign"]},"up-arrow":{"a":"Up Arrow","b":"2B06","j":["north","arrow","direction","cardinal","continue","top","blue-square"]},"upright-arrow":{"a":"Up-Right Arrow","b":"2197","j":["point","up_right_arrow","arrow","direction","northeast","diagonal","blue-square","intercardinal","up-right arrow"]},"right-arrow":{"a":"Right Arrow","b":"27A1","j":["arrow","direction","cardinal","east","next","blue-square"]},"downright-arrow":{"a":"Down-Right Arrow","b":"2198","j":["down_right_arrow","arrow","direction","southeast","diagonal","blue-square","down-right arrow","intercardinal"]},"down-arrow":{"a":"Down Arrow","b":"2B07","j":["south","arrow","direction","cardinal","down","blue-square","bottom"]},"downleft-arrow":{"a":"Down-Left Arrow","b":"2199","j":["arrow","direction","down_left_arrow","down-left arrow","southwest","diagonal","blue-square","intercardinal"]},"left-arrow":{"a":"Left Arrow","b":"2B05","j":["previous","arrow","cardinal","direction","west","blue-square","back"]},"upleft-arrow":{"a":"Up-Left Arrow","b":"2196","j":["point","arrow","direction","northwest","diagonal","blue-square","intercardinal","up_left_arrow","up-left arrow"]},"updown-arrow":{"a":"Up-Down Arrow","b":"2195","j":["arrow","direction","way","up_down_arrow","blue-square","vertical","up-down arrow"]},"leftright-arrow":{"a":"Left-Right Arrow","b":"2194","j":["sideways","horizontal","left-right arrow","arrow","direction","shape","left_right_arrow"]},"right-arrow-curving-left":{"a":"Right Arrow Curving Left","b":"21A9","j":["enter","arrow","return","blue-square","undo","back"]},"left-arrow-curving-right":{"a":"Left Arrow Curving Right","b":"21AA","j":["arrow","direction","rotate","return","blue-square"]},"right-arrow-curving-up":{"a":"Right Arrow Curving Up","b":"2934","j":["top","arrow","direction","blue-square"]},"right-arrow-curving-down":{"a":"Right Arrow Curving Down","b":"2935","j":["arrow","direction","down","blue-square","bottom"]},"clockwise-vertical-arrows":{"a":"Clockwise Vertical Arrows","b":"1F503","j":["reload","clockwise","arrow","cycle","repeat","sync","round"]},"counterclockwise-arrows-button":{"a":"Counterclockwise Arrows Button","b":"1F504","j":["withershins","arrow","cycle","sync","blue-square","anticlockwise","counterclockwise"]},"back-arrow":{"a":"Back Arrow","b":"1F519","j":["arrow","return","words","BACK arrow","back"]},"end-arrow":{"a":"End Arrow","b":"1F51A","j":["words","arrow","END arrow","end"]},"on-arrow":{"a":"On! Arrow","b":"1F51B","j":["on","arrow","words","ON! arrow","mark"]},"soon-arrow":{"a":"Soon Arrow","b":"1F51C","j":["words","arrow","SOON arrow","soon"]},"top-arrow":{"a":"Top Arrow","b":"1F51D","j":["up","TOP arrow","top","arrow","words","blue-square"]},"place-of-worship":{"a":"Place of Worship","b":"1F6D0","j":["church","worship","religion","temple","prayer"]},"atom-symbol":{"a":"Atom Symbol","b":"269B","j":["atheist","atom","chemistry","physics","science"]},"om":{"a":"Om","b":"1F549","j":["hinduism","religion","sikhism","jainism","Hindu","buddhism"]},"star-of-david":{"a":"Star of David","b":"2721","j":["Jew","star of David","religion","Jewish","David","judaism","star"]},"wheel-of-dharma":{"a":"Wheel of Dharma","b":"2638","j":["dharma","hinduism","Buddhist","wheel","religion","sikhism","jainism","buddhism"]},"yin-yang":{"a":"Yin Yang","b":"262F","j":["taoist","balance","religion","yang","yin","tao"]},"latin-cross":{"a":"Latin Cross","b":"271D","j":["religion","Christian","christianity","cross"]},"orthodox-cross":{"a":"Orthodox Cross","b":"2626","j":["religion","suppedaneum","Christian","cross"]},"star-and-crescent":{"a":"Star and Crescent","b":"262A","j":["religion","islam","Muslim"]},"peace-symbol":{"a":"Peace Symbol","b":"262E","j":["peace","hippie"]},"menorah":{"a":"Menorah","b":"1F54E","j":["religion","candelabrum","jewish","candlestick","hanukkah","candles"]},"dotted-sixpointed-star":{"a":"Dotted Six-Pointed Star","b":"1F52F","j":["purple-square","dotted six-pointed star","dotted_six_pointed_star","religion","jewish","hexagram","fortune","star"]},"aries":{"a":"Aries","b":"2648","j":["purple-square","sign","ram","astrology","zodiac"]},"taurus":{"a":"Taurus","b":"2649","j":["purple-square","ox","sign","bull","astrology","zodiac"]},"gemini":{"a":"Gemini","b":"264A","j":["purple-square","twins","sign","astrology","zodiac"]},"cancer":{"a":"Cancer","b":"264B","j":["purple-square","sign","astrology","crab","zodiac"]},"leo":{"a":"Leo","b":"264C","j":["purple-square","lion","sign","astrology","zodiac"]},"virgo":{"a":"Virgo","b":"264D","j":["zodiac","purple-square","sign","astrology"]},"libra":{"a":"Libra","b":"264E","j":["balance","purple-square","scales","sign","astrology","justice","zodiac"]},"scorpio":{"a":"Scorpio","b":"264F","j":["purple-square","scorpius","sign","astrology","zodiac","scorpion"]},"sagittarius":{"a":"Sagittarius","b":"2650","j":["purple-square","archer","sign","astrology","zodiac"]},"capricorn":{"a":"Capricorn","b":"2651","j":["purple-square","sign","goat","astrology","zodiac"]},"aquarius":{"a":"Aquarius","b":"2652","j":["purple-square","water","sign","astrology","bearer","zodiac"]},"pisces":{"a":"Pisces","b":"2653","j":["fish","purple-square","sign","astrology","zodiac"]},"ophiuchus":{"a":"Ophiuchus","b":"26CE","j":["purple-square","constellation","sign","astrology","snake","bearer","serpent","zodiac"]},"shuffle-tracks-button":{"a":"Shuffle Tracks Button","b":"1F500","j":["shuffle","random","arrow","music","blue-square","crossed"]},"repeat-button":{"a":"Repeat Button","b":"1F501","j":["loop","clockwise","arrow","repeat","record"]},"repeat-single-button":{"a":"Repeat Single Button","b":"1F502","j":["loop","clockwise","arrow","once","blue-square"]},"play-button":{"a":"Play Button","b":"25B6","j":["right","arrow","direction","triangle","blue-square","play"]},"fastforward-button":{"a":"Fast-Forward Button","b":"23E9","j":["speed","forward","arrow","fast_forward_button","continue","double","fast","blue-square","fast-forward button","play"]},"next-track-button":{"a":"Next Track Button","b":"23ED","j":["next scene","forward","arrow","triangle","next","blue-square","next track"]},"play-or-pause-button":{"a":"Play or Pause Button","b":"23EF","j":["right","arrow","triangle","blue-square","pause","play"]},"reverse-button":{"a":"Reverse Button","b":"25C0","j":["left","arrow","direction","triangle","reverse","blue-square"]},"fast-reverse-button":{"a":"Fast Reverse Button","b":"23EA","j":["arrow","double","blue-square","rewind","play"]},"last-track-button":{"a":"Last Track Button","b":"23EE","j":["previous track","arrow","triangle","backward","previous scene"]},"upwards-button":{"a":"Upwards Button","b":"1F53C","j":["point","red","forward","arrow","direction","top","triangle","button","blue-square"]},"fast-up-button":{"a":"Fast Up Button","b":"23EB","j":["top","arrow","direction","double","blue-square"]},"downwards-button":{"a":"Downwards Button","b":"1F53D","j":["red","arrow","direction","down","button","blue-square","bottom"]},"fast-down-button":{"a":"Fast Down Button","b":"23EC","j":["arrow","direction","down","double","blue-square","bottom"]},"pause-button":{"a":"Pause Button","b":"23F8","j":["double","bar","blue-square","pause","vertical"]},"stop-button":{"a":"Stop Button","b":"23F9","j":["square","stop","blue-square"]},"record-button":{"a":"Record Button","b":"23FA","j":["record","circle","blue-square"]},"eject-button":{"a":"Eject Button","b":"23CF","j":["eject","blue-square"]},"cinema":{"a":"Cinema","b":"1F3A6","j":["movie","camera","film","stage","curtain","blue-square","record","theater"]},"dim-button":{"a":"Dim Button","b":"1F505","j":["dim","low","warm","sun","summer","afternoon","brightness"]},"bright-button":{"a":"Bright Button","b":"1F506","j":["light","sun","brightness","bright"]},"antenna-bars":{"a":"Antenna Bars","b":"1F4F6","j":["mobile","internet","connection","wifi","cell","bar","bars","reception","blue-square","antenna","bluetooth","phone"]},"vibration-mode":{"a":"Vibration Mode","b":"1F4F3","j":["orange-square","mobile","mode","vibration","cell","telephone","phone"]},"mobile-phone-off":{"a":"Mobile Phone off","b":"1F4F4","j":["orange-square","mobile","mute","cell","off","telephone","silence","quiet","phone"]},"female-sign":{"a":"Female Sign","b":"2640","j":["woman","women","girl","lady"]},"male-sign":{"a":"Male Sign","b":"2642","j":["man","boy","men"]},"transgender-symbol":{"a":"Transgender Symbol","b":"26A7","j":["lgbtq","transgender"]},"multiply":{"a":"Multiply","b":"2716","j":["cancel","multiplication_sign","x","math","sign","multiplication","calculation","×"]},"plus":{"a":"Plus","b":"2795","j":["+","addition","math","more","sign","increase","calculation","plus_sign"]},"minus":{"a":"Minus","b":"2796","j":["-","math","less","sign","−","minus_sign","subtract","calculation"]},"divide":{"a":"Divide","b":"2797","j":["÷","math","division","sign","calculation","division_sign"]},"infinity":{"a":"Infinity","b":"267E","j":["universal","forever","unbounded"]},"double-exclamation-mark":{"a":"Double Exclamation Mark","b":"203C","j":["exclamation","surprise","!","mark","!!","bangbang"]},"exclamation-question-mark":{"a":"Exclamation Question Mark","b":"2049","j":["exclamation","surprise","wat","punctuation","!","?","mark","question","interrobang","!?"]},"red-question-mark":{"a":"Red Question Mark","b":"2753","j":["punctuation","question_mark","confused","question","?","mark","doubt"]},"white-question-mark":{"a":"White Question Mark","b":"2754","j":["outlined","gray","punctuation","doubts","confused","question","?","huh","mark"]},"white-exclamation-mark":{"a":"White Exclamation Mark","b":"2755","j":["exclamation","surprise","wow","outlined","gray","punctuation","!","mark","warning"]},"red-exclamation-mark":{"a":"Red Exclamation Mark","b":"2757","j":["exclamation","surprise","wow","punctuation","exclamation_mark","!","mark","warning","danger","heavy_exclamation_mark"]},"wavy-dash":{"a":"Wavy Dash","b":"3030","j":["draw","punctuation","mustache","line","moustache","squiggle","wavy","scribble","dash"]},"currency-exchange":{"a":"Currency Exchange","b":"1F4B1","j":["exchange","currency","dollar","money","sales","travel","bank"]},"heavy-dollar-sign":{"a":"Heavy Dollar Sign","b":"1F4B2","j":["currency","buck","payment","dollar","money","sales"]},"medical-symbol":{"a":"Medical Symbol","b":"2695","j":["health","medicine","staff","aesculapius","hospital"]},"recycling-symbol":{"a":"Recycling Symbol","b":"267B","j":["recycle","trash","garbage","arrow","environment"]},"fleurdelis":{"a":"Fleur-De-Lis","b":"269C","j":["scout","fleur-de-lis","decorative","fleur_de_lis"]},"trident-emblem":{"a":"Trident Emblem","b":"1F531","j":["trident","ship","spear","tool","emblem","weapon","anchor"]},"name-badge":{"a":"Name Badge","b":"1F4DB","j":["name","fire","badge","forbid"]},"japanese-symbol-for-beginner":{"a":"Japanese Symbol for Beginner","b":"1F530","j":["shield","badge","leaf","Japanese","chevron","Japanese symbol for beginner","beginner"]},"hollow-red-circle":{"a":"Hollow Red Circle","b":"2B55","j":["red","o","large","circle","round"]},"check-mark-button":{"a":"Check Mark Button","b":"2705","j":["ok","answer","check","green-square","tick","election","✓","button","mark","vote","agree"]},"check-box-with-check":{"a":"Check Box with Check","b":"2611","j":["confirm","ok","black-square","check","tick","election","✓","box","vote","yes","agree"]},"check-mark":{"a":"Check Mark","b":"2714","j":["ok","answer","check","nike","tick","✓","mark","yes"]},"cross-mark":{"a":"Cross Mark","b":"274C","j":["cancel","multiply","red","no","x","cross","delete","remove","multiplication","mark","×"]},"cross-mark-button":{"a":"Cross Mark Button","b":"274E","j":["no","x","green-square","mark","×","square","deny"]},"curly-loop":{"a":"Curly Loop","b":"27B0","j":["loop","draw","shape","squiggle","scribble","curl"]},"double-curly-loop":{"a":"Double Curly Loop","b":"27BF","j":["loop","cassette","double","tape","curl"]},"part-alternation-mark":{"a":"Part Alternation Mark","b":"303D","j":["business","stats","presentation","bad","mark","graph","part","economics"]},"eightspoked-asterisk":{"a":"Eight-Spoked Asterisk","b":"2733","j":["*","sparkle","green-square","eight_spoked_asterisk","asterisk","eight-spoked asterisk","star"]},"eightpointed-star":{"a":"Eight-Pointed Star","b":"2734","j":["*","orange-square","polygon","eight_pointed_star","eight-pointed star","shape","star"]},"sparkle":{"a":"Sparkle","b":"2747","j":["*","stars","fireworks","awesome","green-square","good"]},"copyright":{"a":"Copyright","b":"00A9","j":["license","ip","circle","c","legal","law"]},"registered":{"a":"Registered","b":"00AE","j":["alphabet","circle","r"]},"trade-mark":{"a":"Trade Mark","b":"2122","j":["trademark","brand","tm","mark","legal","law"]},"keycap":{"a":"Keycap: *","b":"002A-FE0F-20E3","j":["star","keycap_"]},"keycap-0":{"a":"Keycap: 0","b":"0030-FE0F-20E3","j":["null","numbers","0","blue-square","keycap"]},"keycap-1":{"a":"Keycap: 1","b":"0031-FE0F-20E3","j":["1","numbers","keycap","blue-square"]},"keycap-2":{"a":"Keycap: 2","b":"0032-FE0F-20E3","j":["numbers","prime","blue-square","keycap","2"]},"keycap-3":{"a":"Keycap: 3","b":"0033-FE0F-20E3","j":["numbers","3","prime","blue-square","keycap"]},"keycap-4":{"a":"Keycap: 4","b":"0034-FE0F-20E3","j":["numbers","keycap","4","blue-square"]},"keycap-5":{"a":"Keycap: 5","b":"0035-FE0F-20E3","j":["numbers","5","prime","blue-square","keycap"]},"keycap-6":{"a":"Keycap: 6","b":"0036-FE0F-20E3","j":["6","numbers","keycap","blue-square"]},"keycap-7":{"a":"Keycap: 7","b":"0037-FE0F-20E3","j":["numbers","7","prime","blue-square","keycap"]},"keycap-8":{"a":"Keycap: 8","b":"0038-FE0F-20E3","j":["numbers","keycap","8","blue-square"]},"keycap-9":{"a":"Keycap: 9","b":"0039-FE0F-20E3","j":["numbers","keycap","9","blue-square"]},"keycap-10":{"a":"Keycap: 10","b":"1F51F","j":["10","numbers","keycap","blue-square"]},"input-latin-uppercase":{"a":"Input Latin Uppercase","b":"1F520","j":["alphabet","ABCD","uppercase","words","blue-square","letters","latin","input"]},"input-latin-lowercase":{"a":"Input Latin Lowercase","b":"1F521","j":["alphabet","abcd","blue-square","letters","latin","input","lowercase"]},"input-numbers":{"a":"Input Numbers","b":"1F522","j":["numbers","1234","input","blue-square"]},"input-symbols":{"a":"Input Symbols","b":"1F523","j":["〒♪&%","characters","glyphs","note","music","blue-square","percent","ampersand","input"]},"input-latin-letters":{"a":"Input Latin Letters","b":"1F524","j":["alphabet","abc","blue-square","letters","latin","input"]},"a-button-blood-type":{"a":"A Button (Blood Type)","b":"1F170","j":["a","letter","alphabet","a_button","red-square","A button (blood type)","blood type"]},"ab-button-blood-type":{"a":"Ab Button (Blood Type)","b":"1F18E","j":["ab","alphabet","ab_button","red-square","AB button (blood type)","blood type"]},"b-button-blood-type":{"a":"B Button (Blood Type)","b":"1F171","j":["letter","alphabet","b","B button (blood type)","red-square","b_button","blood type"]},"cl-button":{"a":"Cl Button","b":"1F191","j":["cl","alphabet","CL button","words","red-square"]},"cool-button":{"a":"Cool Button","b":"1F192","j":["words","cool","COOL button","blue-square"]},"free-button":{"a":"Free Button","b":"1F193","j":["words","FREE button","free","blue-square"]},"information":{"a":"Information","b":"2139","j":["alphabet","letter","i","blue-square"]},"id-button":{"a":"Id Button","b":"1F194","j":["purple-square","id","ID button","words","identity"]},"circled-m":{"a":"Circled M","b":"24C2","j":["blue-circle","letter","alphabet","circle","circled M","m"]},"new-button":{"a":"New Button","b":"1F195","j":["start","words","NEW button","blue-square","new"]},"ng-button":{"a":"Ng Button","b":"1F196","j":["NG button","ng","icon","words","shape","blue-square"]},"o-button-blood-type":{"a":"O Button (Blood Type)","b":"1F17E","j":["letter","O button (blood type)","o","alphabet","o_button","red-square","blood type"]},"ok-button":{"a":"Ok Button","b":"1F197","j":["OK button","good","blue-square","OK","yes","agree"]},"p-button":{"a":"P Button","b":"1F17F","j":["cars","letter","alphabet","blue-square","parking","P button"]},"sos-button":{"a":"Sos Button","b":"1F198","j":["SOS button","911","help","words","emergency","red-square","sos"]},"up-button":{"a":"Up! Button","b":"1F199","j":["up","high","above","mark","blue-square","UP! button"]},"vs-button":{"a":"Vs Button","b":"1F19A","j":["orange-square","vs","words","VS button","versus"]},"japanese-here-button":{"a":"Japanese “Here” Button","b":"1F201","j":["Japanese “here” button","Japanese","destination","katakana","“here”","blue-square","japanese","ココ","here"]},"japanese-service-charge-button":{"a":"Japanese “Service Charge” Button","b":"1F202","j":["“service charge”","Japanese","katakana","Japanese “service charge” button","サ","blue-square","japanese"]},"japanese-monthly-amount-button":{"a":"Japanese “Monthly Amount” Button","b":"1F237","j":["orange-square","month","Japanese","Japanese “monthly amount” button","“monthly amount”","chinese","月","kanji","japanese","ideograph","moon"]},"japanese-not-free-of-charge-button":{"a":"Japanese “Not Free of Charge” Button","b":"1F236","j":["orange-square","有","“not free of charge”","Japanese","Japanese “not free of charge” button","chinese","kanji","ideograph","have"]},"japanese-reserved-button":{"a":"Japanese “Reserved” Button","b":"1F22F","j":["point","Japanese “reserved” button","green-square","Japanese","chinese","指","kanji","ideograph","“reserved”"]},"japanese-bargain-button":{"a":"Japanese “Bargain” Button","b":"1F250","j":["“bargain”","得","Japanese “bargain” button","Japanese","get","circle","chinese","kanji","ideograph","obtain"]},"japanese-discount-button":{"a":"Japanese “Discount” Button","b":"1F239","j":["“discount”","Japanese","Japanese “discount” button","divide","chinese","kanji","ideograph","pink-square","cut","割"]},"japanese-free-of-charge-button":{"a":"Japanese “Free of Charge” Button","b":"1F21A","j":["“free of charge”","orange-square","無","Japanese","Japanese “free of charge” button","chinese","kanji","japanese","ideograph","nothing"]},"japanese-prohibited-button":{"a":"Japanese “Prohibited” Button","b":"1F232","j":["禁","limit","forbidden","“prohibited”","Japanese “prohibited” button","Japanese","restricted","kanji","chinese","japanese","red-square","ideograph"]},"japanese-acceptable-button":{"a":"Japanese “Acceptable” Button","b":"1F251","j":["ok","Japanese “acceptable” button","Japanese","可","chinese","good","kanji","ideograph","orange-circle","yes","“acceptable”","agree"]},"japanese-application-button":{"a":"Japanese “Application” Button","b":"1F238","j":["orange-square","申","“application”","Japanese","chinese","kanji","japanese","Japanese “application” button","ideograph"]},"japanese-passing-grade-button":{"a":"Japanese “Passing Grade” Button","b":"1F234","j":["“passing grade”","Japanese “passing grade” button","Japanese","join","chinese","kanji","合","japanese","red-square","ideograph"]},"japanese-vacancy-button":{"a":"Japanese “Vacancy” Button","b":"1F233","j":["Japanese “vacancy” button","Japanese","sky","japanese","kanji","chinese","empty","blue-square","“vacancy”","空","ideograph"]},"japanese-congratulations-button":{"a":"Japanese “Congratulations” Button","b":"3297","j":["Japanese","祝","Japanese “congratulations” button","chinese","kanji","“congratulations”","japanese","ideograph","red-circle"]},"japanese-secret-button":{"a":"Japanese “Secret” Button","b":"3299","j":["Japanese “secret” button","privacy","sshh","秘","Japanese","chinese","kanji","ideograph","“secret”","red-circle"]},"japanese-open-for-business-button":{"a":"Japanese “Open for Business” Button","b":"1F23A","j":["“open for business”","orange-square","opening hours","Japanese “open for business” button","Japanese","営","japanese","ideograph"]},"japanese-no-vacancy-button":{"a":"Japanese “No Vacancy” Button","b":"1F235","j":["full","満","Japanese","“no vacancy”","chinese","kanji","japanese","red-square","ideograph","Japanese “no vacancy” button"]},"red-circle":{"a":"Red Circle","b":"1F534","j":["geometric","red","shape","error","circle","danger"]},"orange-circle":{"a":"Orange Circle","b":"1F7E0","j":["circle","round","orange"]},"yellow-circle":{"a":"Yellow Circle","b":"1F7E1","j":["yellow","circle","round"]},"green-circle":{"a":"Green Circle","b":"1F7E2","j":["green","circle","round"]},"blue-circle":{"a":"Blue Circle","b":"1F535","j":["geometric","icon","shape","button","circle","blue"]},"purple-circle":{"a":"Purple Circle","b":"1F7E3","j":["circle","round","purple"]},"brown-circle":{"a":"Brown Circle","b":"1F7E4","j":["brown","circle","round"]},"black-circle":{"a":"Black Circle","b":"26AB","j":["geometric","shape","button","circle","round"]},"white-circle":{"a":"White Circle","b":"26AA","j":["shape","geometric","round","circle"]},"red-square":{"a":"Red Square","b":"1F7E5","j":["square","red"]},"orange-square":{"a":"Orange Square","b":"1F7E7","j":["square","orange"]},"yellow-square":{"a":"Yellow Square","b":"1F7E8","j":["yellow","square"]},"green-square":{"a":"Green Square","b":"1F7E9","j":["green","square"]},"blue-square":{"a":"Blue Square","b":"1F7E6","j":["square","blue"]},"purple-square":{"a":"Purple Square","b":"1F7EA","j":["square","purple"]},"brown-square":{"a":"Brown Square","b":"1F7EB","j":["brown","square"]},"black-large-square":{"a":"Black Large Square","b":"2B1B","j":["geometric","icon","shape","button","square"]},"white-large-square":{"a":"White Large Square","b":"2B1C","j":["geometric","icon","stone","shape","button","square"]},"black-medium-square":{"a":"Black Medium Square","b":"25FC","j":["geometric","icon","shape","button","square"]},"white-medium-square":{"a":"White Medium Square","b":"25FB","j":["geometric","icon","stone","shape","square"]},"black-mediumsmall-square":{"a":"Black Medium-Small Square","b":"25FE","j":["black medium-small square","geometric","icon","black_medium_small_square","shape","button","square"]},"white-mediumsmall-square":{"a":"White Medium-Small Square","b":"25FD","j":["geometric","white medium-small square","white_medium_small_square","icon","stone","shape","button","square"]},"black-small-square":{"a":"Black Small Square","b":"25AA","j":["icon","shape","square","geometric"]},"white-small-square":{"a":"White Small Square","b":"25AB","j":["icon","shape","square","geometric"]},"large-orange-diamond":{"a":"Large Orange Diamond","b":"1F536","j":["geometric","gem","jewel","orange","shape","diamond"]},"large-blue-diamond":{"a":"Large Blue Diamond","b":"1F537","j":["geometric","gem","jewel","shape","diamond","blue"]},"small-orange-diamond":{"a":"Small Orange Diamond","b":"1F538","j":["geometric","gem","jewel","orange","shape","diamond"]},"small-blue-diamond":{"a":"Small Blue Diamond","b":"1F539","j":["geometric","gem","jewel","shape","diamond","blue"]},"red-triangle-pointed-up":{"a":"Red Triangle Pointed Up","b":"1F53A","j":["up","geometric","red","top","direction","shape"]},"red-triangle-pointed-down":{"a":"Red Triangle Pointed Down","b":"1F53B","j":["geometric","red","direction","down","shape","bottom"]},"diamond-with-a-dot":{"a":"Diamond with a Dot","b":"1F4A0","j":["geometric","gem","fancy","jewel","inside","comic","diamond","crystal","blue"]},"radio-button":{"a":"Radio Button","b":"1F518","j":["geometric","old","button","circle","music","radio","input"]},"white-square-button":{"a":"White Square Button","b":"1F533","j":["geometric","outlined","shape","button","square","input"]},"black-square-button":{"a":"Black Square Button","b":"1F532","j":["frame","geometric","shape","button","square","input"]},"chequered-flag":{"a":"Chequered Flag","b":"1F3C1","j":["chequered","checkered","race","racing","gokart","finishline","contest"]},"triangular-flag":{"a":"Triangular Flag","b":"1F6A9","j":["milestone","place","mark","post"]},"crossed-flags":{"a":"Crossed Flags","b":"1F38C","j":["nation","celebration","cross","Japanese","border","japanese","country","crossed"]},"black-flag":{"a":"Black Flag","b":"1F3F4","j":["waving","pirate"]},"white-flag":{"a":"White Flag","b":"1F3F3","j":["loser","give up","surrender","lost","waving","losing","fail"]},"rainbow-flag":{"a":"Rainbow Flag","b":"1F3F3-FE0F-200D-1F308","j":["gay","glbt","pride","lesbian","homosexual","flag","lgbt","bisexual","rainbow","queer","transgender"]},"transgender-flag":{"a":"Transgender Flag","b":"1F3F3-FE0F-200D-26A7-FE0F","j":["pink","lgbtq","light blue","flag","white","transgender"]},"pirate-flag":{"a":"Pirate Flag","b":"1F3F4-200D-2620-FE0F","j":["skull","crossbones","plunder","flag","Jolly Roger","treasure","banner","pirate"]},"flag-ascension-island":{"a":"Flag: Ascension Island","b":"1F1E6-1F1E8","j":["flag"]},"flag-andorra":{"a":"Flag: Andorra","b":"1F1E6-1F1E9","j":["flag","ad","banner","country","nation"]},"flag-united-arab-emirates":{"a":"Flag: United Arab Emirates","b":"1F1E6-1F1EA","j":["united","flag","emirates","banner","arab","country","nation"]},"flag-afghanistan":{"a":"Flag: Afghanistan","b":"1F1E6-1F1EB","j":["af","flag","banner","country","nation"]},"flag-antigua--barbuda":{"a":"Flag: Antigua & Barbuda","b":"1F1E6-1F1EC","j":["barbuda","antigua","flag","banner","country","nation","flag_antigua_barbuda"]},"flag-anguilla":{"a":"Flag: Anguilla","b":"1F1E6-1F1EE","j":["ai","flag","banner","country","nation"]},"flag-albania":{"a":"Flag: Albania","b":"1F1E6-1F1F1","j":["al","flag","banner","country","nation"]},"flag-armenia":{"a":"Flag: Armenia","b":"1F1E6-1F1F2","j":["country","flag","banner","am","nation"]},"flag-angola":{"a":"Flag: Angola","b":"1F1E6-1F1F4","j":["ao","flag","banner","country","nation"]},"flag-antarctica":{"a":"Flag: Antarctica","b":"1F1E6-1F1F6","j":["aq","flag","banner","country","nation"]},"flag-argentina":{"a":"Flag: Argentina","b":"1F1E6-1F1F7","j":["ar","flag","banner","country","nation"]},"flag-american-samoa":{"a":"Flag: American Samoa","b":"1F1E6-1F1F8","j":["ws","flag","banner","country","nation","american"]},"flag-austria":{"a":"Flag: Austria","b":"1F1E6-1F1F9","j":["at","flag","banner","country","nation"]},"flag-australia":{"a":"Flag: Australia","b":"1F1E6-1F1FA","j":["flag","banner","au","country","nation"]},"flag-aruba":{"a":"Flag: Aruba","b":"1F1E6-1F1FC","j":["aw","flag","banner","country","nation"]},"flag-land-islands":{"a":"Flag: Åland Islands","b":"1F1E6-1F1FD","j":["islands","flag","flag_aland_islands","Åland","banner","country","nation"]},"flag-azerbaijan":{"a":"Flag: Azerbaijan","b":"1F1E6-1F1FF","j":["az","flag","banner","country","nation"]},"flag-bosnia--herzegovina":{"a":"Flag: Bosnia & Herzegovina","b":"1F1E7-1F1E6","j":["bosnia","flag_bosnia_herzegovina","flag","herzegovina","banner","country","nation"]},"flag-barbados":{"a":"Flag: Barbados","b":"1F1E7-1F1E7","j":["bb","flag","banner","country","nation"]},"flag-bangladesh":{"a":"Flag: Bangladesh","b":"1F1E7-1F1E9","j":["bd","flag","banner","country","nation"]},"flag-belgium":{"a":"Flag: Belgium","b":"1F1E7-1F1EA","j":["country","flag","banner","be","nation"]},"flag-burkina-faso":{"a":"Flag: Burkina Faso","b":"1F1E7-1F1EB","j":["flag","burkina","banner","faso","country","nation"]},"flag-bulgaria":{"a":"Flag: Bulgaria","b":"1F1E7-1F1EC","j":["flag","banner","bg","country","nation"]},"flag-bahrain":{"a":"Flag: Bahrain","b":"1F1E7-1F1ED","j":["bh","flag","banner","country","nation"]},"flag-burundi":{"a":"Flag: Burundi","b":"1F1E7-1F1EE","j":["flag","banner","bi","country","nation"]},"flag-benin":{"a":"Flag: Benin","b":"1F1E7-1F1EF","j":["country","flag","banner","bj","nation"]},"flag-st-barthlemy":{"a":"Flag: St. Barthélemy","b":"1F1E7-1F1F1","j":["flag_st_barthelemy","saint","flag","banner","country","barthélemy","nation"]},"flag-bermuda":{"a":"Flag: Bermuda","b":"1F1E7-1F1F2","j":["bm","flag","banner","country","nation"]},"flag-brunei":{"a":"Flag: Brunei","b":"1F1E7-1F1F3","j":["darussalam","bn","flag","banner","country","nation"]},"flag-bolivia":{"a":"Flag: Bolivia","b":"1F1E7-1F1F4","j":["country","flag","banner","bo","nation"]},"flag-caribbean-netherlands":{"a":"Flag: Caribbean Netherlands","b":"1F1E7-1F1F6","j":["flag","banner","country","bonaire","nation"]},"flag-brazil":{"a":"Flag: Brazil","b":"1F1E7-1F1F7","j":["flag","banner","br","country","nation"]},"flag-bahamas":{"a":"Flag: Bahamas","b":"1F1E7-1F1F8","j":["bs","flag","banner","country","nation"]},"flag-bhutan":{"a":"Flag: Bhutan","b":"1F1E7-1F1F9","j":["bt","flag","banner","country","nation"]},"flag-bouvet-island":{"a":"Flag: Bouvet Island","b":"1F1E7-1F1FB","j":["flag","norway"]},"flag-botswana":{"a":"Flag: Botswana","b":"1F1E7-1F1FC","j":["flag","bw","banner","country","nation"]},"flag-belarus":{"a":"Flag: Belarus","b":"1F1E7-1F1FE","j":["country","flag","banner","by","nation"]},"flag-belize":{"a":"Flag: Belize","b":"1F1E7-1F1FF","j":["flag","banner","bz","country","nation"]},"flag-canada":{"a":"Flag: Canada","b":"1F1E8-1F1E6","j":["ca","flag","banner","country","nation"]},"flag-cocos-keeling-islands":{"a":"Flag: Cocos (Keeling) Islands","b":"1F1E8-1F1E8","j":["islands","cocos","flag","keeling","banner","flag_cocos_islands","country","nation"]},"flag-congo--kinshasa":{"a":"Flag: Congo - Kinshasa","b":"1F1E8-1F1E9","j":["democratic","congo","flag","banner","flag_congo_kinshasa","republic","country","nation"]},"flag-central-african-republic":{"a":"Flag: Central African Republic","b":"1F1E8-1F1EB","j":["african","central","flag","banner","republic","country","nation"]},"flag-congo--brazzaville":{"a":"Flag: Congo - Brazzaville","b":"1F1E8-1F1EC","j":["flag_congo_brazzaville","congo","flag","banner","country","nation"]},"flag-switzerland":{"a":"Flag: Switzerland","b":"1F1E8-1F1ED","j":["ch","flag","banner","country","nation"]},"flag-cte-divoire":{"a":"Flag: Côte D’Ivoire","b":"1F1E8-1F1EE","j":["flag","flag_cote_d_ivoire","banner","ivory","coast","country","nation"]},"flag-cook-islands":{"a":"Flag: Cook Islands","b":"1F1E8-1F1F0","j":["islands","cook","flag","banner","country","nation"]},"flag-chile":{"a":"Flag: Chile","b":"1F1E8-1F1F1","j":["flag","country","banner","nation"]},"flag-cameroon":{"a":"Flag: Cameroon","b":"1F1E8-1F1F2","j":["cm","flag","banner","country","nation"]},"flag-china":{"a":"Flag: China","b":"1F1E8-1F1F3","j":["china","flag","chinese","banner","country","prc","nation"]},"flag-colombia":{"a":"Flag: Colombia","b":"1F1E8-1F1F4","j":["co","flag","banner","country","nation"]},"flag-clipperton-island":{"a":"Flag: Clipperton Island","b":"1F1E8-1F1F5","j":["flag"]},"flag-costa-rica":{"a":"Flag: Costa Rica","b":"1F1E8-1F1F7","j":["rica","costa","flag","banner","country","nation"]},"flag-cuba":{"a":"Flag: Cuba","b":"1F1E8-1F1FA","j":["cu","flag","banner","country","nation"]},"flag-cape-verde":{"a":"Flag: Cape Verde","b":"1F1E8-1F1FB","j":["cabo","flag","banner","verde","country","nation"]},"flag-curaao":{"a":"Flag: Curaçao","b":"1F1E8-1F1FC","j":["flag_curacao","curaçao","flag","banner","country","nation"]},"flag-christmas-island":{"a":"Flag: Christmas Island","b":"1F1E8-1F1FD","j":["christmas","flag","banner","country","island","nation"]},"flag-cyprus":{"a":"Flag: Cyprus","b":"1F1E8-1F1FE","j":["flag","banner","country","nation","cy"]},"flag-czechia":{"a":"Flag: Czechia","b":"1F1E8-1F1FF","j":["cz","flag","banner","country","nation"]},"flag-germany":{"a":"Flag: Germany","b":"1F1E9-1F1EA","j":["country","flag","banner","german","nation"]},"flag-diego-garcia":{"a":"Flag: Diego Garcia","b":"1F1E9-1F1EC","j":["flag"]},"flag-djibouti":{"a":"Flag: Djibouti","b":"1F1E9-1F1EF","j":["dj","flag","banner","country","nation"]},"flag-denmark":{"a":"Flag: Denmark","b":"1F1E9-1F1F0","j":["flag","banner","dk","country","nation"]},"flag-dominica":{"a":"Flag: Dominica","b":"1F1E9-1F1F2","j":["flag","dm","banner","country","nation"]},"flag-dominican-republic":{"a":"Flag: Dominican Republic","b":"1F1E9-1F1F4","j":["flag","banner","republic","country","dominican","nation"]},"flag-algeria":{"a":"Flag: Algeria","b":"1F1E9-1F1FF","j":["flag","banner","dz","country","nation"]},"flag-ceuta--melilla":{"a":"Flag: Ceuta & Melilla","b":"1F1EA-1F1E6","j":["flag_ceuta_melilla","flag"]},"flag-ecuador":{"a":"Flag: Ecuador","b":"1F1EA-1F1E8","j":["nation","flag","banner","country","ec"]},"flag-estonia":{"a":"Flag: Estonia","b":"1F1EA-1F1EA","j":["ee","flag","banner","country","nation"]},"flag-egypt":{"a":"Flag: Egypt","b":"1F1EA-1F1EC","j":["flag","eg","banner","country","nation"]},"flag-western-sahara":{"a":"Flag: Western Sahara","b":"1F1EA-1F1ED","j":["sahara","flag","western","banner","country","nation"]},"flag-eritrea":{"a":"Flag: Eritrea","b":"1F1EA-1F1F7","j":["flag","banner","country","nation","er"]},"flag-spain":{"a":"Flag: Spain","b":"1F1EA-1F1F8","j":["spain","flag","banner","country","nation"]},"flag-ethiopia":{"a":"Flag: Ethiopia","b":"1F1EA-1F1F9","j":["et","flag","banner","country","nation"]},"flag-european-union":{"a":"Flag: European Union","b":"1F1EA-1F1FA","j":["european","flag","banner","union"]},"flag-finland":{"a":"Flag: Finland","b":"1F1EB-1F1EE","j":["flag","banner","fi","country","nation"]},"flag-fiji":{"a":"Flag: Fiji","b":"1F1EB-1F1EF","j":["flag","banner","fj","country","nation"]},"flag-falkland-islands":{"a":"Flag: Falkland Islands","b":"1F1EB-1F1F0","j":["islands","falkland","flag","banner","malvinas","country","nation"]},"flag-micronesia":{"a":"Flag: Micronesia","b":"1F1EB-1F1F2","j":["federated","country","states","flag","banner","micronesia","nation"]},"flag-faroe-islands":{"a":"Flag: Faroe Islands","b":"1F1EB-1F1F4","j":["faroe","islands","flag","banner","country","nation"]},"flag-france":{"a":"Flag: France","b":"1F1EB-1F1F7","j":["flag","banner","french","france","country","nation"]},"flag-gabon":{"a":"Flag: Gabon","b":"1F1EC-1F1E6","j":["flag","ga","banner","country","nation"]},"flag-united-kingdom":{"a":"Flag: United Kingdom","b":"1F1EC-1F1E7","j":["northern","great","british","UK","english","kingdom","united","flag","banner","england","britain","ireland","country","union jack","nation"]},"flag-grenada":{"a":"Flag: Grenada","b":"1F1EC-1F1E9","j":["gd","flag","banner","country","nation"]},"flag-georgia":{"a":"Flag: Georgia","b":"1F1EC-1F1EA","j":["ge","flag","banner","country","nation"]},"flag-french-guiana":{"a":"Flag: French Guiana","b":"1F1EC-1F1EB","j":["guiana","flag","banner","french","country","nation"]},"flag-guernsey":{"a":"Flag: Guernsey","b":"1F1EC-1F1EC","j":["gg","flag","banner","country","nation"]},"flag-ghana":{"a":"Flag: Ghana","b":"1F1EC-1F1ED","j":["gh","flag","banner","country","nation"]},"flag-gibraltar":{"a":"Flag: Gibraltar","b":"1F1EC-1F1EE","j":["flag","banner","country","nation","gi"]},"flag-greenland":{"a":"Flag: Greenland","b":"1F1EC-1F1F1","j":["gl","flag","banner","country","nation"]},"flag-gambia":{"a":"Flag: Gambia","b":"1F1EC-1F1F2","j":["gm","flag","banner","country","nation"]},"flag-guinea":{"a":"Flag: Guinea","b":"1F1EC-1F1F3","j":["gn","flag","banner","country","nation"]},"flag-guadeloupe":{"a":"Flag: Guadeloupe","b":"1F1EC-1F1F5","j":["gp","flag","banner","country","nation"]},"flag-equatorial-guinea":{"a":"Flag: Equatorial Guinea","b":"1F1EC-1F1F6","j":["equatorial","gn","flag","banner","country","nation"]},"flag-greece":{"a":"Flag: Greece","b":"1F1EC-1F1F7","j":["gr","flag","banner","country","nation"]},"flag-south-georgia--south-sandwich-islands":{"a":"Flag: South Georgia & South Sandwich Islands","b":"1F1EC-1F1F8","j":["georgia","islands","south","flag_south_georgia_south_sandwich_islands","flag","sandwich","banner","country","nation"]},"flag-guatemala":{"a":"Flag: Guatemala","b":"1F1EC-1F1F9","j":["flag","gt","banner","country","nation"]},"flag-guam":{"a":"Flag: Guam","b":"1F1EC-1F1FA","j":["gu","flag","banner","country","nation"]},"flag-guineabissau":{"a":"Flag: Guinea-Bissau","b":"1F1EC-1F1FC","j":["bissau","nation","gw","flag","banner","country","flag_guinea_bissau"]},"flag-guyana":{"a":"Flag: Guyana","b":"1F1EC-1F1FE","j":["gy","flag","banner","country","nation"]},"flag-hong-kong-sar-china":{"a":"Flag: Hong Kong Sar China","b":"1F1ED-1F1F0","j":["flag","banner","hong","kong","country","nation"]},"flag-heard--mcdonald-islands":{"a":"Flag: Heard & Mcdonald Islands","b":"1F1ED-1F1F2","j":["flag","flag_heard_mcdonald_islands"]},"flag-honduras":{"a":"Flag: Honduras","b":"1F1ED-1F1F3","j":["country","flag","banner","hn","nation"]},"flag-croatia":{"a":"Flag: Croatia","b":"1F1ED-1F1F7","j":["flag","banner","hr","country","nation"]},"flag-haiti":{"a":"Flag: Haiti","b":"1F1ED-1F1F9","j":["ht","flag","banner","country","nation"]},"flag-hungary":{"a":"Flag: Hungary","b":"1F1ED-1F1FA","j":["flag","banner","hu","country","nation"]},"flag-canary-islands":{"a":"Flag: Canary Islands","b":"1F1EE-1F1E8","j":["islands","canary","flag","banner","country","nation"]},"flag-indonesia":{"a":"Flag: Indonesia","b":"1F1EE-1F1E9","j":["flag","country","banner","nation"]},"flag-ireland":{"a":"Flag: Ireland","b":"1F1EE-1F1EA","j":["ie","flag","banner","country","nation"]},"flag-israel":{"a":"Flag: Israel","b":"1F1EE-1F1F1","j":["il","flag","banner","country","nation"]},"flag-isle-of-man":{"a":"Flag: Isle of Man","b":"1F1EE-1F1F2","j":["man","isle","flag","banner","country","nation"]},"flag-india":{"a":"Flag: India","b":"1F1EE-1F1F3","j":["country","flag","banner","in","nation"]},"flag-british-indian-ocean-territory":{"a":"Flag: British Indian Ocean Territory","b":"1F1EE-1F1F4","j":["british","ocean","flag","banner","territory","indian","country","nation"]},"flag-iraq":{"a":"Flag: Iraq","b":"1F1EE-1F1F6","j":["iq","flag","banner","country","nation"]},"flag-iran":{"a":"Flag: Iran","b":"1F1EE-1F1F7","j":["iran","islamic","flag","banner","republic","country","nation"]},"flag-iceland":{"a":"Flag: Iceland","b":"1F1EE-1F1F8","j":["flag","banner","country","is","nation"]},"flag-italy":{"a":"Flag: Italy","b":"1F1EE-1F1F9","j":["italy","flag","banner","country","nation"]},"flag-jersey":{"a":"Flag: Jersey","b":"1F1EF-1F1EA","j":["je","flag","banner","country","nation"]},"flag-jamaica":{"a":"Flag: Jamaica","b":"1F1EF-1F1F2","j":["flag","banner","jm","country","nation"]},"flag-jordan":{"a":"Flag: Jordan","b":"1F1EF-1F1F4","j":["jo","flag","banner","country","nation"]},"flag-japan":{"a":"Flag: Japan","b":"1F1EF-1F1F5","j":["flag","banner","japanese","country","nation"]},"flag-kenya":{"a":"Flag: Kenya","b":"1F1F0-1F1EA","j":["flag","banner","ke","country","nation"]},"flag-kyrgyzstan":{"a":"Flag: Kyrgyzstan","b":"1F1F0-1F1EC","j":["kg","flag","banner","country","nation"]},"flag-cambodia":{"a":"Flag: Cambodia","b":"1F1F0-1F1ED","j":["kh","flag","banner","country","nation"]},"flag-kiribati":{"a":"Flag: Kiribati","b":"1F1F0-1F1EE","j":["ki","flag","banner","country","nation"]},"flag-comoros":{"a":"Flag: Comoros","b":"1F1F0-1F1F2","j":["km","flag","banner","country","nation"]},"flag-st-kitts--nevis":{"a":"Flag: St. Kitts & Nevis","b":"1F1F0-1F1F3","j":["nation","nevis","flag","kitts","flag_st_kitts_nevis","banner","country","saint"]},"flag-north-korea":{"a":"Flag: North Korea","b":"1F1F0-1F1F5","j":["north","flag","banner","korea","country","nation"]},"flag-south-korea":{"a":"Flag: South Korea","b":"1F1F0-1F1F7","j":["south","flag","banner","korea","country","nation"]},"flag-kuwait":{"a":"Flag: Kuwait","b":"1F1F0-1F1FC","j":["kw","flag","banner","country","nation"]},"flag-cayman-islands":{"a":"Flag: Cayman Islands","b":"1F1F0-1F1FE","j":["islands","flag","banner","cayman","country","nation"]},"flag-kazakhstan":{"a":"Flag: Kazakhstan","b":"1F1F0-1F1FF","j":["kz","flag","banner","country","nation"]},"flag-laos":{"a":"Flag: Laos","b":"1F1F1-1F1E6","j":["democratic","flag","banner","lao","republic","country","nation"]},"flag-lebanon":{"a":"Flag: Lebanon","b":"1F1F1-1F1E7","j":["lb","flag","banner","country","nation"]},"flag-st-lucia":{"a":"Flag: St. Lucia","b":"1F1F1-1F1E8","j":["nation","saint","flag","banner","country","lucia"]},"flag-liechtenstein":{"a":"Flag: Liechtenstein","b":"1F1F1-1F1EE","j":["flag","li","banner","country","nation"]},"flag-sri-lanka":{"a":"Flag: Sri Lanka","b":"1F1F1-1F1F0","j":["lanka","sri","flag","banner","country","nation"]},"flag-liberia":{"a":"Flag: Liberia","b":"1F1F1-1F1F7","j":["flag","lr","banner","country","nation"]},"flag-lesotho":{"a":"Flag: Lesotho","b":"1F1F1-1F1F8","j":["ls","flag","banner","country","nation"]},"flag-lithuania":{"a":"Flag: Lithuania","b":"1F1F1-1F1F9","j":["flag","banner","country","nation","lt"]},"flag-luxembourg":{"a":"Flag: Luxembourg","b":"1F1F1-1F1FA","j":["lu","flag","banner","country","nation"]},"flag-latvia":{"a":"Flag: Latvia","b":"1F1F1-1F1FB","j":["flag","banner","lv","country","nation"]},"flag-libya":{"a":"Flag: Libya","b":"1F1F1-1F1FE","j":["ly","flag","banner","country","nation"]},"flag-morocco":{"a":"Flag: Morocco","b":"1F1F2-1F1E6","j":["ma","flag","banner","country","nation"]},"flag-monaco":{"a":"Flag: Monaco","b":"1F1F2-1F1E8","j":["mc","flag","banner","country","nation"]},"flag-moldova":{"a":"Flag: Moldova","b":"1F1F2-1F1E9","j":["flag","banner","republic","country","moldova","nation"]},"flag-montenegro":{"a":"Flag: Montenegro","b":"1F1F2-1F1EA","j":["me","flag","banner","country","nation"]},"flag-st-martin":{"a":"Flag: St. Martin","b":"1F1F2-1F1EB","j":["flag"]},"flag-madagascar":{"a":"Flag: Madagascar","b":"1F1F2-1F1EC","j":["mg","flag","banner","country","nation"]},"flag-marshall-islands":{"a":"Flag: Marshall Islands","b":"1F1F2-1F1ED","j":["islands","marshall","flag","banner","country","nation"]},"flag-north-macedonia":{"a":"Flag: North Macedonia","b":"1F1F2-1F1F0","j":["macedonia","flag","banner","country","nation"]},"flag-mali":{"a":"Flag: Mali","b":"1F1F2-1F1F1","j":["ml","flag","banner","country","nation"]},"flag-myanmar-burma":{"a":"Flag: Myanmar (Burma)","b":"1F1F2-1F1F2","j":["mm","country","flag","banner","flag_myanmar","nation"]},"flag-mongolia":{"a":"Flag: Mongolia","b":"1F1F2-1F1F3","j":["country","flag","banner","mn","nation"]},"flag-macao-sar-china":{"a":"Flag: Macao Sar China","b":"1F1F2-1F1F4","j":["flag","banner","country","nation","macao"]},"flag-northern-mariana-islands":{"a":"Flag: Northern Mariana Islands","b":"1F1F2-1F1F5","j":["northern","islands","flag","mariana","banner","country","nation"]},"flag-martinique":{"a":"Flag: Martinique","b":"1F1F2-1F1F6","j":["mq","flag","banner","country","nation"]},"flag-mauritania":{"a":"Flag: Mauritania","b":"1F1F2-1F1F7","j":["flag","banner","mr","country","nation"]},"flag-montserrat":{"a":"Flag: Montserrat","b":"1F1F2-1F1F8","j":["flag","banner","ms","country","nation"]},"flag-malta":{"a":"Flag: Malta","b":"1F1F2-1F1F9","j":["mt","flag","banner","country","nation"]},"flag-mauritius":{"a":"Flag: Mauritius","b":"1F1F2-1F1FA","j":["mu","flag","banner","country","nation"]},"flag-maldives":{"a":"Flag: Maldives","b":"1F1F2-1F1FB","j":["flag","banner","mv","country","nation"]},"flag-malawi":{"a":"Flag: Malawi","b":"1F1F2-1F1FC","j":["mw","flag","banner","country","nation"]},"flag-mexico":{"a":"Flag: Mexico","b":"1F1F2-1F1FD","j":["mx","flag","banner","country","nation"]},"flag-malaysia":{"a":"Flag: Malaysia","b":"1F1F2-1F1FE","j":["flag","my","banner","country","nation"]},"flag-mozambique":{"a":"Flag: Mozambique","b":"1F1F2-1F1FF","j":["flag","banner","mz","country","nation"]},"flag-namibia":{"a":"Flag: Namibia","b":"1F1F3-1F1E6","j":["na","flag","banner","country","nation"]},"flag-new-caledonia":{"a":"Flag: New Caledonia","b":"1F1F3-1F1E8","j":["country","flag","banner","caledonia","nation","new"]},"flag-niger":{"a":"Flag: Niger","b":"1F1F3-1F1EA","j":["flag","banner","ne","country","nation"]},"flag-norfolk-island":{"a":"Flag: Norfolk Island","b":"1F1F3-1F1EB","j":["norfolk","flag","banner","country","island","nation"]},"flag-nigeria":{"a":"Flag: Nigeria","b":"1F1F3-1F1EC","j":["flag","country","banner","nation"]},"flag-nicaragua":{"a":"Flag: Nicaragua","b":"1F1F3-1F1EE","j":["flag","banner","country","nation","ni"]},"flag-netherlands":{"a":"Flag: Netherlands","b":"1F1F3-1F1F1","j":["flag","banner","nl","country","nation"]},"flag-norway":{"a":"Flag: Norway","b":"1F1F3-1F1F4","j":["no","flag","banner","country","nation"]},"flag-nepal":{"a":"Flag: Nepal","b":"1F1F3-1F1F5","j":["flag","np","banner","country","nation"]},"flag-nauru":{"a":"Flag: Nauru","b":"1F1F3-1F1F7","j":["nr","flag","banner","country","nation"]},"flag-niue":{"a":"Flag: Niue","b":"1F1F3-1F1FA","j":["nu","flag","banner","country","nation"]},"flag-new-zealand":{"a":"Flag: New Zealand","b":"1F1F3-1F1FF","j":["flag","banner","country","zealand","nation","new"]},"flag-oman":{"a":"Flag: Oman","b":"1F1F4-1F1F2","j":["om_symbol","flag","banner","country","nation"]},"flag-panama":{"a":"Flag: Panama","b":"1F1F5-1F1E6","j":["flag","banner","country","nation","pa"]},"flag-peru":{"a":"Flag: Peru","b":"1F1F5-1F1EA","j":["flag","banner","pe","country","nation"]},"flag-french-polynesia":{"a":"Flag: French Polynesia","b":"1F1F5-1F1EB","j":["flag","banner","french","country","nation","polynesia"]},"flag-papua-new-guinea":{"a":"Flag: Papua New Guinea","b":"1F1F5-1F1EC","j":["flag","banner","guinea","country","nation","papua","new"]},"flag-philippines":{"a":"Flag: Philippines","b":"1F1F5-1F1ED","j":["ph","flag","banner","country","nation"]},"flag-pakistan":{"a":"Flag: Pakistan","b":"1F1F5-1F1F0","j":["pk","flag","banner","country","nation"]},"flag-poland":{"a":"Flag: Poland","b":"1F1F5-1F1F1","j":["flag","pl","banner","country","nation"]},"flag-st-pierre--miquelon":{"a":"Flag: St. Pierre & Miquelon","b":"1F1F5-1F1F2","j":["pierre","nation","flag_st_pierre_miquelon","flag","miquelon","banner","country","saint"]},"flag-pitcairn-islands":{"a":"Flag: Pitcairn Islands","b":"1F1F5-1F1F3","j":["country","flag","banner","pitcairn","nation"]},"flag-puerto-rico":{"a":"Flag: Puerto Rico","b":"1F1F5-1F1F7","j":["flag","banner","rico","country","puerto","nation"]},"flag-palestinian-territories":{"a":"Flag: Palestinian Territories","b":"1F1F5-1F1F8","j":["palestine","nation","territories","flag","banner","country","palestinian"]},"flag-portugal":{"a":"Flag: Portugal","b":"1F1F5-1F1F9","j":["flag","pt","banner","country","nation"]},"flag-palau":{"a":"Flag: Palau","b":"1F1F5-1F1FC","j":["flag","banner","pw","country","nation"]},"flag-paraguay":{"a":"Flag: Paraguay","b":"1F1F5-1F1FE","j":["py","flag","banner","country","nation"]},"flag-qatar":{"a":"Flag: Qatar","b":"1F1F6-1F1E6","j":["flag","qa","banner","country","nation"]},"flag-runion":{"a":"Flag: Réunion","b":"1F1F7-1F1EA","j":["flag_reunion","réunion","flag","banner","country","nation"]},"flag-romania":{"a":"Flag: Romania","b":"1F1F7-1F1F4","j":["ro","flag","banner","country","nation"]},"flag-serbia":{"a":"Flag: Serbia","b":"1F1F7-1F1F8","j":["flag","banner","rs","country","nation"]},"flag-russia":{"a":"Flag: Russia","b":"1F1F7-1F1FA","j":["russian","federation","flag","banner","country","nation"]},"flag-rwanda":{"a":"Flag: Rwanda","b":"1F1F7-1F1FC","j":["rw","flag","banner","country","nation"]},"flag-saudi-arabia":{"a":"Flag: Saudi Arabia","b":"1F1F8-1F1E6","j":["flag","country","banner","nation"]},"flag-solomon-islands":{"a":"Flag: Solomon Islands","b":"1F1F8-1F1E7","j":["islands","flag","banner","country","nation","solomon"]},"flag-seychelles":{"a":"Flag: Seychelles","b":"1F1F8-1F1E8","j":["flag","banner","sc","country","nation"]},"flag-sudan":{"a":"Flag: Sudan","b":"1F1F8-1F1E9","j":["sd","flag","banner","country","nation"]},"flag-sweden":{"a":"Flag: Sweden","b":"1F1F8-1F1EA","j":["flag","banner","country","nation","se"]},"flag-singapore":{"a":"Flag: Singapore","b":"1F1F8-1F1EC","j":["flag","banner","sg","country","nation"]},"flag-st-helena":{"a":"Flag: St. Helena","b":"1F1F8-1F1ED","j":["cunha","saint","flag","tristan","banner","helena","ascension","country","nation"]},"flag-slovenia":{"a":"Flag: Slovenia","b":"1F1F8-1F1EE","j":["flag","si","banner","country","nation"]},"flag-svalbard--jan-mayen":{"a":"Flag: Svalbard & Jan Mayen","b":"1F1F8-1F1EF","j":["flag_svalbard_jan_mayen","flag"]},"flag-slovakia":{"a":"Flag: Slovakia","b":"1F1F8-1F1F0","j":["flag","sk","banner","country","nation"]},"flag-sierra-leone":{"a":"Flag: Sierra Leone","b":"1F1F8-1F1F1","j":["sierra","leone","flag","banner","country","nation"]},"flag-san-marino":{"a":"Flag: San Marino","b":"1F1F8-1F1F2","j":["san","marino","flag","banner","country","nation"]},"flag-senegal":{"a":"Flag: Senegal","b":"1F1F8-1F1F3","j":["sn","flag","banner","country","nation"]},"flag-somalia":{"a":"Flag: Somalia","b":"1F1F8-1F1F4","j":["flag","banner","so","country","nation"]},"flag-suriname":{"a":"Flag: Suriname","b":"1F1F8-1F1F7","j":["sr","flag","banner","country","nation"]},"flag-south-sudan":{"a":"Flag: South Sudan","b":"1F1F8-1F1F8","j":["sd","south","flag","banner","country","nation"]},"flag-so-tom--prncipe":{"a":"Flag: São Tomé & Príncipe","b":"1F1F8-1F1F9","j":["principe","tome","flag","flag_sao_tome_principe","banner","country","nation","sao"]},"flag-el-salvador":{"a":"Flag: El Salvador","b":"1F1F8-1F1FB","j":["el","flag","banner","salvador","country","nation"]},"flag-sint-maarten":{"a":"Flag: Sint Maarten","b":"1F1F8-1F1FD","j":["maarten","sint","dutch","flag","banner","country","nation"]},"flag-syria":{"a":"Flag: Syria","b":"1F1F8-1F1FE","j":["syrian","flag","banner","arab","republic","country","nation"]},"flag-eswatini":{"a":"Flag: Eswatini","b":"1F1F8-1F1FF","j":["sz","flag","banner","country","nation"]},"flag-tristan-da-cunha":{"a":"Flag: Tristan Da Cunha","b":"1F1F9-1F1E6","j":["flag"]},"flag-turks--caicos-islands":{"a":"Flag: Turks & Caicos Islands","b":"1F1F9-1F1E8","j":["islands","turks","flag","flag_turks_caicos_islands","banner","caicos","country","nation"]},"flag-chad":{"a":"Flag: Chad","b":"1F1F9-1F1E9","j":["td","flag","banner","country","nation"]},"flag-french-southern-territories":{"a":"Flag: French Southern Territories","b":"1F1F9-1F1EB","j":["territories","southern","flag","banner","french","country","nation"]},"flag-togo":{"a":"Flag: Togo","b":"1F1F9-1F1EC","j":["tg","flag","banner","country","nation"]},"flag-thailand":{"a":"Flag: Thailand","b":"1F1F9-1F1ED","j":["flag","banner","th","country","nation"]},"flag-tajikistan":{"a":"Flag: Tajikistan","b":"1F1F9-1F1EF","j":["tj","flag","banner","country","nation"]},"flag-tokelau":{"a":"Flag: Tokelau","b":"1F1F9-1F1F0","j":["tk","flag","banner","country","nation"]},"flag-timorleste":{"a":"Flag: Timor-Leste","b":"1F1F9-1F1F1","j":["timor","flag_timor_leste","flag","banner","leste","country","nation"]},"flag-turkmenistan":{"a":"Flag: Turkmenistan","b":"1F1F9-1F1F2","j":["flag","country","banner","nation"]},"flag-tunisia":{"a":"Flag: Tunisia","b":"1F1F9-1F1F3","j":["tn","flag","banner","country","nation"]},"flag-tonga":{"a":"Flag: Tonga","b":"1F1F9-1F1F4","j":["to","flag","banner","country","nation"]},"flag-turkey":{"a":"Flag: Turkey","b":"1F1F9-1F1F7","j":["turkey","flag","banner","country","nation"]},"flag-trinidad--tobago":{"a":"Flag: Trinidad & Tobago","b":"1F1F9-1F1F9","j":["flag_trinidad_tobago","flag","banner","trinidad","tobago","country","nation"]},"flag-tuvalu":{"a":"Flag: Tuvalu","b":"1F1F9-1F1FB","j":["flag","country","banner","nation"]},"flag-taiwan":{"a":"Flag: Taiwan","b":"1F1F9-1F1FC","j":["tw","flag","banner","country","nation"]},"flag-tanzania":{"a":"Flag: Tanzania","b":"1F1F9-1F1FF","j":["tanzania","united","flag","banner","republic","country","nation"]},"flag-ukraine":{"a":"Flag: Ukraine","b":"1F1FA-1F1E6","j":["flag","banner","country","nation","ua"]},"flag-uganda":{"a":"Flag: Uganda","b":"1F1FA-1F1EC","j":["ug","flag","banner","country","nation"]},"flag-us-outlying-islands":{"a":"Flag: U.S. Outlying Islands","b":"1F1FA-1F1F2","j":["flag","flag_u_s_outlying_islands"]},"flag-united-nations":{"a":"Flag: United Nations","b":"1F1FA-1F1F3","j":["flag","un","banner"]},"flag-united-states":{"a":"Flag: United States","b":"1F1FA-1F1F8","j":["america","united","flag","states","banner","country","nation"]},"flag-uruguay":{"a":"Flag: Uruguay","b":"1F1FA-1F1FE","j":["flag","uy","banner","country","nation"]},"flag-uzbekistan":{"a":"Flag: Uzbekistan","b":"1F1FA-1F1FF","j":["uz","flag","banner","country","nation"]},"flag-vatican-city":{"a":"Flag: Vatican City","b":"1F1FB-1F1E6","j":["vatican","city","flag","banner","country","nation"]},"flag-st-vincent--grenadines":{"a":"Flag: St. Vincent & Grenadines","b":"1F1FB-1F1E8","j":["nation","flag_st_vincent_grenadines","vincent","grenadines","flag","banner","country","saint"]},"flag-venezuela":{"a":"Flag: Venezuela","b":"1F1FB-1F1EA","j":["bolivarian","ve","flag","banner","republic","country","nation"]},"flag-british-virgin-islands":{"a":"Flag: British Virgin Islands","b":"1F1FB-1F1EC","j":["virgin","bvi","islands","british","flag","banner","country","nation"]},"flag-us-virgin-islands":{"a":"Flag: U.S. Virgin Islands","b":"1F1FB-1F1EE","j":["virgin","islands","us","flag","banner","country","nation","flag_u_s_virgin_islands"]},"flag-vietnam":{"a":"Flag: Vietnam","b":"1F1FB-1F1F3","j":["nam","flag","banner","viet","country","nation"]},"flag-vanuatu":{"a":"Flag: Vanuatu","b":"1F1FB-1F1FA","j":["flag","banner","vu","country","nation"]},"flag-wallis--futuna":{"a":"Flag: Wallis & Futuna","b":"1F1FC-1F1EB","j":["flag_wallis_futuna","flag","wallis","futuna","banner","country","nation"]},"flag-samoa":{"a":"Flag: Samoa","b":"1F1FC-1F1F8","j":["ws","flag","banner","country","nation"]},"flag-kosovo":{"a":"Flag: Kosovo","b":"1F1FD-1F1F0","j":["flag","banner","country","nation","xk"]},"flag-yemen":{"a":"Flag: Yemen","b":"1F1FE-1F1EA","j":["flag","banner","ye","country","nation"]},"flag-mayotte":{"a":"Flag: Mayotte","b":"1F1FE-1F1F9","j":["flag","banner","country","yt","nation"]},"flag-south-africa":{"a":"Flag: South Africa","b":"1F1FF-1F1E6","j":["south","africa","flag","banner","country","nation"]},"flag-zambia":{"a":"Flag: Zambia","b":"1F1FF-1F1F2","j":["zm","flag","banner","country","nation"]},"flag-zimbabwe":{"a":"Flag: Zimbabwe","b":"1F1FF-1F1FC","j":["zw","flag","banner","country","nation"]},"flag-england":{"a":"Flag: England","b":"1F3F4-E0067-E0062-E0065-E006E-E0067-E007F","j":["flag","english"]},"flag-scotland":{"a":"Flag: Scotland","b":"1F3F4-E0067-E0062-E0073-E0063-E0074-E007F","j":["scottish","flag"]},"flag-wales":{"a":"Flag: Wales","b":"1F3F4-E0067-E0062-E0077-E006C-E0073-E007F","j":["flag","welsh"]}},"aliases":{}} \ No newline at end of file From 40929b96406ea510da36291e450351b4ac992375 Mon Sep 17 00:00:00 2001 From: oogm Date: Fri, 26 Mar 2021 17:21:33 +0100 Subject: [PATCH 6/6] Update CHANGES.md for a release with 1.1.4 --- CHANGES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 03d9a45544..feff52b7b3 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -11,6 +11,7 @@ Improvements 🙌: - Improve message with Emoji only detection (#3017) - Picture preview when replying. Also add the image preview in the message detail bottomsheet (#2916) - Api interceptor to allow app developers peek responses (#2986) + - Update reactions to Unicode 13.1 (#2998) Bugfix 🐛: - Fix bad theme change for the MainActivity @@ -68,7 +69,6 @@ Improvements 🙌: - Sending is now queuing by room and not uniquely to the session - Improve Snackbar duration (#2929) - Improve sending message state (#2937) - - Update reactions to Unicode 13.1 (#2998) Bugfix 🐛: - Try to fix crash about UrlPreview (#2640)