Package: openjdk-17-jdk-headless Version: 17.0.11+9-1~deb12u1 Severity: normal File: /usr/lib/jvm/java-17-openjdk-amd64/bin/javac
Dear Maintainer, Attaching the problematic file. Running javac a.java, javac allocates 300M then pegs a CPU and then does nothing. strace says all it does is futex() and getrusage() when it gets to this state. This isn't a state any compiler should get into I think. Best, -- System Information: Debian Release: 12.4 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'stable-security'), (500, 'stable-debug'), (500, 'stable') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 6.1.0-12-amd64 (SMP w/24 CPU threads; PREEMPT) Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_FIRMWARE_WORKAROUND, TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8), LANGUAGE=en_GB:en Shell: /bin/sh linked to /usr/bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enabled Versions of packages openjdk-17-jdk-headless:amd64 depends on: ii libc6 2.36-9+deb12u4 ii openjdk-17-jre-headless 17.0.11+9-1~deb12u1 ii zlib1g 1:1.2.13.dfsg-1 openjdk-17-jdk-headless:amd64 recommends no packages. Versions of packages openjdk-17-jdk-headless:amd64 suggests: pn openjdk-17-demo <none> pn openjdk-17-source <none> -- no debconf information
// SPDX-License-Identifier: 0BSD import java.util.stream.IntStream; import java.util.Map; class ShadowedCharSequence implements CharSequence { private CharSequence mShadowing; public char replaceWith; public ShadowedCharSequence(CharSequence shadow, char repl) { this.mShadowing = shadow; this.replaceWith = repl; } // CharSequence @Override public char charAt(int index) { return this.mShadowing.charAt(index); } @Override public IntStream chars() { return this.mShadowing.chars(); } @Override public IntStream codePoints() { return this.mShadowing.codePoints(); } @Override public int length() { return this.mShadowing.length(); } @Override public CharSequence subSequence(int start, int end) { return new ShadowedCharSequence(this.mShadowing.subSequence(start, end), this.replaceWith); } @Override public String toString() { return this.mShadowing.toString(); } @Override public int hashCode() { return this.mShadowing.hashCode(); } @Override public boolean equals(Object obj) { return this.mShadowing.equals(obj); } } class EmojiDictionary { public static final EmojiDictionary INSTANCE = new EmojiDictionary(); public final Map<String, Character> mEmojis; private EmojiDictionary() { mEmojis = Map.ofEntries( Map.entry(":+1:", '๐'), Map.entry(":-1:", '๐'), Map.entry(":100:", '๐ฏ'), Map.entry(":1234:", '๐ข'), Map.entry(":8ball:", '๐ฑ'), Map.entry(":a:", '๐ ฐ'), Map.entry(":ab:", '๐'), Map.entry(":abacus:", '๐งฎ'), Map.entry(":abc:", '๐ค'), Map.entry(":abcd:", '๐ก'), Map.entry(":accept:", '๐'), Map.entry(":accordion:", '๐ช'), Map.entry(":adhesive_bandage:", '๐ฉน'), Map.entry(":adult:", '๐ง'), Map.entry(":aerial_tramway:", '๐ก'), Map.entry(":airplane:", 'โ'), Map.entry(":airplane_arriving:", '๐ฌ'), Map.entry(":airplane_departure:", '๐ซ'), Map.entry(":alarm_clock:", 'โฐ'), Map.entry(":alien:", '๐ฝ'), Map.entry(":ambulance:", '๐'), Map.entry(":amphora:", '๐บ'), Map.entry(":anatomical_heart:", '๐ซ'), Map.entry(":anchor:", 'โ'), Map.entry(":angel:", '๐ผ'), Map.entry(":anger:", '๐ข'), Map.entry(":angry:", '๐ '), Map.entry(":anguished:", '๐ง'), Map.entry(":ant:", '๐'), Map.entry(":apple:", '๐'), Map.entry(":aquarius:", 'โ'), Map.entry(":aries:", 'โ'), Map.entry(":arrow_backward:", 'โ'), Map.entry(":arrow_double_down:", 'โฌ'), Map.entry(":arrow_double_up:", 'โซ'), Map.entry(":arrow_down:", 'โฌ'), Map.entry(":arrow_down_small:", '๐ฝ'), Map.entry(":arrow_forward:", 'โถ'), Map.entry(":arrow_heading_down:", 'โคต'), Map.entry(":arrow_heading_up:", 'โคด'), Map.entry(":arrow_left:", 'โฌ '), Map.entry(":arrow_lower_left:", 'โ'), Map.entry(":arrow_lower_right:", 'โ'), Map.entry(":arrow_right:", 'โก'), Map.entry(":arrow_right_hook:", 'โช'), Map.entry(":arrow_up:", 'โฌ'), Map.entry(":arrow_up_down:", 'โ'), Map.entry(":arrow_up_small:", '๐ผ'), Map.entry(":arrow_upper_left:", 'โ'), Map.entry(":arrow_upper_right:", 'โ'), Map.entry(":arrows_clockwise:", '๐'), Map.entry(":arrows_counterclockwise:", '๐'), Map.entry(":art:", '๐จ'), Map.entry(":articulated_lorry:", '๐'), Map.entry(":astonished:", '๐ฒ'), Map.entry(":athletic_shoe:", '๐'), Map.entry(":atm:", '๐ง'), Map.entry(":auto_rickshaw:", '๐บ'), Map.entry(":avocado:", '๐ฅ'), Map.entry(":axe:", '๐ช'), Map.entry(":b:", '๐ ฑ'), Map.entry(":baby:", '๐ถ'), Map.entry(":baby_bottle:", '๐ผ'), Map.entry(":baby_chick:", '๐ค'), Map.entry(":baby_symbol:", '๐ผ'), Map.entry(":back:", '๐'), Map.entry(":bacon:", '๐ฅ'), Map.entry(":badger:", '๐ฆก'), Map.entry(":badminton_racquet_and_shuttlecock:", '๐ธ'), Map.entry(":bagel:", '๐ฅฏ'), Map.entry(":baggage_claim:", '๐'), Map.entry(":baguette_bread:", '๐ฅ'), Map.entry(":ballet_shoes:", '๐ฉฐ'), Map.entry(":balloon:", '๐'), Map.entry(":ballot_box_with_check:", 'โ'), Map.entry(":bamboo:", '๐'), Map.entry(":banana:", '๐'), Map.entry(":bangbang:", 'โผ'), Map.entry(":banjo:", '๐ช'), Map.entry(":bank:", '๐ฆ'), Map.entry(":bar_chart:", '๐'), Map.entry(":barber:", '๐'), Map.entry(":baseball:", 'โพ'), Map.entry(":basket:", '๐งบ'), Map.entry(":basketball:", '๐'), Map.entry(":bat:", '๐ฆ'), Map.entry(":bath:", '๐'), Map.entry(":bathtub:", '๐'), Map.entry(":battery:", '๐'), Map.entry(":beans:", '๐ซ'), Map.entry(":bear:", '๐ป'), Map.entry(":bearded_person:", '๐ง'), Map.entry(":beaver:", '๐ฆซ'), Map.entry(":bee:", '๐'), Map.entry(":beer:", '๐บ'), Map.entry(":beers:", '๐ป'), Map.entry(":beetle:", '๐ชฒ'), Map.entry(":beginner:", '๐ฐ'), Map.entry(":bell:", '๐'), Map.entry(":bell_pepper:", '๐ซ'), Map.entry(":bento:", '๐ฑ'), Map.entry(":beverage_box:", '๐ง'), Map.entry(":bicyclist:", '๐ด'), Map.entry(":bike:", '๐ฒ'), Map.entry(":bikini:", '๐'), Map.entry(":billed_cap:", '๐งข'), Map.entry(":bird:", '๐ฆ'), Map.entry(":birthday:", '๐'), Map.entry(":bison:", '๐ฆฌ'), Map.entry(":biting_lip:", '๐ซฆ'), Map.entry(":black_circle:", 'โซ'), Map.entry(":black_heart:", '๐ค'), Map.entry(":black_joker:", '๐'), Map.entry(":black_large_square:", 'โฌ'), Map.entry(":black_medium_small_square:", 'โพ'), Map.entry(":black_medium_square:", 'โผ'), Map.entry(":black_nib:", 'โ'), Map.entry(":black_small_square:", 'โช'), Map.entry(":black_square_button:", '๐ฒ'), Map.entry(":blossom:", '๐ผ'), Map.entry(":blowfish:", '๐ก'), Map.entry(":blue_book:", '๐'), Map.entry(":blue_car:", '๐'), Map.entry(":blue_heart:", '๐'), Map.entry(":blueberries:", '๐ซ'), Map.entry(":blush:", '๐'), Map.entry(":boar:", '๐'), Map.entry(":boat:", 'โต'), Map.entry(":bomb:", '๐ฃ'), Map.entry(":bone:", '๐ฆด'), Map.entry(":book:", '๐'), Map.entry(":bookmark:", '๐'), Map.entry(":bookmark_tabs:", '๐'), Map.entry(":books:", '๐'), Map.entry(":boom:", '๐ฅ'), Map.entry(":boomerang:", '๐ช'), Map.entry(":boot:", '๐ข'), Map.entry(":bouquet:", '๐'), Map.entry(":bow:", '๐'), Map.entry(":bow_and_arrow:", '๐น'), Map.entry(":bowl_with_spoon:", '๐ฅฃ'), Map.entry(":bowling:", '๐ณ'), Map.entry(":boxing_glove:", '๐ฅ'), Map.entry(":boy:", '๐ฆ'), Map.entry(":brain:", '๐ง '), Map.entry(":bread:", '๐'), Map.entry(":breast-feeding:", '๐คฑ'), Map.entry(":bricks:", '๐งฑ'), Map.entry(":bride_with_veil:", '๐ฐ'), Map.entry(":bridge_at_night:", '๐'), Map.entry(":briefcase:", '๐ผ'), Map.entry(":briefs:", '๐ฉฒ'), Map.entry(":broccoli:", '๐ฅฆ'), Map.entry(":broken_heart:", '๐'), Map.entry(":broom:", '๐งน'), Map.entry(":brown_heart:", '๐ค'), Map.entry(":bubble_tea:", '๐ง'), Map.entry(":bubbles:", '๐ซง'), Map.entry(":bucket:", '๐ชฃ'), Map.entry(":bug:", '๐'), Map.entry(":bulb:", '๐ก'), Map.entry(":bullettrain_front:", '๐ '), Map.entry(":bullettrain_side:", '๐'), Map.entry(":burrito:", '๐ฏ'), Map.entry(":bus:", '๐'), Map.entry(":busstop:", '๐'), Map.entry(":bust_in_silhouette:", '๐ค'), Map.entry(":busts_in_silhouette:", '๐ฅ'), Map.entry(":butter:", '๐ง'), Map.entry(":butterfly:", '๐ฆ'), Map.entry(":cactus:", '๐ต'), Map.entry(":cake:", '๐ฐ'), Map.entry(":calendar:", '๐'), Map.entry(":call_me_hand:", '๐ค'), Map.entry(":calling:", '๐ฒ'), Map.entry(":camel:", '๐ซ'), Map.entry(":camera:", '๐ท'), Map.entry(":camera_with_flash:", '๐ธ'), Map.entry(":cancer:", 'โ'), Map.entry(":candy:", '๐ฌ'), Map.entry(":canned_food:", '๐ฅซ'), Map.entry(":canoe:", '๐ถ'), Map.entry(":capital_abcd:", '๐ '), Map.entry(":capricorn:", 'โ'), Map.entry(":car:", '๐'), Map.entry(":card_index:", '๐'), Map.entry(":carousel_horse:", '๐ '), Map.entry(":carpentry_saw:", '๐ช'), Map.entry(":carrot:", '๐ฅ'), Map.entry(":cat2:", '๐'), Map.entry(":cat:", '๐ฑ'), Map.entry(":cd:", '๐ฟ'), Map.entry(":chair:", '๐ช'), Map.entry(":champagne:", '๐พ'), Map.entry(":chart:", '๐น'), Map.entry(":chart_with_downwards_trend:", '๐'), Map.entry(":chart_with_upwards_trend:", '๐'), Map.entry(":checkered_flag:", '๐'), Map.entry(":cheese_wedge:", '๐ง'), Map.entry(":cherries:", '๐'), Map.entry(":cherry_blossom:", '๐ธ'), Map.entry(":chestnut:", '๐ฐ'), Map.entry(":chicken:", '๐'), Map.entry(":child:", '๐ง'), Map.entry(":children_crossing:", '๐ธ'), Map.entry(":chocolate_bar:", '๐ซ'), Map.entry(":chopsticks:", '๐ฅข'), Map.entry(":christmas_tree:", '๐'), Map.entry(":church:", 'โช'), Map.entry(":cinema:", '๐ฆ'), Map.entry(":circus_tent:", '๐ช'), Map.entry(":city_sunrise:", '๐'), Map.entry(":city_sunset:", '๐'), Map.entry(":cl:", '๐'), Map.entry(":clap:", '๐'), Map.entry(":clapper:", '๐ฌ'), Map.entry(":clinking_glasses:", '๐ฅ'), Map.entry(":clipboard:", '๐'), Map.entry(":clock1030:", '๐ฅ'), Map.entry(":clock10:", '๐'), Map.entry(":clock1130:", '๐ฆ'), Map.entry(":clock11:", '๐'), Map.entry(":clock1230:", '๐ง'), Map.entry(":clock12:", '๐'), Map.entry(":clock130:", '๐'), Map.entry(":clock1:", '๐'), Map.entry(":clock230:", '๐'), Map.entry(":clock2:", '๐'), Map.entry(":clock330:", '๐'), Map.entry(":clock3:", '๐'), Map.entry(":clock430:", '๐'), Map.entry(":clock4:", '๐'), Map.entry(":clock530:", '๐ '), Map.entry(":clock5:", '๐'), Map.entry(":clock630:", '๐ก'), Map.entry(":clock6:", '๐'), Map.entry(":clock730:", '๐ข'), Map.entry(":clock7:", '๐'), Map.entry(":clock830:", '๐ฃ'), Map.entry(":clock8:", '๐'), Map.entry(":clock930:", '๐ค'), Map.entry(":clock9:", '๐'), Map.entry(":closed_book:", '๐'), Map.entry(":closed_lock_with_key:", '๐'), Map.entry(":closed_umbrella:", '๐'), Map.entry(":cloud:", 'โ'), Map.entry(":clown_face:", '๐คก'), Map.entry(":clubs:", 'โฃ'), Map.entry(":coat:", '๐งฅ'), Map.entry(":cockroach:", '๐ชณ'), Map.entry(":cocktail:", '๐ธ'), Map.entry(":coconut:", '๐ฅฅ'), Map.entry(":coffee:", 'โ'), Map.entry(":coin:", '๐ช'), Map.entry(":cold_face:", '๐ฅถ'), Map.entry(":cold_sweat:", '๐ฐ'), Map.entry(":compass:", '๐งญ'), Map.entry(":computer:", '๐ป'), Map.entry(":confetti_ball:", '๐'), Map.entry(":confounded:", '๐'), Map.entry(":confused:", '๐'), Map.entry(":congratulations:", 'ใ'), Map.entry(":construction:", '๐ง'), Map.entry(":construction_worker:", '๐ท'), Map.entry(":convenience_store:", '๐ช'), Map.entry(":cookie:", '๐ช'), Map.entry(":cool:", '๐'), Map.entry(":cop:", '๐ฎ'), Map.entry(":copyright:", 'ยฉ'), Map.entry(":coral:", '๐ชธ'), Map.entry(":corn:", '๐ฝ'), Map.entry(":couple:", '๐ซ'), Map.entry(":couple_with_heart:", '๐'), Map.entry(":couplekiss:", '๐'), Map.entry(":cow2:", '๐'), Map.entry(":cow:", '๐ฎ'), Map.entry(":crab:", '๐ฆ'), Map.entry(":credit_card:", '๐ณ'), Map.entry(":crescent_moon:", '๐'), Map.entry(":cricket:", '๐ฆ'), Map.entry(":cricket_bat_and_ball:", '๐'), Map.entry(":crocodile:", '๐'), Map.entry(":croissant:", '๐ฅ'), Map.entry(":crossed_fingers:", '๐ค'), Map.entry(":crossed_flags:", '๐'), Map.entry(":crown:", '๐'), Map.entry(":crutch:", '๐ฉผ'), Map.entry(":cry:", '๐ข'), Map.entry(":crying_cat_face:", '๐ฟ'), Map.entry(":crystal_ball:", '๐ฎ'), Map.entry(":cucumber:", '๐ฅ'), Map.entry(":cup_with_straw:", '๐ฅค'), Map.entry(":cupcake:", '๐ง'), Map.entry(":cupid:", '๐'), Map.entry(":curling_stone:", '๐ฅ'), Map.entry(":curly_loop:", 'โฐ'), Map.entry(":currency_exchange:", '๐ฑ'), Map.entry(":curry:", '๐'), Map.entry(":custard:", '๐ฎ'), Map.entry(":customs:", '๐'), Map.entry(":cut_of_meat:", '๐ฅฉ'), Map.entry(":cyclone:", '๐'), Map.entry(":dancer:", '๐'), Map.entry(":dancers:", '๐ฏ'), Map.entry(":dango:", '๐ก'), Map.entry(":dart:", '๐ฏ'), Map.entry(":dash:", '๐จ'), Map.entry(":date:", '๐ '), Map.entry(":deaf_person:", '๐ง'), Map.entry(":deciduous_tree:", '๐ณ'), Map.entry(":deer:", '๐ฆ'), Map.entry(":department_store:", '๐ฌ'), Map.entry(":diamond_shape_with_a_dot_inside:", '๐ '), Map.entry(":diamonds:", 'โฆ'), Map.entry(":disappointed:", '๐'), Map.entry(":disappointed_relieved:", '๐ฅ'), Map.entry(":disguised_face:", '๐ฅธ'), Map.entry(":diving_mask:", '๐คฟ'), Map.entry(":diya_lamp:", '๐ช'), Map.entry(":dizzy:", '๐ซ'), Map.entry(":dizzy_face:", '๐ต'), Map.entry(":dna:", '๐งฌ'), Map.entry(":do_not_litter:", '๐ฏ'), Map.entry(":dodo:", '๐ฆค'), Map.entry(":dog2:", '๐'), Map.entry(":dog:", '๐ถ'), Map.entry(":dollar:", '๐ต'), Map.entry(":dolls:", '๐'), Map.entry(":dolphin:", '๐ฌ'), Map.entry(":donkey:", '๐ซ'), Map.entry(":door:", '๐ช'), Map.entry(":dotted_line_face:", '๐ซฅ'), Map.entry(":doughnut:", '๐ฉ'), Map.entry(":dragon:", '๐'), Map.entry(":dragon_face:", '๐ฒ'), Map.entry(":dress:", '๐'), Map.entry(":dromedary_camel:", '๐ช'), Map.entry(":drooling_face:", '๐คค'), Map.entry(":drop_of_blood:", '๐ฉธ'), Map.entry(":droplet:", '๐ง'), Map.entry(":drum_with_drumsticks:", '๐ฅ'), Map.entry(":duck:", '๐ฆ'), Map.entry(":dumpling:", '๐ฅ'), Map.entry(":dvd:", '๐'), Map.entry(":e-mail:", '๐ง'), Map.entry(":eagle:", '๐ฆ '), Map.entry(":ear:", '๐'), Map.entry(":ear_of_rice:", '๐พ'), Map.entry(":ear_with_hearing_aid:", '๐ฆป'), Map.entry(":earth_africa:", '๐'), Map.entry(":earth_americas:", '๐'), Map.entry(":earth_asia:", '๐'), Map.entry(":egg:", '๐ฅ'), Map.entry(":eggplant:", '๐'), Map.entry(":eight_pointed_black_star:", 'โด'), Map.entry(":eight_spoked_asterisk:", 'โณ'), Map.entry(":electric_plug:", '๐'), Map.entry(":elephant:", '๐'), Map.entry(":elevator:", '๐'), Map.entry(":elf:", '๐ง'), Map.entry(":email:", 'โ'), Map.entry(":empty_nest:", '๐ชน'), Map.entry(":end:", '๐'), Map.entry(":envelope_with_arrow:", '๐ฉ'), Map.entry(":euro:", '๐ถ'), Map.entry(":european_castle:", '๐ฐ'), Map.entry(":european_post_office:", '๐ค'), Map.entry(":evergreen_tree:", '๐ฒ'), Map.entry(":exclamation:", 'โ'), Map.entry(":exploding_head:", '๐คฏ'), Map.entry(":expressionless:", '๐'), Map.entry(":eyeglasses:", '๐'), Map.entry(":eyes:", '๐'), Map.entry(":face_holding_back_tears:", '๐ฅน'), Map.entry(":face_palm:", '๐คฆ'), Map.entry(":face_vomiting:", '๐คฎ'), Map.entry(":face_with_cowboy_hat:", '๐ค '), Map.entry(":face_with_diagonal_mouth:", '๐ซค'), Map.entry(":face_with_hand_over_mouth:", '๐คญ'), Map.entry(":face_with_head_bandage:", '๐ค'), Map.entry(":face_with_monocle:", '๐ง'), Map.entry(":face_with_open_eyes_and_hand_over_mouth:", '๐ซข'), Map.entry(":face_with_peeking_eye:", '๐ซฃ'), Map.entry(":face_with_raised_eyebrow:", '๐คจ'), Map.entry(":face_with_rolling_eyes:", '๐'), Map.entry(":face_with_symbols_on_mouth:", '๐คฌ'), Map.entry(":face_with_thermometer:", '๐ค'), Map.entry(":facepunch:", '๐'), Map.entry(":factory:", '๐ญ'), Map.entry(":fairy:", '๐ง'), Map.entry(":falafel:", '๐ง'), Map.entry(":fallen_leaf:", '๐'), Map.entry(":family:", '๐ช'), Map.entry(":fast_forward:", 'โฉ'), Map.entry(":fax:", '๐ '), Map.entry(":fearful:", '๐จ'), Map.entry(":feather:", '๐ชถ'), Map.entry(":feet:", '๐พ'), Map.entry(":fencer:", '๐คบ'), Map.entry(":ferris_wheel:", '๐ก'), Map.entry(":field_hockey_stick_and_ball:", '๐'), Map.entry(":file_folder:", '๐'), Map.entry(":fire:", '๐ฅ'), Map.entry(":fire_engine:", '๐'), Map.entry(":fire_extinguisher:", '๐งฏ'), Map.entry(":firecracker:", '๐งจ'), Map.entry(":fireworks:", '๐'), Map.entry(":first_place_medal:", '๐ฅ'), Map.entry(":first_quarter_moon:", '๐'), Map.entry(":first_quarter_moon_with_face:", '๐'), Map.entry(":fish:", '๐'), Map.entry(":fish_cake:", '๐ฅ'), Map.entry(":fishing_pole_and_fish:", '๐ฃ'), Map.entry(":fist:", 'โ'), Map.entry(":flags:", '๐'), Map.entry(":flamingo:", '๐ฆฉ'), Map.entry(":flashlight:", '๐ฆ'), Map.entry(":flatbread:", '๐ซ'), Map.entry(":floppy_disk:", '๐พ'), Map.entry(":flower_playing_cards:", '๐ด'), Map.entry(":flushed:", '๐ณ'), Map.entry(":flute:", '๐ช'), Map.entry(":fly:", '๐ชฐ'), Map.entry(":flying_disc:", '๐ฅ'), Map.entry(":flying_saucer:", '๐ธ'), Map.entry(":foggy:", '๐'), Map.entry(":folding_hand_fan:", '๐ชญ'), Map.entry(":fondue:", '๐ซ'), Map.entry(":foot:", '๐ฆถ'), Map.entry(":football:", '๐'), Map.entry(":footprints:", '๐ฃ'), Map.entry(":fork_and_knife:", '๐ด'), Map.entry(":fortune_cookie:", '๐ฅ '), Map.entry(":fountain:", 'โฒ'), Map.entry(":four_leaf_clover:", '๐'), Map.entry(":fox_face:", '๐ฆ'), Map.entry(":free:", '๐'), Map.entry(":fried_egg:", '๐ณ'), Map.entry(":fried_shrimp:", '๐ค'), Map.entry(":fries:", '๐'), Map.entry(":frog:", '๐ธ'), Map.entry(":frowning:", '๐ฆ'), Map.entry(":fuelpump:", 'โฝ'), Map.entry(":full_moon:", '๐'), Map.entry(":full_moon_with_face:", '๐'), Map.entry(":game_die:", '๐ฒ'), Map.entry(":garlic:", '๐ง'), Map.entry(":gem:", '๐'), Map.entry(":gemini:", 'โ'), Map.entry(":genie:", '๐ง'), Map.entry(":ghost:", '๐ป'), Map.entry(":gift:", '๐'), Map.entry(":gift_heart:", '๐'), Map.entry(":ginger_root:", '๐ซ'), Map.entry(":giraffe_face:", '๐ฆ'), Map.entry(":girl:", '๐ง'), Map.entry(":glass_of_milk:", '๐ฅ'), Map.entry(":globe_with_meridians:", '๐'), Map.entry(":gloves:", '๐งค'), Map.entry(":goal_net:", '๐ฅ '), Map.entry(":goat:", '๐'), Map.entry(":goggles:", '๐ฅฝ'), Map.entry(":golf:", 'โณ'), Map.entry(":goose:", '๐ชฟ'), Map.entry(":gorilla:", '๐ฆ'), Map.entry(":grapes:", '๐'), Map.entry(":green_apple:", '๐'), Map.entry(":green_book:", '๐'), Map.entry(":green_heart:", '๐'), Map.entry(":green_salad:", '๐ฅ'), Map.entry(":grey_exclamation:", 'โ'), Map.entry(":grey_heart:", '๐ฉถ'), Map.entry(":grey_question:", 'โ'), Map.entry(":grimacing:", '๐ฌ'), Map.entry(":grin:", '๐'), Map.entry(":grinning:", '๐'), Map.entry(":guardsman:", '๐'), Map.entry(":guide_dog:", '๐ฆฎ'), Map.entry(":guitar:", '๐ธ'), Map.entry(":gun:", '๐ซ'), Map.entry(":hair_pick:", '๐ชฎ'), Map.entry(":haircut:", '๐'), Map.entry(":hamburger:", '๐'), Map.entry(":hammer:", '๐จ'), Map.entry(":hamsa:", '๐ชฌ'), Map.entry(":hamster:", '๐น'), Map.entry(":hand:", 'โ'), Map.entry(":hand_with_index_finger_and_thumb_crossed:", '๐ซฐ'), Map.entry(":handbag:", '๐'), Map.entry(":handball:", '๐คพ'), Map.entry(":handshake:", '๐ค'), Map.entry(":hankey:", '๐ฉ'), Map.entry(":hatched_chick:", '๐ฅ'), Map.entry(":hatching_chick:", '๐ฃ'), Map.entry(":headphones:", '๐ง'), Map.entry(":headstone:", '๐ชฆ'), Map.entry(":hear_no_evil:", '๐'), Map.entry(":heart:", 'โค'), Map.entry(":heart_decoration:", '๐'), Map.entry(":heart_eyes:", '๐'), Map.entry(":heart_eyes_cat:", '๐ป'), Map.entry(":heart_hands:", '๐ซถ'), Map.entry(":heartbeat:", '๐'), Map.entry(":heartpulse:", '๐'), Map.entry(":hearts:", 'โฅ'), Map.entry(":heavy_check_mark:", 'โ'), Map.entry(":heavy_division_sign:", 'โ'), Map.entry(":heavy_dollar_sign:", '๐ฒ'), Map.entry(":heavy_equals_sign:", '๐ฐ'), Map.entry(":heavy_minus_sign:", 'โ'), Map.entry(":heavy_multiplication_x:", 'โ'), Map.entry(":heavy_plus_sign:", 'โ'), Map.entry(":hedgehog:", '๐ฆ'), Map.entry(":helicopter:", '๐'), Map.entry(":herb:", '๐ฟ'), Map.entry(":hibiscus:", '๐บ'), Map.entry(":high_brightness:", '๐'), Map.entry(":high_heel:", '๐ '), Map.entry(":hiking_boot:", '๐ฅพ'), Map.entry(":hindu_temple:", '๐'), Map.entry(":hippopotamus:", '๐ฆ'), Map.entry(":hocho:", '๐ช'), Map.entry(":honey_pot:", '๐ฏ'), Map.entry(":hook:", '๐ช'), Map.entry(":horse:", '๐ด'), Map.entry(":horse_racing:", '๐'), Map.entry(":hospital:", '๐ฅ'), Map.entry(":hot_face:", '๐ฅต'), Map.entry(":hotdog:", '๐ญ'), Map.entry(":hotel:", '๐จ'), Map.entry(":hotsprings:", 'โจ'), Map.entry(":hourglass:", 'โ'), Map.entry(":hourglass_flowing_sand:", 'โณ'), Map.entry(":house:", '๐ '), Map.entry(":house_with_garden:", '๐ก'), Map.entry(":hugging_face:", '๐ค'), Map.entry(":hushed:", '๐ฏ'), Map.entry(":hut:", '๐'), Map.entry(":hyacinth:", '๐ชป'), Map.entry(":i_love_you_hand_sign:", '๐ค'), Map.entry(":ice_cream:", '๐จ'), Map.entry(":ice_cube:", '๐ง'), Map.entry(":ice_hockey_stick_and_puck:", '๐'), Map.entry(":icecream:", '๐ฆ'), Map.entry(":id:", '๐'), Map.entry(":identification_card:", '๐ชช'), Map.entry(":ideograph_advantage:", '๐'), Map.entry(":imp:", '๐ฟ'), Map.entry(":inbox_tray:", '๐ฅ'), Map.entry(":incoming_envelope:", '๐จ'), Map.entry(":index_pointing_at_the_viewer:", '๐ซต'), Map.entry(":information_desk_person:", '๐'), Map.entry(":information_source:", 'โน'), Map.entry(":innocent:", '๐'), Map.entry(":interrobang:", 'โ'), Map.entry(":iphone:", '๐ฑ'), Map.entry(":izakaya_lantern:", '๐ฎ'), Map.entry(":jack_o_lantern:", '๐'), Map.entry(":japan:", '๐พ'), Map.entry(":japanese_castle:", '๐ฏ'), Map.entry(":japanese_goblin:", '๐บ'), Map.entry(":japanese_ogre:", '๐น'), Map.entry(":jar:", '๐ซ'), Map.entry(":jeans:", '๐'), Map.entry(":jellyfish:", '๐ชผ'), Map.entry(":jigsaw:", '๐งฉ'), Map.entry(":joy:", '๐'), Map.entry(":joy_cat:", '๐น'), Map.entry(":juggling:", '๐คน'), Map.entry(":kaaba:", '๐'), Map.entry(":kangaroo:", '๐ฆ'), Map.entry(":key:", '๐'), Map.entry(":keycap_ten:", '๐'), Map.entry(":khanda:", '๐ชฏ'), Map.entry(":kimono:", '๐'), Map.entry(":kiss:", '๐'), Map.entry(":kissing:", '๐'), Map.entry(":kissing_cat:", '๐ฝ'), Map.entry(":kissing_closed_eyes:", '๐'), Map.entry(":kissing_heart:", '๐'), Map.entry(":kissing_smiling_eyes:", '๐'), Map.entry(":kite:", '๐ช'), Map.entry(":kiwifruit:", '๐ฅ'), Map.entry(":kneeling_person:", '๐ง'), Map.entry(":knot:", '๐ชข'), Map.entry(":koala:", '๐จ'), Map.entry(":koko:", '๐'), Map.entry(":lab_coat:", '๐ฅผ'), Map.entry(":lacrosse:", '๐ฅ'), Map.entry(":ladder:", '๐ช'), Map.entry(":ladybug:", '๐'), Map.entry(":large_blue_circle:", '๐ต'), Map.entry(":large_blue_diamond:", '๐ท'), Map.entry(":large_blue_square:", '๐ฆ'), Map.entry(":large_brown_circle:", '๐ค'), Map.entry(":large_brown_square:", '๐ซ'), Map.entry(":large_green_circle:", '๐ข'), Map.entry(":large_green_square:", '๐ฉ'), Map.entry(":large_orange_circle:", '๐ '), Map.entry(":large_orange_diamond:", '๐ถ'), Map.entry(":large_orange_square:", '๐ง'), Map.entry(":large_purple_circle:", '๐ฃ'), Map.entry(":large_purple_square:", '๐ช'), Map.entry(":large_red_square:", '๐ฅ'), Map.entry(":large_yellow_circle:", '๐ก'), Map.entry(":large_yellow_square:", '๐จ'), Map.entry(":last_quarter_moon:", '๐'), Map.entry(":last_quarter_moon_with_face:", '๐'), Map.entry(":laughing:", '๐'), Map.entry(":leafy_green:", '๐ฅฌ'), Map.entry(":leaves:", '๐'), Map.entry(":ledger:", '๐'), Map.entry(":left-facing_fist:", '๐ค'), Map.entry(":left_luggage:", '๐ '), Map.entry(":left_right_arrow:", 'โ'), Map.entry(":leftwards_arrow_with_hook:", 'โฉ'), Map.entry(":leftwards_hand:", '๐ซฒ'), Map.entry(":leftwards_pushing_hand:", '๐ซท'), Map.entry(":leg:", '๐ฆต'), Map.entry(":lemon:", '๐'), Map.entry(":leo:", 'โ'), Map.entry(":leopard:", '๐'), Map.entry(":libra:", 'โ'), Map.entry(":light_blue_heart:", '๐ฉต'), Map.entry(":light_rail:", '๐'), Map.entry(":link:", '๐'), Map.entry(":lion_face:", '๐ฆ'), Map.entry(":lips:", '๐'), Map.entry(":lipstick:", '๐'), Map.entry(":lizard:", '๐ฆ'), Map.entry(":llama:", '๐ฆ'), Map.entry(":lobster:", '๐ฆ'), Map.entry(":lock:", '๐'), Map.entry(":lock_with_ink_pen:", '๐'), Map.entry(":lollipop:", '๐ญ'), Map.entry(":long_drum:", '๐ช'), Map.entry(":loop:", 'โฟ'), Map.entry(":lotion_bottle:", '๐งด'), Map.entry(":lotus:", '๐ชท'), Map.entry(":loud_sound:", '๐'), Map.entry(":loudspeaker:", '๐ข'), Map.entry(":love_hotel:", '๐ฉ'), Map.entry(":love_letter:", '๐'), Map.entry(":low_battery:", '๐ชซ'), Map.entry(":low_brightness:", '๐ '), Map.entry(":luggage:", '๐งณ'), Map.entry(":lungs:", '๐ซ'), Map.entry(":lying_face:", '๐คฅ'), Map.entry(":m:", 'โ'), Map.entry(":mag:", '๐'), Map.entry(":mag_right:", '๐'), Map.entry(":mage:", '๐ง'), Map.entry(":magic_wand:", '๐ช'), Map.entry(":magnet:", '๐งฒ'), Map.entry(":mahjong:", '๐'), Map.entry(":mailbox:", '๐ซ'), Map.entry(":mailbox_closed:", '๐ช'), Map.entry(":mailbox_with_mail:", '๐ฌ'), Map.entry(":mailbox_with_no_mail:", '๐ญ'), Map.entry(":mammoth:", '๐ฆฃ'), Map.entry(":man:", '๐จ'), Map.entry(":man_and_woman_holding_hands:", '๐ซ'), Map.entry(":man_dancing:", '๐บ'), Map.entry(":man_with_gua_pi_mao:", '๐ฒ'), Map.entry(":man_with_turban:", '๐ณ'), Map.entry(":mango:", '๐ฅญ'), Map.entry(":mans_shoe:", '๐'), Map.entry(":manual_wheelchair:", '๐ฆฝ'), Map.entry(":maple_leaf:", '๐'), Map.entry(":maracas:", '๐ช'), Map.entry(":martial_arts_uniform:", '๐ฅ'), Map.entry(":mask:", '๐ท'), Map.entry(":massage:", '๐'), Map.entry(":mate_drink:", '๐ง'), Map.entry(":meat_on_bone:", '๐'), Map.entry(":mechanical_arm:", '๐ฆพ'), Map.entry(":mechanical_leg:", '๐ฆฟ'), Map.entry(":mega:", '๐ฃ'), Map.entry(":melon:", '๐'), Map.entry(":melting_face:", '๐ซ '), Map.entry(":memo:", '๐'), Map.entry(":menorah_with_nine_branches:", '๐'), Map.entry(":mens:", '๐น'), Map.entry(":merperson:", '๐ง'), Map.entry(":metro:", '๐'), Map.entry(":microbe:", '๐ฆ '), Map.entry(":microphone:", '๐ค'), Map.entry(":microscope:", '๐ฌ'), Map.entry(":middle_finger:", '๐'), Map.entry(":military_helmet:", '๐ช'), Map.entry(":milky_way:", '๐'), Map.entry(":minibus:", '๐'), Map.entry(":minidisc:", '๐ฝ'), Map.entry(":mirror:", '๐ช'), Map.entry(":mirror_ball:", '๐ชฉ'), Map.entry(":mobile_phone_off:", '๐ด'), Map.entry(":money_mouth_face:", '๐ค'), Map.entry(":money_with_wings:", '๐ธ'), Map.entry(":moneybag:", '๐ฐ'), Map.entry(":monkey:", '๐'), Map.entry(":monkey_face:", '๐ต'), Map.entry(":monorail:", '๐'), Map.entry(":moon:", '๐'), Map.entry(":moon_cake:", '๐ฅฎ'), Map.entry(":moose:", '๐ซ'), Map.entry(":mortar_board:", '๐'), Map.entry(":mosque:", '๐'), Map.entry(":mosquito:", '๐ฆ'), Map.entry(":motor_scooter:", '๐ต'), Map.entry(":motorized_wheelchair:", '๐ฆผ'), Map.entry(":mount_fuji:", '๐ป'), Map.entry(":mountain_bicyclist:", '๐ต'), Map.entry(":mountain_cableway:", '๐ '), Map.entry(":mountain_railway:", '๐'), Map.entry(":mouse2:", '๐'), Map.entry(":mouse:", '๐ญ'), Map.entry(":mouse_trap:", '๐ชค'), Map.entry(":movie_camera:", '๐ฅ'), Map.entry(":moyai:", '๐ฟ'), Map.entry(":mrs_claus:", '๐คถ'), Map.entry(":muscle:", '๐ช'), Map.entry(":mushroom:", '๐'), Map.entry(":musical_keyboard:", '๐น'), Map.entry(":musical_note:", '๐ต'), Map.entry(":musical_score:", '๐ผ'), Map.entry(":mute:", '๐'), Map.entry(":nail_care:", '๐ '), Map.entry(":name_badge:", '๐'), Map.entry(":nauseated_face:", '๐คข'), Map.entry(":nazar_amulet:", '๐งฟ'), Map.entry(":necktie:", '๐'), Map.entry(":negative_squared_cross_mark:", 'โ'), Map.entry(":nerd_face:", '๐ค'), Map.entry(":nest_with_eggs:", '๐ชบ'), Map.entry(":nesting_dolls:", '๐ช'), Map.entry(":neutral_face:", '๐'), Map.entry(":new:", '๐'), Map.entry(":new_moon:", '๐'), Map.entry(":new_moon_with_face:", '๐'), Map.entry(":newspaper:", '๐ฐ'), Map.entry(":ng:", '๐'), Map.entry(":night_with_stars:", '๐'), Map.entry(":ninja:", '๐ฅท'), Map.entry(":no_bell:", '๐'), Map.entry(":no_bicycles:", '๐ณ'), Map.entry(":no_entry:", 'โ'), Map.entry(":no_entry_sign:", '๐ซ'), Map.entry(":no_good:", '๐ '), Map.entry(":no_mobile_phones:", '๐ต'), Map.entry(":no_mouth:", '๐ถ'), Map.entry(":no_pedestrians:", '๐ท'), Map.entry(":no_smoking:", '๐ญ'), Map.entry(":non-potable_water:", '๐ฑ'), Map.entry(":nose:", '๐'), Map.entry(":notebook:", '๐'), Map.entry(":notebook_with_decorative_cover:", '๐'), Map.entry(":notes:", '๐ถ'), Map.entry(":nut_and_bolt:", '๐ฉ'), Map.entry(":o2:", '๐ พ'), Map.entry(":o:", 'โญ'), Map.entry(":ocean:", '๐'), Map.entry(":octagonal_sign:", '๐'), Map.entry(":octopus:", '๐'), Map.entry(":oden:", '๐ข'), Map.entry(":office:", '๐ข'), Map.entry(":ok:", '๐'), Map.entry(":ok_hand:", '๐'), Map.entry(":ok_woman:", '๐'), Map.entry(":older_adult:", '๐ง'), Map.entry(":older_man:", '๐ด'), Map.entry(":older_woman:", '๐ต'), Map.entry(":olive:", '๐ซ'), Map.entry(":on:", '๐'), Map.entry(":oncoming_automobile:", '๐'), Map.entry(":oncoming_bus:", '๐'), Map.entry(":oncoming_police_car:", '๐'), Map.entry(":oncoming_taxi:", '๐'), Map.entry(":one-piece_swimsuit:", '๐ฉฑ'), Map.entry(":onion:", '๐ง '), Map.entry(":open_file_folder:", '๐'), Map.entry(":open_hands:", '๐'), Map.entry(":open_mouth:", '๐ฎ'), Map.entry(":ophiuchus:", 'โ'), Map.entry(":orange_book:", '๐'), Map.entry(":orange_heart:", '๐งก'), Map.entry(":orangutan:", '๐ฆง'), Map.entry(":otter:", '๐ฆฆ'), Map.entry(":outbox_tray:", '๐ค'), Map.entry(":owl:", '๐ฆ'), Map.entry(":ox:", '๐'), Map.entry(":oyster:", '๐ฆช'), Map.entry(":package:", '๐ฆ'), Map.entry(":page_facing_up:", '๐'), Map.entry(":page_with_curl:", '๐'), Map.entry(":pager:", '๐'), Map.entry(":palm_down_hand:", '๐ซณ'), Map.entry(":palm_tree:", '๐ด'), Map.entry(":palm_up_hand:", '๐ซด'), Map.entry(":palms_up_together:", '๐คฒ'), Map.entry(":pancakes:", '๐ฅ'), Map.entry(":panda_face:", '๐ผ'), Map.entry(":paperclip:", '๐'), Map.entry(":parachute:", '๐ช'), Map.entry(":parking:", '๐ ฟ'), Map.entry(":parrot:", '๐ฆ'), Map.entry(":part_alternation_mark:", 'ใฝ'), Map.entry(":partly_sunny:", 'โ '), Map.entry(":partying_face:", '๐ฅณ'), Map.entry(":passport_control:", '๐'), Map.entry(":pea_pod:", '๐ซ'), Map.entry(":peach:", '๐'), Map.entry(":peacock:", '๐ฆ'), Map.entry(":peanuts:", '๐ฅ'), Map.entry(":pear:", '๐'), Map.entry(":pencil2:", 'โ'), Map.entry(":penguin:", '๐ง'), Map.entry(":pensive:", '๐'), Map.entry(":people_hugging:", '๐ซ'), Map.entry(":performing_arts:", '๐ญ'), Map.entry(":persevere:", '๐ฃ'), Map.entry(":person_climbing:", '๐ง'), Map.entry(":person_doing_cartwheel:", '๐คธ'), Map.entry(":person_frowning:", '๐'), Map.entry(":person_in_lotus_position:", '๐ง'), Map.entry(":person_in_steamy_room:", '๐ง'), Map.entry(":person_in_tuxedo:", '๐คต'), Map.entry(":person_with_blond_hair:", '๐ฑ'), Map.entry(":person_with_crown:", '๐ซ '), Map.entry(":person_with_headscarf:", '๐ง'), Map.entry(":person_with_pouting_face:", '๐'), Map.entry(":petri_dish:", '๐งซ'), Map.entry(":phone:", 'โ'), Map.entry(":pickup_truck:", '๐ป'), Map.entry(":pie:", '๐ฅง'), Map.entry(":pig2:", '๐'), Map.entry(":pig:", '๐ท'), Map.entry(":pig_nose:", '๐ฝ'), Map.entry(":pill:", '๐'), Map.entry(":pinata:", '๐ช '), Map.entry(":pinched_fingers:", '๐ค'), Map.entry(":pinching_hand:", '๐ค'), Map.entry(":pineapple:", '๐'), Map.entry(":pink_heart:", '๐ฉท'), Map.entry(":pisces:", 'โ'), Map.entry(":pizza:", '๐'), Map.entry(":placard:", '๐ชง'), Map.entry(":place_of_worship:", '๐'), Map.entry(":playground_slide:", '๐'), Map.entry(":pleading_face:", '๐ฅบ'), Map.entry(":plunger:", '๐ช '), Map.entry(":point_down:", '๐'), Map.entry(":point_left:", '๐'), Map.entry(":point_right:", '๐'), Map.entry(":point_up:", 'โ'), Map.entry(":point_up_2:", '๐'), Map.entry(":police_car:", '๐'), Map.entry(":poodle:", '๐ฉ'), Map.entry(":popcorn:", '๐ฟ'), Map.entry(":post_office:", '๐ฃ'), Map.entry(":postal_horn:", '๐ฏ'), Map.entry(":postbox:", '๐ฎ'), Map.entry(":potable_water:", '๐ฐ'), Map.entry(":potato:", '๐ฅ'), Map.entry(":potted_plant:", '๐ชด'), Map.entry(":pouch:", '๐'), Map.entry(":poultry_leg:", '๐'), Map.entry(":pound:", '๐ท'), Map.entry(":pouring_liquid:", '๐ซ'), Map.entry(":pouting_cat:", '๐พ'), Map.entry(":pray:", '๐'), Map.entry(":prayer_beads:", '๐ฟ'), Map.entry(":pregnant_man:", '๐ซ'), Map.entry(":pregnant_person:", '๐ซ'), Map.entry(":pregnant_woman:", '๐คฐ'), Map.entry(":pretzel:", '๐ฅจ'), Map.entry(":prince:", '๐คด'), Map.entry(":princess:", '๐ธ'), Map.entry(":probing_cane:", '๐ฆฏ'), Map.entry(":purple_heart:", '๐'), Map.entry(":purse:", '๐'), Map.entry(":pushpin:", '๐'), Map.entry(":put_litter_in_its_place:", '๐ฎ'), Map.entry(":question:", 'โ'), Map.entry(":rabbit2:", '๐'), Map.entry(":rabbit:", '๐ฐ'), Map.entry(":raccoon:", '๐ฆ'), Map.entry(":racehorse:", '๐'), Map.entry(":radio:", '๐ป'), Map.entry(":radio_button:", '๐'), Map.entry(":rage:", '๐ก'), Map.entry(":railway_car:", '๐'), Map.entry(":rainbow:", '๐'), Map.entry(":raised_back_of_hand:", '๐ค'), Map.entry(":raised_hands:", '๐'), Map.entry(":raising_hand:", '๐'), Map.entry(":ram:", '๐'), Map.entry(":ramen:", '๐'), Map.entry(":rat:", '๐'), Map.entry(":razor:", '๐ช'), Map.entry(":receipt:", '๐งพ'), Map.entry(":recycle:", 'โป'), Map.entry(":red_circle:", '๐ด'), Map.entry(":red_envelope:", '๐งง'), Map.entry(":registered:", 'ยฎ'), Map.entry(":relaxed:", 'โบ'), Map.entry(":relieved:", '๐'), Map.entry(":repeat:", '๐'), Map.entry(":repeat_one:", '๐'), Map.entry(":restroom:", '๐ป'), Map.entry(":revolving_hearts:", '๐'), Map.entry(":rewind:", 'โช'), Map.entry(":rhinoceros:", '๐ฆ'), Map.entry(":ribbon:", '๐'), Map.entry(":rice:", '๐'), Map.entry(":rice_ball:", '๐'), Map.entry(":rice_cracker:", '๐'), Map.entry(":rice_scene:", '๐'), Map.entry(":right-facing_fist:", '๐ค'), Map.entry(":rightwards_hand:", '๐ซฑ'), Map.entry(":rightwards_pushing_hand:", '๐ซธ'), Map.entry(":ring:", '๐'), Map.entry(":ring_buoy:", '๐'), Map.entry(":ringed_planet:", '๐ช'), Map.entry(":robot_face:", '๐ค'), Map.entry(":rock:", '๐ชจ'), Map.entry(":rocket:", '๐'), Map.entry(":roll_of_paper:", '๐งป'), Map.entry(":roller_coaster:", '๐ข'), Map.entry(":roller_skate:", '๐ผ'), Map.entry(":rolling_on_the_floor_laughing:", '๐คฃ'), Map.entry(":rooster:", '๐'), Map.entry(":rose:", '๐น'), Map.entry(":rotating_light:", '๐จ'), Map.entry(":round_pushpin:", '๐'), Map.entry(":rowboat:", '๐ฃ'), Map.entry(":rugby_football:", '๐'), Map.entry(":runner:", '๐'), Map.entry(":running_shirt_with_sash:", '๐ฝ'), Map.entry(":sa:", '๐'), Map.entry(":safety_pin:", '๐งท'), Map.entry(":safety_vest:", '๐ฆบ'), Map.entry(":sagittarius:", 'โ'), Map.entry(":sake:", '๐ถ'), Map.entry(":salt:", '๐ง'), Map.entry(":saluting_face:", '๐ซก'), Map.entry(":sandal:", '๐ก'), Map.entry(":sandwich:", '๐ฅช'), Map.entry(":santa:", '๐ '), Map.entry(":sari:", '๐ฅป'), Map.entry(":satellite:", '๐ก'), Map.entry(":satellite_antenna:", '๐ก'), Map.entry(":sauropod:", '๐ฆ'), Map.entry(":saxophone:", '๐ท'), Map.entry(":scarf:", '๐งฃ'), Map.entry(":school:", '๐ซ'), Map.entry(":school_satchel:", '๐'), Map.entry(":scissors:", 'โ'), Map.entry(":scooter:", '๐ด'), Map.entry(":scorpion:", '๐ฆ'), Map.entry(":scorpius:", 'โ'), Map.entry(":scream:", '๐ฑ'), Map.entry(":scream_cat:", '๐'), Map.entry(":screwdriver:", '๐ช'), Map.entry(":scroll:", '๐'), Map.entry(":seal:", '๐ฆญ'), Map.entry(":seat:", '๐บ'), Map.entry(":second_place_medal:", '๐ฅ'), Map.entry(":secret:", 'ใ'), Map.entry(":see_no_evil:", '๐'), Map.entry(":seedling:", '๐ฑ'), Map.entry(":selfie:", '๐คณ'), Map.entry(":sewing_needle:", '๐ชก'), Map.entry(":shaking_face:", '๐ซจ'), Map.entry(":shallow_pan_of_food:", '๐ฅ'), Map.entry(":shark:", '๐ฆ'), Map.entry(":shaved_ice:", '๐ง'), Map.entry(":sheep:", '๐'), Map.entry(":shell:", '๐'), Map.entry(":ship:", '๐ข'), Map.entry(":shirt:", '๐'), Map.entry(":shopping_trolley:", '๐'), Map.entry(":shorts:", '๐ฉณ'), Map.entry(":shower:", '๐ฟ'), Map.entry(":shrimp:", '๐ฆ'), Map.entry(":shrug:", '๐คท'), Map.entry(":shushing_face:", '๐คซ'), Map.entry(":signal_strength:", '๐ถ'), Map.entry(":six_pointed_star:", '๐ฏ'), Map.entry(":skateboard:", '๐น'), Map.entry(":ski:", '๐ฟ'), Map.entry(":skin-tone-2:", '๐ป'), Map.entry(":skin-tone-3:", '๐ผ'), Map.entry(":skin-tone-4:", '๐ฝ'), Map.entry(":skin-tone-5:", '๐พ'), Map.entry(":skin-tone-6:", '๐ฟ'), Map.entry(":skull:", '๐'), Map.entry(":skunk:", '๐ฆจ'), Map.entry(":sled:", '๐ท'), Map.entry(":sleeping:", '๐ด'), Map.entry(":sleeping_accommodation:", '๐'), Map.entry(":sleepy:", '๐ช'), Map.entry(":slightly_frowning_face:", '๐'), Map.entry(":slightly_smiling_face:", '๐'), Map.entry(":slot_machine:", '๐ฐ'), Map.entry(":sloth:", '๐ฆฅ'), Map.entry(":small_blue_diamond:", '๐น'), Map.entry(":small_orange_diamond:", '๐ธ'), Map.entry(":small_red_triangle:", '๐บ'), Map.entry(":small_red_triangle_down:", '๐ป'), Map.entry(":smile:", '๐'), Map.entry(":smile_cat:", '๐ธ'), Map.entry(":smiley:", '๐'), Map.entry(":smiley_cat:", '๐บ'), Map.entry(":smiling_face_with_3_hearts:", '๐ฅฐ'), Map.entry(":smiling_face_with_tear:", '๐ฅฒ'), Map.entry(":smiling_imp:", '๐'), Map.entry(":smirk:", '๐'), Map.entry(":smirk_cat:", '๐ผ'), Map.entry(":smoking:", '๐ฌ'), Map.entry(":snail:", '๐'), Map.entry(":snake:", '๐'), Map.entry(":sneezing_face:", '๐คง'), Map.entry(":snowboarder:", '๐'), Map.entry(":snowflake:", 'โ'), Map.entry(":snowman:", 'โ'), Map.entry(":snowman_without_snow:", 'โ'), Map.entry(":soap:", '๐งผ'), Map.entry(":sob:", '๐ญ'), Map.entry(":soccer:", 'โฝ'), Map.entry(":socks:", '๐งฆ'), Map.entry(":softball:", '๐ฅ'), Map.entry(":soon:", '๐'), Map.entry(":sos:", '๐'), Map.entry(":sound:", '๐'), Map.entry(":space_invader:", '๐พ'), Map.entry(":spades:", 'โ '), Map.entry(":spaghetti:", '๐'), Map.entry(":sparkle:", 'โ'), Map.entry(":sparkler:", '๐'), Map.entry(":sparkles:", 'โจ'), Map.entry(":sparkling_heart:", '๐'), Map.entry(":speak_no_evil:", '๐'), Map.entry(":speaker:", '๐'), Map.entry(":speech_balloon:", '๐ฌ'), Map.entry(":speedboat:", '๐ค'), Map.entry(":spock-hand:", '๐'), Map.entry(":sponge:", '๐งฝ'), Map.entry(":spoon:", '๐ฅ'), Map.entry(":sports_medal:", '๐ '), Map.entry(":squid:", '๐ฆ'), Map.entry(":standing_person:", '๐ง'), Map.entry(":star-struck:", '๐คฉ'), Map.entry(":star2:", '๐'), Map.entry(":star:", 'โญ'), Map.entry(":stars:", '๐ '), Map.entry(":station:", '๐'), Map.entry(":statue_of_liberty:", '๐ฝ'), Map.entry(":steam_locomotive:", '๐'), Map.entry(":stethoscope:", '๐ฉบ'), Map.entry(":stew:", '๐ฒ'), Map.entry(":straight_ruler:", '๐'), Map.entry(":strawberry:", '๐'), Map.entry(":stuck_out_tongue:", '๐'), Map.entry(":stuck_out_tongue_closed_eyes:", '๐'), Map.entry(":stuck_out_tongue_winking_eye:", '๐'), Map.entry(":stuffed_flatbread:", '๐ฅ'), Map.entry(":sun_with_face:", '๐'), Map.entry(":sunflower:", '๐ป'), Map.entry(":sunglasses:", '๐'), Map.entry(":sunny:", 'โ'), Map.entry(":sunrise:", '๐ '), Map.entry(":sunrise_over_mountains:", '๐'), Map.entry(":superhero:", '๐ฆธ'), Map.entry(":supervillain:", '๐ฆน'), Map.entry(":surfer:", '๐'), Map.entry(":sushi:", '๐ฃ'), Map.entry(":suspension_railway:", '๐'), Map.entry(":swan:", '๐ฆข'), Map.entry(":sweat:", '๐'), Map.entry(":sweat_drops:", '๐ฆ'), Map.entry(":sweat_smile:", '๐ '), Map.entry(":sweet_potato:", '๐ '), Map.entry(":swimmer:", '๐'), Map.entry(":symbols:", '๐ฃ'), Map.entry(":synagogue:", '๐'), Map.entry(":syringe:", '๐'), Map.entry(":t-rex:", '๐ฆ'), Map.entry(":table_tennis_paddle_and_ball:", '๐'), Map.entry(":taco:", '๐ฎ'), Map.entry(":tada:", '๐'), Map.entry(":takeout_box:", '๐ฅก'), Map.entry(":tamale:", '๐ซ'), Map.entry(":tanabata_tree:", '๐'), Map.entry(":tangerine:", '๐'), Map.entry(":taurus:", 'โ'), Map.entry(":taxi:", '๐'), Map.entry(":tea:", '๐ต'), Map.entry(":teapot:", '๐ซ'), Map.entry(":teddy_bear:", '๐งธ'), Map.entry(":telephone_receiver:", '๐'), Map.entry(":telescope:", '๐ญ'), Map.entry(":tennis:", '๐พ'), Map.entry(":tent:", 'โบ'), Map.entry(":test_tube:", '๐งช'), Map.entry(":the_horns:", '๐ค'), Map.entry(":thinking_face:", '๐ค'), Map.entry(":third_place_medal:", '๐ฅ'), Map.entry(":thong_sandal:", '๐ฉด'), Map.entry(":thought_balloon:", '๐ญ'), Map.entry(":thread:", '๐งต'), Map.entry(":ticket:", '๐ซ'), Map.entry(":tiger2:", '๐ '), Map.entry(":tiger:", '๐ฏ'), Map.entry(":tired_face:", '๐ซ'), Map.entry(":tm:", 'โข'), Map.entry(":toilet:", '๐ฝ'), Map.entry(":tokyo_tower:", '๐ผ'), Map.entry(":tomato:", '๐ '), Map.entry(":tongue:", '๐ '), Map.entry(":toolbox:", '๐งฐ'), Map.entry(":tooth:", '๐ฆท'), Map.entry(":toothbrush:", '๐ชฅ'), Map.entry(":top:", '๐'), Map.entry(":tophat:", '๐ฉ'), Map.entry(":tractor:", '๐'), Map.entry(":traffic_light:", '๐ฅ'), Map.entry(":train2:", '๐'), Map.entry(":train:", '๐'), Map.entry(":tram:", '๐'), Map.entry(":triangular_flag_on_post:", '๐ฉ'), Map.entry(":triangular_ruler:", '๐'), Map.entry(":trident:", '๐ฑ'), Map.entry(":triumph:", '๐ค'), Map.entry(":troll:", '๐ง'), Map.entry(":trolleybus:", '๐'), Map.entry(":trophy:", '๐'), Map.entry(":tropical_drink:", '๐น'), Map.entry(":tropical_fish:", '๐ '), Map.entry(":truck:", '๐'), Map.entry(":trumpet:", '๐บ'), Map.entry(":tulip:", '๐ท'), Map.entry(":tumbler_glass:", '๐ฅ'), Map.entry(":turkey:", '๐ฆ'), Map.entry(":turtle:", '๐ข'), Map.entry(":tv:", '๐บ'), Map.entry(":twisted_rightwards_arrows:", '๐'), Map.entry(":two_hearts:", '๐'), Map.entry(":two_men_holding_hands:", '๐ฌ'), Map.entry(":two_women_holding_hands:", '๐ญ'), Map.entry(":u5272:", '๐น'), Map.entry(":u5408:", '๐ด'), Map.entry(":u55b6:", '๐บ'), Map.entry(":u6307:", '๐ฏ'), Map.entry(":u6708:", '๐ท'), Map.entry(":u6709:", '๐ถ'), Map.entry(":u6e80:", '๐ต'), Map.entry(":u7121:", '๐'), Map.entry(":u7533:", '๐ธ'), Map.entry(":u7981:", '๐ฒ'), Map.entry(":u7a7a:", '๐ณ'), Map.entry(":umbrella:", 'โ'), Map.entry(":umbrella_with_rain_drops:", 'โ'), Map.entry(":unamused:", '๐'), Map.entry(":underage:", '๐'), Map.entry(":unicorn_face:", '๐ฆ'), Map.entry(":unlock:", '๐'), Map.entry(":up:", '๐'), Map.entry(":upside_down_face:", '๐'), Map.entry(":v:", 'โ'), Map.entry(":vampire:", '๐ง'), Map.entry(":vertical_traffic_light:", '๐ฆ'), Map.entry(":vhs:", '๐ผ'), Map.entry(":vibration_mode:", '๐ณ'), Map.entry(":video_camera:", '๐น'), Map.entry(":video_game:", '๐ฎ'), Map.entry(":violin:", '๐ป'), Map.entry(":virgo:", 'โ'), Map.entry(":volcano:", '๐'), Map.entry(":volleyball:", '๐'), Map.entry(":vs:", '๐'), Map.entry(":waffle:", '๐ง'), Map.entry(":walking:", '๐ถ'), Map.entry(":waning_crescent_moon:", '๐'), Map.entry(":waning_gibbous_moon:", '๐'), Map.entry(":warning:", 'โ '), Map.entry(":watch:", 'โ'), Map.entry(":water_buffalo:", '๐'), Map.entry(":water_polo:", '๐คฝ'), Map.entry(":watermelon:", '๐'), Map.entry(":wave:", '๐'), Map.entry(":waving_black_flag:", '๐ด'), Map.entry(":wavy_dash:", 'ใฐ'), Map.entry(":waxing_crescent_moon:", '๐'), Map.entry(":wc:", '๐พ'), Map.entry(":weary:", '๐ฉ'), Map.entry(":wedding:", '๐'), Map.entry(":whale2:", '๐'), Map.entry(":whale:", '๐ณ'), Map.entry(":wheel:", '๐'), Map.entry(":wheelchair:", 'โฟ'), Map.entry(":white_check_mark:", 'โ '), Map.entry(":white_circle:", 'โช'), Map.entry(":white_flower:", '๐ฎ'), Map.entry(":white_heart:", '๐ค'), Map.entry(":white_large_square:", 'โฌ'), Map.entry(":white_medium_small_square:", 'โฝ'), Map.entry(":white_medium_square:", 'โป'), Map.entry(":white_small_square:", 'โซ'), Map.entry(":white_square_button:", '๐ณ'), Map.entry(":wilted_flower:", '๐ฅ'), Map.entry(":wind_chime:", '๐'), Map.entry(":window:", '๐ช'), Map.entry(":wine_glass:", '๐ท'), Map.entry(":wing:", '๐ชฝ'), Map.entry(":wink:", '๐'), Map.entry(":wireless:", '๐'), Map.entry(":wolf:", '๐บ'), Map.entry(":woman:", '๐ฉ'), Map.entry(":womans_clothes:", '๐'), Map.entry(":womans_flat_shoe:", '๐ฅฟ'), Map.entry(":womans_hat:", '๐'), Map.entry(":womens:", '๐บ'), Map.entry(":wood:", '๐ชต'), Map.entry(":woozy_face:", '๐ฅด'), Map.entry(":worm:", '๐ชฑ'), Map.entry(":worried:", '๐'), Map.entry(":wrench:", '๐ง'), Map.entry(":wrestlers:", '๐คผ'), Map.entry(":x-ray:", '๐ฉป'), Map.entry(":x:", 'โ'), Map.entry(":yarn:", '๐งถ'), Map.entry(":yawning_face:", '๐ฅฑ'), Map.entry(":yellow_heart:", '๐'), Map.entry(":yen:", '๐ด'), Map.entry(":yo-yo:", '๐ช'), Map.entry(":yum:", '๐'), Map.entry(":zany_face:", '๐คช'), Map.entry(":zap:", 'โก'), Map.entry(":zebra_face:", '๐ฆ'), Map.entry(":zipper_mouth_face:", '๐ค'), Map.entry(":zombie:", '๐ง'), Map.entry(":zzz:", '๐ค') ); } } public class a{ public static void main(String[] a) { System.out.println(EmojiDictionary.INSTANCE.mEmojis); System.out.println(EmojiDictionary.INSTANCE.mEmojis.getClass()); System.out.println(EmojiDictionary.INSTANCE.mEmojis.contains(":zzz:")); } }
signature.asc
Description: PGP signature