@hyperbook/markdown 0.33.1 → 0.33.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -64051,8 +64051,6 @@ var remarkDirectiveAlert_default = (ctx) => () => {
64051
64051
  const content5 = node3.attributes?.label;
64052
64052
  const type = Object.keys(node3.attributes || {}).join(" ").trim();
64053
64053
  const icon = content5 || type;
64054
- delete node3.attributes?.color;
64055
- delete node3.attributes?.label;
64056
64054
  data.hName = "div";
64057
64055
  data.hProperties = {
64058
64056
  class: `directive-alert ${type} ${icon ? "icon" : ""}`.trim(),
@@ -70907,6 +70905,9 @@ function node2(value) {
70907
70905
  }
70908
70906
 
70909
70907
  // src/rehypeDirectiveP5.ts
70908
+ function htmlEntities(str) {
70909
+ return String(str).replace(/&/g, "&amp;").replace(/</g, "&lt;").replace(/>/g, "&gt;").replace(/"/g, "&quot;");
70910
+ }
70910
70911
  var rehypeDirectiveP5_default = (ctx) => () => {
70911
70912
  const name = "p5";
70912
70913
  const cdnLibraryUrl = ctx.makeUrl(
@@ -71049,7 +71050,7 @@ ${(code4.scripts ? [cdnLibraryUrl, ...code4.scripts] : []).map((src) => `<script
71049
71050
  children: [
71050
71051
  {
71051
71052
  type: "raw",
71052
- value: srcFile
71053
+ value: htmlEntities(srcFile)
71053
71054
  }
71054
71055
  ]
71055
71056
  },
@@ -71338,6 +71339,9 @@ var remarkDirectiveAbcMusic_default = (ctx) => () => {
71338
71339
  // src/remarkDirectivePyide.ts
71339
71340
  import fs3 from "fs";
71340
71341
  import path5 from "path";
71342
+ function htmlEntities2(str) {
71343
+ return String(str).replace(/&/g, "&amp;").replace(/</g, "&lt;").replace(/>/g, "&gt;").replace(/"/g, "&quot;");
71344
+ }
71341
71345
  var remarkDirectivePyide_default = (ctx) => () => {
71342
71346
  const name = "pyide";
71343
71347
  return (tree, file) => {
@@ -71503,7 +71507,7 @@ var remarkDirectivePyide_default = (ctx) => () => {
71503
71507
  children: [
71504
71508
  {
71505
71509
  type: "raw",
71506
- value: srcFile
71510
+ value: htmlEntities2(srcFile)
71507
71511
  }
71508
71512
  ]
71509
71513
  },
@@ -71564,6 +71568,9 @@ var remarkDirectivePyide_default = (ctx) => () => {
71564
71568
  };
71565
71569
 
71566
71570
  // src/remarkDirectiveWebide.ts
71571
+ function htmlEntities3(str) {
71572
+ return String(str).replace(/&/g, "&amp;").replace(/</g, "&lt;").replace(/>/g, "&gt;").replace(/"/g, "&quot;");
71573
+ }
71567
71574
  var remarkDirectiveWebide_default = (ctx) => () => {
71568
71575
  const name = "webide";
71569
71576
  const makeWrapInMarkupTemplate = () => `<!DOCTYPE html>
@@ -71612,7 +71619,6 @@ html, body {
71612
71619
  const buttons = [];
71613
71620
  const editors = [];
71614
71621
  if (htmlNode) {
71615
- html13 = htmlNode.value;
71616
71622
  buttons.push({
71617
71623
  type: "element",
71618
71624
  tagName: "button",
@@ -71637,7 +71643,7 @@ html, body {
71637
71643
  children: [
71638
71644
  {
71639
71645
  type: "raw",
71640
- value: html13
71646
+ value: htmlEntities3(htmlNode.value)
71641
71647
  }
71642
71648
  ]
71643
71649
  });
@@ -71668,7 +71674,7 @@ html, body {
71668
71674
  children: [
71669
71675
  {
71670
71676
  type: "raw",
71671
- value: css
71677
+ value: htmlEntities3(css)
71672
71678
  }
71673
71679
  ]
71674
71680
  });
@@ -71699,7 +71705,7 @@ html, body {
71699
71705
  children: [
71700
71706
  {
71701
71707
  type: "raw",
71702
- value: js
71708
+ value: htmlEntities3(js)
71703
71709
  }
71704
71710
  ]
71705
71711
  });
@@ -71964,146 +71970,2060 @@ var remarkDirectiveUnpack_default = (ctx) => () => {
71964
71970
  };
71965
71971
  };
71966
71972
 
71967
- // src/rehypePrettyCodeCopyButton.ts
71968
- var whitespaceRegEx = /\s*\n\s*/g;
71969
- var trimWhitespace = (input) => input.replaceAll(whitespaceRegEx, "").trim();
71970
- function makeTransformerCopyButton(ctx) {
71971
- return function transformerCopyButton(options = {
71972
- visibility: "hover",
71973
- feedbackDuration: 3e3
71974
- }) {
71975
- return {
71976
- name: "@rehype-pretty/transformers/copy-button",
71977
- code(node3) {
71978
- node3.children.push({
71979
- type: "element",
71980
- tagName: "button",
71981
- properties: {
71982
- type: "button",
71983
- data: this.source,
71984
- title: "Copy code",
71985
- "aria-label": "Copy code",
71986
- class: "rehype-pretty-copy",
71987
- "data-name": "rehype-pretty-copy-button",
71988
- onclick: trimWhitespace(
71989
- /* javascript */
71990
- `
71991
- navigator.clipboard.writeText(this.attributes.data.value);
71992
- this.classList.add('rehype-pretty-copied');
71993
- window.setTimeout(() => this.classList.remove('rehype-pretty-copied'), ${options.feedbackDuration});
71994
- `
71995
- )
71996
- },
71997
- children: [
71998
- {
71999
- type: "element",
72000
- tagName: "span",
72001
- properties: { class: "ready" },
72002
- children: []
72003
- },
72004
- {
72005
- type: "element",
72006
- tagName: "span",
72007
- properties: { class: "success" },
72008
- children: []
72009
- }
72010
- ]
72011
- });
72012
- node3.children.push({
72013
- type: "element",
72014
- tagName: "style",
72015
- properties: {},
72016
- children: [
72017
- {
72018
- type: "text",
72019
- value: copyButtonStyle({
72020
- copyIcon: options.copyIcon,
72021
- successIcon: options.successIcon,
72022
- visibility: options.visibility
72023
- })
72024
- }
72025
- ]
72026
- });
72027
- }
72028
- };
72029
- };
72030
- function copyButtonStyle({
72031
- copyIcon = "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%23adadad' d='M16.187 9.5H12.25a1.75 1.75 0 0 0-1.75 1.75v28.5c0 .967.784 1.75 1.75 1.75h23.5a1.75 1.75 0 0 0 1.75-1.75v-28.5a1.75 1.75 0 0 0-1.75-1.75h-3.937a4.25 4.25 0 0 1-4.063 3h-7.5a4.25 4.25 0 0 1-4.063-3M31.813 7h3.937A4.25 4.25 0 0 1 40 11.25v28.5A4.25 4.25 0 0 1 35.75 44h-23.5A4.25 4.25 0 0 1 8 39.75v-28.5A4.25 4.25 0 0 1 12.25 7h3.937a4.25 4.25 0 0 1 4.063-3h7.5a4.25 4.25 0 0 1 4.063 3M18.5 8.25c0 .966.784 1.75 1.75 1.75h7.5a1.75 1.75 0 1 0 0-3.5h-7.5a1.75 1.75 0 0 0-1.75 1.75'/%3E%3C/svg%3E",
72032
- successIcon = "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2366ff85' d='M9 16.17L5.53 12.7a.996.996 0 1 0-1.41 1.41l4.18 4.18c.39.39 1.02.39 1.41 0L20.29 7.71a.996.996 0 1 0-1.41-1.41z'/%3E%3C/svg%3E",
72033
- visibility = "hover"
72034
- } = {}) {
72035
- let copyButtonStyle2 = (
72036
- /* css */
72037
- `
72038
- :root {
72039
- --copy-icon: url("${copyIcon}");
72040
- --success-icon: url("${successIcon}");
72041
- }
72042
-
72043
- pre:has(code) {
72044
- position: relative;
72045
- }
72046
-
72047
- button[data='<span>'] {
72048
- width: 0;
72049
- height: 0;
72050
- display: none;
72051
- visibility: hidden;
72052
- }
72053
-
72054
- pre button.rehype-pretty-copy {
72055
- right: 1px;
72056
- padding: 0;
72057
- width: 24px;
72058
- height: 24px;
72059
- display: flex;
72060
- margin-top: 2px;
72061
- margin-right: 8px;
72062
- position: absolute;
72063
- border-radius: 25%;
72064
- & span {
72065
- width: 100%;
72066
- aspect-ratio: 1 / 1;
72067
- }
72068
- & .ready {
72069
- background-image: var(--copy-icon);
72070
- }
72071
- & .success {
72072
- display: none; background-image: var(--success-icon);
72073
- }
72074
- }
72075
-
72076
- &.rehype-pretty-copied {
72077
- & .success {
72078
- display: block;
72079
- } & .ready {
72080
- display: none;
72081
- }
72082
- }
72083
-
72084
- pre button.rehype-pretty-copy.rehype-pretty-copied {
72085
- opacity: 1;
72086
- & .ready { display: none; }
72087
- & .success { display: block; }
72088
- }
72089
- `
72090
- );
72091
- if (visibility === "hover") {
72092
- copyButtonStyle2 += /* css */
72093
- `
72094
- pre button.rehype-pretty-copy { opacity: 0; }
72095
- figure[data-rehype-pretty-code-figure]:hover > pre > code button.rehype-pretty-copy {
72096
- opacity: 1;
72097
- }
72098
- `;
72099
- }
72100
- return trimWhitespace(copyButtonStyle2);
72101
- }
72102
- }
72103
-
72104
- // src/github-emojis.json
72105
- var github_emojis_default = {};
72106
-
71973
+ // src/rehypePrettyCodeCopyButton.ts
71974
+ var whitespaceRegEx = /\s*\n\s*/g;
71975
+ var trimWhitespace = (input) => input.replaceAll(whitespaceRegEx, "").trim();
71976
+ function makeTransformerCopyButton(ctx) {
71977
+ return function transformerCopyButton(options = {
71978
+ visibility: "hover",
71979
+ feedbackDuration: 3e3
71980
+ }) {
71981
+ return {
71982
+ name: "@rehype-pretty/transformers/copy-button",
71983
+ code(node3) {
71984
+ node3.children.push({
71985
+ type: "element",
71986
+ tagName: "button",
71987
+ properties: {
71988
+ type: "button",
71989
+ data: this.source,
71990
+ title: "Copy code",
71991
+ "aria-label": "Copy code",
71992
+ class: "rehype-pretty-copy",
71993
+ "data-name": "rehype-pretty-copy-button",
71994
+ onclick: trimWhitespace(
71995
+ /* javascript */
71996
+ `
71997
+ navigator.clipboard.writeText(this.attributes.data.value);
71998
+ this.classList.add('rehype-pretty-copied');
71999
+ window.setTimeout(() => this.classList.remove('rehype-pretty-copied'), ${options.feedbackDuration});
72000
+ `
72001
+ )
72002
+ },
72003
+ children: [
72004
+ {
72005
+ type: "element",
72006
+ tagName: "span",
72007
+ properties: { class: "ready" },
72008
+ children: []
72009
+ },
72010
+ {
72011
+ type: "element",
72012
+ tagName: "span",
72013
+ properties: { class: "success" },
72014
+ children: []
72015
+ }
72016
+ ]
72017
+ });
72018
+ node3.children.push({
72019
+ type: "element",
72020
+ tagName: "style",
72021
+ properties: {},
72022
+ children: [
72023
+ {
72024
+ type: "text",
72025
+ value: copyButtonStyle({
72026
+ copyIcon: options.copyIcon,
72027
+ successIcon: options.successIcon,
72028
+ visibility: options.visibility
72029
+ })
72030
+ }
72031
+ ]
72032
+ });
72033
+ }
72034
+ };
72035
+ };
72036
+ function copyButtonStyle({
72037
+ copyIcon = "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%23adadad' d='M16.187 9.5H12.25a1.75 1.75 0 0 0-1.75 1.75v28.5c0 .967.784 1.75 1.75 1.75h23.5a1.75 1.75 0 0 0 1.75-1.75v-28.5a1.75 1.75 0 0 0-1.75-1.75h-3.937a4.25 4.25 0 0 1-4.063 3h-7.5a4.25 4.25 0 0 1-4.063-3M31.813 7h3.937A4.25 4.25 0 0 1 40 11.25v28.5A4.25 4.25 0 0 1 35.75 44h-23.5A4.25 4.25 0 0 1 8 39.75v-28.5A4.25 4.25 0 0 1 12.25 7h3.937a4.25 4.25 0 0 1 4.063-3h7.5a4.25 4.25 0 0 1 4.063 3M18.5 8.25c0 .966.784 1.75 1.75 1.75h7.5a1.75 1.75 0 1 0 0-3.5h-7.5a1.75 1.75 0 0 0-1.75 1.75'/%3E%3C/svg%3E",
72038
+ successIcon = "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2366ff85' d='M9 16.17L5.53 12.7a.996.996 0 1 0-1.41 1.41l4.18 4.18c.39.39 1.02.39 1.41 0L20.29 7.71a.996.996 0 1 0-1.41-1.41z'/%3E%3C/svg%3E",
72039
+ visibility = "hover"
72040
+ } = {}) {
72041
+ let copyButtonStyle2 = (
72042
+ /* css */
72043
+ `
72044
+ :root {
72045
+ --copy-icon: url("${copyIcon}");
72046
+ --success-icon: url("${successIcon}");
72047
+ }
72048
+
72049
+ pre:has(code) {
72050
+ position: relative;
72051
+ }
72052
+
72053
+ button[data='<span>'] {
72054
+ width: 0;
72055
+ height: 0;
72056
+ display: none;
72057
+ visibility: hidden;
72058
+ }
72059
+
72060
+ pre button.rehype-pretty-copy {
72061
+ right: 1px;
72062
+ padding: 0;
72063
+ width: 24px;
72064
+ height: 24px;
72065
+ display: flex;
72066
+ margin-top: 2px;
72067
+ margin-right: 8px;
72068
+ position: absolute;
72069
+ border-radius: 25%;
72070
+ & span {
72071
+ width: 100%;
72072
+ aspect-ratio: 1 / 1;
72073
+ }
72074
+ & .ready {
72075
+ background-image: var(--copy-icon);
72076
+ }
72077
+ & .success {
72078
+ display: none; background-image: var(--success-icon);
72079
+ }
72080
+ }
72081
+
72082
+ &.rehype-pretty-copied {
72083
+ & .success {
72084
+ display: block;
72085
+ } & .ready {
72086
+ display: none;
72087
+ }
72088
+ }
72089
+
72090
+ pre button.rehype-pretty-copy.rehype-pretty-copied {
72091
+ opacity: 1;
72092
+ & .ready { display: none; }
72093
+ & .success { display: block; }
72094
+ }
72095
+ `
72096
+ );
72097
+ if (visibility === "hover") {
72098
+ copyButtonStyle2 += /* css */
72099
+ `
72100
+ pre button.rehype-pretty-copy { opacity: 0; }
72101
+ figure[data-rehype-pretty-code-figure]:hover > pre > code button.rehype-pretty-copy {
72102
+ opacity: 1;
72103
+ }
72104
+ `;
72105
+ }
72106
+ return trimWhitespace(copyButtonStyle2);
72107
+ }
72108
+ }
72109
+
72110
+ // src/github-emojis.json
72111
+ var github_emojis_default = {
72112
+ "100": "\u{1F4AF}",
72113
+ "1234": "\u{1F522}",
72114
+ "+1": "\u{1F44D}",
72115
+ "-1": "\u{1F44E}",
72116
+ "1st_place_medal": "\u{1F947}",
72117
+ "2nd_place_medal": "\u{1F948}",
72118
+ "3rd_place_medal": "\u{1F949}",
72119
+ "8ball": "\u{1F3B1}",
72120
+ a: "\u{1F170}",
72121
+ ab: "\u{1F18E}",
72122
+ abacus: "\u{1F9EE}",
72123
+ abc: "\u{1F524}",
72124
+ abcd: "\u{1F521}",
72125
+ accept: "\u{1F251}",
72126
+ accordion: "\u{1FA97}",
72127
+ adhesive_bandage: "\u{1FA79}",
72128
+ adult: "\u{1F9D1}",
72129
+ aerial_tramway: "\u{1F6A1}",
72130
+ afghanistan: "\u{1F1E6}\u200D\u{1F1EB}",
72131
+ airplane: "\u2708",
72132
+ aland_islands: "\u{1F1E6}\u200D\u{1F1FD}",
72133
+ alarm_clock: "\u23F0",
72134
+ albania: "\u{1F1E6}\u200D\u{1F1F1}",
72135
+ alembic: "\u2697",
72136
+ algeria: "\u{1F1E9}\u200D\u{1F1FF}",
72137
+ alien: "\u{1F47D}",
72138
+ ambulance: "\u{1F691}",
72139
+ american_samoa: "\u{1F1E6}\u200D\u{1F1F8}",
72140
+ amphora: "\u{1F3FA}",
72141
+ anatomical_heart: "\u{1FAC0}",
72142
+ anchor: "\u2693",
72143
+ andorra: "\u{1F1E6}\u200D\u{1F1E9}",
72144
+ angel: "\u{1F47C}",
72145
+ anger: "\u{1F4A2}",
72146
+ angola: "\u{1F1E6}\u200D\u{1F1F4}",
72147
+ angry: "\u{1F620}",
72148
+ anguilla: "\u{1F1E6}\u200D\u{1F1EE}",
72149
+ anguished: "\u{1F627}",
72150
+ ant: "\u{1F41C}",
72151
+ antarctica: "\u{1F1E6}\u200D\u{1F1F6}",
72152
+ antigua_barbuda: "\u{1F1E6}\u200D\u{1F1EC}",
72153
+ apple: "\u{1F34E}",
72154
+ aquarius: "\u2652",
72155
+ argentina: "\u{1F1E6}\u200D\u{1F1F7}",
72156
+ aries: "\u2648",
72157
+ armenia: "\u{1F1E6}\u200D\u{1F1F2}",
72158
+ arrow_backward: "\u25C0",
72159
+ arrow_double_down: "\u23EC",
72160
+ arrow_double_up: "\u23EB",
72161
+ arrow_down: "\u2B07",
72162
+ arrow_down_small: "\u{1F53D}",
72163
+ arrow_forward: "\u25B6",
72164
+ arrow_heading_down: "\u2935",
72165
+ arrow_heading_up: "\u2934",
72166
+ arrow_left: "\u2B05",
72167
+ arrow_lower_left: "\u2199",
72168
+ arrow_lower_right: "\u2198",
72169
+ arrow_right: "\u27A1",
72170
+ arrow_right_hook: "\u21AA",
72171
+ arrow_up: "\u2B06",
72172
+ arrow_up_down: "\u2195",
72173
+ arrow_up_small: "\u{1F53C}",
72174
+ arrow_upper_left: "\u2196",
72175
+ arrow_upper_right: "\u2197",
72176
+ arrows_clockwise: "\u{1F503}",
72177
+ arrows_counterclockwise: "\u{1F504}",
72178
+ art: "\u{1F3A8}",
72179
+ articulated_lorry: "\u{1F69B}",
72180
+ artificial_satellite: "\u{1F6F0}",
72181
+ artist: "\u{1F9D1}\u200D\u{1F3A8}",
72182
+ aruba: "\u{1F1E6}\u200D\u{1F1FC}",
72183
+ ascension_island: "\u{1F1E6}\u200D\u{1F1E8}",
72184
+ asterisk: "*\u200D\u20E3",
72185
+ astonished: "\u{1F632}",
72186
+ astronaut: "\u{1F9D1}\u200D\u{1F680}",
72187
+ athletic_shoe: "\u{1F45F}",
72188
+ atm: "\u{1F3E7}",
72189
+ atom_symbol: "\u269B",
72190
+ australia: "\u{1F1E6}\u200D\u{1F1FA}",
72191
+ austria: "\u{1F1E6}\u200D\u{1F1F9}",
72192
+ auto_rickshaw: "\u{1F6FA}",
72193
+ avocado: "\u{1F951}",
72194
+ axe: "\u{1FA93}",
72195
+ azerbaijan: "\u{1F1E6}\u200D\u{1F1FF}",
72196
+ b: "\u{1F171}",
72197
+ baby: "\u{1F476}",
72198
+ baby_bottle: "\u{1F37C}",
72199
+ baby_chick: "\u{1F424}",
72200
+ baby_symbol: "\u{1F6BC}",
72201
+ back: "\u{1F519}",
72202
+ bacon: "\u{1F953}",
72203
+ badger: "\u{1F9A1}",
72204
+ badminton: "\u{1F3F8}",
72205
+ bagel: "\u{1F96F}",
72206
+ baggage_claim: "\u{1F6C4}",
72207
+ baguette_bread: "\u{1F956}",
72208
+ bahamas: "\u{1F1E7}\u200D\u{1F1F8}",
72209
+ bahrain: "\u{1F1E7}\u200D\u{1F1ED}",
72210
+ balance_scale: "\u2696",
72211
+ bald_man: "\u{1F468}\u200D\u{1F9B2}",
72212
+ bald_woman: "\u{1F469}\u200D\u{1F9B2}",
72213
+ ballet_shoes: "\u{1FA70}",
72214
+ balloon: "\u{1F388}",
72215
+ ballot_box: "\u{1F5F3}",
72216
+ ballot_box_with_check: "\u2611",
72217
+ bamboo: "\u{1F38D}",
72218
+ banana: "\u{1F34C}",
72219
+ bangbang: "\u203C",
72220
+ bangladesh: "\u{1F1E7}\u200D\u{1F1E9}",
72221
+ banjo: "\u{1FA95}",
72222
+ bank: "\u{1F3E6}",
72223
+ bar_chart: "\u{1F4CA}",
72224
+ barbados: "\u{1F1E7}\u200D\u{1F1E7}",
72225
+ barber: "\u{1F488}",
72226
+ baseball: "\u26BE",
72227
+ basket: "\u{1F9FA}",
72228
+ basketball: "\u{1F3C0}",
72229
+ basketball_man: "\u26F9\u200D\u2642",
72230
+ basketball_woman: "\u26F9\u200D\u2640",
72231
+ bat: "\u{1F987}",
72232
+ bath: "\u{1F6C0}",
72233
+ bathtub: "\u{1F6C1}",
72234
+ battery: "\u{1F50B}",
72235
+ beach_umbrella: "\u{1F3D6}",
72236
+ beans: "\u{1FAD8}",
72237
+ bear: "\u{1F43B}",
72238
+ bearded_person: "\u{1F9D4}",
72239
+ beaver: "\u{1F9AB}",
72240
+ bed: "\u{1F6CF}",
72241
+ bee: "\u{1F41D}",
72242
+ beer: "\u{1F37A}",
72243
+ beers: "\u{1F37B}",
72244
+ beetle: "\u{1FAB2}",
72245
+ beginner: "\u{1F530}",
72246
+ belarus: "\u{1F1E7}\u200D\u{1F1FE}",
72247
+ belgium: "\u{1F1E7}\u200D\u{1F1EA}",
72248
+ belize: "\u{1F1E7}\u200D\u{1F1FF}",
72249
+ bell: "\u{1F514}",
72250
+ bell_pepper: "\u{1FAD1}",
72251
+ bellhop_bell: "\u{1F6CE}",
72252
+ benin: "\u{1F1E7}\u200D\u{1F1EF}",
72253
+ bento: "\u{1F371}",
72254
+ bermuda: "\u{1F1E7}\u200D\u{1F1F2}",
72255
+ beverage_box: "\u{1F9C3}",
72256
+ bhutan: "\u{1F1E7}\u200D\u{1F1F9}",
72257
+ bicyclist: "\u{1F6B4}",
72258
+ bike: "\u{1F6B2}",
72259
+ biking_man: "\u{1F6B4}\u200D\u2642",
72260
+ biking_woman: "\u{1F6B4}\u200D\u2640",
72261
+ bikini: "\u{1F459}",
72262
+ billed_cap: "\u{1F9E2}",
72263
+ biohazard: "\u2623",
72264
+ bird: "\u{1F426}",
72265
+ birthday: "\u{1F382}",
72266
+ bison: "\u{1F9AC}",
72267
+ biting_lip: "\u{1FAE6}",
72268
+ black_bird: "\u{1F426}\u200D\u2B1B",
72269
+ black_cat: "\u{1F408}\u200D\u2B1B",
72270
+ black_circle: "\u26AB",
72271
+ black_flag: "\u{1F3F4}",
72272
+ black_heart: "\u{1F5A4}",
72273
+ black_joker: "\u{1F0CF}",
72274
+ black_large_square: "\u2B1B",
72275
+ black_medium_small_square: "\u25FE",
72276
+ black_medium_square: "\u25FC",
72277
+ black_nib: "\u2712",
72278
+ black_small_square: "\u25AA",
72279
+ black_square_button: "\u{1F532}",
72280
+ blond_haired_man: "\u{1F471}\u200D\u2642",
72281
+ blond_haired_person: "\u{1F471}",
72282
+ blond_haired_woman: "\u{1F471}\u200D\u2640",
72283
+ blonde_woman: "\u{1F471}\u200D\u2640",
72284
+ blossom: "\u{1F33C}",
72285
+ blowfish: "\u{1F421}",
72286
+ blue_book: "\u{1F4D8}",
72287
+ blue_car: "\u{1F699}",
72288
+ blue_heart: "\u{1F499}",
72289
+ blue_square: "\u{1F7E6}",
72290
+ blueberries: "\u{1FAD0}",
72291
+ blush: "\u{1F60A}",
72292
+ boar: "\u{1F417}",
72293
+ boat: "\u26F5",
72294
+ bolivia: "\u{1F1E7}\u200D\u{1F1F4}",
72295
+ bomb: "\u{1F4A3}",
72296
+ bone: "\u{1F9B4}",
72297
+ book: "\u{1F4D6}",
72298
+ bookmark: "\u{1F516}",
72299
+ bookmark_tabs: "\u{1F4D1}",
72300
+ books: "\u{1F4DA}",
72301
+ boom: "\u{1F4A5}",
72302
+ boomerang: "\u{1FA83}",
72303
+ boot: "\u{1F462}",
72304
+ bosnia_herzegovina: "\u{1F1E7}\u200D\u{1F1E6}",
72305
+ botswana: "\u{1F1E7}\u200D\u{1F1FC}",
72306
+ bouncing_ball_man: "\u26F9\u200D\u2642",
72307
+ bouncing_ball_person: "\u26F9",
72308
+ bouncing_ball_woman: "\u26F9\u200D\u2640",
72309
+ bouquet: "\u{1F490}",
72310
+ bouvet_island: "\u{1F1E7}\u200D\u{1F1FB}",
72311
+ bow: "\u{1F647}",
72312
+ bow_and_arrow: "\u{1F3F9}",
72313
+ bowing_man: "\u{1F647}\u200D\u2642",
72314
+ bowing_woman: "\u{1F647}\u200D\u2640",
72315
+ bowl_with_spoon: "\u{1F963}",
72316
+ bowling: "\u{1F3B3}",
72317
+ boxing_glove: "\u{1F94A}",
72318
+ boy: "\u{1F466}",
72319
+ brain: "\u{1F9E0}",
72320
+ brazil: "\u{1F1E7}\u200D\u{1F1F7}",
72321
+ bread: "\u{1F35E}",
72322
+ breast_feeding: "\u{1F931}",
72323
+ bricks: "\u{1F9F1}",
72324
+ bride_with_veil: "\u{1F470}\u200D\u2640",
72325
+ bridge_at_night: "\u{1F309}",
72326
+ briefcase: "\u{1F4BC}",
72327
+ british_indian_ocean_territory: "\u{1F1EE}\u200D\u{1F1F4}",
72328
+ british_virgin_islands: "\u{1F1FB}\u200D\u{1F1EC}",
72329
+ broccoli: "\u{1F966}",
72330
+ broken_heart: "\u{1F494}",
72331
+ broom: "\u{1F9F9}",
72332
+ brown_circle: "\u{1F7E4}",
72333
+ brown_heart: "\u{1F90E}",
72334
+ brown_square: "\u{1F7EB}",
72335
+ brunei: "\u{1F1E7}\u200D\u{1F1F3}",
72336
+ bubble_tea: "\u{1F9CB}",
72337
+ bubbles: "\u{1FAE7}",
72338
+ bucket: "\u{1FAA3}",
72339
+ bug: "\u{1F41B}",
72340
+ building_construction: "\u{1F3D7}",
72341
+ bulb: "\u{1F4A1}",
72342
+ bulgaria: "\u{1F1E7}\u200D\u{1F1EC}",
72343
+ bullettrain_front: "\u{1F685}",
72344
+ bullettrain_side: "\u{1F684}",
72345
+ burkina_faso: "\u{1F1E7}\u200D\u{1F1EB}",
72346
+ burrito: "\u{1F32F}",
72347
+ burundi: "\u{1F1E7}\u200D\u{1F1EE}",
72348
+ bus: "\u{1F68C}",
72349
+ business_suit_levitating: "\u{1F574}",
72350
+ busstop: "\u{1F68F}",
72351
+ bust_in_silhouette: "\u{1F464}",
72352
+ busts_in_silhouette: "\u{1F465}",
72353
+ butter: "\u{1F9C8}",
72354
+ butterfly: "\u{1F98B}",
72355
+ cactus: "\u{1F335}",
72356
+ cake: "\u{1F370}",
72357
+ calendar: "\u{1F4C6}",
72358
+ call_me_hand: "\u{1F919}",
72359
+ calling: "\u{1F4F2}",
72360
+ cambodia: "\u{1F1F0}\u200D\u{1F1ED}",
72361
+ camel: "\u{1F42B}",
72362
+ camera: "\u{1F4F7}",
72363
+ camera_flash: "\u{1F4F8}",
72364
+ cameroon: "\u{1F1E8}\u200D\u{1F1F2}",
72365
+ camping: "\u{1F3D5}",
72366
+ canada: "\u{1F1E8}\u200D\u{1F1E6}",
72367
+ canary_islands: "\u{1F1EE}\u200D\u{1F1E8}",
72368
+ cancer: "\u264B",
72369
+ candle: "\u{1F56F}",
72370
+ candy: "\u{1F36C}",
72371
+ canned_food: "\u{1F96B}",
72372
+ canoe: "\u{1F6F6}",
72373
+ cape_verde: "\u{1F1E8}\u200D\u{1F1FB}",
72374
+ capital_abcd: "\u{1F520}",
72375
+ capricorn: "\u2651",
72376
+ car: "\u{1F697}",
72377
+ card_file_box: "\u{1F5C3}",
72378
+ card_index: "\u{1F4C7}",
72379
+ card_index_dividers: "\u{1F5C2}",
72380
+ caribbean_netherlands: "\u{1F1E7}\u200D\u{1F1F6}",
72381
+ carousel_horse: "\u{1F3A0}",
72382
+ carpentry_saw: "\u{1FA9A}",
72383
+ carrot: "\u{1F955}",
72384
+ cartwheeling: "\u{1F938}",
72385
+ cat: "\u{1F431}",
72386
+ cat2: "\u{1F408}",
72387
+ cayman_islands: "\u{1F1F0}\u200D\u{1F1FE}",
72388
+ cd: "\u{1F4BF}",
72389
+ central_african_republic: "\u{1F1E8}\u200D\u{1F1EB}",
72390
+ ceuta_melilla: "\u{1F1EA}\u200D\u{1F1E6}",
72391
+ chad: "\u{1F1F9}\u200D\u{1F1E9}",
72392
+ chains: "\u26D3",
72393
+ chair: "\u{1FA91}",
72394
+ champagne: "\u{1F37E}",
72395
+ chart: "\u{1F4B9}",
72396
+ chart_with_downwards_trend: "\u{1F4C9}",
72397
+ chart_with_upwards_trend: "\u{1F4C8}",
72398
+ checkered_flag: "\u{1F3C1}",
72399
+ cheese: "\u{1F9C0}",
72400
+ cherries: "\u{1F352}",
72401
+ cherry_blossom: "\u{1F338}",
72402
+ chess_pawn: "\u265F",
72403
+ chestnut: "\u{1F330}",
72404
+ chicken: "\u{1F414}",
72405
+ child: "\u{1F9D2}",
72406
+ children_crossing: "\u{1F6B8}",
72407
+ chile: "\u{1F1E8}\u200D\u{1F1F1}",
72408
+ chipmunk: "\u{1F43F}",
72409
+ chocolate_bar: "\u{1F36B}",
72410
+ chopsticks: "\u{1F962}",
72411
+ christmas_island: "\u{1F1E8}\u200D\u{1F1FD}",
72412
+ christmas_tree: "\u{1F384}",
72413
+ church: "\u26EA",
72414
+ cinema: "\u{1F3A6}",
72415
+ circus_tent: "\u{1F3AA}",
72416
+ city_sunrise: "\u{1F307}",
72417
+ city_sunset: "\u{1F306}",
72418
+ cityscape: "\u{1F3D9}",
72419
+ cl: "\u{1F191}",
72420
+ clamp: "\u{1F5DC}",
72421
+ clap: "\u{1F44F}",
72422
+ clapper: "\u{1F3AC}",
72423
+ classical_building: "\u{1F3DB}",
72424
+ climbing: "\u{1F9D7}",
72425
+ climbing_man: "\u{1F9D7}\u200D\u2642",
72426
+ climbing_woman: "\u{1F9D7}\u200D\u2640",
72427
+ clinking_glasses: "\u{1F942}",
72428
+ clipboard: "\u{1F4CB}",
72429
+ clipperton_island: "\u{1F1E8}\u200D\u{1F1F5}",
72430
+ clock1: "\u{1F550}",
72431
+ clock10: "\u{1F559}",
72432
+ clock1030: "\u{1F565}",
72433
+ clock11: "\u{1F55A}",
72434
+ clock1130: "\u{1F566}",
72435
+ clock12: "\u{1F55B}",
72436
+ clock1230: "\u{1F567}",
72437
+ clock130: "\u{1F55C}",
72438
+ clock2: "\u{1F551}",
72439
+ clock230: "\u{1F55D}",
72440
+ clock3: "\u{1F552}",
72441
+ clock330: "\u{1F55E}",
72442
+ clock4: "\u{1F553}",
72443
+ clock430: "\u{1F55F}",
72444
+ clock5: "\u{1F554}",
72445
+ clock530: "\u{1F560}",
72446
+ clock6: "\u{1F555}",
72447
+ clock630: "\u{1F561}",
72448
+ clock7: "\u{1F556}",
72449
+ clock730: "\u{1F562}",
72450
+ clock8: "\u{1F557}",
72451
+ clock830: "\u{1F563}",
72452
+ clock9: "\u{1F558}",
72453
+ clock930: "\u{1F564}",
72454
+ closed_book: "\u{1F4D5}",
72455
+ closed_lock_with_key: "\u{1F510}",
72456
+ closed_umbrella: "\u{1F302}",
72457
+ cloud: "\u2601",
72458
+ cloud_with_lightning: "\u{1F329}",
72459
+ cloud_with_lightning_and_rain: "\u26C8",
72460
+ cloud_with_rain: "\u{1F327}",
72461
+ cloud_with_snow: "\u{1F328}",
72462
+ clown_face: "\u{1F921}",
72463
+ clubs: "\u2663",
72464
+ cn: "\u{1F1E8}\u200D\u{1F1F3}",
72465
+ coat: "\u{1F9E5}",
72466
+ cockroach: "\u{1FAB3}",
72467
+ cocktail: "\u{1F378}",
72468
+ coconut: "\u{1F965}",
72469
+ cocos_islands: "\u{1F1E8}\u200D\u{1F1E8}",
72470
+ coffee: "\u2615",
72471
+ coffin: "\u26B0",
72472
+ coin: "\u{1FA99}",
72473
+ cold_face: "\u{1F976}",
72474
+ cold_sweat: "\u{1F630}",
72475
+ collision: "\u{1F4A5}",
72476
+ colombia: "\u{1F1E8}\u200D\u{1F1F4}",
72477
+ comet: "\u2604",
72478
+ comoros: "\u{1F1F0}\u200D\u{1F1F2}",
72479
+ compass: "\u{1F9ED}",
72480
+ computer: "\u{1F4BB}",
72481
+ computer_mouse: "\u{1F5B1}",
72482
+ confetti_ball: "\u{1F38A}",
72483
+ confounded: "\u{1F616}",
72484
+ confused: "\u{1F615}",
72485
+ congo_brazzaville: "\u{1F1E8}\u200D\u{1F1EC}",
72486
+ congo_kinshasa: "\u{1F1E8}\u200D\u{1F1E9}",
72487
+ congratulations: "\u3297",
72488
+ construction: "\u{1F6A7}",
72489
+ construction_worker: "\u{1F477}",
72490
+ construction_worker_man: "\u{1F477}\u200D\u2642",
72491
+ construction_worker_woman: "\u{1F477}\u200D\u2640",
72492
+ control_knobs: "\u{1F39B}",
72493
+ convenience_store: "\u{1F3EA}",
72494
+ cook: "\u{1F9D1}\u200D\u{1F373}",
72495
+ cook_islands: "\u{1F1E8}\u200D\u{1F1F0}",
72496
+ cookie: "\u{1F36A}",
72497
+ cool: "\u{1F192}",
72498
+ cop: "\u{1F46E}",
72499
+ copyright: "\xA9",
72500
+ coral: "\u{1FAB8}",
72501
+ corn: "\u{1F33D}",
72502
+ costa_rica: "\u{1F1E8}\u200D\u{1F1F7}",
72503
+ cote_divoire: "\u{1F1E8}\u200D\u{1F1EE}",
72504
+ couch_and_lamp: "\u{1F6CB}",
72505
+ couple: "\u{1F46B}",
72506
+ couple_with_heart: "\u{1F491}",
72507
+ couple_with_heart_man_man: "\u{1F468}\u200D\u2764\u200D\u{1F468}",
72508
+ couple_with_heart_woman_man: "\u{1F469}\u200D\u2764\u200D\u{1F468}",
72509
+ couple_with_heart_woman_woman: "\u{1F469}\u200D\u2764\u200D\u{1F469}",
72510
+ couplekiss: "\u{1F48F}",
72511
+ couplekiss_man_man: "\u{1F468}\u200D\u2764\u200D\u{1F48B}\u200D\u{1F468}",
72512
+ couplekiss_man_woman: "\u{1F469}\u200D\u2764\u200D\u{1F48B}\u200D\u{1F468}",
72513
+ couplekiss_woman_woman: "\u{1F469}\u200D\u2764\u200D\u{1F48B}\u200D\u{1F469}",
72514
+ cow: "\u{1F42E}",
72515
+ cow2: "\u{1F404}",
72516
+ cowboy_hat_face: "\u{1F920}",
72517
+ crab: "\u{1F980}",
72518
+ crayon: "\u{1F58D}",
72519
+ credit_card: "\u{1F4B3}",
72520
+ crescent_moon: "\u{1F319}",
72521
+ cricket: "\u{1F997}",
72522
+ cricket_game: "\u{1F3CF}",
72523
+ croatia: "\u{1F1ED}\u200D\u{1F1F7}",
72524
+ crocodile: "\u{1F40A}",
72525
+ croissant: "\u{1F950}",
72526
+ crossed_fingers: "\u{1F91E}",
72527
+ crossed_flags: "\u{1F38C}",
72528
+ crossed_swords: "\u2694",
72529
+ crown: "\u{1F451}",
72530
+ crutch: "\u{1FA7C}",
72531
+ cry: "\u{1F622}",
72532
+ crying_cat_face: "\u{1F63F}",
72533
+ crystal_ball: "\u{1F52E}",
72534
+ cuba: "\u{1F1E8}\u200D\u{1F1FA}",
72535
+ cucumber: "\u{1F952}",
72536
+ cup_with_straw: "\u{1F964}",
72537
+ cupcake: "\u{1F9C1}",
72538
+ cupid: "\u{1F498}",
72539
+ curacao: "\u{1F1E8}\u200D\u{1F1FC}",
72540
+ curling_stone: "\u{1F94C}",
72541
+ curly_haired_man: "\u{1F468}\u200D\u{1F9B1}",
72542
+ curly_haired_woman: "\u{1F469}\u200D\u{1F9B1}",
72543
+ curly_loop: "\u27B0",
72544
+ currency_exchange: "\u{1F4B1}",
72545
+ curry: "\u{1F35B}",
72546
+ cursing_face: "\u{1F92C}",
72547
+ custard: "\u{1F36E}",
72548
+ customs: "\u{1F6C3}",
72549
+ cut_of_meat: "\u{1F969}",
72550
+ cyclone: "\u{1F300}",
72551
+ cyprus: "\u{1F1E8}\u200D\u{1F1FE}",
72552
+ czech_republic: "\u{1F1E8}\u200D\u{1F1FF}",
72553
+ dagger: "\u{1F5E1}",
72554
+ dancer: "\u{1F483}",
72555
+ dancers: "\u{1F46F}",
72556
+ dancing_men: "\u{1F46F}\u200D\u2642",
72557
+ dancing_women: "\u{1F46F}\u200D\u2640",
72558
+ dango: "\u{1F361}",
72559
+ dark_sunglasses: "\u{1F576}",
72560
+ dart: "\u{1F3AF}",
72561
+ dash: "\u{1F4A8}",
72562
+ date: "\u{1F4C5}",
72563
+ de: "\u{1F1E9}\u200D\u{1F1EA}",
72564
+ deaf_man: "\u{1F9CF}\u200D\u2642",
72565
+ deaf_person: "\u{1F9CF}",
72566
+ deaf_woman: "\u{1F9CF}\u200D\u2640",
72567
+ deciduous_tree: "\u{1F333}",
72568
+ deer: "\u{1F98C}",
72569
+ denmark: "\u{1F1E9}\u200D\u{1F1F0}",
72570
+ department_store: "\u{1F3EC}",
72571
+ derelict_house: "\u{1F3DA}",
72572
+ desert: "\u{1F3DC}",
72573
+ desert_island: "\u{1F3DD}",
72574
+ desktop_computer: "\u{1F5A5}",
72575
+ detective: "\u{1F575}",
72576
+ diamond_shape_with_a_dot_inside: "\u{1F4A0}",
72577
+ diamonds: "\u2666",
72578
+ diego_garcia: "\u{1F1E9}\u200D\u{1F1EC}",
72579
+ disappointed: "\u{1F61E}",
72580
+ disappointed_relieved: "\u{1F625}",
72581
+ disguised_face: "\u{1F978}",
72582
+ diving_mask: "\u{1F93F}",
72583
+ diya_lamp: "\u{1FA94}",
72584
+ dizzy: "\u{1F4AB}",
72585
+ dizzy_face: "\u{1F635}",
72586
+ djibouti: "\u{1F1E9}\u200D\u{1F1EF}",
72587
+ dna: "\u{1F9EC}",
72588
+ do_not_litter: "\u{1F6AF}",
72589
+ dodo: "\u{1F9A4}",
72590
+ dog: "\u{1F436}",
72591
+ dog2: "\u{1F415}",
72592
+ dollar: "\u{1F4B5}",
72593
+ dolls: "\u{1F38E}",
72594
+ dolphin: "\u{1F42C}",
72595
+ dominica: "\u{1F1E9}\u200D\u{1F1F2}",
72596
+ dominican_republic: "\u{1F1E9}\u200D\u{1F1F4}",
72597
+ donkey: "\u{1FACF}",
72598
+ door: "\u{1F6AA}",
72599
+ dotted_line_face: "\u{1FAE5}",
72600
+ doughnut: "\u{1F369}",
72601
+ dove: "\u{1F54A}",
72602
+ dragon: "\u{1F409}",
72603
+ dragon_face: "\u{1F432}",
72604
+ dress: "\u{1F457}",
72605
+ dromedary_camel: "\u{1F42A}",
72606
+ drooling_face: "\u{1F924}",
72607
+ drop_of_blood: "\u{1FA78}",
72608
+ droplet: "\u{1F4A7}",
72609
+ drum: "\u{1F941}",
72610
+ duck: "\u{1F986}",
72611
+ dumpling: "\u{1F95F}",
72612
+ dvd: "\u{1F4C0}",
72613
+ "e-mail": "\u{1F4E7}",
72614
+ eagle: "\u{1F985}",
72615
+ ear: "\u{1F442}",
72616
+ ear_of_rice: "\u{1F33E}",
72617
+ ear_with_hearing_aid: "\u{1F9BB}",
72618
+ earth_africa: "\u{1F30D}",
72619
+ earth_americas: "\u{1F30E}",
72620
+ earth_asia: "\u{1F30F}",
72621
+ ecuador: "\u{1F1EA}\u200D\u{1F1E8}",
72622
+ egg: "\u{1F95A}",
72623
+ eggplant: "\u{1F346}",
72624
+ egypt: "\u{1F1EA}\u200D\u{1F1EC}",
72625
+ eight: "8\u200D\u20E3",
72626
+ eight_pointed_black_star: "\u2734",
72627
+ eight_spoked_asterisk: "\u2733",
72628
+ eject_button: "\u23CF",
72629
+ el_salvador: "\u{1F1F8}\u200D\u{1F1FB}",
72630
+ electric_plug: "\u{1F50C}",
72631
+ elephant: "\u{1F418}",
72632
+ elevator: "\u{1F6D7}",
72633
+ elf: "\u{1F9DD}",
72634
+ elf_man: "\u{1F9DD}\u200D\u2642",
72635
+ elf_woman: "\u{1F9DD}\u200D\u2640",
72636
+ email: "\u{1F4E7}",
72637
+ empty_nest: "\u{1FAB9}",
72638
+ end: "\u{1F51A}",
72639
+ england: "\u{1F3F4}\u200D\u{E0067}\u200D\u{E0062}\u200D\u{E0065}\u200D\u{E006E}\u200D\u{E0067}\u200D\u{E007F}",
72640
+ envelope: "\u2709",
72641
+ envelope_with_arrow: "\u{1F4E9}",
72642
+ equatorial_guinea: "\u{1F1EC}\u200D\u{1F1F6}",
72643
+ eritrea: "\u{1F1EA}\u200D\u{1F1F7}",
72644
+ es: "\u{1F1EA}\u200D\u{1F1F8}",
72645
+ estonia: "\u{1F1EA}\u200D\u{1F1EA}",
72646
+ ethiopia: "\u{1F1EA}\u200D\u{1F1F9}",
72647
+ eu: "\u{1F1EA}\u200D\u{1F1FA}",
72648
+ euro: "\u{1F4B6}",
72649
+ european_castle: "\u{1F3F0}",
72650
+ european_post_office: "\u{1F3E4}",
72651
+ european_union: "\u{1F1EA}\u200D\u{1F1FA}",
72652
+ evergreen_tree: "\u{1F332}",
72653
+ exclamation: "\u2757",
72654
+ exploding_head: "\u{1F92F}",
72655
+ expressionless: "\u{1F611}",
72656
+ eye: "\u{1F441}",
72657
+ eye_speech_bubble: "\u{1F441}\u200D\u{1F5E8}",
72658
+ eyeglasses: "\u{1F453}",
72659
+ eyes: "\u{1F440}",
72660
+ face_exhaling: "\u{1F62E}\u200D\u{1F4A8}",
72661
+ face_holding_back_tears: "\u{1F979}",
72662
+ face_in_clouds: "\u{1F636}\u200D\u{1F32B}",
72663
+ face_with_diagonal_mouth: "\u{1FAE4}",
72664
+ face_with_head_bandage: "\u{1F915}",
72665
+ face_with_open_eyes_and_hand_over_mouth: "\u{1FAE2}",
72666
+ face_with_peeking_eye: "\u{1FAE3}",
72667
+ face_with_spiral_eyes: "\u{1F635}\u200D\u{1F4AB}",
72668
+ face_with_thermometer: "\u{1F912}",
72669
+ facepalm: "\u{1F926}",
72670
+ facepunch: "\u{1F44A}",
72671
+ factory: "\u{1F3ED}",
72672
+ factory_worker: "\u{1F9D1}\u200D\u{1F3ED}",
72673
+ fairy: "\u{1F9DA}",
72674
+ fairy_man: "\u{1F9DA}\u200D\u2642",
72675
+ fairy_woman: "\u{1F9DA}\u200D\u2640",
72676
+ falafel: "\u{1F9C6}",
72677
+ falkland_islands: "\u{1F1EB}\u200D\u{1F1F0}",
72678
+ fallen_leaf: "\u{1F342}",
72679
+ family: "\u{1F46A}",
72680
+ family_man_boy: "\u{1F468}\u200D\u{1F466}",
72681
+ family_man_boy_boy: "\u{1F468}\u200D\u{1F466}\u200D\u{1F466}",
72682
+ family_man_girl: "\u{1F468}\u200D\u{1F467}",
72683
+ family_man_girl_boy: "\u{1F468}\u200D\u{1F467}\u200D\u{1F466}",
72684
+ family_man_girl_girl: "\u{1F468}\u200D\u{1F467}\u200D\u{1F467}",
72685
+ family_man_man_boy: "\u{1F468}\u200D\u{1F468}\u200D\u{1F466}",
72686
+ family_man_man_boy_boy: "\u{1F468}\u200D\u{1F468}\u200D\u{1F466}\u200D\u{1F466}",
72687
+ family_man_man_girl: "\u{1F468}\u200D\u{1F468}\u200D\u{1F467}",
72688
+ family_man_man_girl_boy: "\u{1F468}\u200D\u{1F468}\u200D\u{1F467}\u200D\u{1F466}",
72689
+ family_man_man_girl_girl: "\u{1F468}\u200D\u{1F468}\u200D\u{1F467}\u200D\u{1F467}",
72690
+ family_man_woman_boy: "\u{1F468}\u200D\u{1F469}\u200D\u{1F466}",
72691
+ family_man_woman_boy_boy: "\u{1F468}\u200D\u{1F469}\u200D\u{1F466}\u200D\u{1F466}",
72692
+ family_man_woman_girl: "\u{1F468}\u200D\u{1F469}\u200D\u{1F467}",
72693
+ family_man_woman_girl_boy: "\u{1F468}\u200D\u{1F469}\u200D\u{1F467}\u200D\u{1F466}",
72694
+ family_man_woman_girl_girl: "\u{1F468}\u200D\u{1F469}\u200D\u{1F467}\u200D\u{1F467}",
72695
+ family_woman_boy: "\u{1F469}\u200D\u{1F466}",
72696
+ family_woman_boy_boy: "\u{1F469}\u200D\u{1F466}\u200D\u{1F466}",
72697
+ family_woman_girl: "\u{1F469}\u200D\u{1F467}",
72698
+ family_woman_girl_boy: "\u{1F469}\u200D\u{1F467}\u200D\u{1F466}",
72699
+ family_woman_girl_girl: "\u{1F469}\u200D\u{1F467}\u200D\u{1F467}",
72700
+ family_woman_woman_boy: "\u{1F469}\u200D\u{1F469}\u200D\u{1F466}",
72701
+ family_woman_woman_boy_boy: "\u{1F469}\u200D\u{1F469}\u200D\u{1F466}\u200D\u{1F466}",
72702
+ family_woman_woman_girl: "\u{1F469}\u200D\u{1F469}\u200D\u{1F467}",
72703
+ family_woman_woman_girl_boy: "\u{1F469}\u200D\u{1F469}\u200D\u{1F467}\u200D\u{1F466}",
72704
+ family_woman_woman_girl_girl: "\u{1F469}\u200D\u{1F469}\u200D\u{1F467}\u200D\u{1F467}",
72705
+ farmer: "\u{1F9D1}\u200D\u{1F33E}",
72706
+ faroe_islands: "\u{1F1EB}\u200D\u{1F1F4}",
72707
+ fast_forward: "\u23E9",
72708
+ fax: "\u{1F4E0}",
72709
+ fearful: "\u{1F628}",
72710
+ feather: "\u{1FAB6}",
72711
+ feet: "\u{1F43E}",
72712
+ female_detective: "\u{1F575}\u200D\u2640",
72713
+ female_sign: "\u2640",
72714
+ ferris_wheel: "\u{1F3A1}",
72715
+ ferry: "\u26F4",
72716
+ field_hockey: "\u{1F3D1}",
72717
+ fiji: "\u{1F1EB}\u200D\u{1F1EF}",
72718
+ file_cabinet: "\u{1F5C4}",
72719
+ file_folder: "\u{1F4C1}",
72720
+ film_projector: "\u{1F4FD}",
72721
+ film_strip: "\u{1F39E}",
72722
+ finland: "\u{1F1EB}\u200D\u{1F1EE}",
72723
+ fire: "\u{1F525}",
72724
+ fire_engine: "\u{1F692}",
72725
+ fire_extinguisher: "\u{1F9EF}",
72726
+ firecracker: "\u{1F9E8}",
72727
+ firefighter: "\u{1F9D1}\u200D\u{1F692}",
72728
+ fireworks: "\u{1F386}",
72729
+ first_quarter_moon: "\u{1F313}",
72730
+ first_quarter_moon_with_face: "\u{1F31B}",
72731
+ fish: "\u{1F41F}",
72732
+ fish_cake: "\u{1F365}",
72733
+ fishing_pole_and_fish: "\u{1F3A3}",
72734
+ fist: "\u270A",
72735
+ fist_left: "\u{1F91B}",
72736
+ fist_oncoming: "\u{1F44A}",
72737
+ fist_raised: "\u270A",
72738
+ fist_right: "\u{1F91C}",
72739
+ five: "5\u200D\u20E3",
72740
+ flags: "\u{1F38F}",
72741
+ flamingo: "\u{1F9A9}",
72742
+ flashlight: "\u{1F526}",
72743
+ flat_shoe: "\u{1F97F}",
72744
+ flatbread: "\u{1FAD3}",
72745
+ fleur_de_lis: "\u269C",
72746
+ flight_arrival: "\u{1F6EC}",
72747
+ flight_departure: "\u{1F6EB}",
72748
+ flipper: "\u{1F42C}",
72749
+ floppy_disk: "\u{1F4BE}",
72750
+ flower_playing_cards: "\u{1F3B4}",
72751
+ flushed: "\u{1F633}",
72752
+ flute: "\u{1FA88}",
72753
+ fly: "\u{1FAB0}",
72754
+ flying_disc: "\u{1F94F}",
72755
+ flying_saucer: "\u{1F6F8}",
72756
+ fog: "\u{1F32B}",
72757
+ foggy: "\u{1F301}",
72758
+ folding_hand_fan: "\u{1FAAD}",
72759
+ fondue: "\u{1FAD5}",
72760
+ foot: "\u{1F9B6}",
72761
+ football: "\u{1F3C8}",
72762
+ footprints: "\u{1F463}",
72763
+ fork_and_knife: "\u{1F374}",
72764
+ fortune_cookie: "\u{1F960}",
72765
+ fountain: "\u26F2",
72766
+ fountain_pen: "\u{1F58B}",
72767
+ four: "4\u200D\u20E3",
72768
+ four_leaf_clover: "\u{1F340}",
72769
+ fox_face: "\u{1F98A}",
72770
+ fr: "\u{1F1EB}\u200D\u{1F1F7}",
72771
+ framed_picture: "\u{1F5BC}",
72772
+ free: "\u{1F193}",
72773
+ french_guiana: "\u{1F1EC}\u200D\u{1F1EB}",
72774
+ french_polynesia: "\u{1F1F5}\u200D\u{1F1EB}",
72775
+ french_southern_territories: "\u{1F1F9}\u200D\u{1F1EB}",
72776
+ fried_egg: "\u{1F373}",
72777
+ fried_shrimp: "\u{1F364}",
72778
+ fries: "\u{1F35F}",
72779
+ frog: "\u{1F438}",
72780
+ frowning: "\u{1F626}",
72781
+ frowning_face: "\u2639",
72782
+ frowning_man: "\u{1F64D}\u200D\u2642",
72783
+ frowning_person: "\u{1F64D}",
72784
+ frowning_woman: "\u{1F64D}\u200D\u2640",
72785
+ fu: "\u{1F595}",
72786
+ fuelpump: "\u26FD",
72787
+ full_moon: "\u{1F315}",
72788
+ full_moon_with_face: "\u{1F31D}",
72789
+ funeral_urn: "\u26B1",
72790
+ gabon: "\u{1F1EC}\u200D\u{1F1E6}",
72791
+ gambia: "\u{1F1EC}\u200D\u{1F1F2}",
72792
+ game_die: "\u{1F3B2}",
72793
+ garlic: "\u{1F9C4}",
72794
+ gb: "\u{1F1EC}\u200D\u{1F1E7}",
72795
+ gear: "\u2699",
72796
+ gem: "\u{1F48E}",
72797
+ gemini: "\u264A",
72798
+ genie: "\u{1F9DE}",
72799
+ genie_man: "\u{1F9DE}\u200D\u2642",
72800
+ genie_woman: "\u{1F9DE}\u200D\u2640",
72801
+ georgia: "\u{1F1EC}\u200D\u{1F1EA}",
72802
+ ghana: "\u{1F1EC}\u200D\u{1F1ED}",
72803
+ ghost: "\u{1F47B}",
72804
+ gibraltar: "\u{1F1EC}\u200D\u{1F1EE}",
72805
+ gift: "\u{1F381}",
72806
+ gift_heart: "\u{1F49D}",
72807
+ ginger_root: "\u{1FADA}",
72808
+ giraffe: "\u{1F992}",
72809
+ girl: "\u{1F467}",
72810
+ globe_with_meridians: "\u{1F310}",
72811
+ gloves: "\u{1F9E4}",
72812
+ goal_net: "\u{1F945}",
72813
+ goat: "\u{1F410}",
72814
+ goggles: "\u{1F97D}",
72815
+ golf: "\u26F3",
72816
+ golfing: "\u{1F3CC}",
72817
+ golfing_man: "\u{1F3CC}\u200D\u2642",
72818
+ golfing_woman: "\u{1F3CC}\u200D\u2640",
72819
+ goose: "\u{1FABF}",
72820
+ gorilla: "\u{1F98D}",
72821
+ grapes: "\u{1F347}",
72822
+ greece: "\u{1F1EC}\u200D\u{1F1F7}",
72823
+ green_apple: "\u{1F34F}",
72824
+ green_book: "\u{1F4D7}",
72825
+ green_circle: "\u{1F7E2}",
72826
+ green_heart: "\u{1F49A}",
72827
+ green_salad: "\u{1F957}",
72828
+ green_square: "\u{1F7E9}",
72829
+ greenland: "\u{1F1EC}\u200D\u{1F1F1}",
72830
+ grenada: "\u{1F1EC}\u200D\u{1F1E9}",
72831
+ grey_exclamation: "\u2755",
72832
+ grey_heart: "\u{1FA76}",
72833
+ grey_question: "\u2754",
72834
+ grimacing: "\u{1F62C}",
72835
+ grin: "\u{1F601}",
72836
+ grinning: "\u{1F600}",
72837
+ guadeloupe: "\u{1F1EC}\u200D\u{1F1F5}",
72838
+ guam: "\u{1F1EC}\u200D\u{1F1FA}",
72839
+ guard: "\u{1F482}",
72840
+ guardsman: "\u{1F482}\u200D\u2642",
72841
+ guardswoman: "\u{1F482}\u200D\u2640",
72842
+ guatemala: "\u{1F1EC}\u200D\u{1F1F9}",
72843
+ guernsey: "\u{1F1EC}\u200D\u{1F1EC}",
72844
+ guide_dog: "\u{1F9AE}",
72845
+ guinea: "\u{1F1EC}\u200D\u{1F1F3}",
72846
+ guinea_bissau: "\u{1F1EC}\u200D\u{1F1FC}",
72847
+ guitar: "\u{1F3B8}",
72848
+ gun: "\u{1F52B}",
72849
+ guyana: "\u{1F1EC}\u200D\u{1F1FE}",
72850
+ hair_pick: "\u{1FAAE}",
72851
+ haircut: "\u{1F487}",
72852
+ haircut_man: "\u{1F487}\u200D\u2642",
72853
+ haircut_woman: "\u{1F487}\u200D\u2640",
72854
+ haiti: "\u{1F1ED}\u200D\u{1F1F9}",
72855
+ hamburger: "\u{1F354}",
72856
+ hammer: "\u{1F528}",
72857
+ hammer_and_pick: "\u2692",
72858
+ hammer_and_wrench: "\u{1F6E0}",
72859
+ hamsa: "\u{1FAAC}",
72860
+ hamster: "\u{1F439}",
72861
+ hand: "\u270B",
72862
+ hand_over_mouth: "\u{1F92D}",
72863
+ hand_with_index_finger_and_thumb_crossed: "\u{1FAF0}",
72864
+ handbag: "\u{1F45C}",
72865
+ handball_person: "\u{1F93E}",
72866
+ handshake: "\u{1F91D}",
72867
+ hankey: "\u{1F4A9}",
72868
+ hash: "#\u200D\u20E3",
72869
+ hatched_chick: "\u{1F425}",
72870
+ hatching_chick: "\u{1F423}",
72871
+ headphones: "\u{1F3A7}",
72872
+ headstone: "\u{1FAA6}",
72873
+ health_worker: "\u{1F9D1}\u200D\u2695",
72874
+ hear_no_evil: "\u{1F649}",
72875
+ heard_mcdonald_islands: "\u{1F1ED}\u200D\u{1F1F2}",
72876
+ heart: "\u2764",
72877
+ heart_decoration: "\u{1F49F}",
72878
+ heart_eyes: "\u{1F60D}",
72879
+ heart_eyes_cat: "\u{1F63B}",
72880
+ heart_hands: "\u{1FAF6}",
72881
+ heart_on_fire: "\u2764\u200D\u{1F525}",
72882
+ heartbeat: "\u{1F493}",
72883
+ heartpulse: "\u{1F497}",
72884
+ hearts: "\u2665",
72885
+ heavy_check_mark: "\u2714",
72886
+ heavy_division_sign: "\u2797",
72887
+ heavy_dollar_sign: "\u{1F4B2}",
72888
+ heavy_equals_sign: "\u{1F7F0}",
72889
+ heavy_exclamation_mark: "\u2757",
72890
+ heavy_heart_exclamation: "\u2763",
72891
+ heavy_minus_sign: "\u2796",
72892
+ heavy_multiplication_x: "\u2716",
72893
+ heavy_plus_sign: "\u2795",
72894
+ hedgehog: "\u{1F994}",
72895
+ helicopter: "\u{1F681}",
72896
+ herb: "\u{1F33F}",
72897
+ hibiscus: "\u{1F33A}",
72898
+ high_brightness: "\u{1F506}",
72899
+ high_heel: "\u{1F460}",
72900
+ hiking_boot: "\u{1F97E}",
72901
+ hindu_temple: "\u{1F6D5}",
72902
+ hippopotamus: "\u{1F99B}",
72903
+ hocho: "\u{1F52A}",
72904
+ hole: "\u{1F573}",
72905
+ honduras: "\u{1F1ED}\u200D\u{1F1F3}",
72906
+ honey_pot: "\u{1F36F}",
72907
+ honeybee: "\u{1F41D}",
72908
+ hong_kong: "\u{1F1ED}\u200D\u{1F1F0}",
72909
+ hook: "\u{1FA9D}",
72910
+ horse: "\u{1F434}",
72911
+ horse_racing: "\u{1F3C7}",
72912
+ hospital: "\u{1F3E5}",
72913
+ hot_face: "\u{1F975}",
72914
+ hot_pepper: "\u{1F336}",
72915
+ hotdog: "\u{1F32D}",
72916
+ hotel: "\u{1F3E8}",
72917
+ hotsprings: "\u2668",
72918
+ hourglass: "\u231B",
72919
+ hourglass_flowing_sand: "\u23F3",
72920
+ house: "\u{1F3E0}",
72921
+ house_with_garden: "\u{1F3E1}",
72922
+ houses: "\u{1F3D8}",
72923
+ hugs: "\u{1F917}",
72924
+ hungary: "\u{1F1ED}\u200D\u{1F1FA}",
72925
+ hushed: "\u{1F62F}",
72926
+ hut: "\u{1F6D6}",
72927
+ hyacinth: "\u{1FABB}",
72928
+ ice_cream: "\u{1F368}",
72929
+ ice_cube: "\u{1F9CA}",
72930
+ ice_hockey: "\u{1F3D2}",
72931
+ ice_skate: "\u26F8",
72932
+ icecream: "\u{1F366}",
72933
+ iceland: "\u{1F1EE}\u200D\u{1F1F8}",
72934
+ id: "\u{1F194}",
72935
+ identification_card: "\u{1FAAA}",
72936
+ ideograph_advantage: "\u{1F250}",
72937
+ imp: "\u{1F47F}",
72938
+ inbox_tray: "\u{1F4E5}",
72939
+ incoming_envelope: "\u{1F4E8}",
72940
+ index_pointing_at_the_viewer: "\u{1FAF5}",
72941
+ india: "\u{1F1EE}\u200D\u{1F1F3}",
72942
+ indonesia: "\u{1F1EE}\u200D\u{1F1E9}",
72943
+ infinity: "\u267E",
72944
+ information_desk_person: "\u{1F481}",
72945
+ information_source: "\u2139",
72946
+ innocent: "\u{1F607}",
72947
+ interrobang: "\u2049",
72948
+ iphone: "\u{1F4F1}",
72949
+ iran: "\u{1F1EE}\u200D\u{1F1F7}",
72950
+ iraq: "\u{1F1EE}\u200D\u{1F1F6}",
72951
+ ireland: "\u{1F1EE}\u200D\u{1F1EA}",
72952
+ isle_of_man: "\u{1F1EE}\u200D\u{1F1F2}",
72953
+ israel: "\u{1F1EE}\u200D\u{1F1F1}",
72954
+ it: "\u{1F1EE}\u200D\u{1F1F9}",
72955
+ izakaya_lantern: "\u{1F3EE}",
72956
+ jack_o_lantern: "\u{1F383}",
72957
+ jamaica: "\u{1F1EF}\u200D\u{1F1F2}",
72958
+ japan: "\u{1F5FE}",
72959
+ japanese_castle: "\u{1F3EF}",
72960
+ japanese_goblin: "\u{1F47A}",
72961
+ japanese_ogre: "\u{1F479}",
72962
+ jar: "\u{1FAD9}",
72963
+ jeans: "\u{1F456}",
72964
+ jellyfish: "\u{1FABC}",
72965
+ jersey: "\u{1F1EF}\u200D\u{1F1EA}",
72966
+ jigsaw: "\u{1F9E9}",
72967
+ jordan: "\u{1F1EF}\u200D\u{1F1F4}",
72968
+ joy: "\u{1F602}",
72969
+ joy_cat: "\u{1F639}",
72970
+ joystick: "\u{1F579}",
72971
+ jp: "\u{1F1EF}\u200D\u{1F1F5}",
72972
+ judge: "\u{1F9D1}\u200D\u2696",
72973
+ juggling_person: "\u{1F939}",
72974
+ kaaba: "\u{1F54B}",
72975
+ kangaroo: "\u{1F998}",
72976
+ kazakhstan: "\u{1F1F0}\u200D\u{1F1FF}",
72977
+ kenya: "\u{1F1F0}\u200D\u{1F1EA}",
72978
+ key: "\u{1F511}",
72979
+ keyboard: "\u2328",
72980
+ keycap_ten: "\u{1F51F}",
72981
+ khanda: "\u{1FAAF}",
72982
+ kick_scooter: "\u{1F6F4}",
72983
+ kimono: "\u{1F458}",
72984
+ kiribati: "\u{1F1F0}\u200D\u{1F1EE}",
72985
+ kiss: "\u{1F48B}",
72986
+ kissing: "\u{1F617}",
72987
+ kissing_cat: "\u{1F63D}",
72988
+ kissing_closed_eyes: "\u{1F61A}",
72989
+ kissing_heart: "\u{1F618}",
72990
+ kissing_smiling_eyes: "\u{1F619}",
72991
+ kite: "\u{1FA81}",
72992
+ kiwi_fruit: "\u{1F95D}",
72993
+ kneeling_man: "\u{1F9CE}\u200D\u2642",
72994
+ kneeling_person: "\u{1F9CE}",
72995
+ kneeling_woman: "\u{1F9CE}\u200D\u2640",
72996
+ knife: "\u{1F52A}",
72997
+ knot: "\u{1FAA2}",
72998
+ koala: "\u{1F428}",
72999
+ koko: "\u{1F201}",
73000
+ kosovo: "\u{1F1FD}\u200D\u{1F1F0}",
73001
+ kr: "\u{1F1F0}\u200D\u{1F1F7}",
73002
+ kuwait: "\u{1F1F0}\u200D\u{1F1FC}",
73003
+ kyrgyzstan: "\u{1F1F0}\u200D\u{1F1EC}",
73004
+ lab_coat: "\u{1F97C}",
73005
+ label: "\u{1F3F7}",
73006
+ lacrosse: "\u{1F94D}",
73007
+ ladder: "\u{1FA9C}",
73008
+ lady_beetle: "\u{1F41E}",
73009
+ lantern: "\u{1F3EE}",
73010
+ laos: "\u{1F1F1}\u200D\u{1F1E6}",
73011
+ large_blue_circle: "\u{1F535}",
73012
+ large_blue_diamond: "\u{1F537}",
73013
+ large_orange_diamond: "\u{1F536}",
73014
+ last_quarter_moon: "\u{1F317}",
73015
+ last_quarter_moon_with_face: "\u{1F31C}",
73016
+ latin_cross: "\u271D",
73017
+ latvia: "\u{1F1F1}\u200D\u{1F1FB}",
73018
+ laughing: "\u{1F606}",
73019
+ leafy_green: "\u{1F96C}",
73020
+ leaves: "\u{1F343}",
73021
+ lebanon: "\u{1F1F1}\u200D\u{1F1E7}",
73022
+ ledger: "\u{1F4D2}",
73023
+ left_luggage: "\u{1F6C5}",
73024
+ left_right_arrow: "\u2194",
73025
+ left_speech_bubble: "\u{1F5E8}",
73026
+ leftwards_arrow_with_hook: "\u21A9",
73027
+ leftwards_hand: "\u{1FAF2}",
73028
+ leftwards_pushing_hand: "\u{1FAF7}",
73029
+ leg: "\u{1F9B5}",
73030
+ lemon: "\u{1F34B}",
73031
+ leo: "\u264C",
73032
+ leopard: "\u{1F406}",
73033
+ lesotho: "\u{1F1F1}\u200D\u{1F1F8}",
73034
+ level_slider: "\u{1F39A}",
73035
+ liberia: "\u{1F1F1}\u200D\u{1F1F7}",
73036
+ libra: "\u264E",
73037
+ libya: "\u{1F1F1}\u200D\u{1F1FE}",
73038
+ liechtenstein: "\u{1F1F1}\u200D\u{1F1EE}",
73039
+ light_blue_heart: "\u{1FA75}",
73040
+ light_rail: "\u{1F688}",
73041
+ link: "\u{1F517}",
73042
+ lion: "\u{1F981}",
73043
+ lips: "\u{1F444}",
73044
+ lipstick: "\u{1F484}",
73045
+ lithuania: "\u{1F1F1}\u200D\u{1F1F9}",
73046
+ lizard: "\u{1F98E}",
73047
+ llama: "\u{1F999}",
73048
+ lobster: "\u{1F99E}",
73049
+ lock: "\u{1F512}",
73050
+ lock_with_ink_pen: "\u{1F50F}",
73051
+ lollipop: "\u{1F36D}",
73052
+ long_drum: "\u{1FA98}",
73053
+ loop: "\u27BF",
73054
+ lotion_bottle: "\u{1F9F4}",
73055
+ lotus: "\u{1FAB7}",
73056
+ lotus_position: "\u{1F9D8}",
73057
+ lotus_position_man: "\u{1F9D8}\u200D\u2642",
73058
+ lotus_position_woman: "\u{1F9D8}\u200D\u2640",
73059
+ loud_sound: "\u{1F50A}",
73060
+ loudspeaker: "\u{1F4E2}",
73061
+ love_hotel: "\u{1F3E9}",
73062
+ love_letter: "\u{1F48C}",
73063
+ love_you_gesture: "\u{1F91F}",
73064
+ low_battery: "\u{1FAAB}",
73065
+ low_brightness: "\u{1F505}",
73066
+ luggage: "\u{1F9F3}",
73067
+ lungs: "\u{1FAC1}",
73068
+ luxembourg: "\u{1F1F1}\u200D\u{1F1FA}",
73069
+ lying_face: "\u{1F925}",
73070
+ m: "\u24C2",
73071
+ macau: "\u{1F1F2}\u200D\u{1F1F4}",
73072
+ macedonia: "\u{1F1F2}\u200D\u{1F1F0}",
73073
+ madagascar: "\u{1F1F2}\u200D\u{1F1EC}",
73074
+ mag: "\u{1F50D}",
73075
+ mag_right: "\u{1F50E}",
73076
+ mage: "\u{1F9D9}",
73077
+ mage_man: "\u{1F9D9}\u200D\u2642",
73078
+ mage_woman: "\u{1F9D9}\u200D\u2640",
73079
+ magic_wand: "\u{1FA84}",
73080
+ magnet: "\u{1F9F2}",
73081
+ mahjong: "\u{1F004}",
73082
+ mailbox: "\u{1F4EB}",
73083
+ mailbox_closed: "\u{1F4EA}",
73084
+ mailbox_with_mail: "\u{1F4EC}",
73085
+ mailbox_with_no_mail: "\u{1F4ED}",
73086
+ malawi: "\u{1F1F2}\u200D\u{1F1FC}",
73087
+ malaysia: "\u{1F1F2}\u200D\u{1F1FE}",
73088
+ maldives: "\u{1F1F2}\u200D\u{1F1FB}",
73089
+ male_detective: "\u{1F575}\u200D\u2642",
73090
+ male_sign: "\u2642",
73091
+ mali: "\u{1F1F2}\u200D\u{1F1F1}",
73092
+ malta: "\u{1F1F2}\u200D\u{1F1F9}",
73093
+ mammoth: "\u{1F9A3}",
73094
+ man: "\u{1F468}",
73095
+ man_artist: "\u{1F468}\u200D\u{1F3A8}",
73096
+ man_astronaut: "\u{1F468}\u200D\u{1F680}",
73097
+ man_beard: "\u{1F9D4}\u200D\u2642",
73098
+ man_cartwheeling: "\u{1F938}\u200D\u2642",
73099
+ man_cook: "\u{1F468}\u200D\u{1F373}",
73100
+ man_dancing: "\u{1F57A}",
73101
+ man_facepalming: "\u{1F926}\u200D\u2642",
73102
+ man_factory_worker: "\u{1F468}\u200D\u{1F3ED}",
73103
+ man_farmer: "\u{1F468}\u200D\u{1F33E}",
73104
+ man_feeding_baby: "\u{1F468}\u200D\u{1F37C}",
73105
+ man_firefighter: "\u{1F468}\u200D\u{1F692}",
73106
+ man_health_worker: "\u{1F468}\u200D\u2695",
73107
+ man_in_manual_wheelchair: "\u{1F468}\u200D\u{1F9BD}",
73108
+ man_in_motorized_wheelchair: "\u{1F468}\u200D\u{1F9BC}",
73109
+ man_in_tuxedo: "\u{1F935}\u200D\u2642",
73110
+ man_judge: "\u{1F468}\u200D\u2696",
73111
+ man_juggling: "\u{1F939}\u200D\u2642",
73112
+ man_mechanic: "\u{1F468}\u200D\u{1F527}",
73113
+ man_office_worker: "\u{1F468}\u200D\u{1F4BC}",
73114
+ man_pilot: "\u{1F468}\u200D\u2708",
73115
+ man_playing_handball: "\u{1F93E}\u200D\u2642",
73116
+ man_playing_water_polo: "\u{1F93D}\u200D\u2642",
73117
+ man_scientist: "\u{1F468}\u200D\u{1F52C}",
73118
+ man_shrugging: "\u{1F937}\u200D\u2642",
73119
+ man_singer: "\u{1F468}\u200D\u{1F3A4}",
73120
+ man_student: "\u{1F468}\u200D\u{1F393}",
73121
+ man_teacher: "\u{1F468}\u200D\u{1F3EB}",
73122
+ man_technologist: "\u{1F468}\u200D\u{1F4BB}",
73123
+ man_with_gua_pi_mao: "\u{1F472}",
73124
+ man_with_probing_cane: "\u{1F468}\u200D\u{1F9AF}",
73125
+ man_with_turban: "\u{1F473}\u200D\u2642",
73126
+ man_with_veil: "\u{1F470}\u200D\u2642",
73127
+ mandarin: "\u{1F34A}",
73128
+ mango: "\u{1F96D}",
73129
+ mans_shoe: "\u{1F45E}",
73130
+ mantelpiece_clock: "\u{1F570}",
73131
+ manual_wheelchair: "\u{1F9BD}",
73132
+ maple_leaf: "\u{1F341}",
73133
+ maracas: "\u{1FA87}",
73134
+ marshall_islands: "\u{1F1F2}\u200D\u{1F1ED}",
73135
+ martial_arts_uniform: "\u{1F94B}",
73136
+ martinique: "\u{1F1F2}\u200D\u{1F1F6}",
73137
+ mask: "\u{1F637}",
73138
+ massage: "\u{1F486}",
73139
+ massage_man: "\u{1F486}\u200D\u2642",
73140
+ massage_woman: "\u{1F486}\u200D\u2640",
73141
+ mate: "\u{1F9C9}",
73142
+ mauritania: "\u{1F1F2}\u200D\u{1F1F7}",
73143
+ mauritius: "\u{1F1F2}\u200D\u{1F1FA}",
73144
+ mayotte: "\u{1F1FE}\u200D\u{1F1F9}",
73145
+ meat_on_bone: "\u{1F356}",
73146
+ mechanic: "\u{1F9D1}\u200D\u{1F527}",
73147
+ mechanical_arm: "\u{1F9BE}",
73148
+ mechanical_leg: "\u{1F9BF}",
73149
+ medal_military: "\u{1F396}",
73150
+ medal_sports: "\u{1F3C5}",
73151
+ medical_symbol: "\u2695",
73152
+ mega: "\u{1F4E3}",
73153
+ melon: "\u{1F348}",
73154
+ melting_face: "\u{1FAE0}",
73155
+ memo: "\u{1F4DD}",
73156
+ men_wrestling: "\u{1F93C}\u200D\u2642",
73157
+ mending_heart: "\u2764\u200D\u{1FA79}",
73158
+ menorah: "\u{1F54E}",
73159
+ mens: "\u{1F6B9}",
73160
+ mermaid: "\u{1F9DC}\u200D\u2640",
73161
+ merman: "\u{1F9DC}\u200D\u2642",
73162
+ merperson: "\u{1F9DC}",
73163
+ metal: "\u{1F918}",
73164
+ metro: "\u{1F687}",
73165
+ mexico: "\u{1F1F2}\u200D\u{1F1FD}",
73166
+ microbe: "\u{1F9A0}",
73167
+ micronesia: "\u{1F1EB}\u200D\u{1F1F2}",
73168
+ microphone: "\u{1F3A4}",
73169
+ microscope: "\u{1F52C}",
73170
+ middle_finger: "\u{1F595}",
73171
+ military_helmet: "\u{1FA96}",
73172
+ milk_glass: "\u{1F95B}",
73173
+ milky_way: "\u{1F30C}",
73174
+ minibus: "\u{1F690}",
73175
+ minidisc: "\u{1F4BD}",
73176
+ mirror: "\u{1FA9E}",
73177
+ mirror_ball: "\u{1FAA9}",
73178
+ mobile_phone_off: "\u{1F4F4}",
73179
+ moldova: "\u{1F1F2}\u200D\u{1F1E9}",
73180
+ monaco: "\u{1F1F2}\u200D\u{1F1E8}",
73181
+ money_mouth_face: "\u{1F911}",
73182
+ money_with_wings: "\u{1F4B8}",
73183
+ moneybag: "\u{1F4B0}",
73184
+ mongolia: "\u{1F1F2}\u200D\u{1F1F3}",
73185
+ monkey: "\u{1F412}",
73186
+ monkey_face: "\u{1F435}",
73187
+ monocle_face: "\u{1F9D0}",
73188
+ monorail: "\u{1F69D}",
73189
+ montenegro: "\u{1F1F2}\u200D\u{1F1EA}",
73190
+ montserrat: "\u{1F1F2}\u200D\u{1F1F8}",
73191
+ moon: "\u{1F314}",
73192
+ moon_cake: "\u{1F96E}",
73193
+ moose: "\u{1FACE}",
73194
+ morocco: "\u{1F1F2}\u200D\u{1F1E6}",
73195
+ mortar_board: "\u{1F393}",
73196
+ mosque: "\u{1F54C}",
73197
+ mosquito: "\u{1F99F}",
73198
+ motor_boat: "\u{1F6E5}",
73199
+ motor_scooter: "\u{1F6F5}",
73200
+ motorcycle: "\u{1F3CD}",
73201
+ motorized_wheelchair: "\u{1F9BC}",
73202
+ motorway: "\u{1F6E3}",
73203
+ mount_fuji: "\u{1F5FB}",
73204
+ mountain: "\u26F0",
73205
+ mountain_bicyclist: "\u{1F6B5}",
73206
+ mountain_biking_man: "\u{1F6B5}\u200D\u2642",
73207
+ mountain_biking_woman: "\u{1F6B5}\u200D\u2640",
73208
+ mountain_cableway: "\u{1F6A0}",
73209
+ mountain_railway: "\u{1F69E}",
73210
+ mountain_snow: "\u{1F3D4}",
73211
+ mouse: "\u{1F42D}",
73212
+ mouse2: "\u{1F401}",
73213
+ mouse_trap: "\u{1FAA4}",
73214
+ movie_camera: "\u{1F3A5}",
73215
+ moyai: "\u{1F5FF}",
73216
+ mozambique: "\u{1F1F2}\u200D\u{1F1FF}",
73217
+ mrs_claus: "\u{1F936}",
73218
+ muscle: "\u{1F4AA}",
73219
+ mushroom: "\u{1F344}",
73220
+ musical_keyboard: "\u{1F3B9}",
73221
+ musical_note: "\u{1F3B5}",
73222
+ musical_score: "\u{1F3BC}",
73223
+ mute: "\u{1F507}",
73224
+ mx_claus: "\u{1F9D1}\u200D\u{1F384}",
73225
+ myanmar: "\u{1F1F2}\u200D\u{1F1F2}",
73226
+ nail_care: "\u{1F485}",
73227
+ name_badge: "\u{1F4DB}",
73228
+ namibia: "\u{1F1F3}\u200D\u{1F1E6}",
73229
+ national_park: "\u{1F3DE}",
73230
+ nauru: "\u{1F1F3}\u200D\u{1F1F7}",
73231
+ nauseated_face: "\u{1F922}",
73232
+ nazar_amulet: "\u{1F9FF}",
73233
+ necktie: "\u{1F454}",
73234
+ negative_squared_cross_mark: "\u274E",
73235
+ nepal: "\u{1F1F3}\u200D\u{1F1F5}",
73236
+ nerd_face: "\u{1F913}",
73237
+ nest_with_eggs: "\u{1FABA}",
73238
+ nesting_dolls: "\u{1FA86}",
73239
+ netherlands: "\u{1F1F3}\u200D\u{1F1F1}",
73240
+ neutral_face: "\u{1F610}",
73241
+ new: "\u{1F195}",
73242
+ new_caledonia: "\u{1F1F3}\u200D\u{1F1E8}",
73243
+ new_moon: "\u{1F311}",
73244
+ new_moon_with_face: "\u{1F31A}",
73245
+ new_zealand: "\u{1F1F3}\u200D\u{1F1FF}",
73246
+ newspaper: "\u{1F4F0}",
73247
+ newspaper_roll: "\u{1F5DE}",
73248
+ next_track_button: "\u23ED",
73249
+ ng: "\u{1F196}",
73250
+ ng_man: "\u{1F645}\u200D\u2642",
73251
+ ng_woman: "\u{1F645}\u200D\u2640",
73252
+ nicaragua: "\u{1F1F3}\u200D\u{1F1EE}",
73253
+ niger: "\u{1F1F3}\u200D\u{1F1EA}",
73254
+ nigeria: "\u{1F1F3}\u200D\u{1F1EC}",
73255
+ night_with_stars: "\u{1F303}",
73256
+ nine: "9\u200D\u20E3",
73257
+ ninja: "\u{1F977}",
73258
+ niue: "\u{1F1F3}\u200D\u{1F1FA}",
73259
+ no_bell: "\u{1F515}",
73260
+ no_bicycles: "\u{1F6B3}",
73261
+ no_entry: "\u26D4",
73262
+ no_entry_sign: "\u{1F6AB}",
73263
+ no_good: "\u{1F645}",
73264
+ no_good_man: "\u{1F645}\u200D\u2642",
73265
+ no_good_woman: "\u{1F645}\u200D\u2640",
73266
+ no_mobile_phones: "\u{1F4F5}",
73267
+ no_mouth: "\u{1F636}",
73268
+ no_pedestrians: "\u{1F6B7}",
73269
+ no_smoking: "\u{1F6AD}",
73270
+ "non-potable_water": "\u{1F6B1}",
73271
+ norfolk_island: "\u{1F1F3}\u200D\u{1F1EB}",
73272
+ north_korea: "\u{1F1F0}\u200D\u{1F1F5}",
73273
+ northern_mariana_islands: "\u{1F1F2}\u200D\u{1F1F5}",
73274
+ norway: "\u{1F1F3}\u200D\u{1F1F4}",
73275
+ nose: "\u{1F443}",
73276
+ notebook: "\u{1F4D3}",
73277
+ notebook_with_decorative_cover: "\u{1F4D4}",
73278
+ notes: "\u{1F3B6}",
73279
+ nut_and_bolt: "\u{1F529}",
73280
+ o: "\u2B55",
73281
+ o2: "\u{1F17E}",
73282
+ ocean: "\u{1F30A}",
73283
+ octopus: "\u{1F419}",
73284
+ oden: "\u{1F362}",
73285
+ office: "\u{1F3E2}",
73286
+ office_worker: "\u{1F9D1}\u200D\u{1F4BC}",
73287
+ oil_drum: "\u{1F6E2}",
73288
+ ok: "\u{1F197}",
73289
+ ok_hand: "\u{1F44C}",
73290
+ ok_man: "\u{1F646}\u200D\u2642",
73291
+ ok_person: "\u{1F646}",
73292
+ ok_woman: "\u{1F646}\u200D\u2640",
73293
+ old_key: "\u{1F5DD}",
73294
+ older_adult: "\u{1F9D3}",
73295
+ older_man: "\u{1F474}",
73296
+ older_woman: "\u{1F475}",
73297
+ olive: "\u{1FAD2}",
73298
+ om: "\u{1F549}",
73299
+ oman: "\u{1F1F4}\u200D\u{1F1F2}",
73300
+ on: "\u{1F51B}",
73301
+ oncoming_automobile: "\u{1F698}",
73302
+ oncoming_bus: "\u{1F68D}",
73303
+ oncoming_police_car: "\u{1F694}",
73304
+ oncoming_taxi: "\u{1F696}",
73305
+ one: "1\u200D\u20E3",
73306
+ one_piece_swimsuit: "\u{1FA71}",
73307
+ onion: "\u{1F9C5}",
73308
+ open_book: "\u{1F4D6}",
73309
+ open_file_folder: "\u{1F4C2}",
73310
+ open_hands: "\u{1F450}",
73311
+ open_mouth: "\u{1F62E}",
73312
+ open_umbrella: "\u2602",
73313
+ ophiuchus: "\u26CE",
73314
+ orange: "\u{1F34A}",
73315
+ orange_book: "\u{1F4D9}",
73316
+ orange_circle: "\u{1F7E0}",
73317
+ orange_heart: "\u{1F9E1}",
73318
+ orange_square: "\u{1F7E7}",
73319
+ orangutan: "\u{1F9A7}",
73320
+ orthodox_cross: "\u2626",
73321
+ otter: "\u{1F9A6}",
73322
+ outbox_tray: "\u{1F4E4}",
73323
+ owl: "\u{1F989}",
73324
+ ox: "\u{1F402}",
73325
+ oyster: "\u{1F9AA}",
73326
+ package: "\u{1F4E6}",
73327
+ page_facing_up: "\u{1F4C4}",
73328
+ page_with_curl: "\u{1F4C3}",
73329
+ pager: "\u{1F4DF}",
73330
+ paintbrush: "\u{1F58C}",
73331
+ pakistan: "\u{1F1F5}\u200D\u{1F1F0}",
73332
+ palau: "\u{1F1F5}\u200D\u{1F1FC}",
73333
+ palestinian_territories: "\u{1F1F5}\u200D\u{1F1F8}",
73334
+ palm_down_hand: "\u{1FAF3}",
73335
+ palm_tree: "\u{1F334}",
73336
+ palm_up_hand: "\u{1FAF4}",
73337
+ palms_up_together: "\u{1F932}",
73338
+ panama: "\u{1F1F5}\u200D\u{1F1E6}",
73339
+ pancakes: "\u{1F95E}",
73340
+ panda_face: "\u{1F43C}",
73341
+ paperclip: "\u{1F4CE}",
73342
+ paperclips: "\u{1F587}",
73343
+ papua_new_guinea: "\u{1F1F5}\u200D\u{1F1EC}",
73344
+ parachute: "\u{1FA82}",
73345
+ paraguay: "\u{1F1F5}\u200D\u{1F1FE}",
73346
+ parasol_on_ground: "\u26F1",
73347
+ parking: "\u{1F17F}",
73348
+ parrot: "\u{1F99C}",
73349
+ part_alternation_mark: "\u303D",
73350
+ partly_sunny: "\u26C5",
73351
+ partying_face: "\u{1F973}",
73352
+ passenger_ship: "\u{1F6F3}",
73353
+ passport_control: "\u{1F6C2}",
73354
+ pause_button: "\u23F8",
73355
+ paw_prints: "\u{1F43E}",
73356
+ pea_pod: "\u{1FADB}",
73357
+ peace_symbol: "\u262E",
73358
+ peach: "\u{1F351}",
73359
+ peacock: "\u{1F99A}",
73360
+ peanuts: "\u{1F95C}",
73361
+ pear: "\u{1F350}",
73362
+ pen: "\u{1F58A}",
73363
+ pencil: "\u{1F4DD}",
73364
+ pencil2: "\u270F",
73365
+ penguin: "\u{1F427}",
73366
+ pensive: "\u{1F614}",
73367
+ people_holding_hands: "\u{1F9D1}\u200D\u{1F91D}\u200D\u{1F9D1}",
73368
+ people_hugging: "\u{1FAC2}",
73369
+ performing_arts: "\u{1F3AD}",
73370
+ persevere: "\u{1F623}",
73371
+ person_bald: "\u{1F9D1}\u200D\u{1F9B2}",
73372
+ person_curly_hair: "\u{1F9D1}\u200D\u{1F9B1}",
73373
+ person_feeding_baby: "\u{1F9D1}\u200D\u{1F37C}",
73374
+ person_fencing: "\u{1F93A}",
73375
+ person_in_manual_wheelchair: "\u{1F9D1}\u200D\u{1F9BD}",
73376
+ person_in_motorized_wheelchair: "\u{1F9D1}\u200D\u{1F9BC}",
73377
+ person_in_tuxedo: "\u{1F935}",
73378
+ person_red_hair: "\u{1F9D1}\u200D\u{1F9B0}",
73379
+ person_white_hair: "\u{1F9D1}\u200D\u{1F9B3}",
73380
+ person_with_crown: "\u{1FAC5}",
73381
+ person_with_probing_cane: "\u{1F9D1}\u200D\u{1F9AF}",
73382
+ person_with_turban: "\u{1F473}",
73383
+ person_with_veil: "\u{1F470}",
73384
+ peru: "\u{1F1F5}\u200D\u{1F1EA}",
73385
+ petri_dish: "\u{1F9EB}",
73386
+ philippines: "\u{1F1F5}\u200D\u{1F1ED}",
73387
+ phone: "\u260E",
73388
+ pick: "\u26CF",
73389
+ pickup_truck: "\u{1F6FB}",
73390
+ pie: "\u{1F967}",
73391
+ pig: "\u{1F437}",
73392
+ pig2: "\u{1F416}",
73393
+ pig_nose: "\u{1F43D}",
73394
+ pill: "\u{1F48A}",
73395
+ pilot: "\u{1F9D1}\u200D\u2708",
73396
+ pinata: "\u{1FA85}",
73397
+ pinched_fingers: "\u{1F90C}",
73398
+ pinching_hand: "\u{1F90F}",
73399
+ pineapple: "\u{1F34D}",
73400
+ ping_pong: "\u{1F3D3}",
73401
+ pink_heart: "\u{1FA77}",
73402
+ pirate_flag: "\u{1F3F4}\u200D\u2620",
73403
+ pisces: "\u2653",
73404
+ pitcairn_islands: "\u{1F1F5}\u200D\u{1F1F3}",
73405
+ pizza: "\u{1F355}",
73406
+ placard: "\u{1FAA7}",
73407
+ place_of_worship: "\u{1F6D0}",
73408
+ plate_with_cutlery: "\u{1F37D}",
73409
+ play_or_pause_button: "\u23EF",
73410
+ playground_slide: "\u{1F6DD}",
73411
+ pleading_face: "\u{1F97A}",
73412
+ plunger: "\u{1FAA0}",
73413
+ point_down: "\u{1F447}",
73414
+ point_left: "\u{1F448}",
73415
+ point_right: "\u{1F449}",
73416
+ point_up: "\u261D",
73417
+ point_up_2: "\u{1F446}",
73418
+ poland: "\u{1F1F5}\u200D\u{1F1F1}",
73419
+ polar_bear: "\u{1F43B}\u200D\u2744",
73420
+ police_car: "\u{1F693}",
73421
+ police_officer: "\u{1F46E}",
73422
+ policeman: "\u{1F46E}\u200D\u2642",
73423
+ policewoman: "\u{1F46E}\u200D\u2640",
73424
+ poodle: "\u{1F429}",
73425
+ poop: "\u{1F4A9}",
73426
+ popcorn: "\u{1F37F}",
73427
+ portugal: "\u{1F1F5}\u200D\u{1F1F9}",
73428
+ post_office: "\u{1F3E3}",
73429
+ postal_horn: "\u{1F4EF}",
73430
+ postbox: "\u{1F4EE}",
73431
+ potable_water: "\u{1F6B0}",
73432
+ potato: "\u{1F954}",
73433
+ potted_plant: "\u{1FAB4}",
73434
+ pouch: "\u{1F45D}",
73435
+ poultry_leg: "\u{1F357}",
73436
+ pound: "\u{1F4B7}",
73437
+ pouring_liquid: "\u{1FAD7}",
73438
+ pout: "\u{1F621}",
73439
+ pouting_cat: "\u{1F63E}",
73440
+ pouting_face: "\u{1F64E}",
73441
+ pouting_man: "\u{1F64E}\u200D\u2642",
73442
+ pouting_woman: "\u{1F64E}\u200D\u2640",
73443
+ pray: "\u{1F64F}",
73444
+ prayer_beads: "\u{1F4FF}",
73445
+ pregnant_man: "\u{1FAC3}",
73446
+ pregnant_person: "\u{1FAC4}",
73447
+ pregnant_woman: "\u{1F930}",
73448
+ pretzel: "\u{1F968}",
73449
+ previous_track_button: "\u23EE",
73450
+ prince: "\u{1F934}",
73451
+ princess: "\u{1F478}",
73452
+ printer: "\u{1F5A8}",
73453
+ probing_cane: "\u{1F9AF}",
73454
+ puerto_rico: "\u{1F1F5}\u200D\u{1F1F7}",
73455
+ punch: "\u{1F44A}",
73456
+ purple_circle: "\u{1F7E3}",
73457
+ purple_heart: "\u{1F49C}",
73458
+ purple_square: "\u{1F7EA}",
73459
+ purse: "\u{1F45B}",
73460
+ pushpin: "\u{1F4CC}",
73461
+ put_litter_in_its_place: "\u{1F6AE}",
73462
+ qatar: "\u{1F1F6}\u200D\u{1F1E6}",
73463
+ question: "\u2753",
73464
+ rabbit: "\u{1F430}",
73465
+ rabbit2: "\u{1F407}",
73466
+ raccoon: "\u{1F99D}",
73467
+ racehorse: "\u{1F40E}",
73468
+ racing_car: "\u{1F3CE}",
73469
+ radio: "\u{1F4FB}",
73470
+ radio_button: "\u{1F518}",
73471
+ radioactive: "\u2622",
73472
+ rage: "\u{1F621}",
73473
+ railway_car: "\u{1F683}",
73474
+ railway_track: "\u{1F6E4}",
73475
+ rainbow: "\u{1F308}",
73476
+ rainbow_flag: "\u{1F3F3}\u200D\u{1F308}",
73477
+ raised_back_of_hand: "\u{1F91A}",
73478
+ raised_eyebrow: "\u{1F928}",
73479
+ raised_hand: "\u270B",
73480
+ raised_hand_with_fingers_splayed: "\u{1F590}",
73481
+ raised_hands: "\u{1F64C}",
73482
+ raising_hand: "\u{1F64B}",
73483
+ raising_hand_man: "\u{1F64B}\u200D\u2642",
73484
+ raising_hand_woman: "\u{1F64B}\u200D\u2640",
73485
+ ram: "\u{1F40F}",
73486
+ ramen: "\u{1F35C}",
73487
+ rat: "\u{1F400}",
73488
+ razor: "\u{1FA92}",
73489
+ receipt: "\u{1F9FE}",
73490
+ record_button: "\u23FA",
73491
+ recycle: "\u267B",
73492
+ red_car: "\u{1F697}",
73493
+ red_circle: "\u{1F534}",
73494
+ red_envelope: "\u{1F9E7}",
73495
+ red_haired_man: "\u{1F468}\u200D\u{1F9B0}",
73496
+ red_haired_woman: "\u{1F469}\u200D\u{1F9B0}",
73497
+ red_square: "\u{1F7E5}",
73498
+ registered: "\xAE",
73499
+ relaxed: "\u263A",
73500
+ relieved: "\u{1F60C}",
73501
+ reminder_ribbon: "\u{1F397}",
73502
+ repeat: "\u{1F501}",
73503
+ repeat_one: "\u{1F502}",
73504
+ rescue_worker_helmet: "\u26D1",
73505
+ restroom: "\u{1F6BB}",
73506
+ reunion: "\u{1F1F7}\u200D\u{1F1EA}",
73507
+ revolving_hearts: "\u{1F49E}",
73508
+ rewind: "\u23EA",
73509
+ rhinoceros: "\u{1F98F}",
73510
+ ribbon: "\u{1F380}",
73511
+ rice: "\u{1F35A}",
73512
+ rice_ball: "\u{1F359}",
73513
+ rice_cracker: "\u{1F358}",
73514
+ rice_scene: "\u{1F391}",
73515
+ right_anger_bubble: "\u{1F5EF}",
73516
+ rightwards_hand: "\u{1FAF1}",
73517
+ rightwards_pushing_hand: "\u{1FAF8}",
73518
+ ring: "\u{1F48D}",
73519
+ ring_buoy: "\u{1F6DF}",
73520
+ ringed_planet: "\u{1FA90}",
73521
+ robot: "\u{1F916}",
73522
+ rock: "\u{1FAA8}",
73523
+ rocket: "\u{1F680}",
73524
+ rofl: "\u{1F923}",
73525
+ roll_eyes: "\u{1F644}",
73526
+ roll_of_paper: "\u{1F9FB}",
73527
+ roller_coaster: "\u{1F3A2}",
73528
+ roller_skate: "\u{1F6FC}",
73529
+ romania: "\u{1F1F7}\u200D\u{1F1F4}",
73530
+ rooster: "\u{1F413}",
73531
+ rose: "\u{1F339}",
73532
+ rosette: "\u{1F3F5}",
73533
+ rotating_light: "\u{1F6A8}",
73534
+ round_pushpin: "\u{1F4CD}",
73535
+ rowboat: "\u{1F6A3}",
73536
+ rowing_man: "\u{1F6A3}\u200D\u2642",
73537
+ rowing_woman: "\u{1F6A3}\u200D\u2640",
73538
+ ru: "\u{1F1F7}\u200D\u{1F1FA}",
73539
+ rugby_football: "\u{1F3C9}",
73540
+ runner: "\u{1F3C3}",
73541
+ running: "\u{1F3C3}",
73542
+ running_man: "\u{1F3C3}\u200D\u2642",
73543
+ running_shirt_with_sash: "\u{1F3BD}",
73544
+ running_woman: "\u{1F3C3}\u200D\u2640",
73545
+ rwanda: "\u{1F1F7}\u200D\u{1F1FC}",
73546
+ sa: "\u{1F202}",
73547
+ safety_pin: "\u{1F9F7}",
73548
+ safety_vest: "\u{1F9BA}",
73549
+ sagittarius: "\u2650",
73550
+ sailboat: "\u26F5",
73551
+ sake: "\u{1F376}",
73552
+ salt: "\u{1F9C2}",
73553
+ saluting_face: "\u{1FAE1}",
73554
+ samoa: "\u{1F1FC}\u200D\u{1F1F8}",
73555
+ san_marino: "\u{1F1F8}\u200D\u{1F1F2}",
73556
+ sandal: "\u{1F461}",
73557
+ sandwich: "\u{1F96A}",
73558
+ santa: "\u{1F385}",
73559
+ sao_tome_principe: "\u{1F1F8}\u200D\u{1F1F9}",
73560
+ sari: "\u{1F97B}",
73561
+ sassy_man: "\u{1F481}\u200D\u2642",
73562
+ sassy_woman: "\u{1F481}\u200D\u2640",
73563
+ satellite: "\u{1F4E1}",
73564
+ satisfied: "\u{1F606}",
73565
+ saudi_arabia: "\u{1F1F8}\u200D\u{1F1E6}",
73566
+ sauna_man: "\u{1F9D6}\u200D\u2642",
73567
+ sauna_person: "\u{1F9D6}",
73568
+ sauna_woman: "\u{1F9D6}\u200D\u2640",
73569
+ sauropod: "\u{1F995}",
73570
+ saxophone: "\u{1F3B7}",
73571
+ scarf: "\u{1F9E3}",
73572
+ school: "\u{1F3EB}",
73573
+ school_satchel: "\u{1F392}",
73574
+ scientist: "\u{1F9D1}\u200D\u{1F52C}",
73575
+ scissors: "\u2702",
73576
+ scorpion: "\u{1F982}",
73577
+ scorpius: "\u264F",
73578
+ scotland: "\u{1F3F4}\u200D\u{E0067}\u200D\u{E0062}\u200D\u{E0073}\u200D\u{E0063}\u200D\u{E0074}\u200D\u{E007F}",
73579
+ scream: "\u{1F631}",
73580
+ scream_cat: "\u{1F640}",
73581
+ screwdriver: "\u{1FA9B}",
73582
+ scroll: "\u{1F4DC}",
73583
+ seal: "\u{1F9AD}",
73584
+ seat: "\u{1F4BA}",
73585
+ secret: "\u3299",
73586
+ see_no_evil: "\u{1F648}",
73587
+ seedling: "\u{1F331}",
73588
+ selfie: "\u{1F933}",
73589
+ senegal: "\u{1F1F8}\u200D\u{1F1F3}",
73590
+ serbia: "\u{1F1F7}\u200D\u{1F1F8}",
73591
+ service_dog: "\u{1F415}\u200D\u{1F9BA}",
73592
+ seven: "7\u200D\u20E3",
73593
+ sewing_needle: "\u{1FAA1}",
73594
+ seychelles: "\u{1F1F8}\u200D\u{1F1E8}",
73595
+ shaking_face: "\u{1FAE8}",
73596
+ shallow_pan_of_food: "\u{1F958}",
73597
+ shamrock: "\u2618",
73598
+ shark: "\u{1F988}",
73599
+ shaved_ice: "\u{1F367}",
73600
+ sheep: "\u{1F411}",
73601
+ shell: "\u{1F41A}",
73602
+ shield: "\u{1F6E1}",
73603
+ shinto_shrine: "\u26E9",
73604
+ ship: "\u{1F6A2}",
73605
+ shirt: "\u{1F455}",
73606
+ shit: "\u{1F4A9}",
73607
+ shoe: "\u{1F45E}",
73608
+ shopping: "\u{1F6CD}",
73609
+ shopping_cart: "\u{1F6D2}",
73610
+ shorts: "\u{1FA73}",
73611
+ shower: "\u{1F6BF}",
73612
+ shrimp: "\u{1F990}",
73613
+ shrug: "\u{1F937}",
73614
+ shushing_face: "\u{1F92B}",
73615
+ sierra_leone: "\u{1F1F8}\u200D\u{1F1F1}",
73616
+ signal_strength: "\u{1F4F6}",
73617
+ singapore: "\u{1F1F8}\u200D\u{1F1EC}",
73618
+ singer: "\u{1F9D1}\u200D\u{1F3A4}",
73619
+ sint_maarten: "\u{1F1F8}\u200D\u{1F1FD}",
73620
+ six: "6\u200D\u20E3",
73621
+ six_pointed_star: "\u{1F52F}",
73622
+ skateboard: "\u{1F6F9}",
73623
+ ski: "\u{1F3BF}",
73624
+ skier: "\u26F7",
73625
+ skull: "\u{1F480}",
73626
+ skull_and_crossbones: "\u2620",
73627
+ skunk: "\u{1F9A8}",
73628
+ sled: "\u{1F6F7}",
73629
+ sleeping: "\u{1F634}",
73630
+ sleeping_bed: "\u{1F6CC}",
73631
+ sleepy: "\u{1F62A}",
73632
+ slightly_frowning_face: "\u{1F641}",
73633
+ slightly_smiling_face: "\u{1F642}",
73634
+ slot_machine: "\u{1F3B0}",
73635
+ sloth: "\u{1F9A5}",
73636
+ slovakia: "\u{1F1F8}\u200D\u{1F1F0}",
73637
+ slovenia: "\u{1F1F8}\u200D\u{1F1EE}",
73638
+ small_airplane: "\u{1F6E9}",
73639
+ small_blue_diamond: "\u{1F539}",
73640
+ small_orange_diamond: "\u{1F538}",
73641
+ small_red_triangle: "\u{1F53A}",
73642
+ small_red_triangle_down: "\u{1F53B}",
73643
+ smile: "\u{1F604}",
73644
+ smile_cat: "\u{1F638}",
73645
+ smiley: "\u{1F603}",
73646
+ smiley_cat: "\u{1F63A}",
73647
+ smiling_face_with_tear: "\u{1F972}",
73648
+ smiling_face_with_three_hearts: "\u{1F970}",
73649
+ smiling_imp: "\u{1F608}",
73650
+ smirk: "\u{1F60F}",
73651
+ smirk_cat: "\u{1F63C}",
73652
+ smoking: "\u{1F6AC}",
73653
+ snail: "\u{1F40C}",
73654
+ snake: "\u{1F40D}",
73655
+ sneezing_face: "\u{1F927}",
73656
+ snowboarder: "\u{1F3C2}",
73657
+ snowflake: "\u2744",
73658
+ snowman: "\u26C4",
73659
+ snowman_with_snow: "\u2603",
73660
+ soap: "\u{1F9FC}",
73661
+ sob: "\u{1F62D}",
73662
+ soccer: "\u26BD",
73663
+ socks: "\u{1F9E6}",
73664
+ softball: "\u{1F94E}",
73665
+ solomon_islands: "\u{1F1F8}\u200D\u{1F1E7}",
73666
+ somalia: "\u{1F1F8}\u200D\u{1F1F4}",
73667
+ soon: "\u{1F51C}",
73668
+ sos: "\u{1F198}",
73669
+ sound: "\u{1F509}",
73670
+ south_africa: "\u{1F1FF}\u200D\u{1F1E6}",
73671
+ south_georgia_south_sandwich_islands: "\u{1F1EC}\u200D\u{1F1F8}",
73672
+ south_sudan: "\u{1F1F8}\u200D\u{1F1F8}",
73673
+ space_invader: "\u{1F47E}",
73674
+ spades: "\u2660",
73675
+ spaghetti: "\u{1F35D}",
73676
+ sparkle: "\u2747",
73677
+ sparkler: "\u{1F387}",
73678
+ sparkles: "\u2728",
73679
+ sparkling_heart: "\u{1F496}",
73680
+ speak_no_evil: "\u{1F64A}",
73681
+ speaker: "\u{1F508}",
73682
+ speaking_head: "\u{1F5E3}",
73683
+ speech_balloon: "\u{1F4AC}",
73684
+ speedboat: "\u{1F6A4}",
73685
+ spider: "\u{1F577}",
73686
+ spider_web: "\u{1F578}",
73687
+ spiral_calendar: "\u{1F5D3}",
73688
+ spiral_notepad: "\u{1F5D2}",
73689
+ sponge: "\u{1F9FD}",
73690
+ spoon: "\u{1F944}",
73691
+ squid: "\u{1F991}",
73692
+ sri_lanka: "\u{1F1F1}\u200D\u{1F1F0}",
73693
+ st_barthelemy: "\u{1F1E7}\u200D\u{1F1F1}",
73694
+ st_helena: "\u{1F1F8}\u200D\u{1F1ED}",
73695
+ st_kitts_nevis: "\u{1F1F0}\u200D\u{1F1F3}",
73696
+ st_lucia: "\u{1F1F1}\u200D\u{1F1E8}",
73697
+ st_martin: "\u{1F1F2}\u200D\u{1F1EB}",
73698
+ st_pierre_miquelon: "\u{1F1F5}\u200D\u{1F1F2}",
73699
+ st_vincent_grenadines: "\u{1F1FB}\u200D\u{1F1E8}",
73700
+ stadium: "\u{1F3DF}",
73701
+ standing_man: "\u{1F9CD}\u200D\u2642",
73702
+ standing_person: "\u{1F9CD}",
73703
+ standing_woman: "\u{1F9CD}\u200D\u2640",
73704
+ star: "\u2B50",
73705
+ star2: "\u{1F31F}",
73706
+ star_and_crescent: "\u262A",
73707
+ star_of_david: "\u2721",
73708
+ star_struck: "\u{1F929}",
73709
+ stars: "\u{1F320}",
73710
+ station: "\u{1F689}",
73711
+ statue_of_liberty: "\u{1F5FD}",
73712
+ steam_locomotive: "\u{1F682}",
73713
+ stethoscope: "\u{1FA7A}",
73714
+ stew: "\u{1F372}",
73715
+ stop_button: "\u23F9",
73716
+ stop_sign: "\u{1F6D1}",
73717
+ stopwatch: "\u23F1",
73718
+ straight_ruler: "\u{1F4CF}",
73719
+ strawberry: "\u{1F353}",
73720
+ stuck_out_tongue: "\u{1F61B}",
73721
+ stuck_out_tongue_closed_eyes: "\u{1F61D}",
73722
+ stuck_out_tongue_winking_eye: "\u{1F61C}",
73723
+ student: "\u{1F9D1}\u200D\u{1F393}",
73724
+ studio_microphone: "\u{1F399}",
73725
+ stuffed_flatbread: "\u{1F959}",
73726
+ sudan: "\u{1F1F8}\u200D\u{1F1E9}",
73727
+ sun_behind_large_cloud: "\u{1F325}",
73728
+ sun_behind_rain_cloud: "\u{1F326}",
73729
+ sun_behind_small_cloud: "\u{1F324}",
73730
+ sun_with_face: "\u{1F31E}",
73731
+ sunflower: "\u{1F33B}",
73732
+ sunglasses: "\u{1F60E}",
73733
+ sunny: "\u2600",
73734
+ sunrise: "\u{1F305}",
73735
+ sunrise_over_mountains: "\u{1F304}",
73736
+ superhero: "\u{1F9B8}",
73737
+ superhero_man: "\u{1F9B8}\u200D\u2642",
73738
+ superhero_woman: "\u{1F9B8}\u200D\u2640",
73739
+ supervillain: "\u{1F9B9}",
73740
+ supervillain_man: "\u{1F9B9}\u200D\u2642",
73741
+ supervillain_woman: "\u{1F9B9}\u200D\u2640",
73742
+ surfer: "\u{1F3C4}",
73743
+ surfing_man: "\u{1F3C4}\u200D\u2642",
73744
+ surfing_woman: "\u{1F3C4}\u200D\u2640",
73745
+ suriname: "\u{1F1F8}\u200D\u{1F1F7}",
73746
+ sushi: "\u{1F363}",
73747
+ suspension_railway: "\u{1F69F}",
73748
+ svalbard_jan_mayen: "\u{1F1F8}\u200D\u{1F1EF}",
73749
+ swan: "\u{1F9A2}",
73750
+ swaziland: "\u{1F1F8}\u200D\u{1F1FF}",
73751
+ sweat: "\u{1F613}",
73752
+ sweat_drops: "\u{1F4A6}",
73753
+ sweat_smile: "\u{1F605}",
73754
+ sweden: "\u{1F1F8}\u200D\u{1F1EA}",
73755
+ sweet_potato: "\u{1F360}",
73756
+ swim_brief: "\u{1FA72}",
73757
+ swimmer: "\u{1F3CA}",
73758
+ swimming_man: "\u{1F3CA}\u200D\u2642",
73759
+ swimming_woman: "\u{1F3CA}\u200D\u2640",
73760
+ switzerland: "\u{1F1E8}\u200D\u{1F1ED}",
73761
+ symbols: "\u{1F523}",
73762
+ synagogue: "\u{1F54D}",
73763
+ syria: "\u{1F1F8}\u200D\u{1F1FE}",
73764
+ syringe: "\u{1F489}",
73765
+ "t-rex": "\u{1F996}",
73766
+ taco: "\u{1F32E}",
73767
+ tada: "\u{1F389}",
73768
+ taiwan: "\u{1F1F9}\u200D\u{1F1FC}",
73769
+ tajikistan: "\u{1F1F9}\u200D\u{1F1EF}",
73770
+ takeout_box: "\u{1F961}",
73771
+ tamale: "\u{1FAD4}",
73772
+ tanabata_tree: "\u{1F38B}",
73773
+ tangerine: "\u{1F34A}",
73774
+ tanzania: "\u{1F1F9}\u200D\u{1F1FF}",
73775
+ taurus: "\u2649",
73776
+ taxi: "\u{1F695}",
73777
+ tea: "\u{1F375}",
73778
+ teacher: "\u{1F9D1}\u200D\u{1F3EB}",
73779
+ teapot: "\u{1FAD6}",
73780
+ technologist: "\u{1F9D1}\u200D\u{1F4BB}",
73781
+ teddy_bear: "\u{1F9F8}",
73782
+ telephone: "\u260E",
73783
+ telephone_receiver: "\u{1F4DE}",
73784
+ telescope: "\u{1F52D}",
73785
+ tennis: "\u{1F3BE}",
73786
+ tent: "\u26FA",
73787
+ test_tube: "\u{1F9EA}",
73788
+ thailand: "\u{1F1F9}\u200D\u{1F1ED}",
73789
+ thermometer: "\u{1F321}",
73790
+ thinking: "\u{1F914}",
73791
+ thong_sandal: "\u{1FA74}",
73792
+ thought_balloon: "\u{1F4AD}",
73793
+ thread: "\u{1F9F5}",
73794
+ three: "3\u200D\u20E3",
73795
+ thumbsdown: "\u{1F44E}",
73796
+ thumbsup: "\u{1F44D}",
73797
+ ticket: "\u{1F3AB}",
73798
+ tickets: "\u{1F39F}",
73799
+ tiger: "\u{1F42F}",
73800
+ tiger2: "\u{1F405}",
73801
+ timer_clock: "\u23F2",
73802
+ timor_leste: "\u{1F1F9}\u200D\u{1F1F1}",
73803
+ tipping_hand_man: "\u{1F481}\u200D\u2642",
73804
+ tipping_hand_person: "\u{1F481}",
73805
+ tipping_hand_woman: "\u{1F481}\u200D\u2640",
73806
+ tired_face: "\u{1F62B}",
73807
+ tm: "\u2122",
73808
+ togo: "\u{1F1F9}\u200D\u{1F1EC}",
73809
+ toilet: "\u{1F6BD}",
73810
+ tokelau: "\u{1F1F9}\u200D\u{1F1F0}",
73811
+ tokyo_tower: "\u{1F5FC}",
73812
+ tomato: "\u{1F345}",
73813
+ tonga: "\u{1F1F9}\u200D\u{1F1F4}",
73814
+ tongue: "\u{1F445}",
73815
+ toolbox: "\u{1F9F0}",
73816
+ tooth: "\u{1F9B7}",
73817
+ toothbrush: "\u{1FAA5}",
73818
+ top: "\u{1F51D}",
73819
+ tophat: "\u{1F3A9}",
73820
+ tornado: "\u{1F32A}",
73821
+ tr: "\u{1F1F9}\u200D\u{1F1F7}",
73822
+ trackball: "\u{1F5B2}",
73823
+ tractor: "\u{1F69C}",
73824
+ traffic_light: "\u{1F6A5}",
73825
+ train: "\u{1F68B}",
73826
+ train2: "\u{1F686}",
73827
+ tram: "\u{1F68A}",
73828
+ transgender_flag: "\u{1F3F3}\u200D\u26A7",
73829
+ transgender_symbol: "\u26A7",
73830
+ triangular_flag_on_post: "\u{1F6A9}",
73831
+ triangular_ruler: "\u{1F4D0}",
73832
+ trident: "\u{1F531}",
73833
+ trinidad_tobago: "\u{1F1F9}\u200D\u{1F1F9}",
73834
+ tristan_da_cunha: "\u{1F1F9}\u200D\u{1F1E6}",
73835
+ triumph: "\u{1F624}",
73836
+ troll: "\u{1F9CC}",
73837
+ trolleybus: "\u{1F68E}",
73838
+ trophy: "\u{1F3C6}",
73839
+ tropical_drink: "\u{1F379}",
73840
+ tropical_fish: "\u{1F420}",
73841
+ truck: "\u{1F69A}",
73842
+ trumpet: "\u{1F3BA}",
73843
+ tshirt: "\u{1F455}",
73844
+ tulip: "\u{1F337}",
73845
+ tumbler_glass: "\u{1F943}",
73846
+ tunisia: "\u{1F1F9}\u200D\u{1F1F3}",
73847
+ turkey: "\u{1F983}",
73848
+ turkmenistan: "\u{1F1F9}\u200D\u{1F1F2}",
73849
+ turks_caicos_islands: "\u{1F1F9}\u200D\u{1F1E8}",
73850
+ turtle: "\u{1F422}",
73851
+ tuvalu: "\u{1F1F9}\u200D\u{1F1FB}",
73852
+ tv: "\u{1F4FA}",
73853
+ twisted_rightwards_arrows: "\u{1F500}",
73854
+ two: "2\u200D\u20E3",
73855
+ two_hearts: "\u{1F495}",
73856
+ two_men_holding_hands: "\u{1F46C}",
73857
+ two_women_holding_hands: "\u{1F46D}",
73858
+ u5272: "\u{1F239}",
73859
+ u5408: "\u{1F234}",
73860
+ u55b6: "\u{1F23A}",
73861
+ u6307: "\u{1F22F}",
73862
+ u6708: "\u{1F237}",
73863
+ u6709: "\u{1F236}",
73864
+ u6e80: "\u{1F235}",
73865
+ u7121: "\u{1F21A}",
73866
+ u7533: "\u{1F238}",
73867
+ u7981: "\u{1F232}",
73868
+ u7a7a: "\u{1F233}",
73869
+ uganda: "\u{1F1FA}\u200D\u{1F1EC}",
73870
+ uk: "\u{1F1EC}\u200D\u{1F1E7}",
73871
+ ukraine: "\u{1F1FA}\u200D\u{1F1E6}",
73872
+ umbrella: "\u2614",
73873
+ unamused: "\u{1F612}",
73874
+ underage: "\u{1F51E}",
73875
+ unicorn: "\u{1F984}",
73876
+ united_arab_emirates: "\u{1F1E6}\u200D\u{1F1EA}",
73877
+ united_nations: "\u{1F1FA}\u200D\u{1F1F3}",
73878
+ unlock: "\u{1F513}",
73879
+ up: "\u{1F199}",
73880
+ upside_down_face: "\u{1F643}",
73881
+ uruguay: "\u{1F1FA}\u200D\u{1F1FE}",
73882
+ us: "\u{1F1FA}\u200D\u{1F1F8}",
73883
+ us_outlying_islands: "\u{1F1FA}\u200D\u{1F1F2}",
73884
+ us_virgin_islands: "\u{1F1FB}\u200D\u{1F1EE}",
73885
+ uzbekistan: "\u{1F1FA}\u200D\u{1F1FF}",
73886
+ v: "\u270C",
73887
+ vampire: "\u{1F9DB}",
73888
+ vampire_man: "\u{1F9DB}\u200D\u2642",
73889
+ vampire_woman: "\u{1F9DB}\u200D\u2640",
73890
+ vanuatu: "\u{1F1FB}\u200D\u{1F1FA}",
73891
+ vatican_city: "\u{1F1FB}\u200D\u{1F1E6}",
73892
+ venezuela: "\u{1F1FB}\u200D\u{1F1EA}",
73893
+ vertical_traffic_light: "\u{1F6A6}",
73894
+ vhs: "\u{1F4FC}",
73895
+ vibration_mode: "\u{1F4F3}",
73896
+ video_camera: "\u{1F4F9}",
73897
+ video_game: "\u{1F3AE}",
73898
+ vietnam: "\u{1F1FB}\u200D\u{1F1F3}",
73899
+ violin: "\u{1F3BB}",
73900
+ virgo: "\u264D",
73901
+ volcano: "\u{1F30B}",
73902
+ volleyball: "\u{1F3D0}",
73903
+ vomiting_face: "\u{1F92E}",
73904
+ vs: "\u{1F19A}",
73905
+ vulcan_salute: "\u{1F596}",
73906
+ waffle: "\u{1F9C7}",
73907
+ wales: "\u{1F3F4}\u200D\u{E0067}\u200D\u{E0062}\u200D\u{E0077}\u200D\u{E006C}\u200D\u{E0073}\u200D\u{E007F}",
73908
+ walking: "\u{1F6B6}",
73909
+ walking_man: "\u{1F6B6}\u200D\u2642",
73910
+ walking_woman: "\u{1F6B6}\u200D\u2640",
73911
+ wallis_futuna: "\u{1F1FC}\u200D\u{1F1EB}",
73912
+ waning_crescent_moon: "\u{1F318}",
73913
+ waning_gibbous_moon: "\u{1F316}",
73914
+ warning: "\u26A0",
73915
+ wastebasket: "\u{1F5D1}",
73916
+ watch: "\u231A",
73917
+ water_buffalo: "\u{1F403}",
73918
+ water_polo: "\u{1F93D}",
73919
+ watermelon: "\u{1F349}",
73920
+ wave: "\u{1F44B}",
73921
+ wavy_dash: "\u3030",
73922
+ waxing_crescent_moon: "\u{1F312}",
73923
+ waxing_gibbous_moon: "\u{1F314}",
73924
+ wc: "\u{1F6BE}",
73925
+ weary: "\u{1F629}",
73926
+ wedding: "\u{1F492}",
73927
+ weight_lifting: "\u{1F3CB}",
73928
+ weight_lifting_man: "\u{1F3CB}\u200D\u2642",
73929
+ weight_lifting_woman: "\u{1F3CB}\u200D\u2640",
73930
+ western_sahara: "\u{1F1EA}\u200D\u{1F1ED}",
73931
+ whale: "\u{1F433}",
73932
+ whale2: "\u{1F40B}",
73933
+ wheel: "\u{1F6DE}",
73934
+ wheel_of_dharma: "\u2638",
73935
+ wheelchair: "\u267F",
73936
+ white_check_mark: "\u2705",
73937
+ white_circle: "\u26AA",
73938
+ white_flag: "\u{1F3F3}",
73939
+ white_flower: "\u{1F4AE}",
73940
+ white_haired_man: "\u{1F468}\u200D\u{1F9B3}",
73941
+ white_haired_woman: "\u{1F469}\u200D\u{1F9B3}",
73942
+ white_heart: "\u{1F90D}",
73943
+ white_large_square: "\u2B1C",
73944
+ white_medium_small_square: "\u25FD",
73945
+ white_medium_square: "\u25FB",
73946
+ white_small_square: "\u25AB",
73947
+ white_square_button: "\u{1F533}",
73948
+ wilted_flower: "\u{1F940}",
73949
+ wind_chime: "\u{1F390}",
73950
+ wind_face: "\u{1F32C}",
73951
+ window: "\u{1FA9F}",
73952
+ wine_glass: "\u{1F377}",
73953
+ wing: "\u{1FABD}",
73954
+ wink: "\u{1F609}",
73955
+ wireless: "\u{1F6DC}",
73956
+ wolf: "\u{1F43A}",
73957
+ woman: "\u{1F469}",
73958
+ woman_artist: "\u{1F469}\u200D\u{1F3A8}",
73959
+ woman_astronaut: "\u{1F469}\u200D\u{1F680}",
73960
+ woman_beard: "\u{1F9D4}\u200D\u2640",
73961
+ woman_cartwheeling: "\u{1F938}\u200D\u2640",
73962
+ woman_cook: "\u{1F469}\u200D\u{1F373}",
73963
+ woman_dancing: "\u{1F483}",
73964
+ woman_facepalming: "\u{1F926}\u200D\u2640",
73965
+ woman_factory_worker: "\u{1F469}\u200D\u{1F3ED}",
73966
+ woman_farmer: "\u{1F469}\u200D\u{1F33E}",
73967
+ woman_feeding_baby: "\u{1F469}\u200D\u{1F37C}",
73968
+ woman_firefighter: "\u{1F469}\u200D\u{1F692}",
73969
+ woman_health_worker: "\u{1F469}\u200D\u2695",
73970
+ woman_in_manual_wheelchair: "\u{1F469}\u200D\u{1F9BD}",
73971
+ woman_in_motorized_wheelchair: "\u{1F469}\u200D\u{1F9BC}",
73972
+ woman_in_tuxedo: "\u{1F935}\u200D\u2640",
73973
+ woman_judge: "\u{1F469}\u200D\u2696",
73974
+ woman_juggling: "\u{1F939}\u200D\u2640",
73975
+ woman_mechanic: "\u{1F469}\u200D\u{1F527}",
73976
+ woman_office_worker: "\u{1F469}\u200D\u{1F4BC}",
73977
+ woman_pilot: "\u{1F469}\u200D\u2708",
73978
+ woman_playing_handball: "\u{1F93E}\u200D\u2640",
73979
+ woman_playing_water_polo: "\u{1F93D}\u200D\u2640",
73980
+ woman_scientist: "\u{1F469}\u200D\u{1F52C}",
73981
+ woman_shrugging: "\u{1F937}\u200D\u2640",
73982
+ woman_singer: "\u{1F469}\u200D\u{1F3A4}",
73983
+ woman_student: "\u{1F469}\u200D\u{1F393}",
73984
+ woman_teacher: "\u{1F469}\u200D\u{1F3EB}",
73985
+ woman_technologist: "\u{1F469}\u200D\u{1F4BB}",
73986
+ woman_with_headscarf: "\u{1F9D5}",
73987
+ woman_with_probing_cane: "\u{1F469}\u200D\u{1F9AF}",
73988
+ woman_with_turban: "\u{1F473}\u200D\u2640",
73989
+ woman_with_veil: "\u{1F470}\u200D\u2640",
73990
+ womans_clothes: "\u{1F45A}",
73991
+ womans_hat: "\u{1F452}",
73992
+ women_wrestling: "\u{1F93C}\u200D\u2640",
73993
+ womens: "\u{1F6BA}",
73994
+ wood: "\u{1FAB5}",
73995
+ woozy_face: "\u{1F974}",
73996
+ world_map: "\u{1F5FA}",
73997
+ worm: "\u{1FAB1}",
73998
+ worried: "\u{1F61F}",
73999
+ wrench: "\u{1F527}",
74000
+ wrestling: "\u{1F93C}",
74001
+ writing_hand: "\u270D",
74002
+ x: "\u274C",
74003
+ x_ray: "\u{1FA7B}",
74004
+ yarn: "\u{1F9F6}",
74005
+ yawning_face: "\u{1F971}",
74006
+ yellow_circle: "\u{1F7E1}",
74007
+ yellow_heart: "\u{1F49B}",
74008
+ yellow_square: "\u{1F7E8}",
74009
+ yemen: "\u{1F1FE}\u200D\u{1F1EA}",
74010
+ yen: "\u{1F4B4}",
74011
+ yin_yang: "\u262F",
74012
+ yo_yo: "\u{1FA80}",
74013
+ yum: "\u{1F60B}",
74014
+ zambia: "\u{1F1FF}\u200D\u{1F1F2}",
74015
+ zany_face: "\u{1F92A}",
74016
+ zap: "\u26A1",
74017
+ zebra: "\u{1F993}",
74018
+ zero: "0\u200D\u20E3",
74019
+ zimbabwe: "\u{1F1FF}\u200D\u{1F1FC}",
74020
+ zipper_mouth_face: "\u{1F910}",
74021
+ zombie: "\u{1F9DF}",
74022
+ zombie_man: "\u{1F9DF}\u200D\u2642",
74023
+ zombie_woman: "\u{1F9DF}\u200D\u2640",
74024
+ zzz: "\u{1F4A4}"
74025
+ };
74026
+
72107
74027
  // src/remarkGithubEmoji.ts
72108
74028
  var remarkGithubEmoji = () => {
72109
74029
  return (tree) => {
@@ -76615,6 +78535,9 @@ var remark = (ctx) => {
76615
78535
  remarkRemoveComments,
76616
78536
  remarkDirective,
76617
78537
  dist_default,
78538
+ remarkDirectivePyide_default(ctx),
78539
+ remarkDirectiveWebide_default(ctx),
78540
+ remarkDirectiveOnlineIde_default(ctx),
76618
78541
  remarkDirectivePagelist_default(ctx),
76619
78542
  remarkLink_default(ctx),
76620
78543
  remarkImageAttrs_default(ctx),
@@ -76635,8 +78558,6 @@ var remark = (ctx) => {
76635
78558
  remarkDirectiveTiles_default(ctx),
76636
78559
  remarkDirectiveTabs_default(ctx),
76637
78560
  remarkDirectiveSqlIde_default(ctx),
76638
- remarkDirectivePyide_default(ctx),
76639
- remarkDirectiveOnlineIde_default(ctx),
76640
78561
  remarkDirectivePlantuml_default(ctx),
76641
78562
  remarkDirectiveSlideshow_default(ctx),
76642
78563
  remarkDirectiveScratchblock_default(ctx),
@@ -76645,7 +78566,6 @@ var remark = (ctx) => {
76645
78566
  remarkDirectiveExcalidraw_default(ctx),
76646
78567
  remarkDirectiveStruktog_default(ctx),
76647
78568
  remarkDirectiveGeogebra_default(ctx),
76648
- remarkDirectiveWebide_default(ctx),
76649
78569
  remarkDirectiveH5P_default(ctx),
76650
78570
  remarkDirectiveJSXGraph_default(ctx),
76651
78571
  remarkDirectiveMultievent_default(ctx),