@voithos-labs/aragonite 0.10.1

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.
Files changed (900) hide show
  1. package/LICENSE +661 -0
  2. package/README.md +365 -0
  3. package/THIRD-PARTY-NOTICES.md +102 -0
  4. package/dist/a11y-strings.d.ts +46 -0
  5. package/dist/a11y-strings.js +62 -0
  6. package/dist/action-contracts.d.ts +301 -0
  7. package/dist/action-contracts.js +5 -0
  8. package/dist/active-editor.d.ts +16 -0
  9. package/dist/active-editor.js +67 -0
  10. package/dist/ambient/ambient-cursor.d.ts +41 -0
  11. package/dist/ambient/ambient-cursor.js +120 -0
  12. package/dist/ambient/ambient-dom.d.ts +9 -0
  13. package/dist/ambient/ambient-dom.js +102 -0
  14. package/dist/assert.d.ts +6 -0
  15. package/dist/assert.js +17 -0
  16. package/dist/block-component.d.ts +274 -0
  17. package/dist/block-component.js +43 -0
  18. package/dist/block-id.d.ts +14 -0
  19. package/dist/block-id.js +34 -0
  20. package/dist/bounded-memo.d.ts +14 -0
  21. package/dist/bounded-memo.js +32 -0
  22. package/dist/components/BlockDragHandle.svelte +66 -0
  23. package/dist/components/BlockDragHandle.svelte.d.ts +18 -0
  24. package/dist/components/BlockHost.svelte +328 -0
  25. package/dist/components/BlockHost.svelte.d.ts +15 -0
  26. package/dist/components/BlockList.svelte +114 -0
  27. package/dist/components/BlockList.svelte.d.ts +16 -0
  28. package/dist/components/DecorationOverlay.svelte +156 -0
  29. package/dist/components/DecorationOverlay.svelte.d.ts +14 -0
  30. package/dist/components/Editor.svelte +1849 -0
  31. package/dist/components/Editor.svelte.d.ts +49 -0
  32. package/dist/components/GapCaret.svelte +226 -0
  33. package/dist/components/GapCaret.svelte.d.ts +9 -0
  34. package/dist/components/SearchBar.svelte +243 -0
  35. package/dist/components/SearchBar.svelte.d.ts +7 -0
  36. package/dist/components/SelectionOverlay.svelte +171 -0
  37. package/dist/components/SelectionOverlay.svelte.d.ts +14 -0
  38. package/dist/components/block-content-selector.d.ts +12 -0
  39. package/dist/components/block-content-selector.js +12 -0
  40. package/dist/components/blocks/BlockquoteBlock.svelte +32 -0
  41. package/dist/components/blocks/BlockquoteBlock.svelte.d.ts +11 -0
  42. package/dist/components/blocks/ThematicBreakBlock.svelte +156 -0
  43. package/dist/components/blocks/ThematicBreakBlock.svelte.d.ts +17 -0
  44. package/dist/components/blocks/code/CodeBlock.svelte +726 -0
  45. package/dist/components/blocks/code/CodeBlock.svelte.d.ts +23 -0
  46. package/dist/components/blocks/code/CodeLanguageChip.svelte +127 -0
  47. package/dist/components/blocks/code/CodeLanguageChip.svelte.d.ts +14 -0
  48. package/dist/components/blocks/code/code-beforeinput.d.ts +30 -0
  49. package/dist/components/blocks/code/code-beforeinput.js +40 -0
  50. package/dist/components/blocks/code/code-bootstrap.d.ts +8 -0
  51. package/dist/components/blocks/code/code-bootstrap.js +54 -0
  52. package/dist/components/blocks/code/code-editing.d.ts +28 -0
  53. package/dist/components/blocks/code/code-editing.js +79 -0
  54. package/dist/components/blocks/code/code-enter.d.ts +22 -0
  55. package/dist/components/blocks/code/code-enter.js +19 -0
  56. package/dist/components/blocks/code/code-fence-boundary.d.ts +77 -0
  57. package/dist/components/blocks/code/code-fence-boundary.js +169 -0
  58. package/dist/components/blocks/code/code-fence-exit.d.ts +24 -0
  59. package/dist/components/blocks/code/code-fence-exit.js +36 -0
  60. package/dist/components/blocks/code/code-indent.d.ts +14 -0
  61. package/dist/components/blocks/code/code-indent.js +87 -0
  62. package/dist/components/blocks/code/code-languages.d.ts +15 -0
  63. package/dist/components/blocks/code/code-languages.js +30 -0
  64. package/dist/components/blocks/code/code-paste-surface.d.ts +6 -0
  65. package/dist/components/blocks/code/code-paste-surface.js +29 -0
  66. package/dist/components/blocks/code/code-paste.d.ts +24 -0
  67. package/dist/components/blocks/code/code-paste.js +21 -0
  68. package/dist/components/blocks/code/code-renderer.d.ts +18 -0
  69. package/dist/components/blocks/code/code-renderer.js +249 -0
  70. package/dist/components/blocks/directive/DirectiveContainerBlock.svelte +51 -0
  71. package/dist/components/blocks/directive/DirectiveContainerBlock.svelte.d.ts +11 -0
  72. package/dist/components/blocks/directive/activate-directives.d.ts +7 -0
  73. package/dist/components/blocks/directive/activate-directives.js +23 -0
  74. package/dist/components/blocks/editable-leaf.d.ts +126 -0
  75. package/dist/components/blocks/editable-leaf.js +410 -0
  76. package/dist/components/blocks/editable-surface.d.ts +209 -0
  77. package/dist/components/blocks/editable-surface.js +331 -0
  78. package/dist/components/blocks/list/ListBlock.svelte +162 -0
  79. package/dist/components/blocks/list/ListBlock.svelte.d.ts +11 -0
  80. package/dist/components/blocks/list/ListItemBlock.svelte +324 -0
  81. package/dist/components/blocks/list/ListItemBlock.svelte.d.ts +14 -0
  82. package/dist/components/blocks/list/task-checkbox.d.ts +3 -0
  83. package/dist/components/blocks/list/task-checkbox.js +33 -0
  84. package/dist/components/blocks/plain-text-backend.d.ts +21 -0
  85. package/dist/components/blocks/plain-text-backend.js +47 -0
  86. package/dist/components/blocks/surface-wiring.svelte.d.ts +18 -0
  87. package/dist/components/blocks/surface-wiring.svelte.js +68 -0
  88. package/dist/components/blocks/table/TableActionMenu.svelte +267 -0
  89. package/dist/components/blocks/table/TableActionMenu.svelte.d.ts +15 -0
  90. package/dist/components/blocks/table/TableBlock.svelte +765 -0
  91. package/dist/components/blocks/table/TableBlock.svelte.d.ts +30 -0
  92. package/dist/components/blocks/table/TableCellBlock.svelte +1075 -0
  93. package/dist/components/blocks/table/TableCellBlock.svelte.d.ts +30 -0
  94. package/dist/components/blocks/table/TableGrip.svelte +91 -0
  95. package/dist/components/blocks/table/TableGrip.svelte.d.ts +8 -0
  96. package/dist/components/blocks/table/TableRowBlock.svelte +233 -0
  97. package/dist/components/blocks/table/TableRowBlock.svelte.d.ts +34 -0
  98. package/dist/components/blocks/table/cell-clipboard.d.ts +23 -0
  99. package/dist/components/blocks/table/cell-clipboard.js +34 -0
  100. package/dist/components/blocks/table/cell-keydown-plan.d.ts +37 -0
  101. package/dist/components/blocks/table/cell-keydown-plan.js +66 -0
  102. package/dist/components/blocks/table/cell-pointer.d.ts +58 -0
  103. package/dist/components/blocks/table/cell-pointer.js +153 -0
  104. package/dist/components/blocks/table/cell-render.d.ts +51 -0
  105. package/dist/components/blocks/table/cell-render.js +98 -0
  106. package/dist/components/blocks/table/cell-table-commands.d.ts +12 -0
  107. package/dist/components/blocks/table/cell-table-commands.js +21 -0
  108. package/dist/components/blocks/table/cell-x-mapping.d.ts +6 -0
  109. package/dist/components/blocks/table/cell-x-mapping.js +16 -0
  110. package/dist/components/blocks/table/selected-cells.d.ts +19 -0
  111. package/dist/components/blocks/table/selected-cells.js +35 -0
  112. package/dist/components/blocks/table/table-caret-at-point.d.ts +8 -0
  113. package/dist/components/blocks/table/table-caret-at-point.js +35 -0
  114. package/dist/components/blocks/table/table-cell-paste.d.ts +16 -0
  115. package/dist/components/blocks/table/table-cell-paste.js +75 -0
  116. package/dist/components/blocks/table/table-drag-hit-test.d.ts +5 -0
  117. package/dist/components/blocks/table/table-drag-hit-test.js +20 -0
  118. package/dist/components/blocks/table/table-drop-target.d.ts +1 -0
  119. package/dist/components/blocks/table/table-drop-target.js +16 -0
  120. package/dist/components/blocks/table/table-menu-model.d.ts +52 -0
  121. package/dist/components/blocks/table/table-menu-model.js +78 -0
  122. package/dist/components/blocks/table/table-navigation.d.ts +8 -0
  123. package/dist/components/blocks/table/table-navigation.js +22 -0
  124. package/dist/components/blocks/table/table-reorder-drag.d.ts +78 -0
  125. package/dist/components/blocks/table/table-reorder-drag.js +97 -0
  126. package/dist/components/blocks/text/TextEditableBlock.svelte +1012 -0
  127. package/dist/components/blocks/text/TextEditableBlock.svelte.d.ts +33 -0
  128. package/dist/components/blocks/text/click-snap-guard.d.ts +8 -0
  129. package/dist/components/blocks/text/click-snap-guard.js +19 -0
  130. package/dist/components/blocks/text/composition-seat.d.ts +50 -0
  131. package/dist/components/blocks/text/composition-seat.js +65 -0
  132. package/dist/components/blocks/text/construct-edge-delete.d.ts +47 -0
  133. package/dist/components/blocks/text/construct-edge-delete.js +164 -0
  134. package/dist/components/blocks/text/construct-reveal.d.ts +39 -0
  135. package/dist/components/blocks/text/construct-reveal.js +164 -0
  136. package/dist/components/blocks/text/edge-policy-dispatch.d.ts +91 -0
  137. package/dist/components/blocks/text/edge-policy-dispatch.js +457 -0
  138. package/dist/components/blocks/text/edge-seat.d.ts +42 -0
  139. package/dist/components/blocks/text/edge-seat.js +197 -0
  140. package/dist/components/blocks/text/hidden-suffix.d.ts +10 -0
  141. package/dist/components/blocks/text/hidden-suffix.js +15 -0
  142. package/dist/components/blocks/text/link-at-point.d.ts +33 -0
  143. package/dist/components/blocks/text/link-at-point.js +47 -0
  144. package/dist/components/blocks/text/link-source-bytes.d.ts +37 -0
  145. package/dist/components/blocks/text/link-source-bytes.js +161 -0
  146. package/dist/components/blocks/text/live-join-seam.d.ts +15 -0
  147. package/dist/components/blocks/text/live-join-seam.js +327 -0
  148. package/dist/components/blocks/text/live-selection-edit.d.ts +68 -0
  149. package/dist/components/blocks/text/live-selection-edit.js +120 -0
  150. package/dist/components/blocks/text/live-split-rebalance.d.ts +56 -0
  151. package/dist/components/blocks/text/live-split-rebalance.js +239 -0
  152. package/dist/components/blocks/text/marker-completion.d.ts +18 -0
  153. package/dist/components/blocks/text/marker-completion.js +29 -0
  154. package/dist/components/blocks/text/pending-mark-insert.d.ts +37 -0
  155. package/dist/components/blocks/text/pending-mark-insert.js +188 -0
  156. package/dist/components/blocks/text/screen-diff.d.ts +20 -0
  157. package/dist/components/blocks/text/screen-diff.js +39 -0
  158. package/dist/components/blocks/text/text-clipboard.d.ts +70 -0
  159. package/dist/components/blocks/text/text-clipboard.js +131 -0
  160. package/dist/components/blocks/text/text-keydown.d.ts +39 -0
  161. package/dist/components/blocks/text/text-keydown.js +80 -0
  162. package/dist/components/blocks/text/text-render.d.ts +67 -0
  163. package/dist/components/blocks/text/text-render.js +215 -0
  164. package/dist/components/blocks/text/widget-adjacency.d.ts +30 -0
  165. package/dist/components/blocks/text/widget-adjacency.js +68 -0
  166. package/dist/components/blocks/text/widget-interaction.d.ts +90 -0
  167. package/dist/components/blocks/text/widget-interaction.js +591 -0
  168. package/dist/components/blocks/widget-portal.d.ts +54 -0
  169. package/dist/components/blocks/widget-portal.js +136 -0
  170. package/dist/components/built-in-blocks.d.ts +7 -0
  171. package/dist/components/built-in-blocks.js +77 -0
  172. package/dist/components/editor-root-clipboard.d.ts +29 -0
  173. package/dist/components/editor-root-clipboard.js +105 -0
  174. package/dist/components/editor-root-keydown.d.ts +47 -0
  175. package/dist/components/editor-root-keydown.js +88 -0
  176. package/dist/components/editor-root-listeners.d.ts +44 -0
  177. package/dist/components/editor-root-listeners.js +112 -0
  178. package/dist/components/image/ImageOverlayHost.svelte +115 -0
  179. package/dist/components/image/ImageOverlayHost.svelte.d.ts +20 -0
  180. package/dist/components/image/ImageProperties.svelte +153 -0
  181. package/dist/components/image/ImageProperties.svelte.d.ts +14 -0
  182. package/dist/components/image/ImageResizeHandles.svelte +188 -0
  183. package/dist/components/image/ImageResizeHandles.svelte.d.ts +10 -0
  184. package/dist/components/image/image-edit-commit.d.ts +38 -0
  185. package/dist/components/image/image-edit-commit.js +159 -0
  186. package/dist/components/image/image-resize.d.ts +11 -0
  187. package/dist/components/image/image-resize.js +38 -0
  188. package/dist/components/image/image-source-bytes.d.ts +15 -0
  189. package/dist/components/image/image-source-bytes.js +73 -0
  190. package/dist/components/image/image-widget-editing.d.ts +7 -0
  191. package/dist/components/image/image-widget-editing.js +41 -0
  192. package/dist/components/image/widget-dom.d.ts +11 -0
  193. package/dist/components/image/widget-dom.js +110 -0
  194. package/dist/components/image/widget-selection-state.svelte.d.ts +18 -0
  195. package/dist/components/image/widget-selection-state.svelte.js +26 -0
  196. package/dist/components/link-card/LinkCard.svelte +190 -0
  197. package/dist/components/link-card/LinkCard.svelte.d.ts +18 -0
  198. package/dist/components/link-card/LinkCardHost.svelte +181 -0
  199. package/dist/components/link-card/LinkCardHost.svelte.d.ts +25 -0
  200. package/dist/components/link-card/link-card-commit.d.ts +50 -0
  201. package/dist/components/link-card/link-card-commit.js +134 -0
  202. package/dist/components/link-card/link-card-entry.d.ts +39 -0
  203. package/dist/components/link-card/link-card-entry.js +51 -0
  204. package/dist/components/link-card/link-card-state.svelte.d.ts +44 -0
  205. package/dist/components/link-card/link-card-state.svelte.js +46 -0
  206. package/dist/components/lrd-map-gate.d.ts +18 -0
  207. package/dist/components/lrd-map-gate.js +22 -0
  208. package/dist/components/paste-image-arm.d.ts +29 -0
  209. package/dist/components/paste-image-arm.js +61 -0
  210. package/dist/components/portal.d.ts +11 -0
  211. package/dist/components/portal.js +29 -0
  212. package/dist/core/directive/activate.d.ts +8 -0
  213. package/dist/core/directive/activate.js +25 -0
  214. package/dist/core/directive/container-opener.d.ts +7 -0
  215. package/dist/core/directive/container-opener.js +162 -0
  216. package/dist/core/directive/grammar.d.ts +50 -0
  217. package/dist/core/directive/grammar.js +88 -0
  218. package/dist/core/directive/kinds.d.ts +31 -0
  219. package/dist/core/directive/kinds.js +137 -0
  220. package/dist/core/directive/registry.d.ts +39 -0
  221. package/dist/core/directive/registry.js +49 -0
  222. package/dist/core/directive/text-recognizer.d.ts +8 -0
  223. package/dist/core/directive/text-recognizer.js +87 -0
  224. package/dist/core/escapable.d.ts +6 -0
  225. package/dist/core/escapable.js +6 -0
  226. package/dist/core/inline/backticks.d.ts +16 -0
  227. package/dist/core/inline/backticks.js +62 -0
  228. package/dist/core/inline/character-refs.d.ts +7 -0
  229. package/dist/core/inline/character-refs.js +70 -0
  230. package/dist/core/inline/destination-bytes.d.ts +7 -0
  231. package/dist/core/inline/destination-bytes.js +14 -0
  232. package/dist/core/inline/entity-widget.d.ts +11 -0
  233. package/dist/core/inline/entity-widget.js +21 -0
  234. package/dist/core/inline/format-toggle.d.ts +50 -0
  235. package/dist/core/inline/format-toggle.js +533 -0
  236. package/dist/core/inline/html-entities.d.ts +8 -0
  237. package/dist/core/inline/html-entities.js +2134 -0
  238. package/dist/core/inline/html-tag-grammar.d.ts +16 -0
  239. package/dist/core/inline/html-tag-grammar.js +58 -0
  240. package/dist/core/inline/image-dimensions.d.ts +6 -0
  241. package/dist/core/inline/image-dimensions.js +42 -0
  242. package/dist/core/inline/index.d.ts +42 -0
  243. package/dist/core/inline/index.js +77 -0
  244. package/dist/core/inline/inline-cache.d.ts +20 -0
  245. package/dist/core/inline/inline-cache.js +28 -0
  246. package/dist/core/inline/inline-widgets.d.ts +124 -0
  247. package/dist/core/inline/inline-widgets.js +131 -0
  248. package/dist/core/inline/link-reference-resolver.d.ts +21 -0
  249. package/dist/core/inline/link-reference-resolver.js +46 -0
  250. package/dist/core/inline/raw-html-widget.d.ts +10 -0
  251. package/dist/core/inline/raw-html-widget.js +22 -0
  252. package/dist/core/inline/scan/autolinks.d.ts +23 -0
  253. package/dist/core/inline/scan/autolinks.js +354 -0
  254. package/dist/core/inline/scan/brackets.d.ts +11 -0
  255. package/dist/core/inline/scan/brackets.js +284 -0
  256. package/dist/core/inline/scan/code-spans.d.ts +7 -0
  257. package/dist/core/inline/scan/code-spans.js +27 -0
  258. package/dist/core/inline/scan/emphasis.d.ts +10 -0
  259. package/dist/core/inline/scan/emphasis.js +276 -0
  260. package/dist/core/inline/scan/index.d.ts +7 -0
  261. package/dist/core/inline/scan/index.js +176 -0
  262. package/dist/core/inline/scan/plugin-syntax.d.ts +62 -0
  263. package/dist/core/inline/scan/plugin-syntax.js +150 -0
  264. package/dist/core/inline/scan/scan-state.d.ts +47 -0
  265. package/dist/core/inline/scan/scan-state.js +48 -0
  266. package/dist/core/inline/scan/simple-nodes.d.ts +14 -0
  267. package/dist/core/inline/scan/simple-nodes.js +53 -0
  268. package/dist/core/inline/scan/url.d.ts +12 -0
  269. package/dist/core/inline/scan/url.js +82 -0
  270. package/dist/core/inline/transparency.d.ts +8 -0
  271. package/dist/core/inline/transparency.js +39 -0
  272. package/dist/core/inline/visibility.d.ts +81 -0
  273. package/dist/core/inline/visibility.js +144 -0
  274. package/dist/core/inline/walk.d.ts +14 -0
  275. package/dist/core/inline/walk.js +29 -0
  276. package/dist/core/inline-render.d.ts +48 -0
  277. package/dist/core/inline-render.js +322 -0
  278. package/dist/core/lines.d.ts +44 -0
  279. package/dist/core/lines.js +91 -0
  280. package/dist/core/node-views.d.ts +22 -0
  281. package/dist/core/node-views.js +8 -0
  282. package/dist/core/nodes.d.ts +297 -0
  283. package/dist/core/nodes.js +83 -0
  284. package/dist/core/parser.d.ts +68 -0
  285. package/dist/core/parser.js +189 -0
  286. package/dist/core/parsers/blockquote.d.ts +17 -0
  287. package/dist/core/parsers/blockquote.js +69 -0
  288. package/dist/core/parsers/built-in-openers.d.ts +8 -0
  289. package/dist/core/parsers/built-in-openers.js +124 -0
  290. package/dist/core/parsers/fence-syntax.d.ts +24 -0
  291. package/dist/core/parsers/fence-syntax.js +44 -0
  292. package/dist/core/parsers/fenced-code.d.ts +7 -0
  293. package/dist/core/parsers/fenced-code.js +29 -0
  294. package/dist/core/parsers/heading.d.ts +3 -0
  295. package/dist/core/parsers/heading.js +6 -0
  296. package/dist/core/parsers/html-block.d.ts +17 -0
  297. package/dist/core/parsers/html-block.js +94 -0
  298. package/dist/core/parsers/indented-code.d.ts +4 -0
  299. package/dist/core/parsers/indented-code.js +41 -0
  300. package/dist/core/parsers/link-reference.d.ts +7 -0
  301. package/dist/core/parsers/link-reference.js +152 -0
  302. package/dist/core/parsers/list.d.ts +19 -0
  303. package/dist/core/parsers/list.js +133 -0
  304. package/dist/core/parsers/paragraph.d.ts +10 -0
  305. package/dist/core/parsers/paragraph.js +42 -0
  306. package/dist/core/parsers/table-completion.d.ts +13 -0
  307. package/dist/core/parsers/table-completion.js +48 -0
  308. package/dist/core/parsers/table.d.ts +18 -0
  309. package/dist/core/parsers/table.js +110 -0
  310. package/dist/core/parsers/thematic-break.d.ts +1 -0
  311. package/dist/core/parsers/thematic-break.js +19 -0
  312. package/dist/core/serializer.d.ts +15 -0
  313. package/dist/core/serializer.js +11 -0
  314. package/dist/core/terminator-escalation.d.ts +8 -0
  315. package/dist/core/terminator-escalation.js +18 -0
  316. package/dist/core/url-policy.d.ts +14 -0
  317. package/dist/core/url-policy.js +44 -0
  318. package/dist/cursor/content-offsets.d.ts +29 -0
  319. package/dist/cursor/content-offsets.js +151 -0
  320. package/dist/cursor/coordinate-spaces.d.ts +65 -0
  321. package/dist/cursor/coordinate-spaces.js +66 -0
  322. package/dist/cursor/dom-walk.d.ts +18 -0
  323. package/dist/cursor/dom-walk.js +31 -0
  324. package/dist/cursor/edge-affinity.d.ts +44 -0
  325. package/dist/cursor/edge-affinity.js +60 -0
  326. package/dist/cursor/focused-caret.d.ts +10 -0
  327. package/dist/cursor/focused-caret.js +24 -0
  328. package/dist/cursor/height-model.d.ts +24 -0
  329. package/dist/cursor/height-model.js +72 -0
  330. package/dist/cursor/height-oracle.d.ts +24 -0
  331. package/dist/cursor/height-oracle.js +94 -0
  332. package/dist/cursor/overlay-rects.d.ts +8 -0
  333. package/dist/cursor/overlay-rects.js +19 -0
  334. package/dist/cursor/overlay-remeasure.d.ts +17 -0
  335. package/dist/cursor/overlay-remeasure.js +31 -0
  336. package/dist/cursor/pending-marks.d.ts +24 -0
  337. package/dist/cursor/pending-marks.js +36 -0
  338. package/dist/cursor/point-offset.d.ts +21 -0
  339. package/dist/cursor/point-offset.js +48 -0
  340. package/dist/cursor/reveal-anchor.d.ts +30 -0
  341. package/dist/cursor/reveal-anchor.js +31 -0
  342. package/dist/cursor/reveal-source.d.ts +35 -0
  343. package/dist/cursor/reveal-source.js +51 -0
  344. package/dist/cursor/scroll-ancestors.d.ts +28 -0
  345. package/dist/cursor/scroll-ancestors.js +89 -0
  346. package/dist/cursor/scrollport.d.ts +20 -0
  347. package/dist/cursor/scrollport.js +41 -0
  348. package/dist/cursor/sticky-column.d.ts +35 -0
  349. package/dist/cursor/sticky-column.js +64 -0
  350. package/dist/cursor/sticky-measure.d.ts +16 -0
  351. package/dist/cursor/sticky-measure.js +97 -0
  352. package/dist/cursor/typography-estimates.d.ts +21 -0
  353. package/dist/cursor/typography-estimates.js +21 -0
  354. package/dist/cursor/visual-lines.d.ts +25 -0
  355. package/dist/cursor/visual-lines.js +125 -0
  356. package/dist/cursor/widget-offset.d.ts +132 -0
  357. package/dist/cursor/widget-offset.js +543 -0
  358. package/dist/debug/diagnostics-report.d.ts +17 -0
  359. package/dist/debug/diagnostics-report.js +25 -0
  360. package/dist/debug/dump-tree.d.ts +6 -0
  361. package/dist/debug/dump-tree.js +114 -0
  362. package/dist/debug/inspect.d.ts +19 -0
  363. package/dist/debug/inspect.js +116 -0
  364. package/dist/debug/interaction-trace.d.ts +39 -0
  365. package/dist/debug/interaction-trace.js +105 -0
  366. package/dist/debug/operations-log.d.ts +14 -0
  367. package/dist/debug/operations-log.js +30 -0
  368. package/dist/decorations/buckets.d.ts +40 -0
  369. package/dist/decorations/buckets.js +87 -0
  370. package/dist/decorations/decoration-state.svelte.d.ts +20 -0
  371. package/dist/decorations/decoration-state.svelte.js +195 -0
  372. package/dist/decorations/island-dom.d.ts +35 -0
  373. package/dist/decorations/island-dom.js +148 -0
  374. package/dist/decorations/reserved-attrs.d.ts +12 -0
  375. package/dist/decorations/reserved-attrs.js +47 -0
  376. package/dist/decorations/types.d.ts +68 -0
  377. package/dist/decorations/types.js +5 -0
  378. package/dist/decorations/widget-dom.d.ts +15 -0
  379. package/dist/decorations/widget-dom.js +35 -0
  380. package/dist/dev-warn.d.ts +13 -0
  381. package/dist/dev-warn.js +28 -0
  382. package/dist/editor-actions/ancestry-folds.d.ts +32 -0
  383. package/dist/editor-actions/ancestry-folds.js +106 -0
  384. package/dist/editor-actions/block-edit-core.d.ts +29 -0
  385. package/dist/editor-actions/block-edit-core.js +277 -0
  386. package/dist/editor-actions/block-edit-scope.d.ts +79 -0
  387. package/dist/editor-actions/block-edit-scope.js +76 -0
  388. package/dist/editor-actions/block-edit.d.ts +8 -0
  389. package/dist/editor-actions/block-edit.js +111 -0
  390. package/dist/editor-actions/commit/history.d.ts +9 -0
  391. package/dist/editor-actions/commit/history.js +77 -0
  392. package/dist/editor-actions/commit/text-batch.d.ts +34 -0
  393. package/dist/editor-actions/commit/text-batch.js +61 -0
  394. package/dist/editor-actions/commit/undo-controller.d.ts +7 -0
  395. package/dist/editor-actions/commit/undo-controller.js +570 -0
  396. package/dist/editor-actions/container-block-component.d.ts +85 -0
  397. package/dist/editor-actions/container-block-component.js +228 -0
  398. package/dist/editor-actions/container-edit.d.ts +7 -0
  399. package/dist/editor-actions/container-edit.js +49 -0
  400. package/dist/editor-actions/container-exit-overrides.d.ts +16 -0
  401. package/dist/editor-actions/container-exit-overrides.js +38 -0
  402. package/dist/editor-actions/deps.d.ts +60 -0
  403. package/dist/editor-actions/deps.js +1 -0
  404. package/dist/editor-actions/enter-completion.d.ts +25 -0
  405. package/dist/editor-actions/enter-completion.js +76 -0
  406. package/dist/editor-actions/focus/focus-dispatch.d.ts +36 -0
  407. package/dist/editor-actions/focus/focus-dispatch.js +106 -0
  408. package/dist/editor-actions/focus/focus-landing.d.ts +7 -0
  409. package/dist/editor-actions/focus/focus-landing.js +39 -0
  410. package/dist/editor-actions/focus/focus.d.ts +7 -0
  411. package/dist/editor-actions/focus/focus.js +74 -0
  412. package/dist/editor-actions/index.d.ts +15 -0
  413. package/dist/editor-actions/index.js +19 -0
  414. package/dist/editor-actions/inline-range-commit.d.ts +20 -0
  415. package/dist/editor-actions/inline-range-commit.js +63 -0
  416. package/dist/editor-actions/list-context.d.ts +25 -0
  417. package/dist/editor-actions/list-context.js +285 -0
  418. package/dist/editor-actions/list-overrides.d.ts +13 -0
  419. package/dist/editor-actions/list-overrides.js +26 -0
  420. package/dist/editor-actions/merge-fallback.d.ts +19 -0
  421. package/dist/editor-actions/merge-fallback.js +27 -0
  422. package/dist/editor-actions/nested/nested-actions.d.ts +65 -0
  423. package/dist/editor-actions/nested/nested-actions.js +59 -0
  424. package/dist/editor-actions/nested/nested-block-edit.d.ts +10 -0
  425. package/dist/editor-actions/nested/nested-block-edit.js +181 -0
  426. package/dist/editor-actions/nested/nested-focus.d.ts +9 -0
  427. package/dist/editor-actions/nested/nested-focus.js +30 -0
  428. package/dist/editor-actions/paste-coordinator.d.ts +4 -0
  429. package/dist/editor-actions/paste-coordinator.js +20 -0
  430. package/dist/editor-actions/plugin/chrome-leaf.d.ts +25 -0
  431. package/dist/editor-actions/plugin/chrome-leaf.js +80 -0
  432. package/dist/editor-actions/plugin/container.d.ts +137 -0
  433. package/dist/editor-actions/plugin/container.js +351 -0
  434. package/dist/editor-actions/plugin/directive-container.d.ts +13 -0
  435. package/dist/editor-actions/plugin/directive-container.js +31 -0
  436. package/dist/editor-actions/reorder-action.d.ts +17 -0
  437. package/dist/editor-actions/reorder-action.js +104 -0
  438. package/dist/editor-actions/reorder-drag.d.ts +34 -0
  439. package/dist/editor-actions/reorder-drag.js +152 -0
  440. package/dist/editor-actions/replacement-focus.d.ts +27 -0
  441. package/dist/editor-actions/replacement-focus.js +60 -0
  442. package/dist/editor-actions/search-replace.d.ts +6 -0
  443. package/dist/editor-actions/search-replace.js +145 -0
  444. package/dist/editor-actions/table-context.d.ts +34 -0
  445. package/dist/editor-actions/table-context.js +292 -0
  446. package/dist/editor-actions/unwrap-strategies.d.ts +14 -0
  447. package/dist/editor-actions/unwrap-strategies.js +131 -0
  448. package/dist/editor-actions/whole-block-focus-surface.d.ts +51 -0
  449. package/dist/editor-actions/whole-block-focus-surface.js +171 -0
  450. package/dist/editor-events.d.ts +89 -0
  451. package/dist/editor-events.js +96 -0
  452. package/dist/editor-keys.d.ts +197 -0
  453. package/dist/editor-keys.js +40 -0
  454. package/dist/editor-props.d.ts +164 -0
  455. package/dist/editor-props.js +1 -0
  456. package/dist/editor-rects.d.ts +58 -0
  457. package/dist/editor-rects.js +114 -0
  458. package/dist/env.d.ts +12 -0
  459. package/dist/env.js +20 -0
  460. package/dist/index.d.ts +27 -0
  461. package/dist/index.js +19 -0
  462. package/dist/invariants/commit-paths.d.ts +10 -0
  463. package/dist/invariants/commit-paths.js +25 -0
  464. package/dist/invariants/commit-scope.d.ts +9 -0
  465. package/dist/invariants/commit-scope.js +16 -0
  466. package/dist/invariants/context-keys.d.ts +7 -0
  467. package/dist/invariants/context-keys.js +14 -0
  468. package/dist/invariants/descriptor.d.ts +10 -0
  469. package/dist/invariants/descriptor.js +24 -0
  470. package/dist/invariants/inline-transitions.d.ts +23 -0
  471. package/dist/invariants/inline-transitions.js +52 -0
  472. package/dist/invariants/install.d.ts +36 -0
  473. package/dist/invariants/install.js +66 -0
  474. package/dist/invariants/landable-caret.d.ts +12 -0
  475. package/dist/invariants/landable-caret.js +31 -0
  476. package/dist/invariants/marker-css-parity.d.ts +10 -0
  477. package/dist/invariants/marker-css-parity.js +87 -0
  478. package/dist/invariants/node-shape.d.ts +44 -0
  479. package/dist/invariants/node-shape.js +258 -0
  480. package/dist/invariants/registry.d.ts +126 -0
  481. package/dist/invariants/registry.js +349 -0
  482. package/dist/invariants/render-fidelity.d.ts +8 -0
  483. package/dist/invariants/render-fidelity.js +33 -0
  484. package/dist/invariants/selection-endpoints.d.ts +19 -0
  485. package/dist/invariants/selection-endpoints.js +78 -0
  486. package/dist/invariants/single-node-sink.d.ts +9 -0
  487. package/dist/invariants/single-node-sink.js +16 -0
  488. package/dist/invariants/snapshot-integrity.d.ts +17 -0
  489. package/dist/invariants/snapshot-integrity.js +24 -0
  490. package/dist/invariants/split-landing.d.ts +8 -0
  491. package/dist/invariants/split-landing.js +15 -0
  492. package/dist/invariants/structural-descriptor.d.ts +21 -0
  493. package/dist/invariants/structural-descriptor.js +50 -0
  494. package/dist/perf/instruments.d.ts +49 -0
  495. package/dist/perf/instruments.js +154 -0
  496. package/dist/perf/use-mount-gauge.svelte.d.ts +1 -0
  497. package/dist/perf/use-mount-gauge.svelte.js +15 -0
  498. package/dist/plugin.d.ts +102 -0
  499. package/dist/plugin.js +156 -0
  500. package/dist/plugins/admonitions/AdmonitionBlock.svelte +144 -0
  501. package/dist/plugins/admonitions/AdmonitionBlock.svelte.d.ts +11 -0
  502. package/dist/plugins/admonitions/admonition-kind.d.ts +8 -0
  503. package/dist/plugins/admonitions/admonition-kind.js +97 -0
  504. package/dist/plugins/admonitions/convert-document.d.ts +11 -0
  505. package/dist/plugins/admonitions/convert-document.js +39 -0
  506. package/dist/plugins/admonitions/gh-alert.d.ts +13 -0
  507. package/dist/plugins/admonitions/gh-alert.js +83 -0
  508. package/dist/plugins/admonitions/github-alert-kind.d.ts +12 -0
  509. package/dist/plugins/admonitions/github-alert-kind.js +125 -0
  510. package/dist/plugins/admonitions/index.d.ts +6 -0
  511. package/dist/plugins/admonitions/index.js +8 -0
  512. package/dist/plugins/admonitions/kinds.d.ts +26 -0
  513. package/dist/plugins/admonitions/kinds.js +18 -0
  514. package/dist/plugins/admonitions/register.d.ts +7 -0
  515. package/dist/plugins/admonitions/register.js +12 -0
  516. package/dist/plugins/details/DetailsBlock.svelte +129 -0
  517. package/dist/plugins/details/DetailsBlock.svelte.d.ts +11 -0
  518. package/dist/plugins/details/details-disclosure.svelte.d.ts +17 -0
  519. package/dist/plugins/details/details-disclosure.svelte.js +24 -0
  520. package/dist/plugins/details/details-kind.d.ts +25 -0
  521. package/dist/plugins/details/details-kind.js +237 -0
  522. package/dist/plugins/details/index.d.ts +2 -0
  523. package/dist/plugins/details/index.js +2 -0
  524. package/dist/plugins/details/register.d.ts +6 -0
  525. package/dist/plugins/details/register.js +15 -0
  526. package/dist/plugins/emoji/emoji-plugin.d.ts +2 -0
  527. package/dist/plugins/emoji/emoji-plugin.js +10 -0
  528. package/dist/plugins/emoji/emoji-recognizer.d.ts +18 -0
  529. package/dist/plugins/emoji/emoji-recognizer.js +63 -0
  530. package/dist/plugins/emoji/emoji-table.d.ts +1 -0
  531. package/dist/plugins/emoji/emoji-table.js +1919 -0
  532. package/dist/plugins/emoji/index.d.ts +3 -0
  533. package/dist/plugins/emoji/index.js +4 -0
  534. package/dist/plugins/footnotes/FootnoteDefinition.svelte +103 -0
  535. package/dist/plugins/footnotes/FootnoteDefinition.svelte.d.ts +13 -0
  536. package/dist/plugins/footnotes/FootnoteReference.svelte +50 -0
  537. package/dist/plugins/footnotes/FootnoteReference.svelte.d.ts +4 -0
  538. package/dist/plugins/footnotes/constants.d.ts +2 -0
  539. package/dist/plugins/footnotes/constants.js +4 -0
  540. package/dist/plugins/footnotes/footnote-definition.d.ts +14 -0
  541. package/dist/plugins/footnotes/footnote-definition.js +147 -0
  542. package/dist/plugins/footnotes/footnote-lookup.d.ts +9 -0
  543. package/dist/plugins/footnotes/footnote-lookup.js +33 -0
  544. package/dist/plugins/footnotes/footnote-numbering.d.ts +23 -0
  545. package/dist/plugins/footnotes/footnote-numbering.js +78 -0
  546. package/dist/plugins/footnotes/footnote-reference.d.ts +7 -0
  547. package/dist/plugins/footnotes/footnote-reference.js +54 -0
  548. package/dist/plugins/footnotes/footnotes-plugin.d.ts +7 -0
  549. package/dist/plugins/footnotes/footnotes-plugin.js +17 -0
  550. package/dist/plugins/footnotes/index.d.ts +5 -0
  551. package/dist/plugins/footnotes/index.js +6 -0
  552. package/dist/plugins/highlight-occurrences/highlight-occurrences-plugin.d.ts +17 -0
  553. package/dist/plugins/highlight-occurrences/highlight-occurrences-plugin.js +31 -0
  554. package/dist/plugins/highlight-occurrences/index.d.ts +1 -0
  555. package/dist/plugins/highlight-occurrences/index.js +1 -0
  556. package/dist/plugins/highlight-occurrences/occurrence-source.d.ts +26 -0
  557. package/dist/plugins/highlight-occurrences/occurrence-source.js +54 -0
  558. package/dist/plugins/highlight-occurrences/occurrences.d.ts +33 -0
  559. package/dist/plugins/highlight-occurrences/occurrences.js +108 -0
  560. package/dist/plugins/latex/BlockMath.svelte +119 -0
  561. package/dist/plugins/latex/BlockMath.svelte.d.ts +21 -0
  562. package/dist/plugins/latex/MathInline.svelte +28 -0
  563. package/dist/plugins/latex/MathInline.svelte.d.ts +4 -0
  564. package/dist/plugins/latex/index.d.ts +3 -0
  565. package/dist/plugins/latex/index.js +4 -0
  566. package/dist/plugins/latex/latex-kind.d.ts +17 -0
  567. package/dist/plugins/latex/latex-kind.js +224 -0
  568. package/dist/plugins/latex/math-completion.d.ts +10 -0
  569. package/dist/plugins/latex/math-completion.js +19 -0
  570. package/dist/plugins/latex/math-renderer.d.ts +26 -0
  571. package/dist/plugins/latex/math-renderer.js +42 -0
  572. package/dist/plugins/latex/register.d.ts +10 -0
  573. package/dist/plugins/latex/register.js +23 -0
  574. package/dist/plugins/latex/renderer.d.ts +13 -0
  575. package/dist/plugins/latex/renderer.js +34 -0
  576. package/dist/plugins/mermaid/MermaidBlock.svelte +572 -0
  577. package/dist/plugins/mermaid/MermaidBlock.svelte.d.ts +11 -0
  578. package/dist/plugins/mermaid/index.d.ts +3 -0
  579. package/dist/plugins/mermaid/index.js +3 -0
  580. package/dist/plugins/mermaid/mermaid-kind.d.ts +38 -0
  581. package/dist/plugins/mermaid/mermaid-kind.js +176 -0
  582. package/dist/plugins/mermaid/mermaid-renderer.d.ts +28 -0
  583. package/dist/plugins/mermaid/mermaid-renderer.js +35 -0
  584. package/dist/plugins/mermaid/register.d.ts +10 -0
  585. package/dist/plugins/mermaid/register.js +20 -0
  586. package/dist/plugins/mermaid/renderer.d.ts +11 -0
  587. package/dist/plugins/mermaid/renderer.js +53 -0
  588. package/dist/plugins/parrot/ParrotBlock.svelte +342 -0
  589. package/dist/plugins/parrot/ParrotBlock.svelte.d.ts +21 -0
  590. package/dist/plugins/parrot/index.d.ts +1 -0
  591. package/dist/plugins/parrot/index.js +2 -0
  592. package/dist/plugins/parrot/parrot-plugin.d.ts +3 -0
  593. package/dist/plugins/parrot/parrot-plugin.js +49 -0
  594. package/dist/plugins/toc/TocBlock.svelte +218 -0
  595. package/dist/plugins/toc/TocBlock.svelte.d.ts +24 -0
  596. package/dist/plugins/toc/heading-outline.d.ts +28 -0
  597. package/dist/plugins/toc/heading-outline.js +65 -0
  598. package/dist/plugins/toc/index.d.ts +2 -0
  599. package/dist/plugins/toc/index.js +2 -0
  600. package/dist/plugins/toc/navigation-queue.d.ts +12 -0
  601. package/dist/plugins/toc/navigation-queue.js +21 -0
  602. package/dist/plugins/toc/toc-plugin.d.ts +16 -0
  603. package/dist/plugins/toc/toc-plugin.js +71 -0
  604. package/dist/presentation-mode.d.ts +32 -0
  605. package/dist/presentation-mode.js +50 -0
  606. package/dist/reactivity/block-list-state.svelte.d.ts +22 -0
  607. package/dist/reactivity/block-list-state.svelte.js +46 -0
  608. package/dist/reactivity/block-window.svelte.d.ts +41 -0
  609. package/dist/reactivity/block-window.svelte.js +93 -0
  610. package/dist/reactivity/content-version.svelte.d.ts +14 -0
  611. package/dist/reactivity/content-version.svelte.js +16 -0
  612. package/dist/reactivity/list-windowing.svelte.d.ts +100 -0
  613. package/dist/reactivity/list-windowing.svelte.js +402 -0
  614. package/dist/reactivity/measure-batch.d.ts +15 -0
  615. package/dist/reactivity/measure-batch.js +18 -0
  616. package/dist/reactivity/publish-ref.svelte.d.ts +54 -0
  617. package/dist/reactivity/publish-ref.svelte.js +128 -0
  618. package/dist/reactivity/scope-geometry.d.ts +18 -0
  619. package/dist/reactivity/scope-geometry.js +29 -0
  620. package/dist/reactivity/state-registry.d.ts +10 -0
  621. package/dist/reactivity/state-registry.js +44 -0
  622. package/dist/reactivity/use-container-windowing.svelte.d.ts +35 -0
  623. package/dist/reactivity/use-container-windowing.svelte.js +95 -0
  624. package/dist/reactivity/window-slice.d.ts +11 -0
  625. package/dist/reactivity/window-slice.js +9 -0
  626. package/dist/scan-index.d.ts +11 -0
  627. package/dist/scan-index.js +27 -0
  628. package/dist/schema/block-commands.d.ts +105 -0
  629. package/dist/schema/block-commands.js +179 -0
  630. package/dist/schema/block-completions.d.ts +33 -0
  631. package/dist/schema/block-completions.js +49 -0
  632. package/dist/schema/block-component-registry.d.ts +33 -0
  633. package/dist/schema/block-component-registry.js +33 -0
  634. package/dist/schema/block-kind-descriptor.d.ts +281 -0
  635. package/dist/schema/block-kind-descriptor.js +187 -0
  636. package/dist/schema/block-openers.d.ts +94 -0
  637. package/dist/schema/block-openers.js +150 -0
  638. package/dist/schema/built-in-descriptors.d.ts +8 -0
  639. package/dist/schema/built-in-descriptors.js +560 -0
  640. package/dist/schema/child-spans.d.ts +25 -0
  641. package/dist/schema/child-spans.js +161 -0
  642. package/dist/schema/closure.d.ts +39 -0
  643. package/dist/schema/closure.js +55 -0
  644. package/dist/schema/command-id.d.ts +20 -0
  645. package/dist/schema/command-id.js +42 -0
  646. package/dist/schema/commands.d.ts +147 -0
  647. package/dist/schema/commands.js +294 -0
  648. package/dist/schema/container-raw.d.ts +21 -0
  649. package/dist/schema/container-raw.js +43 -0
  650. package/dist/schema/container-rebuilders.d.ts +32 -0
  651. package/dist/schema/container-rebuilders.js +95 -0
  652. package/dist/schema/define-plugin-block.d.ts +15 -0
  653. package/dist/schema/define-plugin-block.js +18 -0
  654. package/dist/schema/fenced-code-raw.d.ts +43 -0
  655. package/dist/schema/fenced-code-raw.js +220 -0
  656. package/dist/schema/global-commands.d.ts +11 -0
  657. package/dist/schema/global-commands.js +40 -0
  658. package/dist/schema/inline-construct-policy.d.ts +131 -0
  659. package/dist/schema/inline-construct-policy.js +96 -0
  660. package/dist/schema/keybinding-overrides.d.ts +39 -0
  661. package/dist/schema/keybinding-overrides.js +43 -0
  662. package/dist/schema/keybindings.d.ts +36 -0
  663. package/dist/schema/keybindings.js +75 -0
  664. package/dist/schema/merge-rules.d.ts +28 -0
  665. package/dist/schema/merge-rules.js +57 -0
  666. package/dist/schema/opener-priorities.d.ts +16 -0
  667. package/dist/schema/opener-priorities.js +16 -0
  668. package/dist/schema/operations.d.ts +110 -0
  669. package/dist/schema/operations.js +6 -0
  670. package/dist/schema/plugin-activation.d.ts +13 -0
  671. package/dist/schema/plugin-activation.js +18 -0
  672. package/dist/schema/plugin-editor-context.d.ts +33 -0
  673. package/dist/schema/plugin-editor-context.js +65 -0
  674. package/dist/schema/plugin-install.d.ts +58 -0
  675. package/dist/schema/plugin-install.js +132 -0
  676. package/dist/schema/plugin-kind.d.ts +21 -0
  677. package/dist/schema/plugin-kind.js +86 -0
  678. package/dist/schema/plugin-name.d.ts +1 -0
  679. package/dist/schema/plugin-name.js +7 -0
  680. package/dist/schema/register-once.d.ts +9 -0
  681. package/dist/schema/register-once.js +35 -0
  682. package/dist/schema/registration-checks.d.ts +32 -0
  683. package/dist/schema/registration-checks.js +122 -0
  684. package/dist/schema/registration-pending.d.ts +28 -0
  685. package/dist/schema/registration-pending.js +48 -0
  686. package/dist/schema/registry-reset.d.ts +7 -0
  687. package/dist/schema/registry-reset.js +30 -0
  688. package/dist/schema/registry-view.d.ts +30 -0
  689. package/dist/schema/registry-view.js +39 -0
  690. package/dist/schema/reserved-chords.d.ts +35 -0
  691. package/dist/schema/reserved-chords.js +313 -0
  692. package/dist/schema/reserved-chrome.d.ts +23 -0
  693. package/dist/schema/reserved-chrome.js +33 -0
  694. package/dist/schema/table-cell-raw.d.ts +14 -0
  695. package/dist/schema/table-cell-raw.js +30 -0
  696. package/dist/schema/whole-block-unit.d.ts +8 -0
  697. package/dist/schema/whole-block-unit.js +12 -0
  698. package/dist/search/document-scan.d.ts +22 -0
  699. package/dist/search/document-scan.js +39 -0
  700. package/dist/search/matcher.d.ts +31 -0
  701. package/dist/search/matcher.js +70 -0
  702. package/dist/search/regex-executor.d.ts +41 -0
  703. package/dist/search/regex-executor.js +165 -0
  704. package/dist/search/replace.d.ts +15 -0
  705. package/dist/search/replace.js +29 -0
  706. package/dist/search/search-state.svelte.d.ts +59 -0
  707. package/dist/search/search-state.svelte.js +231 -0
  708. package/dist/selection/autoscroll.d.ts +26 -0
  709. package/dist/selection/autoscroll.js +91 -0
  710. package/dist/selection/block-hit-test.d.ts +37 -0
  711. package/dist/selection/block-hit-test.js +59 -0
  712. package/dist/selection/caret-doors.d.ts +20 -0
  713. package/dist/selection/caret-doors.js +44 -0
  714. package/dist/selection/caret-restore.d.ts +15 -0
  715. package/dist/selection/caret-restore.js +32 -0
  716. package/dist/selection/char-endpoint-snap.d.ts +15 -0
  717. package/dist/selection/char-endpoint-snap.js +39 -0
  718. package/dist/selection/clipboard-text.d.ts +13 -0
  719. package/dist/selection/clipboard-text.js +314 -0
  720. package/dist/selection/cross-block/clipboard.d.ts +14 -0
  721. package/dist/selection/cross-block/clipboard.js +20 -0
  722. package/dist/selection/cross-block/dispatch.d.ts +78 -0
  723. package/dist/selection/cross-block/dispatch.js +57 -0
  724. package/dist/selection/cross-block/format-range.d.ts +38 -0
  725. package/dist/selection/cross-block/format-range.js +193 -0
  726. package/dist/selection/cross-block/format-toggle.d.ts +27 -0
  727. package/dist/selection/cross-block/format-toggle.js +109 -0
  728. package/dist/selection/cross-block/keydown.d.ts +11 -0
  729. package/dist/selection/cross-block/keydown.js +339 -0
  730. package/dist/selection/cross-block/ops.d.ts +56 -0
  731. package/dist/selection/cross-block/ops.js +210 -0
  732. package/dist/selection/cross-block/paste.d.ts +8 -0
  733. package/dist/selection/cross-block/paste.js +156 -0
  734. package/dist/selection/cross-block/pointer.d.ts +19 -0
  735. package/dist/selection/cross-block/pointer.js +80 -0
  736. package/dist/selection/cross-block/type-replace.d.ts +10 -0
  737. package/dist/selection/cross-block/type-replace.js +129 -0
  738. package/dist/selection/dead-space-caret.d.ts +39 -0
  739. package/dist/selection/dead-space-caret.js +173 -0
  740. package/dist/selection/drag-pointer.d.ts +22 -0
  741. package/dist/selection/drag-pointer.js +89 -0
  742. package/dist/selection/gap-caret.d.ts +47 -0
  743. package/dist/selection/gap-caret.js +72 -0
  744. package/dist/selection/keyboard-extend.d.ts +43 -0
  745. package/dist/selection/keyboard-extend.js +257 -0
  746. package/dist/selection/native-bridge.d.ts +47 -0
  747. package/dist/selection/native-bridge.js +204 -0
  748. package/dist/selection/nearest-block.d.ts +43 -0
  749. package/dist/selection/nearest-block.js +73 -0
  750. package/dist/selection/path-lookup.d.ts +32 -0
  751. package/dist/selection/path-lookup.js +132 -0
  752. package/dist/selection/path-math.d.ts +35 -0
  753. package/dist/selection/path-math.js +90 -0
  754. package/dist/selection/pointer-session.d.ts +43 -0
  755. package/dist/selection/pointer-session.js +111 -0
  756. package/dist/selection/primitives.d.ts +75 -0
  757. package/dist/selection/primitives.js +91 -0
  758. package/dist/selection/range-delete-ceremony.d.ts +85 -0
  759. package/dist/selection/range-delete-ceremony.js +197 -0
  760. package/dist/selection/range-delete-chrome.d.ts +39 -0
  761. package/dist/selection/range-delete-chrome.js +105 -0
  762. package/dist/selection/range-delete-table-coverage.d.ts +28 -0
  763. package/dist/selection/range-delete-table-coverage.js +168 -0
  764. package/dist/selection/range-delete-table.d.ts +16 -0
  765. package/dist/selection/range-delete-table.js +347 -0
  766. package/dist/selection/range-delete.d.ts +33 -0
  767. package/dist/selection/range-delete.js +121 -0
  768. package/dist/selection/selection-description.d.ts +7 -0
  769. package/dist/selection/selection-description.js +18 -0
  770. package/dist/selection/selection-restore.d.ts +46 -0
  771. package/dist/selection/selection-restore.js +66 -0
  772. package/dist/selection/selection-state.svelte.d.ts +72 -0
  773. package/dist/selection/selection-state.svelte.js +247 -0
  774. package/dist/selection/shared-keydown.d.ts +61 -0
  775. package/dist/selection/shared-keydown.js +150 -0
  776. package/dist/selection/table-endpoint-snap.d.ts +55 -0
  777. package/dist/selection/table-endpoint-snap.js +143 -0
  778. package/dist/selection/table-rect-extend.d.ts +23 -0
  779. package/dist/selection/table-rect-extend.js +46 -0
  780. package/dist/selection/widget-range-paint.d.ts +12 -0
  781. package/dist/selection/widget-range-paint.js +44 -0
  782. package/dist/styles/editor-theme.css +151 -0
  783. package/dist/styles/editor.css +585 -0
  784. package/dist/testing/conformance-core.d.ts +45 -0
  785. package/dist/testing/conformance-core.js +105 -0
  786. package/dist/testing/container-conformance.d.ts +137 -0
  787. package/dist/testing/container-conformance.js +533 -0
  788. package/dist/testing/headless-actions.d.ts +37 -0
  789. package/dist/testing/headless-actions.js +118 -0
  790. package/dist/testing/inline-conformance.d.ts +50 -0
  791. package/dist/testing/inline-conformance.js +442 -0
  792. package/dist/testing/kind-conformance.d.ts +54 -0
  793. package/dist/testing/kind-conformance.js +325 -0
  794. package/dist/testing/mount-dom-stubs.d.ts +8 -0
  795. package/dist/testing/mount-dom-stubs.js +19 -0
  796. package/dist/testing/parse-convergence.d.ts +14 -0
  797. package/dist/testing/parse-convergence.js +81 -0
  798. package/dist/testing.d.ts +20 -0
  799. package/dist/testing.js +61 -0
  800. package/dist/tree-operations/blockquote.d.ts +18 -0
  801. package/dist/tree-operations/blockquote.js +59 -0
  802. package/dist/tree-operations/children.d.ts +17 -0
  803. package/dist/tree-operations/children.js +56 -0
  804. package/dist/tree-operations/cleanup.d.ts +10 -0
  805. package/dist/tree-operations/cleanup.js +25 -0
  806. package/dist/tree-operations/clone.d.ts +5 -0
  807. package/dist/tree-operations/clone.js +43 -0
  808. package/dist/tree-operations/container-lift.d.ts +9 -0
  809. package/dist/tree-operations/container-lift.js +29 -0
  810. package/dist/tree-operations/index.d.ts +16 -0
  811. package/dist/tree-operations/index.js +14 -0
  812. package/dist/tree-operations/list/empty-check.d.ts +7 -0
  813. package/dist/tree-operations/list/empty-check.js +19 -0
  814. package/dist/tree-operations/list/exit-replacement.d.ts +13 -0
  815. package/dist/tree-operations/list/exit-replacement.js +49 -0
  816. package/dist/tree-operations/list/item-partition.d.ts +13 -0
  817. package/dist/tree-operations/list/item-partition.js +33 -0
  818. package/dist/tree-operations/list/list-builders.d.ts +44 -0
  819. package/dist/tree-operations/list/list-builders.js +129 -0
  820. package/dist/tree-operations/list/ordered-markers.d.ts +36 -0
  821. package/dist/tree-operations/list/ordered-markers.js +114 -0
  822. package/dist/tree-operations/list/reconcile-task.d.ts +12 -0
  823. package/dist/tree-operations/list/reconcile-task.js +47 -0
  824. package/dist/tree-operations/list/sublist-separator.d.ts +13 -0
  825. package/dist/tree-operations/list/sublist-separator.js +34 -0
  826. package/dist/tree-operations/list/terminator.d.ts +17 -0
  827. package/dist/tree-operations/list/terminator.js +60 -0
  828. package/dist/tree-operations/list/unwrap-merge.d.ts +29 -0
  829. package/dist/tree-operations/list/unwrap-merge.js +202 -0
  830. package/dist/tree-operations/node-ops.d.ts +296 -0
  831. package/dist/tree-operations/node-ops.js +1428 -0
  832. package/dist/tree-operations/parse-block.d.ts +3 -0
  833. package/dist/tree-operations/parse-block.js +8 -0
  834. package/dist/tree-operations/paste/apply.d.ts +12 -0
  835. package/dist/tree-operations/paste/apply.js +75 -0
  836. package/dist/tree-operations/paste/body-write.d.ts +19 -0
  837. package/dist/tree-operations/paste/body-write.js +53 -0
  838. package/dist/tree-operations/paste/container-match.d.ts +32 -0
  839. package/dist/tree-operations/paste/container-match.js +238 -0
  840. package/dist/tree-operations/paste/container-paste.d.ts +10 -0
  841. package/dist/tree-operations/paste/container-paste.js +27 -0
  842. package/dist/tree-operations/paste/dispatch.d.ts +61 -0
  843. package/dist/tree-operations/paste/dispatch.js +138 -0
  844. package/dist/tree-operations/paste/find-enclosing-list.d.ts +8 -0
  845. package/dist/tree-operations/paste/find-enclosing-list.js +30 -0
  846. package/dist/tree-operations/paste/focus-target.d.ts +27 -0
  847. package/dist/tree-operations/paste/focus-target.js +40 -0
  848. package/dist/tree-operations/paste/hooks.d.ts +17 -0
  849. package/dist/tree-operations/paste/hooks.js +80 -0
  850. package/dist/tree-operations/paste/list-absorb.d.ts +29 -0
  851. package/dist/tree-operations/paste/list-absorb.js +106 -0
  852. package/dist/tree-operations/paste/list-break-out.d.ts +42 -0
  853. package/dist/tree-operations/paste/list-break-out.js +136 -0
  854. package/dist/tree-operations/paste/parent-scope.d.ts +17 -0
  855. package/dist/tree-operations/paste/parent-scope.js +35 -0
  856. package/dist/tree-operations/paste/paste-deps.d.ts +20 -0
  857. package/dist/tree-operations/paste/paste-deps.js +6 -0
  858. package/dist/tree-operations/paste/paste-replacement.d.ts +8 -0
  859. package/dist/tree-operations/paste/paste-replacement.js +60 -0
  860. package/dist/tree-operations/paste/paste-transforms.d.ts +25 -0
  861. package/dist/tree-operations/paste/paste-transforms.js +72 -0
  862. package/dist/tree-operations/paste/replace-block-at-parent.d.ts +29 -0
  863. package/dist/tree-operations/paste/replace-block-at-parent.js +75 -0
  864. package/dist/tree-operations/paste/strategy.d.ts +9 -0
  865. package/dist/tree-operations/paste/strategy.js +20 -0
  866. package/dist/tree-operations/paste/table-slice.d.ts +10 -0
  867. package/dist/tree-operations/paste/table-slice.js +39 -0
  868. package/dist/tree-operations/paste-surfaces.d.ts +61 -0
  869. package/dist/tree-operations/paste-surfaces.js +15 -0
  870. package/dist/tree-operations/path-mutate.d.ts +12 -0
  871. package/dist/tree-operations/path-mutate.js +20 -0
  872. package/dist/tree-operations/reorder-unit.d.ts +17 -0
  873. package/dist/tree-operations/reorder-unit.js +37 -0
  874. package/dist/tree-operations/reorder.d.ts +13 -0
  875. package/dist/tree-operations/reorder.js +57 -0
  876. package/dist/tree-operations/sharing.d.ts +18 -0
  877. package/dist/tree-operations/sharing.js +14 -0
  878. package/dist/tree-operations/splice-many.d.ts +9 -0
  879. package/dist/tree-operations/splice-many.js +22 -0
  880. package/dist/tree-operations/structural-change.d.ts +65 -0
  881. package/dist/tree-operations/structural-change.js +117 -0
  882. package/dist/tree-operations/sub-table-copy.d.ts +6 -0
  883. package/dist/tree-operations/sub-table-copy.js +43 -0
  884. package/dist/tree-operations/table-mutations.d.ts +17 -0
  885. package/dist/tree-operations/table-mutations.js +101 -0
  886. package/dist/tree-operations/unshare.d.ts +101 -0
  887. package/dist/tree-operations/unshare.js +248 -0
  888. package/dist/undo/manager.d.ts +2 -0
  889. package/dist/undo/manager.js +50 -0
  890. package/dist/undo/types.d.ts +44 -0
  891. package/dist/undo/types.js +7 -0
  892. package/docs/guide/consumer-guide.md +1098 -0
  893. package/docs/guide/directives.md +223 -0
  894. package/docs/guide/plugin-api.md +329 -0
  895. package/docs/guide/plugin-guide/conspiracy.gif +0 -0
  896. package/docs/guide/plugin-guide/parrot-frames.md +209 -0
  897. package/docs/guide/plugin-guide/parrot.gif +0 -0
  898. package/docs/guide/plugin-guide.md +1693 -0
  899. package/docs/guide/plugin-testing.md +463 -0
  900. package/package.json +238 -0
