@promptbook/types 0.75.0-1 → 0.75.0-4

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 (163) hide show
  1. package/README.md +28 -17
  2. package/esm/typings/{promptbook-collection → books}/index.d.ts +6 -6
  3. package/esm/typings/src/_packages/core.index.d.ts +28 -20
  4. package/esm/typings/src/_packages/types.index.d.ts +62 -52
  5. package/esm/typings/src/_packages/utils.index.d.ts +2 -2
  6. package/esm/typings/src/cli/cli-commands/about.d.ts +1 -0
  7. package/esm/typings/src/cli/cli-commands/hello.d.ts +1 -0
  8. package/esm/typings/src/cli/cli-commands/make.d.ts +1 -0
  9. package/esm/typings/src/cli/cli-commands/prettify.d.ts +1 -0
  10. package/esm/typings/src/cli/cli-commands/run.d.ts +1 -0
  11. package/esm/typings/src/cli/cli-commands/test-command.d.ts +1 -0
  12. package/esm/typings/src/cli/main.d.ts +1 -0
  13. package/esm/typings/src/collection/PipelineCollection.d.ts +1 -1
  14. package/esm/typings/src/collection/SimplePipelineCollection.d.ts +1 -1
  15. package/esm/typings/src/collection/collectionToJson.d.ts +1 -1
  16. package/esm/typings/src/collection/constructors/createCollectionFromJson.d.ts +1 -1
  17. package/esm/typings/src/collection/constructors/createCollectionFromPromise.d.ts +1 -1
  18. package/esm/typings/src/commands/EXPECT/ExpectCommand.d.ts +3 -3
  19. package/esm/typings/src/commands/EXPECT/expectCommandParser.d.ts +2 -2
  20. package/esm/typings/src/commands/FOREACH/foreachCommandParser.d.ts +2 -2
  21. package/esm/typings/src/commands/FORMAT/formatCommandParser.d.ts +2 -2
  22. package/esm/typings/src/commands/JOKER/jokerCommandParser.d.ts +2 -2
  23. package/esm/typings/src/commands/POSTPROCESS/postprocessCommandParser.d.ts +2 -2
  24. package/esm/typings/src/commands/SECTION/SectionCommand.d.ts +11 -0
  25. package/esm/typings/src/commands/{TEMPLATE/templateCommandParser.d.ts → SECTION/sectionCommandParser.d.ts} +6 -6
  26. package/esm/typings/src/commands/_common/types/Command.d.ts +1 -1
  27. package/esm/typings/src/commands/_common/types/CommandParser.d.ts +17 -19
  28. package/esm/typings/src/commands/_common/types/CommandUsagePlaces.d.ts +1 -1
  29. package/esm/typings/src/commands/index.d.ts +4 -1
  30. package/esm/typings/src/config.d.ts +11 -3
  31. package/esm/typings/src/conversion/pipelineJsonToString.d.ts +3 -3
  32. package/esm/typings/src/conversion/pipelineStringToJson.d.ts +2 -2
  33. package/esm/typings/src/conversion/pipelineStringToJsonSync.d.ts +3 -3
  34. package/esm/typings/src/conversion/prettify/prettifyPipelineString.d.ts +1 -1
  35. package/esm/typings/src/conversion/prettify/renderPipelineMermaidOptions.d.ts +4 -4
  36. package/esm/typings/src/conversion/utils/extractParameterNamesFromTask.d.ts +15 -0
  37. package/esm/typings/src/conversion/utils/renameParameter.d.ts +3 -3
  38. package/esm/typings/src/conversion/validation/_importPipeline.d.ts +3 -2
  39. package/esm/typings/src/conversion/validation/validatePipeline.d.ts +1 -1
  40. package/esm/typings/src/dialogs/simple-prompt/SimplePromptInterfaceTools.d.ts +1 -1
  41. package/esm/typings/src/errors/index.d.ts +3 -0
  42. package/esm/typings/src/execution/PipelineExecutorResult.d.ts +2 -2
  43. package/esm/typings/src/execution/PromptResultUsage.d.ts +1 -1
  44. package/esm/typings/src/execution/ScriptExecutionTools.d.ts +1 -1
  45. package/esm/typings/src/execution/createPipelineExecutor/{$OngoingTemplateResult.d.ts → $OngoingTaskResult.d.ts} +1 -1
  46. package/esm/typings/src/execution/createPipelineExecutor/00-CreatePipelineExecutorOptions.d.ts +1 -1
  47. package/esm/typings/src/execution/createPipelineExecutor/10-executePipeline.d.ts +1 -1
  48. package/esm/typings/src/execution/createPipelineExecutor/{20-executeTemplate.d.ts → 20-executeTask.d.ts} +7 -7
  49. package/esm/typings/src/execution/createPipelineExecutor/40-executeAttempts.d.ts +5 -5
  50. package/esm/typings/src/execution/createPipelineExecutor/filterJustOutputParameters.d.ts +1 -1
  51. package/esm/typings/src/execution/createPipelineExecutor/{getContextForTemplate.d.ts → getContextForTask.d.ts} +2 -2
  52. package/esm/typings/src/execution/createPipelineExecutor/{getExamplesForTemplate.d.ts → getExamplesForTask.d.ts} +2 -2
  53. package/esm/typings/src/execution/createPipelineExecutor/getKnowledgeForTask.d.ts +27 -0
  54. package/esm/typings/src/execution/createPipelineExecutor/getReservedParametersForTask.d.ts +30 -0
  55. package/esm/typings/src/{types → execution}/execution-report/ExecutionPromptReportJson.d.ts +2 -2
  56. package/esm/typings/src/{types → execution}/execution-report/ExecutionReportJson.d.ts +4 -4
  57. package/esm/typings/src/{types → execution}/execution-report/ExecutionReportStringOptions.d.ts +1 -1
  58. package/esm/typings/src/execution/utils/checkExpectations.d.ts +1 -1
  59. package/esm/typings/src/execution/utils/usage-constants.d.ts +3 -0
  60. package/esm/typings/src/formats/index.d.ts +3 -0
  61. package/esm/typings/src/formfactors/_boilerplate/BoilerplateFormfactorDefinition.d.ts +2 -2
  62. package/esm/typings/src/formfactors/_common/AbstractFormfactorDefinition.d.ts +7 -1
  63. package/esm/typings/src/formfactors/_common/FormfactorDefinition.d.ts +3 -0
  64. package/esm/typings/src/formfactors/chatbot/ChatbotFormfactorDefinition.d.ts +45 -0
  65. package/esm/typings/src/formfactors/generator/GeneratorFormfactorDefinition.d.ts +14 -0
  66. package/esm/typings/src/formfactors/generic/GenericFormfactorDefinition.d.ts +3 -3
  67. package/esm/typings/src/formfactors/index.d.ts +85 -12
  68. package/esm/typings/src/formfactors/matcher/MatcherFormfactorDefinition.d.ts +14 -0
  69. package/esm/typings/src/formfactors/sheets/SheetsFormfactorDefinition.d.ts +13 -3
  70. package/esm/typings/src/formfactors/translator/TranslatorFormfactorDefinition.d.ts +13 -3
  71. package/esm/typings/src/llm-providers/anthropic-claude/anthropic-claude-models.d.ts +1 -0
  72. package/esm/typings/src/llm-providers/anthropic-claude/register-configuration.d.ts +3 -0
  73. package/esm/typings/src/llm-providers/anthropic-claude/register-constructor.d.ts +1 -0
  74. package/esm/typings/src/llm-providers/azure-openai/register-configuration.d.ts +3 -0
  75. package/esm/typings/src/llm-providers/azure-openai/register-constructor.d.ts +1 -0
  76. package/esm/typings/src/llm-providers/mocked/$fakeTextToExpectations.d.ts +1 -1
  77. package/esm/typings/src/llm-providers/openai/openai-models.d.ts +1 -0
  78. package/esm/typings/src/llm-providers/openai/register-configuration.d.ts +3 -0
  79. package/esm/typings/src/llm-providers/openai/register-constructor.d.ts +1 -0
  80. package/esm/typings/src/personas/preparePersona.d.ts +1 -1
  81. package/esm/typings/src/pipeline/PipelineInterface/PipelineInterface.d.ts +26 -0
  82. package/esm/typings/src/pipeline/PipelineInterface/constants.d.ts +14 -0
  83. package/esm/typings/src/pipeline/{pipeline-interface → PipelineInterface}/getPipelineInterface.d.ts +3 -1
  84. package/esm/typings/src/pipeline/{pipeline-interface → PipelineInterface}/isPipelineImplementingInterface.d.ts +5 -1
  85. package/esm/typings/src/pipeline/{pipeline-interface → PipelineInterface}/isPipelineInterfacesEqual.d.ts +2 -0
  86. package/esm/typings/src/{types/PipelineJson/TemplateJsonCommon.d.ts → pipeline/PipelineJson/CommonTaskJson.d.ts} +24 -24
  87. package/esm/typings/src/pipeline/PipelineJson/DialogTaskJson.d.ts +13 -0
  88. package/esm/typings/src/{types → pipeline}/PipelineJson/Expectations.d.ts +2 -2
  89. package/esm/typings/src/{types → pipeline}/PipelineJson/KnowledgePieceJson.d.ts +7 -6
  90. package/esm/typings/src/{types → pipeline}/PipelineJson/KnowledgeSourceJson.d.ts +3 -3
  91. package/esm/typings/src/pipeline/PipelineJson/ParameterJson.d.ts +98 -0
  92. package/esm/typings/src/{types → pipeline}/PipelineJson/PersonaJson.d.ts +5 -5
  93. package/esm/typings/src/{types → pipeline}/PipelineJson/PipelineJson.d.ts +11 -11
  94. package/esm/typings/src/{types → pipeline}/PipelineJson/PreparationJson.d.ts +1 -1
  95. package/esm/typings/src/{types/PipelineJson/PromptTemplateJson.d.ts → pipeline/PipelineJson/PromptTaskJson.d.ts} +8 -8
  96. package/esm/typings/src/pipeline/PipelineJson/ScriptTaskJson.d.ts +20 -0
  97. package/esm/typings/src/pipeline/PipelineJson/SimpleTaskJson.d.ts +13 -0
  98. package/esm/typings/src/pipeline/PipelineJson/TaskJson.d.ts +11 -0
  99. package/esm/typings/src/{types → pipeline}/PipelineString.d.ts +1 -1
  100. package/esm/typings/src/prepare/isPipelinePrepared.d.ts +3 -3
  101. package/esm/typings/src/prepare/preparePipeline.d.ts +1 -1
  102. package/esm/typings/src/prepare/prepareTasks.d.ts +32 -0
  103. package/esm/typings/src/prepare/unpreparePipeline.d.ts +1 -1
  104. package/esm/typings/src/scrapers/_common/Scraper.d.ts +1 -1
  105. package/esm/typings/src/scrapers/_common/prepareKnowledgePieces.d.ts +2 -2
  106. package/esm/typings/src/scrapers/_common/utils/makeKnowledgeSourceHandler.d.ts +1 -1
  107. package/esm/typings/src/scrapers/document/DocumentScraper.d.ts +1 -1
  108. package/esm/typings/src/scrapers/document/register-constructor.d.ts +1 -0
  109. package/esm/typings/src/scrapers/document/register-metadata.d.ts +3 -0
  110. package/esm/typings/src/scrapers/document-legacy/LegacyDocumentScraper.d.ts +1 -1
  111. package/esm/typings/src/scrapers/document-legacy/register-constructor.d.ts +1 -0
  112. package/esm/typings/src/scrapers/document-legacy/register-metadata.d.ts +3 -0
  113. package/esm/typings/src/scrapers/markdown/MarkdownScraper.d.ts +1 -1
  114. package/esm/typings/src/scrapers/markdown/register-constructor.d.ts +1 -0
  115. package/esm/typings/src/scrapers/markdown/register-metadata.d.ts +3 -0
  116. package/esm/typings/src/scrapers/pdf/PdfScraper.d.ts +1 -1
  117. package/esm/typings/src/scrapers/pdf/register-constructor.d.ts +1 -0
  118. package/esm/typings/src/scrapers/pdf/register-metadata.d.ts +3 -0
  119. package/esm/typings/src/scrapers/website/WebsiteScraper.d.ts +1 -1
  120. package/esm/typings/src/scrapers/website/register-constructor.d.ts +1 -0
  121. package/esm/typings/src/scrapers/website/register-metadata.d.ts +3 -0
  122. package/esm/typings/src/scripting/javascript/postprocessing-functions.d.ts +1 -0
  123. package/esm/typings/src/types/Prompt.d.ts +4 -4
  124. package/esm/typings/src/types/SectionType.d.ts +21 -0
  125. package/esm/typings/src/types/TaskProgress.d.ts +2 -2
  126. package/esm/typings/src/types/TaskType.d.ts +15 -0
  127. package/esm/typings/src/types/typeAliasEmoji.d.ts +3 -0
  128. package/esm/typings/src/types/typeAliases.d.ts +2 -1
  129. package/esm/typings/src/utils/emojis.d.ts +1 -0
  130. package/esm/typings/src/utils/expectation-counters/constants.d.ts +1 -0
  131. package/esm/typings/src/utils/expectation-counters/countCharacters.d.ts +1 -1
  132. package/esm/typings/src/utils/expectation-counters/countLines.d.ts +1 -1
  133. package/esm/typings/src/utils/expectation-counters/countPages.d.ts +1 -1
  134. package/esm/typings/src/utils/expectation-counters/countParagraphs.d.ts +1 -1
  135. package/esm/typings/src/utils/expectation-counters/countSentences.d.ts +1 -1
  136. package/esm/typings/src/utils/expectation-counters/countWords.d.ts +1 -1
  137. package/esm/typings/src/utils/expectation-counters/index.d.ts +3 -2
  138. package/esm/typings/src/utils/normalization/normalize-to-kebab-case.d.ts +3 -0
  139. package/esm/typings/src/utils/organization/TODO_remove_as.d.ts +6 -0
  140. package/esm/typings/src/utils/parameters/extractParameterNames.d.ts +2 -2
  141. package/esm/typings/src/utils/serialization/clonePipeline.d.ts +1 -1
  142. package/esm/typings/src/version.d.ts +2 -1
  143. package/package.json +5 -4
  144. package/esm/typings/src/commands/TEMPLATE/TemplateCommand.d.ts +0 -11
  145. package/esm/typings/src/commands/TEMPLATE/TemplateTypes.d.ts +0 -15
  146. package/esm/typings/src/conversion/utils/extractParameterNamesFromTemplate.d.ts +0 -15
  147. package/esm/typings/src/execution/createPipelineExecutor/getKnowledgeForTemplate.d.ts +0 -27
  148. package/esm/typings/src/execution/createPipelineExecutor/getReservedParametersForTemplate.d.ts +0 -30
  149. package/esm/typings/src/formfactors/chat/ChatFormfactorDefinition.d.ts +0 -15
  150. package/esm/typings/src/pipeline/pipeline-interface/PipelineInterface.d.ts +0 -22
  151. package/esm/typings/src/pipeline/pipeline-interface/constants.d.ts +0 -9
  152. package/esm/typings/src/prepare/prepareTemplates.d.ts +0 -32
  153. package/esm/typings/src/types/PipelineJson/DialogTemplateJson.d.ts +0 -13
  154. package/esm/typings/src/types/PipelineJson/ParameterJson.d.ts +0 -39
  155. package/esm/typings/src/types/PipelineJson/ScriptTemplateJson.d.ts +0 -20
  156. package/esm/typings/src/types/PipelineJson/SimpleTemplateJson.d.ts +0 -13
  157. package/esm/typings/src/types/PipelineJson/TemplateJson.d.ts +0 -11
  158. /package/esm/typings/src/commands/{TEMPLATE/templateCommand.test.d.ts → SECTION/sectionCommand.test.d.ts} +0 -0
  159. /package/esm/typings/src/conversion/utils/{extractParameterNamesFromTemplate.test.d.ts → extractParameterNamesFromTask.test.d.ts} +0 -0
  160. /package/esm/typings/src/{types → execution}/execution-report/ExecutionReportString.d.ts +0 -0
  161. /package/esm/typings/src/{types → execution}/execution-report/countWorkingDuration.d.ts +0 -0
  162. /package/esm/typings/src/{types → execution}/execution-report/countWorkingDuration.test.d.ts +0 -0
  163. /package/esm/typings/src/{types → execution}/execution-report/executionReportJsonToString.d.ts +0 -0
