emoji

emoji list in a C header
git clone https://noulin.net/git/emoji.git
Log | Files | Refs | README | LICENSE

commit 6c023fe41c26554ae4d44921706be8373ddf421e
parent 3c35e79d47c66bbbe8c311623be5fa7118046557
Author: Remy Noulin <loader2x@gmail.com>
Date:   Thu, 18 Oct 2018 14:49:27 +0200

fix error in state machine

emoji.h            | 100 ++++++++++++++++++++++++++++++++++++++++++++++++++++-
generateDataForC.c |  13 +++++--
package.yml        |   2 +-
3 files changed, 110 insertions(+), 5 deletions(-)

Diffstat:
Memoji.h | 100++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
MgenerateDataForC.c | 13++++++++++---
Mpackage.yml | 2+-
3 files changed, 110 insertions(+), 5 deletions(-)

diff --git a/emoji.h b/emoji.h @@ -3,6 +3,7 @@ // Category: smileys // Subcategory: face-smiling +#define EM_GRINNING_FACE "\xf0\x9f\x98\x80" #define EM_GRINNING_FACE_WITH_BIG_EYES "\xf0\x9f\x98\x83" #define EM_GRINNING_FACE_WITH_SMILING_EYES "\xf0\x9f\x98\x84" #define EM_BEAMING_FACE_WITH_SMILING_EYES "\xf0\x9f\x98\x81" @@ -17,6 +18,7 @@ #define EM_SMILING_FACE_WITH_HALO "\xf0\x9f\x98\x87" // Subcategory: face-affection +#define EM__SMILING_FACE_WITH_3_HEARTS "\xf0\x9f\xa5\xb0" #define EM_SMILING_FACE_WITH_HEARTEYES "\xf0\x9f\x98\x8d" #define EM_STARSTRUCK "\xf0\x9f\xa4\xa9" #define EM_FACE_BLOWING_A_KISS "\xf0\x9f\x98\x98" @@ -26,6 +28,7 @@ #define EM_KISSING_FACE_WITH_SMILING_EYES "\xf0\x9f\x98\x99" // Subcategory: face-tongue +#define EM_FACE_SAVORING_FOOD "\xf0\x9f\x98\x8b" #define EM_FACE_WITH_TONGUE "\xf0\x9f\x98\x9b" #define EM_WINKING_FACE_WITH_TONGUE "\xf0\x9f\x98\x9c" #define EM_ZANY_FACE "\xf0\x9f\xa4\xaa" @@ -33,11 +36,13 @@ #define EM_MONEYMOUTH_FACE "\xf0\x9f\xa4\x91" // Subcategory: face-hand +#define EM_HUGGING_FACE "\xf0\x9f\xa4\x97" #define EM_FACE_WITH_HAND_OVER_MOUTH "\xf0\x9f\xa4\xad" #define EM_SHUSHING_FACE "\xf0\x9f\xa4\xab" #define EM_THINKING_FACE "\xf0\x9f\xa4\x94" // Subcategory: face-neutral-skeptical +#define EM_ZIPPERMOUTH_FACE "\xf0\x9f\xa4\x90" #define EM_FACE_WITH_RAISED_EYEBROW "\xf0\x9f\xa4\xa8" #define EM_NEUTRAL_FACE "\xf0\x9f\x98\x90" #define EM_EXPRESSIONLESS_FACE "\xf0\x9f\x98\x91" @@ -49,12 +54,14 @@ #define EM_LYING_FACE "\xf0\x9f\xa4\xa5" // Subcategory: face-sleepy +#define EM_RELIEVED_FACE "\xf0\x9f\x98\x8c" #define EM_PENSIVE_FACE "\xf0\x9f\x98\x94" #define EM_SLEEPY_FACE "\xf0\x9f\x98\xaa" #define EM_DROOLING_FACE "\xf0\x9f\xa4\xa4" #define EM_SLEEPING_FACE "\xf0\x9f\x98\xb4" // Subcategory: face-unwell +#define EM_FACE_WITH_MEDICAL_MASK "\xf0\x9f\x98\xb7" #define EM_FACE_WITH_THERMOMETER "\xf0\x9f\xa4\x92" #define EM_FACE_WITH_HEADBANDAGE "\xf0\x9f\xa4\x95" #define EM_NAUSEATED_FACE "\xf0\x9f\xa4\xa2" @@ -67,13 +74,16 @@ #define EM_EXPLODING_HEAD "\xf0\x9f\xa4\xaf" // Subcategory: face-hat +#define EM_COWBOY_HAT_FACE "\xf0\x9f\xa4\xa0" #define EM__PARTYING_FACE "\xf0\x9f\xa5\xb3" // Subcategory: face-glasses +#define EM_SMILING_FACE_WITH_SUNGLASSES "\xf0\x9f\x98\x8e" #define EM_NERD_FACE "\xf0\x9f\xa4\x93" #define EM_FACE_WITH_MONOCLE "\xf0\x9f\xa7\x90" // Subcategory: face-concerned +#define EM_CONFUSED_FACE "\xf0\x9f\x98\x95" #define EM_WORRIED_FACE "\xf0\x9f\x98\x9f" #define EM_SLIGHTLY_FROWNING_FACE "\xf0\x9f\x99\x81" #define EM_FROWNING_FACE "\xe2\x98\xb9" @@ -98,6 +108,7 @@ #define EM_TIRED_FACE "\xf0\x9f\x98\xab" // Subcategory: face-negative +#define EM_FACE_WITH_STEAM_FROM_NOSE "\xf0\x9f\x98\xa4" #define EM_POUTING_FACE "\xf0\x9f\x98\xa1" #define EM_ANGRY_FACE "\xf0\x9f\x98\xa0" #define EM_FACE_WITH_SYMBOLS_ON_MOUTH "\xf0\x9f\xa4\xac" @@ -107,6 +118,7 @@ #define EM_SKULL_AND_CROSSBONES "\xe2\x98\xa0" // Subcategory: face-costume +#define EM_PILE_OF_POO "\xf0\x9f\x92\xa9" #define EM_CLOWN_FACE "\xf0\x9f\xa4\xa1" #define EM_OGRE "\xf0\x9f\x91\xb9" #define EM_GOBLIN "\xf0\x9f\x91\xba" @@ -116,6 +128,7 @@ #define EM_ROBOT_FACE "\xf0\x9f\xa4\x96" // Subcategory: cat-face +#define EM_GRINNING_CAT_FACE "\xf0\x9f\x98\xba" #define EM_GRINNING_CAT_FACE_WITH_SMILING_EYES "\xf0\x9f\x98\xb8" #define EM_CAT_FACE_WITH_TEARS_OF_JOY "\xf0\x9f\x98\xb9" #define EM_SMILING_CAT_FACE_WITH_HEARTEYES "\xf0\x9f\x98\xbb" @@ -126,10 +139,12 @@ #define EM_POUTING_CAT_FACE "\xf0\x9f\x98\xbe" // Subcategory: monkey-face +#define EM_SEENOEVIL_MONKEY "\xf0\x9f\x99\x88" #define EM_HEARNOEVIL_MONKEY "\xf0\x9f\x99\x89" #define EM_SPEAKNOEVIL_MONKEY "\xf0\x9f\x99\x8a" // Subcategory: emotion +#define EM_KISS_MARK "\xf0\x9f\x92\x8b" #define EM_LOVE_LETTER "\xf0\x9f\x92\x8c" #define EM_HEART_WITH_ARROW "\xf0\x9f\x92\x98" #define EM_HEART_WITH_RIBBON "\xf0\x9f\x92\x9d" @@ -167,12 +182,14 @@ // Category: people // Subcategory: hand-fingers-open +#define EM_WAVING_HAND "\xf0\x9f\x91\x8b" #define EM_RAISED_BACK_OF_HAND "\xf0\x9f\xa4\x9a" #define EM_HAND_WITH_FINGERS_SPLAYED "\xf0\x9f\x96\x90" #define EM_RAISED_HAND "\xe2\x9c\x8b" #define EM_VULCAN_SALUTE "\xf0\x9f\x96\x96" // Subcategory: hand-fingers-partial +#define EM_OK_HAND "\xf0\x9f\x91\x8c" #define EM_VICTORY_HAND "\xe2\x9c\x8c" #define EM_CROSSED_FINGERS "\xf0\x9f\xa4\x9e" #define EM_LOVEYOU_GESTURE "\xf0\x9f\xa4\x9f" @@ -180,6 +197,7 @@ #define EM_CALL_ME_HAND "\xf0\x9f\xa4\x99" // Subcategory: hand-single-finger +#define EM_BACKHAND_INDEX_POINTING_LEFT "\xf0\x9f\x91\x88" #define EM_BACKHAND_INDEX_POINTING_RIGHT "\xf0\x9f\x91\x89" #define EM_BACKHAND_INDEX_POINTING_UP "\xf0\x9f\x91\x86" #define EM_MIDDLE_FINGER "\xf0\x9f\x96\x95" @@ -187,6 +205,7 @@ #define EM_INDEX_POINTING_UP "\xe2\x98\x9d" // Subcategory: hand-fingers-closed +#define EM_THUMBS_UP "\xf0\x9f\x91\x8d" #define EM_THUMBS_DOWN "\xf0\x9f\x91\x8e" #define EM_RAISED_FIST "\xe2\x9c\x8a" #define EM_ONCOMING_FIST "\xf0\x9f\x91\x8a" @@ -194,6 +213,7 @@ #define EM_RIGHTFACING_FIST "\xf0\x9f\xa4\x9c" // Subcategory: hands +#define EM_CLAPPING_HANDS "\xf0\x9f\x91\x8f" #define EM_RAISING_HANDS "\xf0\x9f\x99\x8c" #define EM_OPEN_HANDS "\xf0\x9f\x91\x90" #define EM_PALMS_UP_TOGETHER "\xf0\x9f\xa4\xb2" @@ -201,10 +221,12 @@ #define EM_FOLDED_HANDS "\xf0\x9f\x99\x8f" // Subcategory: hand-prop +#define EM_WRITING_HAND "\xe2\x9c\x8d" #define EM_NAIL_POLISH "\xf0\x9f\x92\x85" #define EM_SELFIE "\xf0\x9f\xa4\xb3" // Subcategory: body-parts +#define EM_FLEXED_BICEPS "\xf0\x9f\x92\xaa" #define EM__LEG "\xf0\x9f\xa6\xb5" #define EM__FOOT "\xf0\x9f\xa6\xb6" #define EM_EAR "\xf0\x9f\x91\x82" @@ -218,6 +240,7 @@ #define EM_MOUTH "\xf0\x9f\x91\x84" // Subcategory: person +#define EM_BABY "\xf0\x9f\x91\xb6" #define EM_CHILD "\xf0\x9f\xa7\x92" #define EM_BOY "\xf0\x9f\x91\xa6" #define EM_GIRL "\xf0\x9f\x91\xa7" @@ -241,6 +264,7 @@ #define EM_OLD_WOMAN "\xf0\x9f\x91\xb5" // Subcategory: person-gesture +#define EM_PERSON_FROWNING "\xf0\x9f\x99\x8d" #define EM_MAN_FROWNING "\xf0\x9f\x99\x8d\xe2\x80\x8d\xe2\x99\x82\xef\xb8\x8f" #define EM_WOMAN_FROWNING "\xf0\x9f\x99\x8d\xe2\x80\x8d\xe2\x99\x80\xef\xb8\x8f" #define EM_PERSON_POUTING "\xf0\x9f\x99\x8e" @@ -269,6 +293,7 @@ #define EM_WOMAN_SHRUGGING "\xf0\x9f\xa4\xb7\xe2\x80\x8d\xe2\x99\x80\xef\xb8\x8f" // Subcategory: person-role +#define EM_MAN_HEALTH_WORKER "\xf0\x9f\x91\xa8\xe2\x80\x8d\xe2\x9a\x95\xef\xb8\x8f" #define EM_WOMAN_HEALTH_WORKER "\xf0\x9f\x91\xa9\xe2\x80\x8d\xe2\x9a\x95\xef\xb8\x8f" #define EM_MAN_STUDENT "\xf0\x9f\x91\xa8\xe2\x80\x8d\xf0\x9f\x8e\x93" #define EM_WOMAN_STUDENT "\xf0\x9f\x91\xa9\xe2\x80\x8d\xf0\x9f\x8e\x93" @@ -325,6 +350,7 @@ #define EM_BREASTFEEDING "\xf0\x9f\xa4\xb1" // Subcategory: person-fantasy +#define EM_BABY_ANGEL "\xf0\x9f\x91\xbc" #define EM_SANTA_CLAUS "\xf0\x9f\x8e\x85" #define EM_MRS_CLAUS "\xf0\x9f\xa4\xb6" #define EM__SUPERHERO "\xf0\x9f\xa6\xb8" @@ -356,6 +382,7 @@ #define EM_WOMAN_ZOMBIE "\xf0\x9f\xa7\x9f\xe2\x80\x8d\xe2\x99\x80\xef\xb8\x8f" // Subcategory: person-activity +#define EM_PERSON_GETTING_MASSAGE "\xf0\x9f\x92\x86" #define EM_MAN_GETTING_MASSAGE "\xf0\x9f\x92\x86\xe2\x80\x8d\xe2\x99\x82\xef\xb8\x8f" #define EM_WOMAN_GETTING_MASSAGE "\xf0\x9f\x92\x86\xe2\x80\x8d\xe2\x99\x80\xef\xb8\x8f" #define EM_PERSON_GETTING_HAIRCUT "\xf0\x9f\x92\x87" @@ -381,6 +408,7 @@ #define EM_WOMAN_CLIMBING "\xf0\x9f\xa7\x97\xe2\x80\x8d\xe2\x99\x80\xef\xb8\x8f" // Subcategory: person-sport +#define EM_PERSON_FENCING "\xf0\x9f\xa4\xba" #define EM_HORSE_RACING "\xf0\x9f\x8f\x87" #define EM_SKIER "\xe2\x9b\xb7" #define EM_SNOWBOARDER "\xf0\x9f\x8f\x82" @@ -425,12 +453,14 @@ #define EM_WOMAN_JUGGLING "\xf0\x9f\xa4\xb9\xe2\x80\x8d\xe2\x99\x80\xef\xb8\x8f" // Subcategory: person-resting +#define EM_PERSON_IN_LOTUS_POSITION "\xf0\x9f\xa7\x98" #define EM_MAN_IN_LOTUS_POSITION "\xf0\x9f\xa7\x98\xe2\x80\x8d\xe2\x99\x82\xef\xb8\x8f" #define EM_WOMAN_IN_LOTUS_POSITION "\xf0\x9f\xa7\x98\xe2\x80\x8d\xe2\x99\x80\xef\xb8\x8f" #define EM_PERSON_TAKING_BATH "\xf0\x9f\x9b\x80" #define EM_PERSON_IN_BED "\xf0\x9f\x9b\x8c" // Subcategory: family +#define EM_TWO_WOMEN_HOLDING_HANDS "\xf0\x9f\x91\xad" #define EM_MAN_AND_WOMAN_HOLDING_HANDS "\xf0\x9f\x91\xab" #define EM_TWO_MEN_HOLDING_HANDS "\xf0\x9f\x91\xac" #define EM_KISS "\xf0\x9f\x92\x8f" @@ -469,6 +499,7 @@ #define EM_FAMILY_WOMAN_GIRL_GIRL "\xf0\x9f\x91\xa9\xe2\x80\x8d\xf0\x9f\x91\xa7\xe2\x80\x8d\xf0\x9f\x91\xa7" // Subcategory: person-symbol +#define EM_SPEAKING_HEAD "\xf0\x9f\x97\xa3" #define EM_BUST_IN_SILHOUETTE "\xf0\x9f\x91\xa4" #define EM_BUSTS_IN_SILHOUETTE "\xf0\x9f\x91\xa5" #define EM_FOOTPRINTS "\xf0\x9f\x91\xa3" @@ -477,6 +508,7 @@ // Category: component // Subcategory: hair-style +#define EM__RED_HAIR "\xf0\x9f\xa6\xb0" #define EM__CURLY_HAIR "\xf0\x9f\xa6\xb1" #define EM__WHITE_HAIR "\xf0\x9f\xa6\xb3" #define EM__BALD "\xf0\x9f\xa6\xb2" @@ -485,6 +517,7 @@ // Category: animals_and_nature // Subcategory: animal-mammal +#define EM_MONKEY_FACE "\xf0\x9f\x90\xb5" #define EM_MONKEY "\xf0\x9f\x90\x92" #define EM_GORILLA "\xf0\x9f\xa6\x8d" #define EM_DOG_FACE "\xf0\x9f\x90\xb6" @@ -539,6 +572,7 @@ #define EM_PAW_PRINTS "\xf0\x9f\x90\xbe" // Subcategory: animal-bird +#define EM_TURKEY "\xf0\x9f\xa6\x83" #define EM_CHICKEN "\xf0\x9f\x90\x94" #define EM_ROOSTER "\xf0\x9f\x90\x93" #define EM_HATCHING_CHICK "\xf0\x9f\x90\xa3" @@ -554,7 +588,11 @@ #define EM__PEACOCK "\xf0\x9f\xa6\x9a" #define EM__PARROT "\xf0\x9f\xa6\x9c" +// Subcategory: animal-amphibian +#define EM_FROG_FACE "\xf0\x9f\x90\xb8" + // Subcategory: animal-reptile +#define EM_CROCODILE "\xf0\x9f\x90\x8a" #define EM_TURTLE "\xf0\x9f\x90\xa2" #define EM_LIZARD "\xf0\x9f\xa6\x8e" #define EM_SNAKE "\xf0\x9f\x90\x8d" @@ -564,6 +602,7 @@ #define EM_TREX "\xf0\x9f\xa6\x96" // Subcategory: animal-marine +#define EM_SPOUTING_WHALE "\xf0\x9f\x90\xb3" #define EM_WHALE "\xf0\x9f\x90\x8b" #define EM_DOLPHIN "\xf0\x9f\x90\xac" #define EM_FISH "\xf0\x9f\x90\x9f" @@ -574,6 +613,7 @@ #define EM_SPIRAL_SHELL "\xf0\x9f\x90\x9a" // Subcategory: animal-bug +#define EM_SNAIL "\xf0\x9f\x90\x8c" #define EM_BUTTERFLY "\xf0\x9f\xa6\x8b" #define EM_BUG "\xf0\x9f\x90\x9b" #define EM_ANT "\xf0\x9f\x90\x9c" @@ -587,6 +627,7 @@ #define EM__MICROBE "\xf0\x9f\xa6\xa0" // Subcategory: plant-flower +#define EM_BOUQUET "\xf0\x9f\x92\x90" #define EM_CHERRY_BLOSSOM "\xf0\x9f\x8c\xb8" #define EM_WHITE_FLOWER "\xf0\x9f\x92\xae" #define EM_ROSETTE "\xf0\x9f\x8f\xb5" @@ -598,6 +639,7 @@ #define EM_TULIP "\xf0\x9f\x8c\xb7" // Subcategory: plant-other +#define EM_SEEDLING "\xf0\x9f\x8c\xb1" #define EM_EVERGREEN_TREE "\xf0\x9f\x8c\xb2" #define EM_DECIDUOUS_TREE "\xf0\x9f\x8c\xb3" #define EM_PALM_TREE "\xf0\x9f\x8c\xb4" @@ -614,6 +656,7 @@ // Category: food_and_drink // Subcategory: food-fruit +#define EM_GRAPES "\xf0\x9f\x8d\x87" #define EM_MELON "\xf0\x9f\x8d\x88" #define EM_WATERMELON "\xf0\x9f\x8d\x89" #define EM_TANGERINE "\xf0\x9f\x8d\x8a" @@ -632,6 +675,7 @@ #define EM_COCONUT "\xf0\x9f\xa5\xa5" // Subcategory: food-vegetable +#define EM_AVOCADO "\xf0\x9f\xa5\x91" #define EM_EGGPLANT "\xf0\x9f\x8d\x86" #define EM_POTATO "\xf0\x9f\xa5\x94" #define EM_CARROT "\xf0\x9f\xa5\x95" @@ -645,6 +689,7 @@ #define EM_CHESTNUT "\xf0\x9f\x8c\xb0" // Subcategory: food-prepared +#define EM_BREAD "\xf0\x9f\x8d\x9e" #define EM_CROISSANT "\xf0\x9f\xa5\x90" #define EM_BAGUETTE_BREAD "\xf0\x9f\xa5\x96" #define EM_PRETZEL "\xf0\x9f\xa5\xa8" @@ -674,6 +719,7 @@ #define EM_CANNED_FOOD "\xf0\x9f\xa5\xab" // Subcategory: food-asian +#define EM_BENTO_BOX "\xf0\x9f\x8d\xb1" #define EM_RICE_CRACKER "\xf0\x9f\x8d\x98" #define EM_RICE_BALL "\xf0\x9f\x8d\x99" #define EM_COOKED_RICE "\xf0\x9f\x8d\x9a" @@ -692,11 +738,13 @@ #define EM_TAKEOUT_BOX "\xf0\x9f\xa5\xa1" // Subcategory: food-marine +#define EM_CRAB "\xf0\x9f\xa6\x80" #define EM__LOBSTER "\xf0\x9f\xa6\x9e" #define EM_SHRIMP "\xf0\x9f\xa6\x90" #define EM_SQUID "\xf0\x9f\xa6\x91" // Subcategory: food-sweet +#define EM_SOFT_ICE_CREAM "\xf0\x9f\x8d\xa6" #define EM_SHAVED_ICE "\xf0\x9f\x8d\xa7" #define EM_ICE_CREAM "\xf0\x9f\x8d\xa8" #define EM_DOUGHNUT "\xf0\x9f\x8d\xa9" @@ -712,6 +760,7 @@ #define EM_HONEY_POT "\xf0\x9f\x8d\xaf" // Subcategory: drink +#define EM_BABY_BOTTLE "\xf0\x9f\x8d\xbc" #define EM_GLASS_OF_MILK "\xf0\x9f\xa5\x9b" #define EM_HOT_BEVERAGE "\xe2\x98\x95" #define EM_TEACUP_WITHOUT_HANDLE "\xf0\x9f\x8d\xb5" @@ -727,6 +776,7 @@ #define EM_CUP_WITH_STRAW "\xf0\x9f\xa5\xa4" // Subcategory: dishware +#define EM_CHOPSTICKS "\xf0\x9f\xa5\xa2" #define EM_FORK_AND_KNIFE_WITH_PLATE "\xf0\x9f\x8d\xbd" #define EM_FORK_AND_KNIFE "\xf0\x9f\x8d\xb4" #define EM_SPOON "\xf0\x9f\xa5\x84" @@ -737,6 +787,7 @@ // Category: travel_and_places // Subcategory: place-map +#define EM_GLOBE_SHOWING_EUROPEAFRICA "\xf0\x9f\x8c\x8d" #define EM_GLOBE_SHOWING_AMERICAS "\xf0\x9f\x8c\x8e" #define EM_GLOBE_SHOWING_ASIAAUSTRALIA "\xf0\x9f\x8c\x8f" #define EM_GLOBE_WITH_MERIDIANS "\xf0\x9f\x8c\x90" @@ -745,6 +796,7 @@ #define EM__COMPASS "\xf0\x9f\xa7\xad" // Subcategory: place-geographic +#define EM_SNOWCAPPED_MOUNTAIN "\xf0\x9f\x8f\x94" #define EM_MOUNTAIN "\xe2\x9b\xb0" #define EM_VOLCANO "\xf0\x9f\x8c\x8b" #define EM_MOUNT_FUJI "\xf0\x9f\x97\xbb" @@ -755,6 +807,7 @@ #define EM_NATIONAL_PARK "\xf0\x9f\x8f\x9e" // Subcategory: place-building +#define EM_STADIUM "\xf0\x9f\x8f\x9f" #define EM_CLASSICAL_BUILDING "\xf0\x9f\x8f\x9b" #define EM_BUILDING_CONSTRUCTION "\xf0\x9f\x8f\x97" #define EM__BRICK "\xf0\x9f\xa7\xb1" @@ -780,12 +833,14 @@ #define EM_STATUE_OF_LIBERTY "\xf0\x9f\x97\xbd" // Subcategory: place-religious +#define EM_CHURCH "\xe2\x9b\xaa" #define EM_MOSQUE "\xf0\x9f\x95\x8c" #define EM_SYNAGOGUE "\xf0\x9f\x95\x8d" #define EM_SHINTO_SHRINE "\xe2\x9b\xa9" #define EM_KAABA "\xf0\x9f\x95\x8b" // Subcategory: place-other +#define EM_FOUNTAIN "\xe2\x9b\xb2" #define EM_TENT "\xe2\x9b\xba" #define EM_FOGGY "\xf0\x9f\x8c\x81" #define EM_NIGHT_WITH_STARS "\xf0\x9f\x8c\x83" @@ -804,6 +859,7 @@ #define EM_CIRCUS_TENT "\xf0\x9f\x8e\xaa" // Subcategory: transport-ground +#define EM_LOCOMOTIVE "\xf0\x9f\x9a\x82" #define EM_RAILWAY_CAR "\xf0\x9f\x9a\x83" #define EM_HIGHSPEED_TRAIN "\xf0\x9f\x9a\x84" #define EM_BULLET_TRAIN "\xf0\x9f\x9a\x85" @@ -849,6 +905,7 @@ #define EM_CONSTRUCTION "\xf0\x9f\x9a\xa7" // Subcategory: transport-water +#define EM_ANCHOR "\xe2\x9a\x93" #define EM_SAILBOAT "\xe2\x9b\xb5" #define EM_CANOE "\xf0\x9f\x9b\xb6" #define EM_SPEEDBOAT "\xf0\x9f\x9a\xa4" @@ -858,6 +915,7 @@ #define EM_SHIP "\xf0\x9f\x9a\xa2" // Subcategory: transport-air +#define EM_AIRPLANE "\xe2\x9c\x88" #define EM_SMALL_AIRPLANE "\xf0\x9f\x9b\xa9" #define EM_AIRPLANE_DEPARTURE "\xf0\x9f\x9b\xab" #define EM_AIRPLANE_ARRIVAL "\xf0\x9f\x9b\xac" @@ -871,9 +929,11 @@ #define EM_FLYING_SAUCER "\xf0\x9f\x9b\xb8" // Subcategory: hotel +#define EM_BELLHOP_BELL "\xf0\x9f\x9b\x8e" #define EM__LUGGAGE "\xf0\x9f\xa7\xb3" // Subcategory: time +#define EM_HOURGLASS_DONE "\xe2\x8c\x9b" #define EM_HOURGLASS_NOT_DONE "\xe2\x8f\xb3" #define EM_WATCH "\xe2\x8c\x9a" #define EM_ALARM_CLOCK "\xe2\x8f\xb0" @@ -906,6 +966,7 @@ #define EM_ELEVENTHIRTY "\xf0\x9f\x95\xa6" // Subcategory: sky_and_weather +#define EM_NEW_MOON "\xf0\x9f\x8c\x91" #define EM_WAXING_CRESCENT_MOON "\xf0\x9f\x8c\x92" #define EM_FIRST_QUARTER_MOON "\xf0\x9f\x8c\x93" #define EM_WAXING_GIBBOUS_MOON "\xf0\x9f\x8c\x94" @@ -955,6 +1016,7 @@ // Category: activities // Subcategory: event +#define EM_JACKOLANTERN "\xf0\x9f\x8e\x83" #define EM_CHRISTMAS_TREE "\xf0\x9f\x8e\x84" #define EM_FIREWORKS "\xf0\x9f\x8e\x86" #define EM_SPARKLER "\xf0\x9f\x8e\x87" @@ -977,6 +1039,7 @@ #define EM_TICKET "\xf0\x9f\x8e\xab" // Subcategory: award-medal +#define EM_MILITARY_MEDAL "\xf0\x9f\x8e\x96" #define EM_TROPHY "\xf0\x9f\x8f\x86" #define EM_SPORTS_MEDAL "\xf0\x9f\x8f\x85" #define EM_1ST_PLACE_MEDAL "\xf0\x9f\xa5\x87" @@ -984,6 +1047,7 @@ #define EM_3RD_PLACE_MEDAL "\xf0\x9f\xa5\x89" // Subcategory: sport +#define EM_SOCCER_BALL "\xe2\x9a\xbd" #define EM_BASEBALL "\xe2\x9a\xbe" #define EM__SOFTBALL "\xf0\x9f\xa5\x8e" #define EM_BASKETBALL "\xf0\x9f\x8f\x80" @@ -1011,6 +1075,7 @@ #define EM_CURLING_STONE "\xf0\x9f\xa5\x8c" // Subcategory: game +#define EM_DIRECT_HIT "\xf0\x9f\x8e\xaf" #define EM_POOL_8_BALL "\xf0\x9f\x8e\xb1" #define EM_CRYSTAL_BALL "\xf0\x9f\x94\xae" #define EM__NAZAR_AMULET "\xf0\x9f\xa7\xbf" @@ -1030,6 +1095,7 @@ #define EM_FLOWER_PLAYING_CARDS "\xf0\x9f\x8e\xb4" // Subcategory: arts_and_crafts +#define EM_PERFORMING_ARTS "\xf0\x9f\x8e\xad" #define EM_FRAMED_PICTURE "\xf0\x9f\x96\xbc" #define EM_ARTIST_PALETTE "\xf0\x9f\x8e\xa8" #define EM__THREAD "\xf0\x9f\xa7\xb5" @@ -1039,6 +1105,7 @@ // Category: objects // Subcategory: clothing +#define EM_GLASSES "\xf0\x9f\x91\x93" #define EM_SUNGLASSES "\xf0\x9f\x95\xb6" #define EM__GOGGLES "\xf0\x9f\xa5\xbd" #define EM__LAB_COAT "\xf0\x9f\xa5\xbc" @@ -1077,6 +1144,7 @@ #define EM_GEM_STONE "\xf0\x9f\x92\x8e" // Subcategory: sound +#define EM_MUTED_SPEAKER "\xf0\x9f\x94\x87" #define EM_SPEAKER_LOW_VOLUME "\xf0\x9f\x94\x88" #define EM_SPEAKER_MEDIUM_VOLUME "\xf0\x9f\x94\x89" #define EM_SPEAKER_HIGH_VOLUME "\xf0\x9f\x94\x8a" @@ -1087,6 +1155,7 @@ #define EM_BELL_WITH_SLASH "\xf0\x9f\x94\x95" // Subcategory: music +#define EM_MUSICAL_SCORE "\xf0\x9f\x8e\xbc" #define EM_MUSICAL_NOTE "\xf0\x9f\x8e\xb5" #define EM_MUSICAL_NOTES "\xf0\x9f\x8e\xb6" #define EM_STUDIO_MICROPHONE "\xf0\x9f\x8e\x99" @@ -1097,6 +1166,7 @@ #define EM_RADIO "\xf0\x9f\x93\xbb" // Subcategory: musical-instrument +#define EM_SAXOPHONE "\xf0\x9f\x8e\xb7" #define EM_GUITAR "\xf0\x9f\x8e\xb8" #define EM_MUSICAL_KEYBOARD "\xf0\x9f\x8e\xb9" #define EM_TRUMPET "\xf0\x9f\x8e\xba" @@ -1104,6 +1174,7 @@ #define EM_DRUM "\xf0\x9f\xa5\x81" // Subcategory: phone +#define EM_MOBILE_PHONE "\xf0\x9f\x93\xb1" #define EM_MOBILE_PHONE_WITH_ARROW "\xf0\x9f\x93\xb2" #define EM_TELEPHONE "\xe2\x98\x8e" #define EM_TELEPHONE_RECEIVER "\xf0\x9f\x93\x9e" @@ -1111,6 +1182,7 @@ #define EM_FAX_MACHINE "\xf0\x9f\x93\xa0" // Subcategory: computer +#define EM_BATTERY "\xf0\x9f\x94\x8b" #define EM_ELECTRIC_PLUG "\xf0\x9f\x94\x8c" #define EM_LAPTOP_COMPUTER "\xf0\x9f\x92\xbb" #define EM_DESKTOP_COMPUTER "\xf0\x9f\x96\xa5" @@ -1125,6 +1197,7 @@ #define EM__ABACUS "\xf0\x9f\xa7\xae" // Subcategory: light_and_video +#define EM_MOVIE_CAMERA "\xf0\x9f\x8e\xa5" #define EM_FILM_FRAMES "\xf0\x9f\x8e\x9e" #define EM_FILM_PROJECTOR "\xf0\x9f\x93\xbd" #define EM_CLAPPER_BOARD "\xf0\x9f\x8e\xac" @@ -1141,6 +1214,7 @@ #define EM_RED_PAPER_LANTERN "\xf0\x9f\x8f\xae" // Subcategory: book-paper +#define EM_NOTEBOOK_WITH_DECORATIVE_COVER "\xf0\x9f\x93\x94" #define EM_CLOSED_BOOK "\xf0\x9f\x93\x95" #define EM_OPEN_BOOK "\xf0\x9f\x93\x96" #define EM_GREEN_BOOK "\xf0\x9f\x93\x97" @@ -1159,6 +1233,7 @@ #define EM_LABEL "\xf0\x9f\x8f\xb7" // Subcategory: money +#define EM_MONEY_BAG "\xf0\x9f\x92\xb0" #define EM_YEN_BANKNOTE "\xf0\x9f\x92\xb4" #define EM_DOLLAR_BANKNOTE "\xf0\x9f\x92\xb5" #define EM_EURO_BANKNOTE "\xf0\x9f\x92\xb6" @@ -1171,6 +1246,7 @@ #define EM_HEAVY_DOLLAR_SIGN "\xf0\x9f\x92\xb2" // Subcategory: mail +#define EM_ENVELOPE "\xe2\x9c\x89" #define EM_EMAIL "\xf0\x9f\x93\xa7" #define EM_INCOMING_ENVELOPE "\xf0\x9f\x93\xa8" #define EM_ENVELOPE_WITH_ARROW "\xf0\x9f\x93\xa9" @@ -1185,6 +1261,7 @@ #define EM_BALLOT_BOX_WITH_BALLOT "\xf0\x9f\x97\xb3" // Subcategory: writing +#define EM_PENCIL "\xe2\x9c\x8f" #define EM_BLACK_NIB "\xe2\x9c\x92" #define EM_FOUNTAIN_PEN "\xf0\x9f\x96\x8b" #define EM_PEN "\xf0\x9f\x96\x8a" @@ -1193,6 +1270,7 @@ #define EM_MEMO "\xf0\x9f\x93\x9d" // Subcategory: office +#define EM_BRIEFCASE "\xf0\x9f\x92\xbc" #define EM_FILE_FOLDER "\xf0\x9f\x93\x81" #define EM_OPEN_FILE_FOLDER "\xf0\x9f\x93\x82" #define EM_CARD_INDEX_DIVIDERS "\xf0\x9f\x97\x82" @@ -1217,6 +1295,7 @@ #define EM_WASTEBASKET "\xf0\x9f\x97\x91" // Subcategory: lock +#define EM_LOCKED "\xf0\x9f\x94\x92" #define EM_UNLOCKED "\xf0\x9f\x94\x93" #define EM_LOCKED_WITH_PEN "\xf0\x9f\x94\x8f" #define EM_LOCKED_WITH_KEY "\xf0\x9f\x94\x90" @@ -1224,6 +1303,7 @@ #define EM_OLD_KEY "\xf0\x9f\x97\x9d" // Subcategory: tool +#define EM_HAMMER "\xf0\x9f\x94\xa8" #define EM_PICK "\xe2\x9b\x8f" #define EM_HAMMER_AND_PICK "\xe2\x9a\x92" #define EM_HAMMER_AND_WRENCH "\xf0\x9f\x9b\xa0" @@ -1243,6 +1323,7 @@ #define EM__MAGNET "\xf0\x9f\xa7\xb2" // Subcategory: science +#define EM_ALEMBIC "\xe2\x9a\x97" #define EM__TEST_TUBE "\xf0\x9f\xa7\xaa" #define EM__PETRI_DISH "\xf0\x9f\xa7\xab" #define EM__DNA "\xf0\x9f\xa7\xac" @@ -1251,9 +1332,11 @@ #define EM_SATELLITE_ANTENNA "\xf0\x9f\x93\xa1" // Subcategory: medical +#define EM_SYRINGE "\xf0\x9f\x92\x89" #define EM_PILL "\xf0\x9f\x92\x8a" // Subcategory: household +#define EM_DOOR "\xf0\x9f\x9a\xaa" #define EM_BED "\xf0\x9f\x9b\x8f" #define EM_COUCH_AND_LAMP "\xf0\x9f\x9b\x8b" #define EM_TOILET "\xf0\x9f\x9a\xbd" @@ -1270,6 +1353,7 @@ #define EM_SHOPPING_CART "\xf0\x9f\x9b\x92" // Subcategory: other-object +#define EM_CIGARETTE "\xf0\x9f\x9a\xac" #define EM_COFFIN "\xe2\x9a\xb0" #define EM_FUNERAL_URN "\xe2\x9a\xb1" #define EM_MOAI "\xf0\x9f\x97\xbf" @@ -1278,6 +1362,7 @@ // Category: symbols // Subcategory: transport-sign +#define EM_ATM_SIGN "\xf0\x9f\x8f\xa7" #define EM_LITTER_IN_BIN_SIGN "\xf0\x9f\x9a\xae" #define EM_POTABLE_WATER "\xf0\x9f\x9a\xb0" #define EM_WHEELCHAIR_SYMBOL "\xe2\x99\xbf" @@ -1292,6 +1377,7 @@ #define EM_LEFT_LUGGAGE "\xf0\x9f\x9b\x85" // Subcategory: warning +#define EM_WARNING "\xe2\x9a\xa0" #define EM_CHILDREN_CROSSING "\xf0\x9f\x9a\xb8" #define EM_NO_ENTRY "\xe2\x9b\x94" #define EM_PROHIBITED "\xf0\x9f\x9a\xab" @@ -1306,6 +1392,7 @@ #define EM_BIOHAZARD "\xe2\x98\xa3" // Subcategory: arrow +#define EM_UP_ARROW "\xe2\xac\x86" #define EM_UPRIGHT_ARROW "\xe2\x86\x97" #define EM_RIGHT_ARROW "\xe2\x9e\xa1" #define EM_DOWNRIGHT_ARROW "\xe2\x86\x98" @@ -1328,6 +1415,7 @@ #define EM_TOP_ARROW "\xf0\x9f\x94\x9d" // Subcategory: religion +#define EM_PLACE_OF_WORSHIP "\xf0\x9f\x9b\x90" #define EM_ATOM_SYMBOL "\xe2\x9a\x9b" #define EM_OM "\xf0\x9f\x95\x89" #define EM_STAR_OF_DAVID "\xe2\x9c\xa1" @@ -1341,6 +1429,7 @@ #define EM_DOTTED_SIXPOINTED_STAR "\xf0\x9f\x94\xaf" // Subcategory: zodiac +#define EM_ARIES "\xe2\x99\x88" #define EM_TAURUS "\xe2\x99\x89" #define EM_GEMINI "\xe2\x99\x8a" #define EM_CANCER "\xe2\x99\x8b" @@ -1355,6 +1444,7 @@ #define EM_OPHIUCHUS "\xe2\x9b\x8e" // Subcategory: av-symbol +#define EM_SHUFFLE_TRACKS_BUTTON "\xf0\x9f\x94\x80" #define EM_REPEAT_BUTTON "\xf0\x9f\x94\x81" #define EM_REPEAT_SINGLE_BUTTON "\xf0\x9f\x94\x82" #define EM_PLAY_BUTTON "\xe2\x96\xb6" @@ -1380,9 +1470,11 @@ #define EM_MOBILE_PHONE_OFF "\xf0\x9f\x93\xb4" // Subcategory: gender +#define EM_FEMALE_SIGN "\xe2\x99\x80" #define EM_MALE_SIGN "\xe2\x99\x82" // Subcategory: other-symbol +#define EM_MEDICAL_SYMBOL "\xe2\x9a\x95" #define EM__INFINITY "\xe2\x99\xbe" #define EM_RECYCLING_SYMBOL "\xe2\x99\xbb" #define EM_FLEURDELIS "\xe2\x9a\x9c" @@ -1417,6 +1509,7 @@ #define EM_TRADE_MARK "\xe2\x84\xa2" // Subcategory: keycap +#define EM_KEYCAP_NUMBER_SIGN "\x23\xef\xb8\x8f\xe2\x83\xa3" #define EM_KEYCAP_X "\x2a\xef\xb8\x8f\xe2\x83\xa3" #define EM_KEYCAP_0 "\x30\xef\xb8\x8f\xe2\x83\xa3" #define EM_KEYCAP_1 "\x31\xef\xb8\x8f\xe2\x83\xa3" @@ -1431,6 +1524,7 @@ #define EM_KEYCAP_10 "\xf0\x9f\x94\x9f" // Subcategory: alphanum +#define EM_INPUT_LATIN_UPPERCASE "\xf0\x9f\x94\xa0" #define EM_INPUT_LATIN_LOWERCASE "\xf0\x9f\x94\xa1" #define EM_INPUT_NUMBERS "\xf0\x9f\x94\xa2" #define EM_INPUT_SYMBOLS "\xf0\x9f\x94\xa3" @@ -1471,6 +1565,7 @@ #define EM_JAPANESE_NO_VACANCY_BUTTON "\xf0\x9f\x88\xb5" // Subcategory: geometric +#define EM_RED_CIRCLE "\xf0\x9f\x94\xb4" #define EM_BLUE_CIRCLE "\xf0\x9f\x94\xb5" #define EM_WHITE_CIRCLE "\xe2\x9a\xaa" #define EM_BLACK_CIRCLE "\xe2\x9a\xab" @@ -1497,6 +1592,7 @@ // Category: flags // Subcategory: flag +#define EM_CHEQUERED_FLAG "\xf0\x9f\x8f\x81" #define EM_TRIANGULAR_FLAG "\xf0\x9f\x9a\xa9" #define EM_CROSSED_FLAGS "\xf0\x9f\x8e\x8c" #define EM_BLACK_FLAG "\xf0\x9f\x8f\xb4" @@ -1505,6 +1601,7 @@ #define EM__PIRATE_FLAG "\xf0\x9f\x8f\xb4\xe2\x80\x8d\xe2\x98\xa0\xef\xb8\x8f" // Subcategory: country-flag +#define EM_FLAG_ASCENSION_ISLAND "\xf0\x9f\x87\xa6\xf0\x9f\x87\xa8" #define EM_FLAG_ANDORRA "\xf0\x9f\x87\xa6\xf0\x9f\x87\xa9" #define EM_FLAG_UNITED_ARAB_EMIRATES "\xf0\x9f\x87\xa6\xf0\x9f\x87\xaa" #define EM_FLAG_AFGHANISTAN "\xf0\x9f\x87\xa6\xf0\x9f\x87\xab" @@ -1764,6 +1861,7 @@ #define EM_FLAG_ZIMBABWE "\xf0\x9f\x87\xbf\xf0\x9f\x87\xbc" // Subcategory: subdivision-flag +#define EM_FLAG_ENGLAND "\xf0\x9f\x8f\xb4\xf3\xa0\x81\xa7\xf3\xa0\x81\xa2\xf3\xa0\x81\xa5\xf3\xa0\x81\xae\xf3\xa0\x81\xa7\xf3\xa0\x81\xbf" #define EM_FLAG_SCOTLAND "\xf0\x9f\x8f\xb4\xf3\xa0\x81\xa7\xf3\xa0\x81\xa2\xf3\xa0\x81\xb3\xf3\xa0\x81\xa3\xf3\xa0\x81\xb4\xf3\xa0\x81\xbf" #define EM_FLAG_WALES "\xf0\x9f\x8f\xb4\xf3\xa0\x81\xa7\xf3\xa0\x81\xa2\xf3\xa0\x81\xb7\xf3\xa0\x81\xac\xf3\xa0\x81\xb3\xf3\xa0\x81\xbf" @@ -1772,4 +1870,4 @@ extern smallJsont *emList; bool allocEmList(void); void freeEmList(void); -#define EM_LIST "[[\"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_hearteyes\",\"๐Ÿ˜\"],[\"starstruck\",\"๐Ÿคฉ\"],[\"face_blowing_a_kiss\",\"๐Ÿ˜˜\"],[\"kissing_face\",\"๐Ÿ˜—\"],[\"smiling_face\",\"โ˜บ\"],[\"kissing_face_with_closed_eyes\",\"๐Ÿ˜š\"],[\"kissing_face_with_smiling_eyes\",\"๐Ÿ˜™\"],[\"face_with_tongue\",\"๐Ÿ˜›\"],[\"winking_face_with_tongue\",\"๐Ÿ˜œ\"],[\"zany_face\",\"๐Ÿคช\"],[\"squinting_face_with_tongue\",\"๐Ÿ˜\"],[\"moneymouth_face\",\"๐Ÿค‘\"],[\"face_with_hand_over_mouth\",\"๐Ÿคญ\"],[\"shushing_face\",\"๐Ÿคซ\"],[\"thinking_face\",\"๐Ÿค”\"],[\"face_with_raised_eyebrow\",\"๐Ÿคจ\"],[\"neutral_face\",\"๐Ÿ˜\"],[\"expressionless_face\",\"๐Ÿ˜‘\"],[\"face_without_mouth\",\"๐Ÿ˜ถ\"],[\"smirking_face\",\"๐Ÿ˜\"],[\"unamused_face\",\"๐Ÿ˜’\"],[\"face_with_rolling_eyes\",\"๐Ÿ™„\"],[\"grimacing_face\",\"๐Ÿ˜ฌ\"],[\"lying_face\",\"๐Ÿคฅ\"],[\"pensive_face\",\"๐Ÿ˜”\"],[\"sleepy_face\",\"๐Ÿ˜ช\"],[\"drooling_face\",\"๐Ÿคค\"],[\"sleeping_face\",\"๐Ÿ˜ด\"],[\"face_with_thermometer\",\"๐Ÿค’\"],[\"face_with_headbandage\",\"๐Ÿค•\"],[\"nauseated_face\",\"๐Ÿคข\"],[\"face_vomiting\",\"๐Ÿคฎ\"],[\"sneezing_face\",\"๐Ÿคง\"],[\"_hot_face\",\"๐Ÿฅต\"],[\"_cold_face\",\"๐Ÿฅถ\"],[\"_woozy_face\",\"๐Ÿฅด\"],[\"dizzy_face\",\"๐Ÿ˜ต\"],[\"exploding_head\",\"๐Ÿคฏ\"],[\"_partying_face\",\"๐Ÿฅณ\"],[\"nerd_face\",\"๐Ÿค“\"],[\"face_with_monocle\",\"๐Ÿง\"],[\"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\",\"๐Ÿ˜ซ\"],[\"pouting_face\",\"๐Ÿ˜ก\"],[\"angry_face\",\"๐Ÿ˜ \"],[\"face_with_symbols_on_mouth\",\"๐Ÿคฌ\"],[\"smiling_face_with_horns\",\"๐Ÿ˜ˆ\"],[\"angry_face_with_horns\",\"๐Ÿ‘ฟ\"],[\"skull\",\"๐Ÿ’€\"],[\"skull_and_crossbones\",\"โ˜ \"],[\"clown_face\",\"๐Ÿคก\"],[\"ogre\",\"๐Ÿ‘น\"],[\"goblin\",\"๐Ÿ‘บ\"],[\"ghost\",\"๐Ÿ‘ป\"],[\"alien\",\"๐Ÿ‘ฝ\"],[\"alien_monster\",\"๐Ÿ‘พ\"],[\"robot_face\",\"๐Ÿค–\"],[\"grinning_cat_face_with_smiling_eyes\",\"๐Ÿ˜ธ\"],[\"cat_face_with_tears_of_joy\",\"๐Ÿ˜น\"],[\"smiling_cat_face_with_hearteyes\",\"๐Ÿ˜ป\"],[\"cat_face_with_wry_smile\",\"๐Ÿ˜ผ\"],[\"kissing_cat_face\",\"๐Ÿ˜ฝ\"],[\"weary_cat_face\",\"๐Ÿ™€\"],[\"crying_cat_face\",\"๐Ÿ˜ฟ\"],[\"pouting_cat_face\",\"๐Ÿ˜พ\"],[\"hearnoevil_monkey\",\"๐Ÿ™‰\"],[\"speaknoevil_monkey\",\"๐Ÿ™Š\"],[\"love_letter\",\"๐Ÿ’Œ\"],[\"heart_with_arrow\",\"๐Ÿ’˜\"],[\"heart_with_ribbon\",\"๐Ÿ’\"],[\"sparkling_heart\",\"๐Ÿ’–\"],[\"growing_heart\",\"๐Ÿ’—\"],[\"beating_heart\",\"๐Ÿ’“\"],[\"revolving_hearts\",\"๐Ÿ’ž\"],[\"two_hearts\",\"๐Ÿ’•\"],[\"heart_decoration\",\"๐Ÿ’Ÿ\"],[\"heavy_heart_exclamation\",\"โฃ\"],[\"broken_heart\",\"๐Ÿ’”\"],[\"red_heart\",\"โค\"],[\"orange_heart\",\"๐Ÿงก\"],[\"yellow_heart\",\"๐Ÿ’›\"],[\"green_heart\",\"๐Ÿ’š\"],[\"blue_heart\",\"๐Ÿ’™\"],[\"purple_heart\",\"๐Ÿ’œ\"],[\"black_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\",\"๐Ÿ’ค\"],[\"raised_back_of_hand\",\"๐Ÿคš\"],[\"hand_with_fingers_splayed\",\"๐Ÿ–\"],[\"raised_hand\",\"โœ‹\"],[\"vulcan_salute\",\"๐Ÿ––\"],[\"victory_hand\",\"โœŒ\"],[\"crossed_fingers\",\"๐Ÿคž\"],[\"loveyou_gesture\",\"๐ŸคŸ\"],[\"sign_of_the_horns\",\"๐Ÿค˜\"],[\"call_me_hand\",\"๐Ÿค™\"],[\"backhand_index_pointing_right\",\"๐Ÿ‘‰\"],[\"backhand_index_pointing_up\",\"๐Ÿ‘†\"],[\"middle_finger\",\"๐Ÿ–•\"],[\"backhand_index_pointing_down\",\"๐Ÿ‘‡\"],[\"index_pointing_up\",\"โ˜\"],[\"thumbs_down\",\"๐Ÿ‘Ž\"],[\"raised_fist\",\"โœŠ\"],[\"oncoming_fist\",\"๐Ÿ‘Š\"],[\"leftfacing_fist\",\"๐Ÿค›\"],[\"rightfacing_fist\",\"๐Ÿคœ\"],[\"raising_hands\",\"๐Ÿ™Œ\"],[\"open_hands\",\"๐Ÿ‘\"],[\"palms_up_together\",\"๐Ÿคฒ\"],[\"handshake\",\"๐Ÿค\"],[\"folded_hands\",\"๐Ÿ™\"],[\"nail_polish\",\"๐Ÿ’…\"],[\"selfie\",\"๐Ÿคณ\"],[\"_leg\",\"๐Ÿฆต\"],[\"_foot\",\"๐Ÿฆถ\"],[\"ear\",\"๐Ÿ‘‚\"],[\"nose\",\"๐Ÿ‘ƒ\"],[\"brain\",\"๐Ÿง \"],[\"_tooth\",\"๐Ÿฆท\"],[\"_bone\",\"๐Ÿฆด\"],[\"eyes\",\"๐Ÿ‘€\"],[\"eye\",\"๐Ÿ‘\"],[\"tongue\",\"๐Ÿ‘…\"],[\"mouth\",\"๐Ÿ‘„\"],[\"child\",\"๐Ÿง’\"],[\"boy\",\"๐Ÿ‘ฆ\"],[\"girl\",\"๐Ÿ‘ง\"],[\"person\",\"๐Ÿง‘\"],[\"person_blond_hair\",\"๐Ÿ‘ฑ\"],[\"man\",\"๐Ÿ‘จ\"],[\"man_blond_hair\",\"๐Ÿ‘ฑโ€โ™‚๏ธ\"],[\"_man_red_hair\",\"๐Ÿ‘จโ€๐Ÿฆฐ\"],[\"_man_curly_hair\",\"๐Ÿ‘จโ€๐Ÿฆฑ\"],[\"_man_white_hair\",\"๐Ÿ‘จโ€๐Ÿฆณ\"],[\"_man_bald\",\"๐Ÿ‘จโ€๐Ÿฆฒ\"],[\"man_beard\",\"๐Ÿง”\"],[\"woman\",\"๐Ÿ‘ฉ\"],[\"woman_blond_hair\",\"๐Ÿ‘ฑโ€โ™€๏ธ\"],[\"_woman_red_hair\",\"๐Ÿ‘ฉโ€๐Ÿฆฐ\"],[\"_woman_curly_hair\",\"๐Ÿ‘ฉโ€๐Ÿฆฑ\"],[\"_woman_white_hair\",\"๐Ÿ‘ฉโ€๐Ÿฆณ\"],[\"_woman_bald\",\"๐Ÿ‘ฉโ€๐Ÿฆฒ\"],[\"older_person\",\"๐Ÿง“\"],[\"old_man\",\"๐Ÿ‘ด\"],[\"old_woman\",\"๐Ÿ‘ต\"],[\"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\",\"๐Ÿ™‹โ€โ™€๏ธ\"],[\"person_bowing\",\"๐Ÿ™‡\"],[\"man_bowing\",\"๐Ÿ™‡โ€โ™‚๏ธ\"],[\"woman_bowing\",\"๐Ÿ™‡โ€โ™€๏ธ\"],[\"person_facepalming\",\"๐Ÿคฆ\"],[\"man_facepalming\",\"๐Ÿคฆโ€โ™‚๏ธ\"],[\"woman_facepalming\",\"๐Ÿคฆโ€โ™€๏ธ\"],[\"person_shrugging\",\"๐Ÿคท\"],[\"man_shrugging\",\"๐Ÿคทโ€โ™‚๏ธ\"],[\"woman_shrugging\",\"๐Ÿคทโ€โ™€๏ธ\"],[\"woman_health_worker\",\"๐Ÿ‘ฉโ€โš•๏ธ\"],[\"man_student\",\"๐Ÿ‘จโ€๐ŸŽ“\"],[\"woman_student\",\"๐Ÿ‘ฉโ€๐ŸŽ“\"],[\"man_teacher\",\"๐Ÿ‘จโ€๐Ÿซ\"],[\"woman_teacher\",\"๐Ÿ‘ฉโ€๐Ÿซ\"],[\"man_judge\",\"๐Ÿ‘จโ€โš–๏ธ\"],[\"woman_judge\",\"๐Ÿ‘ฉโ€โš–๏ธ\"],[\"man_farmer\",\"๐Ÿ‘จโ€๐ŸŒพ\"],[\"woman_farmer\",\"๐Ÿ‘ฉโ€๐ŸŒพ\"],[\"man_cook\",\"๐Ÿ‘จโ€๐Ÿณ\"],[\"woman_cook\",\"๐Ÿ‘ฉโ€๐Ÿณ\"],[\"man_mechanic\",\"๐Ÿ‘จโ€๐Ÿ”ง\"],[\"woman_mechanic\",\"๐Ÿ‘ฉโ€๐Ÿ”ง\"],[\"man_factory_worker\",\"๐Ÿ‘จโ€๐Ÿญ\"],[\"woman_factory_worker\",\"๐Ÿ‘ฉโ€๐Ÿญ\"],[\"man_office_worker\",\"๐Ÿ‘จโ€๐Ÿ’ผ\"],[\"woman_office_worker\",\"๐Ÿ‘ฉโ€๐Ÿ’ผ\"],[\"man_scientist\",\"๐Ÿ‘จโ€๐Ÿ”ฌ\"],[\"woman_scientist\",\"๐Ÿ‘ฉโ€๐Ÿ”ฌ\"],[\"man_technologist\",\"๐Ÿ‘จโ€๐Ÿ’ป\"],[\"woman_technologist\",\"๐Ÿ‘ฉโ€๐Ÿ’ป\"],[\"man_singer\",\"๐Ÿ‘จโ€๐ŸŽค\"],[\"woman_singer\",\"๐Ÿ‘ฉโ€๐ŸŽค\"],[\"man_artist\",\"๐Ÿ‘จโ€๐ŸŽจ\"],[\"woman_artist\",\"๐Ÿ‘ฉโ€๐ŸŽจ\"],[\"man_pilot\",\"๐Ÿ‘จโ€โœˆ๏ธ\"],[\"woman_pilot\",\"๐Ÿ‘ฉโ€โœˆ๏ธ\"],[\"man_astronaut\",\"๐Ÿ‘จโ€๐Ÿš€\"],[\"woman_astronaut\",\"๐Ÿ‘ฉโ€๐Ÿš€\"],[\"man_firefighter\",\"๐Ÿ‘จโ€๐Ÿš’\"],[\"woman_firefighter\",\"๐Ÿ‘ฉโ€๐Ÿš’\"],[\"police_officer\",\"๐Ÿ‘ฎ\"],[\"man_police_officer\",\"๐Ÿ‘ฎโ€โ™‚๏ธ\"],[\"woman_police_officer\",\"๐Ÿ‘ฎโ€โ™€๏ธ\"],[\"detective\",\"๐Ÿ•ต\"],[\"man_detective\",\"๐Ÿ•ต๏ธโ€โ™‚๏ธ\"],[\"woman_detective\",\"๐Ÿ•ต๏ธโ€โ™€๏ธ\"],[\"guard\",\"๐Ÿ’‚\"],[\"man_guard\",\"๐Ÿ’‚โ€โ™‚๏ธ\"],[\"woman_guard\",\"๐Ÿ’‚โ€โ™€๏ธ\"],[\"construction_worker\",\"๐Ÿ‘ท\"],[\"man_construction_worker\",\"๐Ÿ‘ทโ€โ™‚๏ธ\"],[\"woman_construction_worker\",\"๐Ÿ‘ทโ€โ™€๏ธ\"],[\"prince\",\"๐Ÿคด\"],[\"princess\",\"๐Ÿ‘ธ\"],[\"person_wearing_turban\",\"๐Ÿ‘ณ\"],[\"man_wearing_turban\",\"๐Ÿ‘ณโ€โ™‚๏ธ\"],[\"woman_wearing_turban\",\"๐Ÿ‘ณโ€โ™€๏ธ\"],[\"man_with_chinese_cap\",\"๐Ÿ‘ฒ\"],[\"woman_with_headscarf\",\"๐Ÿง•\"],[\"man_in_tuxedo\",\"๐Ÿคต\"],[\"bride_with_veil\",\"๐Ÿ‘ฐ\"],[\"pregnant_woman\",\"๐Ÿคฐ\"],[\"breastfeeding\",\"๐Ÿคฑ\"],[\"santa_claus\",\"๐ŸŽ…\"],[\"mrs_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\",\"๐ŸงŸโ€โ™€๏ธ\"],[\"man_getting_massage\",\"๐Ÿ’†โ€โ™‚๏ธ\"],[\"woman_getting_massage\",\"๐Ÿ’†โ€โ™€๏ธ\"],[\"person_getting_haircut\",\"๐Ÿ’‡\"],[\"man_getting_haircut\",\"๐Ÿ’‡โ€โ™‚๏ธ\"],[\"woman_getting_haircut\",\"๐Ÿ’‡โ€โ™€๏ธ\"],[\"person_walking\",\"๐Ÿšถ\"],[\"man_walking\",\"๐Ÿšถโ€โ™‚๏ธ\"],[\"woman_walking\",\"๐Ÿšถโ€โ™€๏ธ\"],[\"person_running\",\"๐Ÿƒ\"],[\"man_running\",\"๐Ÿƒโ€โ™‚๏ธ\"],[\"woman_running\",\"๐Ÿƒโ€โ™€๏ธ\"],[\"woman_dancing\",\"๐Ÿ’ƒ\"],[\"man_dancing\",\"๐Ÿ•บ\"],[\"man_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\",\"๐Ÿง—โ€โ™€๏ธ\"],[\"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\",\"๐Ÿคนโ€โ™€๏ธ\"],[\"man_in_lotus_position\",\"๐Ÿง˜โ€โ™‚๏ธ\"],[\"woman_in_lotus_position\",\"๐Ÿง˜โ€โ™€๏ธ\"],[\"person_taking_bath\",\"๐Ÿ›€\"],[\"person_in_bed\",\"๐Ÿ›Œ\"],[\"man_and_woman_holding_hands\",\"๐Ÿ‘ซ\"],[\"two_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\",\"๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง\"],[\"bust_in_silhouette\",\"๐Ÿ‘ค\"],[\"busts_in_silhouette\",\"๐Ÿ‘ฅ\"],[\"footprints\",\"๐Ÿ‘ฃ\"],[\"_curly_hair\",\"๐Ÿฆฑ\"],[\"_white_hair\",\"๐Ÿฆณ\"],[\"_bald\",\"๐Ÿฆฒ\"],[\"monkey\",\"๐Ÿ’\"],[\"gorilla\",\"๐Ÿฆ\"],[\"dog_face\",\"๐Ÿถ\"],[\"dog\",\"๐Ÿ•\"],[\"poodle\",\"๐Ÿฉ\"],[\"wolf_face\",\"๐Ÿบ\"],[\"fox_face\",\"๐ŸฆŠ\"],[\"_raccoon\",\"๐Ÿฆ\"],[\"cat_face\",\"๐Ÿฑ\"],[\"cat\",\"๐Ÿˆ\"],[\"lion_face\",\"๐Ÿฆ\"],[\"tiger_face\",\"๐Ÿฏ\"],[\"tiger\",\"๐Ÿ…\"],[\"leopard\",\"๐Ÿ†\"],[\"horse_face\",\"๐Ÿด\"],[\"horse\",\"๐ŸŽ\"],[\"unicorn_face\",\"๐Ÿฆ„\"],[\"zebra\",\"๐Ÿฆ“\"],[\"deer\",\"๐ŸฆŒ\"],[\"cow_face\",\"๐Ÿฎ\"],[\"ox\",\"๐Ÿ‚\"],[\"water_buffalo\",\"๐Ÿƒ\"],[\"cow\",\"๐Ÿ„\"],[\"pig_face\",\"๐Ÿท\"],[\"pig\",\"๐Ÿ–\"],[\"boar\",\"๐Ÿ—\"],[\"pig_nose\",\"๐Ÿฝ\"],[\"ram\",\"๐Ÿ\"],[\"ewe\",\"๐Ÿ‘\"],[\"goat\",\"๐Ÿ\"],[\"camel\",\"๐Ÿช\"],[\"twohump_camel\",\"๐Ÿซ\"],[\"_llama\",\"๐Ÿฆ™\"],[\"giraffe\",\"๐Ÿฆ’\"],[\"elephant\",\"๐Ÿ˜\"],[\"rhinoceros\",\"๐Ÿฆ\"],[\"_hippopotamus\",\"๐Ÿฆ›\"],[\"mouse_face\",\"๐Ÿญ\"],[\"mouse\",\"๐Ÿ\"],[\"rat\",\"๐Ÿ€\"],[\"hamster_face\",\"๐Ÿน\"],[\"rabbit_face\",\"๐Ÿฐ\"],[\"rabbit\",\"๐Ÿ‡\"],[\"chipmunk\",\"๐Ÿฟ\"],[\"hedgehog\",\"๐Ÿฆ”\"],[\"bat\",\"๐Ÿฆ‡\"],[\"bear_face\",\"๐Ÿป\"],[\"koala\",\"๐Ÿจ\"],[\"panda_face\",\"๐Ÿผ\"],[\"_kangaroo\",\"๐Ÿฆ˜\"],[\"_badger\",\"๐Ÿฆก\"],[\"paw_prints\",\"๐Ÿพ\"],[\"chicken\",\"๐Ÿ”\"],[\"rooster\",\"๐Ÿ“\"],[\"hatching_chick\",\"๐Ÿฃ\"],[\"baby_chick\",\"๐Ÿค\"],[\"frontfacing_baby_chick\",\"๐Ÿฅ\"],[\"bird\",\"๐Ÿฆ\"],[\"penguin\",\"๐Ÿง\"],[\"dove\",\"๐Ÿ•Š\"],[\"eagle\",\"๐Ÿฆ…\"],[\"duck\",\"๐Ÿฆ†\"],[\"_swan\",\"๐Ÿฆข\"],[\"owl\",\"๐Ÿฆ‰\"],[\"_peacock\",\"๐Ÿฆš\"],[\"_parrot\",\"๐Ÿฆœ\"],[\"turtle\",\"๐Ÿข\"],[\"lizard\",\"๐ŸฆŽ\"],[\"snake\",\"๐Ÿ\"],[\"dragon_face\",\"๐Ÿฒ\"],[\"dragon\",\"๐Ÿ‰\"],[\"sauropod\",\"๐Ÿฆ•\"],[\"trex\",\"๐Ÿฆ–\"],[\"whale\",\"๐Ÿ‹\"],[\"dolphin\",\"๐Ÿฌ\"],[\"fish\",\"๐ŸŸ\"],[\"tropical_fish\",\"๐Ÿ \"],[\"blowfish\",\"๐Ÿก\"],[\"shark\",\"๐Ÿฆˆ\"],[\"octopus\",\"๐Ÿ™\"],[\"spiral_shell\",\"๐Ÿš\"],[\"butterfly\",\"๐Ÿฆ‹\"],[\"bug\",\"๐Ÿ›\"],[\"ant\",\"๐Ÿœ\"],[\"honeybee\",\"๐Ÿ\"],[\"lady_beetle\",\"๐Ÿž\"],[\"cricket\",\"๐Ÿฆ—\"],[\"spider\",\"๐Ÿ•ท\"],[\"spider_web\",\"๐Ÿ•ธ\"],[\"scorpion\",\"๐Ÿฆ‚\"],[\"_mosquito\",\"๐ŸฆŸ\"],[\"_microbe\",\"๐Ÿฆ \"],[\"cherry_blossom\",\"๐ŸŒธ\"],[\"white_flower\",\"๐Ÿ’ฎ\"],[\"rosette\",\"๐Ÿต\"],[\"rose\",\"๐ŸŒน\"],[\"wilted_flower\",\"๐Ÿฅ€\"],[\"hibiscus\",\"๐ŸŒบ\"],[\"sunflower\",\"๐ŸŒป\"],[\"blossom\",\"๐ŸŒผ\"],[\"tulip\",\"๐ŸŒท\"],[\"evergreen_tree\",\"๐ŸŒฒ\"],[\"deciduous_tree\",\"๐ŸŒณ\"],[\"palm_tree\",\"๐ŸŒด\"],[\"cactus\",\"๐ŸŒต\"],[\"sheaf_of_rice\",\"๐ŸŒพ\"],[\"herb\",\"๐ŸŒฟ\"],[\"shamrock\",\"โ˜˜\"],[\"four_leaf_clover\",\"๐Ÿ€\"],[\"maple_leaf\",\"๐Ÿ\"],[\"fallen_leaf\",\"๐Ÿ‚\"],[\"leaf_fluttering_in_wind\",\"๐Ÿƒ\"],[\"melon\",\"๐Ÿˆ\"],[\"watermelon\",\"๐Ÿ‰\"],[\"tangerine\",\"๐ŸŠ\"],[\"lemon\",\"๐Ÿ‹\"],[\"banana\",\"๐ŸŒ\"],[\"pineapple\",\"๐Ÿ\"],[\"_mango\",\"๐Ÿฅญ\"],[\"red_apple\",\"๐ŸŽ\"],[\"green_apple\",\"๐Ÿ\"],[\"pear\",\"๐Ÿ\"],[\"peach\",\"๐Ÿ‘\"],[\"cherries\",\"๐Ÿ’\"],[\"strawberry\",\"๐Ÿ“\"],[\"kiwi_fruit\",\"๐Ÿฅ\"],[\"tomato\",\"๐Ÿ…\"],[\"coconut\",\"๐Ÿฅฅ\"],[\"eggplant\",\"๐Ÿ†\"],[\"potato\",\"๐Ÿฅ”\"],[\"carrot\",\"๐Ÿฅ•\"],[\"ear_of_corn\",\"๐ŸŒฝ\"],[\"hot_pepper\",\"๐ŸŒถ\"],[\"cucumber\",\"๐Ÿฅ’\"],[\"_leafy_green\",\"๐Ÿฅฌ\"],[\"broccoli\",\"๐Ÿฅฆ\"],[\"mushroom\",\"๐Ÿ„\"],[\"peanuts\",\"๐Ÿฅœ\"],[\"chestnut\",\"๐ŸŒฐ\"],[\"croissant\",\"๐Ÿฅ\"],[\"baguette_bread\",\"๐Ÿฅ–\"],[\"pretzel\",\"๐Ÿฅจ\"],[\"_bagel\",\"๐Ÿฅฏ\"],[\"pancakes\",\"๐Ÿฅž\"],[\"cheese_wedge\",\"๐Ÿง€\"],[\"meat_on_bone\",\"๐Ÿ–\"],[\"poultry_leg\",\"๐Ÿ—\"],[\"cut_of_meat\",\"๐Ÿฅฉ\"],[\"bacon\",\"๐Ÿฅ“\"],[\"hamburger\",\"๐Ÿ”\"],[\"french_fries\",\"๐ŸŸ\"],[\"pizza\",\"๐Ÿ•\"],[\"hot_dog\",\"๐ŸŒญ\"],[\"sandwich\",\"๐Ÿฅช\"],[\"taco\",\"๐ŸŒฎ\"],[\"burrito\",\"๐ŸŒฏ\"],[\"stuffed_flatbread\",\"๐Ÿฅ™\"],[\"egg\",\"๐Ÿฅš\"],[\"cooking\",\"๐Ÿณ\"],[\"shallow_pan_of_food\",\"๐Ÿฅ˜\"],[\"pot_of_food\",\"๐Ÿฒ\"],[\"bowl_with_spoon\",\"๐Ÿฅฃ\"],[\"green_salad\",\"๐Ÿฅ—\"],[\"popcorn\",\"๐Ÿฟ\"],[\"_salt\",\"๐Ÿง‚\"],[\"canned_food\",\"๐Ÿฅซ\"],[\"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\",\"๐Ÿฅก\"],[\"_lobster\",\"๐Ÿฆž\"],[\"shrimp\",\"๐Ÿฆ\"],[\"squid\",\"๐Ÿฆ‘\"],[\"shaved_ice\",\"๐Ÿง\"],[\"ice_cream\",\"๐Ÿจ\"],[\"doughnut\",\"๐Ÿฉ\"],[\"cookie\",\"๐Ÿช\"],[\"birthday_cake\",\"๐ŸŽ‚\"],[\"shortcake\",\"๐Ÿฐ\"],[\"_cupcake\",\"๐Ÿง\"],[\"pie\",\"๐Ÿฅง\"],[\"chocolate_bar\",\"๐Ÿซ\"],[\"candy\",\"๐Ÿฌ\"],[\"lollipop\",\"๐Ÿญ\"],[\"custard\",\"๐Ÿฎ\"],[\"honey_pot\",\"๐Ÿฏ\"],[\"glass_of_milk\",\"๐Ÿฅ›\"],[\"hot_beverage\",\"โ˜•\"],[\"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\",\"๐Ÿฅค\"],[\"fork_and_knife_with_plate\",\"๐Ÿฝ\"],[\"fork_and_knife\",\"๐Ÿด\"],[\"spoon\",\"๐Ÿฅ„\"],[\"kitchen_knife\",\"๐Ÿ”ช\"],[\"amphora\",\"๐Ÿบ\"],[\"globe_showing_americas\",\"๐ŸŒŽ\"],[\"globe_showing_asiaaustralia\",\"๐ŸŒ\"],[\"globe_with_meridians\",\"๐ŸŒ\"],[\"world_map\",\"๐Ÿ—บ\"],[\"map_of_japan\",\"๐Ÿ—พ\"],[\"_compass\",\"๐Ÿงญ\"],[\"mountain\",\"โ›ฐ\"],[\"volcano\",\"๐ŸŒ‹\"],[\"mount_fuji\",\"๐Ÿ—ป\"],[\"camping\",\"๐Ÿ•\"],[\"beach_with_umbrella\",\"๐Ÿ–\"],[\"desert\",\"๐Ÿœ\"],[\"desert_island\",\"๐Ÿ\"],[\"national_park\",\"๐Ÿž\"],[\"classical_building\",\"๐Ÿ›\"],[\"building_construction\",\"๐Ÿ—\"],[\"_brick\",\"๐Ÿงฑ\"],[\"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\",\"๐Ÿ—ฝ\"],[\"mosque\",\"๐Ÿ•Œ\"],[\"synagogue\",\"๐Ÿ•\"],[\"shinto_shrine\",\"โ›ฉ\"],[\"kaaba\",\"๐Ÿ•‹\"],[\"tent\",\"โ›บ\"],[\"foggy\",\"๐ŸŒ\"],[\"night_with_stars\",\"๐ŸŒƒ\"],[\"cityscape\",\"๐Ÿ™\"],[\"sunrise_over_mountains\",\"๐ŸŒ„\"],[\"sunrise\",\"๐ŸŒ…\"],[\"cityscape_at_dusk\",\"๐ŸŒ†\"],[\"sunset\",\"๐ŸŒ‡\"],[\"bridge_at_night\",\"๐ŸŒ‰\"],[\"hot_springs\",\"โ™จ\"],[\"milky_way\",\"๐ŸŒŒ\"],[\"carousel_horse\",\"๐ŸŽ \"],[\"ferris_wheel\",\"๐ŸŽก\"],[\"roller_coaster\",\"๐ŸŽข\"],[\"barber_pole\",\"๐Ÿ’ˆ\"],[\"circus_tent\",\"๐ŸŽช\"],[\"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\",\"๐Ÿš™\"],[\"delivery_truck\",\"๐Ÿšš\"],[\"articulated_lorry\",\"๐Ÿš›\"],[\"tractor\",\"๐Ÿšœ\"],[\"racing_car\",\"๐ŸŽ\"],[\"motorcycle\",\"๐Ÿ\"],[\"motor_scooter\",\"๐Ÿ›ต\"],[\"bicycle\",\"๐Ÿšฒ\"],[\"kick_scooter\",\"๐Ÿ›ด\"],[\"_skateboard\",\"๐Ÿ›น\"],[\"bus_stop\",\"๐Ÿš\"],[\"motorway\",\"๐Ÿ›ฃ\"],[\"railway_track\",\"๐Ÿ›ค\"],[\"oil_drum\",\"๐Ÿ›ข\"],[\"fuel_pump\",\"โ›ฝ\"],[\"police_car_light\",\"๐Ÿšจ\"],[\"horizontal_traffic_light\",\"๐Ÿšฅ\"],[\"vertical_traffic_light\",\"๐Ÿšฆ\"],[\"stop_sign\",\"๐Ÿ›‘\"],[\"construction\",\"๐Ÿšง\"],[\"sailboat\",\"โ›ต\"],[\"canoe\",\"๐Ÿ›ถ\"],[\"speedboat\",\"๐Ÿšค\"],[\"passenger_ship\",\"๐Ÿ›ณ\"],[\"ferry\",\"โ›ด\"],[\"motor_boat\",\"๐Ÿ›ฅ\"],[\"ship\",\"๐Ÿšข\"],[\"small_airplane\",\"๐Ÿ›ฉ\"],[\"airplane_departure\",\"๐Ÿ›ซ\"],[\"airplane_arrival\",\"๐Ÿ›ฌ\"],[\"seat\",\"๐Ÿ’บ\"],[\"helicopter\",\"๐Ÿš\"],[\"suspension_railway\",\"๐ŸšŸ\"],[\"mountain_cableway\",\"๐Ÿš \"],[\"aerial_tramway\",\"๐Ÿšก\"],[\"satellite\",\"๐Ÿ›ฐ\"],[\"rocket\",\"๐Ÿš€\"],[\"flying_saucer\",\"๐Ÿ›ธ\"],[\"_luggage\",\"๐Ÿงณ\"],[\"hourglass_not_done\",\"โณ\"],[\"watch\",\"โŒš\"],[\"alarm_clock\",\"โฐ\"],[\"stopwatch\",\"โฑ\"],[\"timer_clock\",\"โฒ\"],[\"mantelpiece_clock\",\"๐Ÿ•ฐ\"],[\"twelve_o_clock\",\"๐Ÿ•›\"],[\"twelvethirty\",\"๐Ÿ•ง\"],[\"one_o_clock\",\"๐Ÿ•\"],[\"onethirty\",\"๐Ÿ•œ\"],[\"two_o_clock\",\"๐Ÿ•‘\"],[\"twothirty\",\"๐Ÿ•\"],[\"three_o_clock\",\"๐Ÿ•’\"],[\"threethirty\",\"๐Ÿ•ž\"],[\"four_o_clock\",\"๐Ÿ•“\"],[\"fourthirty\",\"๐Ÿ•Ÿ\"],[\"five_o_clock\",\"๐Ÿ•”\"],[\"fivethirty\",\"๐Ÿ• \"],[\"six_o_clock\",\"๐Ÿ••\"],[\"sixthirty\",\"๐Ÿ•ก\"],[\"seven_o_clock\",\"๐Ÿ•–\"],[\"seventhirty\",\"๐Ÿ•ข\"],[\"eight_o_clock\",\"๐Ÿ•—\"],[\"eightthirty\",\"๐Ÿ•ฃ\"],[\"nine_o_clock\",\"๐Ÿ•˜\"],[\"ninethirty\",\"๐Ÿ•ค\"],[\"ten_o_clock\",\"๐Ÿ•™\"],[\"tenthirty\",\"๐Ÿ•ฅ\"],[\"eleven_o_clock\",\"๐Ÿ•š\"],[\"eleventhirty\",\"๐Ÿ•ฆ\"],[\"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\",\"๐ŸŒž\"],[\"star\",\"โญ\"],[\"glowing_star\",\"๐ŸŒŸ\"],[\"shooting_star\",\"๐ŸŒ \"],[\"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\",\"๐ŸŒŠ\"],[\"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\",\"๐ŸŽซ\"],[\"trophy\",\"๐Ÿ†\"],[\"sports_medal\",\"๐Ÿ…\"],[\"1st_place_medal\",\"๐Ÿฅ‡\"],[\"2nd_place_medal\",\"๐Ÿฅˆ\"],[\"3rd_place_medal\",\"๐Ÿฅ‰\"],[\"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\",\"๐ŸŽฃ\"],[\"running_shirt\",\"๐ŸŽฝ\"],[\"skis\",\"๐ŸŽฟ\"],[\"sled\",\"๐Ÿ›ท\"],[\"curling_stone\",\"๐ŸฅŒ\"],[\"pool_8_ball\",\"๐ŸŽฑ\"],[\"crystal_ball\",\"๐Ÿ”ฎ\"],[\"_nazar_amulet\",\"๐Ÿงฟ\"],[\"video_game\",\"๐ŸŽฎ\"],[\"joystick\",\"๐Ÿ•น\"],[\"slot_machine\",\"๐ŸŽฐ\"],[\"game_die\",\"๐ŸŽฒ\"],[\"_jigsaw\",\"๐Ÿงฉ\"],[\"_teddy_bear\",\"๐Ÿงธ\"],[\"spade_suit\",\"โ™ \"],[\"heart_suit\",\"โ™ฅ\"],[\"diamond_suit\",\"โ™ฆ\"],[\"club_suit\",\"โ™ฃ\"],[\"_chess_pawn\",\"โ™Ÿ\"],[\"joker\",\"๐Ÿƒ\"],[\"mahjong_red_dragon\",\"๐Ÿ€„\"],[\"flower_playing_cards\",\"๐ŸŽด\"],[\"framed_picture\",\"๐Ÿ–ผ\"],[\"artist_palette\",\"๐ŸŽจ\"],[\"_thread\",\"๐Ÿงต\"],[\"_yarn\",\"๐Ÿงถ\"],[\"sunglasses\",\"๐Ÿ•ถ\"],[\"_goggles\",\"๐Ÿฅฝ\"],[\"_lab_coat\",\"๐Ÿฅผ\"],[\"necktie\",\"๐Ÿ‘”\"],[\"tshirt\",\"๐Ÿ‘•\"],[\"jeans\",\"๐Ÿ‘–\"],[\"scarf\",\"๐Ÿงฃ\"],[\"gloves\",\"๐Ÿงค\"],[\"coat\",\"๐Ÿงฅ\"],[\"socks\",\"๐Ÿงฆ\"],[\"dress\",\"๐Ÿ‘—\"],[\"kimono\",\"๐Ÿ‘˜\"],[\"bikini\",\"๐Ÿ‘™\"],[\"woman_s_clothes\",\"๐Ÿ‘š\"],[\"purse\",\"๐Ÿ‘›\"],[\"handbag\",\"๐Ÿ‘œ\"],[\"clutch_bag\",\"๐Ÿ‘\"],[\"shopping_bags\",\"๐Ÿ›\"],[\"backpack\",\"๐ŸŽ’\"],[\"man_s_shoe\",\"๐Ÿ‘ž\"],[\"running_shoe\",\"๐Ÿ‘Ÿ\"],[\"_hiking_boot\",\"๐Ÿฅพ\"],[\"_flat_shoe\",\"๐Ÿฅฟ\"],[\"highheeled_shoe\",\"๐Ÿ‘ \"],[\"woman_s_sandal\",\"๐Ÿ‘ก\"],[\"woman_s_boot\",\"๐Ÿ‘ข\"],[\"crown\",\"๐Ÿ‘‘\"],[\"woman_s_hat\",\"๐Ÿ‘’\"],[\"top_hat\",\"๐ŸŽฉ\"],[\"graduation_cap\",\"๐ŸŽ“\"],[\"billed_cap\",\"๐Ÿงข\"],[\"rescue_worker_s_helmet\",\"โ›‘\"],[\"prayer_beads\",\"๐Ÿ“ฟ\"],[\"lipstick\",\"๐Ÿ’„\"],[\"ring\",\"๐Ÿ’\"],[\"gem_stone\",\"๐Ÿ’Ž\"],[\"speaker_low_volume\",\"๐Ÿ”ˆ\"],[\"speaker_medium_volume\",\"๐Ÿ”‰\"],[\"speaker_high_volume\",\"๐Ÿ”Š\"],[\"loudspeaker\",\"๐Ÿ“ข\"],[\"megaphone\",\"๐Ÿ“ฃ\"],[\"postal_horn\",\"๐Ÿ“ฏ\"],[\"bell\",\"๐Ÿ””\"],[\"bell_with_slash\",\"๐Ÿ”•\"],[\"musical_note\",\"๐ŸŽต\"],[\"musical_notes\",\"๐ŸŽถ\"],[\"studio_microphone\",\"๐ŸŽ™\"],[\"level_slider\",\"๐ŸŽš\"],[\"control_knobs\",\"๐ŸŽ›\"],[\"microphone\",\"๐ŸŽค\"],[\"headphone\",\"๐ŸŽง\"],[\"radio\",\"๐Ÿ“ป\"],[\"guitar\",\"๐ŸŽธ\"],[\"musical_keyboard\",\"๐ŸŽน\"],[\"trumpet\",\"๐ŸŽบ\"],[\"violin\",\"๐ŸŽป\"],[\"drum\",\"๐Ÿฅ\"],[\"mobile_phone_with_arrow\",\"๐Ÿ“ฒ\"],[\"telephone\",\"โ˜Ž\"],[\"telephone_receiver\",\"๐Ÿ“ž\"],[\"pager\",\"๐Ÿ“Ÿ\"],[\"fax_machine\",\"๐Ÿ“ \"],[\"electric_plug\",\"๐Ÿ”Œ\"],[\"laptop_computer\",\"๐Ÿ’ป\"],[\"desktop_computer\",\"๐Ÿ–ฅ\"],[\"printer\",\"๐Ÿ–จ\"],[\"keyboard\",\"โŒจ\"],[\"computer_mouse\",\"๐Ÿ–ฑ\"],[\"trackball\",\"๐Ÿ–ฒ\"],[\"computer_disk\",\"๐Ÿ’ฝ\"],[\"floppy_disk\",\"๐Ÿ’พ\"],[\"optical_disk\",\"๐Ÿ’ฟ\"],[\"dvd\",\"๐Ÿ“€\"],[\"_abacus\",\"๐Ÿงฎ\"],[\"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\",\"๐Ÿฎ\"],[\"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\",\"๐Ÿท\"],[\"yen_banknote\",\"๐Ÿ’ด\"],[\"dollar_banknote\",\"๐Ÿ’ต\"],[\"euro_banknote\",\"๐Ÿ’ถ\"],[\"pound_banknote\",\"๐Ÿ’ท\"],[\"money_with_wings\",\"๐Ÿ’ธ\"],[\"credit_card\",\"๐Ÿ’ณ\"],[\"_receipt\",\"๐Ÿงพ\"],[\"chart_increasing_with_yen\",\"๐Ÿ’น\"],[\"currency_exchange\",\"๐Ÿ’ฑ\"],[\"heavy_dollar_sign\",\"๐Ÿ’ฒ\"],[\"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\",\"๐Ÿ—ณ\"],[\"black_nib\",\"โœ’\"],[\"fountain_pen\",\"๐Ÿ–‹\"],[\"pen\",\"๐Ÿ–Š\"],[\"paintbrush\",\"๐Ÿ–Œ\"],[\"crayon\",\"๐Ÿ–\"],[\"memo\",\"๐Ÿ“\"],[\"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\",\"๐Ÿ—‘\"],[\"unlocked\",\"๐Ÿ”“\"],[\"locked_with_pen\",\"๐Ÿ”\"],[\"locked_with_key\",\"๐Ÿ”\"],[\"key\",\"๐Ÿ”‘\"],[\"old_key\",\"๐Ÿ—\"],[\"pick\",\"โ›\"],[\"hammer_and_pick\",\"โš’\"],[\"hammer_and_wrench\",\"๐Ÿ› \"],[\"dagger\",\"๐Ÿ—ก\"],[\"crossed_swords\",\"โš”\"],[\"pistol\",\"๐Ÿ”ซ\"],[\"bow_and_arrow\",\"๐Ÿน\"],[\"shield\",\"๐Ÿ›ก\"],[\"wrench\",\"๐Ÿ”ง\"],[\"nut_and_bolt\",\"๐Ÿ”ฉ\"],[\"gear\",\"โš™\"],[\"clamp\",\"๐Ÿ—œ\"],[\"balance_scale\",\"โš–\"],[\"link\",\"๐Ÿ”—\"],[\"chains\",\"โ›“\"],[\"_toolbox\",\"๐Ÿงฐ\"],[\"_magnet\",\"๐Ÿงฒ\"],[\"_test_tube\",\"๐Ÿงช\"],[\"_petri_dish\",\"๐Ÿงซ\"],[\"_dna\",\"๐Ÿงฌ\"],[\"microscope\",\"๐Ÿ”ฌ\"],[\"telescope\",\"๐Ÿ”ญ\"],[\"satellite_antenna\",\"๐Ÿ“ก\"],[\"pill\",\"๐Ÿ’Š\"],[\"bed\",\"๐Ÿ›\"],[\"couch_and_lamp\",\"๐Ÿ›‹\"],[\"toilet\",\"๐Ÿšฝ\"],[\"shower\",\"๐Ÿšฟ\"],[\"bathtub\",\"๐Ÿ›\"],[\"_lotion_bottle\",\"๐Ÿงด\"],[\"_safety_pin\",\"๐Ÿงท\"],[\"_broom\",\"๐Ÿงน\"],[\"_basket\",\"๐Ÿงบ\"],[\"_roll_of_paper\",\"๐Ÿงป\"],[\"_soap\",\"๐Ÿงผ\"],[\"_sponge\",\"๐Ÿงฝ\"],[\"_fire_extinguisher\",\"๐Ÿงฏ\"],[\"shopping_cart\",\"๐Ÿ›’\"],[\"coffin\",\"โšฐ\"],[\"funeral_urn\",\"โšฑ\"],[\"moai\",\"๐Ÿ—ฟ\"],[\"litter_in_bin_sign\",\"๐Ÿšฎ\"],[\"potable_water\",\"๐Ÿšฐ\"],[\"wheelchair_symbol\",\"โ™ฟ\"],[\"men_s_room\",\"๐Ÿšน\"],[\"women_s_room\",\"๐Ÿšบ\"],[\"restroom\",\"๐Ÿšป\"],[\"baby_symbol\",\"๐Ÿšผ\"],[\"water_closet\",\"๐Ÿšพ\"],[\"passport_control\",\"๐Ÿ›‚\"],[\"customs\",\"๐Ÿ›ƒ\"],[\"baggage_claim\",\"๐Ÿ›„\"],[\"left_luggage\",\"๐Ÿ›…\"],[\"children_crossing\",\"๐Ÿšธ\"],[\"no_entry\",\"โ›”\"],[\"prohibited\",\"๐Ÿšซ\"],[\"no_bicycles\",\"๐Ÿšณ\"],[\"no_smoking\",\"๐Ÿšญ\"],[\"no_littering\",\"๐Ÿšฏ\"],[\"nonpotable_water\",\"๐Ÿšฑ\"],[\"no_pedestrians\",\"๐Ÿšท\"],[\"no_mobile_phones\",\"๐Ÿ“ต\"],[\"no_one_under_eighteen\",\"๐Ÿ”ž\"],[\"radioactive\",\"โ˜ข\"],[\"biohazard\",\"โ˜ฃ\"],[\"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\",\"๐Ÿ”\"],[\"atom_symbol\",\"โš›\"],[\"om\",\"๐Ÿ•‰\"],[\"star_of_david\",\"โœก\"],[\"wheel_of_dharma\",\"โ˜ธ\"],[\"yin_yang\",\"โ˜ฏ\"],[\"latin_cross\",\"โœ\"],[\"orthodox_cross\",\"โ˜ฆ\"],[\"star_and_crescent\",\"โ˜ช\"],[\"peace_symbol\",\"โ˜ฎ\"],[\"menorah\",\"๐Ÿ•Ž\"],[\"dotted_sixpointed_star\",\"๐Ÿ”ฏ\"],[\"taurus\",\"โ™‰\"],[\"gemini\",\"โ™Š\"],[\"cancer\",\"โ™‹\"],[\"leo\",\"โ™Œ\"],[\"virgo\",\"โ™\"],[\"libra\",\"โ™Ž\"],[\"scorpio\",\"โ™\"],[\"sagittarius\",\"โ™\"],[\"capricorn\",\"โ™‘\"],[\"aquarius\",\"โ™’\"],[\"pisces\",\"โ™“\"],[\"ophiuchus\",\"โ›Ž\"],[\"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\",\"๐Ÿ“ด\"],[\"male_sign\",\"โ™‚\"],[\"_infinity\",\"โ™พ\"],[\"recycling_symbol\",\"โ™ป\"],[\"fleurdelis\",\"โšœ\"],[\"trident_emblem\",\"๐Ÿ”ฑ\"],[\"name_badge\",\"๐Ÿ“›\"],[\"japanese_symbol_for_beginner\",\"๐Ÿ”ฐ\"],[\"heavy_large_circle\",\"โญ•\"],[\"white_heavy_check_mark\",\"โœ…\"],[\"ballot_box_with_check\",\"โ˜‘\"],[\"heavy_check_mark\",\"โœ”\"],[\"heavy_multiplication_x\",\"โœ–\"],[\"cross_mark\",\"โŒ\"],[\"cross_mark_button\",\"โŽ\"],[\"heavy_plus_sign\",\"โž•\"],[\"heavy_minus_sign\",\"โž–\"],[\"heavy_division_sign\",\"โž—\"],[\"curly_loop\",\"โžฐ\"],[\"double_curly_loop\",\"โžฟ\"],[\"part_alternation_mark\",\"ใ€ฝ\"],[\"eightspoked_asterisk\",\"โœณ\"],[\"eightpointed_star\",\"โœด\"],[\"sparkle\",\"โ‡\"],[\"double_exclamation_mark\",\"โ€ผ\"],[\"exclamation_question_mark\",\"โ‰\"],[\"question_mark\",\"โ“\"],[\"white_question_mark\",\"โ”\"],[\"white_exclamation_mark\",\"โ•\"],[\"exclamation_mark\",\"โ—\"],[\"wavy_dash\",\"ใ€ฐ\"],[\"copyright\",\"ยฉ\"],[\"registered\",\"ยฎ\"],[\"trade_mark\",\"โ„ข\"],[\"keycap_x\",\"*๏ธโƒฃ\"],[\"keycap_0\",\"0๏ธโƒฃ\"],[\"keycap_1\",\"1๏ธโƒฃ\"],[\"keycap_2\",\"2๏ธโƒฃ\"],[\"keycap_3\",\"3๏ธโƒฃ\"],[\"keycap_4\",\"4๏ธโƒฃ\"],[\"keycap_5\",\"5๏ธโƒฃ\"],[\"keycap_6\",\"6๏ธโƒฃ\"],[\"keycap_7\",\"7๏ธโƒฃ\"],[\"keycap_8\",\"8๏ธโƒฃ\"],[\"keycap_9\",\"9๏ธโƒฃ\"],[\"keycap_10\",\"๐Ÿ”Ÿ\"],[\"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\",\"๐Ÿˆต\"],[\"blue_circle\",\"๐Ÿ”ต\"],[\"white_circle\",\"โšช\"],[\"black_circle\",\"โšซ\"],[\"white_large_square\",\"โฌœ\"],[\"black_large_square\",\"โฌ›\"],[\"black_medium_square\",\"โ—ผ\"],[\"white_medium_square\",\"โ—ป\"],[\"white_mediumsmall_square\",\"โ—ฝ\"],[\"black_mediumsmall_square\",\"โ—พ\"],[\"white_small_square\",\"โ–ซ\"],[\"black_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\",\"๐Ÿ”˜\"],[\"black_square_button\",\"๐Ÿ”ฒ\"],[\"white_square_button\",\"๐Ÿ”ณ\"],[\"triangular_flag\",\"๐Ÿšฉ\"],[\"crossed_flags\",\"๐ŸŽŒ\"],[\"black_flag\",\"๐Ÿด\"],[\"white_flag\",\"๐Ÿณ\"],[\"rainbow_flag\",\"๐Ÿณ๏ธโ€๐ŸŒˆ\"],[\"_pirate_flag\",\"๐Ÿดโ€โ˜ ๏ธ\"],[\"flag_andorra\",\"๐Ÿ‡ฆ๐Ÿ‡ฉ\"],[\"flag_united_arab_emirates\",\"๐Ÿ‡ฆ๐Ÿ‡ช\"],[\"flag_afghanistan\",\"๐Ÿ‡ฆ๐Ÿ‡ซ\"],[\"flag_antigua_and_barbuda\",\"๐Ÿ‡ฆ๐Ÿ‡ฌ\"],[\"flag_anguilla\",\"๐Ÿ‡ฆ๐Ÿ‡ฎ\"],[\"flag_albania\",\"๐Ÿ‡ฆ๐Ÿ‡ฑ\"],[\"flag_armenia\",\"๐Ÿ‡ฆ๐Ÿ‡ฒ\"],[\"flag_angola\",\"๐Ÿ‡ฆ๐Ÿ‡ด\"],[\"flag_antarctica\",\"๐Ÿ‡ฆ๐Ÿ‡ถ\"],[\"flag_argentina\",\"๐Ÿ‡ฆ๐Ÿ‡ท\"],[\"flag_american_samoa\",\"๐Ÿ‡ฆ๐Ÿ‡ธ\"],[\"flag_austria\",\"๐Ÿ‡ฆ๐Ÿ‡น\"],[\"flag_australia\",\"๐Ÿ‡ฆ๐Ÿ‡บ\"],[\"flag_aruba\",\"๐Ÿ‡ฆ๐Ÿ‡ผ\"],[\"flag_aland_islands\",\"๐Ÿ‡ฆ๐Ÿ‡ฝ\"],[\"flag_azerbaijan\",\"๐Ÿ‡ฆ๐Ÿ‡ฟ\"],[\"flag_bosnia_and_herzegovina\",\"๐Ÿ‡ง๐Ÿ‡ฆ\"],[\"flag_barbados\",\"๐Ÿ‡ง๐Ÿ‡ง\"],[\"flag_bangladesh\",\"๐Ÿ‡ง๐Ÿ‡ฉ\"],[\"flag_belgium\",\"๐Ÿ‡ง๐Ÿ‡ช\"],[\"flag_burkina_faso\",\"๐Ÿ‡ง๐Ÿ‡ซ\"],[\"flag_bulgaria\",\"๐Ÿ‡ง๐Ÿ‡ฌ\"],[\"flag_bahrain\",\"๐Ÿ‡ง๐Ÿ‡ญ\"],[\"flag_burundi\",\"๐Ÿ‡ง๐Ÿ‡ฎ\"],[\"flag_benin\",\"๐Ÿ‡ง๐Ÿ‡ฏ\"],[\"flag_st_barthelemy\",\"๐Ÿ‡ง๐Ÿ‡ฑ\"],[\"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_cote_d_ivoire\",\"๐Ÿ‡จ๐Ÿ‡ฎ\"],[\"flag_cook_islands\",\"๐Ÿ‡จ๐Ÿ‡ฐ\"],[\"flag_chile\",\"๐Ÿ‡จ๐Ÿ‡ฑ\"],[\"flag_cameroon\",\"๐Ÿ‡จ๐Ÿ‡ฒ\"],[\"flag_china\",\"๐Ÿ‡จ๐Ÿ‡ณ\"],[\"flag_colombia\",\"๐Ÿ‡จ๐Ÿ‡ด\"],[\"flag_clipperton_island\",\"๐Ÿ‡จ๐Ÿ‡ต\"],[\"flag_costa_rica\",\"๐Ÿ‡จ๐Ÿ‡ท\"],[\"flag_cuba\",\"๐Ÿ‡จ๐Ÿ‡บ\"],[\"flag_cape_verde\",\"๐Ÿ‡จ๐Ÿ‡ป\"],[\"flag_curacao\",\"๐Ÿ‡จ๐Ÿ‡ผ\"],[\"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_and_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_and_south_sandwich_islands\",\"๐Ÿ‡ฌ๐Ÿ‡ธ\"],[\"flag_guatemala\",\"๐Ÿ‡ฌ๐Ÿ‡น\"],[\"flag_guam\",\"๐Ÿ‡ฌ๐Ÿ‡บ\"],[\"flag_guineabissau\",\"๐Ÿ‡ฌ๐Ÿ‡ผ\"],[\"flag_guyana\",\"๐Ÿ‡ฌ๐Ÿ‡พ\"],[\"flag_hong_kong_sar_china\",\"๐Ÿ‡ญ๐Ÿ‡ฐ\"],[\"flag_heard_and_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_and_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_macedonia\",\"๐Ÿ‡ฒ๐Ÿ‡ฐ\"],[\"flag_mali\",\"๐Ÿ‡ฒ๐Ÿ‡ฑ\"],[\"flag_myanmar_burma\",\"๐Ÿ‡ฒ๐Ÿ‡ฒ\"],[\"flag_mongolia\",\"๐Ÿ‡ฒ๐Ÿ‡ณ\"],[\"flag_macau_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_and_miquelon\",\"๐Ÿ‡ต๐Ÿ‡ฒ\"],[\"flag_pitcairn_islands\",\"๐Ÿ‡ต๐Ÿ‡ณ\"],[\"flag_puerto_rico\",\"๐Ÿ‡ต๐Ÿ‡ท\"],[\"flag_palestinian_territories\",\"๐Ÿ‡ต๐Ÿ‡ธ\"],[\"flag_portugal\",\"๐Ÿ‡ต๐Ÿ‡น\"],[\"flag_palau\",\"๐Ÿ‡ต๐Ÿ‡ผ\"],[\"flag_paraguay\",\"๐Ÿ‡ต๐Ÿ‡พ\"],[\"flag_qatar\",\"๐Ÿ‡ถ๐Ÿ‡ฆ\"],[\"flag_reunion\",\"๐Ÿ‡ท๐Ÿ‡ช\"],[\"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_and_jan_mayen\",\"๐Ÿ‡ธ๐Ÿ‡ฏ\"],[\"flag_slovakia\",\"๐Ÿ‡ธ๐Ÿ‡ฐ\"],[\"flag_sierra_leone\",\"๐Ÿ‡ธ๐Ÿ‡ฑ\"],[\"flag_san_marino\",\"๐Ÿ‡ธ๐Ÿ‡ฒ\"],[\"flag_senegal\",\"๐Ÿ‡ธ๐Ÿ‡ณ\"],[\"flag_somalia\",\"๐Ÿ‡ธ๐Ÿ‡ด\"],[\"flag_suriname\",\"๐Ÿ‡ธ๐Ÿ‡ท\"],[\"flag_south_sudan\",\"๐Ÿ‡ธ๐Ÿ‡ธ\"],[\"flag_sao_tome_and_principe\",\"๐Ÿ‡ธ๐Ÿ‡น\"],[\"flag_el_salvador\",\"๐Ÿ‡ธ๐Ÿ‡ป\"],[\"flag_sint_maarten\",\"๐Ÿ‡ธ๐Ÿ‡ฝ\"],[\"flag_syria\",\"๐Ÿ‡ธ๐Ÿ‡พ\"],[\"flag_swaziland\",\"๐Ÿ‡ธ๐Ÿ‡ฟ\"],[\"flag_tristan_da_cunha\",\"๐Ÿ‡น๐Ÿ‡ฆ\"],[\"flag_turks_and_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_and_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_and_grenadines\",\"๐Ÿ‡ป๐Ÿ‡จ\"],[\"flag_venezuela\",\"๐Ÿ‡ป๐Ÿ‡ช\"],[\"flag_british_virgin_islands\",\"๐Ÿ‡ป๐Ÿ‡ฌ\"],[\"flag_us_virgin_islands\",\"๐Ÿ‡ป๐Ÿ‡ฎ\"],[\"flag_vietnam\",\"๐Ÿ‡ป๐Ÿ‡ณ\"],[\"flag_vanuatu\",\"๐Ÿ‡ป๐Ÿ‡บ\"],[\"flag_wallis_and_futuna\",\"๐Ÿ‡ผ๐Ÿ‡ซ\"],[\"flag_samoa\",\"๐Ÿ‡ผ๐Ÿ‡ธ\"],[\"flag_kosovo\",\"๐Ÿ‡ฝ๐Ÿ‡ฐ\"],[\"flag_yemen\",\"๐Ÿ‡พ๐Ÿ‡ช\"],[\"flag_mayotte\",\"๐Ÿ‡พ๐Ÿ‡น\"],[\"flag_south_africa\",\"๐Ÿ‡ฟ๐Ÿ‡ฆ\"],[\"flag_zambia\",\"๐Ÿ‡ฟ๐Ÿ‡ฒ\"],[\"flag_zimbabwe\",\"๐Ÿ‡ฟ๐Ÿ‡ผ\"],[\"flag_scotland\",\"๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ\"],[\"flag_wales\",\"๐Ÿด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ\"]]" +#define EM_LIST "[[\"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_3_hearts\",\"๐Ÿฅฐ\"],[\"smiling_face_with_hearteyes\",\"๐Ÿ˜\"],[\"starstruck\",\"๐Ÿคฉ\"],[\"face_blowing_a_kiss\",\"๐Ÿ˜˜\"],[\"kissing_face\",\"๐Ÿ˜—\"],[\"smiling_face\",\"โ˜บ\"],[\"kissing_face_with_closed_eyes\",\"๐Ÿ˜š\"],[\"kissing_face_with_smiling_eyes\",\"๐Ÿ˜™\"],[\"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\",\"๐Ÿ˜ถ\"],[\"smirking_face\",\"๐Ÿ˜\"],[\"unamused_face\",\"๐Ÿ˜’\"],[\"face_with_rolling_eyes\",\"๐Ÿ™„\"],[\"grimacing_face\",\"๐Ÿ˜ฌ\"],[\"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\",\"๐Ÿฅด\"],[\"dizzy_face\",\"๐Ÿ˜ต\"],[\"exploding_head\",\"๐Ÿคฏ\"],[\"cowboy_hat_face\",\"๐Ÿค \"],[\"_partying_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\",\"๐Ÿ˜ซ\"],[\"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_face\",\"๐Ÿค–\"],[\"grinning_cat_face\",\"๐Ÿ˜บ\"],[\"grinning_cat_face_with_smiling_eyes\",\"๐Ÿ˜ธ\"],[\"cat_face_with_tears_of_joy\",\"๐Ÿ˜น\"],[\"smiling_cat_face_with_hearteyes\",\"๐Ÿ˜ป\"],[\"cat_face_with_wry_smile\",\"๐Ÿ˜ผ\"],[\"kissing_cat_face\",\"๐Ÿ˜ฝ\"],[\"weary_cat_face\",\"๐Ÿ™€\"],[\"crying_cat_face\",\"๐Ÿ˜ฟ\"],[\"pouting_cat_face\",\"๐Ÿ˜พ\"],[\"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\",\"๐Ÿ’Ÿ\"],[\"heavy_heart_exclamation\",\"โฃ\"],[\"broken_heart\",\"๐Ÿ’”\"],[\"red_heart\",\"โค\"],[\"orange_heart\",\"๐Ÿงก\"],[\"yellow_heart\",\"๐Ÿ’›\"],[\"green_heart\",\"๐Ÿ’š\"],[\"blue_heart\",\"๐Ÿ’™\"],[\"purple_heart\",\"๐Ÿ’œ\"],[\"black_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\",\"๐Ÿ’ค\"],[\"waving_hand\",\"๐Ÿ‘‹\"],[\"raised_back_of_hand\",\"๐Ÿคš\"],[\"hand_with_fingers_splayed\",\"๐Ÿ–\"],[\"raised_hand\",\"โœ‹\"],[\"vulcan_salute\",\"๐Ÿ––\"],[\"ok_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\",\"๐Ÿ’ช\"],[\"_leg\",\"๐Ÿฆต\"],[\"_foot\",\"๐Ÿฆถ\"],[\"ear\",\"๐Ÿ‘‚\"],[\"nose\",\"๐Ÿ‘ƒ\"],[\"brain\",\"๐Ÿง \"],[\"_tooth\",\"๐Ÿฆท\"],[\"_bone\",\"๐Ÿฆด\"],[\"eyes\",\"๐Ÿ‘€\"],[\"eye\",\"๐Ÿ‘\"],[\"tongue\",\"๐Ÿ‘…\"],[\"mouth\",\"๐Ÿ‘„\"],[\"baby\",\"๐Ÿ‘ถ\"],[\"child\",\"๐Ÿง’\"],[\"boy\",\"๐Ÿ‘ฆ\"],[\"girl\",\"๐Ÿ‘ง\"],[\"person\",\"๐Ÿง‘\"],[\"person_blond_hair\",\"๐Ÿ‘ฑ\"],[\"man\",\"๐Ÿ‘จ\"],[\"man_blond_hair\",\"๐Ÿ‘ฑโ€โ™‚๏ธ\"],[\"_man_red_hair\",\"๐Ÿ‘จโ€๐Ÿฆฐ\"],[\"_man_curly_hair\",\"๐Ÿ‘จโ€๐Ÿฆฑ\"],[\"_man_white_hair\",\"๐Ÿ‘จโ€๐Ÿฆณ\"],[\"_man_bald\",\"๐Ÿ‘จโ€๐Ÿฆฒ\"],[\"man_beard\",\"๐Ÿง”\"],[\"woman\",\"๐Ÿ‘ฉ\"],[\"woman_blond_hair\",\"๐Ÿ‘ฑโ€โ™€๏ธ\"],[\"_woman_red_hair\",\"๐Ÿ‘ฉโ€๐Ÿฆฐ\"],[\"_woman_curly_hair\",\"๐Ÿ‘ฉโ€๐Ÿฆฑ\"],[\"_woman_white_hair\",\"๐Ÿ‘ฉโ€๐Ÿฆณ\"],[\"_woman_bald\",\"๐Ÿ‘ฉโ€๐Ÿฆฒ\"],[\"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\",\"๐Ÿ™‹โ€โ™€๏ธ\"],[\"person_bowing\",\"๐Ÿ™‡\"],[\"man_bowing\",\"๐Ÿ™‡โ€โ™‚๏ธ\"],[\"woman_bowing\",\"๐Ÿ™‡โ€โ™€๏ธ\"],[\"person_facepalming\",\"๐Ÿคฆ\"],[\"man_facepalming\",\"๐Ÿคฆโ€โ™‚๏ธ\"],[\"woman_facepalming\",\"๐Ÿคฆโ€โ™€๏ธ\"],[\"person_shrugging\",\"๐Ÿคท\"],[\"man_shrugging\",\"๐Ÿคทโ€โ™‚๏ธ\"],[\"woman_shrugging\",\"๐Ÿคทโ€โ™€๏ธ\"],[\"man_health_worker\",\"๐Ÿ‘จโ€โš•๏ธ\"],[\"woman_health_worker\",\"๐Ÿ‘ฉโ€โš•๏ธ\"],[\"man_student\",\"๐Ÿ‘จโ€๐ŸŽ“\"],[\"woman_student\",\"๐Ÿ‘ฉโ€๐ŸŽ“\"],[\"man_teacher\",\"๐Ÿ‘จโ€๐Ÿซ\"],[\"woman_teacher\",\"๐Ÿ‘ฉโ€๐Ÿซ\"],[\"man_judge\",\"๐Ÿ‘จโ€โš–๏ธ\"],[\"woman_judge\",\"๐Ÿ‘ฉโ€โš–๏ธ\"],[\"man_farmer\",\"๐Ÿ‘จโ€๐ŸŒพ\"],[\"woman_farmer\",\"๐Ÿ‘ฉโ€๐ŸŒพ\"],[\"man_cook\",\"๐Ÿ‘จโ€๐Ÿณ\"],[\"woman_cook\",\"๐Ÿ‘ฉโ€๐Ÿณ\"],[\"man_mechanic\",\"๐Ÿ‘จโ€๐Ÿ”ง\"],[\"woman_mechanic\",\"๐Ÿ‘ฉโ€๐Ÿ”ง\"],[\"man_factory_worker\",\"๐Ÿ‘จโ€๐Ÿญ\"],[\"woman_factory_worker\",\"๐Ÿ‘ฉโ€๐Ÿญ\"],[\"man_office_worker\",\"๐Ÿ‘จโ€๐Ÿ’ผ\"],[\"woman_office_worker\",\"๐Ÿ‘ฉโ€๐Ÿ’ผ\"],[\"man_scientist\",\"๐Ÿ‘จโ€๐Ÿ”ฌ\"],[\"woman_scientist\",\"๐Ÿ‘ฉโ€๐Ÿ”ฌ\"],[\"man_technologist\",\"๐Ÿ‘จโ€๐Ÿ’ป\"],[\"woman_technologist\",\"๐Ÿ‘ฉโ€๐Ÿ’ป\"],[\"man_singer\",\"๐Ÿ‘จโ€๐ŸŽค\"],[\"woman_singer\",\"๐Ÿ‘ฉโ€๐ŸŽค\"],[\"man_artist\",\"๐Ÿ‘จโ€๐ŸŽจ\"],[\"woman_artist\",\"๐Ÿ‘ฉโ€๐ŸŽจ\"],[\"man_pilot\",\"๐Ÿ‘จโ€โœˆ๏ธ\"],[\"woman_pilot\",\"๐Ÿ‘ฉโ€โœˆ๏ธ\"],[\"man_astronaut\",\"๐Ÿ‘จโ€๐Ÿš€\"],[\"woman_astronaut\",\"๐Ÿ‘ฉโ€๐Ÿš€\"],[\"man_firefighter\",\"๐Ÿ‘จโ€๐Ÿš’\"],[\"woman_firefighter\",\"๐Ÿ‘ฉโ€๐Ÿš’\"],[\"police_officer\",\"๐Ÿ‘ฎ\"],[\"man_police_officer\",\"๐Ÿ‘ฎโ€โ™‚๏ธ\"],[\"woman_police_officer\",\"๐Ÿ‘ฎโ€โ™€๏ธ\"],[\"detective\",\"๐Ÿ•ต\"],[\"man_detective\",\"๐Ÿ•ต๏ธโ€โ™‚๏ธ\"],[\"woman_detective\",\"๐Ÿ•ต๏ธโ€โ™€๏ธ\"],[\"guard\",\"๐Ÿ’‚\"],[\"man_guard\",\"๐Ÿ’‚โ€โ™‚๏ธ\"],[\"woman_guard\",\"๐Ÿ’‚โ€โ™€๏ธ\"],[\"construction_worker\",\"๐Ÿ‘ท\"],[\"man_construction_worker\",\"๐Ÿ‘ทโ€โ™‚๏ธ\"],[\"woman_construction_worker\",\"๐Ÿ‘ทโ€โ™€๏ธ\"],[\"prince\",\"๐Ÿคด\"],[\"princess\",\"๐Ÿ‘ธ\"],[\"person_wearing_turban\",\"๐Ÿ‘ณ\"],[\"man_wearing_turban\",\"๐Ÿ‘ณโ€โ™‚๏ธ\"],[\"woman_wearing_turban\",\"๐Ÿ‘ณโ€โ™€๏ธ\"],[\"man_with_chinese_cap\",\"๐Ÿ‘ฒ\"],[\"woman_with_headscarf\",\"๐Ÿง•\"],[\"man_in_tuxedo\",\"๐Ÿคต\"],[\"bride_with_veil\",\"๐Ÿ‘ฐ\"],[\"pregnant_woman\",\"๐Ÿคฐ\"],[\"breastfeeding\",\"๐Ÿคฑ\"],[\"baby_angel\",\"๐Ÿ‘ผ\"],[\"santa_claus\",\"๐ŸŽ…\"],[\"mrs_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_running\",\"๐Ÿƒ\"],[\"man_running\",\"๐Ÿƒโ€โ™‚๏ธ\"],[\"woman_running\",\"๐Ÿƒโ€โ™€๏ธ\"],[\"woman_dancing\",\"๐Ÿ’ƒ\"],[\"man_dancing\",\"๐Ÿ•บ\"],[\"man_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\",\"๐Ÿ›Œ\"],[\"two_women_holding_hands\",\"๐Ÿ‘ญ\"],[\"man_and_woman_holding_hands\",\"๐Ÿ‘ซ\"],[\"two_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\",\"๐Ÿ‘ฅ\"],[\"footprints\",\"๐Ÿ‘ฃ\"],[\"_red_hair\",\"๐Ÿฆฐ\"],[\"_curly_hair\",\"๐Ÿฆฑ\"],[\"_white_hair\",\"๐Ÿฆณ\"],[\"_bald\",\"๐Ÿฆฒ\"],[\"monkey_face\",\"๐Ÿต\"],[\"monkey\",\"๐Ÿ’\"],[\"gorilla\",\"๐Ÿฆ\"],[\"dog_face\",\"๐Ÿถ\"],[\"dog\",\"๐Ÿ•\"],[\"poodle\",\"๐Ÿฉ\"],[\"wolf_face\",\"๐Ÿบ\"],[\"fox_face\",\"๐ŸฆŠ\"],[\"_raccoon\",\"๐Ÿฆ\"],[\"cat_face\",\"๐Ÿฑ\"],[\"cat\",\"๐Ÿˆ\"],[\"lion_face\",\"๐Ÿฆ\"],[\"tiger_face\",\"๐Ÿฏ\"],[\"tiger\",\"๐Ÿ…\"],[\"leopard\",\"๐Ÿ†\"],[\"horse_face\",\"๐Ÿด\"],[\"horse\",\"๐ŸŽ\"],[\"unicorn_face\",\"๐Ÿฆ„\"],[\"zebra\",\"๐Ÿฆ“\"],[\"deer\",\"๐ŸฆŒ\"],[\"cow_face\",\"๐Ÿฎ\"],[\"ox\",\"๐Ÿ‚\"],[\"water_buffalo\",\"๐Ÿƒ\"],[\"cow\",\"๐Ÿ„\"],[\"pig_face\",\"๐Ÿท\"],[\"pig\",\"๐Ÿ–\"],[\"boar\",\"๐Ÿ—\"],[\"pig_nose\",\"๐Ÿฝ\"],[\"ram\",\"๐Ÿ\"],[\"ewe\",\"๐Ÿ‘\"],[\"goat\",\"๐Ÿ\"],[\"camel\",\"๐Ÿช\"],[\"twohump_camel\",\"๐Ÿซ\"],[\"_llama\",\"๐Ÿฆ™\"],[\"giraffe\",\"๐Ÿฆ’\"],[\"elephant\",\"๐Ÿ˜\"],[\"rhinoceros\",\"๐Ÿฆ\"],[\"_hippopotamus\",\"๐Ÿฆ›\"],[\"mouse_face\",\"๐Ÿญ\"],[\"mouse\",\"๐Ÿ\"],[\"rat\",\"๐Ÿ€\"],[\"hamster_face\",\"๐Ÿน\"],[\"rabbit_face\",\"๐Ÿฐ\"],[\"rabbit\",\"๐Ÿ‡\"],[\"chipmunk\",\"๐Ÿฟ\"],[\"hedgehog\",\"๐Ÿฆ”\"],[\"bat\",\"๐Ÿฆ‡\"],[\"bear_face\",\"๐Ÿป\"],[\"koala\",\"๐Ÿจ\"],[\"panda_face\",\"๐Ÿผ\"],[\"_kangaroo\",\"๐Ÿฆ˜\"],[\"_badger\",\"๐Ÿฆก\"],[\"paw_prints\",\"๐Ÿพ\"],[\"turkey\",\"๐Ÿฆƒ\"],[\"chicken\",\"๐Ÿ”\"],[\"rooster\",\"๐Ÿ“\"],[\"hatching_chick\",\"๐Ÿฃ\"],[\"baby_chick\",\"๐Ÿค\"],[\"frontfacing_baby_chick\",\"๐Ÿฅ\"],[\"bird\",\"๐Ÿฆ\"],[\"penguin\",\"๐Ÿง\"],[\"dove\",\"๐Ÿ•Š\"],[\"eagle\",\"๐Ÿฆ…\"],[\"duck\",\"๐Ÿฆ†\"],[\"_swan\",\"๐Ÿฆข\"],[\"owl\",\"๐Ÿฆ‰\"],[\"_peacock\",\"๐Ÿฆš\"],[\"_parrot\",\"๐Ÿฆœ\"],[\"frog_face\",\"๐Ÿธ\"],[\"crocodile\",\"๐ŸŠ\"],[\"turtle\",\"๐Ÿข\"],[\"lizard\",\"๐ŸฆŽ\"],[\"snake\",\"๐Ÿ\"],[\"dragon_face\",\"๐Ÿฒ\"],[\"dragon\",\"๐Ÿ‰\"],[\"sauropod\",\"๐Ÿฆ•\"],[\"trex\",\"๐Ÿฆ–\"],[\"spouting_whale\",\"๐Ÿณ\"],[\"whale\",\"๐Ÿ‹\"],[\"dolphin\",\"๐Ÿฌ\"],[\"fish\",\"๐ŸŸ\"],[\"tropical_fish\",\"๐Ÿ \"],[\"blowfish\",\"๐Ÿก\"],[\"shark\",\"๐Ÿฆˆ\"],[\"octopus\",\"๐Ÿ™\"],[\"spiral_shell\",\"๐Ÿš\"],[\"snail\",\"๐ŸŒ\"],[\"butterfly\",\"๐Ÿฆ‹\"],[\"bug\",\"๐Ÿ›\"],[\"ant\",\"๐Ÿœ\"],[\"honeybee\",\"๐Ÿ\"],[\"lady_beetle\",\"๐Ÿž\"],[\"cricket\",\"๐Ÿฆ—\"],[\"spider\",\"๐Ÿ•ท\"],[\"spider_web\",\"๐Ÿ•ธ\"],[\"scorpion\",\"๐Ÿฆ‚\"],[\"_mosquito\",\"๐ŸฆŸ\"],[\"_microbe\",\"๐Ÿฆ \"],[\"bouquet\",\"๐Ÿ’\"],[\"cherry_blossom\",\"๐ŸŒธ\"],[\"white_flower\",\"๐Ÿ’ฎ\"],[\"rosette\",\"๐Ÿต\"],[\"rose\",\"๐ŸŒน\"],[\"wilted_flower\",\"๐Ÿฅ€\"],[\"hibiscus\",\"๐ŸŒบ\"],[\"sunflower\",\"๐ŸŒป\"],[\"blossom\",\"๐ŸŒผ\"],[\"tulip\",\"๐ŸŒท\"],[\"seedling\",\"๐ŸŒฑ\"],[\"evergreen_tree\",\"๐ŸŒฒ\"],[\"deciduous_tree\",\"๐ŸŒณ\"],[\"palm_tree\",\"๐ŸŒด\"],[\"cactus\",\"๐ŸŒต\"],[\"sheaf_of_rice\",\"๐ŸŒพ\"],[\"herb\",\"๐ŸŒฟ\"],[\"shamrock\",\"โ˜˜\"],[\"four_leaf_clover\",\"๐Ÿ€\"],[\"maple_leaf\",\"๐Ÿ\"],[\"fallen_leaf\",\"๐Ÿ‚\"],[\"leaf_fluttering_in_wind\",\"๐Ÿƒ\"],[\"grapes\",\"๐Ÿ‡\"],[\"melon\",\"๐Ÿˆ\"],[\"watermelon\",\"๐Ÿ‰\"],[\"tangerine\",\"๐ŸŠ\"],[\"lemon\",\"๐Ÿ‹\"],[\"banana\",\"๐ŸŒ\"],[\"pineapple\",\"๐Ÿ\"],[\"_mango\",\"๐Ÿฅญ\"],[\"red_apple\",\"๐ŸŽ\"],[\"green_apple\",\"๐Ÿ\"],[\"pear\",\"๐Ÿ\"],[\"peach\",\"๐Ÿ‘\"],[\"cherries\",\"๐Ÿ’\"],[\"strawberry\",\"๐Ÿ“\"],[\"kiwi_fruit\",\"๐Ÿฅ\"],[\"tomato\",\"๐Ÿ…\"],[\"coconut\",\"๐Ÿฅฅ\"],[\"avocado\",\"๐Ÿฅ‘\"],[\"eggplant\",\"๐Ÿ†\"],[\"potato\",\"๐Ÿฅ”\"],[\"carrot\",\"๐Ÿฅ•\"],[\"ear_of_corn\",\"๐ŸŒฝ\"],[\"hot_pepper\",\"๐ŸŒถ\"],[\"cucumber\",\"๐Ÿฅ’\"],[\"_leafy_green\",\"๐Ÿฅฌ\"],[\"broccoli\",\"๐Ÿฅฆ\"],[\"mushroom\",\"๐Ÿ„\"],[\"peanuts\",\"๐Ÿฅœ\"],[\"chestnut\",\"๐ŸŒฐ\"],[\"bread\",\"๐Ÿž\"],[\"croissant\",\"๐Ÿฅ\"],[\"baguette_bread\",\"๐Ÿฅ–\"],[\"pretzel\",\"๐Ÿฅจ\"],[\"_bagel\",\"๐Ÿฅฏ\"],[\"pancakes\",\"๐Ÿฅž\"],[\"cheese_wedge\",\"๐Ÿง€\"],[\"meat_on_bone\",\"๐Ÿ–\"],[\"poultry_leg\",\"๐Ÿ—\"],[\"cut_of_meat\",\"๐Ÿฅฉ\"],[\"bacon\",\"๐Ÿฅ“\"],[\"hamburger\",\"๐Ÿ”\"],[\"french_fries\",\"๐ŸŸ\"],[\"pizza\",\"๐Ÿ•\"],[\"hot_dog\",\"๐ŸŒญ\"],[\"sandwich\",\"๐Ÿฅช\"],[\"taco\",\"๐ŸŒฎ\"],[\"burrito\",\"๐ŸŒฏ\"],[\"stuffed_flatbread\",\"๐Ÿฅ™\"],[\"egg\",\"๐Ÿฅš\"],[\"cooking\",\"๐Ÿณ\"],[\"shallow_pan_of_food\",\"๐Ÿฅ˜\"],[\"pot_of_food\",\"๐Ÿฒ\"],[\"bowl_with_spoon\",\"๐Ÿฅฃ\"],[\"green_salad\",\"๐Ÿฅ—\"],[\"popcorn\",\"๐Ÿฟ\"],[\"_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\",\"๐Ÿฆ‘\"],[\"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\",\"โ˜•\"],[\"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\",\"๐Ÿฅค\"],[\"chopsticks\",\"๐Ÿฅข\"],[\"fork_and_knife_with_plate\",\"๐Ÿฝ\"],[\"fork_and_knife\",\"๐Ÿด\"],[\"spoon\",\"๐Ÿฅ„\"],[\"kitchen_knife\",\"๐Ÿ”ช\"],[\"amphora\",\"๐Ÿบ\"],[\"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\",\"๐Ÿงฑ\"],[\"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\",\"๐Ÿ•Œ\"],[\"synagogue\",\"๐Ÿ•\"],[\"shinto_shrine\",\"โ›ฉ\"],[\"kaaba\",\"๐Ÿ•‹\"],[\"fountain\",\"โ›ฒ\"],[\"tent\",\"โ›บ\"],[\"foggy\",\"๐ŸŒ\"],[\"night_with_stars\",\"๐ŸŒƒ\"],[\"cityscape\",\"๐Ÿ™\"],[\"sunrise_over_mountains\",\"๐ŸŒ„\"],[\"sunrise\",\"๐ŸŒ…\"],[\"cityscape_at_dusk\",\"๐ŸŒ†\"],[\"sunset\",\"๐ŸŒ‡\"],[\"bridge_at_night\",\"๐ŸŒ‰\"],[\"hot_springs\",\"โ™จ\"],[\"milky_way\",\"๐ŸŒŒ\"],[\"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\",\"๐Ÿš™\"],[\"delivery_truck\",\"๐Ÿšš\"],[\"articulated_lorry\",\"๐Ÿš›\"],[\"tractor\",\"๐Ÿšœ\"],[\"racing_car\",\"๐ŸŽ\"],[\"motorcycle\",\"๐Ÿ\"],[\"motor_scooter\",\"๐Ÿ›ต\"],[\"bicycle\",\"๐Ÿšฒ\"],[\"kick_scooter\",\"๐Ÿ›ด\"],[\"_skateboard\",\"๐Ÿ›น\"],[\"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\",\"๐Ÿ›ฌ\"],[\"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_o_clock\",\"๐Ÿ•›\"],[\"twelvethirty\",\"๐Ÿ•ง\"],[\"one_o_clock\",\"๐Ÿ•\"],[\"onethirty\",\"๐Ÿ•œ\"],[\"two_o_clock\",\"๐Ÿ•‘\"],[\"twothirty\",\"๐Ÿ•\"],[\"three_o_clock\",\"๐Ÿ•’\"],[\"threethirty\",\"๐Ÿ•ž\"],[\"four_o_clock\",\"๐Ÿ•“\"],[\"fourthirty\",\"๐Ÿ•Ÿ\"],[\"five_o_clock\",\"๐Ÿ•”\"],[\"fivethirty\",\"๐Ÿ• \"],[\"six_o_clock\",\"๐Ÿ••\"],[\"sixthirty\",\"๐Ÿ•ก\"],[\"seven_o_clock\",\"๐Ÿ•–\"],[\"seventhirty\",\"๐Ÿ•ข\"],[\"eight_o_clock\",\"๐Ÿ•—\"],[\"eightthirty\",\"๐Ÿ•ฃ\"],[\"nine_o_clock\",\"๐Ÿ•˜\"],[\"ninethirty\",\"๐Ÿ•ค\"],[\"ten_o_clock\",\"๐Ÿ•™\"],[\"tenthirty\",\"๐Ÿ•ฅ\"],[\"eleven_o_clock\",\"๐Ÿ•š\"],[\"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\",\"๐ŸŒž\"],[\"star\",\"โญ\"],[\"glowing_star\",\"๐ŸŒŸ\"],[\"shooting_star\",\"๐ŸŒ \"],[\"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\",\"๐ŸŒŠ\"],[\"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\",\"๐ŸŽฃ\"],[\"running_shirt\",\"๐ŸŽฝ\"],[\"skis\",\"๐ŸŽฟ\"],[\"sled\",\"๐Ÿ›ท\"],[\"curling_stone\",\"๐ŸฅŒ\"],[\"direct_hit\",\"๐ŸŽฏ\"],[\"pool_8_ball\",\"๐ŸŽฑ\"],[\"crystal_ball\",\"๐Ÿ”ฎ\"],[\"_nazar_amulet\",\"๐Ÿงฟ\"],[\"video_game\",\"๐ŸŽฎ\"],[\"joystick\",\"๐Ÿ•น\"],[\"slot_machine\",\"๐ŸŽฐ\"],[\"game_die\",\"๐ŸŽฒ\"],[\"_jigsaw\",\"๐Ÿงฉ\"],[\"_teddy_bear\",\"๐Ÿงธ\"],[\"spade_suit\",\"โ™ \"],[\"heart_suit\",\"โ™ฅ\"],[\"diamond_suit\",\"โ™ฆ\"],[\"club_suit\",\"โ™ฃ\"],[\"_chess_pawn\",\"โ™Ÿ\"],[\"joker\",\"๐Ÿƒ\"],[\"mahjong_red_dragon\",\"๐Ÿ€„\"],[\"flower_playing_cards\",\"๐ŸŽด\"],[\"performing_arts\",\"๐ŸŽญ\"],[\"framed_picture\",\"๐Ÿ–ผ\"],[\"artist_palette\",\"๐ŸŽจ\"],[\"_thread\",\"๐Ÿงต\"],[\"_yarn\",\"๐Ÿงถ\"],[\"glasses\",\"๐Ÿ‘“\"],[\"sunglasses\",\"๐Ÿ•ถ\"],[\"_goggles\",\"๐Ÿฅฝ\"],[\"_lab_coat\",\"๐Ÿฅผ\"],[\"necktie\",\"๐Ÿ‘”\"],[\"tshirt\",\"๐Ÿ‘•\"],[\"jeans\",\"๐Ÿ‘–\"],[\"scarf\",\"๐Ÿงฃ\"],[\"gloves\",\"๐Ÿงค\"],[\"coat\",\"๐Ÿงฅ\"],[\"socks\",\"๐Ÿงฆ\"],[\"dress\",\"๐Ÿ‘—\"],[\"kimono\",\"๐Ÿ‘˜\"],[\"bikini\",\"๐Ÿ‘™\"],[\"woman_s_clothes\",\"๐Ÿ‘š\"],[\"purse\",\"๐Ÿ‘›\"],[\"handbag\",\"๐Ÿ‘œ\"],[\"clutch_bag\",\"๐Ÿ‘\"],[\"shopping_bags\",\"๐Ÿ›\"],[\"backpack\",\"๐ŸŽ’\"],[\"man_s_shoe\",\"๐Ÿ‘ž\"],[\"running_shoe\",\"๐Ÿ‘Ÿ\"],[\"_hiking_boot\",\"๐Ÿฅพ\"],[\"_flat_shoe\",\"๐Ÿฅฟ\"],[\"highheeled_shoe\",\"๐Ÿ‘ \"],[\"woman_s_sandal\",\"๐Ÿ‘ก\"],[\"woman_s_boot\",\"๐Ÿ‘ข\"],[\"crown\",\"๐Ÿ‘‘\"],[\"woman_s_hat\",\"๐Ÿ‘’\"],[\"top_hat\",\"๐ŸŽฉ\"],[\"graduation_cap\",\"๐ŸŽ“\"],[\"billed_cap\",\"๐Ÿงข\"],[\"rescue_worker_s_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\",\"๐ŸŽท\"],[\"guitar\",\"๐ŸŽธ\"],[\"musical_keyboard\",\"๐ŸŽน\"],[\"trumpet\",\"๐ŸŽบ\"],[\"violin\",\"๐ŸŽป\"],[\"drum\",\"๐Ÿฅ\"],[\"mobile_phone\",\"๐Ÿ“ฑ\"],[\"mobile_phone_with_arrow\",\"๐Ÿ“ฒ\"],[\"telephone\",\"โ˜Ž\"],[\"telephone_receiver\",\"๐Ÿ“ž\"],[\"pager\",\"๐Ÿ“Ÿ\"],[\"fax_machine\",\"๐Ÿ“ \"],[\"battery\",\"๐Ÿ”‹\"],[\"electric_plug\",\"๐Ÿ”Œ\"],[\"laptop_computer\",\"๐Ÿ’ป\"],[\"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\",\"๐Ÿฎ\"],[\"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\",\"๐Ÿ’ฐ\"],[\"yen_banknote\",\"๐Ÿ’ด\"],[\"dollar_banknote\",\"๐Ÿ’ต\"],[\"euro_banknote\",\"๐Ÿ’ถ\"],[\"pound_banknote\",\"๐Ÿ’ท\"],[\"money_with_wings\",\"๐Ÿ’ธ\"],[\"credit_card\",\"๐Ÿ’ณ\"],[\"_receipt\",\"๐Ÿงพ\"],[\"chart_increasing_with_yen\",\"๐Ÿ’น\"],[\"currency_exchange\",\"๐Ÿ’ฑ\"],[\"heavy_dollar_sign\",\"๐Ÿ’ฒ\"],[\"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\",\"๐Ÿ”จ\"],[\"pick\",\"โ›\"],[\"hammer_and_pick\",\"โš’\"],[\"hammer_and_wrench\",\"๐Ÿ› \"],[\"dagger\",\"๐Ÿ—ก\"],[\"crossed_swords\",\"โš”\"],[\"pistol\",\"๐Ÿ”ซ\"],[\"bow_and_arrow\",\"๐Ÿน\"],[\"shield\",\"๐Ÿ›ก\"],[\"wrench\",\"๐Ÿ”ง\"],[\"nut_and_bolt\",\"๐Ÿ”ฉ\"],[\"gear\",\"โš™\"],[\"clamp\",\"๐Ÿ—œ\"],[\"balance_scale\",\"โš–\"],[\"link\",\"๐Ÿ”—\"],[\"chains\",\"โ›“\"],[\"_toolbox\",\"๐Ÿงฐ\"],[\"_magnet\",\"๐Ÿงฒ\"],[\"alembic\",\"โš—\"],[\"_test_tube\",\"๐Ÿงช\"],[\"_petri_dish\",\"๐Ÿงซ\"],[\"_dna\",\"๐Ÿงฌ\"],[\"microscope\",\"๐Ÿ”ฌ\"],[\"telescope\",\"๐Ÿ”ญ\"],[\"satellite_antenna\",\"๐Ÿ“ก\"],[\"syringe\",\"๐Ÿ’‰\"],[\"pill\",\"๐Ÿ’Š\"],[\"door\",\"๐Ÿšช\"],[\"bed\",\"๐Ÿ›\"],[\"couch_and_lamp\",\"๐Ÿ›‹\"],[\"toilet\",\"๐Ÿšฝ\"],[\"shower\",\"๐Ÿšฟ\"],[\"bathtub\",\"๐Ÿ›\"],[\"_lotion_bottle\",\"๐Ÿงด\"],[\"_safety_pin\",\"๐Ÿงท\"],[\"_broom\",\"๐Ÿงน\"],[\"_basket\",\"๐Ÿงบ\"],[\"_roll_of_paper\",\"๐Ÿงป\"],[\"_soap\",\"๐Ÿงผ\"],[\"_sponge\",\"๐Ÿงฝ\"],[\"_fire_extinguisher\",\"๐Ÿงฏ\"],[\"shopping_cart\",\"๐Ÿ›’\"],[\"cigarette\",\"๐Ÿšฌ\"],[\"coffin\",\"โšฐ\"],[\"funeral_urn\",\"โšฑ\"],[\"moai\",\"๐Ÿ—ฟ\"],[\"atm_sign\",\"๐Ÿง\"],[\"litter_in_bin_sign\",\"๐Ÿšฎ\"],[\"potable_water\",\"๐Ÿšฐ\"],[\"wheelchair_symbol\",\"โ™ฟ\"],[\"men_s_room\",\"๐Ÿšน\"],[\"women_s_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\",\"โ™‚\"],[\"medical_symbol\",\"โš•\"],[\"_infinity\",\"โ™พ\"],[\"recycling_symbol\",\"โ™ป\"],[\"fleurdelis\",\"โšœ\"],[\"trident_emblem\",\"๐Ÿ”ฑ\"],[\"name_badge\",\"๐Ÿ“›\"],[\"japanese_symbol_for_beginner\",\"๐Ÿ”ฐ\"],[\"heavy_large_circle\",\"โญ•\"],[\"white_heavy_check_mark\",\"โœ…\"],[\"ballot_box_with_check\",\"โ˜‘\"],[\"heavy_check_mark\",\"โœ”\"],[\"heavy_multiplication_x\",\"โœ–\"],[\"cross_mark\",\"โŒ\"],[\"cross_mark_button\",\"โŽ\"],[\"heavy_plus_sign\",\"โž•\"],[\"heavy_minus_sign\",\"โž–\"],[\"heavy_division_sign\",\"โž—\"],[\"curly_loop\",\"โžฐ\"],[\"double_curly_loop\",\"โžฟ\"],[\"part_alternation_mark\",\"ใ€ฝ\"],[\"eightspoked_asterisk\",\"โœณ\"],[\"eightpointed_star\",\"โœด\"],[\"sparkle\",\"โ‡\"],[\"double_exclamation_mark\",\"โ€ผ\"],[\"exclamation_question_mark\",\"โ‰\"],[\"question_mark\",\"โ“\"],[\"white_question_mark\",\"โ”\"],[\"white_exclamation_mark\",\"โ•\"],[\"exclamation_mark\",\"โ—\"],[\"wavy_dash\",\"ใ€ฐ\"],[\"copyright\",\"ยฉ\"],[\"registered\",\"ยฎ\"],[\"trade_mark\",\"โ„ข\"],[\"keycap_number_sign\",\"#๏ธโƒฃ\"],[\"keycap_x\",\"*๏ธโƒฃ\"],[\"keycap_0\",\"0๏ธโƒฃ\"],[\"keycap_1\",\"1๏ธโƒฃ\"],[\"keycap_2\",\"2๏ธโƒฃ\"],[\"keycap_3\",\"3๏ธโƒฃ\"],[\"keycap_4\",\"4๏ธโƒฃ\"],[\"keycap_5\",\"5๏ธโƒฃ\"],[\"keycap_6\",\"6๏ธโƒฃ\"],[\"keycap_7\",\"7๏ธโƒฃ\"],[\"keycap_8\",\"8๏ธโƒฃ\"],[\"keycap_9\",\"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\",\"๐Ÿ”ด\"],[\"blue_circle\",\"๐Ÿ”ต\"],[\"white_circle\",\"โšช\"],[\"black_circle\",\"โšซ\"],[\"white_large_square\",\"โฌœ\"],[\"black_large_square\",\"โฌ›\"],[\"black_medium_square\",\"โ—ผ\"],[\"white_medium_square\",\"โ—ป\"],[\"white_mediumsmall_square\",\"โ—ฝ\"],[\"black_mediumsmall_square\",\"โ—พ\"],[\"white_small_square\",\"โ–ซ\"],[\"black_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\",\"๐Ÿ”˜\"],[\"black_square_button\",\"๐Ÿ”ฒ\"],[\"white_square_button\",\"๐Ÿ”ณ\"],[\"chequered_flag\",\"๐Ÿ\"],[\"triangular_flag\",\"๐Ÿšฉ\"],[\"crossed_flags\",\"๐ŸŽŒ\"],[\"black_flag\",\"๐Ÿด\"],[\"white_flag\",\"๐Ÿณ\"],[\"rainbow_flag\",\"๐Ÿณ๏ธโ€๐ŸŒˆ\"],[\"_pirate_flag\",\"๐Ÿดโ€โ˜ ๏ธ\"],[\"flag_ascension_island\",\"๐Ÿ‡ฆ๐Ÿ‡จ\"],[\"flag_andorra\",\"๐Ÿ‡ฆ๐Ÿ‡ฉ\"],[\"flag_united_arab_emirates\",\"๐Ÿ‡ฆ๐Ÿ‡ช\"],[\"flag_afghanistan\",\"๐Ÿ‡ฆ๐Ÿ‡ซ\"],[\"flag_antigua_and_barbuda\",\"๐Ÿ‡ฆ๐Ÿ‡ฌ\"],[\"flag_anguilla\",\"๐Ÿ‡ฆ๐Ÿ‡ฎ\"],[\"flag_albania\",\"๐Ÿ‡ฆ๐Ÿ‡ฑ\"],[\"flag_armenia\",\"๐Ÿ‡ฆ๐Ÿ‡ฒ\"],[\"flag_angola\",\"๐Ÿ‡ฆ๐Ÿ‡ด\"],[\"flag_antarctica\",\"๐Ÿ‡ฆ๐Ÿ‡ถ\"],[\"flag_argentina\",\"๐Ÿ‡ฆ๐Ÿ‡ท\"],[\"flag_american_samoa\",\"๐Ÿ‡ฆ๐Ÿ‡ธ\"],[\"flag_austria\",\"๐Ÿ‡ฆ๐Ÿ‡น\"],[\"flag_australia\",\"๐Ÿ‡ฆ๐Ÿ‡บ\"],[\"flag_aruba\",\"๐Ÿ‡ฆ๐Ÿ‡ผ\"],[\"flag_aland_islands\",\"๐Ÿ‡ฆ๐Ÿ‡ฝ\"],[\"flag_azerbaijan\",\"๐Ÿ‡ฆ๐Ÿ‡ฟ\"],[\"flag_bosnia_and_herzegovina\",\"๐Ÿ‡ง๐Ÿ‡ฆ\"],[\"flag_barbados\",\"๐Ÿ‡ง๐Ÿ‡ง\"],[\"flag_bangladesh\",\"๐Ÿ‡ง๐Ÿ‡ฉ\"],[\"flag_belgium\",\"๐Ÿ‡ง๐Ÿ‡ช\"],[\"flag_burkina_faso\",\"๐Ÿ‡ง๐Ÿ‡ซ\"],[\"flag_bulgaria\",\"๐Ÿ‡ง๐Ÿ‡ฌ\"],[\"flag_bahrain\",\"๐Ÿ‡ง๐Ÿ‡ญ\"],[\"flag_burundi\",\"๐Ÿ‡ง๐Ÿ‡ฎ\"],[\"flag_benin\",\"๐Ÿ‡ง๐Ÿ‡ฏ\"],[\"flag_st_barthelemy\",\"๐Ÿ‡ง๐Ÿ‡ฑ\"],[\"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_cote_d_ivoire\",\"๐Ÿ‡จ๐Ÿ‡ฎ\"],[\"flag_cook_islands\",\"๐Ÿ‡จ๐Ÿ‡ฐ\"],[\"flag_chile\",\"๐Ÿ‡จ๐Ÿ‡ฑ\"],[\"flag_cameroon\",\"๐Ÿ‡จ๐Ÿ‡ฒ\"],[\"flag_china\",\"๐Ÿ‡จ๐Ÿ‡ณ\"],[\"flag_colombia\",\"๐Ÿ‡จ๐Ÿ‡ด\"],[\"flag_clipperton_island\",\"๐Ÿ‡จ๐Ÿ‡ต\"],[\"flag_costa_rica\",\"๐Ÿ‡จ๐Ÿ‡ท\"],[\"flag_cuba\",\"๐Ÿ‡จ๐Ÿ‡บ\"],[\"flag_cape_verde\",\"๐Ÿ‡จ๐Ÿ‡ป\"],[\"flag_curacao\",\"๐Ÿ‡จ๐Ÿ‡ผ\"],[\"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_and_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_and_south_sandwich_islands\",\"๐Ÿ‡ฌ๐Ÿ‡ธ\"],[\"flag_guatemala\",\"๐Ÿ‡ฌ๐Ÿ‡น\"],[\"flag_guam\",\"๐Ÿ‡ฌ๐Ÿ‡บ\"],[\"flag_guineabissau\",\"๐Ÿ‡ฌ๐Ÿ‡ผ\"],[\"flag_guyana\",\"๐Ÿ‡ฌ๐Ÿ‡พ\"],[\"flag_hong_kong_sar_china\",\"๐Ÿ‡ญ๐Ÿ‡ฐ\"],[\"flag_heard_and_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_and_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_macedonia\",\"๐Ÿ‡ฒ๐Ÿ‡ฐ\"],[\"flag_mali\",\"๐Ÿ‡ฒ๐Ÿ‡ฑ\"],[\"flag_myanmar_burma\",\"๐Ÿ‡ฒ๐Ÿ‡ฒ\"],[\"flag_mongolia\",\"๐Ÿ‡ฒ๐Ÿ‡ณ\"],[\"flag_macau_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_and_miquelon\",\"๐Ÿ‡ต๐Ÿ‡ฒ\"],[\"flag_pitcairn_islands\",\"๐Ÿ‡ต๐Ÿ‡ณ\"],[\"flag_puerto_rico\",\"๐Ÿ‡ต๐Ÿ‡ท\"],[\"flag_palestinian_territories\",\"๐Ÿ‡ต๐Ÿ‡ธ\"],[\"flag_portugal\",\"๐Ÿ‡ต๐Ÿ‡น\"],[\"flag_palau\",\"๐Ÿ‡ต๐Ÿ‡ผ\"],[\"flag_paraguay\",\"๐Ÿ‡ต๐Ÿ‡พ\"],[\"flag_qatar\",\"๐Ÿ‡ถ๐Ÿ‡ฆ\"],[\"flag_reunion\",\"๐Ÿ‡ท๐Ÿ‡ช\"],[\"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_and_jan_mayen\",\"๐Ÿ‡ธ๐Ÿ‡ฏ\"],[\"flag_slovakia\",\"๐Ÿ‡ธ๐Ÿ‡ฐ\"],[\"flag_sierra_leone\",\"๐Ÿ‡ธ๐Ÿ‡ฑ\"],[\"flag_san_marino\",\"๐Ÿ‡ธ๐Ÿ‡ฒ\"],[\"flag_senegal\",\"๐Ÿ‡ธ๐Ÿ‡ณ\"],[\"flag_somalia\",\"๐Ÿ‡ธ๐Ÿ‡ด\"],[\"flag_suriname\",\"๐Ÿ‡ธ๐Ÿ‡ท\"],[\"flag_south_sudan\",\"๐Ÿ‡ธ๐Ÿ‡ธ\"],[\"flag_sao_tome_and_principe\",\"๐Ÿ‡ธ๐Ÿ‡น\"],[\"flag_el_salvador\",\"๐Ÿ‡ธ๐Ÿ‡ป\"],[\"flag_sint_maarten\",\"๐Ÿ‡ธ๐Ÿ‡ฝ\"],[\"flag_syria\",\"๐Ÿ‡ธ๐Ÿ‡พ\"],[\"flag_swaziland\",\"๐Ÿ‡ธ๐Ÿ‡ฟ\"],[\"flag_tristan_da_cunha\",\"๐Ÿ‡น๐Ÿ‡ฆ\"],[\"flag_turks_and_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_and_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_and_grenadines\",\"๐Ÿ‡ป๐Ÿ‡จ\"],[\"flag_venezuela\",\"๐Ÿ‡ป๐Ÿ‡ช\"],[\"flag_british_virgin_islands\",\"๐Ÿ‡ป๐Ÿ‡ฌ\"],[\"flag_us_virgin_islands\",\"๐Ÿ‡ป๐Ÿ‡ฎ\"],[\"flag_vietnam\",\"๐Ÿ‡ป๐Ÿ‡ณ\"],[\"flag_vanuatu\",\"๐Ÿ‡ป๐Ÿ‡บ\"],[\"flag_wallis_and_futuna\",\"๐Ÿ‡ผ๐Ÿ‡ซ\"],[\"flag_samoa\",\"๐Ÿ‡ผ๐Ÿ‡ธ\"],[\"flag_kosovo\",\"๐Ÿ‡ฝ๐Ÿ‡ฐ\"],[\"flag_yemen\",\"๐Ÿ‡พ๐Ÿ‡ช\"],[\"flag_mayotte\",\"๐Ÿ‡พ๐Ÿ‡น\"],[\"flag_south_africa\",\"๐Ÿ‡ฟ๐Ÿ‡ฆ\"],[\"flag_zambia\",\"๐Ÿ‡ฟ๐Ÿ‡ฒ\"],[\"flag_zimbabwe\",\"๐Ÿ‡ฟ๐Ÿ‡ผ\"],[\"flag_england\",\"๐Ÿด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ\"],[\"flag_scotland\",\"๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ\"],[\"flag_wales\",\"๐Ÿด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ\"]]" diff --git a/generateDataForC.c b/generateDataForC.c @@ -36,6 +36,7 @@ int main(int ARGC, char** ARGV) { char *bighead = NULL; char *mediumhead = NULL; + const char *stS[] = {"start", "head", "codes", "name"}; typ enum {start, head, codes, name} statust; statust status = start; statust statusCode = start; @@ -43,6 +44,9 @@ int main(int ARGC, char** ARGV) { iter(&html, L) { castS(l,L); + /* lv(l); */ + /* lv(stS[status]); */ + /* lv(stS[statusCode]); */ if (status == codes) { if (statusCode == name and hasG(l, "td class='name'")) { var l_l = extractG(l, ">", "<"); @@ -67,7 +71,8 @@ int main(int ARGC, char** ARGV) { ",", "", "รด", "o", "รฃ", "a", - "รญ", "i"); + "รญ", "i", + "#", "number_sign"); lowerG(text); pushNFreeG(&elem, dupG(text)); //lv(text); @@ -113,8 +118,10 @@ int main(int ARGC, char** ARGV) { replaceG(&mediumhead, "&amp;", "and", 1); //lv(mediumhead); } - elif (hasG(l, "td class='rchars'")) - status = codes; + elif (hasG(l, "td class='rchars'")) { + status = codes; + statusCode = codes; + } } if (status == start) { if (hasG(l, "<table")) diff --git a/package.yml b/package.yml @@ -1,6 +1,6 @@ --- name: emoji - version: 0.0.1 + version: 0.0.2 description: "emoji list in a C header" bin: ./emoji.c #cflags: -DA -ggdb -std=gnu11 -fPIC -pipe