@@ -0,0 +1,1919 @@
1
+ // GENERATED by scripts/generate-emoji-table.mjs โ€” do not edit by hand.
2
+ // Source: github/gemoji db/emoji.json (each shortcode alias mapped to its glyph).
3
+ // gemoji is MIT, (c) GitHub, Inc.; see THIRD-PARTY-NOTICES.md.
4
+ // Regenerate: node scripts/generate-emoji-table.mjs
5
+ export const EMOJI_TABLE = new Map([
6
+ ["+1", "๐Ÿ‘"],
7
+ ["-1", "๐Ÿ‘Ž"],
8
+ ["100", "๐Ÿ’ฏ"],
9
+ ["1234", "๐Ÿ”ข"],
10
+ ["1st_place_medal", "๐Ÿฅ‡"],
11
+ ["2nd_place_medal", "๐Ÿฅˆ"],
12
+ ["3rd_place_medal", "๐Ÿฅ‰"],
13
+ ["8ball", "๐ŸŽฑ"],
14
+ ["a", "๐Ÿ…ฐ๏ธ"],
15
+ ["ab", "๐Ÿ†Ž"],
16
+ ["abacus", "๐Ÿงฎ"],
17
+ ["abc", "๐Ÿ”ค"],
18
+ ["abcd", "๐Ÿ”ก"],
19
+ ["accept", "๐Ÿ‰‘"],
20
+ ["accordion", "๐Ÿช—"],
21
+ ["adhesive_bandage", "๐Ÿฉน"],
22
+ ["adult", "๐Ÿง‘"],
23
+ ["aerial_tramway", "๐Ÿšก"],
24
+ ["afghanistan", "๐Ÿ‡ฆ๐Ÿ‡ซ"],
25
+ ["airplane", "โœˆ๏ธ"],
26
+ ["aland_islands", "๐Ÿ‡ฆ๐Ÿ‡ฝ"],
27
+ ["alarm_clock", "โฐ"],
28
+ ["albania", "๐Ÿ‡ฆ๐Ÿ‡ฑ"],
29
+ ["alembic", "โš—๏ธ"],
30
+ ["algeria", "๐Ÿ‡ฉ๐Ÿ‡ฟ"],
31
+ ["alien", "๐Ÿ‘ฝ"],
32
+ ["ambulance", "๐Ÿš‘"],
33
+ ["american_samoa", "๐Ÿ‡ฆ๐Ÿ‡ธ"],
34
+ ["amphora", "๐Ÿบ"],
35
+ ["anatomical_heart", "๐Ÿซ€"],
36
+ ["anchor", "โš“"],
37
+ ["andorra", "๐Ÿ‡ฆ๐Ÿ‡ฉ"],
38
+ ["angel", "๐Ÿ‘ผ"],
39
+ ["anger", "๐Ÿ’ข"],
40
+ ["angola", "๐Ÿ‡ฆ๐Ÿ‡ด"],
41
+ ["angry", "๐Ÿ˜ "],
42
+ ["anguilla", "๐Ÿ‡ฆ๐Ÿ‡ฎ"],
43
+ ["anguished", "๐Ÿ˜ง"],
44
+ ["ant", "๐Ÿœ"],
45
+ ["antarctica", "๐Ÿ‡ฆ๐Ÿ‡ถ"],
46
+ ["antigua_barbuda", "๐Ÿ‡ฆ๐Ÿ‡ฌ"],
47
+ ["apple", "๐ŸŽ"],
48
+ ["aquarius", "โ™’"],
49
+ ["argentina", "๐Ÿ‡ฆ๐Ÿ‡ท"],
50
+ ["aries", "โ™ˆ"],
51
+ ["armenia", "๐Ÿ‡ฆ๐Ÿ‡ฒ"],
52
+ ["arrow_backward", "โ—€๏ธ"],
53
+ ["arrow_double_down", "โฌ"],
54
+ ["arrow_double_up", "โซ"],
55
+ ["arrow_down", "โฌ‡๏ธ"],
56
+ ["arrow_down_small", "๐Ÿ”ฝ"],
57
+ ["arrow_forward", "โ–ถ๏ธ"],
58
+ ["arrow_heading_down", "โคต๏ธ"],
59
+ ["arrow_heading_up", "โคด๏ธ"],
60
+ ["arrow_left", "โฌ…๏ธ"],
61
+ ["arrow_lower_left", "โ†™๏ธ"],
62
+ ["arrow_lower_right", "โ†˜๏ธ"],
63
+ ["arrow_right", "โžก๏ธ"],
64
+ ["arrow_right_hook", "โ†ช๏ธ"],
65
+ ["arrow_up", "โฌ†๏ธ"],
66
+ ["arrow_up_down", "โ†•๏ธ"],
67
+ ["arrow_up_small", "๐Ÿ”ผ"],
68
+ ["arrow_upper_left", "โ†–๏ธ"],
69
+ ["arrow_upper_right", "โ†—๏ธ"],
70
+ ["arrows_clockwise", "๐Ÿ”ƒ"],
71
+ ["arrows_counterclockwise", "๐Ÿ”„"],
72
+ ["art", "๐ŸŽจ"],
73
+ ["articulated_lorry", "๐Ÿš›"],
74
+ ["artificial_satellite", "๐Ÿ›ฐ๏ธ"],
75
+ ["artist", "๐Ÿง‘โ€๐ŸŽจ"],
76
+ ["aruba", "๐Ÿ‡ฆ๐Ÿ‡ผ"],
77
+ ["ascension_island", "๐Ÿ‡ฆ๐Ÿ‡จ"],
78
+ ["asterisk", "*๏ธโƒฃ"],
79
+ ["astonished", "๐Ÿ˜ฒ"],
80
+ ["astronaut", "๐Ÿง‘โ€๐Ÿš€"],
81
+ ["athletic_shoe", "๐Ÿ‘Ÿ"],
82
+ ["atm", "๐Ÿง"],
83
+ ["atom_symbol", "โš›๏ธ"],
84
+ ["australia", "๐Ÿ‡ฆ๐Ÿ‡บ"],
85
+ ["austria", "๐Ÿ‡ฆ๐Ÿ‡น"],
86
+ ["auto_rickshaw", "๐Ÿ›บ"],
87
+ ["avocado", "๐Ÿฅ‘"],
88
+ ["axe", "๐Ÿช“"],
89
+ ["azerbaijan", "๐Ÿ‡ฆ๐Ÿ‡ฟ"],
90
+ ["b", "๐Ÿ…ฑ๏ธ"],
91
+ ["baby", "๐Ÿ‘ถ"],
92
+ ["baby_bottle", "๐Ÿผ"],
93
+ ["baby_chick", "๐Ÿค"],
94
+ ["baby_symbol", "๐Ÿšผ"],
95
+ ["back", "๐Ÿ”™"],
96
+ ["bacon", "๐Ÿฅ“"],
97
+ ["badger", "๐Ÿฆก"],
98
+ ["badminton", "๐Ÿธ"],
99
+ ["bagel", "๐Ÿฅฏ"],
100
+ ["baggage_claim", "๐Ÿ›„"],
101
+ ["baguette_bread", "๐Ÿฅ–"],
102
+ ["bahamas", "๐Ÿ‡ง๐Ÿ‡ธ"],
103
+ ["bahrain", "๐Ÿ‡ง๐Ÿ‡ญ"],
104
+ ["balance_scale", "โš–๏ธ"],
105
+ ["bald_man", "๐Ÿ‘จโ€๐Ÿฆฒ"],
106
+ ["bald_woman", "๐Ÿ‘ฉโ€๐Ÿฆฒ"],
107
+ ["ballet_shoes", "๐Ÿฉฐ"],
108
+ ["balloon", "๐ŸŽˆ"],
109
+ ["ballot_box", "๐Ÿ—ณ๏ธ"],
110
+ ["ballot_box_with_check", "โ˜‘๏ธ"],
111
+ ["bamboo", "๐ŸŽ"],
112
+ ["banana", "๐ŸŒ"],
113
+ ["bangbang", "โ€ผ๏ธ"],
114
+ ["bangladesh", "๐Ÿ‡ง๐Ÿ‡ฉ"],
115
+ ["banjo", "๐Ÿช•"],
116
+ ["bank", "๐Ÿฆ"],
117
+ ["bar_chart", "๐Ÿ“Š"],
118
+ ["barbados", "๐Ÿ‡ง๐Ÿ‡ง"],
119
+ ["barber", "๐Ÿ’ˆ"],
120
+ ["baseball", "โšพ"],
121
+ ["basket", "๐Ÿงบ"],
122
+ ["basketball", "๐Ÿ€"],
123
+ ["basketball_man", "โ›น๏ธโ€โ™‚๏ธ"],
124
+ ["basketball_woman", "โ›น๏ธโ€โ™€๏ธ"],
125
+ ["bat", "๐Ÿฆ‡"],
126
+ ["bath", "๐Ÿ›€"],
127
+ ["bathtub", "๐Ÿ›"],
128
+ ["battery", "๐Ÿ”‹"],
129
+ ["beach_umbrella", "๐Ÿ–๏ธ"],
130
+ ["beans", "๐Ÿซ˜"],
131
+ ["bear", "๐Ÿป"],
132
+ ["bearded_person", "๐Ÿง”"],
133
+ ["beaver", "๐Ÿฆซ"],
134
+ ["bed", "๐Ÿ›๏ธ"],
135
+ ["bee", "๐Ÿ"],
136
+ ["beer", "๐Ÿบ"],
137
+ ["beers", "๐Ÿป"],
138
+ ["beetle", "๐Ÿชฒ"],
139
+ ["beginner", "๐Ÿ”ฐ"],
140
+ ["belarus", "๐Ÿ‡ง๐Ÿ‡พ"],
141
+ ["belgium", "๐Ÿ‡ง๐Ÿ‡ช"],
142
+ ["belize", "๐Ÿ‡ง๐Ÿ‡ฟ"],
143
+ ["bell", "๐Ÿ””"],
144
+ ["bell_pepper", "๐Ÿซ‘"],
145
+ ["bellhop_bell", "๐Ÿ›Ž๏ธ"],
146
+ ["benin", "๐Ÿ‡ง๐Ÿ‡ฏ"],
147
+ ["bento", "๐Ÿฑ"],
148
+ ["bermuda", "๐Ÿ‡ง๐Ÿ‡ฒ"],
149
+ ["beverage_box", "๐Ÿงƒ"],
150
+ ["bhutan", "๐Ÿ‡ง๐Ÿ‡น"],
151
+ ["bicyclist", "๐Ÿšด"],
152
+ ["bike", "๐Ÿšฒ"],
153
+ ["biking_man", "๐Ÿšดโ€โ™‚๏ธ"],
154
+ ["biking_woman", "๐Ÿšดโ€โ™€๏ธ"],
155
+ ["bikini", "๐Ÿ‘™"],
156
+ ["billed_cap", "๐Ÿงข"],
157
+ ["biohazard", "โ˜ฃ๏ธ"],
158
+ ["bird", "๐Ÿฆ"],
159
+ ["birthday", "๐ŸŽ‚"],
160
+ ["bison", "๐Ÿฆฌ"],
161
+ ["biting_lip", "๐Ÿซฆ"],
162
+ ["black_bird", "๐Ÿฆโ€โฌ›"],
163
+ ["black_cat", "๐Ÿˆโ€โฌ›"],
164
+ ["black_circle", "โšซ"],
165
+ ["black_flag", "๐Ÿด"],
166
+ ["black_heart", "๐Ÿ–ค"],
167
+ ["black_joker", "๐Ÿƒ"],
168
+ ["black_large_square", "โฌ›"],
169
+ ["black_medium_small_square", "โ—พ"],
170
+ ["black_medium_square", "โ—ผ๏ธ"],
171
+ ["black_nib", "โœ’๏ธ"],
172
+ ["black_small_square", "โ–ช๏ธ"],
173
+ ["black_square_button", "๐Ÿ”ฒ"],
174
+ ["blond_haired_man", "๐Ÿ‘ฑโ€โ™‚๏ธ"],
175
+ ["blond_haired_person", "๐Ÿ‘ฑ"],
176
+ ["blond_haired_woman", "๐Ÿ‘ฑโ€โ™€๏ธ"],
177
+ ["blonde_woman", "๐Ÿ‘ฑโ€โ™€๏ธ"],
178
+ ["blossom", "๐ŸŒผ"],
179
+ ["blowfish", "๐Ÿก"],
180
+ ["blue_book", "๐Ÿ“˜"],
181
+ ["blue_car", "๐Ÿš™"],
182
+ ["blue_heart", "๐Ÿ’™"],
183
+ ["blue_square", "๐ŸŸฆ"],
184
+ ["blueberries", "๐Ÿซ"],
185
+ ["blush", "๐Ÿ˜Š"],
186
+ ["boar", "๐Ÿ—"],
187
+ ["boat", "โ›ต"],
188
+ ["bolivia", "๐Ÿ‡ง๐Ÿ‡ด"],
189
+ ["bomb", "๐Ÿ’ฃ"],
190
+ ["bone", "๐Ÿฆด"],
191
+ ["book", "๐Ÿ“–"],
192
+ ["bookmark", "๐Ÿ”–"],
193
+ ["bookmark_tabs", "๐Ÿ“‘"],
194
+ ["books", "๐Ÿ“š"],
195
+ ["boom", "๐Ÿ’ฅ"],
196
+ ["boomerang", "๐Ÿชƒ"],
197
+ ["boot", "๐Ÿ‘ข"],
198
+ ["bosnia_herzegovina", "๐Ÿ‡ง๐Ÿ‡ฆ"],
199
+ ["botswana", "๐Ÿ‡ง๐Ÿ‡ผ"],
200
+ ["bouncing_ball_man", "โ›น๏ธโ€โ™‚๏ธ"],
201
+ ["bouncing_ball_person", "โ›น๏ธ"],
202
+ ["bouncing_ball_woman", "โ›น๏ธโ€โ™€๏ธ"],
203
+ ["bouquet", "๐Ÿ’"],
204
+ ["bouvet_island", "๐Ÿ‡ง๐Ÿ‡ป"],
205
+ ["bow", "๐Ÿ™‡"],
206
+ ["bow_and_arrow", "๐Ÿน"],
207
+ ["bowing_man", "๐Ÿ™‡โ€โ™‚๏ธ"],
208
+ ["bowing_woman", "๐Ÿ™‡โ€โ™€๏ธ"],
209
+ ["bowl_with_spoon", "๐Ÿฅฃ"],
210
+ ["bowling", "๐ŸŽณ"],
211
+ ["boxing_glove", "๐ŸฅŠ"],
212
+ ["boy", "๐Ÿ‘ฆ"],
213
+ ["brain", "๐Ÿง "],
214
+ ["brazil", "๐Ÿ‡ง๐Ÿ‡ท"],
215
+ ["bread", "๐Ÿž"],
216
+ ["breast_feeding", "๐Ÿคฑ"],
217
+ ["bricks", "๐Ÿงฑ"],
218
+ ["bride_with_veil", "๐Ÿ‘ฐโ€โ™€๏ธ"],
219
+ ["bridge_at_night", "๐ŸŒ‰"],
220
+ ["briefcase", "๐Ÿ’ผ"],
221
+ ["british_indian_ocean_territory", "๐Ÿ‡ฎ๐Ÿ‡ด"],
222
+ ["british_virgin_islands", "๐Ÿ‡ป๐Ÿ‡ฌ"],
223
+ ["broccoli", "๐Ÿฅฆ"],
224
+ ["broken_heart", "๐Ÿ’”"],
225
+ ["broom", "๐Ÿงน"],
226
+ ["brown_circle", "๐ŸŸค"],
227
+ ["brown_heart", "๐ŸคŽ"],
228
+ ["brown_square", "๐ŸŸซ"],
229
+ ["brunei", "๐Ÿ‡ง๐Ÿ‡ณ"],
230
+ ["bubble_tea", "๐Ÿง‹"],
231
+ ["bubbles", "๐Ÿซง"],
232
+ ["bucket", "๐Ÿชฃ"],
233
+ ["bug", "๐Ÿ›"],
234
+ ["building_construction", "๐Ÿ—๏ธ"],
235
+ ["bulb", "๐Ÿ’ก"],
236
+ ["bulgaria", "๐Ÿ‡ง๐Ÿ‡ฌ"],
237
+ ["bullettrain_front", "๐Ÿš…"],
238
+ ["bullettrain_side", "๐Ÿš„"],
239
+ ["burkina_faso", "๐Ÿ‡ง๐Ÿ‡ซ"],
240
+ ["burrito", "๐ŸŒฏ"],
241
+ ["burundi", "๐Ÿ‡ง๐Ÿ‡ฎ"],
242
+ ["bus", "๐ŸšŒ"],
243
+ ["business_suit_levitating", "๐Ÿ•ด๏ธ"],
244
+ ["busstop", "๐Ÿš"],
245
+ ["bust_in_silhouette", "๐Ÿ‘ค"],
246
+ ["busts_in_silhouette", "๐Ÿ‘ฅ"],
247
+ ["butter", "๐Ÿงˆ"],
248
+ ["butterfly", "๐Ÿฆ‹"],
249
+ ["cactus", "๐ŸŒต"],
250
+ ["cake", "๐Ÿฐ"],
251
+ ["calendar", "๐Ÿ“†"],
252
+ ["call_me_hand", "๐Ÿค™"],
253
+ ["calling", "๐Ÿ“ฒ"],
254
+ ["cambodia", "๐Ÿ‡ฐ๐Ÿ‡ญ"],
255
+ ["camel", "๐Ÿซ"],
256
+ ["camera", "๐Ÿ“ท"],
257
+ ["camera_flash", "๐Ÿ“ธ"],
258
+ ["cameroon", "๐Ÿ‡จ๐Ÿ‡ฒ"],
259
+ ["camping", "๐Ÿ•๏ธ"],
260
+ ["canada", "๐Ÿ‡จ๐Ÿ‡ฆ"],
261
+ ["canary_islands", "๐Ÿ‡ฎ๐Ÿ‡จ"],
262
+ ["cancer", "โ™‹"],
263
+ ["candle", "๐Ÿ•ฏ๏ธ"],
264
+ ["candy", "๐Ÿฌ"],
265
+ ["canned_food", "๐Ÿฅซ"],
266
+ ["canoe", "๐Ÿ›ถ"],
267
+ ["cape_verde", "๐Ÿ‡จ๐Ÿ‡ป"],
268
+ ["capital_abcd", "๐Ÿ” "],
269
+ ["capricorn", "โ™‘"],
270
+ ["car", "๐Ÿš—"],
271
+ ["card_file_box", "๐Ÿ—ƒ๏ธ"],
272
+ ["card_index", "๐Ÿ“‡"],
273
+ ["card_index_dividers", "๐Ÿ—‚๏ธ"],
274
+ ["caribbean_netherlands", "๐Ÿ‡ง๐Ÿ‡ถ"],
275
+ ["carousel_horse", "๐ŸŽ "],
276
+ ["carpentry_saw", "๐Ÿชš"],
277
+ ["carrot", "๐Ÿฅ•"],
278
+ ["cartwheeling", "๐Ÿคธ"],
279
+ ["cat", "๐Ÿฑ"],
280
+ ["cat2", "๐Ÿˆ"],
281
+ ["cayman_islands", "๐Ÿ‡ฐ๐Ÿ‡พ"],
282
+ ["cd", "๐Ÿ’ฟ"],
283
+ ["central_african_republic", "๐Ÿ‡จ๐Ÿ‡ซ"],
284
+ ["ceuta_melilla", "๐Ÿ‡ช๐Ÿ‡ฆ"],
285
+ ["chad", "๐Ÿ‡น๐Ÿ‡ฉ"],
286
+ ["chains", "โ›“๏ธ"],
287
+ ["chair", "๐Ÿช‘"],
288
+ ["champagne", "๐Ÿพ"],
289
+ ["chart", "๐Ÿ’น"],
290
+ ["chart_with_downwards_trend", "๐Ÿ“‰"],
291
+ ["chart_with_upwards_trend", "๐Ÿ“ˆ"],
292
+ ["checkered_flag", "๐Ÿ"],
293
+ ["cheese", "๐Ÿง€"],
294
+ ["cherries", "๐Ÿ’"],
295
+ ["cherry_blossom", "๐ŸŒธ"],
296
+ ["chess_pawn", "โ™Ÿ๏ธ"],
297
+ ["chestnut", "๐ŸŒฐ"],
298
+ ["chicken", "๐Ÿ”"],
299
+ ["child", "๐Ÿง’"],
300
+ ["children_crossing", "๐Ÿšธ"],
301
+ ["chile", "๐Ÿ‡จ๐Ÿ‡ฑ"],
302
+ ["chipmunk", "๐Ÿฟ๏ธ"],
303
+ ["chocolate_bar", "๐Ÿซ"],
304
+ ["chopsticks", "๐Ÿฅข"],
305
+ ["christmas_island", "๐Ÿ‡จ๐Ÿ‡ฝ"],
306
+ ["christmas_tree", "๐ŸŽ„"],
307
+ ["church", "โ›ช"],
308
+ ["cinema", "๐ŸŽฆ"],
309
+ ["circus_tent", "๐ŸŽช"],
310
+ ["city_sunrise", "๐ŸŒ‡"],
311
+ ["city_sunset", "๐ŸŒ†"],
312
+ ["cityscape", "๐Ÿ™๏ธ"],
313
+ ["cl", "๐Ÿ†‘"],
314
+ ["clamp", "๐Ÿ—œ๏ธ"],
315
+ ["clap", "๐Ÿ‘"],
316
+ ["clapper", "๐ŸŽฌ"],
317
+ ["classical_building", "๐Ÿ›๏ธ"],
318
+ ["climbing", "๐Ÿง—"],
319
+ ["climbing_man", "๐Ÿง—โ€โ™‚๏ธ"],
320
+ ["climbing_woman", "๐Ÿง—โ€โ™€๏ธ"],
321
+ ["clinking_glasses", "๐Ÿฅ‚"],
322
+ ["clipboard", "๐Ÿ“‹"],
323
+ ["clipperton_island", "๐Ÿ‡จ๐Ÿ‡ต"],
324
+ ["clock1", "๐Ÿ•"],
325
+ ["clock10", "๐Ÿ•™"],
326
+ ["clock1030", "๐Ÿ•ฅ"],
327
+ ["clock11", "๐Ÿ•š"],
328
+ ["clock1130", "๐Ÿ•ฆ"],
329
+ ["clock12", "๐Ÿ•›"],
330
+ ["clock1230", "๐Ÿ•ง"],
331
+ ["clock130", "๐Ÿ•œ"],
332
+ ["clock2", "๐Ÿ•‘"],
333
+ ["clock230", "๐Ÿ•"],
334
+ ["clock3", "๐Ÿ•’"],
335
+ ["clock330", "๐Ÿ•ž"],
336
+ ["clock4", "๐Ÿ•“"],
337
+ ["clock430", "๐Ÿ•Ÿ"],
338
+ ["clock5", "๐Ÿ•”"],
339
+ ["clock530", "๐Ÿ• "],
340
+ ["clock6", "๐Ÿ••"],
341
+ ["clock630", "๐Ÿ•ก"],
342
+ ["clock7", "๐Ÿ•–"],
343
+ ["clock730", "๐Ÿ•ข"],
344
+ ["clock8", "๐Ÿ•—"],
345
+ ["clock830", "๐Ÿ•ฃ"],
346
+ ["clock9", "๐Ÿ•˜"],
347
+ ["clock930", "๐Ÿ•ค"],
348
+ ["closed_book", "๐Ÿ“•"],
349
+ ["closed_lock_with_key", "๐Ÿ”"],
350
+ ["closed_umbrella", "๐ŸŒ‚"],
351
+ ["cloud", "โ˜๏ธ"],
352
+ ["cloud_with_lightning", "๐ŸŒฉ๏ธ"],
353
+ ["cloud_with_lightning_and_rain", "โ›ˆ๏ธ"],
354
+ ["cloud_with_rain", "๐ŸŒง๏ธ"],
355
+ ["cloud_with_snow", "๐ŸŒจ๏ธ"],
356
+ ["clown_face", "๐Ÿคก"],
357
+ ["clubs", "โ™ฃ๏ธ"],
358
+ ["cn", "๐Ÿ‡จ๐Ÿ‡ณ"],
359
+ ["coat", "๐Ÿงฅ"],
360
+ ["cockroach", "๐Ÿชณ"],
361
+ ["cocktail", "๐Ÿธ"],
362
+ ["coconut", "๐Ÿฅฅ"],
363
+ ["cocos_islands", "๐Ÿ‡จ๐Ÿ‡จ"],
364
+ ["coffee", "โ˜•"],
365
+ ["coffin", "โšฐ๏ธ"],
366
+ ["coin", "๐Ÿช™"],
367
+ ["cold_face", "๐Ÿฅถ"],
368
+ ["cold_sweat", "๐Ÿ˜ฐ"],
369
+ ["collision", "๐Ÿ’ฅ"],
370
+ ["colombia", "๐Ÿ‡จ๐Ÿ‡ด"],
371
+ ["comet", "โ˜„๏ธ"],
372
+ ["comoros", "๐Ÿ‡ฐ๐Ÿ‡ฒ"],
373
+ ["compass", "๐Ÿงญ"],
374
+ ["computer", "๐Ÿ’ป"],
375
+ ["computer_mouse", "๐Ÿ–ฑ๏ธ"],
376
+ ["confetti_ball", "๐ŸŽŠ"],
377
+ ["confounded", "๐Ÿ˜–"],
378
+ ["confused", "๐Ÿ˜•"],
379
+ ["congo_brazzaville", "๐Ÿ‡จ๐Ÿ‡ฌ"],
380
+ ["congo_kinshasa", "๐Ÿ‡จ๐Ÿ‡ฉ"],
381
+ ["congratulations", "ใŠ—๏ธ"],
382
+ ["construction", "๐Ÿšง"],
383
+ ["construction_worker", "๐Ÿ‘ท"],
384
+ ["construction_worker_man", "๐Ÿ‘ทโ€โ™‚๏ธ"],
385
+ ["construction_worker_woman", "๐Ÿ‘ทโ€โ™€๏ธ"],
386
+ ["control_knobs", "๐ŸŽ›๏ธ"],
387
+ ["convenience_store", "๐Ÿช"],
388
+ ["cook", "๐Ÿง‘โ€๐Ÿณ"],
389
+ ["cook_islands", "๐Ÿ‡จ๐Ÿ‡ฐ"],
390
+ ["cookie", "๐Ÿช"],
391
+ ["cool", "๐Ÿ†’"],
392
+ ["cop", "๐Ÿ‘ฎ"],
393
+ ["copyright", "ยฉ๏ธ"],
394
+ ["coral", "๐Ÿชธ"],
395
+ ["corn", "๐ŸŒฝ"],
396
+ ["costa_rica", "๐Ÿ‡จ๐Ÿ‡ท"],
397
+ ["cote_divoire", "๐Ÿ‡จ๐Ÿ‡ฎ"],
398
+ ["couch_and_lamp", "๐Ÿ›‹๏ธ"],
399
+ ["couple", "๐Ÿ‘ซ"],
400
+ ["couple_with_heart", "๐Ÿ’‘"],
401
+ ["couple_with_heart_man_man", "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ"],
402
+ ["couple_with_heart_woman_man", "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘จ"],
403
+ ["couple_with_heart_woman_woman", "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ"],
404
+ ["couplekiss", "๐Ÿ’"],
405
+ ["couplekiss_man_man", "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ"],
406
+ ["couplekiss_man_woman", "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ"],
407
+ ["couplekiss_woman_woman", "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ"],
408
+ ["cow", "๐Ÿฎ"],
409
+ ["cow2", "๐Ÿ„"],
410
+ ["cowboy_hat_face", "๐Ÿค "],
411
+ ["crab", "๐Ÿฆ€"],
412
+ ["crayon", "๐Ÿ–๏ธ"],
413
+ ["credit_card", "๐Ÿ’ณ"],
414
+ ["crescent_moon", "๐ŸŒ™"],
415
+ ["cricket", "๐Ÿฆ—"],
416
+ ["cricket_game", "๐Ÿ"],
417
+ ["croatia", "๐Ÿ‡ญ๐Ÿ‡ท"],
418
+ ["crocodile", "๐ŸŠ"],
419
+ ["croissant", "๐Ÿฅ"],
420
+ ["crossed_fingers", "๐Ÿคž"],
421
+ ["crossed_flags", "๐ŸŽŒ"],
422
+ ["crossed_swords", "โš”๏ธ"],
423
+ ["crown", "๐Ÿ‘‘"],
424
+ ["crutch", "๐Ÿฉผ"],
425
+ ["cry", "๐Ÿ˜ข"],
426
+ ["crying_cat_face", "๐Ÿ˜ฟ"],
427
+ ["crystal_ball", "๐Ÿ”ฎ"],
428
+ ["cuba", "๐Ÿ‡จ๐Ÿ‡บ"],
429
+ ["cucumber", "๐Ÿฅ’"],
430
+ ["cup_with_straw", "๐Ÿฅค"],
431
+ ["cupcake", "๐Ÿง"],
432
+ ["cupid", "๐Ÿ’˜"],
433
+ ["curacao", "๐Ÿ‡จ๐Ÿ‡ผ"],
434
+ ["curling_stone", "๐ŸฅŒ"],
435
+ ["curly_haired_man", "๐Ÿ‘จโ€๐Ÿฆฑ"],
436
+ ["curly_haired_woman", "๐Ÿ‘ฉโ€๐Ÿฆฑ"],
437
+ ["curly_loop", "โžฐ"],
438
+ ["currency_exchange", "๐Ÿ’ฑ"],
439
+ ["curry", "๐Ÿ›"],
440
+ ["cursing_face", "๐Ÿคฌ"],
441
+ ["custard", "๐Ÿฎ"],
442
+ ["customs", "๐Ÿ›ƒ"],
443
+ ["cut_of_meat", "๐Ÿฅฉ"],
444
+ ["cyclone", "๐ŸŒ€"],
445
+ ["cyprus", "๐Ÿ‡จ๐Ÿ‡พ"],
446
+ ["czech_republic", "๐Ÿ‡จ๐Ÿ‡ฟ"],
447
+ ["dagger", "๐Ÿ—ก๏ธ"],
448
+ ["dancer", "๐Ÿ’ƒ"],
449
+ ["dancers", "๐Ÿ‘ฏ"],
450
+ ["dancing_men", "๐Ÿ‘ฏโ€โ™‚๏ธ"],
451
+ ["dancing_women", "๐Ÿ‘ฏโ€โ™€๏ธ"],
452
+ ["dango", "๐Ÿก"],
453
+ ["dark_sunglasses", "๐Ÿ•ถ๏ธ"],
454
+ ["dart", "๐ŸŽฏ"],
455
+ ["dash", "๐Ÿ’จ"],
456
+ ["date", "๐Ÿ“…"],
457
+ ["de", "๐Ÿ‡ฉ๐Ÿ‡ช"],
458
+ ["deaf_man", "๐Ÿงโ€โ™‚๏ธ"],
459
+ ["deaf_person", "๐Ÿง"],
460
+ ["deaf_woman", "๐Ÿงโ€โ™€๏ธ"],
461
+ ["deciduous_tree", "๐ŸŒณ"],
462
+ ["deer", "๐ŸฆŒ"],
463
+ ["denmark", "๐Ÿ‡ฉ๐Ÿ‡ฐ"],
464
+ ["department_store", "๐Ÿฌ"],
465
+ ["derelict_house", "๐Ÿš๏ธ"],
466
+ ["desert", "๐Ÿœ๏ธ"],
467
+ ["desert_island", "๐Ÿ๏ธ"],
468
+ ["desktop_computer", "๐Ÿ–ฅ๏ธ"],
469
+ ["detective", "๐Ÿ•ต๏ธ"],
470
+ ["diamond_shape_with_a_dot_inside", "๐Ÿ’ "],
471
+ ["diamonds", "โ™ฆ๏ธ"],
472
+ ["diego_garcia", "๐Ÿ‡ฉ๐Ÿ‡ฌ"],
473
+ ["disappointed", "๐Ÿ˜ž"],
474
+ ["disappointed_relieved", "๐Ÿ˜ฅ"],
475
+ ["disguised_face", "๐Ÿฅธ"],
476
+ ["diving_mask", "๐Ÿคฟ"],
477
+ ["diya_lamp", "๐Ÿช”"],
478
+ ["dizzy", "๐Ÿ’ซ"],
479
+ ["dizzy_face", "๐Ÿ˜ต"],
480
+ ["djibouti", "๐Ÿ‡ฉ๐Ÿ‡ฏ"],
481
+ ["dna", "๐Ÿงฌ"],
482
+ ["do_not_litter", "๐Ÿšฏ"],
483
+ ["dodo", "๐Ÿฆค"],
484
+ ["dog", "๐Ÿถ"],
485
+ ["dog2", "๐Ÿ•"],
486
+ ["dollar", "๐Ÿ’ต"],
487
+ ["dolls", "๐ŸŽŽ"],
488
+ ["dolphin", "๐Ÿฌ"],
489
+ ["dominica", "๐Ÿ‡ฉ๐Ÿ‡ฒ"],
490
+ ["dominican_republic", "๐Ÿ‡ฉ๐Ÿ‡ด"],
491
+ ["donkey", "๐Ÿซ"],
492
+ ["door", "๐Ÿšช"],
493
+ ["dotted_line_face", "๐Ÿซฅ"],
494
+ ["doughnut", "๐Ÿฉ"],
495
+ ["dove", "๐Ÿ•Š๏ธ"],
496
+ ["dragon", "๐Ÿ‰"],
497
+ ["dragon_face", "๐Ÿฒ"],
498
+ ["dress", "๐Ÿ‘—"],
499
+ ["dromedary_camel", "๐Ÿช"],
500
+ ["drooling_face", "๐Ÿคค"],
501
+ ["drop_of_blood", "๐Ÿฉธ"],
502
+ ["droplet", "๐Ÿ’ง"],
503
+ ["drum", "๐Ÿฅ"],
504
+ ["duck", "๐Ÿฆ†"],
505
+ ["dumpling", "๐ŸฅŸ"],
506
+ ["dvd", "๐Ÿ“€"],
507
+ ["e-mail", "๐Ÿ“ง"],
508
+ ["eagle", "๐Ÿฆ…"],
509
+ ["ear", "๐Ÿ‘‚"],
510
+ ["ear_of_rice", "๐ŸŒพ"],
511
+ ["ear_with_hearing_aid", "๐Ÿฆป"],
512
+ ["earth_africa", "๐ŸŒ"],
513
+ ["earth_americas", "๐ŸŒŽ"],
514
+ ["earth_asia", "๐ŸŒ"],
515
+ ["ecuador", "๐Ÿ‡ช๐Ÿ‡จ"],
516
+ ["egg", "๐Ÿฅš"],
517
+ ["eggplant", "๐Ÿ†"],
518
+ ["egypt", "๐Ÿ‡ช๐Ÿ‡ฌ"],
519
+ ["eight", "8๏ธโƒฃ"],
520
+ ["eight_pointed_black_star", "โœด๏ธ"],
521
+ ["eight_spoked_asterisk", "โœณ๏ธ"],
522
+ ["eject_button", "โ๏ธ"],
523
+ ["el_salvador", "๐Ÿ‡ธ๐Ÿ‡ป"],
524
+ ["electric_plug", "๐Ÿ”Œ"],
525
+ ["elephant", "๐Ÿ˜"],
526
+ ["elevator", "๐Ÿ›—"],
527
+ ["elf", "๐Ÿง"],
528
+ ["elf_man", "๐Ÿงโ€โ™‚๏ธ"],
529
+ ["elf_woman", "๐Ÿงโ€โ™€๏ธ"],
530
+ ["email", "๐Ÿ“ง"],
531
+ ["empty_nest", "๐Ÿชน"],
532
+ ["end", "๐Ÿ”š"],
533
+ ["england", "๐Ÿด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ"],
534
+ ["envelope", "โœ‰๏ธ"],
535
+ ["envelope_with_arrow", "๐Ÿ“ฉ"],
536
+ ["equatorial_guinea", "๐Ÿ‡ฌ๐Ÿ‡ถ"],
537
+ ["eritrea", "๐Ÿ‡ช๐Ÿ‡ท"],
538
+ ["es", "๐Ÿ‡ช๐Ÿ‡ธ"],
539
+ ["estonia", "๐Ÿ‡ช๐Ÿ‡ช"],
540
+ ["ethiopia", "๐Ÿ‡ช๐Ÿ‡น"],
541
+ ["eu", "๐Ÿ‡ช๐Ÿ‡บ"],
542
+ ["euro", "๐Ÿ’ถ"],
543
+ ["european_castle", "๐Ÿฐ"],
544
+ ["european_post_office", "๐Ÿค"],
545
+ ["european_union", "๐Ÿ‡ช๐Ÿ‡บ"],
546
+ ["evergreen_tree", "๐ŸŒฒ"],
547
+ ["exclamation", "โ—"],
548
+ ["exploding_head", "๐Ÿคฏ"],
549
+ ["expressionless", "๐Ÿ˜‘"],
550
+ ["eye", "๐Ÿ‘๏ธ"],
551
+ ["eye_speech_bubble", "๐Ÿ‘๏ธโ€๐Ÿ—จ๏ธ"],
552
+ ["eyeglasses", "๐Ÿ‘“"],
553
+ ["eyes", "๐Ÿ‘€"],
554
+ ["face_exhaling", "๐Ÿ˜ฎโ€๐Ÿ’จ"],
555
+ ["face_holding_back_tears", "๐Ÿฅน"],
556
+ ["face_in_clouds", "๐Ÿ˜ถโ€๐ŸŒซ๏ธ"],
557
+ ["face_with_diagonal_mouth", "๐Ÿซค"],
558
+ ["face_with_head_bandage", "๐Ÿค•"],
559
+ ["face_with_open_eyes_and_hand_over_mouth", "๐Ÿซข"],
560
+ ["face_with_peeking_eye", "๐Ÿซฃ"],
561
+ ["face_with_spiral_eyes", "๐Ÿ˜ตโ€๐Ÿ’ซ"],
562
+ ["face_with_thermometer", "๐Ÿค’"],
563
+ ["facepalm", "๐Ÿคฆ"],
564
+ ["facepunch", "๐Ÿ‘Š"],
565
+ ["factory", "๐Ÿญ"],
566
+ ["factory_worker", "๐Ÿง‘โ€๐Ÿญ"],
567
+ ["fairy", "๐Ÿงš"],
568
+ ["fairy_man", "๐Ÿงšโ€โ™‚๏ธ"],
569
+ ["fairy_woman", "๐Ÿงšโ€โ™€๏ธ"],
570
+ ["falafel", "๐Ÿง†"],
571
+ ["falkland_islands", "๐Ÿ‡ซ๐Ÿ‡ฐ"],
572
+ ["fallen_leaf", "๐Ÿ‚"],
573
+ ["family", "๐Ÿ‘ช"],
574
+ ["family_man_boy", "๐Ÿ‘จโ€๐Ÿ‘ฆ"],
575
+ ["family_man_boy_boy", "๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ"],
576
+ ["family_man_girl", "๐Ÿ‘จโ€๐Ÿ‘ง"],
577
+ ["family_man_girl_boy", "๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ"],
578
+ ["family_man_girl_girl", "๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง"],
579
+ ["family_man_man_boy", "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆ"],
580
+ ["family_man_man_boy_boy", "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ"],
581
+ ["family_man_man_girl", "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ง"],
582
+ ["family_man_man_girl_boy", "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ"],
583
+ ["family_man_man_girl_girl", "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง"],
584
+ ["family_man_woman_boy", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ"],
585
+ ["family_man_woman_boy_boy", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ"],
586
+ ["family_man_woman_girl", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง"],
587
+ ["family_man_woman_girl_boy", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ"],
588
+ ["family_man_woman_girl_girl", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง"],
589
+ ["family_woman_boy", "๐Ÿ‘ฉโ€๐Ÿ‘ฆ"],
590
+ ["family_woman_boy_boy", "๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ"],
591
+ ["family_woman_girl", "๐Ÿ‘ฉโ€๐Ÿ‘ง"],
592
+ ["family_woman_girl_boy", "๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ"],
593
+ ["family_woman_girl_girl", "๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง"],
594
+ ["family_woman_woman_boy", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ"],
595
+ ["family_woman_woman_boy_boy", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ"],
596
+ ["family_woman_woman_girl", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ง"],
597
+ ["family_woman_woman_girl_boy", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ"],
598
+ ["family_woman_woman_girl_girl", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง"],
599
+ ["farmer", "๐Ÿง‘โ€๐ŸŒพ"],
600
+ ["faroe_islands", "๐Ÿ‡ซ๐Ÿ‡ด"],
601
+ ["fast_forward", "โฉ"],
602
+ ["fax", "๐Ÿ“ "],
603
+ ["fearful", "๐Ÿ˜จ"],
604
+ ["feather", "๐Ÿชถ"],
605
+ ["feet", "๐Ÿพ"],
606
+ ["female_detective", "๐Ÿ•ต๏ธโ€โ™€๏ธ"],
607
+ ["female_sign", "โ™€๏ธ"],
608
+ ["ferris_wheel", "๐ŸŽก"],
609
+ ["ferry", "โ›ด๏ธ"],
610
+ ["field_hockey", "๐Ÿ‘"],
611
+ ["fiji", "๐Ÿ‡ซ๐Ÿ‡ฏ"],
612
+ ["file_cabinet", "๐Ÿ—„๏ธ"],
613
+ ["file_folder", "๐Ÿ“"],
614
+ ["film_projector", "๐Ÿ“ฝ๏ธ"],
615
+ ["film_strip", "๐ŸŽž๏ธ"],
616
+ ["finland", "๐Ÿ‡ซ๐Ÿ‡ฎ"],
617
+ ["fire", "๐Ÿ”ฅ"],
618
+ ["fire_engine", "๐Ÿš’"],
619
+ ["fire_extinguisher", "๐Ÿงฏ"],
620
+ ["firecracker", "๐Ÿงจ"],
621
+ ["firefighter", "๐Ÿง‘โ€๐Ÿš’"],
622
+ ["fireworks", "๐ŸŽ†"],
623
+ ["first_quarter_moon", "๐ŸŒ“"],
624
+ ["first_quarter_moon_with_face", "๐ŸŒ›"],
625
+ ["fish", "๐ŸŸ"],
626
+ ["fish_cake", "๐Ÿฅ"],
627
+ ["fishing_pole_and_fish", "๐ŸŽฃ"],
628
+ ["fist", "โœŠ"],
629
+ ["fist_left", "๐Ÿค›"],
630
+ ["fist_oncoming", "๐Ÿ‘Š"],
631
+ ["fist_raised", "โœŠ"],
632
+ ["fist_right", "๐Ÿคœ"],
633
+ ["five", "5๏ธโƒฃ"],
634
+ ["flags", "๐ŸŽ"],
635
+ ["flamingo", "๐Ÿฆฉ"],
636
+ ["flashlight", "๐Ÿ”ฆ"],
637
+ ["flat_shoe", "๐Ÿฅฟ"],
638
+ ["flatbread", "๐Ÿซ“"],
639
+ ["fleur_de_lis", "โšœ๏ธ"],
640
+ ["flight_arrival", "๐Ÿ›ฌ"],
641
+ ["flight_departure", "๐Ÿ›ซ"],
642
+ ["flipper", "๐Ÿฌ"],
643
+ ["floppy_disk", "๐Ÿ’พ"],
644
+ ["flower_playing_cards", "๐ŸŽด"],
645
+ ["flushed", "๐Ÿ˜ณ"],
646
+ ["flute", "๐Ÿชˆ"],
647
+ ["fly", "๐Ÿชฐ"],
648
+ ["flying_disc", "๐Ÿฅ"],
649
+ ["flying_saucer", "๐Ÿ›ธ"],
650
+ ["fog", "๐ŸŒซ๏ธ"],
651
+ ["foggy", "๐ŸŒ"],
652
+ ["folding_hand_fan", "๐Ÿชญ"],
653
+ ["fondue", "๐Ÿซ•"],
654
+ ["foot", "๐Ÿฆถ"],
655
+ ["football", "๐Ÿˆ"],
656
+ ["footprints", "๐Ÿ‘ฃ"],
657
+ ["fork_and_knife", "๐Ÿด"],
658
+ ["fortune_cookie", "๐Ÿฅ "],
659
+ ["fountain", "โ›ฒ"],
660
+ ["fountain_pen", "๐Ÿ–‹๏ธ"],
661
+ ["four", "4๏ธโƒฃ"],
662
+ ["four_leaf_clover", "๐Ÿ€"],
663
+ ["fox_face", "๐ŸฆŠ"],
664
+ ["fr", "๐Ÿ‡ซ๐Ÿ‡ท"],
665
+ ["framed_picture", "๐Ÿ–ผ๏ธ"],
666
+ ["free", "๐Ÿ†“"],
667
+ ["french_guiana", "๐Ÿ‡ฌ๐Ÿ‡ซ"],
668
+ ["french_polynesia", "๐Ÿ‡ต๐Ÿ‡ซ"],
669
+ ["french_southern_territories", "๐Ÿ‡น๐Ÿ‡ซ"],
670
+ ["fried_egg", "๐Ÿณ"],
671
+ ["fried_shrimp", "๐Ÿค"],
672
+ ["fries", "๐ŸŸ"],
673
+ ["frog", "๐Ÿธ"],
674
+ ["frowning", "๐Ÿ˜ฆ"],
675
+ ["frowning_face", "โ˜น๏ธ"],
676
+ ["frowning_man", "๐Ÿ™โ€โ™‚๏ธ"],
677
+ ["frowning_person", "๐Ÿ™"],
678
+ ["frowning_woman", "๐Ÿ™โ€โ™€๏ธ"],
679
+ ["fu", "๐Ÿ–•"],
680
+ ["fuelpump", "โ›ฝ"],
681
+ ["full_moon", "๐ŸŒ•"],
682
+ ["full_moon_with_face", "๐ŸŒ"],
683
+ ["funeral_urn", "โšฑ๏ธ"],
684
+ ["gabon", "๐Ÿ‡ฌ๐Ÿ‡ฆ"],
685
+ ["gambia", "๐Ÿ‡ฌ๐Ÿ‡ฒ"],
686
+ ["game_die", "๐ŸŽฒ"],
687
+ ["garlic", "๐Ÿง„"],
688
+ ["gb", "๐Ÿ‡ฌ๐Ÿ‡ง"],
689
+ ["gear", "โš™๏ธ"],
690
+ ["gem", "๐Ÿ’Ž"],
691
+ ["gemini", "โ™Š"],
692
+ ["genie", "๐Ÿงž"],
693
+ ["genie_man", "๐Ÿงžโ€โ™‚๏ธ"],
694
+ ["genie_woman", "๐Ÿงžโ€โ™€๏ธ"],
695
+ ["georgia", "๐Ÿ‡ฌ๐Ÿ‡ช"],
696
+ ["ghana", "๐Ÿ‡ฌ๐Ÿ‡ญ"],
697
+ ["ghost", "๐Ÿ‘ป"],
698
+ ["gibraltar", "๐Ÿ‡ฌ๐Ÿ‡ฎ"],
699
+ ["gift", "๐ŸŽ"],
700
+ ["gift_heart", "๐Ÿ’"],
701
+ ["ginger_root", "๐Ÿซš"],
702
+ ["giraffe", "๐Ÿฆ’"],
703
+ ["girl", "๐Ÿ‘ง"],
704
+ ["globe_with_meridians", "๐ŸŒ"],
705
+ ["gloves", "๐Ÿงค"],
706
+ ["goal_net", "๐Ÿฅ…"],
707
+ ["goat", "๐Ÿ"],
708
+ ["goggles", "๐Ÿฅฝ"],
709
+ ["golf", "โ›ณ"],
710
+ ["golfing", "๐ŸŒ๏ธ"],
711
+ ["golfing_man", "๐ŸŒ๏ธโ€โ™‚๏ธ"],
712
+ ["golfing_woman", "๐ŸŒ๏ธโ€โ™€๏ธ"],
713
+ ["goose", "๐Ÿชฟ"],
714
+ ["gorilla", "๐Ÿฆ"],
715
+ ["grapes", "๐Ÿ‡"],
716
+ ["greece", "๐Ÿ‡ฌ๐Ÿ‡ท"],
717
+ ["green_apple", "๐Ÿ"],
718
+ ["green_book", "๐Ÿ“—"],
719
+ ["green_circle", "๐ŸŸข"],
720
+ ["green_heart", "๐Ÿ’š"],
721
+ ["green_salad", "๐Ÿฅ—"],
722
+ ["green_square", "๐ŸŸฉ"],
723
+ ["greenland", "๐Ÿ‡ฌ๐Ÿ‡ฑ"],
724
+ ["grenada", "๐Ÿ‡ฌ๐Ÿ‡ฉ"],
725
+ ["grey_exclamation", "โ•"],
726
+ ["grey_heart", "๐Ÿฉถ"],
727
+ ["grey_question", "โ”"],
728
+ ["grimacing", "๐Ÿ˜ฌ"],
729
+ ["grin", "๐Ÿ˜"],
730
+ ["grinning", "๐Ÿ˜€"],
731
+ ["guadeloupe", "๐Ÿ‡ฌ๐Ÿ‡ต"],
732
+ ["guam", "๐Ÿ‡ฌ๐Ÿ‡บ"],
733
+ ["guard", "๐Ÿ’‚"],
734
+ ["guardsman", "๐Ÿ’‚โ€โ™‚๏ธ"],
735
+ ["guardswoman", "๐Ÿ’‚โ€โ™€๏ธ"],
736
+ ["guatemala", "๐Ÿ‡ฌ๐Ÿ‡น"],
737
+ ["guernsey", "๐Ÿ‡ฌ๐Ÿ‡ฌ"],
738
+ ["guide_dog", "๐Ÿฆฎ"],
739
+ ["guinea", "๐Ÿ‡ฌ๐Ÿ‡ณ"],
740
+ ["guinea_bissau", "๐Ÿ‡ฌ๐Ÿ‡ผ"],
741
+ ["guitar", "๐ŸŽธ"],
742
+ ["gun", "๐Ÿ”ซ"],
743
+ ["guyana", "๐Ÿ‡ฌ๐Ÿ‡พ"],
744
+ ["hair_pick", "๐Ÿชฎ"],
745
+ ["haircut", "๐Ÿ’‡"],
746
+ ["haircut_man", "๐Ÿ’‡โ€โ™‚๏ธ"],
747
+ ["haircut_woman", "๐Ÿ’‡โ€โ™€๏ธ"],
748
+ ["haiti", "๐Ÿ‡ญ๐Ÿ‡น"],
749
+ ["hamburger", "๐Ÿ”"],
750
+ ["hammer", "๐Ÿ”จ"],
751
+ ["hammer_and_pick", "โš’๏ธ"],
752
+ ["hammer_and_wrench", "๐Ÿ› ๏ธ"],
753
+ ["hamsa", "๐Ÿชฌ"],
754
+ ["hamster", "๐Ÿน"],
755
+ ["hand", "โœ‹"],
756
+ ["hand_over_mouth", "๐Ÿคญ"],
757
+ ["hand_with_index_finger_and_thumb_crossed", "๐Ÿซฐ"],
758
+ ["handbag", "๐Ÿ‘œ"],
759
+ ["handball_person", "๐Ÿคพ"],
760
+ ["handshake", "๐Ÿค"],
761
+ ["hankey", "๐Ÿ’ฉ"],
762
+ ["hash", "#๏ธโƒฃ"],
763
+ ["hatched_chick", "๐Ÿฅ"],
764
+ ["hatching_chick", "๐Ÿฃ"],
765
+ ["headphones", "๐ŸŽง"],
766
+ ["headstone", "๐Ÿชฆ"],
767
+ ["health_worker", "๐Ÿง‘โ€โš•๏ธ"],
768
+ ["hear_no_evil", "๐Ÿ™‰"],
769
+ ["heard_mcdonald_islands", "๐Ÿ‡ญ๐Ÿ‡ฒ"],
770
+ ["heart", "โค๏ธ"],
771
+ ["heart_decoration", "๐Ÿ’Ÿ"],
772
+ ["heart_eyes", "๐Ÿ˜"],
773
+ ["heart_eyes_cat", "๐Ÿ˜ป"],
774
+ ["heart_hands", "๐Ÿซถ"],
775
+ ["heart_on_fire", "โค๏ธโ€๐Ÿ”ฅ"],
776
+ ["heartbeat", "๐Ÿ’“"],
777
+ ["heartpulse", "๐Ÿ’—"],
778
+ ["hearts", "โ™ฅ๏ธ"],
779
+ ["heavy_check_mark", "โœ”๏ธ"],
780
+ ["heavy_division_sign", "โž—"],
781
+ ["heavy_dollar_sign", "๐Ÿ’ฒ"],
782
+ ["heavy_equals_sign", "๐ŸŸฐ"],
783
+ ["heavy_exclamation_mark", "โ—"],
784
+ ["heavy_heart_exclamation", "โฃ๏ธ"],
785
+ ["heavy_minus_sign", "โž–"],
786
+ ["heavy_multiplication_x", "โœ–๏ธ"],
787
+ ["heavy_plus_sign", "โž•"],
788
+ ["hedgehog", "๐Ÿฆ”"],
789
+ ["helicopter", "๐Ÿš"],
790
+ ["herb", "๐ŸŒฟ"],
791
+ ["hibiscus", "๐ŸŒบ"],
792
+ ["high_brightness", "๐Ÿ”†"],
793
+ ["high_heel", "๐Ÿ‘ "],
794
+ ["hiking_boot", "๐Ÿฅพ"],
795
+ ["hindu_temple", "๐Ÿ›•"],
796
+ ["hippopotamus", "๐Ÿฆ›"],
797
+ ["hocho", "๐Ÿ”ช"],
798
+ ["hole", "๐Ÿ•ณ๏ธ"],
799
+ ["honduras", "๐Ÿ‡ญ๐Ÿ‡ณ"],
800
+ ["honey_pot", "๐Ÿฏ"],
801
+ ["honeybee", "๐Ÿ"],
802
+ ["hong_kong", "๐Ÿ‡ญ๐Ÿ‡ฐ"],
803
+ ["hook", "๐Ÿช"],
804
+ ["horse", "๐Ÿด"],
805
+ ["horse_racing", "๐Ÿ‡"],
806
+ ["hospital", "๐Ÿฅ"],
807
+ ["hot_face", "๐Ÿฅต"],
808
+ ["hot_pepper", "๐ŸŒถ๏ธ"],
809
+ ["hotdog", "๐ŸŒญ"],
810
+ ["hotel", "๐Ÿจ"],
811
+ ["hotsprings", "โ™จ๏ธ"],
812
+ ["hourglass", "โŒ›"],
813
+ ["hourglass_flowing_sand", "โณ"],
814
+ ["house", "๐Ÿ "],
815
+ ["house_with_garden", "๐Ÿก"],
816
+ ["houses", "๐Ÿ˜๏ธ"],
817
+ ["hugs", "๐Ÿค—"],
818
+ ["hungary", "๐Ÿ‡ญ๐Ÿ‡บ"],
819
+ ["hushed", "๐Ÿ˜ฏ"],
820
+ ["hut", "๐Ÿ›–"],
821
+ ["hyacinth", "๐Ÿชป"],
822
+ ["ice_cream", "๐Ÿจ"],
823
+ ["ice_cube", "๐ŸงŠ"],
824
+ ["ice_hockey", "๐Ÿ’"],
825
+ ["ice_skate", "โ›ธ๏ธ"],
826
+ ["icecream", "๐Ÿฆ"],
827
+ ["iceland", "๐Ÿ‡ฎ๐Ÿ‡ธ"],
828
+ ["id", "๐Ÿ†”"],
829
+ ["identification_card", "๐Ÿชช"],
830
+ ["ideograph_advantage", "๐Ÿ‰"],
831
+ ["imp", "๐Ÿ‘ฟ"],
832
+ ["inbox_tray", "๐Ÿ“ฅ"],
833
+ ["incoming_envelope", "๐Ÿ“จ"],
834
+ ["index_pointing_at_the_viewer", "๐Ÿซต"],
835
+ ["india", "๐Ÿ‡ฎ๐Ÿ‡ณ"],
836
+ ["indonesia", "๐Ÿ‡ฎ๐Ÿ‡ฉ"],
837
+ ["infinity", "โ™พ๏ธ"],
838
+ ["information_desk_person", "๐Ÿ’"],
839
+ ["information_source", "โ„น๏ธ"],
840
+ ["innocent", "๐Ÿ˜‡"],
841
+ ["interrobang", "โ‰๏ธ"],
842
+ ["iphone", "๐Ÿ“ฑ"],
843
+ ["iran", "๐Ÿ‡ฎ๐Ÿ‡ท"],
844
+ ["iraq", "๐Ÿ‡ฎ๐Ÿ‡ถ"],
845
+ ["ireland", "๐Ÿ‡ฎ๐Ÿ‡ช"],
846
+ ["isle_of_man", "๐Ÿ‡ฎ๐Ÿ‡ฒ"],
847
+ ["israel", "๐Ÿ‡ฎ๐Ÿ‡ฑ"],
848
+ ["it", "๐Ÿ‡ฎ๐Ÿ‡น"],
849
+ ["izakaya_lantern", "๐Ÿฎ"],
850
+ ["jack_o_lantern", "๐ŸŽƒ"],
851
+ ["jamaica", "๐Ÿ‡ฏ๐Ÿ‡ฒ"],
852
+ ["japan", "๐Ÿ—พ"],
853
+ ["japanese_castle", "๐Ÿฏ"],
854
+ ["japanese_goblin", "๐Ÿ‘บ"],
855
+ ["japanese_ogre", "๐Ÿ‘น"],
856
+ ["jar", "๐Ÿซ™"],
857
+ ["jeans", "๐Ÿ‘–"],
858
+ ["jellyfish", "๐Ÿชผ"],
859
+ ["jersey", "๐Ÿ‡ฏ๐Ÿ‡ช"],
860
+ ["jigsaw", "๐Ÿงฉ"],
861
+ ["jordan", "๐Ÿ‡ฏ๐Ÿ‡ด"],
862
+ ["joy", "๐Ÿ˜‚"],
863
+ ["joy_cat", "๐Ÿ˜น"],
864
+ ["joystick", "๐Ÿ•น๏ธ"],
865
+ ["jp", "๐Ÿ‡ฏ๐Ÿ‡ต"],
866
+ ["judge", "๐Ÿง‘โ€โš–๏ธ"],
867
+ ["juggling_person", "๐Ÿคน"],
868
+ ["kaaba", "๐Ÿ•‹"],
869
+ ["kangaroo", "๐Ÿฆ˜"],
870
+ ["kazakhstan", "๐Ÿ‡ฐ๐Ÿ‡ฟ"],
871
+ ["kenya", "๐Ÿ‡ฐ๐Ÿ‡ช"],
872
+ ["key", "๐Ÿ”‘"],
873
+ ["keyboard", "โŒจ๏ธ"],
874
+ ["keycap_ten", "๐Ÿ”Ÿ"],
875
+ ["khanda", "๐Ÿชฏ"],
876
+ ["kick_scooter", "๐Ÿ›ด"],
877
+ ["kimono", "๐Ÿ‘˜"],
878
+ ["kiribati", "๐Ÿ‡ฐ๐Ÿ‡ฎ"],
879
+ ["kiss", "๐Ÿ’‹"],
880
+ ["kissing", "๐Ÿ˜—"],
881
+ ["kissing_cat", "๐Ÿ˜ฝ"],
882
+ ["kissing_closed_eyes", "๐Ÿ˜š"],
883
+ ["kissing_heart", "๐Ÿ˜˜"],
884
+ ["kissing_smiling_eyes", "๐Ÿ˜™"],
885
+ ["kite", "๐Ÿช"],
886
+ ["kiwi_fruit", "๐Ÿฅ"],
887
+ ["kneeling_man", "๐ŸงŽโ€โ™‚๏ธ"],
888
+ ["kneeling_person", "๐ŸงŽ"],
889
+ ["kneeling_woman", "๐ŸงŽโ€โ™€๏ธ"],
890
+ ["knife", "๐Ÿ”ช"],
891
+ ["knot", "๐Ÿชข"],
892
+ ["koala", "๐Ÿจ"],
893
+ ["koko", "๐Ÿˆ"],
894
+ ["kosovo", "๐Ÿ‡ฝ๐Ÿ‡ฐ"],
895
+ ["kr", "๐Ÿ‡ฐ๐Ÿ‡ท"],
896
+ ["kuwait", "๐Ÿ‡ฐ๐Ÿ‡ผ"],
897
+ ["kyrgyzstan", "๐Ÿ‡ฐ๐Ÿ‡ฌ"],
898
+ ["lab_coat", "๐Ÿฅผ"],
899
+ ["label", "๐Ÿท๏ธ"],
900
+ ["lacrosse", "๐Ÿฅ"],
901
+ ["ladder", "๐Ÿชœ"],
902
+ ["lady_beetle", "๐Ÿž"],
903
+ ["lantern", "๐Ÿฎ"],
904
+ ["laos", "๐Ÿ‡ฑ๐Ÿ‡ฆ"],
905
+ ["large_blue_circle", "๐Ÿ”ต"],
906
+ ["large_blue_diamond", "๐Ÿ”ท"],
907
+ ["large_orange_diamond", "๐Ÿ”ถ"],
908
+ ["last_quarter_moon", "๐ŸŒ—"],
909
+ ["last_quarter_moon_with_face", "๐ŸŒœ"],
910
+ ["latin_cross", "โœ๏ธ"],
911
+ ["latvia", "๐Ÿ‡ฑ๐Ÿ‡ป"],
912
+ ["laughing", "๐Ÿ˜†"],
913
+ ["leafy_green", "๐Ÿฅฌ"],
914
+ ["leaves", "๐Ÿƒ"],
915
+ ["lebanon", "๐Ÿ‡ฑ๐Ÿ‡ง"],
916
+ ["ledger", "๐Ÿ“’"],
917
+ ["left_luggage", "๐Ÿ›…"],
918
+ ["left_right_arrow", "โ†”๏ธ"],
919
+ ["left_speech_bubble", "๐Ÿ—จ๏ธ"],
920
+ ["leftwards_arrow_with_hook", "โ†ฉ๏ธ"],
921
+ ["leftwards_hand", "๐Ÿซฒ"],
922
+ ["leftwards_pushing_hand", "๐Ÿซท"],
923
+ ["leg", "๐Ÿฆต"],
924
+ ["lemon", "๐Ÿ‹"],
925
+ ["leo", "โ™Œ"],
926
+ ["leopard", "๐Ÿ†"],
927
+ ["lesotho", "๐Ÿ‡ฑ๐Ÿ‡ธ"],
928
+ ["level_slider", "๐ŸŽš๏ธ"],
929
+ ["liberia", "๐Ÿ‡ฑ๐Ÿ‡ท"],
930
+ ["libra", "โ™Ž"],
931
+ ["libya", "๐Ÿ‡ฑ๐Ÿ‡พ"],
932
+ ["liechtenstein", "๐Ÿ‡ฑ๐Ÿ‡ฎ"],
933
+ ["light_blue_heart", "๐Ÿฉต"],
934
+ ["light_rail", "๐Ÿšˆ"],
935
+ ["link", "๐Ÿ”—"],
936
+ ["lion", "๐Ÿฆ"],
937
+ ["lips", "๐Ÿ‘„"],
938
+ ["lipstick", "๐Ÿ’„"],
939
+ ["lithuania", "๐Ÿ‡ฑ๐Ÿ‡น"],
940
+ ["lizard", "๐ŸฆŽ"],
941
+ ["llama", "๐Ÿฆ™"],
942
+ ["lobster", "๐Ÿฆž"],
943
+ ["lock", "๐Ÿ”’"],
944
+ ["lock_with_ink_pen", "๐Ÿ”"],
945
+ ["lollipop", "๐Ÿญ"],
946
+ ["long_drum", "๐Ÿช˜"],
947
+ ["loop", "โžฟ"],
948
+ ["lotion_bottle", "๐Ÿงด"],
949
+ ["lotus", "๐Ÿชท"],
950
+ ["lotus_position", "๐Ÿง˜"],
951
+ ["lotus_position_man", "๐Ÿง˜โ€โ™‚๏ธ"],
952
+ ["lotus_position_woman", "๐Ÿง˜โ€โ™€๏ธ"],
953
+ ["loud_sound", "๐Ÿ”Š"],
954
+ ["loudspeaker", "๐Ÿ“ข"],
955
+ ["love_hotel", "๐Ÿฉ"],
956
+ ["love_letter", "๐Ÿ’Œ"],
957
+ ["love_you_gesture", "๐ŸคŸ"],
958
+ ["low_battery", "๐Ÿชซ"],
959
+ ["low_brightness", "๐Ÿ”…"],
960
+ ["luggage", "๐Ÿงณ"],
961
+ ["lungs", "๐Ÿซ"],
962
+ ["luxembourg", "๐Ÿ‡ฑ๐Ÿ‡บ"],
963
+ ["lying_face", "๐Ÿคฅ"],
964
+ ["m", "โ“‚๏ธ"],
965
+ ["macau", "๐Ÿ‡ฒ๐Ÿ‡ด"],
966
+ ["macedonia", "๐Ÿ‡ฒ๐Ÿ‡ฐ"],
967
+ ["madagascar", "๐Ÿ‡ฒ๐Ÿ‡ฌ"],
968
+ ["mag", "๐Ÿ”"],
969
+ ["mag_right", "๐Ÿ”Ž"],
970
+ ["mage", "๐Ÿง™"],
971
+ ["mage_man", "๐Ÿง™โ€โ™‚๏ธ"],
972
+ ["mage_woman", "๐Ÿง™โ€โ™€๏ธ"],
973
+ ["magic_wand", "๐Ÿช„"],
974
+ ["magnet", "๐Ÿงฒ"],
975
+ ["mahjong", "๐Ÿ€„"],
976
+ ["mailbox", "๐Ÿ“ซ"],
977
+ ["mailbox_closed", "๐Ÿ“ช"],
978
+ ["mailbox_with_mail", "๐Ÿ“ฌ"],
979
+ ["mailbox_with_no_mail", "๐Ÿ“ญ"],
980
+ ["malawi", "๐Ÿ‡ฒ๐Ÿ‡ผ"],
981
+ ["malaysia", "๐Ÿ‡ฒ๐Ÿ‡พ"],
982
+ ["maldives", "๐Ÿ‡ฒ๐Ÿ‡ป"],
983
+ ["male_detective", "๐Ÿ•ต๏ธโ€โ™‚๏ธ"],
984
+ ["male_sign", "โ™‚๏ธ"],
985
+ ["mali", "๐Ÿ‡ฒ๐Ÿ‡ฑ"],
986
+ ["malta", "๐Ÿ‡ฒ๐Ÿ‡น"],
987
+ ["mammoth", "๐Ÿฆฃ"],
988
+ ["man", "๐Ÿ‘จ"],
989
+ ["man_artist", "๐Ÿ‘จโ€๐ŸŽจ"],
990
+ ["man_astronaut", "๐Ÿ‘จโ€๐Ÿš€"],
991
+ ["man_beard", "๐Ÿง”โ€โ™‚๏ธ"],
992
+ ["man_cartwheeling", "๐Ÿคธโ€โ™‚๏ธ"],
993
+ ["man_cook", "๐Ÿ‘จโ€๐Ÿณ"],
994
+ ["man_dancing", "๐Ÿ•บ"],
995
+ ["man_facepalming", "๐Ÿคฆโ€โ™‚๏ธ"],
996
+ ["man_factory_worker", "๐Ÿ‘จโ€๐Ÿญ"],
997
+ ["man_farmer", "๐Ÿ‘จโ€๐ŸŒพ"],
998
+ ["man_feeding_baby", "๐Ÿ‘จโ€๐Ÿผ"],
999
+ ["man_firefighter", "๐Ÿ‘จโ€๐Ÿš’"],
1000
+ ["man_health_worker", "๐Ÿ‘จโ€โš•๏ธ"],
1001
+ ["man_in_manual_wheelchair", "๐Ÿ‘จโ€๐Ÿฆฝ"],
1002
+ ["man_in_motorized_wheelchair", "๐Ÿ‘จโ€๐Ÿฆผ"],
1003
+ ["man_in_tuxedo", "๐Ÿคตโ€โ™‚๏ธ"],
1004
+ ["man_judge", "๐Ÿ‘จโ€โš–๏ธ"],
1005
+ ["man_juggling", "๐Ÿคนโ€โ™‚๏ธ"],
1006
+ ["man_mechanic", "๐Ÿ‘จโ€๐Ÿ”ง"],
1007
+ ["man_office_worker", "๐Ÿ‘จโ€๐Ÿ’ผ"],
1008
+ ["man_pilot", "๐Ÿ‘จโ€โœˆ๏ธ"],
1009
+ ["man_playing_handball", "๐Ÿคพโ€โ™‚๏ธ"],
1010
+ ["man_playing_water_polo", "๐Ÿคฝโ€โ™‚๏ธ"],
1011
+ ["man_scientist", "๐Ÿ‘จโ€๐Ÿ”ฌ"],
1012
+ ["man_shrugging", "๐Ÿคทโ€โ™‚๏ธ"],
1013
+ ["man_singer", "๐Ÿ‘จโ€๐ŸŽค"],
1014
+ ["man_student", "๐Ÿ‘จโ€๐ŸŽ“"],
1015
+ ["man_teacher", "๐Ÿ‘จโ€๐Ÿซ"],
1016
+ ["man_technologist", "๐Ÿ‘จโ€๐Ÿ’ป"],
1017
+ ["man_with_gua_pi_mao", "๐Ÿ‘ฒ"],
1018
+ ["man_with_probing_cane", "๐Ÿ‘จโ€๐Ÿฆฏ"],
1019
+ ["man_with_turban", "๐Ÿ‘ณโ€โ™‚๏ธ"],
1020
+ ["man_with_veil", "๐Ÿ‘ฐโ€โ™‚๏ธ"],
1021
+ ["mandarin", "๐ŸŠ"],
1022
+ ["mango", "๐Ÿฅญ"],
1023
+ ["mans_shoe", "๐Ÿ‘ž"],
1024
+ ["mantelpiece_clock", "๐Ÿ•ฐ๏ธ"],
1025
+ ["manual_wheelchair", "๐Ÿฆฝ"],
1026
+ ["maple_leaf", "๐Ÿ"],
1027
+ ["maracas", "๐Ÿช‡"],
1028
+ ["marshall_islands", "๐Ÿ‡ฒ๐Ÿ‡ญ"],
1029
+ ["martial_arts_uniform", "๐Ÿฅ‹"],
1030
+ ["martinique", "๐Ÿ‡ฒ๐Ÿ‡ถ"],
1031
+ ["mask", "๐Ÿ˜ท"],
1032
+ ["massage", "๐Ÿ’†"],
1033
+ ["massage_man", "๐Ÿ’†โ€โ™‚๏ธ"],
1034
+ ["massage_woman", "๐Ÿ’†โ€โ™€๏ธ"],
1035
+ ["mate", "๐Ÿง‰"],
1036
+ ["mauritania", "๐Ÿ‡ฒ๐Ÿ‡ท"],
1037
+ ["mauritius", "๐Ÿ‡ฒ๐Ÿ‡บ"],
1038
+ ["mayotte", "๐Ÿ‡พ๐Ÿ‡น"],
1039
+ ["meat_on_bone", "๐Ÿ–"],
1040
+ ["mechanic", "๐Ÿง‘โ€๐Ÿ”ง"],
1041
+ ["mechanical_arm", "๐Ÿฆพ"],
1042
+ ["mechanical_leg", "๐Ÿฆฟ"],
1043
+ ["medal_military", "๐ŸŽ–๏ธ"],
1044
+ ["medal_sports", "๐Ÿ…"],
1045
+ ["medical_symbol", "โš•๏ธ"],
1046
+ ["mega", "๐Ÿ“ฃ"],
1047
+ ["melon", "๐Ÿˆ"],
1048
+ ["melting_face", "๐Ÿซ "],
1049
+ ["memo", "๐Ÿ“"],
1050
+ ["men_wrestling", "๐Ÿคผโ€โ™‚๏ธ"],
1051
+ ["mending_heart", "โค๏ธโ€๐Ÿฉน"],
1052
+ ["menorah", "๐Ÿ•Ž"],
1053
+ ["mens", "๐Ÿšน"],
1054
+ ["mermaid", "๐Ÿงœโ€โ™€๏ธ"],
1055
+ ["merman", "๐Ÿงœโ€โ™‚๏ธ"],
1056
+ ["merperson", "๐Ÿงœ"],
1057
+ ["metal", "๐Ÿค˜"],
1058
+ ["metro", "๐Ÿš‡"],
1059
+ ["mexico", "๐Ÿ‡ฒ๐Ÿ‡ฝ"],
1060
+ ["microbe", "๐Ÿฆ "],
1061
+ ["micronesia", "๐Ÿ‡ซ๐Ÿ‡ฒ"],
1062
+ ["microphone", "๐ŸŽค"],
1063
+ ["microscope", "๐Ÿ”ฌ"],
1064
+ ["middle_finger", "๐Ÿ–•"],
1065
+ ["military_helmet", "๐Ÿช–"],
1066
+ ["milk_glass", "๐Ÿฅ›"],
1067
+ ["milky_way", "๐ŸŒŒ"],
1068
+ ["minibus", "๐Ÿš"],
1069
+ ["minidisc", "๐Ÿ’ฝ"],
1070
+ ["mirror", "๐Ÿชž"],
1071
+ ["mirror_ball", "๐Ÿชฉ"],
1072
+ ["mobile_phone_off", "๐Ÿ“ด"],
1073
+ ["moldova", "๐Ÿ‡ฒ๐Ÿ‡ฉ"],
1074
+ ["monaco", "๐Ÿ‡ฒ๐Ÿ‡จ"],
1075
+ ["money_mouth_face", "๐Ÿค‘"],
1076
+ ["money_with_wings", "๐Ÿ’ธ"],
1077
+ ["moneybag", "๐Ÿ’ฐ"],
1078
+ ["mongolia", "๐Ÿ‡ฒ๐Ÿ‡ณ"],
1079
+ ["monkey", "๐Ÿ’"],
1080
+ ["monkey_face", "๐Ÿต"],
1081
+ ["monocle_face", "๐Ÿง"],
1082
+ ["monorail", "๐Ÿš"],
1083
+ ["montenegro", "๐Ÿ‡ฒ๐Ÿ‡ช"],
1084
+ ["montserrat", "๐Ÿ‡ฒ๐Ÿ‡ธ"],
1085
+ ["moon", "๐ŸŒ”"],
1086
+ ["moon_cake", "๐Ÿฅฎ"],
1087
+ ["moose", "๐ŸซŽ"],
1088
+ ["morocco", "๐Ÿ‡ฒ๐Ÿ‡ฆ"],
1089
+ ["mortar_board", "๐ŸŽ“"],
1090
+ ["mosque", "๐Ÿ•Œ"],
1091
+ ["mosquito", "๐ŸฆŸ"],
1092
+ ["motor_boat", "๐Ÿ›ฅ๏ธ"],
1093
+ ["motor_scooter", "๐Ÿ›ต"],
1094
+ ["motorcycle", "๐Ÿ๏ธ"],
1095
+ ["motorized_wheelchair", "๐Ÿฆผ"],
1096
+ ["motorway", "๐Ÿ›ฃ๏ธ"],
1097
+ ["mount_fuji", "๐Ÿ—ป"],
1098
+ ["mountain", "โ›ฐ๏ธ"],
1099
+ ["mountain_bicyclist", "๐Ÿšต"],
1100
+ ["mountain_biking_man", "๐Ÿšตโ€โ™‚๏ธ"],
1101
+ ["mountain_biking_woman", "๐Ÿšตโ€โ™€๏ธ"],
1102
+ ["mountain_cableway", "๐Ÿš "],
1103
+ ["mountain_railway", "๐Ÿšž"],
1104
+ ["mountain_snow", "๐Ÿ”๏ธ"],
1105
+ ["mouse", "๐Ÿญ"],
1106
+ ["mouse2", "๐Ÿ"],
1107
+ ["mouse_trap", "๐Ÿชค"],
1108
+ ["movie_camera", "๐ŸŽฅ"],
1109
+ ["moyai", "๐Ÿ—ฟ"],
1110
+ ["mozambique", "๐Ÿ‡ฒ๐Ÿ‡ฟ"],
1111
+ ["mrs_claus", "๐Ÿคถ"],
1112
+ ["muscle", "๐Ÿ’ช"],
1113
+ ["mushroom", "๐Ÿ„"],
1114
+ ["musical_keyboard", "๐ŸŽน"],
1115
+ ["musical_note", "๐ŸŽต"],
1116
+ ["musical_score", "๐ŸŽผ"],
1117
+ ["mute", "๐Ÿ”‡"],
1118
+ ["mx_claus", "๐Ÿง‘โ€๐ŸŽ„"],
1119
+ ["myanmar", "๐Ÿ‡ฒ๐Ÿ‡ฒ"],
1120
+ ["nail_care", "๐Ÿ’…"],
1121
+ ["name_badge", "๐Ÿ“›"],
1122
+ ["namibia", "๐Ÿ‡ณ๐Ÿ‡ฆ"],
1123
+ ["national_park", "๐Ÿž๏ธ"],
1124
+ ["nauru", "๐Ÿ‡ณ๐Ÿ‡ท"],
1125
+ ["nauseated_face", "๐Ÿคข"],
1126
+ ["nazar_amulet", "๐Ÿงฟ"],
1127
+ ["necktie", "๐Ÿ‘”"],
1128
+ ["negative_squared_cross_mark", "โŽ"],
1129
+ ["nepal", "๐Ÿ‡ณ๐Ÿ‡ต"],
1130
+ ["nerd_face", "๐Ÿค“"],
1131
+ ["nest_with_eggs", "๐Ÿชบ"],
1132
+ ["nesting_dolls", "๐Ÿช†"],
1133
+ ["netherlands", "๐Ÿ‡ณ๐Ÿ‡ฑ"],
1134
+ ["neutral_face", "๐Ÿ˜"],
1135
+ ["new", "๐Ÿ†•"],
1136
+ ["new_caledonia", "๐Ÿ‡ณ๐Ÿ‡จ"],
1137
+ ["new_moon", "๐ŸŒ‘"],
1138
+ ["new_moon_with_face", "๐ŸŒš"],
1139
+ ["new_zealand", "๐Ÿ‡ณ๐Ÿ‡ฟ"],
1140
+ ["newspaper", "๐Ÿ“ฐ"],
1141
+ ["newspaper_roll", "๐Ÿ—ž๏ธ"],
1142
+ ["next_track_button", "โญ๏ธ"],
1143
+ ["ng", "๐Ÿ†–"],
1144
+ ["ng_man", "๐Ÿ™…โ€โ™‚๏ธ"],
1145
+ ["ng_woman", "๐Ÿ™…โ€โ™€๏ธ"],
1146
+ ["nicaragua", "๐Ÿ‡ณ๐Ÿ‡ฎ"],
1147
+ ["niger", "๐Ÿ‡ณ๐Ÿ‡ช"],
1148
+ ["nigeria", "๐Ÿ‡ณ๐Ÿ‡ฌ"],
1149
+ ["night_with_stars", "๐ŸŒƒ"],
1150
+ ["nine", "9๏ธโƒฃ"],
1151
+ ["ninja", "๐Ÿฅท"],
1152
+ ["niue", "๐Ÿ‡ณ๐Ÿ‡บ"],
1153
+ ["no_bell", "๐Ÿ”•"],
1154
+ ["no_bicycles", "๐Ÿšณ"],
1155
+ ["no_entry", "โ›”"],
1156
+ ["no_entry_sign", "๐Ÿšซ"],
1157
+ ["no_good", "๐Ÿ™…"],
1158
+ ["no_good_man", "๐Ÿ™…โ€โ™‚๏ธ"],
1159
+ ["no_good_woman", "๐Ÿ™…โ€โ™€๏ธ"],
1160
+ ["no_mobile_phones", "๐Ÿ“ต"],
1161
+ ["no_mouth", "๐Ÿ˜ถ"],
1162
+ ["no_pedestrians", "๐Ÿšท"],
1163
+ ["no_smoking", "๐Ÿšญ"],
1164
+ ["non-potable_water", "๐Ÿšฑ"],
1165
+ ["norfolk_island", "๐Ÿ‡ณ๐Ÿ‡ซ"],
1166
+ ["north_korea", "๐Ÿ‡ฐ๐Ÿ‡ต"],
1167
+ ["northern_mariana_islands", "๐Ÿ‡ฒ๐Ÿ‡ต"],
1168
+ ["norway", "๐Ÿ‡ณ๐Ÿ‡ด"],
1169
+ ["nose", "๐Ÿ‘ƒ"],
1170
+ ["notebook", "๐Ÿ““"],
1171
+ ["notebook_with_decorative_cover", "๐Ÿ“”"],
1172
+ ["notes", "๐ŸŽถ"],
1173
+ ["nut_and_bolt", "๐Ÿ”ฉ"],
1174
+ ["o", "โญ•"],
1175
+ ["o2", "๐Ÿ…พ๏ธ"],
1176
+ ["ocean", "๐ŸŒŠ"],
1177
+ ["octopus", "๐Ÿ™"],
1178
+ ["oden", "๐Ÿข"],
1179
+ ["office", "๐Ÿข"],
1180
+ ["office_worker", "๐Ÿง‘โ€๐Ÿ’ผ"],
1181
+ ["oil_drum", "๐Ÿ›ข๏ธ"],
1182
+ ["ok", "๐Ÿ†—"],
1183
+ ["ok_hand", "๐Ÿ‘Œ"],
1184
+ ["ok_man", "๐Ÿ™†โ€โ™‚๏ธ"],
1185
+ ["ok_person", "๐Ÿ™†"],
1186
+ ["ok_woman", "๐Ÿ™†โ€โ™€๏ธ"],
1187
+ ["old_key", "๐Ÿ—๏ธ"],
1188
+ ["older_adult", "๐Ÿง“"],
1189
+ ["older_man", "๐Ÿ‘ด"],
1190
+ ["older_woman", "๐Ÿ‘ต"],
1191
+ ["olive", "๐Ÿซ’"],
1192
+ ["om", "๐Ÿ•‰๏ธ"],
1193
+ ["oman", "๐Ÿ‡ด๐Ÿ‡ฒ"],
1194
+ ["on", "๐Ÿ”›"],
1195
+ ["oncoming_automobile", "๐Ÿš˜"],
1196
+ ["oncoming_bus", "๐Ÿš"],
1197
+ ["oncoming_police_car", "๐Ÿš”"],
1198
+ ["oncoming_taxi", "๐Ÿš–"],
1199
+ ["one", "1๏ธโƒฃ"],
1200
+ ["one_piece_swimsuit", "๐Ÿฉฑ"],
1201
+ ["onion", "๐Ÿง…"],
1202
+ ["open_book", "๐Ÿ“–"],
1203
+ ["open_file_folder", "๐Ÿ“‚"],
1204
+ ["open_hands", "๐Ÿ‘"],
1205
+ ["open_mouth", "๐Ÿ˜ฎ"],
1206
+ ["open_umbrella", "โ˜‚๏ธ"],
1207
+ ["ophiuchus", "โ›Ž"],
1208
+ ["orange", "๐ŸŠ"],
1209
+ ["orange_book", "๐Ÿ“™"],
1210
+ ["orange_circle", "๐ŸŸ "],
1211
+ ["orange_heart", "๐Ÿงก"],
1212
+ ["orange_square", "๐ŸŸง"],
1213
+ ["orangutan", "๐Ÿฆง"],
1214
+ ["orthodox_cross", "โ˜ฆ๏ธ"],
1215
+ ["otter", "๐Ÿฆฆ"],
1216
+ ["outbox_tray", "๐Ÿ“ค"],
1217
+ ["owl", "๐Ÿฆ‰"],
1218
+ ["ox", "๐Ÿ‚"],
1219
+ ["oyster", "๐Ÿฆช"],
1220
+ ["package", "๐Ÿ“ฆ"],
1221
+ ["page_facing_up", "๐Ÿ“„"],
1222
+ ["page_with_curl", "๐Ÿ“ƒ"],
1223
+ ["pager", "๐Ÿ“Ÿ"],
1224
+ ["paintbrush", "๐Ÿ–Œ๏ธ"],
1225
+ ["pakistan", "๐Ÿ‡ต๐Ÿ‡ฐ"],
1226
+ ["palau", "๐Ÿ‡ต๐Ÿ‡ผ"],
1227
+ ["palestinian_territories", "๐Ÿ‡ต๐Ÿ‡ธ"],
1228
+ ["palm_down_hand", "๐Ÿซณ"],
1229
+ ["palm_tree", "๐ŸŒด"],
1230
+ ["palm_up_hand", "๐Ÿซด"],
1231
+ ["palms_up_together", "๐Ÿคฒ"],
1232
+ ["panama", "๐Ÿ‡ต๐Ÿ‡ฆ"],
1233
+ ["pancakes", "๐Ÿฅž"],
1234
+ ["panda_face", "๐Ÿผ"],
1235
+ ["paperclip", "๐Ÿ“Ž"],
1236
+ ["paperclips", "๐Ÿ–‡๏ธ"],
1237
+ ["papua_new_guinea", "๐Ÿ‡ต๐Ÿ‡ฌ"],
1238
+ ["parachute", "๐Ÿช‚"],
1239
+ ["paraguay", "๐Ÿ‡ต๐Ÿ‡พ"],
1240
+ ["parasol_on_ground", "โ›ฑ๏ธ"],
1241
+ ["parking", "๐Ÿ…ฟ๏ธ"],
1242
+ ["parrot", "๐Ÿฆœ"],
1243
+ ["part_alternation_mark", "ใ€ฝ๏ธ"],
1244
+ ["partly_sunny", "โ›…"],
1245
+ ["partying_face", "๐Ÿฅณ"],
1246
+ ["passenger_ship", "๐Ÿ›ณ๏ธ"],
1247
+ ["passport_control", "๐Ÿ›‚"],
1248
+ ["pause_button", "โธ๏ธ"],
1249
+ ["paw_prints", "๐Ÿพ"],
1250
+ ["pea_pod", "๐Ÿซ›"],
1251
+ ["peace_symbol", "โ˜ฎ๏ธ"],
1252
+ ["peach", "๐Ÿ‘"],
1253
+ ["peacock", "๐Ÿฆš"],
1254
+ ["peanuts", "๐Ÿฅœ"],
1255
+ ["pear", "๐Ÿ"],
1256
+ ["pen", "๐Ÿ–Š๏ธ"],
1257
+ ["pencil", "๐Ÿ“"],
1258
+ ["pencil2", "โœ๏ธ"],
1259
+ ["penguin", "๐Ÿง"],
1260
+ ["pensive", "๐Ÿ˜”"],
1261
+ ["people_holding_hands", "๐Ÿง‘โ€๐Ÿคโ€๐Ÿง‘"],
1262
+ ["people_hugging", "๐Ÿซ‚"],
1263
+ ["performing_arts", "๐ŸŽญ"],
1264
+ ["persevere", "๐Ÿ˜ฃ"],
1265
+ ["person_bald", "๐Ÿง‘โ€๐Ÿฆฒ"],
1266
+ ["person_curly_hair", "๐Ÿง‘โ€๐Ÿฆฑ"],
1267
+ ["person_feeding_baby", "๐Ÿง‘โ€๐Ÿผ"],
1268
+ ["person_fencing", "๐Ÿคบ"],
1269
+ ["person_in_manual_wheelchair", "๐Ÿง‘โ€๐Ÿฆฝ"],
1270
+ ["person_in_motorized_wheelchair", "๐Ÿง‘โ€๐Ÿฆผ"],
1271
+ ["person_in_tuxedo", "๐Ÿคต"],
1272
+ ["person_red_hair", "๐Ÿง‘โ€๐Ÿฆฐ"],
1273
+ ["person_white_hair", "๐Ÿง‘โ€๐Ÿฆณ"],
1274
+ ["person_with_crown", "๐Ÿซ…"],
1275
+ ["person_with_probing_cane", "๐Ÿง‘โ€๐Ÿฆฏ"],
1276
+ ["person_with_turban", "๐Ÿ‘ณ"],
1277
+ ["person_with_veil", "๐Ÿ‘ฐ"],
1278
+ ["peru", "๐Ÿ‡ต๐Ÿ‡ช"],
1279
+ ["petri_dish", "๐Ÿงซ"],
1280
+ ["philippines", "๐Ÿ‡ต๐Ÿ‡ญ"],
1281
+ ["phone", "โ˜Ž๏ธ"],
1282
+ ["pick", "โ›๏ธ"],
1283
+ ["pickup_truck", "๐Ÿ›ป"],
1284
+ ["pie", "๐Ÿฅง"],
1285
+ ["pig", "๐Ÿท"],
1286
+ ["pig2", "๐Ÿ–"],
1287
+ ["pig_nose", "๐Ÿฝ"],
1288
+ ["pill", "๐Ÿ’Š"],
1289
+ ["pilot", "๐Ÿง‘โ€โœˆ๏ธ"],
1290
+ ["pinata", "๐Ÿช…"],
1291
+ ["pinched_fingers", "๐ŸคŒ"],
1292
+ ["pinching_hand", "๐Ÿค"],
1293
+ ["pineapple", "๐Ÿ"],
1294
+ ["ping_pong", "๐Ÿ“"],
1295
+ ["pink_heart", "๐Ÿฉท"],
1296
+ ["pirate_flag", "๐Ÿดโ€โ˜ ๏ธ"],
1297
+ ["pisces", "โ™“"],
1298
+ ["pitcairn_islands", "๐Ÿ‡ต๐Ÿ‡ณ"],
1299
+ ["pizza", "๐Ÿ•"],
1300
+ ["placard", "๐Ÿชง"],
1301
+ ["place_of_worship", "๐Ÿ›"],
1302
+ ["plate_with_cutlery", "๐Ÿฝ๏ธ"],
1303
+ ["play_or_pause_button", "โฏ๏ธ"],
1304
+ ["playground_slide", "๐Ÿ›"],
1305
+ ["pleading_face", "๐Ÿฅบ"],
1306
+ ["plunger", "๐Ÿช "],
1307
+ ["point_down", "๐Ÿ‘‡"],
1308
+ ["point_left", "๐Ÿ‘ˆ"],
1309
+ ["point_right", "๐Ÿ‘‰"],
1310
+ ["point_up", "โ˜๏ธ"],
1311
+ ["point_up_2", "๐Ÿ‘†"],
1312
+ ["poland", "๐Ÿ‡ต๐Ÿ‡ฑ"],
1313
+ ["polar_bear", "๐Ÿปโ€โ„๏ธ"],
1314
+ ["police_car", "๐Ÿš“"],
1315
+ ["police_officer", "๐Ÿ‘ฎ"],
1316
+ ["policeman", "๐Ÿ‘ฎโ€โ™‚๏ธ"],
1317
+ ["policewoman", "๐Ÿ‘ฎโ€โ™€๏ธ"],
1318
+ ["poodle", "๐Ÿฉ"],
1319
+ ["poop", "๐Ÿ’ฉ"],
1320
+ ["popcorn", "๐Ÿฟ"],
1321
+ ["portugal", "๐Ÿ‡ต๐Ÿ‡น"],
1322
+ ["post_office", "๐Ÿฃ"],
1323
+ ["postal_horn", "๐Ÿ“ฏ"],
1324
+ ["postbox", "๐Ÿ“ฎ"],
1325
+ ["potable_water", "๐Ÿšฐ"],
1326
+ ["potato", "๐Ÿฅ”"],
1327
+ ["potted_plant", "๐Ÿชด"],
1328
+ ["pouch", "๐Ÿ‘"],
1329
+ ["poultry_leg", "๐Ÿ—"],
1330
+ ["pound", "๐Ÿ’ท"],
1331
+ ["pouring_liquid", "๐Ÿซ—"],
1332
+ ["pout", "๐Ÿ˜ก"],
1333
+ ["pouting_cat", "๐Ÿ˜พ"],
1334
+ ["pouting_face", "๐Ÿ™Ž"],
1335
+ ["pouting_man", "๐Ÿ™Žโ€โ™‚๏ธ"],
1336
+ ["pouting_woman", "๐Ÿ™Žโ€โ™€๏ธ"],
1337
+ ["pray", "๐Ÿ™"],
1338
+ ["prayer_beads", "๐Ÿ“ฟ"],
1339
+ ["pregnant_man", "๐Ÿซƒ"],
1340
+ ["pregnant_person", "๐Ÿซ„"],
1341
+ ["pregnant_woman", "๐Ÿคฐ"],
1342
+ ["pretzel", "๐Ÿฅจ"],
1343
+ ["previous_track_button", "โฎ๏ธ"],
1344
+ ["prince", "๐Ÿคด"],
1345
+ ["princess", "๐Ÿ‘ธ"],
1346
+ ["printer", "๐Ÿ–จ๏ธ"],
1347
+ ["probing_cane", "๐Ÿฆฏ"],
1348
+ ["puerto_rico", "๐Ÿ‡ต๐Ÿ‡ท"],
1349
+ ["punch", "๐Ÿ‘Š"],
1350
+ ["purple_circle", "๐ŸŸฃ"],
1351
+ ["purple_heart", "๐Ÿ’œ"],
1352
+ ["purple_square", "๐ŸŸช"],
1353
+ ["purse", "๐Ÿ‘›"],
1354
+ ["pushpin", "๐Ÿ“Œ"],
1355
+ ["put_litter_in_its_place", "๐Ÿšฎ"],
1356
+ ["qatar", "๐Ÿ‡ถ๐Ÿ‡ฆ"],
1357
+ ["question", "โ“"],
1358
+ ["rabbit", "๐Ÿฐ"],
1359
+ ["rabbit2", "๐Ÿ‡"],
1360
+ ["raccoon", "๐Ÿฆ"],
1361
+ ["racehorse", "๐ŸŽ"],
1362
+ ["racing_car", "๐ŸŽ๏ธ"],
1363
+ ["radio", "๐Ÿ“ป"],
1364
+ ["radio_button", "๐Ÿ”˜"],
1365
+ ["radioactive", "โ˜ข๏ธ"],
1366
+ ["rage", "๐Ÿ˜ก"],
1367
+ ["railway_car", "๐Ÿšƒ"],
1368
+ ["railway_track", "๐Ÿ›ค๏ธ"],
1369
+ ["rainbow", "๐ŸŒˆ"],
1370
+ ["rainbow_flag", "๐Ÿณ๏ธโ€๐ŸŒˆ"],
1371
+ ["raised_back_of_hand", "๐Ÿคš"],
1372
+ ["raised_eyebrow", "๐Ÿคจ"],
1373
+ ["raised_hand", "โœ‹"],
1374
+ ["raised_hand_with_fingers_splayed", "๐Ÿ–๏ธ"],
1375
+ ["raised_hands", "๐Ÿ™Œ"],
1376
+ ["raising_hand", "๐Ÿ™‹"],
1377
+ ["raising_hand_man", "๐Ÿ™‹โ€โ™‚๏ธ"],
1378
+ ["raising_hand_woman", "๐Ÿ™‹โ€โ™€๏ธ"],
1379
+ ["ram", "๐Ÿ"],
1380
+ ["ramen", "๐Ÿœ"],
1381
+ ["rat", "๐Ÿ€"],
1382
+ ["razor", "๐Ÿช’"],
1383
+ ["receipt", "๐Ÿงพ"],
1384
+ ["record_button", "โบ๏ธ"],
1385
+ ["recycle", "โ™ป๏ธ"],
1386
+ ["red_car", "๐Ÿš—"],
1387
+ ["red_circle", "๐Ÿ”ด"],
1388
+ ["red_envelope", "๐Ÿงง"],
1389
+ ["red_haired_man", "๐Ÿ‘จโ€๐Ÿฆฐ"],
1390
+ ["red_haired_woman", "๐Ÿ‘ฉโ€๐Ÿฆฐ"],
1391
+ ["red_square", "๐ŸŸฅ"],
1392
+ ["registered", "ยฎ๏ธ"],
1393
+ ["relaxed", "โ˜บ๏ธ"],
1394
+ ["relieved", "๐Ÿ˜Œ"],
1395
+ ["reminder_ribbon", "๐ŸŽ—๏ธ"],
1396
+ ["repeat", "๐Ÿ”"],
1397
+ ["repeat_one", "๐Ÿ”‚"],
1398
+ ["rescue_worker_helmet", "โ›‘๏ธ"],
1399
+ ["restroom", "๐Ÿšป"],
1400
+ ["reunion", "๐Ÿ‡ท๐Ÿ‡ช"],
1401
+ ["revolving_hearts", "๐Ÿ’ž"],
1402
+ ["rewind", "โช"],
1403
+ ["rhinoceros", "๐Ÿฆ"],
1404
+ ["ribbon", "๐ŸŽ€"],
1405
+ ["rice", "๐Ÿš"],
1406
+ ["rice_ball", "๐Ÿ™"],
1407
+ ["rice_cracker", "๐Ÿ˜"],
1408
+ ["rice_scene", "๐ŸŽ‘"],
1409
+ ["right_anger_bubble", "๐Ÿ—ฏ๏ธ"],
1410
+ ["rightwards_hand", "๐Ÿซฑ"],
1411
+ ["rightwards_pushing_hand", "๐Ÿซธ"],
1412
+ ["ring", "๐Ÿ’"],
1413
+ ["ring_buoy", "๐Ÿ›Ÿ"],
1414
+ ["ringed_planet", "๐Ÿช"],
1415
+ ["robot", "๐Ÿค–"],
1416
+ ["rock", "๐Ÿชจ"],
1417
+ ["rocket", "๐Ÿš€"],
1418
+ ["rofl", "๐Ÿคฃ"],
1419
+ ["roll_eyes", "๐Ÿ™„"],
1420
+ ["roll_of_paper", "๐Ÿงป"],
1421
+ ["roller_coaster", "๐ŸŽข"],
1422
+ ["roller_skate", "๐Ÿ›ผ"],
1423
+ ["romania", "๐Ÿ‡ท๐Ÿ‡ด"],
1424
+ ["rooster", "๐Ÿ“"],
1425
+ ["rose", "๐ŸŒน"],
1426
+ ["rosette", "๐Ÿต๏ธ"],
1427
+ ["rotating_light", "๐Ÿšจ"],
1428
+ ["round_pushpin", "๐Ÿ“"],
1429
+ ["rowboat", "๐Ÿšฃ"],
1430
+ ["rowing_man", "๐Ÿšฃโ€โ™‚๏ธ"],
1431
+ ["rowing_woman", "๐Ÿšฃโ€โ™€๏ธ"],
1432
+ ["ru", "๐Ÿ‡ท๐Ÿ‡บ"],
1433
+ ["rugby_football", "๐Ÿ‰"],
1434
+ ["runner", "๐Ÿƒ"],
1435
+ ["running", "๐Ÿƒ"],
1436
+ ["running_man", "๐Ÿƒโ€โ™‚๏ธ"],
1437
+ ["running_shirt_with_sash", "๐ŸŽฝ"],
1438
+ ["running_woman", "๐Ÿƒโ€โ™€๏ธ"],
1439
+ ["rwanda", "๐Ÿ‡ท๐Ÿ‡ผ"],
1440
+ ["sa", "๐Ÿˆ‚๏ธ"],
1441
+ ["safety_pin", "๐Ÿงท"],
1442
+ ["safety_vest", "๐Ÿฆบ"],
1443
+ ["sagittarius", "โ™"],
1444
+ ["sailboat", "โ›ต"],
1445
+ ["sake", "๐Ÿถ"],
1446
+ ["salt", "๐Ÿง‚"],
1447
+ ["saluting_face", "๐Ÿซก"],
1448
+ ["samoa", "๐Ÿ‡ผ๐Ÿ‡ธ"],
1449
+ ["san_marino", "๐Ÿ‡ธ๐Ÿ‡ฒ"],
1450
+ ["sandal", "๐Ÿ‘ก"],
1451
+ ["sandwich", "๐Ÿฅช"],
1452
+ ["santa", "๐ŸŽ…"],
1453
+ ["sao_tome_principe", "๐Ÿ‡ธ๐Ÿ‡น"],
1454
+ ["sari", "๐Ÿฅป"],
1455
+ ["sassy_man", "๐Ÿ’โ€โ™‚๏ธ"],
1456
+ ["sassy_woman", "๐Ÿ’โ€โ™€๏ธ"],
1457
+ ["satellite", "๐Ÿ“ก"],
1458
+ ["satisfied", "๐Ÿ˜†"],
1459
+ ["saudi_arabia", "๐Ÿ‡ธ๐Ÿ‡ฆ"],
1460
+ ["sauna_man", "๐Ÿง–โ€โ™‚๏ธ"],
1461
+ ["sauna_person", "๐Ÿง–"],
1462
+ ["sauna_woman", "๐Ÿง–โ€โ™€๏ธ"],
1463
+ ["sauropod", "๐Ÿฆ•"],
1464
+ ["saxophone", "๐ŸŽท"],
1465
+ ["scarf", "๐Ÿงฃ"],
1466
+ ["school", "๐Ÿซ"],
1467
+ ["school_satchel", "๐ŸŽ’"],
1468
+ ["scientist", "๐Ÿง‘โ€๐Ÿ”ฌ"],
1469
+ ["scissors", "โœ‚๏ธ"],
1470
+ ["scorpion", "๐Ÿฆ‚"],
1471
+ ["scorpius", "โ™"],
1472
+ ["scotland", "๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ"],
1473
+ ["scream", "๐Ÿ˜ฑ"],
1474
+ ["scream_cat", "๐Ÿ™€"],
1475
+ ["screwdriver", "๐Ÿช›"],
1476
+ ["scroll", "๐Ÿ“œ"],
1477
+ ["seal", "๐Ÿฆญ"],
1478
+ ["seat", "๐Ÿ’บ"],
1479
+ ["secret", "ใŠ™๏ธ"],
1480
+ ["see_no_evil", "๐Ÿ™ˆ"],
1481
+ ["seedling", "๐ŸŒฑ"],
1482
+ ["selfie", "๐Ÿคณ"],
1483
+ ["senegal", "๐Ÿ‡ธ๐Ÿ‡ณ"],
1484
+ ["serbia", "๐Ÿ‡ท๐Ÿ‡ธ"],
1485
+ ["service_dog", "๐Ÿ•โ€๐Ÿฆบ"],
1486
+ ["seven", "7๏ธโƒฃ"],
1487
+ ["sewing_needle", "๐Ÿชก"],
1488
+ ["seychelles", "๐Ÿ‡ธ๐Ÿ‡จ"],
1489
+ ["shaking_face", "๐Ÿซจ"],
1490
+ ["shallow_pan_of_food", "๐Ÿฅ˜"],
1491
+ ["shamrock", "โ˜˜๏ธ"],
1492
+ ["shark", "๐Ÿฆˆ"],
1493
+ ["shaved_ice", "๐Ÿง"],
1494
+ ["sheep", "๐Ÿ‘"],
1495
+ ["shell", "๐Ÿš"],
1496
+ ["shield", "๐Ÿ›ก๏ธ"],
1497
+ ["shinto_shrine", "โ›ฉ๏ธ"],
1498
+ ["ship", "๐Ÿšข"],
1499
+ ["shirt", "๐Ÿ‘•"],
1500
+ ["shit", "๐Ÿ’ฉ"],
1501
+ ["shoe", "๐Ÿ‘ž"],
1502
+ ["shopping", "๐Ÿ›๏ธ"],
1503
+ ["shopping_cart", "๐Ÿ›’"],
1504
+ ["shorts", "๐Ÿฉณ"],
1505
+ ["shower", "๐Ÿšฟ"],
1506
+ ["shrimp", "๐Ÿฆ"],
1507
+ ["shrug", "๐Ÿคท"],
1508
+ ["shushing_face", "๐Ÿคซ"],
1509
+ ["sierra_leone", "๐Ÿ‡ธ๐Ÿ‡ฑ"],
1510
+ ["signal_strength", "๐Ÿ“ถ"],
1511
+ ["singapore", "๐Ÿ‡ธ๐Ÿ‡ฌ"],
1512
+ ["singer", "๐Ÿง‘โ€๐ŸŽค"],
1513
+ ["sint_maarten", "๐Ÿ‡ธ๐Ÿ‡ฝ"],
1514
+ ["six", "6๏ธโƒฃ"],
1515
+ ["six_pointed_star", "๐Ÿ”ฏ"],
1516
+ ["skateboard", "๐Ÿ›น"],
1517
+ ["ski", "๐ŸŽฟ"],
1518
+ ["skier", "โ›ท๏ธ"],
1519
+ ["skull", "๐Ÿ’€"],
1520
+ ["skull_and_crossbones", "โ˜ ๏ธ"],
1521
+ ["skunk", "๐Ÿฆจ"],
1522
+ ["sled", "๐Ÿ›ท"],
1523
+ ["sleeping", "๐Ÿ˜ด"],
1524
+ ["sleeping_bed", "๐Ÿ›Œ"],
1525
+ ["sleepy", "๐Ÿ˜ช"],
1526
+ ["slightly_frowning_face", "๐Ÿ™"],
1527
+ ["slightly_smiling_face", "๐Ÿ™‚"],
1528
+ ["slot_machine", "๐ŸŽฐ"],
1529
+ ["sloth", "๐Ÿฆฅ"],
1530
+ ["slovakia", "๐Ÿ‡ธ๐Ÿ‡ฐ"],
1531
+ ["slovenia", "๐Ÿ‡ธ๐Ÿ‡ฎ"],
1532
+ ["small_airplane", "๐Ÿ›ฉ๏ธ"],
1533
+ ["small_blue_diamond", "๐Ÿ”น"],
1534
+ ["small_orange_diamond", "๐Ÿ”ธ"],
1535
+ ["small_red_triangle", "๐Ÿ”บ"],
1536
+ ["small_red_triangle_down", "๐Ÿ”ป"],
1537
+ ["smile", "๐Ÿ˜„"],
1538
+ ["smile_cat", "๐Ÿ˜ธ"],
1539
+ ["smiley", "๐Ÿ˜ƒ"],
1540
+ ["smiley_cat", "๐Ÿ˜บ"],
1541
+ ["smiling_face_with_tear", "๐Ÿฅฒ"],
1542
+ ["smiling_face_with_three_hearts", "๐Ÿฅฐ"],
1543
+ ["smiling_imp", "๐Ÿ˜ˆ"],
1544
+ ["smirk", "๐Ÿ˜"],
1545
+ ["smirk_cat", "๐Ÿ˜ผ"],
1546
+ ["smoking", "๐Ÿšฌ"],
1547
+ ["snail", "๐ŸŒ"],
1548
+ ["snake", "๐Ÿ"],
1549
+ ["sneezing_face", "๐Ÿคง"],
1550
+ ["snowboarder", "๐Ÿ‚"],
1551
+ ["snowflake", "โ„๏ธ"],
1552
+ ["snowman", "โ›„"],
1553
+ ["snowman_with_snow", "โ˜ƒ๏ธ"],
1554
+ ["soap", "๐Ÿงผ"],
1555
+ ["sob", "๐Ÿ˜ญ"],
1556
+ ["soccer", "โšฝ"],
1557
+ ["socks", "๐Ÿงฆ"],
1558
+ ["softball", "๐ŸฅŽ"],
1559
+ ["solomon_islands", "๐Ÿ‡ธ๐Ÿ‡ง"],
1560
+ ["somalia", "๐Ÿ‡ธ๐Ÿ‡ด"],
1561
+ ["soon", "๐Ÿ”œ"],
1562
+ ["sos", "๐Ÿ†˜"],
1563
+ ["sound", "๐Ÿ”‰"],
1564
+ ["south_africa", "๐Ÿ‡ฟ๐Ÿ‡ฆ"],
1565
+ ["south_georgia_south_sandwich_islands", "๐Ÿ‡ฌ๐Ÿ‡ธ"],
1566
+ ["south_sudan", "๐Ÿ‡ธ๐Ÿ‡ธ"],
1567
+ ["space_invader", "๐Ÿ‘พ"],
1568
+ ["spades", "โ™ ๏ธ"],
1569
+ ["spaghetti", "๐Ÿ"],
1570
+ ["sparkle", "โ‡๏ธ"],
1571
+ ["sparkler", "๐ŸŽ‡"],
1572
+ ["sparkles", "โœจ"],
1573
+ ["sparkling_heart", "๐Ÿ’–"],
1574
+ ["speak_no_evil", "๐Ÿ™Š"],
1575
+ ["speaker", "๐Ÿ”ˆ"],
1576
+ ["speaking_head", "๐Ÿ—ฃ๏ธ"],
1577
+ ["speech_balloon", "๐Ÿ’ฌ"],
1578
+ ["speedboat", "๐Ÿšค"],
1579
+ ["spider", "๐Ÿ•ท๏ธ"],
1580
+ ["spider_web", "๐Ÿ•ธ๏ธ"],
1581
+ ["spiral_calendar", "๐Ÿ—“๏ธ"],
1582
+ ["spiral_notepad", "๐Ÿ—’๏ธ"],
1583
+ ["sponge", "๐Ÿงฝ"],
1584
+ ["spoon", "๐Ÿฅ„"],
1585
+ ["squid", "๐Ÿฆ‘"],
1586
+ ["sri_lanka", "๐Ÿ‡ฑ๐Ÿ‡ฐ"],
1587
+ ["st_barthelemy", "๐Ÿ‡ง๐Ÿ‡ฑ"],
1588
+ ["st_helena", "๐Ÿ‡ธ๐Ÿ‡ญ"],
1589
+ ["st_kitts_nevis", "๐Ÿ‡ฐ๐Ÿ‡ณ"],
1590
+ ["st_lucia", "๐Ÿ‡ฑ๐Ÿ‡จ"],
1591
+ ["st_martin", "๐Ÿ‡ฒ๐Ÿ‡ซ"],
1592
+ ["st_pierre_miquelon", "๐Ÿ‡ต๐Ÿ‡ฒ"],
1593
+ ["st_vincent_grenadines", "๐Ÿ‡ป๐Ÿ‡จ"],
1594
+ ["stadium", "๐ŸŸ๏ธ"],
1595
+ ["standing_man", "๐Ÿงโ€โ™‚๏ธ"],
1596
+ ["standing_person", "๐Ÿง"],
1597
+ ["standing_woman", "๐Ÿงโ€โ™€๏ธ"],
1598
+ ["star", "โญ"],
1599
+ ["star2", "๐ŸŒŸ"],
1600
+ ["star_and_crescent", "โ˜ช๏ธ"],
1601
+ ["star_of_david", "โœก๏ธ"],
1602
+ ["star_struck", "๐Ÿคฉ"],
1603
+ ["stars", "๐ŸŒ "],
1604
+ ["station", "๐Ÿš‰"],
1605
+ ["statue_of_liberty", "๐Ÿ—ฝ"],
1606
+ ["steam_locomotive", "๐Ÿš‚"],
1607
+ ["stethoscope", "๐Ÿฉบ"],
1608
+ ["stew", "๐Ÿฒ"],
1609
+ ["stop_button", "โน๏ธ"],
1610
+ ["stop_sign", "๐Ÿ›‘"],
1611
+ ["stopwatch", "โฑ๏ธ"],
1612
+ ["straight_ruler", "๐Ÿ“"],
1613
+ ["strawberry", "๐Ÿ“"],
1614
+ ["stuck_out_tongue", "๐Ÿ˜›"],
1615
+ ["stuck_out_tongue_closed_eyes", "๐Ÿ˜"],
1616
+ ["stuck_out_tongue_winking_eye", "๐Ÿ˜œ"],
1617
+ ["student", "๐Ÿง‘โ€๐ŸŽ“"],
1618
+ ["studio_microphone", "๐ŸŽ™๏ธ"],
1619
+ ["stuffed_flatbread", "๐Ÿฅ™"],
1620
+ ["sudan", "๐Ÿ‡ธ๐Ÿ‡ฉ"],
1621
+ ["sun_behind_large_cloud", "๐ŸŒฅ๏ธ"],
1622
+ ["sun_behind_rain_cloud", "๐ŸŒฆ๏ธ"],
1623
+ ["sun_behind_small_cloud", "๐ŸŒค๏ธ"],
1624
+ ["sun_with_face", "๐ŸŒž"],
1625
+ ["sunflower", "๐ŸŒป"],
1626
+ ["sunglasses", "๐Ÿ˜Ž"],
1627
+ ["sunny", "โ˜€๏ธ"],
1628
+ ["sunrise", "๐ŸŒ…"],
1629
+ ["sunrise_over_mountains", "๐ŸŒ„"],
1630
+ ["superhero", "๐Ÿฆธ"],
1631
+ ["superhero_man", "๐Ÿฆธโ€โ™‚๏ธ"],
1632
+ ["superhero_woman", "๐Ÿฆธโ€โ™€๏ธ"],
1633
+ ["supervillain", "๐Ÿฆน"],
1634
+ ["supervillain_man", "๐Ÿฆนโ€โ™‚๏ธ"],
1635
+ ["supervillain_woman", "๐Ÿฆนโ€โ™€๏ธ"],
1636
+ ["surfer", "๐Ÿ„"],
1637
+ ["surfing_man", "๐Ÿ„โ€โ™‚๏ธ"],
1638
+ ["surfing_woman", "๐Ÿ„โ€โ™€๏ธ"],
1639
+ ["suriname", "๐Ÿ‡ธ๐Ÿ‡ท"],
1640
+ ["sushi", "๐Ÿฃ"],
1641
+ ["suspension_railway", "๐ŸšŸ"],
1642
+ ["svalbard_jan_mayen", "๐Ÿ‡ธ๐Ÿ‡ฏ"],
1643
+ ["swan", "๐Ÿฆข"],
1644
+ ["swaziland", "๐Ÿ‡ธ๐Ÿ‡ฟ"],
1645
+ ["sweat", "๐Ÿ˜“"],
1646
+ ["sweat_drops", "๐Ÿ’ฆ"],
1647
+ ["sweat_smile", "๐Ÿ˜…"],
1648
+ ["sweden", "๐Ÿ‡ธ๐Ÿ‡ช"],
1649
+ ["sweet_potato", "๐Ÿ "],
1650
+ ["swim_brief", "๐Ÿฉฒ"],
1651
+ ["swimmer", "๐ŸŠ"],
1652
+ ["swimming_man", "๐ŸŠโ€โ™‚๏ธ"],
1653
+ ["swimming_woman", "๐ŸŠโ€โ™€๏ธ"],
1654
+ ["switzerland", "๐Ÿ‡จ๐Ÿ‡ญ"],
1655
+ ["symbols", "๐Ÿ”ฃ"],
1656
+ ["synagogue", "๐Ÿ•"],
1657
+ ["syria", "๐Ÿ‡ธ๐Ÿ‡พ"],
1658
+ ["syringe", "๐Ÿ’‰"],
1659
+ ["t-rex", "๐Ÿฆ–"],
1660
+ ["taco", "๐ŸŒฎ"],
1661
+ ["tada", "๐ŸŽ‰"],
1662
+ ["taiwan", "๐Ÿ‡น๐Ÿ‡ผ"],
1663
+ ["tajikistan", "๐Ÿ‡น๐Ÿ‡ฏ"],
1664
+ ["takeout_box", "๐Ÿฅก"],
1665
+ ["tamale", "๐Ÿซ”"],
1666
+ ["tanabata_tree", "๐ŸŽ‹"],
1667
+ ["tangerine", "๐ŸŠ"],
1668
+ ["tanzania", "๐Ÿ‡น๐Ÿ‡ฟ"],
1669
+ ["taurus", "โ™‰"],
1670
+ ["taxi", "๐Ÿš•"],
1671
+ ["tea", "๐Ÿต"],
1672
+ ["teacher", "๐Ÿง‘โ€๐Ÿซ"],
1673
+ ["teapot", "๐Ÿซ–"],
1674
+ ["technologist", "๐Ÿง‘โ€๐Ÿ’ป"],
1675
+ ["teddy_bear", "๐Ÿงธ"],
1676
+ ["telephone", "โ˜Ž๏ธ"],
1677
+ ["telephone_receiver", "๐Ÿ“ž"],
1678
+ ["telescope", "๐Ÿ”ญ"],
1679
+ ["tennis", "๐ŸŽพ"],
1680
+ ["tent", "โ›บ"],
1681
+ ["test_tube", "๐Ÿงช"],
1682
+ ["thailand", "๐Ÿ‡น๐Ÿ‡ญ"],
1683
+ ["thermometer", "๐ŸŒก๏ธ"],
1684
+ ["thinking", "๐Ÿค”"],
1685
+ ["thong_sandal", "๐Ÿฉด"],
1686
+ ["thought_balloon", "๐Ÿ’ญ"],
1687
+ ["thread", "๐Ÿงต"],
1688
+ ["three", "3๏ธโƒฃ"],
1689
+ ["thumbsdown", "๐Ÿ‘Ž"],
1690
+ ["thumbsup", "๐Ÿ‘"],
1691
+ ["ticket", "๐ŸŽซ"],
1692
+ ["tickets", "๐ŸŽŸ๏ธ"],
1693
+ ["tiger", "๐Ÿฏ"],
1694
+ ["tiger2", "๐Ÿ…"],
1695
+ ["timer_clock", "โฒ๏ธ"],
1696
+ ["timor_leste", "๐Ÿ‡น๐Ÿ‡ฑ"],
1697
+ ["tipping_hand_man", "๐Ÿ’โ€โ™‚๏ธ"],
1698
+ ["tipping_hand_person", "๐Ÿ’"],
1699
+ ["tipping_hand_woman", "๐Ÿ’โ€โ™€๏ธ"],
1700
+ ["tired_face", "๐Ÿ˜ซ"],
1701
+ ["tm", "โ„ข๏ธ"],
1702
+ ["togo", "๐Ÿ‡น๐Ÿ‡ฌ"],
1703
+ ["toilet", "๐Ÿšฝ"],
1704
+ ["tokelau", "๐Ÿ‡น๐Ÿ‡ฐ"],
1705
+ ["tokyo_tower", "๐Ÿ—ผ"],
1706
+ ["tomato", "๐Ÿ…"],
1707
+ ["tonga", "๐Ÿ‡น๐Ÿ‡ด"],
1708
+ ["tongue", "๐Ÿ‘…"],
1709
+ ["toolbox", "๐Ÿงฐ"],
1710
+ ["tooth", "๐Ÿฆท"],
1711
+ ["toothbrush", "๐Ÿชฅ"],
1712
+ ["top", "๐Ÿ”"],
1713
+ ["tophat", "๐ŸŽฉ"],
1714
+ ["tornado", "๐ŸŒช๏ธ"],
1715
+ ["tr", "๐Ÿ‡น๐Ÿ‡ท"],
1716
+ ["trackball", "๐Ÿ–ฒ๏ธ"],
1717
+ ["tractor", "๐Ÿšœ"],
1718
+ ["traffic_light", "๐Ÿšฅ"],
1719
+ ["train", "๐Ÿš‹"],
1720
+ ["train2", "๐Ÿš†"],
1721
+ ["tram", "๐ŸšŠ"],
1722
+ ["transgender_flag", "๐Ÿณ๏ธโ€โšง๏ธ"],
1723
+ ["transgender_symbol", "โšง๏ธ"],
1724
+ ["triangular_flag_on_post", "๐Ÿšฉ"],
1725
+ ["triangular_ruler", "๐Ÿ“"],
1726
+ ["trident", "๐Ÿ”ฑ"],
1727
+ ["trinidad_tobago", "๐Ÿ‡น๐Ÿ‡น"],
1728
+ ["tristan_da_cunha", "๐Ÿ‡น๐Ÿ‡ฆ"],
1729
+ ["triumph", "๐Ÿ˜ค"],
1730
+ ["troll", "๐ŸงŒ"],
1731
+ ["trolleybus", "๐ŸšŽ"],
1732
+ ["trophy", "๐Ÿ†"],
1733
+ ["tropical_drink", "๐Ÿน"],
1734
+ ["tropical_fish", "๐Ÿ "],
1735
+ ["truck", "๐Ÿšš"],
1736
+ ["trumpet", "๐ŸŽบ"],
1737
+ ["tshirt", "๐Ÿ‘•"],
1738
+ ["tulip", "๐ŸŒท"],
1739
+ ["tumbler_glass", "๐Ÿฅƒ"],
1740
+ ["tunisia", "๐Ÿ‡น๐Ÿ‡ณ"],
1741
+ ["turkey", "๐Ÿฆƒ"],
1742
+ ["turkmenistan", "๐Ÿ‡น๐Ÿ‡ฒ"],
1743
+ ["turks_caicos_islands", "๐Ÿ‡น๐Ÿ‡จ"],
1744
+ ["turtle", "๐Ÿข"],
1745
+ ["tuvalu", "๐Ÿ‡น๐Ÿ‡ป"],
1746
+ ["tv", "๐Ÿ“บ"],
1747
+ ["twisted_rightwards_arrows", "๐Ÿ”€"],
1748
+ ["two", "2๏ธโƒฃ"],
1749
+ ["two_hearts", "๐Ÿ’•"],
1750
+ ["two_men_holding_hands", "๐Ÿ‘ฌ"],
1751
+ ["two_women_holding_hands", "๐Ÿ‘ญ"],
1752
+ ["u5272", "๐Ÿˆน"],
1753
+ ["u5408", "๐Ÿˆด"],
1754
+ ["u55b6", "๐Ÿˆบ"],
1755
+ ["u6307", "๐Ÿˆฏ"],
1756
+ ["u6708", "๐Ÿˆท๏ธ"],
1757
+ ["u6709", "๐Ÿˆถ"],
1758
+ ["u6e80", "๐Ÿˆต"],
1759
+ ["u7121", "๐Ÿˆš"],
1760
+ ["u7533", "๐Ÿˆธ"],
1761
+ ["u7981", "๐Ÿˆฒ"],
1762
+ ["u7a7a", "๐Ÿˆณ"],
1763
+ ["uganda", "๐Ÿ‡บ๐Ÿ‡ฌ"],
1764
+ ["uk", "๐Ÿ‡ฌ๐Ÿ‡ง"],
1765
+ ["ukraine", "๐Ÿ‡บ๐Ÿ‡ฆ"],
1766
+ ["umbrella", "โ˜”"],
1767
+ ["unamused", "๐Ÿ˜’"],
1768
+ ["underage", "๐Ÿ”ž"],
1769
+ ["unicorn", "๐Ÿฆ„"],
1770
+ ["united_arab_emirates", "๐Ÿ‡ฆ๐Ÿ‡ช"],
1771
+ ["united_nations", "๐Ÿ‡บ๐Ÿ‡ณ"],
1772
+ ["unlock", "๐Ÿ”“"],
1773
+ ["up", "๐Ÿ†™"],
1774
+ ["upside_down_face", "๐Ÿ™ƒ"],
1775
+ ["uruguay", "๐Ÿ‡บ๐Ÿ‡พ"],
1776
+ ["us", "๐Ÿ‡บ๐Ÿ‡ธ"],
1777
+ ["us_outlying_islands", "๐Ÿ‡บ๐Ÿ‡ฒ"],
1778
+ ["us_virgin_islands", "๐Ÿ‡ป๐Ÿ‡ฎ"],
1779
+ ["uzbekistan", "๐Ÿ‡บ๐Ÿ‡ฟ"],
1780
+ ["v", "โœŒ๏ธ"],
1781
+ ["vampire", "๐Ÿง›"],
1782
+ ["vampire_man", "๐Ÿง›โ€โ™‚๏ธ"],
1783
+ ["vampire_woman", "๐Ÿง›โ€โ™€๏ธ"],
1784
+ ["vanuatu", "๐Ÿ‡ป๐Ÿ‡บ"],
1785
+ ["vatican_city", "๐Ÿ‡ป๐Ÿ‡ฆ"],
1786
+ ["venezuela", "๐Ÿ‡ป๐Ÿ‡ช"],
1787
+ ["vertical_traffic_light", "๐Ÿšฆ"],
1788
+ ["vhs", "๐Ÿ“ผ"],
1789
+ ["vibration_mode", "๐Ÿ“ณ"],
1790
+ ["video_camera", "๐Ÿ“น"],
1791
+ ["video_game", "๐ŸŽฎ"],
1792
+ ["vietnam", "๐Ÿ‡ป๐Ÿ‡ณ"],
1793
+ ["violin", "๐ŸŽป"],
1794
+ ["virgo", "โ™"],
1795
+ ["volcano", "๐ŸŒ‹"],
1796
+ ["volleyball", "๐Ÿ"],
1797
+ ["vomiting_face", "๐Ÿคฎ"],
1798
+ ["vs", "๐Ÿ†š"],
1799
+ ["vulcan_salute", "๐Ÿ––"],
1800
+ ["waffle", "๐Ÿง‡"],
1801
+ ["wales", "๐Ÿด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ"],
1802
+ ["walking", "๐Ÿšถ"],
1803
+ ["walking_man", "๐Ÿšถโ€โ™‚๏ธ"],
1804
+ ["walking_woman", "๐Ÿšถโ€โ™€๏ธ"],
1805
+ ["wallis_futuna", "๐Ÿ‡ผ๐Ÿ‡ซ"],
1806
+ ["waning_crescent_moon", "๐ŸŒ˜"],
1807
+ ["waning_gibbous_moon", "๐ŸŒ–"],
1808
+ ["warning", "โš ๏ธ"],
1809
+ ["wastebasket", "๐Ÿ—‘๏ธ"],
1810
+ ["watch", "โŒš"],
1811
+ ["water_buffalo", "๐Ÿƒ"],
1812
+ ["water_polo", "๐Ÿคฝ"],
1813
+ ["watermelon", "๐Ÿ‰"],
1814
+ ["wave", "๐Ÿ‘‹"],
1815
+ ["wavy_dash", "ใ€ฐ๏ธ"],
1816
+ ["waxing_crescent_moon", "๐ŸŒ’"],
1817
+ ["waxing_gibbous_moon", "๐ŸŒ”"],
1818
+ ["wc", "๐Ÿšพ"],
1819
+ ["weary", "๐Ÿ˜ฉ"],
1820
+ ["wedding", "๐Ÿ’’"],
1821
+ ["weight_lifting", "๐Ÿ‹๏ธ"],
1822
+ ["weight_lifting_man", "๐Ÿ‹๏ธโ€โ™‚๏ธ"],
1823
+ ["weight_lifting_woman", "๐Ÿ‹๏ธโ€โ™€๏ธ"],
1824
+ ["western_sahara", "๐Ÿ‡ช๐Ÿ‡ญ"],
1825
+ ["whale", "๐Ÿณ"],
1826
+ ["whale2", "๐Ÿ‹"],
1827
+ ["wheel", "๐Ÿ›ž"],
1828
+ ["wheel_of_dharma", "โ˜ธ๏ธ"],
1829
+ ["wheelchair", "โ™ฟ"],
1830
+ ["white_check_mark", "โœ…"],
1831
+ ["white_circle", "โšช"],
1832
+ ["white_flag", "๐Ÿณ๏ธ"],
1833
+ ["white_flower", "๐Ÿ’ฎ"],
1834
+ ["white_haired_man", "๐Ÿ‘จโ€๐Ÿฆณ"],
1835
+ ["white_haired_woman", "๐Ÿ‘ฉโ€๐Ÿฆณ"],
1836
+ ["white_heart", "๐Ÿค"],
1837
+ ["white_large_square", "โฌœ"],
1838
+ ["white_medium_small_square", "โ—ฝ"],
1839
+ ["white_medium_square", "โ—ป๏ธ"],
1840
+ ["white_small_square", "โ–ซ๏ธ"],
1841
+ ["white_square_button", "๐Ÿ”ณ"],
1842
+ ["wilted_flower", "๐Ÿฅ€"],
1843
+ ["wind_chime", "๐ŸŽ"],
1844
+ ["wind_face", "๐ŸŒฌ๏ธ"],
1845
+ ["window", "๐ŸชŸ"],
1846
+ ["wine_glass", "๐Ÿท"],
1847
+ ["wing", "๐Ÿชฝ"],
1848
+ ["wink", "๐Ÿ˜‰"],
1849
+ ["wireless", "๐Ÿ›œ"],
1850
+ ["wolf", "๐Ÿบ"],
1851
+ ["woman", "๐Ÿ‘ฉ"],
1852
+ ["woman_artist", "๐Ÿ‘ฉโ€๐ŸŽจ"],
1853
+ ["woman_astronaut", "๐Ÿ‘ฉโ€๐Ÿš€"],
1854
+ ["woman_beard", "๐Ÿง”โ€โ™€๏ธ"],
1855
+ ["woman_cartwheeling", "๐Ÿคธโ€โ™€๏ธ"],
1856
+ ["woman_cook", "๐Ÿ‘ฉโ€๐Ÿณ"],
1857
+ ["woman_dancing", "๐Ÿ’ƒ"],
1858
+ ["woman_facepalming", "๐Ÿคฆโ€โ™€๏ธ"],
1859
+ ["woman_factory_worker", "๐Ÿ‘ฉโ€๐Ÿญ"],
1860
+ ["woman_farmer", "๐Ÿ‘ฉโ€๐ŸŒพ"],
1861
+ ["woman_feeding_baby", "๐Ÿ‘ฉโ€๐Ÿผ"],
1862
+ ["woman_firefighter", "๐Ÿ‘ฉโ€๐Ÿš’"],
1863
+ ["woman_health_worker", "๐Ÿ‘ฉโ€โš•๏ธ"],
1864
+ ["woman_in_manual_wheelchair", "๐Ÿ‘ฉโ€๐Ÿฆฝ"],
1865
+ ["woman_in_motorized_wheelchair", "๐Ÿ‘ฉโ€๐Ÿฆผ"],
1866
+ ["woman_in_tuxedo", "๐Ÿคตโ€โ™€๏ธ"],
1867
+ ["woman_judge", "๐Ÿ‘ฉโ€โš–๏ธ"],
1868
+ ["woman_juggling", "๐Ÿคนโ€โ™€๏ธ"],
1869
+ ["woman_mechanic", "๐Ÿ‘ฉโ€๐Ÿ”ง"],
1870
+ ["woman_office_worker", "๐Ÿ‘ฉโ€๐Ÿ’ผ"],
1871
+ ["woman_pilot", "๐Ÿ‘ฉโ€โœˆ๏ธ"],
1872
+ ["woman_playing_handball", "๐Ÿคพโ€โ™€๏ธ"],
1873
+ ["woman_playing_water_polo", "๐Ÿคฝโ€โ™€๏ธ"],
1874
+ ["woman_scientist", "๐Ÿ‘ฉโ€๐Ÿ”ฌ"],
1875
+ ["woman_shrugging", "๐Ÿคทโ€โ™€๏ธ"],
1876
+ ["woman_singer", "๐Ÿ‘ฉโ€๐ŸŽค"],
1877
+ ["woman_student", "๐Ÿ‘ฉโ€๐ŸŽ“"],
1878
+ ["woman_teacher", "๐Ÿ‘ฉโ€๐Ÿซ"],
1879
+ ["woman_technologist", "๐Ÿ‘ฉโ€๐Ÿ’ป"],
1880
+ ["woman_with_headscarf", "๐Ÿง•"],
1881
+ ["woman_with_probing_cane", "๐Ÿ‘ฉโ€๐Ÿฆฏ"],
1882
+ ["woman_with_turban", "๐Ÿ‘ณโ€โ™€๏ธ"],
1883
+ ["woman_with_veil", "๐Ÿ‘ฐโ€โ™€๏ธ"],
1884
+ ["womans_clothes", "๐Ÿ‘š"],
1885
+ ["womans_hat", "๐Ÿ‘’"],
1886
+ ["women_wrestling", "๐Ÿคผโ€โ™€๏ธ"],
1887
+ ["womens", "๐Ÿšบ"],
1888
+ ["wood", "๐Ÿชต"],
1889
+ ["woozy_face", "๐Ÿฅด"],
1890
+ ["world_map", "๐Ÿ—บ๏ธ"],
1891
+ ["worm", "๐Ÿชฑ"],
1892
+ ["worried", "๐Ÿ˜Ÿ"],
1893
+ ["wrench", "๐Ÿ”ง"],
1894
+ ["wrestling", "๐Ÿคผ"],
1895
+ ["writing_hand", "โœ๏ธ"],
1896
+ ["x", "โŒ"],
1897
+ ["x_ray", "๐Ÿฉป"],
1898
+ ["yarn", "๐Ÿงถ"],
1899
+ ["yawning_face", "๐Ÿฅฑ"],
1900
+ ["yellow_circle", "๐ŸŸก"],
1901
+ ["yellow_heart", "๐Ÿ’›"],
1902
+ ["yellow_square", "๐ŸŸจ"],
1903
+ ["yemen", "๐Ÿ‡พ๐Ÿ‡ช"],
1904
+ ["yen", "๐Ÿ’ด"],
1905
+ ["yin_yang", "โ˜ฏ๏ธ"],
1906
+ ["yo_yo", "๐Ÿช€"],
1907
+ ["yum", "๐Ÿ˜‹"],
1908
+ ["zambia", "๐Ÿ‡ฟ๐Ÿ‡ฒ"],
1909
+ ["zany_face", "๐Ÿคช"],
1910
+ ["zap", "โšก"],
1911
+ ["zebra", "๐Ÿฆ“"],
1912
+ ["zero", "0๏ธโƒฃ"],
1913
+ ["zimbabwe", "๐Ÿ‡ฟ๐Ÿ‡ผ"],
1914
+ ["zipper_mouth_face", "๐Ÿค"],
1915
+ ["zombie", "๐ŸงŸ"],
1916
+ ["zombie_man", "๐ŸงŸโ€โ™‚๏ธ"],
1917
+ ["zombie_woman", "๐ŸงŸโ€โ™€๏ธ"],
1918
+ ["zzz", "๐Ÿ’ค"]
1919
+ ]);