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:"));
  }
}

Attachment: signature.asc
Description: PGP signature

Reply via email to