@@ -10,4 +10,5 @@ import type { Registration } from '../../utils/$Register';
10
10
  export declare const _WebsiteScraperRegistration: Registration;
11
11
  /**
12
12
  * TODO: [🎶] Naming "constructor" vs "creator" vs "factory"
13
+ * Note: [💞] Ignore a discrepancy between file name and entity name
13
14
  */
@@ -22,3 +22,6 @@ export declare const websiteScraperMetadata: import("type-fest/source/readonly-d
22
22
  * @public exported from `@promptbook/cli`
23
23
  */
24
24
  export declare const _WebsiteScraperMetadataRegistration: Registration;
25
+ /**
26
+ * Note: [💞] Ignore a discrepancy between file name and entity name
27
+ */
@@ -48,4 +48,5 @@ export declare const POSTPROCESSING_FUNCTIONS: {
48
48
  };
49
49
  /**
50
50
  * TODO: DRY [🍯], [🧠] Where should be POSTPROCESSING_FUNCTIONS located and how it should be named
51
+ * Note: [💞] Ignore a discrepancy between file name and entity name
51
52
  */
@@ -1,11 +1,11 @@
1
1
  import type { FormatCommand } from '../commands/FORMAT/FormatCommand';
2
+ import type { Expectations } from '../pipeline/PipelineJson/Expectations';
2
3
  import type { ChatModelRequirements } from './ModelRequirements';
3
4
  import type { CompletionModelRequirements } from './ModelRequirements';
4
5
  import type { EmbeddingModelRequirements } from './ModelRequirements';
5
6
  import type { ModelRequirements } from './ModelRequirements';
6
- import type { Expectations } from './PipelineJson/Expectations';
7
7
  import type { Parameters } from './typeAliases';
8
- import type { string_pipeline_url_with_hashtemplate } from './typeAliases';
8
+ import type { string_pipeline_url_with_task_hash } from './typeAliases';
9
9
  import type { string_postprocessing_function_name } from './typeAliases';
10
10
  import type { string_prompt } from './typeAliases';
11
11
  import type { string_template } from './typeAliases';
@@ -93,11 +93,11 @@ export type CommonPrompt = {
93
93
  */
94
94
  readonly format?: FormatCommand['format'];
95
95
  /**
96
- * Unique identifier of the pipeline with specific template name as hash
96
+ * Unique identifier of the pipeline with specific task name as hash
97
97
  *
98
98
  * @example https://promptbook.studio/webgpt/write-website-content-cs.book.md#keywords
99
99
  */
100
- readonly pipelineUrl?: string_pipeline_url_with_hashtemplate;
100
+ readonly pipelineUrl?: string_pipeline_url_with_task_hash;
101
101
  /**
102
102
  * Parameters used in the `content`
103
103
  */
@@ -0,0 +1,21 @@
1
+ import type { TupleToUnion } from 'type-fest';
2
+ /**
3
+ * Type of the section
4
+ */
5
+ export type SectionType = TupleToUnion<typeof SectionTypes>;
6
+ /**
7
+ * All available sections which are not tasks
8
+ *
9
+ * @public exported from `@promptbook/core`
10
+ */
11
+ export declare const NonTaskSectionTypes: readonly ["EXAMPLE", "KNOWLEDGE", "INSTRUMENT", "ACTION"];
12
+ /**
13
+ * All available section types
14
+ *
15
+ * There is is distinction between task types and section types
16
+ * - Every section in markdown has its SectionType
17
+ * - Some sections are tasks but other can be non-task sections
18
+ *
19
+ * @public exported from `@promptbook/core`
20
+ */
21
+ export declare const SectionTypes: readonly [...("PROMPT_TASK" | "SIMPLE_TASK" | "SCRIPT_TASK" | "DIALOG_TASK")[], "EXAMPLE", "KNOWLEDGE", "INSTRUMENT", "ACTION"];
@@ -1,4 +1,4 @@
1
- import type { TemplateType } from '../commands/TEMPLATE/TemplateTypes';
1
+ import type { SectionType } from './SectionType';
2
2
  import type { string_markdown_text } from './typeAliases';
3
3
  import type { string_name } from './typeAliases';
4
4
  /**
@@ -31,7 +31,7 @@ export type TaskProgress = {
31
31
  * The type of the execution.
32
32
  * Note: The pipeline executor reports everything, in the app level you can filter out the execution types that you don't want to show to the user.
33
33
  */
34
- readonly templateType: TemplateType;
34
+ readonly taskType: SectionType;
35
35
  /**
36
36
  * The parameter name that is being processed.
37
37
  */
@@ -0,0 +1,15 @@
1
+ import type { TupleToUnion } from 'type-fest';
2
+ /**
3
+ * Type of the task
4
+ */
5
+ export type TaskType = TupleToUnion<typeof TaskTypes>;
6
+ /**
7
+ * All available task types
8
+ *
9
+ * There is is distinction between task types and section types
10
+ * - Every section in markdown has its SectionType
11
+ * - Some sections are tasks but other can be non-task sections
12
+ *
13
+ * @public exported from `@promptbook/core`
14
+ */
15
+ export declare const TaskTypes: readonly ["PROMPT", "SIMPLE", "SCRIPT", "DIALOG"];
@@ -7,3 +7,6 @@
7
7
  * > CollboardSdk.EMOJIS.map((e)=>`"${e}"`).join(' | ')
8
8
  */
9
9
  export type string_char_emoji = '"😀" | "😃" | "😄" | "😁" | "😆" | "😅" | "😂" | "🤣" | "🥲" | "☺️" | "😊" | "😇" | "🙂" | "🙃" | "😉" | "😌" | "😍" | "🥰" | "😘" | "😗" | "😙" | "😚" | "😋" | "😛" | "😝" | "😜" | "🤪" | "🤨" | "🧐" | "🤓" | "😎" | "🥸" | "🤩" | "🥳" | "😏" | "😒" | "😞" | "😔" | "😟" | "😕" | "🙁" | "☹️" | "😣" | "😖" | "😫" | "😩" | "🥺" | "😢" | "😭" | "😤" | "😠" | "😡" | "🤬" | "🤯" | "😳" | "🥵" | "🥶" | "😱" | "😨" | "😰" | "😥" | "😓" | "🤗" | "🤔" | "🤭" | "🤫" | "🤥" | "😶" | "😐" | "😑" | "😬" | "🙄" | "😯" | "😦" | "😧" | "😮" | "😲" | "🥱" | "😴" | "🤤" | "😪" | "😵" | "🤐" | "🥴" | "🤢" | "🤮" | "🤧" | "😷" | "🤒" | "🤕" | "🤑" | "🤠" | "😈" | "👿" | "👹" | "👺" | "🤡" | "💩" | "👻" | "💀" | "☠️" | "👽" | "👾" | "🤖" | "🎃" | "😺" | "😸" | "😹" | "😻" | "😼" | "😽" | "🙀" | "😿" | "😾" | "👋" | "🤚" | "🖐" | "✋" | "🖖" | "👌" | "🤌" | "🤏" | "✌️" | "🤞" | "🤟" | "🤘" | "🤙" | "👈" | "👉" | "👆" | "🖕" | "👇" | "☝️" | "👍" | "👎" | "✊" | "👊" | "🤛" | "🤜" | "👏" | "🙌" | "👐" | "🤲" | "🤝" | "🙏" | "✍️" | "💅" | "🤳" | "💪" | "🦾" | "🦵" | "🦿" | "🦶" | "👣" | "👂" | "🦻" | "👃" | "🫀" | "🫁" | "🧠" | "🦷" | "🦴" | "👀" | "👁" | "👅" | "👄" | "💋" | "🩸" | "👶" | "👧" | "🧒" | "👦" | "👩" | "🧑" | "👨" | "👩‍🦱" | "🧑‍🦱" | "👨‍🦱" | "👩‍🦰" | "🧑‍🦰" | "👨‍🦰" | "👱‍♀️" | "👱" | "👱‍♂️" | "👩‍🦳" | "🧑‍🦳" | "👨‍🦳" | "👩‍🦲" | "🧑‍🦲" | "👨‍🦲" | "🧔" | "👵" | "🧓" | "👴" | "👲" | "👳‍♀️" | "👳" | "👳‍♂️" | "🧕" | "👮‍♀️" | "👮" | "👮‍♂️" | "👷‍♀️" | "👷" | "👷‍♂️" | "💂‍♀️" | "💂" | "💂‍♂️" | "🕵️‍♀️" | "🕵️" | "🕵️‍♂️" | "👩‍⚕️" | "🧑‍⚕️" | "👨‍⚕️" | "👩‍🌾" | "🧑‍🌾" | "👨‍🌾" | "👩‍🍳" | "🧑‍🍳" | "👨‍🍳" | "👩‍🎓" | "🧑‍🎓" | "👨‍🎓" | "👩‍🎤" | "🧑‍🎤" | "👨‍🎤" | "👩‍🏫" | "🧑‍🏫" | "👨‍🏫" | "👩‍🏭" | "🧑‍🏭" | "👨‍🏭" | "👩‍💻" | "🧑‍💻" | "👨‍💻" | "👩‍💼" | "🧑‍💼" | "👨‍💼" | "👩‍🔧" | "🧑‍🔧" | "👨‍🔧" | "👩‍🔬" | "🧑‍🔬" | "👨‍🔬" | "👩‍🎨" | "🧑‍🎨" | "👨‍🎨" | "👩‍🚒" | "🧑‍🚒" | "👨‍🚒" | "👩‍✈️" | "🧑‍✈️" | "👨‍✈️" | "👩‍🚀" | "🧑‍🚀" | "👨‍🚀" | "👩‍⚖️" | "🧑‍⚖️" | "👨‍⚖️" | "👰‍♀️" | "👰" | "👰‍♂️" | "🤵‍♀️" | "🤵" | "🤵‍♂️" | "👸" | "🤴" | "🥷" | "🦸‍♀️" | "🦸" | "🦸‍♂️" | "🦹‍♀️" | "🦹" | "🦹‍♂️" | "🤶" | "🧑‍🎄" | "🎅" | "🧙‍♀️" | "🧙" | "🧙‍♂️" | "🧝‍♀️" | "🧝" | "🧝‍♂️" | "🧛‍♀️" | "🧛" | "🧛‍♂️" | "🧟‍♀️" | "🧟" | "🧟‍♂️" | "🧞‍♀️" | "🧞" | "🧞‍♂️" | "🧜‍♀️" | "🧜" | "🧜‍♂️" | "🧚‍♀️" | "🧚" | "🧚‍♂️" | "👼" | "🤰" | "🤱" | "👩‍🍼" | "🧑‍🍼" | "👨‍🍼" | "🙇‍♀️" | "🙇" | "🙇‍♂️" | "💁‍♀️" | "💁" | "💁‍♂️" | "🙅‍♀️" | "🙅" | "🙅‍♂️" | "🙆‍♀️" | "🙆" | "🙆‍♂️" | "🙋‍♀️" | "🙋" | "🙋‍♂️" | "🧏‍♀️" | "🧏" | "🧏‍♂️" | "🤦‍♀️" | "🤦" | "🤦‍♂️" | "🤷‍♀️" | "🤷" | "🤷‍♂️" | "🙎‍♀️" | "🙎" | "🙎‍♂️" | "🙍‍♀️" | "🙍" | "🙍‍♂️" | "💇‍♀️" | "💇" | "💇‍♂️" | "💆‍♀️" | "💆" | "💆‍♂️" | "🧖‍♀️" | "🧖" | "🧖‍♂️" | "💃" | "🕺" | "👯‍♀️" | "👯" | "👯‍♂️" | "🕴" | "👩‍🦽" | "🧑‍🦽" | "👨‍🦽" | "👩‍🦼" | "🧑‍🦼" | "👨‍🦼" | "🚶‍♀️" | "🚶" | "🚶‍♂️" | "👩‍🦯" | "🧑‍🦯" | "👨‍🦯" | "🧎‍♀️" | "🧎" | "🧎‍♂️" | "🏃‍♀️" | "🏃" | "🏃‍♂️" | "🧍‍♀️" | "🧍" | "🧍‍♂️" | "👭" | "🧑‍🤝‍🧑" | "👬" | "👫" | "👩‍❤️‍👩" | "💑" | "👨‍❤️‍👨" | "👩‍❤️‍👨" | "👩‍❤️‍💋‍👩" | "💏" | "👨‍❤️‍💋‍👨" | "👩‍❤️‍💋‍👨" | "👪" | "👨‍👩‍👦" | "👨‍👩‍👧" | "👨‍👩‍👧‍👦" | "👨‍👩‍👦‍👦" | "👨‍👩‍👧‍👧" | "👨‍👨‍👦" | "👨‍👨‍👧" | "👨‍👨‍👧‍👦" | "👨‍👨‍👦‍👦" | "👨‍👨‍👧‍👧" | "👩‍👩‍👦" | "👩‍👩‍👧" | "👩‍👩‍👧‍👦" | "👩‍👩‍👦‍👦" | "👩‍👩‍👧‍👧" | "👨‍👦" | "👨‍👦‍👦" | "👨‍👧" | "👨‍👧‍👦" | "👨‍👧‍👧" | "👩‍👦" | "👩‍👦‍👦" | "👩‍👧" | "👩‍👧‍👦" | "👩‍👧‍👧" | "🗣" | "👤" | "👥" | "🫂" | "🧳" | "🌂" | "☂️" | "🧵" | "🪡" | "🪢" | "🧶" | "👓" | "🕶" | "🥽" | "🥼" | "🦺" | "👔" | "👕" | "👖" | "🧣" | "🧤" | "🧥" | "🧦" | "👗" | "👘" | "🥻" | "🩴" | "🩱" | "🩲" | "🩳" | "👙" | "👚" | "👛" | "👜" | "👝" | "🎒" | "👞" | "👟" | "🥾" | "🥿" | "👠" | "👡" | "🩰" | "👢" | "👑" | "👒" | "🎩" | "🎓" | "🧢" | "⛑" | "🪖" | "💄" | "💍" | "💼" | "👋🏻" | "🤚🏻" | "🖐🏻" | "✋🏻" | "🖖🏻" | "👌🏻" | "🤌🏻" | "🤏🏻" | "✌🏻" | "🤞🏻" | "🤟🏻" | "🤘🏻" | "🤙🏻" | "👈🏻" | "👉🏻" | "👆🏻" | "🖕🏻" | "👇🏻" | "☝🏻" | "👍🏻" | "👎🏻" | "✊🏻" | "👊🏻" | "🤛🏻" | "🤜🏻" | "👏🏻" | "🙌🏻" | "👐🏻" | "🤲🏻" | "🙏🏻" | "✍🏻" | "💅🏻" | "🤳🏻" | "💪🏻" | "🦵🏻" | "🦶🏻" | "👂🏻" | "🦻🏻" | "👃🏻" | "👶🏻" | "👧🏻" | "🧒🏻" | "👦🏻" | "👩🏻" | "🧑🏻" | "👨🏻" | "👩🏻‍🦱" | "🧑🏻‍🦱" | "👨🏻‍🦱" | "👩🏻‍🦰" | "🧑🏻‍🦰" | "👨🏻‍🦰" | "👱🏻‍♀️" | "👱🏻" | "👱🏻‍♂️" | "👩🏻‍🦳" | "🧑🏻‍🦳" | "👨🏻‍🦳" | "👩🏻‍🦲" | "🧑🏻‍🦲" | "👨🏻‍🦲" | "🧔🏻" | "👵🏻" | "🧓🏻" | "👴🏻" | "👲🏻" | "👳🏻‍♀️" | "👳🏻" | "👳🏻‍♂️" | "🧕🏻" | "👮🏻‍♀️" | "👮🏻" | "👮🏻‍♂️" | "👷🏻‍♀️" | "👷🏻" | "👷🏻‍♂️" | "💂🏻‍♀️" | "💂🏻" | "💂🏻‍♂️" | "🕵🏻‍♀️" | "🕵🏻" | "🕵🏻‍♂️" | "👩🏻‍⚕️" | "🧑🏻‍⚕️" | "👨🏻‍⚕️" | "👩🏻‍🌾" | "🧑🏻‍🌾" | "👨🏻‍🌾" | "👩🏻‍🍳" | "🧑🏻‍🍳" | "👨🏻‍🍳" | "👩🏻‍🎓" | "🧑🏻‍🎓" | "👨🏻‍🎓" | "👩🏻‍🎤" | "🧑🏻‍🎤" | "👨🏻‍🎤" | "👩🏻‍🏫" | "🧑🏻‍🏫" | "👨🏻‍🏫" | "👩🏻‍🏭" | "🧑🏻‍🏭" | "👨🏻‍🏭" | "👩🏻‍💻" | "🧑🏻‍💻" | "👨🏻‍💻" | "👩🏻‍💼" | "🧑🏻‍💼" | "👨🏻‍💼" | "👩🏻‍🔧" | "🧑🏻‍🔧" | "👨🏻‍🔧" | "👩🏻‍🔬" | "🧑🏻‍🔬" | "👨🏻‍🔬" | "👩🏻‍🎨" | "🧑🏻‍🎨" | "👨🏻‍🎨" | "👩🏻‍🚒" | "🧑🏻‍🚒" | "👨🏻‍🚒" | "👩🏻‍✈️" | "🧑🏻‍✈️" | "👨🏻‍✈️" | "👩🏻‍🚀" | "🧑🏻‍🚀" | "👨🏻‍🚀" | "👩🏻‍⚖️" | "🧑🏻‍⚖️" | "👨🏻‍⚖️" | "👰🏻‍♀️" | "👰🏻" | "👰🏻‍♂️" | "🤵🏻‍♀️" | "🤵🏻" | "🤵🏻‍♂️" | "👸🏻" | "🤴🏻" | "🥷🏻" | "🦸🏻‍♀️" | "🦸🏻" | "🦸🏻‍♂️" | "🦹🏻‍♀️" | "🦹🏻" | "🦹🏻‍♂️" | "🤶🏻" | "🧑🏻‍🎄" | "🎅🏻" | "🧙🏻‍♀️" | "🧙🏻" | "🧙🏻‍♂️" | "🧝🏻‍♀️" | "🧝🏻" | "🧝🏻‍♂️" | "🧛🏻‍♀️" | "🧛🏻" | "🧛🏻‍♂️" | "🧜🏻‍♀️" | "🧜🏻" | "🧜🏻‍♂️" | "🧚🏻‍♀️" | "🧚🏻" | "🧚🏻‍♂️" | "👼🏻" | "🤰🏻" | "🤱🏻" | "👩🏻‍🍼" | "🧑🏻‍🍼" | "👨🏻‍🍼" | "🙇🏻‍♀️" | "🙇🏻" | "🙇🏻‍♂️" | "💁🏻‍♀️" | "💁🏻" | "💁🏻‍♂️" | "🙅🏻‍♀️" | "🙅🏻" | "🙅🏻‍♂️" | "🙆🏻‍♀️" | "🙆🏻" | "🙆🏻‍♂️" | "🙋🏻‍♀️" | "🙋🏻" | "🙋🏻‍♂️" | "🧏🏻‍♀️" | "🧏🏻" | "🧏🏻‍♂️" | "🤦🏻‍♀️" | "🤦🏻" | "🤦🏻‍♂️" | "🤷🏻‍♀️" | "🤷🏻" | "🤷🏻‍♂️" | "🙎🏻‍♀️" | "🙎🏻" | "🙎🏻‍♂️" | "🙍🏻‍♀️" | "🙍🏻" | "🙍🏻‍♂️" | "💇🏻‍♀️" | "💇🏻" | "💇🏻‍♂️" | "💆🏻‍♀️" | "💆🏻" | "💆🏻‍♂️" | "🧖🏻‍♀️" | "🧖🏻" | "🧖🏻‍♂️" | "💃🏻" | "🕺🏻" | "🕴🏻" | "👩🏻‍🦽" | "🧑🏻‍🦽" | "👨🏻‍🦽" | "👩🏻‍🦼" | "🧑🏻‍🦼" | "👨🏻‍🦼" | "🚶🏻‍♀️" | "🚶🏻" | "🚶🏻‍♂️" | "👩🏻‍🦯" | "🧑🏻‍🦯" | "👨🏻‍🦯" | "🧎🏻‍♀️" | "🧎🏻" | "🧎🏻‍♂️" | "🏃🏻‍♀️" | "🏃🏻" | "🏃🏻‍♂️" | "🧍🏻‍♀️" | "🧍🏻" | "🧍🏻‍♂️" | "👭🏻" | "🧑🏻‍🤝‍🧑🏻" | "👬🏻" | "👫🏻" | "🧗🏻‍♀️" | "🧗🏻" | "🧗🏻‍♂️" | "🏇🏻" | "🏂🏻" | "🏌🏻‍♀️" | "🏌🏻" | "🏌🏻‍♂️" | "🏄🏻‍♀️" | "🏄🏻" | "🏄🏻‍♂️" | "🚣🏻‍♀️" | "🚣🏻" | "🚣🏻‍♂️" | "🏊🏻‍♀️" | "🏊🏻" | "🏊🏻‍♂️" | "⛹🏻‍♀️" | "⛹🏻" | "⛹🏻‍♂️" | "🏋🏻‍♀️" | "🏋🏻" | "🏋🏻‍♂️" | "🚴🏻‍♀️" | "🚴🏻" | "🚴🏻‍♂️" | "🚵🏻‍♀️" | "🚵🏻" | "🚵🏻‍♂️" | "🤸🏻‍♀️" | "🤸🏻" | "🤸🏻‍♂️" | "🤽🏻‍♀️" | "🤽🏻" | "🤽🏻‍♂️" | "🤾🏻‍♀️" | "🤾🏻" | "🤾🏻‍♂️" | "🤹🏻‍♀️" | "🤹🏻" | "🤹🏻‍♂️" | "🧘🏻‍♀️" | "🧘🏻" | "🧘🏻‍♂️" | "🛀🏻" | "🛌" | "👋🏼" | "🤚🏼" | "🖐🏼" | "✋🏼" | "🖖🏼" | "👌🏼" | "🤌🏼" | "🤏🏼" | "✌🏼" | "🤞🏼" | "🤟🏼" | "🤘🏼" | "🤙🏼" | "👈🏼" | "👉🏼" | "👆🏼" | "🖕🏼" | "👇🏼" | "☝🏼" | "👍🏼" | "👎🏼" | "✊🏼" | "👊🏼" | "🤛🏼" | "🤜🏼" | "👏🏼" | "🙌🏼" | "👐🏼" | "🤲🏼" | "🙏🏼" | "✍🏼" | "💅🏼" | "🤳🏼" | "💪🏼" | "🦵🏼" | "🦶🏼" | "👂🏼" | "🦻🏼" | "👃🏼" | "👶🏼" | "👧🏼" | "🧒🏼" | "👦🏼" | "👩🏼" | "🧑🏼" | "👨🏼" | "👩🏼‍🦱" | "🧑🏼‍🦱" | "👨🏼‍🦱" | "👩🏼‍🦰" | "🧑🏼‍🦰" | "👨🏼‍🦰" | "👱🏼‍♀️" | "👱🏼" | "👱🏼‍♂️" | "👩🏼‍🦳" | "🧑🏼‍🦳" | "👨🏼‍🦳" | "👩🏼‍🦲" | "🧑🏼‍🦲" | "👨🏼‍🦲" | "🧔🏼" | "👵🏼" | "🧓🏼" | "👴🏼" | "👲🏼" | "👳🏼‍♀️" | "👳🏼" | "👳🏼‍♂️" | "🧕🏼" | "👮🏼‍♀️" | "👮🏼" | "👮🏼‍♂️" | "👷🏼‍♀️" | "👷🏼" | "👷🏼‍♂️" | "💂🏼‍♀️" | "💂🏼" | "💂🏼‍♂️" | "🕵🏼‍♀️" | "🕵🏼" | "🕵🏼‍♂️" | "👩🏼‍⚕️" | "🧑🏼‍⚕️" | "👨🏼‍⚕️" | "👩🏼‍🌾" | "🧑🏼‍🌾" | "👨🏼‍🌾" | "👩🏼‍🍳" | "🧑🏼‍🍳" | "👨🏼‍🍳" | "👩🏼‍🎓" | "🧑🏼‍🎓" | "👨🏼‍🎓" | "👩🏼‍🎤" | "🧑🏼‍🎤" | "👨🏼‍🎤" | "👩🏼‍🏫" | "🧑🏼‍🏫" | "👨🏼‍🏫" | "👩🏼‍🏭" | "🧑🏼‍🏭" | "👨🏼‍🏭" | "👩🏼‍💻" | "🧑🏼‍💻" | "👨🏼‍💻" | "👩🏼‍💼" | "🧑🏼‍💼" | "👨🏼‍💼" | "👩🏼‍🔧" | "🧑🏼‍🔧" | "👨🏼‍🔧" | "👩🏼‍🔬" | "🧑🏼‍🔬" | "👨🏼‍🔬" | "👩🏼‍🎨" | "🧑🏼‍🎨" | "👨🏼‍🎨" | "👩🏼‍🚒" | "🧑🏼‍🚒" | "👨🏼‍🚒" | "👩🏼‍✈️" | "🧑🏼‍✈️" | "👨🏼‍✈️" | "👩🏼‍🚀" | "🧑🏼‍🚀" | "👨🏼‍🚀" | "👩🏼‍⚖️" | "🧑🏼‍⚖️" | "👨🏼‍⚖️" | "👰🏼‍♀️" | "👰🏼" | "👰🏼‍♂️" | "🤵🏼‍♀️" | "🤵🏼" | "🤵🏼‍♂️" | "👸🏼" | "🤴🏼" | "🥷🏼" | "🦸🏼‍♀️" | "🦸🏼" | "🦸🏼‍♂️" | "🦹🏼‍♀️" | "🦹🏼" | "🦹🏼‍♂️" | "🤶🏼" | "🧑🏼‍🎄" | "🎅🏼" | "🧙🏼‍♀️" | "🧙🏼" | "🧙🏼‍♂️" | "🧝🏼‍♀️" | "🧝🏼" | "🧝🏼‍♂️" | "🧛🏼‍♀️" | "🧛🏼" | "🧛🏼‍♂️" | "🧜🏼‍♀️" | "🧜🏼" | "🧜🏼‍♂️" | "🧚🏼‍♀️" | "🧚🏼" | "🧚🏼‍♂️" | "👼🏼" | "🤰🏼" | "🤱🏼" | "👩🏼‍🍼" | "🧑🏼‍🍼" | "👨🏼‍🍼" | "🙇🏼‍♀️" | "🙇🏼" | "🙇🏼‍♂️" | "💁🏼‍♀️" | "💁🏼" | "💁🏼‍♂️" | "🙅🏼‍♀️" | "🙅🏼" | "🙅🏼‍♂️" | "🙆🏼‍♀️" | "🙆🏼" | "🙆🏼‍♂️" | "🙋🏼‍♀️" | "🙋🏼" | "🙋🏼‍♂️" | "🧏🏼‍♀️" | "🧏🏼" | "🧏🏼‍♂️" | "🤦🏼‍♀️" | "🤦🏼" | "🤦🏼‍♂️" | "🤷🏼‍♀️" | "🤷🏼" | "🤷🏼‍♂️" | "🙎🏼‍♀️" | "🙎🏼" | "🙎🏼‍♂️" | "🙍🏼‍♀️" | "🙍🏼" | "🙍🏼‍♂️" | "💇🏼‍♀️" | "💇🏼" | "💇🏼‍♂️" | "💆🏼‍♀️" | "💆🏼" | "💆🏼‍♂️" | "🧖🏼‍♀️" | "🧖🏼" | "🧖🏼‍♂️" | "💃🏼" | "🕺🏼" | "🕴🏼" | "👩🏼‍🦽" | "🧑🏼‍🦽" | "👨🏼‍🦽" | "👩🏼‍🦼" | "🧑🏼‍🦼" | "👨🏼‍🦼" | "🚶🏼‍♀️" | "🚶🏼" | "🚶🏼‍♂️" | "👩🏼‍🦯" | "🧑🏼‍🦯" | "👨🏼‍🦯" | "🧎🏼‍♀️" | "🧎🏼" | "🧎🏼‍♂️" | "🏃🏼‍♀️" | "🏃🏼" | "🏃🏼‍♂️" | "🧍🏼‍♀️" | "🧍🏼" | "🧍🏼‍♂️" | "👭🏼" | "🧑🏼‍🤝‍🧑🏼" | "👬🏼" | "👫🏼" | "🧗🏼‍♀️" | "🧗🏼" | "🧗🏼‍♂️" | "🏇🏼" | "🏂🏼" | "🏌🏼‍♀️" | "🏌🏼" | "🏌🏼‍♂️" | "🏄🏼‍♀️" | "🏄🏼" | "🏄🏼‍♂️" | "🚣🏼‍♀️" | "🚣🏼" | "🚣🏼‍♂️" | "🏊🏼‍♀️" | "🏊🏼" | "🏊🏼‍♂️" | "⛹🏼‍♀️" | "⛹🏼" | "⛹🏼‍♂️" | "🏋🏼‍♀️" | "🏋🏼" | "🏋🏼‍♂️" | "🚴🏼‍♀️" | "🚴🏼" | "🚴🏼‍♂️" | "🚵🏼‍♀️" | "🚵🏼" | "🚵🏼‍♂️" | "🤸🏼‍♀️" | "🤸🏼" | "🤸🏼‍♂️" | "🤽🏼‍♀️" | "🤽🏼" | "🤽🏼‍♂️" | "🤾🏼‍♀️" | "🤾🏼" | "🤾🏼‍♂️" | "🤹🏼‍♀️" | "🤹🏼" | "🤹🏼‍♂️" | "🧘🏼‍♀️" | "🧘🏼" | "🧘🏼‍♂️" | "🛀🏼" | "👋🏽" | "🤚🏽" | "🖐🏽" | "✋🏽" | "🖖🏽" | "👌🏽" | "🤌🏽" | "🤏🏽" | "✌🏽" | "🤞🏽" | "🤟🏽" | "🤘🏽" | "🤙🏽" | "👈🏽" | "👉🏽" | "👆🏽" | "🖕🏽" | "👇🏽" | "☝🏽" | "👍🏽" | "👎🏽" | "✊🏽" | "👊🏽" | "🤛🏽" | "🤜🏽" | "👏🏽" | "🙌🏽" | "👐🏽" | "🤲🏽" | "🙏🏽" | "✍🏽" | "💅🏽" | "🤳🏽" | "💪🏽" | "🦵🏽" | "🦶🏽" | "👂🏽" | "🦻🏽" | "👃🏽" | "👶🏽" | "👧🏽" | "🧒🏽" | "👦🏽" | "👩🏽" | "🧑🏽" | "👨🏽" | "👩🏽‍🦱" | "🧑🏽‍🦱" | "👨🏽‍🦱" | "👩🏽‍🦰" | "🧑🏽‍🦰" | "👨🏽‍🦰" | "👱🏽‍♀️" | "👱🏽" | "👱🏽‍♂️" | "👩🏽‍🦳" | "🧑🏽‍🦳" | "👨🏽‍🦳" | "👩🏽‍🦲" | "🧑🏽‍🦲" | "👨🏽‍🦲" | "🧔🏽" | "👵🏽" | "🧓🏽" | "👴🏽" | "👲🏽" | "👳🏽‍♀️" | "👳🏽" | "👳🏽‍♂️" | "🧕🏽" | "👮🏽‍♀️" | "👮🏽" | "👮🏽‍♂️" | "👷🏽‍♀️" | "👷🏽" | "👷🏽‍♂️" | "💂🏽‍♀️" | "💂🏽" | "💂🏽‍♂️" | "🕵🏽‍♀️" | "🕵🏽" | "🕵🏽‍♂️" | "👩🏽‍⚕️" | "🧑🏽‍⚕️" | "👨🏽‍⚕️" | "👩🏽‍🌾" | "🧑🏽‍🌾" | "👨🏽‍🌾" | "👩🏽‍🍳" | "🧑🏽‍🍳" | "👨🏽‍🍳" | "👩🏽‍🎓" | "🧑🏽‍🎓" | "👨🏽‍🎓" | "👩🏽‍🎤" | "🧑🏽‍🎤" | "👨🏽‍🎤" | "👩🏽‍🏫" | "🧑🏽‍🏫" | "👨🏽‍🏫" | "👩🏽‍🏭" | "🧑🏽‍🏭" | "👨🏽‍🏭" | "👩🏽‍💻" | "🧑🏽‍💻" | "👨🏽‍💻" | "👩🏽‍💼" | "🧑🏽‍💼" | "👨🏽‍💼" | "👩🏽‍🔧" | "🧑🏽‍🔧" | "👨🏽‍🔧" | "👩🏽‍🔬" | "🧑🏽‍🔬" | "👨🏽‍🔬" | "👩🏽‍🎨" | "🧑🏽‍🎨" | "👨🏽‍🎨" | "👩🏽‍🚒" | "🧑🏽‍🚒" | "👨🏽‍🚒" | "👩🏽‍✈️" | "🧑🏽‍✈️" | "👨🏽‍✈️" | "👩🏽‍🚀" | "🧑🏽‍🚀" | "👨🏽‍🚀" | "👩🏽‍⚖️" | "🧑🏽‍⚖️" | "👨🏽‍⚖️" | "👰🏽‍♀️" | "👰🏽" | "👰🏽‍♂️" | "🤵🏽‍♀️" | "🤵🏽" | "🤵🏽‍♂️" | "👸🏽" | "🤴🏽" | "🥷🏽" | "🦸🏽‍♀️" | "🦸🏽" | "🦸🏽‍♂️" | "🦹🏽‍♀️" | "🦹🏽" | "🦹🏽‍♂️" | "🤶🏽" | "🧑🏽‍🎄" | "🎅🏽" | "🧙🏽‍♀️" | "🧙🏽" | "🧙🏽‍♂️" | "🧝🏽‍♀️" | "🧝🏽" | "🧝🏽‍♂️" | "🧛🏽‍♀️" | "🧛🏽" | "🧛🏽‍♂️" | "🧜🏽‍♀️" | "🧜🏽" | "🧜🏽‍♂️" | "🧚🏽‍♀️" | "🧚🏽" | "🧚🏽‍♂️" | "👼🏽" | "🤰🏽" | "🤱🏽" | "👩🏽‍🍼" | "🧑🏽‍🍼" | "👨🏽‍🍼" | "🙇🏽‍♀️" | "🙇🏽" | "🙇🏽‍♂️" | "💁🏽‍♀️" | "💁🏽" | "💁🏽‍♂️" | "🙅🏽‍♀️" | "🙅🏽" | "🙅🏽‍♂️" | "🙆🏽‍♀️" | "🙆🏽" | "🙆🏽‍♂️" | "🙋🏽‍♀️" | "🙋🏽" | "🙋🏽‍♂️" | "🧏🏽‍♀️" | "🧏🏽" | "🧏🏽‍♂️" | "🤦🏽‍♀️" | "🤦🏽" | "🤦🏽‍♂️" | "🤷🏽‍♀️" | "🤷🏽" | "🤷🏽‍♂️" | "🙎🏽‍♀️" | "🙎🏽" | "🙎🏽‍♂️" | "🙍🏽‍♀️" | "🙍🏽" | "🙍🏽‍♂️" | "💇🏽‍♀️" | "💇🏽" | "💇🏽‍♂️" | "💆🏽‍♀️" | "💆🏽" | "💆🏽‍♂️" | "🧖🏽‍♀️" | "🧖🏽" | "🧖🏽‍♂️" | "💃🏽" | "🕺🏽" | "🕴🏽" | "👩🏽‍🦽" | "🧑🏽‍🦽" | "👨🏽‍🦽" | "👩🏽‍🦼" | "🧑🏽‍🦼" | "👨🏽‍🦼" | "🚶🏽‍♀️" | "🚶🏽" | "🚶🏽‍♂️" | "👩🏽‍🦯" | "🧑🏽‍🦯" | "👨🏽‍🦯" | "🧎🏽‍♀️" | "🧎🏽" | "🧎🏽‍♂️" | "🏃🏽‍♀️" | "🏃🏽" | "🏃🏽‍♂️" | "🧍🏽‍♀️" | "🧍🏽" | "🧍🏽‍♂️" | "👭🏽" | "🧑🏽‍🤝‍🧑🏽" | "👬🏽" | "👫🏽" | "🧗🏽‍♀️" | "🧗🏽" | "🧗🏽‍♂️" | "🏇🏽" | "🏂🏽" | "🏌🏽‍♀️" | "🏌🏽" | "🏌🏽‍♂️" | "🏄🏽‍♀️" | "🏄🏽" | "🏄🏽‍♂️" | "🚣🏽‍♀️" | "🚣🏽" | "🚣🏽‍♂️" | "🏊🏽‍♀️" | "🏊🏽" | "🏊🏽‍♂️" | "⛹🏽‍♀️" | "⛹🏽" | "⛹🏽‍♂️" | "🏋🏽‍♀️" | "🏋🏽" | "🏋🏽‍♂️" | "🚴🏽‍♀️" | "🚴🏽" | "🚴🏽‍♂️" | "🚵🏽‍♀️" | "🚵🏽" | "🚵🏽‍♂️" | "🤸🏽‍♀️" | "🤸🏽" | "🤸🏽‍♂️" | "🤽🏽‍♀️" | "🤽🏽" | "🤽🏽‍♂️" | "🤾🏽‍♀️" | "🤾🏽" | "🤾🏽‍♂️" | "🤹🏽‍♀️" | "🤹🏽" | "🤹🏽‍♂️" | "🧘🏽‍♀️" | "🧘🏽" | "🧘🏽‍♂️" | "🛀🏽" | "👋🏾" | "🤚🏾" | "🖐🏾" | "✋🏾" | "🖖🏾" | "👌🏾" | "🤌🏾" | "🤏🏾" | "✌🏾" | "🤞🏾" | "🤟🏾" | "🤘🏾" | "🤙🏾" | "👈🏾" | "👉🏾" | "👆🏾" | "🖕🏾" | "👇🏾" | "☝🏾" | "👍🏾" | "👎🏾" | "✊🏾" | "👊🏾" | "🤛🏾" | "🤜🏾" | "👏🏾" | "🙌🏾" | "👐🏾" | "🤲🏾" | "🙏🏾" | "✍🏾" | "💅🏾" | "🤳🏾" | "💪🏾" | "🦵🏾" | "🦶🏾" | "👂🏾" | "🦻🏾" | "👃🏾" | "👶🏾" | "👧🏾" | "🧒🏾" | "👦🏾" | "👩🏾" | "🧑🏾" | "👨🏾" | "👩🏾‍🦱" | "🧑🏾‍🦱" | "👨🏾‍🦱" | "👩🏾‍🦰" | "🧑🏾‍🦰" | "👨🏾‍🦰" | "👱🏾‍♀️" | "👱🏾" | "👱🏾‍♂️" | "👩🏾‍🦳" | "🧑🏾‍🦳" | "👨🏾‍🦳" | "👩🏾‍🦲" | "🧑🏾‍🦲" | "👨🏾‍🦲" | "🧔🏾" | "👵🏾" | "🧓🏾" | "👴🏾" | "👲🏾" | "👳🏾‍♀️" | "👳🏾" | "👳🏾‍♂️" | "🧕🏾" | "👮🏾‍♀️" | "👮🏾" | "👮🏾‍♂️" | "👷🏾‍♀️" | "👷🏾" | "👷🏾‍♂️" | "💂🏾‍♀️" | "💂🏾" | "💂🏾‍♂️" | "🕵🏾‍♀️" | "🕵🏾" | "🕵🏾‍♂️" | "👩🏾‍⚕️" | "🧑🏾‍⚕️" | "👨🏾‍⚕️" | "👩🏾‍🌾" | "🧑🏾‍🌾" | "👨🏾‍🌾" | "👩🏾‍🍳" | "🧑🏾‍🍳" | "👨🏾‍🍳" | "👩🏾‍🎓" | "🧑🏾‍🎓" | "👨🏾‍🎓" | "👩🏾‍🎤" | "🧑🏾‍🎤" | "👨🏾‍🎤" | "👩🏾‍🏫" | "🧑🏾‍🏫" | "👨🏾‍🏫" | "👩🏾‍🏭" | "🧑🏾‍🏭" | "👨🏾‍🏭" | "👩🏾‍💻" | "🧑🏾‍💻" | "👨🏾‍💻" | "👩🏾‍💼" | "🧑🏾‍💼" | "👨🏾‍💼" | "👩🏾‍🔧" | "🧑🏾‍🔧" | "👨🏾‍🔧" | "👩🏾‍🔬" | "🧑🏾‍🔬" | "👨🏾‍🔬" | "👩🏾‍🎨" | "🧑🏾‍🎨" | "👨🏾‍🎨" | "👩🏾‍🚒" | "🧑🏾‍🚒" | "👨🏾‍🚒" | "👩🏾‍✈️" | "🧑🏾‍✈️" | "👨🏾‍✈️" | "👩🏾‍🚀" | "🧑🏾‍🚀" | "👨🏾‍🚀" | "👩🏾‍⚖️" | "🧑🏾‍⚖️" | "👨🏾‍⚖️" | "👰🏾‍♀️" | "👰🏾" | "👰🏾‍♂️" | "🤵🏾‍♀️" | "🤵🏾" | "🤵🏾‍♂️" | "👸🏾" | "🤴🏾" | "🥷🏾" | "🦸🏾‍♀️" | "🦸🏾" | "🦸🏾‍♂️" | "🦹🏾‍♀️" | "🦹🏾" | "🦹🏾‍♂️" | "🤶🏾" | "🧑🏾‍🎄" | "🎅🏾" | "🧙🏾‍♀️" | "🧙🏾" | "🧙🏾‍♂️" | "🧝🏾‍♀️" | "🧝🏾" | "🧝🏾‍♂️" | "🧛🏾‍♀️" | "🧛🏾" | "🧛🏾‍♂️" | "🧜🏾‍♀️" | "🧜🏾" | "🧜🏾‍♂️" | "🧚🏾‍♀️" | "🧚🏾" | "🧚🏾‍♂️" | "👼🏾" | "🤰🏾" | "🤱🏾" | "👩🏾‍🍼" | "🧑🏾‍🍼" | "👨🏾‍🍼" | "🙇🏾‍♀️" | "🙇🏾" | "🙇🏾‍♂️" | "💁🏾‍♀️" | "💁🏾" | "💁🏾‍♂️" | "🙅🏾‍♀️" | "🙅🏾" | "🙅🏾‍♂️" | "🙆🏾‍♀️" | "🙆🏾" | "🙆🏾‍♂️" | "🙋🏾‍♀️" | "🙋🏾" | "🙋🏾‍♂️" | "🧏🏾‍♀️" | "🧏🏾" | "🧏🏾‍♂️" | "🤦🏾‍♀️" | "🤦🏾" | "🤦🏾‍♂️" | "🤷🏾‍♀️" | "🤷🏾" | "🤷🏾‍♂️" | "🙎🏾‍♀️" | "🙎🏾" | "🙎🏾‍♂️" | "🙍🏾‍♀️" | "🙍🏾" | "🙍🏾‍♂️" | "💇🏾‍♀️" | "💇🏾" | "💇🏾‍♂️" | "💆🏾‍♀️" | "💆🏾" | "💆🏾‍♂️" | "🧖🏾‍♀️" | "🧖🏾" | "🧖🏾‍♂️" | "💃🏾" | "🕺🏾" | "🕴🏿" | "👩🏾‍🦽" | "🧑🏾‍🦽" | "👨🏾‍🦽" | "👩🏾‍🦼" | "🧑🏾‍🦼" | "👨🏾‍🦼" | "🚶🏾‍♀️" | "🚶🏾" | "🚶🏾‍♂️" | "👩🏾‍🦯" | "🧑🏾‍🦯" | "👨🏾‍🦯" | "🧎🏾‍♀️" | "🧎🏾" | "🧎🏾‍♂️" | "🏃🏾‍♀️" | "🏃🏾" | "🏃🏾‍♂️" | "🧍🏾‍♀️" | "🧍🏾" | "🧍🏾‍♂️" | "👭🏾" | "🧑🏾‍🤝‍🧑🏾" | "👬🏾" | "👫🏾" | "🧗🏾‍♀️" | "🧗🏾" | "🧗🏾‍♂️" | "🏇🏾" | "🏂🏾" | "🏌🏾‍♀️" | "🏌🏾" | "🏌🏾‍♂️" | "🏄🏾‍♀️" | "🏄🏾" | "🏄🏾‍♂️" | "🚣🏾‍♀️" | "🚣🏾" | "🚣🏾‍♂️" | "🏊🏾‍♀️" | "🏊🏾" | "🏊🏾‍♂️" | "⛹🏾‍♀️" | "⛹🏾" | "⛹🏾‍♂️" | "🏋🏾‍♀️" | "🏋🏾" | "🏋🏾‍♂️" | "🚴🏾‍♀️" | "🚴🏾" | "🚴🏾‍♂️" | "🚵🏾‍♀️" | "🚵🏾" | "🚵🏾‍♂️" | "🤸🏾‍♀️" | "🤸🏾" | "🤸🏾‍♂️" | "🤽🏾‍♀️" | "🤽🏾" | "🤽🏾‍♂️" | "🤾🏾‍♀️" | "🤾🏾" | "🤾🏾‍♂️" | "🤹🏾‍♀️" | "🤹🏾" | "🤹🏾‍♂️" | "🧘🏾‍♀️" | "🧘🏾" | "🧘🏾‍♂️" | "🛀🏾" | "👋🏿" | "🤚🏿" | "🖐🏿" | "✋🏿" | "🖖🏿" | "👌🏿" | "🤌🏿" | "🤏🏿" | "✌🏿" | "🤞🏿" | "🤟🏿" | "🤘🏿" | "🤙🏿" | "👈🏿" | "👉🏿" | "👆🏿" | "🖕🏿" | "👇🏿" | "☝🏿" | "👍🏿" | "👎🏿" | "✊🏿" | "👊🏿" | "🤛🏿" | "🤜🏿" | "👏🏿" | "🙌🏿" | "👐🏿" | "🤲🏿" | "🙏🏿" | "✍🏿" | "💅🏿" | "🤳🏿" | "💪🏿" | "🦵🏿" | "🦶🏿" | "👂🏿" | "🦻🏿" | "👃🏿" | "👶🏿" | "👧🏿" | "🧒🏿" | "👦🏿" | "👩🏿" | "🧑🏿" | "👨🏿" | "👩🏿‍🦱" | "🧑🏿‍🦱" | "👨🏿‍🦱" | "👩🏿‍🦰" | "🧑🏿‍🦰" | "👨🏿‍🦰" | "👱🏿‍♀️" | "👱🏿" | "👱🏿‍♂️" | "👩🏿‍🦳" | "🧑🏿‍🦳" | "👨🏿‍🦳" | "👩🏿‍🦲" | "🧑🏿‍🦲" | "👨🏿‍🦲" | "🧔🏿" | "👵🏿" | "🧓🏿" | "👴🏿" | "👲🏿" | "👳🏿‍♀️" | "👳🏿" | "👳🏿‍♂️" | "🧕🏿" | "👮🏿‍♀️" | "👮🏿" | "👮🏿‍♂️" | "👷🏿‍♀️" | "👷🏿" | "👷🏿‍♂️" | "💂🏿‍♀️" | "💂🏿" | "💂🏿‍♂️" | "🕵🏿‍♀️" | "🕵🏿" | "🕵🏿‍♂️" | "👩🏿‍⚕️" | "🧑🏿‍⚕️" | "👨🏿‍⚕️" | "👩🏿‍🌾" | "🧑🏿‍🌾" | "👨🏿‍🌾" | "👩🏿‍🍳" | "🧑🏿‍🍳" | "👨🏿‍🍳" | "👩🏿‍🎓" | "🧑🏿‍🎓" | "👨🏿‍🎓" | "👩🏿‍🎤" | "🧑🏿‍🎤" | "👨🏿‍🎤" | "👩🏿‍🏫" | "🧑🏿‍🏫" | "👨🏿‍🏫" | "👩🏿‍🏭" | "🧑🏿‍🏭" | "👨🏿‍🏭" | "👩🏿‍💻" | "🧑🏿‍💻" | "👨🏿‍💻" | "👩🏿‍💼" | "🧑🏿‍💼" | "👨🏿‍💼" | "👩🏿‍🔧" | "🧑🏿‍🔧" | "👨🏿‍🔧" | "👩🏿‍🔬" | "🧑🏿‍🔬" | "👨🏿‍🔬" | "👩🏿‍🎨" | "🧑🏿‍🎨" | "👨🏿‍🎨" | "👩🏿‍🚒" | "🧑🏿‍🚒" | "👨🏿‍🚒" | "👩🏿‍✈️" | "🧑🏿‍✈️" | "👨🏿‍✈️" | "👩🏿‍🚀" | "🧑🏿‍🚀" | "👨🏿‍🚀" | "👩🏿‍⚖️" | "🧑🏿‍⚖️" | "👨🏿‍⚖️" | "👰🏿‍♀️" | "👰🏿" | "👰🏿‍♂️" | "🤵🏿‍♀️" | "🤵🏿" | "🤵🏿‍♂️" | "👸🏿" | "🤴🏿" | "🥷🏿" | "🦸🏿‍♀️" | "🦸🏿" | "🦸🏿‍♂️" | "🦹🏿‍♀️" | "🦹🏿" | "🦹🏿‍♂️" | "🤶🏿" | "🧑🏿‍🎄" | "🎅🏿" | "🧙🏿‍♀️" | "🧙🏿" | "🧙🏿‍♂️" | "🧝🏿‍♀️" | "🧝🏿" | "🧝🏿‍♂️" | "🧛🏿‍♀️" | "🧛🏿" | "🧛🏿‍♂️" | "🧜🏿‍♀️" | "🧜🏿" | "🧜🏿‍♂️" | "🧚🏿‍♀️" | "🧚🏿" | "🧚🏿‍♂️" | "👼🏿" | "🤰🏿" | "🤱🏿" | "👩🏿‍🍼" | "🧑🏿‍🍼" | "👨🏿‍🍼" | "🙇🏿‍♀️" | "🙇🏿" | "🙇🏿‍♂️" | "💁🏿‍♀️" | "💁🏿" | "💁🏿‍♂️" | "🙅🏿‍♀️" | "🙅🏿" | "🙅🏿‍♂️" | "🙆🏿‍♀️" | "🙆🏿" | "🙆🏿‍♂️" | "🙋🏿‍♀️" | "🙋🏿" | "🙋🏿‍♂️" | "🧏🏿‍♀️" | "🧏🏿" | "🧏🏿‍♂️" | "🤦🏿‍♀️" | "🤦🏿" | "🤦🏿‍♂️" | "🤷🏿‍♀️" | "🤷🏿" | "🤷🏿‍♂️" | "🙎🏿‍♀️" | "🙎🏿" | "🙎🏿‍♂️" | "🙍🏿‍♀️" | "🙍🏿" | "🙍🏿‍♂️" | "💇🏿‍♀️" | "💇🏿" | "💇🏿‍♂️" | "💆🏿‍♀️" | "💆🏿" | "💆🏿‍♂️" | "🧖🏿‍♀️" | "🧖🏿" | "🧖🏿‍♂️" | "💃🏿" | "🕺🏿" | "👩🏿‍🦽" | "🧑🏿‍🦽" | "👨🏿‍🦽" | "👩🏿‍🦼" | "🧑🏿‍🦼" | "👨🏿‍🦼" | "🚶🏿‍♀️" | "🚶🏿" | "🚶🏿‍♂️" | "👩🏿‍🦯" | "🧑🏿‍🦯" | "👨🏿‍🦯" | "🧎🏿‍♀️" | "🧎🏿" | "🧎🏿‍♂️" | "🏃🏿‍♀️" | "🏃🏿" | "🏃🏿‍♂️" | "🧍🏿‍♀️" | "🧍🏿" | "🧍🏿‍♂️" | "👭🏿" | "🧑🏿‍🤝‍🧑🏿" | "👬🏿" | "👫🏿" | "🧗🏿‍♀️" | "🧗🏿" | "🧗🏿‍♂️" | "🏇🏿" | "🏂🏿" | "🏌🏿‍♀️" | "🏌🏿" | "🏌🏿‍♂️" | "🏄🏿‍♀️" | "🏄🏿" | "🏄🏿‍♂️" | "🚣🏿‍♀️" | "🚣🏿" | "🚣🏿‍♂️" | "🏊🏿‍♀️" | "🏊🏿" | "🏊🏿‍♂️" | "⛹🏿‍♀️" | "⛹🏿" | "⛹🏿‍♂️" | "🏋🏿‍♀️" | "🏋🏿" | "🏋🏿‍♂️" | "🚴🏿‍♀️" | "🚴🏿" | "🚴🏿‍♂️" | "🚵🏿‍♀️" | "🚵🏿" | "🚵🏿‍♂️" | "🤸🏿‍♀️" | "🤸🏿" | "🤸🏿‍♂️" | "🤽🏿‍♀️" | "🤽🏿" | "🤽🏿‍♂️" | "🤾🏿‍♀️" | "🤾🏿" | "🤾🏿‍♂️" | "🤹🏿‍♀️" | "🤹🏿" | "🤹🏿‍♂️" | "🧘🏿‍♀️" | "🧘🏿" | "🧘🏿‍♂️" | "🛀🏿" | "🛌🏿" | "🐶" | "🐱" | "🐭" | "🐹" | "🐰" | "🦊" | "🐻" | "🐼" | "🐻‍❄️" | "🐨" | "🐯" | "🦁" | "🐮" | "🐷" | "🐽" | "🐸" | "🐵" | "🙈" | "🙉" | "🙊" | "🐒" | "🐔" | "🐧" | "🐦" | "🐤" | "🐣" | "🐥" | "🦆" | "🦅" | "🦉" | "🦇" | "🐺" | "🐗" | "🐴" | "🦄" | "🐝" | "🪱" | "🐛" | "🦋" | "🐌" | "🐞" | "🐜" | "🪰" | "🪲" | "🪳" | "🦟" | "🦗" | "🕷" | "🕸" | "🦂" | "🐢" | "🐍" | "🦎" | "🦖" | "🦕" | "🐙" | "🦑" | "🦐" | "🦞" | "🦀" | "🐡" | "🐠" | "🐟" | "🐬" | "🐳" | "🐋" | "🦈" | "🐊" | "🐅" | "🐆" | "🦓" | "🦍" | "🦧" | "🦣" | "🐘" | "🦛" | "🦏" | "🐪" | "🐫" | "🦒" | "🦘" | "🦬" | "🐃" | "🐂" | "🐄" | "🐎" | "🐖" | "🐏" | "🐑" | "🦙" | "🐐" | "🦌" | "🐕" | "🐩" | "🦮" | "🐕‍🦺" | "🐈" | "🐈‍⬛" | "🪶" | "🐓" | "🦃" | "🦤" | "🦚" | "🦜" | "🦢" | "🦩" | "🕊" | "🐇" | "🦝" | "🦨" | "🦡" | "🦫" | "🦦" | "🦥" | "🐁" | "🐀" | "🐿" | "🦔" | "🐾" | "🐉" | "🐲" | "🌵" | "🎄" | "🌲" | "🌳" | "🌴" | "🪵" | "🌱" | "🌿" | "☘️" | "🍀" | "🎍" | "🪴" | "🎋" | "🍃" | "🍂" | "🍁" | "🍄" | "🐚" | "🪨" | "🌾" | "💐" | "🌷" | "🌹" | "🥀" | "🌺" | "🌸" | "🌼" | "🌻" | "🌞" | "🌝" | "🌛" | "🌜" | "🌚" | "🌕" | "🌖" | "🌗" | "🌘" | "🌑" | "🌒" | "🌓" | "🌔" | "🌙" | "🌎" | "🌍" | "🌏" | "🪐" | "💫" | "⭐️" | "🌟" | "✨" | "⚡️" | "☄️" | "💥" | "🔥" | "🌪" | "🌈" | "☀️" | "🌤" | "⛅️" | "🌥" | "☁️" | "🌦" | "🌧" | "⛈" | "🌩" | "🌨" | "❄️" | "☃️" | "⛄️" | "🌬" | "💨" | "💧" | "💦" | "☔️" | "🌊" | "🌫" | "🍏" | "🍎" | "🍐" | "🍊" | "🍋" | "🍌" | "🍉" | "🍇" | "🍓" | "🫐" | "🍈" | "🍒" | "🍑" | "🥭" | "🍍" | "🥥" | "🥝" | "🍅" | "🍆" | "🥑" | "🥦" | "🥬" | "🥒" | "🌶" | "🫑" | "🌽" | "🥕" | "🫒" | "🧄" | "🧅" | "🥔" | "🍠" | "🥐" | "🥯" | "🍞" | "🥖" | "🥨" | "🧀" | "🥚" | "🍳" | "🧈" | "🥞" | "🧇" | "🥓" | "🥩" | "🍗" | "🍖" | "🌭" | "🍔" | "🍟" | "🍕" | "🫓" | "🥪" | "🥙" | "🧆" | "🌮" | "🌯" | "🫔" | "🥗" | "🥘" | "🫕" | "🥫" | "🍝" | "🍜" | "🍲" | "🍛" | "🍣" | "🍱" | "🥟" | "🦪" | "🍤" | "🍙" | "🍚" | "🍘" | "🍥" | "🥠" | "🥮" | "🍢" | "🍡" | "🍧" | "🍨" | "🍦" | "🥧" | "🧁" | "🍰" | "🎂" | "🍮" | "🍭" | "🍬" | "🍫" | "🍿" | "🍩" | "🍪" | "🌰" | "🥜" | "🍯" | "🥛" | "🍼" | "🫖" | "☕️" | "🍵" | "🧃" | "🥤" | "🧋" | "🍶" | "🍺" | "🍻" | "🥂" | "🍷" | "🥃" | "🍸" | "🍹" | "🧉" | "🍾" | "🧊" | "🥄" | "🍴" | "🍽" | "🥣" | "🥡" | "🥢" | "🧂" | "⚽️" | "🏀" | "🏈" | "⚾️" | "🥎" | "🎾" | "🏐" | "🏉" | "🥏" | "🎱" | "🪀" | "🏓" | "🏸" | "🏒" | "🏑" | "🥍" | "🏏" | "🪃" | "🥅" | "⛳️" | "🪁" | "🏹" | "🎣" | "🤿" | "🥊" | "🥋" | "🎽" | "🛹" | "🛼" | "🛷" | "⛸" | "🥌" | "🎿" | "⛷" | "🏂" | "🪂" | "🏋️‍♀️" | "🏋️" | "🏋️‍♂️" | "🤼‍♀️" | "🤼" | "🤼‍♂️" | "🤸‍♀️" | "🤸" | "🤸‍♂️" | "⛹️‍♀️" | "⛹️" | "⛹️‍♂️" | "🤺" | "🤾‍♀️" | "🤾" | "🤾‍♂️" | "🏌️‍♀️" | "🏌️" | "🏌️‍♂️" | "🏇" | "🧘‍♀️" | "🧘" | "🧘‍♂️" | "🏄‍♀️" | "🏄" | "🏄‍♂️" | "🏊‍♀️" | "🏊" | "🏊‍♂️" | "🤽‍♀️" | "🤽" | "🤽‍♂️" | "🚣‍♀️" | "🚣" | "🚣‍♂️" | "🧗‍♀️" | "🧗" | "🧗‍♂️" | "🚵‍♀️" | "🚵" | "🚵‍♂️" | "🚴‍♀️" | "🚴" | "🚴‍♂️" | "🏆" | "🥇" | "🥈" | "🥉" | "🏅" | "🎖" | "🏵" | "🎗" | "🎫" | "🎟" | "🎪" | "🤹" | "🤹‍♂️" | "🤹‍♀️" | "🎭" | "🎨" | "🎬" | "🎤" | "🎧" | "🎼" | "🎹" | "🥁" | "🪘" | "🎷" | "🎺" | "🪗" | "🎸" | "🪕" | "🎻" | "🎲" | "♟" | "🎯" | "🎳" | "🎮" | "🎰" | "🧩" | "🚗" | "🚕" | "🚙" | "🚌" | "🚎" | "🏎" | "🚓" | "🚑" | "🚒" | "🚐" | "🛻" | "🚚" | "🚛" | "🚜" | "🦯" | "🦽" | "🦼" | "🛴" | "🚲" | "🛵" | "🏍" | "🛺" | "🚨" | "🚔" | "🚍" | "🚘" | "🚖" | "🚡" | "🚠" | "🚟" | "🚃" | "🚋" | "🚞" | "🚝" | "🚄" | "🚅" | "🚈" | "🚂" | "🚆" | "🚇" | "🚊" | "🚉" | "✈️" | "🛫" | "🛬" | "🛩" | "💺" | "🛰" | "🚀" | "🛸" | "🚁" | "🛶" | "⛵️" | "🚤" | "🛥" | "🛳" | "⛴" | "🚢" | "⚓️" | "🪝" | "⛽️" | "🚧" | "🚦" | "🚥" | "🚏" | "🗺" | "🗿" | "🗽" | "🗼" | "🏰" | "🏯" | "🏟" | "🎡" | "🎢" | "🎠" | "⛲️" | "⛱" | "🏖" | "🏝" | "🏜" | "🌋" | "⛰" | "🏔" | "🗻" | "🏕" | "⛺️" | "🛖" | "🏠" | "🏡" | "🏘" | "🏚" | "🏗" | "🏭" | "🏢" | "🏬" | "🏣" | "🏤" | "🏥" | "🏦" | "🏨" | "🏪" | "🏫" | "🏩" | "💒" | "🏛" | "⛪️" | "🕌" | "🕍" | "🛕" | "🕋" | "⛩" | "🛤" | "🛣" | "🗾" | "🎑" | "🏞" | "🌅" | "🌄" | "🌠" | "🎇" | "🎆" | "🌇" | "🌆" | "🏙" | "🌃" | "🌌" | "🌉" | "🌁" | "⌚️" | "📱" | "📲" | "💻" | "⌨️" | "🖥" | "🖨" | "🖱" | "🖲" | "🕹" | "🗜" | "💽" | "💾" | "💿" | "📀" | "📼" | "📷" | "📸" | "📹" | "🎥" | "📽" | "🎞" | "📞" | "☎️" | "📟" | "📠" | "📺" | "📻" | "🎙" | "🎚" | "🎛" | "🧭" | "⏱" | "⏲" | "⏰" | "🕰" | "⌛️" | "⏳" | "📡" | "🔋" | "🔌" | "💡" | "🔦" | "🕯" | "🪔" | "🧯" | "🛢" | "💸" | "💵" | "💴" | "💶" | "💷" | "🪙" | "💰" | "💳" | "💎" | "⚖️" | "🪜" | "🧰" | "🪛" | "🔧" | "🔨" | "⚒" | "🛠" | "⛏" | "🪚" | "🔩" | "⚙️" | "🪤" | "🧱" | "⛓" | "🧲" | "🔫" | "💣" | "🧨" | "🪓" | "🔪" | "🗡" | "⚔️" | "🛡" | "🚬" | "⚰️" | "🪦" | "⚱️" | "🏺" | "🔮" | "📿" | "🧿" | "💈" | "⚗️" | "🔭" | "🔬" | "🕳" | "🩹" | "🩺" | "💊" | "💉" | "🧬" | "🦠" | "🧫" | "🧪" | "🌡" | "🧹" | "🪠" | "🧺" | "🧻" | "🚽" | "🚰" | "🚿" | "🛁" | "🛀" | "🧼" | "🪥" | "🪒" | "🧽" | "🪣" | "🧴" | "🛎" | "🔑" | "🗝" | "🚪" | "🪑" | "🛋" | "🛏" | "🧸" | "🪆" | "🖼" | "🪞" | "🪟" | "🛍" | "🛒" | "🎁" | "🎈" | "🎏" | "🎀" | "🪄" | "🪅" | "🎊" | "🎉" | "🎎" | "🏮" | "🎐" | "🧧" | "✉️" | "📩" | "📨" | "📧" | "💌" | "📥" | "📤" | "📦" | "🏷" | "🪧" | "📪" | "📫" | "📬" | "📭" | "📮" | "📯" | "📜" | "📃" | "📄" | "📑" | "🧾" | "📊" | "📈" | "📉" | "🗒" | "🗓" | "📆" | "📅" | "🗑" | "📇" | "🗃" | "🗳" | "🗄" | "📋" | "📁" | "📂" | "🗂" | "🗞" | "📰" | "📓" | "📔" | "📒" | "📕" | "📗" | "📘" | "📙" | "📚" | "📖" | "🔖" | "🧷" | "🔗" | "📎" | "🖇" | "📐" | "📏" | "🧮" | "📌" | "📍" | "✂️" | "🖊" | "🖋" | "✒️" | "🖌" | "🖍" | "📝" | "✏️" | "🔍" | "🔎" | "🔏" | "🔐" | "🔒" | "🔓" | "❤️" | "🧡" | "💛" | "💚" | "💙" | "💜" | "🖤" | "🤍" | "🤎" | "💔" | "❣️" | "💕" | "💞" | "💓" | "💗" | "💖" | "💘" | "💝" | "💟" | "☮️" | "✝️" | "☪️" | "🕉" | "☸️" | "✡️" | "🔯" | "🕎" | "☯️" | "☦️" | "🛐" | "⛎" | "♈️" | "♉️" | "♊️" | "♋️" | "♌️" | "♍️" | "♎️" | "♏️" | "♐️" | "♑️" | "♒️" | "♓️" | "🆔" | "⚛️" | "🉑" | "☢️" | "☣️" | "📴" | "📳" | "🈶" | "🈚️" | "🈸" | "🈺" | "🈷️" | "✴️" | "🆚" | "💮" | "🉐" | "㊙️" | "㊗️" | "🈴" | "🈵" | "🈹" | "🈲" | "🅰️" | "🅱️" | "🆎" | "🆑" | "🅾️" | "🆘" | "❌" | "⭕️" | "🛑" | "⛔️" | "📛" | "🚫" | "💯" | "💢" | "♨️" | "🚷" | "🚯" | "🚳" | "🚱" | "🔞" | "📵" | "🚭" | "❗️" | "❕" | "❓" | "❔" | "‼️" | "⁉️" | "🔅" | "🔆" | "〽️" | "⚠️" | "🚸" | "🔱" | "⚜️" | "🔰" | "♻️" | "✅" | "🈯️" | "💹" | "❇️" | "✳️" | "❎" | "🌐" | "💠" | "Ⓜ️" | "🌀" | "💤" | "🏧" | "🚾" | "♿️" | "🅿️" | "🛗" | "🈳" | "🈂️" | "🛂" | "🛃" | "🛄" | "🛅" | "🚹" | "🚺" | "🚼" | "⚧" | "🚻" | "🚮" | "🎦" | "📶" | "🈁" | "🔣" | "ℹ️" | "🔤" | "🔡" | "🔠" | "🆖" | "🆗" | "🆙" | "🆒" | "🆕" | "🆓" | "0️⃣" | "1️⃣" | "2️⃣" | "3️⃣" | "4️⃣" | "5️⃣" | "6️⃣" | "7️⃣" | "8️⃣" | "9️⃣" | "🔟" | "🔢" | "#️⃣" | "*️⃣" | "⏏️" | "▶️" | "⏸" | "⏯" | "⏹" | "⏺" | "⏭" | "⏮" | "⏩" | "⏪" | "⏫" | "⏬" | "◀️" | "🔼" | "🔽" | "➡️" | "⬅️" | "⬆️" | "⬇️" | "↗️" | "↘️" | "↙️" | "↖️" | "↕️" | "↔️" | "↪️" | "↩️" | "⤴️" | "⤵️" | "🔀" | "🔁" | "🔂" | "🔄" | "🔃" | "🎵" | "🎶" | "➕" | "➖" | "➗" | "✖️" | "♾" | "💲" | "💱" | "™️" | "©️" | "®️" | "〰️" | "➰" | "➿" | "🔚" | "🔙" | "🔛" | "🔝" | "🔜" | "✔️" | "☑️" | "🔘" | "🔴" | "🟠" | "🟡" | "🟢" | "🔵" | "🟣" | "⚫️" | "⚪️" | "🟤" | "🔺" | "🔻" | "🔸" | "🔹" | "🔶" | "🔷" | "🔳" | "🔲" | "▪️" | "▫️" | "◾️" | "◽️" | "◼️" | "◻️" | "🟥" | "🟧" | "🟨" | "🟩" | "🟦" | "🟪" | "⬛️" | "⬜️" | "🟫" | "🔈" | "🔇" | "🔉" | "🔊" | "🔔" | "🔕" | "📣" | "📢" | "👁‍🗨" | "💬" | "💭" | "🗯" | "♠️" | "♣️" | "♥️" | "♦️" | "🃏" | "🎴" | "🀄️" | "🕐" | "🕑" | "🕒" | "🕓" | "🕔" | "🕕" | "🕖" | "🕗" | "🕘" | "🕙" | "🕚" | "🕛" | "🕜" | "🕝" | "🕞" | "🕟" | "🕠" | "🕡" | "🕢" | "🕣" | "🕤" | "🕥" | "🕦" | "🕧" | "✢" | "✣" | "✤" | "✥" | "✦" | "✧" | "★" | "☆" | "✯" | "✡︎" | "✩" | "✪" | "✫" | "✬" | "✭" | "✮" | "✶" | "✷" | "✵" | "✸" | "✹" | "→" | "⇒" | "⟹" | "⇨" | "⇾" | "➾" | "⇢" | "☛" | "☞" | "➔" | "➜" | "➙" | "➛" | "➝" | "➞" | "♠︎" | "♣︎" | "♥︎" | "♦︎" | "♤" | "♧" | "♡" | "♢" | "♚" | "♛" | "♜" | "♝" | "♞" | "♔" | "♕" | "♖" | "♗" | "♘" | "♙" | "⚀" | "⚁" | "⚂" | "⚃" | "⚄" | "⚅" | "🂠" | "⚈" | "⚉" | "⚆" | "⚇" | "𓀀" | "𓀁" | "𓀂" | "𓀃" | "𓀄" | "𓀅" | "𓀆" | "𓀇" | "𓀈" | "𓀉" | "𓀊" | "𓀋" | "𓀌" | "𓀍" | "𓀎" | "𓀏" | "𓀐" | "𓀑" | "𓀒" | "𓀓" | "𓀔" | "𓀕" | "𓀖" | "𓀗" | "𓀘" | "𓀙" | "𓀚" | "𓀛" | "𓀜" | "𓀝" | "🏳️" | "🏴" | "🏁" | "🚩" | "🏳️‍🌈" | "🏳️‍⚧️" | "🏴‍☠️" | "🇦🇫" | "🇦🇽" | "🇦🇱" | "🇩🇿" | "🇦🇸" | "🇦🇩" | "🇦🇴" | "🇦🇮" | "🇦🇶" | "🇦🇬" | "🇦🇷" | "🇦🇲" | "🇦🇼" | "🇦🇺" | "🇦🇹" | "🇦🇿" | "🇧🇸" | "🇧🇭" | "🇧🇩" | "🇧🇧" | "🇧🇾" | "🇧🇪" | "🇧🇿" | "🇧🇯" | "🇧🇲" | "🇧🇹" | "🇧🇴" | "🇧🇦" | "🇧🇼" | "🇧🇷" | "🇮🇴" | "🇻🇬" | "🇧🇳" | "🇧🇬" | "🇧🇫" | "🇧🇮" | "🇰🇭" | "🇨🇲" | "🇨🇦" | "🇮🇨" | "🇨🇻" | "🇧🇶" | "🇰🇾" | "🇨🇫" | "🇹🇩" | "🇨🇱" | "🇨🇳" | "🇨🇽" | "🇨🇨" | "🇨🇴" | "🇰🇲" | "🇨🇬" | "🇨🇩" | "🇨🇰" | "🇨🇷" | "🇨🇮" | "🇭🇷" | "🇨🇺" | "🇨🇼" | "🇨🇾" | "🇨🇿" | "🇩🇰" | "🇩🇯" | "🇩🇲" | "🇩🇴" | "🇪🇨" | "🇪🇬" | "🇸🇻" | "🇬🇶" | "🇪🇷" | "🇪🇪" | "🇪🇹" | "🇪🇺" | "🇫🇰" | "🇫🇴" | "🇫🇯" | "🇫🇮" | "🇫🇷" | "🇬🇫" | "🇵🇫" | "🇹🇫" | "🇬🇦" | "🇬🇲" | "🇬🇪" | "🇩🇪" | "🇬🇭" | "🇬🇮" | "🇬🇷" | "🇬🇱" | "🇬🇩" | "🇬🇵" | "🇬🇺" | "🇬🇹" | "🇬🇬" | "🇬🇳" | "🇬🇼" | "🇬🇾" | "🇭🇹" | "🇭🇳" | "🇭🇰" | "🇭🇺" | "🇮🇸" | "🇮🇳" | "🇮🇩" | "🇮🇷" | "🇮🇶" | "🇮🇪" | "🇮🇲" | "🇮🇱" | "🇮🇹" | "🇯🇲" | "🇯🇵" | "🎌" | "🇯🇪" | "🇯🇴" | "🇰🇿" | "🇰🇪" | "🇰🇮" | "🇽🇰" | "🇰🇼" | "🇰🇬" | "🇱🇦" | "🇱🇻" | "🇱🇧" | "🇱🇸" | "🇱🇷" | "🇱🇾" | "🇱🇮" | "🇱🇹" | "🇱🇺" | "🇲🇴" | "🇲🇰" | "🇲🇬" | "🇲🇼" | "🇲🇾" | "🇲🇻" | "🇲🇱" | "🇲🇹" | "🇲🇭" | "🇲🇶" | "🇲🇷" | "🇲🇺" | "🇾🇹" | "🇲🇽" | "🇫🇲" | "🇲🇩" | "🇲🇨" | "🇲🇳" | "🇲🇪" | "🇲🇸" | "🇲🇦" | "🇲🇿" | "🇲🇲" | "🇳🇦" | "🇳🇷" | "🇳🇵" | "🇳🇱" | "🇳🇨" | "🇳🇿" | "🇳🇮" | "🇳🇪" | "🇳🇬" | "🇳🇺" | "🇳🇫" | "🇰🇵" | "🇲🇵" | "🇳🇴" | "🇴🇲" | "🇵🇰" | "🇵🇼" | "🇵🇸" | "🇵🇦" | "🇵🇬" | "🇵🇾" | "🇵🇪" | "🇵🇭" | "🇵🇳" | "🇵🇱" | "🇵🇹" | "🇵🇷" | "🇶🇦" | "🇷🇪" | "🇷🇴" | "🇷🇺" | "🇷🇼" | "🇼🇸" | "🇸🇲" | "🇸🇦" | "🇸🇳" | "🇷🇸" | "🇸🇨" | "🇸🇱" | "🇸🇬" | "🇸🇽" | "🇸🇰" | "🇸🇮" | "🇬🇸" | "🇸🇧" | "🇸🇴" | "🇿🇦" | "🇰🇷" | "🇸🇸" | "🇪🇸" | "🇱🇰" | "🇧🇱" | "🇸🇭" | "🇰🇳" | "🇱🇨" | "🇵🇲" | "🇻🇨" | "🇸🇩" | "🇸🇷" | "🇸🇿" | "🇸🇪" | "🇨🇭" | "🇸🇾" | "🇹🇼" | "🇹🇯" | "🇹🇿" | "🇹🇭" | "🇹🇱" | "🇹🇬" | "🇹🇰" | "🇹🇴" | "🇹🇹" | "🇹🇳" | "🇹🇷" | "🇹🇲" | "🇹🇨" | "🇹🇻" | "🇻🇮" | "🇺🇬" | "🇺🇦" | "🇦🇪" | "🇬🇧" | "🏴󠁧󠁢󠁥󠁮󠁧󠁿" | "🏴󠁧󠁢󠁳󠁣󠁴󠁿" | "🏴󠁧󠁢󠁷󠁬󠁳󠁿" | "🇺🇳" | "🇺🇸" | "🇺🇾" | "🇺🇿" | "🇻🇺" | "🇻🇦" | "🇻🇪" | "🇻🇳" | "🇼🇫" | "🇪🇭" | "🇾🇪" | "🇿🇲" | "🇿🇼" | "🦭" | "😮‍💨" | "😵‍💫" | "😶‍🌫️" | "❤️‍🔥" | "❤️‍🩹" | "🧔‍♀️" | "🧔🏻‍♀️" | "🧔🏼‍♀️" | "🧔🏽‍♀️" | "🧔🏾‍♀️" | "🧔🏿‍♀️" | "🧔‍♂️" | "🧔🏻‍♂️" | "🧔🏼‍♂️" | "🧔🏽‍♂️" | "🧔🏾‍♂️" | "🧔🏿‍♂️" | "💑🏻" | "💑🏼" | "💑🏽" | "💑🏾" | "💑🏿" | "💏🏻" | "💏🏼" | "💏🏽" | "💏🏾" | "💏🏿" | "👨🏻‍❤️‍👨🏻" | "👨🏻‍❤️‍👨🏼" | "👨🏻‍❤️‍👨🏽" | "👨🏻‍❤️‍👨🏾" | "👨🏻‍❤️‍👨🏿" | "👨🏼‍❤️‍👨🏻" | "👨🏼‍❤️‍👨🏼" | "👨🏼‍❤️‍👨🏽" | "👨🏼‍❤️‍👨🏾" | "👨🏼‍❤️‍👨🏿" | "👨🏽‍❤️‍👨🏻" | "👨🏽‍❤️‍👨🏼" | "👨🏽‍❤️‍👨🏽" | "👨🏽‍❤️‍👨🏾" | "👨🏽‍❤️‍👨🏿" | "👨🏾‍❤️‍👨🏻" | "👨🏾‍❤️‍👨🏼" | "👨🏾‍❤️‍👨🏽" | "👨🏾‍❤️‍👨🏾" | "👨🏾‍❤️‍👨🏿" | "👨🏿‍❤️‍👨🏻" | "👨🏿‍❤️‍👨🏼" | "👨🏿‍❤️‍👨🏽" | "👨🏿‍❤️‍👨🏾" | "👨🏿‍❤️‍👨🏿" | "👩🏻‍❤️‍👨🏻" | "👩🏻‍❤️‍👨🏼" | "👩🏻‍❤️‍👨🏽" | "👩🏻‍❤️‍👨🏾" | "👩🏻‍❤️‍👨🏿" | "👩🏻‍❤️‍👩🏻" | "👩🏻‍❤️‍👩🏼" | "👩🏻‍❤️‍👩🏽" | "👩🏻‍❤️‍👩🏾" | "👩🏻‍❤️‍👩🏿" | "👩🏼‍❤️‍👨🏻" | "👩🏼‍❤️‍👨🏼" | "👩🏼‍❤️‍👨🏽" | "👩🏼‍❤️‍👨🏾" | "👩🏼‍❤️‍👨🏿" | "👩🏼‍❤️‍👩🏻" | "👩🏼‍❤️‍👩🏼" | "👩🏼‍❤️‍👩🏽" | "👩🏼‍❤️‍👩🏾" | "👩🏼‍❤️‍👩🏿" | "👩🏽‍❤️‍👨🏻" | "👩🏽‍❤️‍👨🏼" | "👩🏽‍❤️‍👨🏽" | "👩🏽‍❤️‍👨🏾" | "👩🏽‍❤️‍👨🏿" | "👩🏽‍❤️‍👩🏻" | "👩🏽‍❤️‍👩🏼" | "👩🏽‍❤️‍👩🏽" | "👩🏽‍❤️‍👩🏾" | "👩🏽‍❤️‍👩🏿" | "👩🏾‍❤️‍👨🏻" | "👩🏾‍❤️‍👨🏼" | "👩🏾‍❤️‍👨🏽" | "👩🏾‍❤️‍👨🏾" | "👩🏾‍❤️‍👨🏿" | "👩🏾‍❤️‍👩🏻" | "👩🏾‍❤️‍👩🏼" | "👩🏾‍❤️‍👩🏽" | "👩🏾‍❤️‍👩🏾" | "👩🏾‍❤️‍👩🏿" | "👩🏿‍❤️‍👨🏻" | "👩🏿‍❤️‍👨🏼" | "👩🏿‍❤️‍👨🏽" | "👩🏿‍❤️‍👨🏾" | "👩🏿‍❤️‍👨🏿" | "👩🏿‍❤️‍👩🏻" | "👩🏿‍❤️‍👩🏼" | "👩🏿‍❤️‍👩🏽" | "👩🏿‍❤️‍👩🏾" | "👩🏿‍❤️‍👩🏿" | "🧑🏻‍❤️‍🧑🏼" | "🧑🏻‍❤️‍🧑🏽" | "🧑🏻‍❤️‍🧑🏾" | "🧑🏻‍❤️‍🧑🏿" | "🧑🏼‍❤️‍🧑🏻" | "🧑🏼‍❤️‍🧑🏽" | "🧑🏼‍❤️‍🧑🏾" | "🧑🏼‍❤️‍🧑🏿" | "🧑🏽‍❤️‍🧑🏻" | "🧑🏽‍❤️‍🧑🏼" | "🧑🏽‍❤️‍🧑🏾" | "🧑🏽‍❤️‍🧑🏿" | "🧑🏾‍❤️‍🧑🏻" | "🧑🏾‍❤️‍🧑🏼" | "🧑🏾‍❤️‍🧑🏽" | "🧑🏾‍❤️‍🧑🏿" | "🧑🏿‍❤️‍🧑🏻" | "🧑🏿‍❤️‍🧑🏼" | "🧑🏿‍❤️‍🧑🏽" | "🧑🏿‍❤️‍🧑🏾" | "👨🏻‍❤️‍💋‍👨🏻" | "👨🏻‍❤️‍💋‍👨🏼" | "👨🏻‍❤️‍💋‍👨🏽" | "👨🏻‍❤️‍💋‍👨🏾" | "👨🏻‍❤️‍💋‍👨🏿" | "👨🏼‍❤️‍💋‍👨🏻" | "👨🏼‍❤️‍💋‍👨🏼" | "👨🏼‍❤️‍💋‍👨🏽" | "👨🏼‍❤️‍💋‍👨🏾" | "👨🏼‍❤️‍💋‍👨🏿" | "👨🏽‍❤️‍💋‍👨🏻" | "👨🏽‍❤️‍💋‍👨🏼" | "👨🏽‍❤️‍💋‍👨🏽" | "👨🏽‍❤️‍💋‍👨🏾" | "👨🏽‍❤️‍💋‍👨🏿" | "👨🏾‍❤️‍💋‍👨🏻" | "👨🏾‍❤️‍💋‍👨🏼" | "👨🏾‍❤️‍💋‍👨🏽" | "👨🏾‍❤️‍💋‍👨🏾" | "👨🏾‍❤️‍💋‍👨🏿" | "👨🏿‍❤️‍💋‍👨🏻" | "👨🏿‍❤️‍💋‍👨🏼" | "👨🏿‍❤️‍💋‍👨🏽" | "👨🏿‍❤️‍💋‍👨🏾" | "👨🏿‍❤️‍💋‍👨🏿" | "👩🏻‍❤️‍💋‍👨🏻" | "👩🏻‍❤️‍💋‍👨🏼" | "👩🏻‍❤️‍💋‍👨🏽" | "👩🏻‍❤️‍💋‍👨🏾" | "👩🏻‍❤️‍💋‍👨🏿" | "👩🏻‍❤️‍💋‍👩🏻" | "👩🏻‍❤️‍💋‍👩🏼" | "👩🏻‍❤️‍💋‍👩🏽" | "👩🏻‍❤️‍💋‍👩🏾" | "👩🏻‍❤️‍💋‍👩🏿" | "👩🏼‍❤️‍💋‍👨🏻" | "👩🏼‍❤️‍💋‍👨🏼" | "👩🏼‍❤️‍💋‍👨🏽" | "👩🏼‍❤️‍💋‍👨🏾" | "👩🏼‍❤️‍💋‍👨🏿" | "👩🏼‍❤️‍💋‍👩🏻" | "👩🏼‍❤️‍💋‍👩🏼" | "👩🏼‍❤️‍💋‍👩🏽" | "👩🏼‍❤️‍💋‍👩🏾" | "👩🏼‍❤️‍💋‍👩🏿" | "👩🏽‍❤️‍💋‍👨🏻" | "👩🏽‍❤️‍💋‍👨🏼" | "👩🏽‍❤️‍💋‍👨🏽" | "👩🏽‍❤️‍💋‍👨🏾" | "👩🏽‍❤️‍💋‍👨🏿" | "👩🏽‍❤️‍💋‍👩🏻" | "👩🏽‍❤️‍💋‍👩🏼" | "👩🏽‍❤️‍💋‍👩🏽" | "👩🏽‍❤️‍💋‍👩🏾" | "👩🏽‍❤️‍💋‍👩🏿" | "👩🏾‍❤️‍💋‍👨🏻" | "👩🏾‍❤️‍💋‍👨🏼" | "👩🏾‍❤️‍💋‍👨🏽" | "👩🏾‍❤️‍💋‍👨🏾" | "👩🏾‍❤️‍💋‍👨🏿" | "👩🏾‍❤️‍💋‍👩🏻" | "👩🏾‍❤️‍💋‍👩🏼" | "👩🏾‍❤️‍💋‍👩🏽" | "👩🏾‍❤️‍💋‍👩🏾" | "👩🏾‍❤️‍💋‍👩🏿" | "👩🏿‍❤️‍💋‍👨🏻" | "👩🏿‍❤️‍💋‍👨🏼" | "👩🏿‍❤️‍💋‍👨🏽" | "👩🏿‍❤️‍💋‍👨🏾" | "👩🏿‍❤️‍💋‍👨🏿" | "👩🏿‍❤️‍💋‍👩🏻" | "👩🏿‍❤️‍💋‍👩🏼" | "👩🏿‍❤️‍💋‍👩🏽" | "👩🏿‍❤️‍💋‍👩🏾" | "👩🏿‍❤️‍💋‍👩🏿" | "🧑🏻‍❤️‍💋‍🧑🏼" | "🧑🏻‍❤️‍💋‍🧑🏽" | "🧑🏻‍❤️‍💋‍🧑🏾" | "🧑🏻‍❤️‍💋‍🧑🏿" | "🧑🏼‍❤️‍💋‍🧑🏻" | "🧑🏼‍❤️‍💋‍🧑🏽" | "🧑🏼‍❤️‍💋‍🧑🏾" | "🧑🏼‍❤️‍💋‍🧑🏿" | "🧑🏽‍❤️‍💋‍🧑🏻" | "🧑🏽‍❤️‍💋‍🧑🏼" | "🧑🏽‍❤️‍💋‍🧑🏾" | "🧑🏽‍❤️‍💋‍🧑🏿" | "🧑🏾‍❤️‍💋‍🧑🏻" | "🧑🏾‍❤️‍💋‍🧑🏼" | "🧑🏾‍❤️‍💋‍🧑🏽" | "🧑🏾‍❤️‍💋‍🧑🏿" | "🧑🏿‍❤️‍💋‍🧑🏻" | "🧑🏿‍❤️‍💋‍🧑🏼" | "🧑🏿‍❤️‍💋‍🧑🏽" | "🧑🏿‍❤️‍💋‍🧑🏾"';
10
+ /**
11
+ * Note: [💞] Ignore a discrepancy between file name and entity name
12
+ */
@@ -306,7 +306,7 @@ export type string_pipeline_url = string;
306
306
  *
307
307
  * For example `"https://promptbook.studio/webgpt/write-website-content-cs.book.md#keywords"`
308
308
  */
309
- export type string_pipeline_url_with_hashtemplate = string;
309
+ export type string_pipeline_url_with_task_hash = string;
310
310
  /**
311
311
  * Semantic helper
312
312
  *
@@ -602,4 +602,5 @@ export type number_terabytes = number_positive;
602
602
  * TODO: [main] !!! Change "For example" to @example
603
603
  * TODO: !! Change to branded types
604
604
  * TODO: Delete type aliases that are not exported or used internally
605
+ * Note: [💞] Ignore a discrepancy between file name and entity name
605
606
  */
@@ -20,4 +20,5 @@ export declare const EMOJIS: Set<string_char_emoji>;
20
20
  /**
21
21
  * TODO: [💴] DRY - just one version of emojis.ts
22
22
  * TODO: Mirror from Collboard or some common package
23
+ * Note: [💞] Ignore a discrepancy between file name and entity name
23
24
  */
@@ -12,4 +12,5 @@ export declare const CHARACTERS_PER_STANDARD_LINE = 63;
12
12
  export declare const LINES_PER_STANDARD_PAGE = 44;
13
13
  /**
14
14
  * TODO: [🧠] Should be this `constants.ts` or `config.ts`?
15
+ * Note: [💞] Ignore a discrepancy between file name and entity name
15
16
  */
@@ -1,4 +1,4 @@
1
- import type { ExpectationAmount } from '../../types/PipelineJson/Expectations';
1
+ import type { ExpectationAmount } from '../../pipeline/PipelineJson/Expectations';
2
2
  /**
3
3
  * Counts number of characters in the text
4
4
  *
@@ -1,4 +1,4 @@
1
- import type { ExpectationAmount } from '../../types/PipelineJson/Expectations';
1
+ import type { ExpectationAmount } from '../../pipeline/PipelineJson/Expectations';
2
2
  /**
3
3
  * Counts number of lines in the text
4
4
  *
@@ -1,4 +1,4 @@
1
- import type { ExpectationAmount } from '../../types/PipelineJson/Expectations';
1
+ import type { ExpectationAmount } from '../../pipeline/PipelineJson/Expectations';
2
2
  /**
3
3
  * Counts number of pages in the text
4
4
  *
@@ -1,4 +1,4 @@
1
- import type { ExpectationAmount } from '../../types/PipelineJson/Expectations';
1
+ import type { ExpectationAmount } from '../../pipeline/PipelineJson/Expectations';
2
2
  /**
3
3
  * Counts number of paragraphs in the text
4
4
  *
@@ -1,4 +1,4 @@
1
- import type { ExpectationAmount } from '../../types/PipelineJson/Expectations';
1
+ import type { ExpectationAmount } from '../../pipeline/PipelineJson/Expectations';
2
2
  /**
3
3
  * Split text into sentences
4
4
  *
@@ -1,4 +1,4 @@
1
- import type { ExpectationAmount } from '../../types/PipelineJson/Expectations';
1
+ import type { ExpectationAmount } from '../../pipeline/PipelineJson/Expectations';
2
2
  /**
3
3
  * Counts number of words in the text
4
4
  *
@@ -1,5 +1,5 @@
1
- import type { ExpectationAmount } from '../../types/PipelineJson/Expectations';
2
- import type { ExpectationUnit } from '../../types/PipelineJson/Expectations';
1
+ import type { ExpectationAmount } from '../../pipeline/PipelineJson/Expectations';
2
+ import type { ExpectationUnit } from '../../pipeline/PipelineJson/Expectations';
3
3
  /**
4
4
  * Index of all counter functions
5
5
  *
@@ -8,4 +8,5 @@ import type { ExpectationUnit } from '../../types/PipelineJson/Expectations';
8
8
  export declare const CountUtils: Record<ExpectationUnit, (text: string) => ExpectationAmount>;
9
9
  /**
10
10
  * TODO: [🧠][🤠] This should be probbably as part of `TextFormatDefinition`
11
+ * Note: [💞] Ignore a discrepancy between file name and entity name
11
12
  */
@@ -16,3 +16,6 @@ export type string_kebab_case = string;
16
16
  * @public exported from `@promptbook/utils`
17
17
  */
18
18
  export declare function normalizeToKebabCase(text: string): string_kebab_case;
19
+ /**
20
+ * Note: [💞] Ignore a discrepancy between file name and entity name
21
+ */
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Organizational helper to better mark the place is used as but should not be
3
+ *
4
+ * @private within the repository
5
+ */
6
+ export type TODO_remove_as<T> = T;
@@ -1,9 +1,9 @@
1
1
  import type { string_parameter_name } from '../../types/typeAliases';
2
2
  import type { string_template } from '../../types/typeAliases';
3
3
  /**
4
- * Parses the template and returns the list of all parameter names
4
+ * Parses the task and returns the list of all parameter names
5
5
  *
6
- * @param template the template with parameters in {curly} braces
6
+ * @param template the string template with parameters in {curly} braces
7
7
  * @returns the list of parameter names
8
8
  * @public exported from `@promptbook/utils`
9
9
  */
@@ -1,4 +1,4 @@
1
- import type { PipelineJson } from '../../types/PipelineJson/PipelineJson';
1
+ import type { PipelineJson } from '../../pipeline/PipelineJson/PipelineJson';
2
2
  /**
3
3
  * @@@
4
4
  *
@@ -14,4 +14,5 @@ export declare const PROMPTBOOK_ENGINE_VERSION: string_promptbook_version;
14
14
  export type string_promptbook_version = string_semantic_version;
15
15
  /**
16
16
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
17
- */
17
+ * Note: [💞] Ignore a discrepancy between file name and entity name
18
+ */
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@promptbook/types",
3
- "version": "0.75.0-1",
4
- "description": "Supercharge your use of large language models",
3
+ "version": "0.75.0-4",
4
+ "description": "It's time for a paradigm shift. The future of software in plain English, French or Latin",
5
+ "--note-0": " <- [🐊]",
5
6
  "private": false,
6
7
  "sideEffects": false,
7
8
  "repository": {
@@ -11,7 +12,7 @@
11
12
  "contributors": [
12
13
  "Pavol Hejný <me@pavolhejny.com> (https://www.pavolhejny.com/)"
13
14
  ],
14
- "todo-0": "TODO: [❇️] Make better list of keywords",
15
+ "--todo-0": "TODO: [❇️] Make better list of keywords",
15
16
  "keywords": [
16
17
  "ai",
17
18
  "llm",
@@ -51,6 +52,6 @@
51
52
  ],
52
53
  "typings": "./esm/typings/src/_packages/types.index.d.ts",
53
54
  "peerDependencies": {
54
- "@promptbook/core": "0.75.0-1"
55
+ "@promptbook/core": "0.75.0-4"
55
56
  }
56
57
  }
@@ -1,11 +0,0 @@
1
- import type { TemplateType } from './TemplateTypes';
2
- /**
3
- * Parsed TEMPLATE command
4
- *
5
- * @see ./templateCommandParser.ts for more details
6
- * @private within the commands folder
7
- */
8
- export type TemplateCommand = {
9
- readonly type: 'TEMPLATE';
10
- readonly templateType: TemplateType;
11
- };
@@ -1,15 +0,0 @@
1
- import type { TupleToUnion } from 'type-fest';
2
- /**
3
- * Template type describes the way how the template is templated
4
- *
5
- * @see https://github.com/webgptorg/promptbook#template-type
6
- * @public exported from `@promptbook/core`
7
- */
8
- export type TemplateType = TupleToUnion<typeof TemplateTypes>;
9
- /**
10
- * Template type describes the way how the template is templated
11
- *
12
- * @see https://github.com/webgptorg/promptbook#template-type
13
- * @public exported from `@promptbook/core`
14
- */
15
- export declare const TemplateTypes: readonly ["PROMPT_TEMPLATE", "SIMPLE_TEMPLATE", "SCRIPT_TEMPLATE", "DIALOG_TEMPLATE", "EXAMPLE", "KNOWLEDGE", "INSTRUMENT", "ACTION"];
@@ -1,15 +0,0 @@
1
- import type { ReadonlyDeep } from 'type-fest';
2
- import type { TemplateJson } from '../../types/PipelineJson/TemplateJson';
3
- import type { string_parameter_name } from '../../types/typeAliases';
4
- /**
5
- * Parses the template and returns the set of all used parameters
6
- *
7
- * @param template the template with used parameters
8
- * @returns the set of parameter names
9
- * @throws {ParseError} if the script is invalid
10
- * @public exported from `@promptbook/utils`
11
- */
12
- export declare function extractParameterNamesFromTemplate(template: ReadonlyDeep<Pick<TemplateJson, 'title' | 'description' | 'templateType' | 'content' | 'preparedContent' | 'jokerParameterNames' | 'foreach'>>): Set<string_parameter_name>;
13
- /**
14
- * TODO: [🔣] If script require contentLanguage
15
- */
@@ -1,27 +0,0 @@
1
- import type { ReadonlyDeep } from 'type-fest';
2
- import type { PipelineJson } from '../../types/PipelineJson/PipelineJson';
3
- import type { TemplateJson } from '../../types/PipelineJson/TemplateJson';
4
- import type { string_markdown } from '../../types/typeAliases';
5
- import type { string_parameter_value } from '../../types/typeAliases';
6
- /**
7
- * @@@
8
- *
9
- * @private internal type of `getKnowledgeForTemplate`
10
- */
11
- type GetKnowledgeForTemplateOptions = {
12
- /**
13
- * @@@
14
- */
15
- readonly preparedPipeline: ReadonlyDeep<PipelineJson>;
16
- /**
17
- * @@@
18
- */
19
- readonly template: ReadonlyDeep<TemplateJson>;
20
- };
21
- /**
22
- * @@@
23
- *
24
- * @private internal utility of `createPipelineExecutor`
25
- */
26
- export declare function getKnowledgeForTemplate(options: GetKnowledgeForTemplateOptions): Promise<string_parameter_value & string_markdown>;
27
- export {};
@@ -1,30 +0,0 @@
1
- import type { ReadonlyDeep } from 'type-fest';
2
- import type { PipelineJson } from '../../types/PipelineJson/PipelineJson';
3
- import type { TemplateJson } from '../../types/PipelineJson/TemplateJson';
4
- import type { ReservedParameters } from '../../types/typeAliases';
5
- /**
6
- * @@@
7
- *
8
- * @private internal type of `getReservedParametersForTemplate`
9
- */
10
- type GetReservedParametersForTemplateOptions = {
11
- /**
12
- * @@@
13
- */
14
- readonly preparedPipeline: ReadonlyDeep<PipelineJson>;
15
- /**
16
- * @@@
17
- */
18
- readonly template: ReadonlyDeep<TemplateJson>;
19
- /**
20
- * @@@
21
- */
22
- readonly pipelineIdentification: string;
23
- };
24
- /**
25
- * @@@
26
- *
27
- * @private internal utility of `createPipelineExecutor`
28
- */
29
- export declare function getReservedParametersForTemplate(options: GetReservedParametersForTemplateOptions): Promise<Readonly<ReservedParameters>>;
30
- export {};
@@ -1,15 +0,0 @@
1
- /**
2
- * @@@
3
- *
4
- * @public exported from `@promptbook/core`
5
- */
6
- export declare const ChatFormfactorDefinition: {
7
- readonly name: "CHATBOT";
8
- readonly aliasNames: readonly ["CHAT"];
9
- readonly description: "@@@";
10
- readonly documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@";
11
- readonly pipelineInterface: {
12
- readonly inputParameterNames: readonly ["previousTitle", "previousConversationSummary", "userMessage"];
13
- readonly outputParameterNames: readonly ["title", "conversationSummary", "chatbotResponse"];
14
- };
15
- };
@@ -1,22 +0,0 @@
1
- import type { string_parameter_name } from '../../types/typeAliases';
2
- /**
3
- * @@@
4
- */
5
- export type PipelineInterface = {
6
- /**
7
- * @@@
8
- *
9
- * Note: Sorted alphabetically
10
- */
11
- readonly inputParameterNames: ReadonlyArray<string_parameter_name>;
12
- /**
13
- * @@@
14
- *
15
- * Note: Sorted alphabetically
16
- */
17
- readonly outputParameterNames: ReadonlyArray<string_parameter_name>;
18
- };
19
- /**
20
- * TODO: !!!!!! Change inputParameterNames to inputParameters<InputParameter>
21
- * TODO: [🧠] Better name than `PipelineInterface` to avoid confusion with typescript `interface`
22
- */