From 0f3d197cdea3fdb2783f7b145fe6e71bc672c2fd Mon Sep 17 00:00:00 2001 From: macchiati Date: Wed, 29 May 2024 13:51:33 -0700 Subject: [PATCH] CLDR-17582 Cleanup non-emoji annotations --- common/annotations/en.xml | 601 +++--- .../cldr/tool/CheckEmojiAnnotations.java | 10 +- .../java/org/unicode/cldr/util/Emoji.java | 12 +- .../org/unicode/cldr/tool/modify_config.txt | 1878 +++-------------- 4 files changed, 618 insertions(+), 1883 deletions(-) diff --git a/common/annotations/en.xml b/common/annotations/en.xml index 0fc6360b9b1..8a5e1aef4c9 100644 --- a/common/annotations/en.xml +++ b/common/annotations/en.xml @@ -16,7 +16,7 @@ annotations. - brace | bracket | curly brace | curly bracket | gullwing | open curly bracket + brace | bracket | curly | gullwing | open open curly bracket 1โ€“2 | light | skin | tone | type light skin tone @@ -30,7 +30,7 @@ annotations. dark skin tone overline | overstrike | vinculum overline - dash | line | low dash | low line | underdash | underline + dash | line | low | underdash | underline low line dash | hyphen | hyphen-minus | minus hyphen-minus @@ -40,9 +40,9 @@ annotations. en dash dash | em em dash - bar | dash | horizontal bar | line + bar | dash | horizontal | line horizontal bar - dots | interpunct | katakana | katakana middle dot | middot + dot | dots | interpunct | katakana | middle | middot katakana middle dot dotted line face @@ -988,7 +988,7 @@ annotations. crying cat animal | cat | face | pouting pouting cat - can't | embarrassed | evil | face | forbidden | forgot | gesture | hide | monkey | no | omg | prohibited | scared | secret | smh | watch + canโ€™t | embarrassed | evil | face | forbidden | forgot | gesture | hide | monkey | no | omg | prohibited | scared | secret | smh | watch see-no-evil monkey animal | ears | evil | face | forbidden | gesture | hear | listen | monkey | no | not | prohibited | secret | shh | tmi hear-no-evil monkey @@ -3506,7 +3506,7 @@ annotations. up-down arrow arrow | left-right left-right arrow - left right arrow stroke + arrow | left | right | stroke left right arrow stroke arrow | curving | left | right right arrow curving left @@ -3632,7 +3632,6 @@ annotations. vibration mode cell | mobile | off | phone | telephone mobile phone off - female | sign | woman female sign male | man | sign @@ -3883,7 +3882,7 @@ annotations. yen BRB | cruzeiro | currency cruzeiro - currency | franc | french franc + currency | franc | french french franc currency | lira lira @@ -3893,17 +3892,17 @@ annotations. won currency | EUR | euro euro - currency | german penny | pfennig + currency | german | penny | pfennig german penny peso peso ARA | austral | currency austral - currency | livre tournois + currency | livre | tournois livre tournois currency | spesmilo spesmilo - currency | indian rupee | rupee + currency | indian | rupee indian rupee currency | ruble ruble @@ -3919,7 +3918,7 @@ annotations. superscript two cubed | superscript | three superscript three - measure | micro sign + measure | micro | sign micro sign - \ No newline at end of file + diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/CheckEmojiAnnotations.java b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/CheckEmojiAnnotations.java index 6dad887169a..a49c0df9c67 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/CheckEmojiAnnotations.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/CheckEmojiAnnotations.java @@ -22,6 +22,8 @@ public class CheckEmojiAnnotations { private static final Joiner JOIN_BAR = Joiner.on(" | "); public static void main(String[] args) { + boolean chooseEmoji = true; // false to get the non-emoji + UnicodeSet rgi = Emoji.getAllRgi(); UnicodeSet rgiNoVariant = Emoji.getAllRgiNoES(); CLDRFile root = CLDRConfig.getInstance().getAnnotationsFactory().make("en", false); @@ -29,7 +31,7 @@ public static void main(String[] args) { for (String path : root) { XPathParts parts = XPathParts.getFrozenInstance(path); String cp = parts.getAttributeValue(-1, "cp"); - if (cp != null && rgiNoVariant.contains(cp)) { + if (cp != null && rgiNoVariant.contains(cp) == chooseEmoji) { rootEmoji.add(cp); } } @@ -83,7 +85,11 @@ public static void main(String[] args) { .freeze(); SimpleUnicodeSetFormatter suf = new SimpleUnicodeSetFormatter(null, toEscape); - allUnclean = allUnclean.retainAll(rgiNoVariant); + allUnclean = + allUnclean + .retainAll(rgiNoVariant) + .removeAll(Emoji.SKIN_MODIFIERS) + .removeAll(Emoji.HAIR_MODIFIERS); if (!allUnclean.isEmpty()) { throw new IllegalArgumentException("Missing " + suf.format(allUnclean)); } diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/util/Emoji.java b/tools/cldr-code/src/main/java/org/unicode/cldr/util/Emoji.java index e855317ad4c..dc07ebd1c75 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/util/Emoji.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/util/Emoji.java @@ -45,7 +45,8 @@ public class Emoji { public static final String COMBINING_ENCLOSING_KEYCAP = "\u20E3"; public static final String ZWJ = "\u200D"; public static final UnicodeSet REGIONAL_INDICATORS = new UnicodeSet(0x1F1E6, 0x1F1FF).freeze(); - public static final UnicodeSet MODIFIERS = new UnicodeSet("[๐Ÿป-๐Ÿฟ]").freeze(); + public static final UnicodeSet SKIN_MODIFIERS = new UnicodeSet("[๐Ÿป-๐Ÿฟ]").freeze(); + public static final UnicodeSet HAIR_MODIFIERS = new UnicodeSet("[๐Ÿฆฐ๐Ÿฆฑ๐Ÿฆณ๐Ÿฆฒ]").freeze(); public static final UnicodeSet TAGS = new UnicodeSet(0xE0000, 0xE007F).freeze(); public static final UnicodeSet FAMILY = new UnicodeSet("[\u200D ๐Ÿ‘ฆ-๐Ÿ‘ฉ ๐Ÿ’‹ โค]").freeze(); public static final UnicodeSet GENDER = new UnicodeSet().add(0x2640).add(0x2642).freeze(); @@ -57,7 +58,6 @@ public class Emoji { + "{โคโ€๐Ÿ”ฅ}, {โคโ€๐Ÿฉน}, {๐Ÿ˜ฎโ€๐Ÿ’จ}, {๐Ÿ˜ตโ€๐Ÿ’ซ}" // #E13.1 + "]") .freeze(); - public static final UnicodeSet SKIN_MODIIFERS = new UnicodeSet("[๐Ÿป-๐Ÿฟ]").freeze(); // May have to add from above, if there is a failure in testAnnotationPaths. Failure will be // like: // got java.util.TreeSet<[//ldml/annotations/annotation[@cp="๐Ÿณโ€โšง"][@type="tts"], @@ -198,7 +198,7 @@ public class Emoji { if (!original.equals(variantsRemoved)) { restoreVariants.put(variantsRemoved, original); } - if (!SKIN_MODIIFERS.containsSome(original)) { + if (!SKIN_MODIFIERS.containsSome(original)) { String neutral = NEUTER.transform(original); if (!neutral.equals(original)) { neutralAndGenderedToNeutral.put(original, neutral); @@ -240,7 +240,7 @@ public class Emoji { if (minimal.contains(COMBINING_ENCLOSING_KEYCAP) || REGIONAL_INDICATORS.containsSome(minimal) || TAGS.containsSome(minimal) - || !singleton && MODIFIERS.containsSome(minimal) + || !singleton && SKIN_MODIFIERS.containsSome(minimal) || !singleton && FAMILY.containsAll(minimal)) { // do nothing } else if (minimal.contains(ZWJ)) { // only do certain ZWJ sequences @@ -256,11 +256,11 @@ public class Emoji { } emojiToMajorCategory.freeze(); emojiToMinorCategory.freeze(); - nonConstructed.add(MODIFIERS); // needed for names + nonConstructed.add(SKIN_MODIFIERS); // needed for names nonConstructed.freeze(); toName.freeze(); allRgi.freeze(); - allRgiNoES.freeze(); + allRgiNoES.addAll(SKIN_MODIFIERS).addAll(HAIR_MODIFIERS).freeze(); // hack for (String s : new UnicodeSet( diff --git a/tools/cldr-code/src/main/resources/org/unicode/cldr/tool/modify_config.txt b/tools/cldr-code/src/main/resources/org/unicode/cldr/tool/modify_config.txt index 7881d007ce9..b957f93b2a9 100644 --- a/tools/cldr-code/src/main/resources/org/unicode/cldr/tool/modify_config.txt +++ b/tools/cldr-code/src/main/resources/org/unicode/cldr/tool/modify_config.txt @@ -1,1574 +1,304 @@ -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ญ"]; new_value=bae | best | friends | bestie | bff | bond | couple | friend | friendship | girls | hold | sis | sisters | women | twins | love | dating -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜"]; new_value=awkward | blank | deadpan | expressionless | face | fine | jealous | meh | neutral | shade | straight | uh | oh | unamused | unhappy | unimpressed | whatever -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜‘"]; new_value=awkward | bad | dead | expressionless | face | fine | not | impressed | inexpressive | jealous | meh | omg | straight | uh | oh | unhappy | unimpressed | whatever -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜Ž"]; new_value=awesome | beach | bright | bro | chillin | cool | face | rad | relaxed | shades | slay | smile | style | sunglasses | swag | win -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฌ"]; new_value=bae | bond | boys | brothers | bff | couple | dating | friend | friendship | hand | hold | love | men | twins -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคฃ"]; new_value=crying | face | floor | funny | haha | happy | hehe | hilarious | joy | laugh | lmao | lol | rofl | roflmao | rolling | tear -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜‚"]; new_value=crying | face | feels | funny | haha | happy | hehe | hilarious | joy | laugh | lmao | lol | rofl | roflmao | tear -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜˜"]; new_value=adorbs | bae | blowing | face | flirt | heart | I | love | you | ily | kiss | lover | miss | morning | muah | romantic | smooch | xoxo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜"]; new_value=boss | dapper | face | flirt | homie | kidding | leer | shade | slick | sly | smirk | smug | snicker | suave | suspicious | swag -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™ˆ"]; new_value=embarrassed | evil | face | forbidden | forgot | gesture | hide | monkey | no | omg | prohibited | scared | secret | see-no-evil | smh | cant | watch -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ฏ"]; new_value=100 | a+ | agree | clearly | definitely | faithful | fleek | full | hundred | keep | perfect | point | score | truth | yup | TRUE -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ช"]; new_value=arm | beast | bench | biceps | bodybuilder | bro | curls | flex | gains | gym | jacked | muscle | press | ripped | strong | weightlift -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ณ"]; new_value=amazed | awkward | crazy | dazed | dead | disbelief | embarrassed | face | flushed | geez | heat | hot | impressed | jeez | what | wow -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅน"]; new_value=admiration | aww | cry | embarrassed | face | feelings | grateful | gratitude | holding | back | tears | joy | please | proud | resist | sad | tears -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘"]; new_value=applause | approval | awesome | clap | congrats | congratulations | done | excited | good | job | great | hand | homie | nice | prayed | well | yay -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™"]; new_value=appreciate | ask | beg | blessed | bow | cmon | five | folded | gesture | hand | high | five | please | pray | thanks | thx -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‹โ€๐ŸŸฉ"]; new_value=acidity | citrus | cocktail | fruit | garnish | key | lime | lime | margarita | mojito | refreshing | salsa | sour | tangy | tequila | tropical | zest -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ญ"]; new_value=balloon | bubble | cartoon | cloud | comic | daydream | decisions | dream | idea | invent | invention | realize | think | thoughts | wonder -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘‹"]; new_value=bye | cya | g2g | greetings | gtg | hand | hello | hey | hi | later | outtie | you | there? | ttfn | ttyl | wave | yo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™‹"]; new_value=gesture | hand | happy | here | I | can | help | I | know | me | over | here | person | pick | question | raised | raising | right -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜"]; new_value=143 | bae | eye | face | feels | heart-eyes | hearts | ily | kisses | love | romance | romantic | smile | xoxo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜œ"]; new_value=crazy | epic | eye | face | funny | joke | loopy | nutty | party | stuck-out | tongue | wacky | weirdo | wink | winking | yolo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซข"]; new_value=amazement | awe | disbelief | embarrass | eyes | face | gasp | hand | mouth | omg | open | hand | over | mouth | quiet | scared | shock | surprise -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ฎ"]; new_value=face | forgot | I | don't | believe | you | mouth | omg | open | shocked | surprised | sympathy | unbelievable | unreal | whoa | woah | wow -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆโ€๐Ÿ”ฅ"]; new_value=ascend | ascension | emerge | fantasy | firebird | glory | immortal | phoenix | rebirth | reincarnation | reinvent | renewal | revival | revive | rise | transform -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ„โ€๐ŸŸซ"]; new_value=food | fungi | fungus | mushroom | nature | pizza | portobello | shiitake | shroom | spore | sprout | toppings | truffle | vegetable | vegetarian | veggie -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒˆ"]; new_value=gay | genderqueer | glbt | glbtq | lesbian | lgbt | lgbtq | lgbtqia | nature | pride | queer | rain | rainbow | trans | transgender | weather -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜†"]; new_value=closed | eyes | face | grinning | haha | hahaha | happy | laugh | lol | mouth | open | rofl | satisfied | smile | smiling | squinting -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜‡"]; new_value=angel | angelic | angels | blessed | face | fairy | fairytale | fantasy | halo | happy | innocent | peaceful | smile | smiling | spirit | tale -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜š"]; new_value=143 | bae | blush | closed | date | dating | eye | eyes | face | flirt | ily | kisses | kissing | smooches | xoxo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜™"]; new_value=143 | closed | date | dating | eye | eyes | face | flirt | ily | kiss | kisses | kissing | love | night | smile | smiling -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜’"]; new_value=... | bored | coolstorybro | face | fine | jealous | jel | jelly | pissed | smh | ugh | uhh | unamused | unhappy | weird | whatever -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ฉ"]; new_value=bs | comic | doo | dung | face | fml | monster | pile | poo | poop | smelly | smh | stink | stinks | stinky | turd -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™‰"]; new_value=animal | ears | evil | face | forbidden | gesture | hear | hear-no-evil | listen | monkey | no | not | prohibited | secret | shh | tmi -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘Œ"]; new_value=awesome | bet | dope | fleek | fosho | got | gotcha | hand | legit | OK | okay | pinch | rad | sure | sweet | three -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘Š"]; new_value=absolutely | agree | boom | bro | bruh | bump | clenched | correct | fist | hand | knuckle | oncoming | pound | punch | rock | ttyl -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’"]; new_value=fetch | flick | flip | gossip | hair | hand | help | information | person | sarcasm | sarcastic | sassy | seriously | tipping | whatever | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฏ"]; new_value=bestie | bff | bunny | counterpart | dancer | double | ear | ears | identical | pair | party | partying | people | soulmate | twin | twinsies -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿด"]; new_value=breakfast | breaky | cooking | cutlery | delicious | dinner | eat | feed | food | fork | hungry | knife | lunch | restaurant | yum | yummy -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ฐ"]; new_value=bag | bank | bet | billion | cash | cost | dollar | gold | million | money | moneybag | paid | paying | pot | rich | win -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜‹"]; new_value=delicious | eat | face | food | full | hungry | savoring | savour | savouring | smile | smiling | tasty | um | yum | yummy -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ด"]; new_value=bed | bedtime | face | good | goodnight | nap | night | sleep | sleeping | tired | whatever | yawn | zzz -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซค"]; new_value=confused | confusion | diagonal | disappointed | doubt | doubtful | face | frustrated | frustration | meh | mouth | skeptical | unsure | whatever | wtv -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅฑ"]; new_value=bedtime | bored | face | goodnight | nap | night | sleep | sleepy | tired | whatever | yawn | yawning | zzz -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘พ"]; new_value=alien | creature | extraterrestrial | face | fairy | fairytale | fantasy | game | gamer | games | monster | pixellated | space | tale | ufo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™Š"]; new_value=animal | evil | face | forbidden | gesture | monkey | no | not | oops | prohibited | quiet | secret | speak | speak-no-evil | stealth -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซท"]; new_value=block | five | halt | hand | high | hold | leftward | leftwards | pause | push | pushing | refuse | slap | stop | wait -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซธ"]; new_value=block | five | halt | hand | high | hold | pause | push | pushing | refuse | rightward | rightwards | slap | stop | wait -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชผ"]; new_value=animal | aquarium | burn | invertebrate | jelly | jellyfish | life | marine | ocean | ouch | plankton | sea | sting | stinger | tentacles -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿณโ€๐ŸŒˆ"]; new_value=bisexual | flag | gay | genderqueer | glbt | glbtq | lesbian | lgbt | lgbtq | lgbtqia | pride | queer | rainbow | trans | transgender -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜—"]; new_value=143 | date | dating | face | flirt | ily | kiss | kisses | kissing | love | smooch | smooches | xoxo | you -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคจ"]; new_value=disapproval | disbelief | distrust | emoji | eyebrow | face | hmm | mild | raised | scepticism | skeptic | skeptical | surprise | what -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ถ"]; new_value=awkward | blank | cant | even | expressionless | face | mouth | mouthless | mute | quiet | secret | silence | silent | speechlessout -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ฎโ€๐Ÿ’จ"]; new_value=blow | blowing | exhale | exhaling | exhausted | face | gasp | groan | relief | sigh | smiley | smoke | whisper | whistle -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ค"]; new_value=anger | angry | face | feels | fume | fuming | furious | fury | mad | nose | steam | triumph | unhappy | won -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฟ"]; new_value=angry | demon | devil | evil | face | fairy | fairytale | fantasy | horns | imp | mischievous | purple | shade | tale -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ป"]; new_value=boo | creature | excited | face | fairy | fairytale | fantasy | ghost | halloween | haunting | monster | scary | silly | tale -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซฆ"]; new_value=anxious | bite | biting | fear | flirt | flirting | kiss | lip | lipstick | nervous | sexy | uncomfortable | worried | worry -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™"]; new_value=annoyed | disappoint | disgruntled | disturbed | frown | frowning | frustrated | gesture | happy | irritated | not | person | upset | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™…"]; new_value=chance | exclude | forbidden | gesture | gesturing | hand | no | NO | nope | not | person | prohibit | prohibited | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’โ€โ™‚"]; new_value=fetch | flick | flip | gossip | hair | hand | help | information | man | sarcasm | sarcastic | sassy | tipping | whatever -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคฆ"]; new_value=again | disbelief | exasperation | face | facepalm | facepalming | no | not | oh | omg | palm | person | shock | smh -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคท"]; new_value=doubt | dunno | I | guess | idk | ignorance | indifference | knows | maybe | person | shrug | shrugging | whatever | who -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคทโ€โ™‚"]; new_value=doubt | dunno | I | guess | idk | ignorance | indifference | knows | man | maybe | shrug | shrugging | whatever | who -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคทโ€โ™€"]; new_value=doubt | dunno | I | guess | idk | ignorance | indifference | knows | maybe | shrug | shrugging | whatever | who | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’†"]; new_value=face | getting | headache | massage | person | relax | relaxing | salon | soothe | spa | tension | therapy | treatment | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’‡"]; new_value=barber | beauty | chop | cosmetology | cut | getting | groom | hair | haircut | parlor | person | shears | style | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง˜"]; new_value=cross | crossed | legged | legs | lotus | meditation | peace | person | position | relax | serenity | yoga | yogi | zen -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ซ"]; new_value=bae | couple | dating | flirt | friend | friends | hand | hands | hold | holding | love | man | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’"]; new_value=anniversary | babe | bae | couple | date | dating | heart | kiss | love | mwah | person | romance | together | xoxo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชป"]; new_value=bloom | bluebonnet | flower | hyacinth | indigo | lavender | lilac | lupine | plant | purple | shrub | snapdragon | spring | violet -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿน"]; new_value=alcohol | bar | booze | club | cocktail | drink | drinking | drinks | drunk | mai | party | tai | tropical | tropics -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿบ"]; new_value=alcohol | ale | bar | beer | booze | drink | drinking | drinks | mug | octoberfest | oktoberfest | pint | stein | summer -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ƒ"]; new_value=awesome | big | eyes | face | grin | grinning | happy | mouth | open | smile | smiling | teeth | yay -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜…"]; new_value=cold | dejected | excited | face | grinning | mouth | nervous | open | smile | smiling | stress | stressed | sweat -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซ "]; new_value=disappear | dissolve | embarrassed | face | haha | heat | hot | liquid | lol | melt | melting | sarcasm | sarcastic -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅฐ"]; new_value=3 | adore | crush | face | heart | hearts | I | love | you | ily | love | romance | smile | smiling -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅฒ"]; new_value=face | glad | grateful | happy | joy | pain | proud | relieved | smile | smiley | smiling | tear | touched -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜"]; new_value=closed | eye | eyes | face | gross | horrible | omg | squinting | stuck-out | taste | tongue | whatever | yolo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅธ"]; new_value=disguise | disguised | eyebrow | face | glasses | incognito | moustache | mustache | nose | person | spy | tache | tash -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ก"]; new_value=anger | angry | enraged | face | feels | mad | maddening | pouting | rage | red | shade | unhappy | upset -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ˆ"]; new_value=devil | evil | face | fairy | fairytale | fantasy | horns | purple | shade | smile | smiling | tale | demon -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’•"]; new_value=143 | anniversary | date | dating | emotion | heart | hearts | ily | kisses | love | loving | two | xoxo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฉต"]; new_value=143 | blue | cute | cyan | emotion | heart | ily | light | like | love | sky | special | teal -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸคŒ"]; new_value=fingers | gesture | hand | hold | huh | interrogation | patience | pinched | relax | sarcastic | ugh | what | zip -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™‡"]; new_value=apology | beg | bow | bowing | forgive | gesture | man | meditate | meditation | person | pity | regret | sorry -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคฆโ€โ™€"]; new_value=again | bewilder | disbelief | exasperation | facepalm | facepalming | no | not | oh | omg | shock | smh | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ท"]; new_value=build | construction | fix | hardhat | hat | helmet | man | person | rebuild | remodel | repair | work | worker -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฉโ€๐Ÿผ"]; new_value=baby | feed | feeding | love | mam | mammy | mom | mother | nanny | newborn | nursing | person | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšถ"]; new_value=amble | gait | hike | man | pace | pedestrian | person | saunter | stride | stroll | swagger | walk | walking -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿƒ"]; new_value=coming | fast | hurry | man | marathon | move | person | quick | race | runner | running | rush | speed -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง–"]; new_value=day | hamam | luxurious | pamper | person | relax | room | sauna | spa | steam | steambath | steamy | unwind -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšฃ"]; new_value=boat | canoe | cruise | fishing | lake | oar | paddle | person | raft | river | row | rowboat | rowing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ›น"]; new_value=athletic | ball | basketball | bouncing | championship | dribble | free | man | net | nothing | but | net | person | player | throw -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคพ"]; new_value=athletics | ball | catch | chuck | handball | hurl | lob | person | pitch | playing | sport | throw | toss -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคพโ€โ™€"]; new_value=athletics | ball | catch | chuck | handball | hurl | lob | pitch | playing | sport | throw | toss | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›Œ"]; new_value=bed | bedtime | good | goodnight | hotel | nap | night | person | sleep | tired | zzz -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’‘"]; new_value=anniversary | babe | bae | couple | dating | heart | kiss | love | person | relationship | romance | together | you -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿป"]; new_value=alcohol | bar | beer | booze | bottoms | cheers | clink | clinking | drinking | drinks | mugs -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜„"]; new_value=eye | eyes | face | grin | grinning | happy | laugh | lol | mouth | open | smile | smiling -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคญ"]; new_value=face | giggle | giggling | hand | mouth | oops | realization | secret | shock | sudden | surprise | whoops -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซฃ"]; new_value=captivated | embarrass | eye | face | hide | hiding | peek | peeking | peep | scared | shy | stare -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซก"]; new_value=face | good | luck | maโ€™am | OK | respect | salute | saluting | sir | sunny | troops | yes -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿค"]; new_value=face | keep | mouth | my | not | quiet | secret | shut | telling | zip | zipper | zipper-mouth -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซฅ"]; new_value=depressed | disappear | dotted | face | hidden | hide | introvert | invisible | line | meh | whatever | wtv -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซจ"]; new_value=crazy | daze | earthquake | face | omg | panic | shaking | shock | surprise | vibrate | whoa | wow -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ตโ€๐Ÿ’ซ"]; new_value=confused | dizzy | eyes | face | hypnotized | omg | smiley | spiral | trouble | whoa | woah | woozy -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅณ"]; new_value=bday | birthday | celebrate | celebration | excited | face | happy | hat | hooray | horn | party | partying -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜•"]; new_value=befuddled | confused | confusing | dunno | face | frown | hm | meh | not | sad | sorry | sure -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅบ"]; new_value=begging | big | eyes | face | mercy | not | pleading | please | pretty | puppy | sad | why -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ฆ"]; new_value=caught | face | frown | frowning | guard | mouth | open | scared | scary | suprise | what | wow -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ฐ"]; new_value=anxious | blue | cold | eek | face | mouth | nervous | open | rushed | scared | sweat | yikes -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ฅ"]; new_value=anxious | call | close | complicated | disappointed | face | not | relieved | sad | sweat | time | whew -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ฑ"]; new_value=epic | face | fear | fearful | munch | scared | scream | screamer | screaming | shocked | surprised | woah -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ฉ"]; new_value=crying | face | fail | feels | hungry | mad | nooo | sad | sleepy | tired | unhappy | weary -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ "]; new_value=anger | angry | blame | face | feels | frustrated | mad | maddening | rage | shade | unhappy | upset -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’€"]; new_value=body | dead | death | face | fairy | fairytale | iโ€™m | lmao | monster | skull | tale | yolo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’–"]; new_value=143 | emotion | excited | good | heart | ily | kisses | morning | night | sparkle | sparkling | xoxo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’—"]; new_value=143 | emotion | excited | growing | heart | heartpulse | ily | kisses | muah | nervous | pulse | xoxo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ฆ"]; new_value=comic | drip | droplet | droplets | drops | splashing | squirt | sweat | water | wet | work | workout -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’จ"]; new_value=away | cloud | comic | dash | dashing | fart | fast | go | gone | gotta | running | smoke -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซด"]; new_value=beckon | catch | come | donโ€™t | hand | hold | know | lift | me | offer | palm | tell -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ต"]; new_value=adult | bad | blond | blondie | grandma | grandmother | granny | haircut | lady | old | wise | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™Ž"]; new_value=disappoint | downtrodden | frown | gesture | grimace | person | pouting | scowl | sulk | upset | whine | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคฆโ€โ™‚"]; new_value=again | disbelief | exasperation | facepalm | facepalming | man | no | not | oh | omg | shock | smh -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅท"]; new_value=assassin | fight | fighter | hidden | ninja | person | secret | skills | sly | soldier | stealth | war -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘จโ€๐Ÿผ"]; new_value=baby | dad | father | feed | feeding | love | male | man | nanny | newborn | nursing | person -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง™"]; new_value=fantasy | mage | magic | person | play | role | sorcerer | sorceress | spell | summon | witch | wizard -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงœ"]; new_value=creatures | fairytale | folklore | mermaid | merman | merperson | merwoman | ocean | sea | siren | trident | under | the | sea -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ƒ"]; new_value=dance | dancer | dancing | elegant | festive | flair | flamenco | groove | letโ€™s | salsa | tango | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•บ"]; new_value=dance | dancer | dancing | elegant | festive | flair | flamenco | groove | letโ€™s | man | salsa | tango -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ"]; new_value=ball | birdie | caddy | driving | golf | golfing | green | person | pga | putt | range | tee -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ"]; new_value=alpha | animal | face | Leo | lion | mane | order | rawr | roar | safari | strong | zodiac -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชฟ"]; new_value=animal | bird | duck | flock | fowl | gaggle | gander | geese | goose | honk | ornithology | silly -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿณ"]; new_value=breakfast | cooking | egg | fry | frying | over | easy | pan | restaurant | side | sunny | sunny | side | up -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿธ"]; new_value=alcohol | bar | booze | club | cocktail | drink | drinking | drinks | glass | mad | martini | men -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿก"]; new_value=building | country | garden | heart | home | house | ranch | settle | simple | suburban | suburbia | where -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชญ"]; new_value=clack | clap | cool | cooling | dance | fan | flirt | flutter | folding | hand | hot | shy -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ "]; new_value=clothes | clothing | dress | fashion | heel | heels | high-heeled | shoe | shoes | shopping | stilletto | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชˆ"]; new_value=band | fife | flautist | flute | instrument | marching | music | orchestra | piccolo | pipe | recorder | woodwind -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ธ"]; new_value=bank | banknote | bill | billion | cash | dollar | fly | million | money | note | pay | wings -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’น"]; new_value=bank | chart | currency | graph | growth | increasing | market | money | rise | trend | upward | yen -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›„"]; new_value=arrived | baggage | bags | case | checked | claim | journey | packing | plane | ready | travel | trip -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›œ"]; new_value=broadband | computer | connectivity | hotspot | internet | network | router | smartphone | wi-fi | wifi | wireless | wlan -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜€"]; new_value=cheerful | cheery | face | grin | grinning | happy | laugh | nice | smile | smiling | teeth -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜"]; new_value=beaming | eye | eyes | face | grin | grinning | happy | nice | smile | smiling | teeth -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜”"]; new_value=awful | bored | dejected | died | disappointed | face | losing | lost | pensive | sad | sucks -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ท"]; new_value=cold | dentist | dermatologist | doctor | dr | face | germs | mask | medical | medicine | sick -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜Ÿ"]; new_value=anxious | butterflies | face | nerves | nervous | sad | stress | stressed | surprised | worried | worry -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ฒ"]; new_value=astonished | cost | face | gtfo | no | omfg | omg | shocked | totally | way | wtf -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜“"]; new_value=close | cold | downcast | face | feels | headache | nervous | sad | scared | sweat | yikes -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘น"]; new_value=creature | devil | face | fairy | fairytale | fantasy | mask | monster | ogre | scary | tale -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘บ"]; new_value=angry | creature | face | fairy | fairytale | fantasy | goblin | mask | mean | monster | tale -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฝ"]; new_value=alien | creature | extraterrestrial | face | fairy | fairytale | fantasy | monster | space | tale | ufo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’˜"]; new_value=143 | adorbs | arrow | cupid | date | emotion | heart | ily | love | romance | valentine -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฉท"]; new_value=143 | adorable | cute | emotion | heart | ily | like | love | pink | special | sweet -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ค"]; new_value=comic | good | goodnight | night | sleep | sleeping | sleepy | tired | zzz -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซฐ"]; new_value=<3 | crossed | expensive | finger | hand | heart | index | love | money | snap | thumb -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘€"]; new_value=body | eye | eyes | face | googly | look | looking | omg | peep | see | seeing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ด"]; new_value=adult | bald | dude | elderly | grandfather | grandpa | hair | losing | man | old | wise -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™‹โ€โ™‚"]; new_value=gesture | hand | hands | I | know | I | can | help | man | me | person | question | raised | raising -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘โ€๐Ÿผ"]; new_value=baby | dad | feed | feeding | man | mom | nanny | newborn | nursing | person | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงš"]; new_value=fairy | fairytale | fantasy | myth | Oberon | person | pixie | Puck | tale | Titania | wings -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง›"]; new_value=blood | costume | Dracula | fangs | halloween | person | scary | supernatural | teeth | undead | vampire -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿƒโ€โ™€"]; new_value=coming | fast | hurry | marathon | quick | racing | runner | running | rush | speed | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‹"]; new_value=barbell | bodybuilder | deadlift | lifter | lifting | person | powerlifting | weight | weightlifter | weights | workout -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซ‚"]; new_value=comfort | embrace | farewell | friendship | goodbye | hello | hug | hugging | love | people | thanks -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿท"]; new_value=alcohol | bar | beverage | booze | club | drink | drinking | drinks | glass | restaurant | wine -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ "]; new_value=building | country | heart | home | house | ranch | settle | simple | suburban | suburbia | where -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›Ÿ"]; new_value=buoy | float | life | lifesaver | preserver | rescue | ring | safety | save | saver | swim -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿช…"]; new_value=candy | celebrate | celebration | cinco | de | festive | mayo | party | pinada | pinata | piรฑata -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽจ"]; new_value=art | artist | artsy | arty | colorful | creative | entertainment | museum | painter | painting | palette -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘•"]; new_value=blue | casual | clothes | clothing | collar | dressed | shirt | shopping | t-shirt | tshirt | weekend -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘–"]; new_value=blue | casual | clothes | clothing | denim | dressed | jeans | pants | shopping | trousers | weekend -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘š"]; new_value=blouse | clothes | clothing | collar | dress | dressed | lady | shirt | shopping | woman | womanโ€™s -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ž"]; new_value=brown | clothes | clothing | feet | foot | kick | man | manโ€™s | shoe | shoes | shopping -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘Ÿ"]; new_value=athletic | clothes | clothing | fast | kick | running | shoe | shoes | shopping | sneaker | tennis -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ฉ"]; new_value=arrow | communication | down | e-mail | email | envelope | letter | mail | outgoing | send | sent -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชฌ"]; new_value=amulet | Fatima | fortune | guide | hamsa | hand | Mary | Miriam | palm | protect | protection -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ž"]; new_value=18 | age | eighteen | forbidden | no | not | one | prohibited | restriction | underage -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โœ…"]; new_value=โœ“ | button | check | checked | checkmark | complete | completed | done | fixed | mark | tick -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ฌ"]; new_value=awk | awkward | dentist | face | grimace | grimacing | grinning | smile | smiling -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคฎ"]; new_value=ew | face | gross | puke | sick | spew | throw | up | vomit | vomiting -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅต"]; new_value=dying | face | feverish | heat | hot | panting | red-faced | stroke | sweating | tongue -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅด"]; new_value=dizzy | drunk | eyes | face | intoxicated | mouth | tipsy | uneven | wavy | woozy -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ต"]; new_value=crossed-out | dead | dizzy | eyes | face | feels | knocked | out | sick | tired -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿค“"]; new_value=brainy | clever | expert | face | geek | gifted | glasses | intelligent | nerd | smart -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ง"]; new_value=anguished | face | forgot | scared | scary | stressed | suprise | unhappy | what | wow -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ข"]; new_value=awful | cry | crying | face | feels | miss | sad | tear | triste | unhappy -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ญ"]; new_value=bawling | cry | crying | face | loudly | sad | sob | tear | tears | unhappy -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜–"]; new_value=annoyed | confounded | confused | cringe | distraught | face | feels | frustrated | mad | sad -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’“"]; new_value=143 | beating | cardio | emotion | heart | heartbeat | ily | love | pulsating | pulse -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฉถ"]; new_value=143 | emotion | gray | grey | heart | ily | love | silver | slate | special -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ฌ"]; new_value=balloon | bubble | comic | dialog | message | sms | speech | talk | text | typing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘Ž"]; new_value=-1 | bad | dislike | down | good | hand | no | nope | thumb | thumbs -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’…"]; new_value=bored | care | cosmetics | done | iโ€™m | makeup | manicure | nail | polish | whatever -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ง"]; new_value=bangs | bright-eyed | child | daughter | girl | lady | pigtails | Virgo | young | zodiac -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฑ"]; new_value=blond | blond-haired | blonde | dude | face | hair | human | man | person | person: -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™…โ€โ™‚"]; new_value=forbidden | gesture | gesturing | hand | man | NO | no | nope | not | prohibited -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฎ"]; new_value=apprehend | arrest | citation | cop | law | officer | police | pulled | over | undercover -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฎโ€โ™€"]; new_value=apprehend | arrest | citation | cop | law | officer | police | pulled | undercover | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘โ€๐ŸŽ„"]; new_value=christmas | claus | hat | holiday | merry | mx | person | santa | santy | xmas -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงž"]; new_value=djinn | fantasy | genie | jinn | lamp | mystical | mythical | person | rub | wishes -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’†โ€โ™‚"]; new_value=face | getting | headache | man | massage | relax | relaxing | salon | soothe | tension -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšถโ€โ™€"]; new_value=amble | hike | pedestrian | saunter | stride | stroll | swagger | walk | walking | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšต"]; new_value=athletic | bicycle | bicyclist | bike | biking | cyclist | mountain | person | riding | sport -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคน"]; new_value=act | balance | balancing | handle | juggle | juggling | manage | multitask | person | skill -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชฝ"]; new_value=angelic | ascend | aviation | bird | fly | flying | heavenly | mythology | soar | wing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆโ€โฌ›"]; new_value=animal | beak | bird | black | caw | corvid | crow | ornithology | raven | rook -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ˜•"]; new_value=beverage | cafe | caffeine | coffee | drink | hot | morning | steaming | tea | chai -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซ—"]; new_value=accident | drink | empty | glass | liquid | oops | pour | pouring | spill | water -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšฒ"]; new_value=bicycle | bike | class | cycle | cycling | cyclist | gang | ride | spin | spinning -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒž"]; new_value=beach | bright | day | face | heat | shine | sun | sunny | sunshine | weather -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โšก"]; new_value=danger | electric | electricity | high | lightning | nature | thunder | thunderbolt | voltage | zap -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ง"]; new_value=cold | comic | drop | droplet | nature | sad | sweat | tear | water | weather -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽ‰"]; new_value=awesome | birthday | celebrate | celebration | excited | hooray | party | popper | tada | woohoo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ฎ"]; new_value=ball | crystal | fairy | fairytale | fantasy | fortune | future | magic | tale | tool -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽญ"]; new_value=actor | actress | art | arts | entertainment | mask | performing | theater | theatre | thespian -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”•"]; new_value=bell | forbidden | mute | no | not | prohibited | quiet | silent | slash | sound -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿช‡"]; new_value=cha | dance | instrument | maracas | music | party | percussion | rattle | shake | shaker -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”Ž"]; new_value=contact | glass | lab | magnifying | right | right-pointing | science | search | tilted | tool -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“š"]; new_value=book | books | education | fantasy | knowledge | library | novels | reading | school | study -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ท"]; new_value=bank | banknote | bill | billion | cash | currency | money | note | pound | pounds -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ˜ฏ"]; new_value=difficult | lives | religion | tao | taoist | total | yang | yin | yinyang -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ฒ"]; new_value=billion | cash | charge | currency | dollar | heavy | million | money | pay | sign -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ"]; new_value=checkered | chequered | finish | flag | flags | game | race | racing | sport | win -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜‰"]; new_value=face | flirt | heartbreaker | sexy | slide | tease | wink | winking | winks -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคฉ"]; new_value=excited | eyes | face | grinning | smile | star | star-struck | starry-eyed | wow -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ช"]; new_value=crying | face | good | night | sad | sleep | sleeping | sleepy | tired -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅถ"]; new_value=blue | blue-faced | cold | face | freezing | frostbite | icicles | subzero | teeth -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคฏ"]; new_value=blown | explode | exploding | head | mind | mindblown | no | shocked | way -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ž"]; new_value=awful | blame | dejected | disappointed | face | fail | losing | sad | unhappy -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคฌ"]; new_value=censor | cursing | cussing | face | mad | mouth | pissed | swearing | symbols -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ธ"]; new_value=animal | cat | eye | eyes | face | grin | grinning | smile | smiling -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜น"]; new_value=animal | cat | face | joy | laugh | laughing | lol | tear | tears -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ป"]; new_value=animal | cat | eye | face | heart | heart-eyes | love | smile | smiling -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’"]; new_value=143 | anniversary | emotion | heart | ily | kisses | ribbon | valentine | xoxo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’‹"]; new_value=dating | emotion | heart | kiss | kissing | lips | mark | romance | sexy -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซณ"]; new_value=dismiss | drop | dropped | hand | palm | down | hand | pick | up | shoo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸคŸ"]; new_value=fingers | gesture | hand | I | love | you | ILY | love | love-you | three -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซต"]; new_value=finger | hand | index | pointing | at | the | viewer | pointing | poke | you -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคฒ"]; new_value=cupped | dua | hands | palms | up | together | pray | prayer | wish -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซ€"]; new_value=anatomical | beat | cardiology | heart | heartbeat | organ | pulse | real | red -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™‡โ€โ™€"]; new_value=apology | bow | bowing | favor | gesture | meditate | meditation | sorry | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฒ"]; new_value=cap | Chinese | gua | guapimao | hat | mao | person | pi | skullcap -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง"]; new_value=elf | elves | enchantment | fantasy | folklore | magical | mystical | mythical | person -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸงŸ"]; new_value=apocalypse | dead | halloween | horror | person | scary | undead | walking | zombie -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฏโ€โ™‚"]; new_value=bff | bunny | dancer | ear | ears | men | party | partying | twinsies -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ„"]; new_value=beach | ocean | person | sport | surf | surfer | surfing | swell | waves -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšฃโ€โ™€"]; new_value=boat | cruise | fishing | lake | river | row | rowboat | rowing | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšด"]; new_value=bicycle | bicyclist | bike | biking | cycle | cyclist | person | riding | sport -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšตโ€โ™€"]; new_value=bicycle | bicyclist | bike | biking | cyclist | mountain | riding | sport | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคธ"]; new_value=active | cartwheel | cartwheeling | excited | flip | gymnastics | happy | person | somersault -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคธโ€โ™‚"]; new_value=active | cartwheel | cartwheeling | excited | flip | gymnastics | happy | man | somersault -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคธโ€โ™€"]; new_value=active | cartwheel | cartwheeling | excited | flip | gymnastics | happy | somersault | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘"]; new_value=animal | baa | ewe | farm | female | fluffy | lamb | sheep | wool -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆš"]; new_value=animal | bird | colorful | ornithology | ostentatious | peacock | peahen | pretty | proud -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชท"]; new_value=beauty | Buddhism | calm | flower | Hinduism | lotus | peace | purity | serenity -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅฌ"]; new_value=bok | burgers | cabbage | choy | green | kale | leafy | lettuce | salad -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซ›"]; new_value=beans | beanstalk | edamame | legume | pea | pod | soybean | vegetable | veggie -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ"]; new_value=cream | dessert | food | ice | icecream | restaurant | serve | soft | sweet -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿผ"]; new_value=babies | baby | birth | born | bottle | drink | infant | milk | newborn -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ†"]; new_value=building | city | cityscape | at | dusk | evening | landscape | sun | sunset -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšจ"]; new_value=alarm | alert | beacon | car | emergency | light | police | revolving | siren -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โณ"]; new_value=done | flowing | hourglass | hours | not | sand | timer | waiting | yolo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงจ"]; new_value=dynamite | explosive | fire | firecracker | fireworks | light | pop | popping | spark -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงง"]; new_value=envelope | gift | good | hรณngbฤo | lai | luck | money | red | see -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽ"]; new_value=birthday | bow | box | celebration | christmas | gift | present | surprise | wrapped -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ†"]; new_value=champion | champs | prize | slay | sport | trophy | victory | win | winning -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“"]; new_value=ball | bat | game | paddle | ping | pingpong | pong | table | tennis -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅผ"]; new_value=clothes | coat | doctor | dr | experiment | jacket | lab | scientist | white -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฉด"]; new_value=beach | flip | flop | sandal | sandals | shoe | thong | thongs | zลri -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ข"]; new_value=boot | clothes | clothing | dress | shoe | shoes | shopping | woman | womanโ€™s -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘‘"]; new_value=clothing | crown | family | king | medieval | queen | royal | royalty | win -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’"]; new_value=diamond | engaged | engagement | married | ring | romance | shiny | sparkling | wedding -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ฒ"]; new_value=arrow | build | call | cell | communication | mobile | phone | receive | telephone -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”"]; new_value=glass | lab | left | left-pointing | magnifying | science | search | tilted | tool -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿช™"]; new_value=coin | dollar | euro | gold | metal | money | rich | silver | treasure -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ถ"]; new_value=100 | bank | banknote | bill | currency | euro | money | note | rich -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“จ"]; new_value=delivering | e-mail | email | envelope | incoming | letter | mail | receive | sent -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ˆ"]; new_value=chart | data | graph | growth | increasing | right | trend | up | upward -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’‰"]; new_value=doctor | flu | medicine | needle | shot | sick | syringe | tool | vaccination -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฉผ"]; new_value=aid | cane | crutch | disability | help | hurt | injured | mobility | stick -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชฆ"]; new_value=cemetery | dead | grave | graveyard | headstone | memorial | rip | tomb | tombstone -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ›”"]; new_value=do | entry | fail | forbidden | no | not | pass | prohibited | traffic -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ต"]; new_value=cell | forbidden | mobile | no | not | phone | phones | prohibited | telephone -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”„"]; new_value=again | anticlockwise | arrow | arrows | button | counterclockwise | dejavu | refresh | rewindershins -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ถ"]; new_value=antenna | bar | bars | cell | communication | mobile | phone | signal | telephone -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ฐ"]; new_value=beginner | chevron | green | Japanese | leaf | symbol | tool | yellow -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜Š"]; new_value=blush | eye | eyes | face | glad | satisfied | smile | smiling -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜›"]; new_value=awesome | cool | face | nice | party | stuck-out | sweet | tongue -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคช"]; new_value=crazy | eye | eyes | face | goofy | large | small | zany -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿค”"]; new_value=chin | consider | face | hmm | ponder | pondering | thinking | wondering -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ฏ"]; new_value=epic | face | hushed | omg | stunned | surprised | whoa | woah -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜จ"]; new_value=afraid | anxious | blame | face | fear | fearful | scared | worried -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜บ"]; new_value=animal | cat | face | grinning | mouth | open | smile | smiling -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ฝ"]; new_value=animal | cat | closed | eye | eyes | face | kiss | kissing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’”"]; new_value=break | broken | crushed | emotion | heart | heartbroken | lonely | sad -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซฑ"]; new_value=hand | handshake | hold | reach | right | rightward | rightwards | shake -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซฒ"]; new_value=hand | handshake | hold | left | leftward | leftwards | reach | shake -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿค"]; new_value=amount | bit | fingers | hand | little | pinching | small | sort -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™Œ"]; new_value=celebration | gesture | hand | hands | hooray | praise | raised | raising -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘‚"]; new_value=body | ear | ears | hear | hearing | listen | listening | sound -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซ"]; new_value=breath | breathe | exhalation | inhalation | lung | lungs | organ | respiration -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ถ"]; new_value=babies | baby | children | goo | infant | newborn | pregnant | young -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™†"]; new_value=exercise | gesture | gesturing | hand | OK | omg | person | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง•"]; new_value=bandana | head | headscarf | hijab | kerchief | mantilla | tichel | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ผ"]; new_value=angel | baby | church | face | fairy | fairytale | fantasy | tale -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽ…"]; new_value=celebration | Christmas | claus | fairy | fantasy | father | santa | tale -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆน"]; new_value=bad | criminal | evil | person | superpower | superpowers | supervillain | villain -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง—"]; new_value=climb | climber | climbing | mountain | person | rock | scale | up -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ„โ€โ™€"]; new_value=beach | ocean | person | sport | surfer | surfing | waves | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšดโ€โ™€"]; new_value=bicycle | bicyclist | bike | biking | cyclist | riding | sport | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคผ"]; new_value=combat | duel | people | ring | tournament | wrestle | wrestler | wrestling -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคผโ€โ™€"]; new_value=combat | duel | grapple | ring | tournament | women | wrestle | wrestling -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคนโ€โ™‚"]; new_value=act | balancing | handle | juggle | juggling | man | manage | multitask -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฅ"]; new_value=bff | bust | busts | everyone | friend | friends | people | silhouette -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซ"]; new_value=animal | ass | burro | donkey | hinny | mammal | mule | stubborn -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ"]; new_value=animal | Aries | horns | male | ram | sheep | zodiac | zoo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿจ"]; new_value=animal | australia | bear | down | under | face | koala | marsupial -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ"]; new_value=animal | bee | bumblebee | honey | honeybee | insect | nature | spring -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿž"]; new_value=animal | beetle | garden | insect | lady | ladybird | ladybug | nature -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸฆŸ"]; new_value=bite | disease | fever | insect | malaria | mosquito | pest | virus -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’"]; new_value=anniversary | birthday | bouquet | date | flower | love | plant | romance -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒน"]; new_value=beauty | elegant | flower | love | plant | red | rose | valentine -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชด"]; new_value=decor | grow | house | nurturing | plant | pot | potted -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ€"]; new_value=4 | clover | four | four-leaf | irish | leaf | lucky | plant -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซ"]; new_value=berries | berry | bilberry | blue | blueberries | blueberry | food | fruit -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿž"]; new_value=bread | carbs | food | grain | loaf | restaurant | toast | wheat -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซ“"]; new_value=arepa | bread | flatbread | food | gordita | lavash | naan | pita -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‚"]; new_value=condiment | flavor | mad | salt | salty | shaker | taste | upset -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿœ"]; new_value=bowl | chopsticks | food | noodle | pho | ramen | soup | steaming -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽ‚"]; new_value=bday | birthday | cake | celebration | dessert | happy | pastry | sweet -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅง"]; new_value=apple | filling | fruit | meat | pastry | pie | pumpkin | slice -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฌ"]; new_value=candy | cavities | dessert | halloween | restaurant | sweet | tooth | wrapper -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฏ"]; new_value=barrel | bear | food | honey | honeypot | jar | pot | sweet -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅค"]; new_value=cup | drink | juice | malt | soda | soft | straw | water -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿบ"]; new_value=amphora | Aquarius | cooking | drink | jug | tool | weapon | zodiac -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ—ฝ"]; new_value=liberty | Liberty | new | ny | nyc | statue | Statue | york -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›"]; new_value=amusement | park | play | playground | playing | slide | sliding | theme -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš‚"]; new_value=caboose | engine | locomotive | railway | steam | train | trains | travel -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš…"]; new_value=bullet | high-speed | nose | railway | shinkansen | speed | train | travel -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš–"]; new_value=cab | cabbie | cars | drove | hail | oncoming | taxi | yellow -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš›"]; new_value=articulated | car | drive | lorry | move | semi | truck | vehicle -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšฆ"]; new_value=drove | intersection | light | signal | stop | stoplight | traffic | vertical -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšค"]; new_value=billionaire | boat | lake | luxury | millionaire | speedboat | summer | travel -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•ง"]; new_value=12:30 | 12 | 30 | clock | thirty | time | twelve | twelve-thirty -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•œ"]; new_value=1:30 | 1 | 30 | clock | one | one-thirty | thirty | time -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•"]; new_value=2:30 | 2 | 30 | clock | thirty | time | two | two-thirty -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•ž"]; new_value=3:30 | 3 | 30 | clock | thirty | three | three-thirty | time -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•Ÿ"]; new_value=4:30 | 4 | 30 | clock | four | four-thirty | thirty | time -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ• "]; new_value=5:30 | 5 | 30 | clock | five | five-thirty | thirty | time -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•ฃ"]; new_value=8:30 | 8 | 30 | clock | eight | eight-thirty | thirty | time -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•ค"]; new_value=9:30 | 9 | 30 | clock | nine | nine-thirty | thirty | time -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•ฅ"]; new_value=10:30 | 10 | 30 | clock | ten | ten-thirty | thirty | time -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•ฆ"]; new_value=11:30 | 11 | 30 | clock | eleven | eleven-thirty | thirty | time -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒŸ"]; new_value=glittery | glow | glowing | night | shining | sparkle | star | win -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ฅ"]; new_value=af | burn | fire | flame | hot | lit | litaf | tool -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽฏ"]; new_value=bull | bullseye | dart | direct | entertainment | game | hit | target -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿช†"]; new_value=babooshka | baboushka | babushka | doll | dolls | matryoshka | nesting | russia -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชก"]; new_value=embroidery | needle | sew | sewing | stitches | sutures | tailoring | thread -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘›"]; new_value=clothes | clothing | coin | dress | fancy | handbag | purse | shopping -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘œ"]; new_value=bag | clothes | clothing | dress | handbag | lady | purse | shopping -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘"]; new_value=bag | clothes | clothing | clutch | dress | handbag | pouch | purse -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽ’"]; new_value=backpack | backpacking | bag | bookbag | education | rucksack | satchel | school -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘’"]; new_value=clothes | clothing | garden | hat | hats | party | woman | womanโ€™s -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽฉ"]; new_value=clothes | clothing | fancy | formal | hat | magic | top | tophat -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’Ž"]; new_value=diamond | engagement | gem | jewel | money | romance | stone | wedding -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“”"]; new_value=book | cover | decorated | decorative | education | notebook | school | writing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“–"]; new_value=book | education | fantasy | knowledge | library | novels | open | reading -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ฅ"]; new_value=box | email | inbox | letter | mail | receive | tray | zero -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“‰"]; new_value=chart | data | decreasing | down | downward | graph | negative | trend -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“"]; new_value=angle | math | rule | ruler | set | slide | triangle | triangular -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿน"]; new_value=archer | archery | arrow | bow | Sagittarius | tool | weapon | zodiac -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โš–"]; new_value=balance | justice | Libra | scale | scales | tool | weight | zodiac -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงฒ"]; new_value=attraction | horseshoe | magnet | magnetic | negative | positive | shape | u -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’Š"]; new_value=doctor | drugs | medicated | medicine | pill | pills | sick | vitamin -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซง"]; new_value=bubble | bubbles | burp | clean | floating | pearl | soap | underwater -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชฅ"]; new_value=bathroom | brush | clean | dental | hygiene | teeth | toiletry | toothbrush -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชง"]; new_value=card | demonstration | notice | picket | placard | plaque | protest | sign -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšน"]; new_value=bathroom | lavatory | man | menโ€™s | restroom | room | toilet | WC -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšบ"]; new_value=bathroom | lavatory | restroom | room | toilet | WC | woman | womenโ€™s -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชฏ"]; new_value=Deg | Fateh | Khalsa | Khanda | religion | Sikh | Sikhism | Tegh -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‰"]; new_value=! | !? | ? | exclamation | interrobang | mark | punctuation | question -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ˜‘"]; new_value=โœ“ | ballot | box | check | checked | off | done | tick -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โœ”"]; new_value=โœ“ | check | checked | checkmark | done | heavy | mark | tick -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โŽ"]; new_value=ร— | button | cross | mark | multiplication | multiply | square | x -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿˆถ"]; new_value=not | button | charge | charge | free | ideograph | Japanese | not -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿˆบ"]; new_value=open | business | business | button | ideograph | Japanese | open -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™„"]; new_value=eyeroll | eyes | face | rolling | shade | ugh | whatever -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคง"]; new_value=face | fever | flu | gesundheit | sick | sneeze | sneezing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง"]; new_value=classy | face | fancy | monocle | rich | stuffy | wealthy -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ฃ"]; new_value=concentrate | concentration | face | focus | headache | persevere | persevering -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ซ"]; new_value=cost | face | feels | nap | sad | sneeze | tired -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ˜ "]; new_value=bone | crossbones | dead | death | face | monster | skull -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ฟ"]; new_value=animal | cat | cry | crying | face | sad | tear -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ž"]; new_value=143 | adorbs | anniversary | emotion | heart | hearts | revolving -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’Ÿ"]; new_value=143 | decoration | emotion | heart | hearth | purple | white -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โคโ€๐Ÿฉน"]; new_value=healthier | heart | improving | mending | recovering | recuperating | well -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’›"]; new_value=143 | cardiac | emotion | heart | ily | love | yellow -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’š"]; new_value=143 | emotion | green | heart | ily | love | romantic -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’™"]; new_value=143 | blue | emotion | heart | ily | love | romance -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’œ"]; new_value=143 | bestest | emotion | heart | ily | love | purple -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ˆ"]; new_value=backhand | finger | hand | index | left | point | pointing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘‰"]; new_value=backhand | finger | hand | index | point | pointing | right -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘†"]; new_value=backhand | finger | hand | index | point | pointing | up -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘‡"]; new_value=backhand | down | finger | hand | index | point | pointing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ˜"]; new_value=finger | hand | index | point | pointing | this | up -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ƒ"]; new_value=body | nose | noses | nosey | odor | smell | smells -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘„"]; new_value=beauty | body | kiss | kissing | lips | lipstick | mouth -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง“"]; new_value=adult | gender | gender-neutral | old | older | person | unspecified -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™…โ€โ™€"]; new_value=forbidden | gesture | gesturing | hand | NO | prohibited | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™†โ€โ™‚"]; new_value=exercise | gesture | gesturing | hand | man | OK | omg -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘จโ€โš•"]; new_value=doctor | health | healthcare | man | nurse | therapist | worker -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฉโ€โš•"]; new_value=doctor | health | healthcare | nurse | therapist | woman | worker -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘จโ€๐Ÿ’ผ"]; new_value=architect | business | man | manager | office | white-collar | worker -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฉโ€๐Ÿ’ผ"]; new_value=architect | business | manager | office | white-collar | woman | worker -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘จโ€๐Ÿ”ฌ"]; new_value=biologist | chemist | engineer | man | mathematician | physicist | scientist -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฉโ€๐Ÿ”ฌ"]; new_value=biologist | chemist | engineer | mathematician | physicist | scientist | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘จโ€๐Ÿ’ป"]; new_value=coder | computer | developer | inventor | man | software | technologist -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฉโ€๐Ÿ’ป"]; new_value=coder | computer | developer | inventor | software | technologist | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘จโ€๐ŸŽค"]; new_value=actor | entertainer | man | rock | rockstar | singer | star -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฉโ€๐ŸŽค"]; new_value=actor | entertainer | rock | rockstar | singer | star | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ทโ€โ™€"]; new_value=construction | hardhat | hat | helmet | woman | work | worker -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซ…"]; new_value=crown | monarch | noble | person | regal | royal | royalty -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ธ"]; new_value=crown | fairy | fairytale | fantasy | princess | queen | tale -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซ„"]; new_value=belly | bloated | full | overeat | person | pregnant | stuffed -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’‡โ€โ™‚"]; new_value=barber | beauty | getting | hair | haircut | man | parlor -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŠ"]; new_value=freestyle | person | sport | swim | swimmer | swimming | triathlon -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‹โ€โ™€"]; new_value=lifter | lifting | weight | weightlifter | weights | woman | workout -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคผโ€โ™‚"]; new_value=combat | duel | men | ring | tournament | wrestle | wrestling -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคฝ"]; new_value=person | playing | polo | sport | swimming | water | waterpolo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคฝโ€โ™‚"]; new_value=man | playing | polo | sport | swimming | water | waterpolo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคฝโ€โ™€"]; new_value=playing | polo | sport | swimming | water | waterpolo | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘โ€๐Ÿคโ€๐Ÿง‘"]; new_value=couple | hand | hands | hold | holding | people | person -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฃ"]; new_value=barefoot | clothing | footprint | footprints | omw | print | walk -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿถ"]; new_value=adorbs | animal | dog | face | pet | puppies | puppy -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿˆโ€โฌ›"]; new_value=animal | black | cat | feline | halloween | meow | unlucky -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ…"]; new_value=animal | big | cat | predator | tiger | zoo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ†"]; new_value=animal | big | cat | leopard | predator | zoo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿด"]; new_value=animal | dressage | equine | face | farm | horse | horses -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‚"]; new_value=animal | animals | bull | farm | ox | Taurus | zodiac -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฝ"]; new_value=animal | face | farm | nose | pig | smel | snout -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซ"]; new_value=animal | bactrian | camel | desert | hump | two | two-hump -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅ"]; new_value=animal | baby | bird | chick | front-facing | newborn | ornithology -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆข"]; new_value=animal | bird | cygnet | duckling | ornithology | swan | ugly -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŸ"]; new_value=animal | dinner | fish | fishes | fishing | Pisces | zodiac -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชฐ"]; new_value=animal | disease | fly | insect | maggot | pest | rotting -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŠ"]; new_value=citrus | fruit | nectarine | orange | tangerine | vitamin | c -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽ"]; new_value=apple | diet | food | fruit | health | red | ripe -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซš"]; new_value=beer | ginger | health | herb | natural | root | spice -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅ"]; new_value=bread | breakfast | crescent | croissant | food | french | roll -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ—"]; new_value=bone | chicken | drumstick | hungry | leg | poultry | turkey -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅฉ"]; new_value=chop | cut | lambchop | meat | porkchop | red | steak -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซ•"]; new_value=cheese | chocolate | fondue | food | melted | pot | ski -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅฃ"]; new_value=bowl | breakfast | cereal | congee | oatmeal | porridge | spoon -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿข"]; new_value=food | kebab | oden | restaurant | seafood | skewer | stick -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅก"]; new_value=box | chopsticks | delivery | food | oyster | pail | takeout -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง"]; new_value=bakery | cupcake | dessert | sprinkles | sugar | sweet | treat -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซ"]; new_value=bar | candy | chocolate | dessert | halloween | sweet | tooth -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿญ"]; new_value=candy | confectionary | dessert | food | lollipop | restaurant | sweet -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿต"]; new_value=beverage | cup | drink | handle | oolong | tea | teacupout -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿถ"]; new_value=bar | beverage | bottle | cup | drink | restaurant | sake -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅƒ"]; new_value=glass | liquor | scotch | shot | tumbler | whiskey | whisky -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ช"]; new_value=chef | cooking | hocho | kitchen | knife | tool | weapon -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซ™"]; new_value=condiment | container | empty | jar | nothing | sauce | store -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ"]; new_value=Africa | earth | Europe | Europe-Africa | globe | showing | world -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ"]; new_value=Asia | Asia-Australia | Australia | earth | globe | showing | world -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ"]; new_value=earth | globe | internet | meridians | web | world | worldwide -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšƒ"]; new_value=car | electric | railway | train | tram | travel | trolleybus -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš•"]; new_value=cab | cabbie | car | drive | taxi | vehicle | yellow -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš™"]; new_value=car | drive | recreational | sport | sportutility | utility | vehicle -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›ป"]; new_value=automobile | car | flatbed | pick-up | pickup | transportation | truck -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ›ฝ"]; new_value=diesel | fuel | fuelpump | gas | gasoline | pump | station -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšฅ"]; new_value=horizontal | intersection | light | signal | stop | stoplight | traffic -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โœˆ"]; new_value=aeroplane | airplane | fly | flying | jet | plane | travel -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›ฌ"]; new_value=aeroplane | airplane | arrival | arrivals | arriving | landing | plane -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โฐ"]; new_value=alarm | clock | hours | hrs | late | time | waiting -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•›"]; new_value=12:00 | 12 | clock | oโ€™clock | time | twelve -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•"]; new_value=1:00 | 1 | clock | oโ€™clock | one | time -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•‘"]; new_value=2:00 | 2 | clock | oโ€™clock | time | two -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•’"]; new_value=3:00 | 3 | clock | oโ€™clock | three | time -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•“"]; new_value=4:00 | 4 | clock | four | oโ€™clock | time -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•”"]; new_value=5:00 | 5 | clock | five | oโ€™clock | time -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ••"]; new_value=6:00 | 6 | clock | oโ€™clock | six | time -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•ก"]; new_value=6:30 | 6 | 30 | clock | six | six-thirty | thirty -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•ข"]; new_value=7:30 | 7 | 30 | clock | seven | seven-thirty | thirty -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•—"]; new_value=8:00 | 8 | clock | eight | oโ€™clock | time -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•˜"]; new_value=9:00 | 9 | clock | nine | oโ€™clock | time -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•š"]; new_value=11:00 | 11 | clock | eleven | oโ€™clock | time -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒŠ"]; new_value=nature | ocean | surf | surfer | surfing | water | wave -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ซ"]; new_value=gun | handgun | pistol | revolver | tool | water | weapon -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽฑ"]; new_value=8 | 8ball | ball | billiard | eight | game | pool -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽฐ"]; new_value=casino | gamble | gambling | game | machine | slot | slots -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชข"]; new_value=cord | knot | rope | tangled | tie | twine | twist -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅฝ"]; new_value=dive | eye | goggles | protection | scuba | swimming | welding -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘™"]; new_value=bathing | beach | bikini | clothing | pool | suit | swim -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅพ"]; new_value=backpacking | boot | brown | camping | hiking | outdoors | shoe -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅฟ"]; new_value=ballet | comfy | flat | flats | shoe | slip-on | slipper -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽ“"]; new_value=cap | celebration | clothing | education | graduation | hat | scholar -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ›‘"]; new_value=aid | cross | face | hat | helmet | rescue | workerโ€™s -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿช—"]; new_value=accordion | box | concertina | instrument | music | squeeze | squeezebox -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽฅ"]; new_value=bollywood | camera | cinema | film | hollywood | movie | record -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ท"]; new_value=camera | photo | selfie | snap | tbt | trip | video -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ผ"]; new_value=old | school | tape | vcr | vhs | video | videocassette -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ด"]; new_value=bank | banknote | bill | currency | money | note | yen -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ต"]; new_value=bank | banknote | bill | currency | dollar | money | note -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ณ"]; new_value=bank | card | cash | charge | credit | money | pay -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ค"]; new_value=box | email | letter | mail | outbox | sent | tray -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ซ"]; new_value=closed | communication | flag | mail | mailbox | postbox | raised -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชš"]; new_value=carpenter | carpentry | cut | lumber | saw | tool | trim -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿช"]; new_value=catch | crook | curve | ensnare | hook | point | selling -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงช"]; new_value=chemist | chemistry | experiment | lab | science | test | tube -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงซ"]; new_value=bacteria | biologist | biology | culture | dish | lab | petri -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฉธ"]; new_value=bleed | blood | donation | drop | injury | medicine | menstruation -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฉป"]; new_value=bones | doctor | medical | skeleton | skull | x-ray | xray -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸชŸ"]; new_value=air | frame | fresh | opening | transparent | view | window -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿช "]; new_value=cup | force | plumber | plunger | poop | suction | toilet -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชค"]; new_value=bait | cheese | lure | mouse | mousetrap | snare | trap -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงผ"]; new_value=bar | bathing | clean | cleaning | lather | soap | soapdish -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงฟ"]; new_value=amulet | bead | blue | charm | evil-eye | nazar | talisman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชช"]; new_value=card | credentials | document | ID | identification | license | security -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง"]; new_value=ATM | automated | bank | cash | money | sign | teller -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšพ"]; new_value=bathroom | closet | lavatory | restroom | toilet | water | WC -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšณ"]; new_value=bicycle | bicycles | bike | forbidden | no | not | prohibited -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•Ž"]; new_value=candelabrum | candlestick | hanukkah | jewish | judaism | menorah | religion -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โฏ"]; new_value=arrow | button | pause | play | right | triangle -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โฎ"]; new_value=arrow | button | last | previous | scene | track | triangle -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ณ"]; new_value=cell | communication | mobile | mode | phone | telephone | vibration -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŸฐ"]; new_value=answer | equal | equality | equals | heavy | math | sign -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ€ผ"]; new_value=! | !! | bangbang | double | exclamation | mark | punctuation -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โŒ"]; new_value=ร— | cancel | cross | mark | multiplication | multiply | x -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿˆท"]; new_value=monthly | amount | amount | button | ideograph | Japanese | monthly -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿˆด"]; new_value=passing | button | grade | grade | ideograph | Japanese | passing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿˆต"]; new_value=no | button | ideograph | Japanese | no | vacancy | vacancy -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ˜บ"]; new_value=face | happy | outlined | relaxed | smile | smiling -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿค—"]; new_value=face | hands | hug | hugging | open | smiling -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคซ"]; new_value=be | face | quiet | shh | shush | shushing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜Œ"]; new_value=calm | face | peace | relief | relieved | zen -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿค•"]; new_value=bandage | face | head-bandage | hurt | injury | ouch -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคข"]; new_value=face | gross | nasty | nauseated | sick | vomit -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ผ"]; new_value=animal | cat | face | ironic | smile | wry -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™€"]; new_value=animal | cat | face | oh | surprised | weary -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’Œ"]; new_value=heart | letter | love | mail | romance | valentine -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โคโ€๐Ÿ”ฅ"]; new_value=burn | fire | heart | love | lust | sacred -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ข"]; new_value=anger | angry | comic | mad | symbol | upset -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ฅ"]; new_value=bomb | boom | collide | collision | comic | explode -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ซ"]; new_value=comic | dizzy | shining | shooting | star | stars -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ—ฏ"]; new_value=anger | angry | balloon | bubble | mad | right -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ–"]; new_value=finger | fingers | hand | raised | splayed | stop -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โœ‹"]; new_value=5 | five | hand | high | raised | stop -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ––"]; new_value=finger | hand | hands | salute | spock | vulcan -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคž"]; new_value=cross | crossed | finger | fingers | hand | luck -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿค™"]; new_value=call | hand | hang | loose | me | Shaka -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โœŠ"]; new_value=clenched | fist | hand | punch | raised | solidarity -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘"]; new_value=hand | hands | hug | jazz | open | swerve -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿค"]; new_value=agreement | deal | hand | handshake | meeting | shake -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆต"]; new_value=bent | foot | kick | knee | leg | limb -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง’"]; new_value=child | gender | gender-neutral | kid | unspecified | young -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘จ"]; new_value=adult | boy | boyfriend | bro | friend | man -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฉ"]; new_value=adult | blonde | blondie | haircut | lady | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฑโ€โ™€"]; new_value=blond | blond-haired | blonde | hair | woman | woman: -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™โ€โ™‚"]; new_value=disgruntled | frown | frowning | gesture | man | upset -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™‡โ€โ™‚"]; new_value=apology | bowing | favor | gesture | man | sorry -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘โ€โš•"]; new_value=doctor | health | healthcare | nurse | therapist | worker -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘โ€๐Ÿ’ผ"]; new_value=architect | business | manager | office | white-collar | worker -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’‚"]; new_value=buckingham | guard | guardsman | helmet | london | palace -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’‚โ€โ™€"]; new_value=buckingham | guard | helmet | london | palace | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซƒ"]; new_value=belly | bloated | full | man | overeat | pregnant -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคถ"]; new_value=celebration | Christmas | claus | mother | Mrs. | santa -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆธ"]; new_value=good | hero | heroine | superhero | superpower | superpowers -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆธโ€โ™€"]; new_value=good | hero | heroine | superhero | superpower | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆนโ€โ™‚"]; new_value=criminal | evil | man | superpower | supervillain | villain -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆนโ€โ™€"]; new_value=criminal | evil | superpower | supervillain | villain | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸงŒ"]; new_value=fairy | fantasy | monster | tale | troll | trolling -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘จโ€๐Ÿฆฏ"]; new_value=accessibility | blind | cane | man | probing | white -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฉโ€๐Ÿฆฏ"]; new_value=accessibility | blind | cane | probing | white | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฏโ€โ™€"]; new_value=bunny | dancer | ear | ears | partying | women -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง–โ€โ™‚"]; new_value=man | in | sauna | room | sauna | steam | steamy -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง–โ€โ™€"]; new_value=room | sauna | steam | steamy | woman | in | sauna -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‡"]; new_value=horse | jockey | racehorse | racing | riding | sport -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒโ€โ™€"]; new_value=ball | driving | golf | golfing | range | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšตโ€โ™‚"]; new_value=bicycle | bike | biking | cyclist | man | mountain -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง˜โ€โ™‚"]; new_value=lotus | man | in | lotus | position | meditation | position | yoga -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง˜โ€โ™€"]; new_value=lotus | meditation | position | woman | in | lotus | position | yoga -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฑ"]; new_value=animal | cat | face | kitten | kitty | pet -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿˆ"]; new_value=animal | animals | cat | cats | kitten | pet -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฏ"]; new_value=animal | big | cat | face | predator | tiger -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸซŽ"]; new_value=alces | animal | antlers | elk | mammal | moose -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽ"]; new_value=animal | equestrian | farm | horse | racehorse | racing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฎ"]; new_value=animal | cow | face | farm | milk | moo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ„"]; new_value=animal | animals | cow | farm | milk | moo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿท"]; new_value=animal | bacon | face | farm | pig | pork -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ–"]; new_value=animal | bacon | farm | pig | pork | sow -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ"]; new_value=animal | Capricorn | farm | goat | milk | zodiac -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿช"]; new_value=animal | camel | desert | dromedary | hump | one -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ™"]; new_value=alpaca | animal | guanaco | llama | vicuรฑa | wool -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆฃ"]; new_value=animal | extinction | large | mammoth | tusk | woolly -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿป"]; new_value=animal | bear | face | grizzly | growl | honey -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฃ"]; new_value=animal | baby | bird | chick | egg | hatching -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆค"]; new_value=animal | bird | dodo | extinction | large | ornithology -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆฉ"]; new_value=animal | bird | flamboyant | flamingo | ornithology | tropical -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆœ"]; new_value=animal | bird | ornithology | parrot | pirate | talk -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ"]; new_value=animal | bearer | Ophiuchus | serpent | snake | zodiac -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฒ"]; new_value=animal | dragon | face | fairy | fairytale | tale -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‰"]; new_value=animal | dragon | fairy | fairytale | knights | tale -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ–"]; new_value=dinosaur | rex | Rex | t | T-Rex | Tyrannosaurus -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿณ"]; new_value=animal | beach | face | ocean | spouting | whale -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš"]; new_value=animal | beach | conch | sea | shell | spiral -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชธ"]; new_value=change | climate | coral | ocean | reef | sea -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ"]; new_value=animal | escargot | garden | nature | slug | snail -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ—"]; new_value=animal | bug | cricket | grasshopper | insect | Orthoptera -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒธ"]; new_value=blossom | cherry | flower | plant | spring | springtime -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒณ"]; new_value=deciduous | forest | green | habitat | shedding | tree -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒพ"]; new_value=ear | grain | grains | plant | rice | sheaf -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชบ"]; new_value=bird | branch | egg | eggs | nest | nesting -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒฝ"]; new_value=corn | crops | ear | farm | maize | maze -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅž"]; new_value=breakfast | crรชpe | food | hotcake | pancake | pancakes -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”"]; new_value=burger | eat | fast | food | hamburger | hungry -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•"]; new_value=cheese | food | hungry | pepperoni | pizza | slice -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅ™"]; new_value=falafel | flatbread | food | gyro | kebab | stuffed -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅ"]; new_value=cake | fish | food | pastry | restaurant | swirl -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿก"]; new_value=dango | dessert | Japanese | skewer | stick | sweet -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸฅŸ"]; new_value=dumpling | empanada | gyลza | jiaozi | pierogi | potsticker -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿจ"]; new_value=cream | dessert | food | ice | restaurant | sweet -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฉ"]; new_value=breakfast | dessert | donut | doughnut | food | sweet -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฐ"]; new_value=cake | dessert | pastry | shortcake | slice | sweet -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซ–"]; new_value=brew | drink | food | pot | tea | teapot -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅ‚"]; new_value=celebrate | clink | clinking | drink | glass | glasses -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‹"]; new_value=boba | bubble | food | milk | pearl | tea -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฝ"]; new_value=cooking | dinner | eat | fork | knife | plate -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชจ"]; new_value=boulder | heavy | rock | solid | stone | tough -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›–"]; new_value=home | house | hut | roundhouse | shelter | yurt -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ›ช"]; new_value=bless | chapel | Christian | church | cross | religion -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•"]; new_value=Jew | Jewish | judaism | religion | synagogue | temple -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•‹"]; new_value=hajj | islam | kaaba | Muslim | religion | umrah -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ„"]; new_value=morning | mountains | over | sun | sunrise -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ˆ"]; new_value=barber | cut | fresh | haircut | pole | shave -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš˜"]; new_value=automobile | car | cars | drove | oncoming | vehicle -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›ž"]; new_value=car | circle | tire | turn | vehicle | wheel -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ›ต"]; new_value=boat | resort | sailboat | sailing | sea | yacht -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›ซ"]; new_value=aeroplane | airplane | check-in | departure | departures | plane -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš "]; new_value=cable | cableway | gondola | lift | mountain | ski -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšก"]; new_value=aerial | cable | car | gondola | ropeway | tramway -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›ธ"]; new_value=aliens | extra | flying | saucer | terrestrial | UFO -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงณ"]; new_value=bag | luggage | packing | roller | suitcase | travel -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•–"]; new_value=0 | 7:00 | 7 | clock | oโ€™clock | seven -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•™"]; new_value=0 | 10:00 | 10 | clock | oโ€™clock | ten -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ˜€"]; new_value=bright | rays | space | sun | sunny | weather -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ€"]; new_value=cyclone | dizzy | hurricane | twister | typhoon | weather -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ˜”"]; new_value=clothing | drop | drops | rain | umbrella | weather -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽƒ"]; new_value=celebration | halloween | jack | jack-o-lantern | lantern | pumpkin -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽŠ"]; new_value=ball | celebrate | celebration | confetti | party | woohoo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽ"]; new_value=bamboo | celebration | decoration | Japanese | pine | plant -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿˆ"]; new_value=american | ball | bowl | football | sport | super -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅ‹"]; new_value=arts | judo | karate | martial | taekwondo | uniform -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›ท"]; new_value=luge | sled | sledge | sleigh | snow | toboggan -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงธ"]; new_value=bear | plaything | plush | stuffed | teddy | toy -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชฉ"]; new_value=ball | dance | disco | glitter | mirror | party -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ™ฅ"]; new_value=card | emotion | game | heart | hearts | suit -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽด"]; new_value=card | cards | flower | game | Japanese | playing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ–ผ"]; new_value=art | frame | framed | museum | painting | picture -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘”"]; new_value=clothing | employed | necktie | serious | shirt | tie -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงฅ"]; new_value=brr | bundle | up | coat | cold | jacket -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘—"]; new_value=clothes | clothing | dress | dressed | fancy | shopping -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฉฒ"]; new_value=bathing | briefs | one-piece | suit | swimsuit | underwear -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฉณ"]; new_value=bathing | pants | shorts | suit | swimsuit | underwear -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงข"]; new_value=baseball | bent | billed | cap | dad | hat -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿช–"]; new_value=army | helmet | military | soldier | war | warrior -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”‡"]; new_value=mute | muted | quiet | silent | sound | speaker -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”Š"]; new_value=high | loud | music | sound | speaker | volume -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ข"]; new_value=address | communication | loud | loudspeaker | public | sound -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽค"]; new_value=karaoke | mic | microphone | music | sing | sound -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿช˜"]; new_value=beat | conga | drum | instrument | long | rhythm -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชซ"]; new_value=battery | drained | electronic | energy | low | power -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ฟ"]; new_value=blu-ray | CD | computer | disk | dvd | optical -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“€"]; new_value=Blu-ray | cd | computer | disk | DVD | optical -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฎ"]; new_value=bar | lantern | light | paper | red | restaurant -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“—"]; new_value=book | education | fantasy | green | library | reading -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“˜"]; new_value=blue | book | education | fantasy | library | reading -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“™"]; new_value=book | education | fantasy | library | orange | reading -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงพ"]; new_value=accounting | bookkeeping | evidence | invoice | proof | receipt -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ฆ"]; new_value=box | communication | delivery | package | parcel | shipping -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ช"]; new_value=closed | flag | lowered | mail | mailbox | postbox -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ฌ"]; new_value=flag | mail | mailbox | open | postbox | raised -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ญ"]; new_value=flag | lowered | mail | mailbox | open | postbox -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“"]; new_value=angle | edge | math | ruler | straight | straightedge -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”"]; new_value=ink | lock | locked | nib | pen | privacy -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”"]; new_value=bike | closed | key | lock | locked | secure -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”‘"]; new_value=key | keys | lock | major | password | unlock -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ฃ"]; new_value=bomb | boom | comic | dangerous | explosion | hot -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ›“โ€๐Ÿ’ฅ"]; new_value=break | breaking | broken | chain | cuffs | freedom -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงฐ"]; new_value=box | chest | mechanic | red | tool | toolbox -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงฌ"]; new_value=biologist | dna | evolution | gene | genetics | life -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ก"]; new_value=aliens | antenna | contact | dish | satellite | science -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ—ฟ"]; new_value=face | moai | moyai | statue | stoneface | travel -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšซ"]; new_value=entry | forbidden | no | not | prohibited | smoke -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšญ"]; new_value=forbidden | no | not | prohibited | smoke | smoking -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšฏ"]; new_value=forbidden | litter | littering | no | not | prohibited -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšท"]; new_value=forbidden | no | not | pedestrian | pedestrians | prohibited -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ƒ"]; new_value=arrow | arrows | clockwise | refresh | reload | vertical -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โœก"]; new_value=David | Jew | Jewish | judaism | religion | star -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ˜ช"]; new_value=crescent | islam | Muslim | ramadan | religion | star -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ฏ"]; new_value=dotted | fortune | jewish | judaism | six-pointed | star -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ™Ž"]; new_value=balance | horoscope | justice | Libra | scales | zodiac -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”‚"]; new_value=arrow | button | clockwise | once | repeat | single -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โฉ"]; new_value=arrow | button | double | fast | fast-forward | forward -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โญ"]; new_value=arrow | button | next | scene | track | triangle -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โช"]; new_value=arrow | button | double | fast | reverse | rewind -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โœ–"]; new_value=ร— | cancel | multiplication | multiply | sign | x -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โž–"]; new_value=- | โˆ’ | heavy | math | minus | sign -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โž—"]; new_value=รท | divide | division | heavy | math | sign -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ”"]; new_value=? | mark | outlined | punctuation | question | white -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ•"]; new_value=! | exclamation | mark | outlined | punctuation | white -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ฑ"]; new_value=anchor | emblem | poseidon | ship | tool | trident -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โญ•"]; new_value=circle | heavy | hollow | large | o | red -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ฃ"]; new_value=& | % | โ™ช | ใ€’ | input | symbols -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ†Ž"]; new_value=(blood | AB | blood | button | type | type) -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ…ฑ"]; new_value=(blood | B | blood | button | type | type) -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ…พ"]; new_value=(blood | blood | button | O | type | type) -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="#"]; new_value=hash | hashtag | lb | number | pound | sign -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆฒ"]; new_value=bald | chemotherapy | hair | hairless | no | shaven -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿณโ€โšง"]; new_value=blue | flag | light | pink | transgender | white -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿดโ€โ˜ "]; new_value=flag | Jolly | pirate | plunder | Roger | treasure -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™‚"]; new_value=face | happy | slightly | smile | smiling -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿค‘"]; new_value=face | money | money-mouth | mouth | paid -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜ถโ€๐ŸŒซ"]; new_value=absentminded | clouds | face | fog | head -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคฅ"]; new_value=face | liar | lie | lying | pinocchio -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™‚โ€โ†”"]; new_value=head | horizontally | no | shake | shaking -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™‚โ€โ†•"]; new_value=head | nod | shaking | vertically | yes -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™"]; new_value=face | frown | frowning | sad | slightly -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โฃ"]; new_value=exclamation | heart | heavy | mark | punctuation -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘โ€๐Ÿ—จ"]; new_value=balloon | bubble | eye | speech | witness -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ—จ"]; new_value=balloon | bubble | dialog | left | speech -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿค˜"]; new_value=finger | hand | horns | rock-on | sign -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซถ"]; new_value=<3 | hands | heart | love | you -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆถ"]; new_value=ankle | feet | foot | kick | stomp -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆป"]; new_value=accessibility | aid | ear | hard | hearing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆท"]; new_value=dentist | pearly | teeth | tooth | white -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆด"]; new_value=bone | bones | dog | skeleton | wishbone -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘"]; new_value=adult | gender | gender-neutral | person | unspecified -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง”"]; new_value=beard | bearded | bewhiskered | person | person: -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฑโ€โ™‚"]; new_value=blond | blond-haired | hair | man | man: -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™†โ€โ™€"]; new_value=gesture | gesturing | hand | OK | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง"]; new_value=accessibility | deaf | ear | hear | person -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘จโ€๐Ÿซ"]; new_value=instructor | lecturer | man | professor | teacher -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฉโ€๐Ÿซ"]; new_value=instructor | lecturer | professor | teacher | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘จโ€โš–"]; new_value=judge | justice | law | man | scales -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฉโ€โš–"]; new_value=judge | justice | law | scales | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘จโ€๐Ÿ”ง"]; new_value=electrician | man | mechanic | plumber | tradesperson -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฉโ€๐Ÿ”ง"]; new_value=electrician | mechanic | plumber | tradesperson | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘จโ€๐Ÿญ"]; new_value=assembly | factory | industrial | man | worker -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฉโ€๐Ÿญ"]; new_value=assembly | factory | industrial | woman | worker -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘โ€๐Ÿ”ฌ"]; new_value=biologist | chemist | engineer | physicist | scientist -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘โ€๐Ÿ’ป"]; new_value=coder | developer | inventor | software | technologist -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘โ€๐ŸŽค"]; new_value=actor | entertainer | rock | singer | star -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคฑ"]; new_value=baby | breast | breast-feeding | feeding | nursing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆธโ€โ™‚"]; new_value=good | hero | man | superhero | superpower -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸงŸโ€โ™‚"]; new_value=dead | man | undead | walking | zombie -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸงŸโ€โ™€"]; new_value=dead | undead | walking | woman | zombie -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸงŽ"]; new_value=kneel | kneeling | knees | person | your -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘โ€๐Ÿฆฏ"]; new_value=accessibility | blind | cane | person | white -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‚"]; new_value=ski | snow | snowboard | snowboarder | sport -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŠโ€โ™€"]; new_value=sport | swim | swimmer | swimming | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ›นโ€โ™€"]; new_value=ball | basketball | bouncing | player | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‹โ€โ™‚"]; new_value=lifter | lifting | man | weight | weights -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›€"]; new_value=bath | bathtub | person | taking | tub -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ—ฃ"]; new_value=face | head | silhouette | speak | speaking -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•"]; new_value=animal | animals | dog | dogs | pet -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆฎ"]; new_value=accessibility | animal | blind | dog | guide -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•โ€๐Ÿฆบ"]; new_value=accessibility | animal | assistance | dog | service -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆฌ"]; new_value=animal | bison | buffalo | herd | wisent -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฐ"]; new_value=animal | bunny | face | pet | rabbit -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿปโ€โ„"]; new_value=animal | arctic | bear | polar | white -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ˜"]; new_value=animal | joey | jump | kangaroo | marsupial -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿพ"]; new_value=feet | paw | paws | print | prints -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿค"]; new_value=animal | baby | bird | chick | ornithology -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง"]; new_value=animal | antartica | bird | ornithology | penguin -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•Š"]; new_value=bird | dove | fly | ornithology | peace -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ‰"]; new_value=animal | bird | ornithology | owl | wise -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชถ"]; new_value=bird | feather | flight | light | plumage -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ•"]; new_value=brachiosaurus | brontosaurus | dinosaur | diplodocus | sauropod -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฌ"]; new_value=animal | beach | dolphin | flipper | ocean -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆญ"]; new_value=animal | lion | ocean | sea | seal -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชณ"]; new_value=animal | cockroach | insect | pest | roach -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชฑ"]; new_value=animal | annelid | earthworm | parasite | worm -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ "]; new_value=amoeba | bacteria | microbe | science | virus -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒป"]; new_value=flower | outdoors | plant | sun | sunflower -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒผ"]; new_value=blossom | buttercup | dandelion | flower | plant -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒท"]; new_value=blossom | flower | growth | plant | tulip -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒฑ"]; new_value=plant | sapling | seedling | sprout | young -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒฒ"]; new_value=christmas | evergreen | forest | pine | tree -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒด"]; new_value=beach | palm | plant | tree | tropical -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒต"]; new_value=cactus | desert | drought | nature | plant -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‚"]; new_value=autumn | fall | fallen | falling | leaf -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿƒ"]; new_value=blow | flutter | fluttering | leaf | wind -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชน"]; new_value=branch | empty | home | nest | nesting -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ"]; new_value=colada | fruit | pina | pineapple | tropical -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’"]; new_value=berries | cherries | cherry | fruit | red -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซ‘"]; new_value=bell | capsicum | food | pepper | vegetable -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅœ"]; new_value=food | nut | peanut | peanuts | vegetable -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซ˜"]; new_value=beans | food | kidney | legume | small -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅฏ"]; new_value=bagel | bakery | bread | breakfast | schmear -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒญ"]; new_value=dog | frankfurter | hot | hotdog | sausage -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซ”"]; new_value=food | mexican | pamonha | tamale | wrapped -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅ˜"]; new_value=casserole | food | paella | pan | shallow -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ"]; new_value=food | meatballs | pasta | restaurant | spaghetti -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅฎ"]; new_value=autumn | cake | festival | moon | yuรจbวng -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆž"]; new_value=animal | bisque | claws | lobster | seafood -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง"]; new_value=dessert | ice | restaurant | shaved | sweet -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿช"]; new_value=chip | chocolate | cookie | dessert | sweet -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿพ"]; new_value=bar | bottle | cork | drink | popping -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงƒ"]; new_value=beverage | box | juice | straw | sweet -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒŽ"]; new_value=Americas | earth | globe | showing | world -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงญ"]; new_value=compass | direction | magnetic | navigation | orienteering -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงฑ"]; new_value=brick | bricks | clay | mortar | wall -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿข"]; new_value=building | city | cubical | job | office -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿช"]; new_value=24 | building | convenience | hours | store -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’’"]; new_value=chapel | hitched | nuptuals | romance | wedding -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•Œ"]; new_value=islam | masjid | mosque | Muslim | religion -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽก"]; new_value=amusement | ferris | park | theme | wheel -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽข"]; new_value=amusement | coaster | park | roller | theme -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš„"]; new_value=high-speed | railway | shinkansen | speed | train -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšˆ"]; new_value=arrived | light | monorail | rail | railway -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš‹"]; new_value=bus | car | tram | trolley | trolleybus -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš"]; new_value=bus | drive | minibus | van | vehicle -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš“"]; new_value=5โ€“0 | car | cops | patrol | police -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšš"]; new_value=car | delivery | drive | truck | vehicle -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›น"]; new_value=board | skate | skateboard | skater | wheels -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›ผ"]; new_value=blades | roller | skate | skates | sport -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš"]; new_value=copter | helicopter | roflcopter | travel | vehicle -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš€"]; new_value=launch | rocket | rockets | space | travel -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โŒ›"]; new_value=done | hourglass | sand | time | timer -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ’"]; new_value=crescent | dreams | moon | space | waxing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ›"]; new_value=face | first | moon | quarter | space -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒœ"]; new_value=dreams | face | last | moon | quarter -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โญ"]; new_value=astronomy | medium | star | stars | white -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ "]; new_value=falling | night | shooting | space | star -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ›…"]; new_value=cloud | cloudy | sun | behind | cloud | weather -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ›ˆ"]; new_value=cloud | lightning | rain | thunder | thunderstorm -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒค"]; new_value=cloud | sun | behind | cloud | weather -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒฅ"]; new_value=cloud | sun | behind | cloud | weather -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒฆ"]; new_value=cloud | rain | sun | behind | cloud | weather -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽ†"]; new_value=boom | celebration | entertainment | fireworks | yolo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽ‡"]; new_value=boom | celebration | fireworks | sparkle | sparkler -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โœจ"]; new_value=* | magic | sparkle | sparkles | star -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽ‹"]; new_value=banner | celebration | Japanese | tanabata | tree -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽŽ"]; new_value=celebration | doll | dolls | festival | Japanese -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ…"]; new_value=award | gold | medal | sports | winner -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅ‡"]; new_value=1st | first | gold | medal | place -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅˆ"]; new_value=2nd | medal | place | second | silver -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅ‰"]; new_value=3rd | bronze | medal | place | third -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โšฝ"]; new_value=ball | football | futbol | soccer | sport -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸฅŽ"]; new_value=ball | glove | softball | sports | underarm -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽณ"]; new_value=ball | bowling | game | sport | strike -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘"]; new_value=ball | field | game | hockey | stick -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’"]; new_value=game | hockey | ice | puck | stick -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅ"]; new_value=ball | goal | lacrosse | sports | stick -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿธ"]; new_value=badminton | birdie | game | racquet | shuttlecock -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽฃ"]; new_value=entertainment | fish | fishing | pole | sport -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿช„"]; new_value=magic | magician | wand | witch | wizard -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงฉ"]; new_value=clue | interlocking | jigsaw | piece | puzzle -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ™ฃ"]; new_value=card | club | clubs | game | suit -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงต"]; new_value=needle | sewing | spool | string | thread -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘“"]; new_value=clothing | eye | eyeglasses | eyewear | glasses -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•ถ"]; new_value=dark | eye | eyewear | glasses | sunglasses -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงฃ"]; new_value=bundle | up | cold | neck | scarf -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ก"]; new_value=clothing | sandal | shoe | woman | womanโ€™s -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชฎ"]; new_value=Afro | comb | groom | hair | pick -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ฟ"]; new_value=beads | clothing | necklace | prayer | religion -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ˆ"]; new_value=low | soft | sound | speaker | volume -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽถ"]; new_value=music | musical | note | notes | sound -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽน"]; new_value=instrument | keyboard | music | musical | piano -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ฑ"]; new_value=cell | communication | mobile | phone | telephone -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ž"]; new_value=communication | phone | receiver | telephone | voip -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ป"]; new_value=computer | laptop | office | pc | personal -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ฝ"]; new_value=cinema | film | movie | projector | video -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ก"]; new_value=bulb | comic | electric | idea | light -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ฆ"]; new_value=electric | flashlight | light | tool | torch -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ—ž"]; new_value=news | newspaper | paper | rolled | rolled-up -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“"]; new_value=communication | media | memo | notes | pencil -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“‡"]; new_value=card | index | old | rolodex | school -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“"]; new_value=location | map | pin | pushpin | round -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โœ‚"]; new_value=cut | cutting | paper | scissors | tool -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”“"]; new_value=cracked | lock | open | unlock | unlocked -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”จ"]; new_value=hammer | home | improvement | repairs | tool -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿช“"]; new_value=axe | chop | hatchet | split | wood -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ง"]; new_value=home | improvement | spanner | tool | wrench -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿช›"]; new_value=flathead | handy | screw | screwdriver | tool -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ฉ"]; new_value=bolt | home | improvement | nut | tool -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆฏ"]; new_value=accessibility | blind | cane | probing | white -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ฌ"]; new_value=experiment | lab | microscope | science | tool -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ญ"]; new_value=contact | extraterrestrial | science | telescope | tool -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชž"]; new_value=makeup | mirror | reflection | reflector | speculum -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงด"]; new_value=bottle | lotion | moisturizer | shampoo | sunscreen -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงท"]; new_value=diaper | pin | punk | rock | safety -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงฝ"]; new_value=absorbing | cleaning | porous | soak | sponge -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšป"]; new_value=bathroom | lavatory | restroom | toilet | WC -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›…"]; new_value=baggage | case | left | locker | luggage -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšธ"]; new_value=child | children | crossing | pedestrian | traffic -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšฑ"]; new_value=dry | non-drinking | non-potable | prohibited | water -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โฌ†"]; new_value=arrow | cardinal | direction | north | up -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†—"]; new_value=arrow | direction | intercardinal | northeast | up-right -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โžก"]; new_value=arrow | cardinal | direction | east | right -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†˜"]; new_value=arrow | direction | down-right | intercardinal | southeast -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โฌ‡"]; new_value=arrow | cardinal | direction | down | south -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†™"]; new_value=arrow | direction | down-left | intercardinal | southwest -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โฌ…"]; new_value=arrow | cardinal | direction | left | west -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†–"]; new_value=arrow | direction | intercardinal | northwest | up-left -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โœ"]; new_value=christ | Christian | cross | latin | religion -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ™‰"]; new_value=bull | horoscope | ox | Taurus | zodiac -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ™"]; new_value=horoscope | Scorpio | scorpion | Scorpius | zodiac -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ™’"]; new_value=Aquarius | bearer | horoscope | water | zodiac -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ›Ž"]; new_value=bearer | Ophiuchus | serpent | snake | zodiac -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”€"]; new_value=arrow | button | crossed | shuffle | tracks -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–ถ"]; new_value=arrow | button | play | right | triangle -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—€"]; new_value=arrow | button | left | reverse | triangle -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ผ"]; new_value=arrow | button | red | up | upwards -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โซ"]; new_value=arrow | button | double | fast | up -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ฝ"]; new_value=arrow | button | down | downwards | red -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โฌ"]; new_value=arrow | button | double | down | fast -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โธ"]; new_value=bar | button | double | pause | vertical -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ด"]; new_value=cell | mobile | off | phone | telephone -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ“"]; new_value=? | mark | punctuation | question | red -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—"]; new_value=! | exclamation | mark | punctuation | red -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โš•"]; new_value=aesculapius | medical | medicine | staff | symbol -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ” "]; new_value=ABCD | input | latin | letters | uppercase -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ก"]; new_value=abcd | input | latin | letters | lowercase -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ค"]; new_value=abc | alphabet | input | latin | letters -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ…ฐ"]; new_value=(blood | blood | button | type | type) -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿˆ‚"]; new_value=service | button | charge | Japanese | katakana -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿˆš"]; new_value=free | button | charge | ideograph | Japanese -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”บ"]; new_value=geometric | pointed | red | triangle | up -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ป"]; new_value=down | geometric | pointed | red | triangle -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ "]; new_value=comic | diamond | dot | geometric -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ณ"]; new_value=button | geometric | outlined | square | white -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿป"]; new_value=1โ€“2 | light | skin | tone | type -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿผ"]; new_value=3 | medium-light | skin | tone | type -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฝ"]; new_value=4 | medium | skin | tone | type -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿพ"]; new_value=5 | medium-dark | skin | tone | type -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฟ"]; new_value=6 | dark | skin | tone | type -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšฉ"]; new_value=construction | flag | golf | post | triangular -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽŒ"]; new_value=celebration | cross | crossed | flags | Japanese -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™ƒ"]; new_value=face | hehe | smile | upside-down -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿค’"]; new_value=face | ill | sick | thermometer -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿค "]; new_value=cowboy | cowgirl | face | hat -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ˜น"]; new_value=face | frown | frowning | sad -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜พ"]; new_value=animal | cat | face | pouting -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โค"]; new_value=emotion | heart | love | red -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ–ค"]; new_value=black | evil | heart | wicked -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคš"]; new_value=back | backhand | hand | raised -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โœŒ"]; new_value=hand | peace | v | victory -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆพ"]; new_value=accessibility | arm | mechanical | prosthetic -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆฟ"]; new_value=accessibility | leg | mechanical | prosthetic -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘"]; new_value=1 | body | eye | one -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘…"]; new_value=body | lick | slurp | tongue -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฆ"]; new_value=boy | child | kid | young -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’โ€โ™€"]; new_value=hand | sassy | tipping | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™‹โ€โ™€"]; new_value=gesture | hand | raising | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘โ€๐Ÿซ"]; new_value=instructor | lecturer | professor | teacher -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘โ€โš–"]; new_value=judge | justice | law | scales -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘จโ€๐ŸŒพ"]; new_value=farmer | gardener | man | rancher -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฉโ€๐ŸŒพ"]; new_value=farmer | gardener | rancher | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘โ€๐Ÿ”ง"]; new_value=electrician | mechanic | plumber | tradesperson -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘โ€๐Ÿญ"]; new_value=assembly | factory | industrial | worker -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘จโ€๐Ÿš€"]; new_value=astronaut | man | rocket | space -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฉโ€๐Ÿš€"]; new_value=astronaut | rocket | space | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฎโ€โ™‚"]; new_value=cop | man | officer | police -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•ตโ€โ™‚"]; new_value=detective | man | sleuth | spy -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•ตโ€โ™€"]; new_value=detective | sleuth | spy | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคต"]; new_value=formal | groom | person | tuxedo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฐ"]; new_value=bride | person | veil | wedding -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง™โ€โ™‚"]; new_value=mage | man | sorcerer | wizard -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง™โ€โ™€"]; new_value=mage | sorceress | witch | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงšโ€โ™‚"]; new_value=fairy | man | Oberon | Puck -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง›โ€โ™‚"]; new_value=Dracula | man | undead | vampire -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’†โ€โ™€"]; new_value=face | getting | massage | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšถโ€โ™‚"]; new_value=hike | man | walk | walking -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘โ€๐Ÿฆผ"]; new_value=accessibility | motorized | person | wheelchair -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘จโ€๐Ÿฆผ"]; new_value=accessibility | man | motorized | wheelchair -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฉโ€๐Ÿฆผ"]; new_value=accessibility | motorized | wheelchair | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘โ€๐Ÿฆฝ"]; new_value=accessibility | manual | person | wheelchair -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘จโ€๐Ÿฆฝ"]; new_value=accessibility | man | manual | wheelchair -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฉโ€๐Ÿฆฝ"]; new_value=accessibility | manual | wheelchair | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿƒโ€โ™‚"]; new_value=man | marathon | racing | running -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•ด"]; new_value=business | levitating | person | suit -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคบ"]; new_value=fencer | fencing | person | sword -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšฃโ€โ™‚"]; new_value=boat | man | rowboat | rowing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšดโ€โ™‚"]; new_value=bicycle | biking | cyclist | man -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคนโ€โ™€"]; new_value=juggle | juggling | multitask | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ค"]; new_value=bust | mysterious | shadow | silhouette -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘โ€๐Ÿง‘โ€๐Ÿง’โ€๐Ÿง’"]; new_value=adult, | child | child, | family: -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘โ€๐Ÿง’โ€๐Ÿง’"]; new_value=adult, | child | child, | family: -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿต"]; new_value=animal | banana | face | monkey -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆง"]; new_value=animal | ape | monkey | orangutan -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฉ"]; new_value=animal | dog | fluffy | poodle -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ"]; new_value=animal | curious | raccoon | sly -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿƒ"]; new_value=animal | buffalo | water | zoo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿน"]; new_value=animal | face | hamster | pet -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‡"]; new_value=animal | bunny | pet | rabbit -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆซ"]; new_value=animal | beaver | dam | teeth -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿผ"]; new_value=animal | bamboo | face | panda -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆฆ"]; new_value=animal | fishing | otter | playful -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆก"]; new_value=animal | badger | honey | pester -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆƒ"]; new_value=bird | gobble | thanksgiving | turkey -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”"]; new_value=animal | bird | chicken | ornithology -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“"]; new_value=animal | bird | ornithology | rooster -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ…"]; new_value=animal | bird | eagle | ornithology -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ†"]; new_value=animal | bird | duck | ornithology -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿข"]; new_value=animal | terrapin | tortoise | turtle -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‹"]; new_value=animal | beach | ocean | whale -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ "]; new_value=animal | fish | fishes | tropical -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™"]; new_value=animal | creature | ocean | octopus -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›"]; new_value=animal | bug | garden | insect -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿœ"]; new_value=animal | ant | garden | insect -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชฒ"]; new_value=animal | beetle | bug | insect -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ‚"]; new_value=Scorpio | scorpion | Scorpius | zodiac -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‡"]; new_value=dionyses | fruit | grape | grapes -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‹"]; new_value=citrus | fruit | lemon | sour -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅญ"]; new_value=food | fruit | mango | tropical -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ…"]; new_value=food | fruit | tomato | vegetable -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅฅ"]; new_value=coconut | colada | palm | piรฑa -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅ’"]; new_value=cucumber | food | pickle | vegetable -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅ–"]; new_value=baguette | bread | food | french -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‡"]; new_value=breakfast | indecisive | iron | waffle -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅ“"]; new_value=bacon | breakfast | food | meat -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŸ"]; new_value=fast | food | french | fries -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฒ"]; new_value=food | pot | soup | stew -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™"]; new_value=ball | food | Japanese | rice -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ "]; new_value=food | potato | roasted | sweet -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿค"]; new_value=fried | prawn | shrimp | tempura -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ"]; new_value=food | shellfish | shrimp | small -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ‘"]; new_value=animal | food | molusc | squid -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฎ"]; new_value=custard | dessert | pudding | sweet -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸงŠ"]; new_value=cold | cube | ice | iceberg -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅข"]; new_value=chopsticks | hashi | jeotgarak | kuaizi -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”"]; new_value=cold | mountain | snow | snow-capped -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ‹"]; new_value=eruption | mountain | nature | volcano -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ—ป"]; new_value=fuji | mount | mountain | nature -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชต"]; new_value=log | lumber | timber | wood -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฃ"]; new_value=building | Japanese | office | post -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿค"]; new_value=building | European | office | post -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅ"]; new_value=building | doctor | hospital | medicine -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ…"]; new_value=morning | nature | sun | sunrise -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ‡"]; new_value=building | dusk | sun | sunset -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ™จ"]; new_value=hot | hotsprings | springs | steaming -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš†"]; new_value=arrived | choo | railway | train -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšž"]; new_value=car | mountain | railway | trip -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸšŽ"]; new_value=bus | tram | trolley | trolleybus -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš—"]; new_value=automobile | car | driving | vehicle -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšข"]; new_value=boat | passenger | ship | travel -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›ฉ"]; new_value=aeroplane | airplane | plane | small -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿช‚"]; new_value=hang-glide | parachute | parasail | skydive -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ‘"]; new_value=dark | moon | new | space -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ“"]; new_value=first | moon | quarter | space -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ”"]; new_value=gibbous | moon | space | waxing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ–"]; new_value=gibbous | moon | space | waning -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ—"]; new_value=last | moon | quarter | space -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ˜"]; new_value=crescent | moon | space | waning -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ™"]; new_value=crescent | moon | ramadan | space -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒš"]; new_value=face | moon | new | space -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ"]; new_value=bright | face | full | moon -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿช"]; new_value=planet | ringed | saturn | saturnine -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒจ"]; new_value=cloud | cold | snow | weather -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒช"]; new_value=cloud | tornado | weather | whirlwind -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒฌ"]; new_value=blow | cloud | face | wind -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ‚"]; new_value=closed | clothing | rain | umbrella -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ›ฑ"]; new_value=ground | rain | sun | umbrella -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ„"]; new_value=cold | snow | snowflake | weather -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽˆ"]; new_value=balloon | birthday | celebrate | celebration -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽ"]; new_value=bell | celebration | chime | wind -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽ‘"]; new_value=celebration | ceremony | moon | viewing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽ–"]; new_value=award | celebration | medal | military -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ€"]; new_value=ball | basketball | hoop | sport -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‰"]; new_value=ball | football | rugby | sport -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽพ"]; new_value=ball | racquet | sport | tennis -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ"]; new_value=ball | bat | cricket | game -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ›ณ"]; new_value=flag | golf | hole | sport -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคฟ"]; new_value=diving | mask | scuba | snorkeling -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽฝ"]; new_value=athletics | running | sash | shirt -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽฟ"]; new_value=ski | skis | snow | sport -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸฅŒ"]; new_value=curling | game | rock | stone -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽฎ"]; new_value=controller | entertainment | game | video -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•น"]; new_value=game | joystick | video | videogame -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽฒ"]; new_value=dice | die | entertainment | game -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ™ "]; new_value=card | game | spade | suit -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ™ฆ"]; new_value=card | diamond | game | suit -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ™Ÿ"]; new_value=chess | dupe | expendable | pawn -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿƒ"]; new_value=card | game | joker | wildcard -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ€„"]; new_value=dragon | game | mahjong | red -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงถ"]; new_value=ball | crochet | knit | yarn -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฉฑ"]; new_value=bathing | one-piece | suit | swimsuit -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›"]; new_value=bag | bags | hotel | shopping -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’„"]; new_value=cosmetics | date | lipstick | makeup -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”‰"]; new_value=medium | sound | speaker | volume -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ””"]; new_value=bell | break | church | sound -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽผ"]; new_value=music | musical | note | score -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽต"]; new_value=music | musical | note | sound -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽ™"]; new_value=mic | microphone | music | studio -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ป"]; new_value=entertainment | radio | tbt | video -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽท"]; new_value=instrument | music | sax | saxophone -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽธ"]; new_value=guitar | instrument | music | strat -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ฝ"]; new_value=computer | disk | minidisk | optical -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽž"]; new_value=cinema | film | frames | movie -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽฌ"]; new_value=action | board | clapper | movie -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“น"]; new_value=camcorder | camera | tbt | video -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“„"]; new_value=document | facing | up | page -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ฐ"]; new_value=communication | news | newspaper | paper -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“‘"]; new_value=bookmark | mark | marker | tabs -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โœ‰"]; new_value=e-mail | email | envelope | letter -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ง"]; new_value=e-mail | email | letter | mail -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ—’"]; new_value=note | notepad | pad | spiral -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“Š"]; new_value=bar | chart | data | graph -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“‹"]; new_value=clipboard | do | list | notes -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ–‡"]; new_value=link | linked | paperclip | paperclips -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”’"]; new_value=closed | lock | locked | private -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ—"]; new_value=clue | key | lock | old -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ›"]; new_value=hammer | mining | pick | tool -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ› "]; new_value=hammer | spanner | tool | wrench -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชƒ"]; new_value=boomerang | rebound | repercussion | weapon -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โš™"]; new_value=cog | cogwheel | gear | tool -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ—œ"]; new_value=clamp | compress | tool | vice -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชœ"]; new_value=climb | ladder | rung | step -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฉบ"]; new_value=doctor | heart | medicine | stethoscope -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšช"]; new_value=back | closet | door | front -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›—"]; new_value=accessibility | elevator | hoist | lift -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงน"]; new_value=broom | cleaning | sweeping | witch -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงบ"]; new_value=basket | farming | laundry | picnic -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงป"]; new_value=paper | roll | toilet | towels -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿชฃ"]; new_value=bucket | cask | pail | vat -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงฏ"]; new_value=extinguish | extinguisher | fire | quench -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โšฐ"]; new_value=coffin | dead | death | vampire -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โšฑ"]; new_value=ashes | death | funeral | urn -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšฎ"]; new_value=bin | litter | litterbin | sign -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ™ฟ"]; new_value=access | handicap | symbol | wheelchair -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ฉ"]; new_value=arrow | curving | left | right -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ช"]; new_value=arrow | curving | left | right -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โคด"]; new_value=arrow | curving | right | up -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โคต"]; new_value=arrow | curving | down | right -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”œ"]; new_value=arrow | brb | omw | SOON -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”"]; new_value=arrow | homie | TOP | up -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›"]; new_value=place | pray | religion | worship -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ˜ธ"]; new_value=Buddhist | dharma | religion | wheel -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ˜ฆ"]; new_value=Christian | cross | orthodox | religion -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ˜ฎ"]; new_value=healing | peace | peaceful | symbol -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ™ˆ"]; new_value=Aries | horoscope | ram | zodiac -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ™Š"]; new_value=Gemini | horoscope | twins | zodiac -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ™‹"]; new_value=Cancer | crab | horoscope | zodiac -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ™Œ"]; new_value=horoscope | Leo | lion | zodiac -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ™"]; new_value=archer | horoscope | Sagittarius | zodiac -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ™‘"]; new_value=Capricorn | goat | horoscope | zodiac -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ™“"]; new_value=fish | horoscope | Pisces | zodiac -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”"]; new_value=arrow | button | clockwise | repeat -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽฆ"]; new_value=camera | cinema | film | movie -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”…"]; new_value=brightness | button | dim | low -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”†"]; new_value=bright | brightness | button | light -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ™พ"]; new_value=forever | infinity | unbounded | universal -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ฑ"]; new_value=bank | currency | exchange | money -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โžฟ"]; new_value=curl | curly | double | loop -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ„ข"]; new_value=mark | TM | trade | trademark -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ†™"]; new_value=button | mark | UP | UP! -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿˆ"]; new_value=here | button | Japanese | katakana -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿˆฏ"]; new_value=reserved | button | ideograph | Japanese -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‰"]; new_value=bargain | button | ideograph | Japanese -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿˆน"]; new_value=discount | button | ideograph | Japanese -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿˆฒ"]; new_value=prohibited | button | ideograph | Japanese -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‰‘"]; new_value=acceptable | button | ideograph | Japanese -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿˆธ"]; new_value=application | button | ideograph | Japanese -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿˆณ"]; new_value=vacancy | button | ideograph | Japanese -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ใŠ—"]; new_value=congratulations | button | ideograph | Japanese -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ใŠ™"]; new_value=secret | button | ideograph | Japanese -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โฌ›"]; new_value=black | geometric | large | square -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โฌœ"]; new_value=geometric | large | square | white -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—ผ"]; new_value=black | geometric | medium | square -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—ป"]; new_value=geometric | medium | square | white -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—พ"]; new_value=black | geometric | medium-small | square -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—ฝ"]; new_value=geometric | medium-small | square | white -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–ช"]; new_value=black | geometric | small | square -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–ซ"]; new_value=geometric | small | square | white -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ถ"]; new_value=diamond | geometric | large | orange -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ท"]; new_value=blue | diamond | geometric | large -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ธ"]; new_value=diamond | geometric | orange | small -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”น"]; new_value=blue | diamond | geometric | small -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ฒ"]; new_value=black | button | geometric | square -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆฐ"]; new_value=ginger | hair | red | redhead -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆฑ"]; new_value=afro | curly | hair | ringlets -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆณ"]; new_value=gray | hair | old | white -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿค–"]; new_value=face | monster | robot -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ–•"]; new_value=finger | hand | middle -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿค›"]; new_value=fist | left-facing | leftwards -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคœ"]; new_value=fist | right-facing | rightwards -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โœ"]; new_value=hand | write | writing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคณ"]; new_value=camera | phone | selfie -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง "]; new_value=brain | intelligent | smart -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง”โ€โ™‚"]; new_value=beard | man | man: -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง”โ€โ™€"]; new_value=beard | woman | woman: -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™โ€โ™€"]; new_value=frowning | gesture | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™Žโ€โ™‚"]; new_value=gesture | man | pouting -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™Žโ€โ™€"]; new_value=gesture | pouting | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘จโ€๐ŸŽ“"]; new_value=graduate | man | student -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฉโ€๐ŸŽ“"]; new_value=graduate | student | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘โ€๐ŸŒพ"]; new_value=farmer | gardener | rancher -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘จโ€๐Ÿณ"]; new_value=chef | cook | man -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฉโ€๐Ÿณ"]; new_value=chef | cook | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘จโ€๐ŸŽจ"]; new_value=artist | man | palette -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฉโ€๐ŸŽจ"]; new_value=artist | palette | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘จโ€โœˆ"]; new_value=man | pilot | plane -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฉโ€โœˆ"]; new_value=pilot | plane | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘โ€๐Ÿš’"]; new_value=fire | firefighter | firetruck -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘จโ€๐Ÿš’"]; new_value=firefighter | firetruck | man -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฉโ€๐Ÿš’"]; new_value=firefighter | firetruck | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•ต"]; new_value=detective | sleuth | spy -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ทโ€โ™‚"]; new_value=construction | man | worker -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคด"]; new_value=prince | royal | royalty -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ณ"]; new_value=person | turban | wearing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ณโ€โ™‚"]; new_value=man | turban | wearing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ณโ€โ™€"]; new_value=turban | wearing | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคตโ€โ™‚"]; new_value=man | in | tuxedo | tuxedo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคตโ€โ™€"]; new_value=tuxedo | woman | in | tuxedo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงšโ€โ™€"]; new_value=fairy | Titania | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง›โ€โ™€"]; new_value=undead | vampire | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงโ€โ™‚"]; new_value=elf | magical | man -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงโ€โ™€"]; new_value=elf | magical | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงžโ€โ™‚"]; new_value=djinn | genie | man -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงžโ€โ™€"]; new_value=djinn | genie | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’‡โ€โ™€"]; new_value=getting | haircut | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง"]; new_value=person | stand | standing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง—โ€โ™‚"]; new_value=climber | climbing | man -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง—โ€โ™€"]; new_value=climber | climbing | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ›ท"]; new_value=ski | skier | snow -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒโ€โ™‚"]; new_value=golf | golfing | man -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŠโ€โ™‚"]; new_value=man | swim | swimming -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ›นโ€โ™‚"]; new_value=ball | bouncing | man -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคพโ€โ™‚"]; new_value=handball | man | playing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘โ€๐Ÿง‘โ€๐Ÿง’"]; new_value=adult, | child | family: -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘โ€๐Ÿง’"]; new_value=adult, | child | family: -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’"]; new_value=animal | banana | monkey -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿบ"]; new_value=animal | face | wolf -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸฆŠ"]; new_value=animal | face | fox -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ“"]; new_value=animal | stripe | zebra -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ—"]; new_value=animal | boar | pig -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ’"]; new_value=animal | giraffe | spots -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ›"]; new_value=animal | hippo | hippopotamus -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿญ"]; new_value=animal | face | mouse -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ"]; new_value=animal | animals | mouse -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฟ"]; new_value=animal | chipmunk | squirrel -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ”"]; new_value=animal | hedgehog | spiny -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ‡"]; new_value=animal | bat | vampire -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆฅ"]; new_value=lazy | sloth | slow -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆจ"]; new_value=animal | skunk | stink -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ"]; new_value=animal | bird | ornithology -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿธ"]; new_value=animal | face | frog -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŠ"]; new_value=animal | crocodile | zoo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸฆŽ"]; new_value=animal | lizard | reptile -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿก"]; new_value=animal | blowfish | fish -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆˆ"]; new_value=animal | fish | shark -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ‹"]; new_value=butterfly | insect | pretty -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•ท"]; new_value=animal | insect | spider -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅ€"]; new_value=dying | flower | wilted -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒบ"]; new_value=flower | hibiscus | plant -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒฟ"]; new_value=herb | leaf | plant -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ˜˜"]; new_value=irish | plant | shamrock -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ"]; new_value=falling | leaf | maple -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ„"]; new_value=fungus | mushroom | toadstool -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿˆ"]; new_value=cantaloupe | fruit | melon -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ"]; new_value=banana | fruit | potassium -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ"]; new_value=apple | fruit | green -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“"]; new_value=berry | fruit | strawberry -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅ"]; new_value=food | fruit | kiwi -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅ‘"]; new_value=avocado | food | fruit -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ†"]; new_value=aubergine | eggplant | vegetable -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅ”"]; new_value=food | potato | vegetable -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅ•"]; new_value=carrot | food | vegetable -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅฆ"]; new_value=broccoli | cabbage | wild -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒฐ"]; new_value=almond | chestnut | plant -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅจ"]; new_value=convoluted | pretzel | twisted -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒฏ"]; new_value=burrito | mexican | wrap -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง†"]; new_value=chickpea | falafel | meatball -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅš"]; new_value=breakfast | egg | food -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅ—"]; new_value=food | green | salad -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅซ"]; new_value=can | canned | food -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฑ"]; new_value=bento | box | food -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜"]; new_value=cracker | food | rice -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš"]; new_value=cooked | food | rice -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›"]; new_value=curry | food | rice -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅ "]; new_value=cookie | fortune | prophecy -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ€"]; new_value=Cancer | crab | zodiac -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆช"]; new_value=diving | oyster | pearl -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅ›"]; new_value=drink | glass | milk -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅ„"]; new_value=eat | spoon | tableware -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ—"]; new_value=building | construction | crane -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš"]; new_value=derelict | home | house -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฉ"]; new_value=building | hotel | love -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฌ"]; new_value=building | department | store -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฏ"]; new_value=building | castle | Japanese -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฐ"]; new_value=building | castle | European -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ›ฉ"]; new_value=religion | shinto | shrine -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒƒ"]; new_value=night | star | stars -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ‰"]; new_value=bridge | at | night -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽ "]; new_value=carousel | entertainment | horse -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš‡"]; new_value=metro | subway | travel -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš‰"]; new_value=railway | station | train -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸšŒ"]; new_value=bus | school | vehicle -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš"]; new_value=bus | cars | oncoming -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš‘"]; new_value=ambulance | emergency | vehicle -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš’"]; new_value=engine | fire | truck -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš”"]; new_value=car | oncoming | police -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽ"]; new_value=car | racing | zoom -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆฝ"]; new_value=accessibility | manual | wheelchair -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆผ"]; new_value=accessibility | motorized | wheelchair -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›บ"]; new_value=auto | rickshaw | tuk -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš"]; new_value=bus | busstop | stop -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›ฃ"]; new_value=highway | motorway | road -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›ค"]; new_value=railway | track | train -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›‘"]; new_value=octagonal | sign | stop -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โš“"]; new_value=anchor | ship | tool -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ›ด"]; new_value=boat | ferry | passenger -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›ฅ"]; new_value=boat | motor | motorboat -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›Ž"]; new_value=bell | bellhop | hotel -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โŒš"]; new_value=clock | time | watch -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โฑ"]; new_value=clock | stopwatch | time -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•ฐ"]; new_value=clock | mantelpiece | time -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ•"]; new_value=full | moon | space -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒŒ"]; new_value=milky | space | way -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒง"]; new_value=cloud | rain | weather -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒฉ"]; new_value=cloud | lightning | weather -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒซ"]; new_value=cloud | fog | weather -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ˜‚"]; new_value=clothing | rain | umbrella -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ˜ƒ"]; new_value=cold | snow | snowman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ›„"]; new_value=cold | snow | snowmanout -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽ„"]; new_value=celebration | Christmas | tree -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽ"]; new_value=carp | celebration | streamer -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽ—"]; new_value=celebration | reminder | ribbon -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽŸ"]; new_value=admission | ticket | tickets -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽซ"]; new_value=admission | stub | ticket -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โšพ"]; new_value=ball | baseball | sport -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ"]; new_value=ball | game | volleyball -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅ"]; new_value=disc | flying | ultimate -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ›ธ"]; new_value=ice | skate | skating -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿช€"]; new_value=fluctuate | toy | yo-yo -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿช"]; new_value=fly | kite | soar -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆบ"]; new_value=emergency | safety | vest -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘˜"]; new_value=clothing | comfortable | kimono -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅป"]; new_value=clothing | dress | sari -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฉฐ"]; new_value=ballet | dance | shoes -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ฃ"]; new_value=cheering | megaphone | sound -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ฏ"]; new_value=horn | post | postal -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽš"]; new_value=level | music | slider -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽ›"]; new_value=control | knobs | music -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽง"]; new_value=earbud | headphone | sound -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽบ"]; new_value=instrument | music | trumpet -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽป"]; new_value=instrument | music | violin -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿช•"]; new_value=banjo | music | stringed -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅ"]; new_value=drum | drumsticks | music -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ "]; new_value=communication | fax | machine -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”Œ"]; new_value=electric | electricity | plug -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ–ฅ"]; new_value=computer | desktop | monitor -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’พ"]; new_value=computer | disk | floppy -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงฎ"]; new_value=abacus | calculation | calculator -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“บ"]; new_value=television | tv | video -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ธ"]; new_value=camera | flash | video -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿช”"]; new_value=diya | lamp | oil -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“•"]; new_value=book | closed | education -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ƒ"]; new_value=curl | document | page -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“ฎ"]; new_value=mail | mailbox | postbox -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โœ’"]; new_value=black | nib | pen -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“‚"]; new_value=file | folder | open -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ—‚"]; new_value=card | dividers | index -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ—“"]; new_value=calendar | pad | spiral -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“Œ"]; new_value=collage | pin | pushpin -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ—ƒ"]; new_value=box | card | file -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ—„"]; new_value=cabinet | file | filing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โš’"]; new_value=hammer | pick | tool -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ—ก"]; new_value=dagger | knife | weapon -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โš”"]; new_value=crossed | swords | weapon -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โš—"]; new_value=alembic | chemistry | tool -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›"]; new_value=bed | hotel | sleep -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›‹"]; new_value=couch | hotel | lamp -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿช‘"]; new_value=chair | seat | sit -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿช’"]; new_value=razor | sharp | shave -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›’"]; new_value=cart | shopping | trolley -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšฐ"]; new_value=drinking | potable | water -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšผ"]; new_value=baby | changing | symbol -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”›"]; new_value=arrow | mark | ON! -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โš›"]; new_value=atheist | atom | symbol -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•‰"]; new_value=Hindu | om | religion -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ™"]; new_value=horoscope | Virgo | zodiac -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โน"]; new_value=button | square | stop -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โบ"]; new_value=button | circle | record -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ™€"]; new_value=female | sign | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ™‚"]; new_value=male | man | sign -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ใ€ฐ"]; new_value=dash | punctuation | wavy -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ™ป"]; new_value=recycle | recycling | symbol -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โžฐ"]; new_value=curl | curly | loop -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ใ€ฝ"]; new_value=alternation | mark | part -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โœณ"]; new_value=* | asterisk | eight-spoked -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โœด"]; new_value=* | eight-pointed | star -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ข"]; new_value=1234 | input | numbers -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ†”"]; new_value=button | ID | identity -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ“‚"]; new_value=circle | circled | M -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ†—"]; new_value=button | OK | okay -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ…ฟ"]; new_value=button | P | parking -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ†˜"]; new_value=button | help | SOS -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ†š"]; new_value=button | versus | VS -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ด"]; new_value=circle | geometric | red -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”ต"]; new_value=blue | circle | geometric -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โšซ"]; new_value=black | circle | geometric -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โšช"]; new_value=circle | geometric | white -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŸฅ"]; new_value=red | square | penalty | card -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŸจ"]; new_value=square | yellow | penalty | card -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”˜"]; new_value=button | geometric | radio -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="*"]; new_value=asterisk | star | wildcard -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿด"]; new_value=black | flag | waving -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿณ"]; new_value=flag | waving | white -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคค"]; new_value=drooling | face -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคก"]; new_value=clown | face -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงก"]; new_value=heart | orange -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸคŽ"]; new_value=brown | heart -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿค"]; new_value=heart | white -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงโ€โ™‚"]; new_value=deaf | man -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงโ€โ™€"]; new_value=deaf | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘โ€๐ŸŽ“"]; new_value=graduate | student -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘โ€๐Ÿณ"]; new_value=chef | cook -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘โ€๐ŸŽจ"]; new_value=artist | palette -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘โ€โœˆ"]; new_value=pilot | plane -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‘โ€๐Ÿš€"]; new_value=astronaut | rocket -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’‚โ€โ™‚"]; new_value=guard | man -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฐโ€โ™‚"]; new_value=man | veil -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ฐโ€โ™€"]; new_value=veil | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿคฐ"]; new_value=pregnant | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงœโ€โ™‚"]; new_value=merman | Triton -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงœโ€โ™€"]; new_value=mermaid | merwoman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงโ€โ™‚"]; new_value=man | standing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงโ€โ™€"]; new_value=standing | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸงŽโ€โ™‚"]; new_value=kneeling | man -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸงŽโ€โ™€"]; new_value=kneeling | woman -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ„โ€โ™‚"]; new_value=man | surfing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘ช"]; new_value=child | family -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ"]; new_value=animal | gorilla -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ„"]; new_value=face | unicorn -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸฆŒ"]; new_value=animal | deer -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜"]; new_value=animal | elephant -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ"]; new_value=animal | rhinoceros -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ€"]; new_value=animal | rat -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•ธ"]; new_value=spider | web -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ฎ"]; new_value=flower | white -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿต"]; new_value=plant | rosette -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‰"]; new_value=fruit | watermelon -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ"]; new_value=fruit | pear -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘"]; new_value=fruit | peach -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซ’"]; new_value=food | olive -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒถ"]; new_value=hot | pepper -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง„"]; new_value=flavoring | garlic -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง…"]; new_value=flavoring | onion -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง€"]; new_value=cheese | wedge -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ–"]; new_value=bone | meat -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅช"]; new_value=bread | sandwich -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒฎ"]; new_value=mexican | taco -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฟ"]; new_value=movie | popcorn -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงˆ"]; new_value=butter | dairy -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฃ"]; new_value=food | sushi -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿง‰"]; new_value=drink | mate -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ—บ"]; new_value=map | world -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ—พ"]; new_value=Japan | map -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ–"]; new_value=beach | umbrella -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ"]; new_value=desert | island -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿž"]; new_value=national | park -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›"]; new_value=building | classical -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ˜"]; new_value=house | houses -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฆ"]; new_value=bank | building -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿจ"]; new_value=building | hotel -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿซ"]; new_value=building | school -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿญ"]; new_value=building | factory -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ—ผ"]; new_value=Tokyo | tower -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›•"]; new_value=hindu | temple -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ›บ"]; new_value=camping | tent -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒ"]; new_value=fog | foggy -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ™"]; new_value=city | cityscape -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽช"]; new_value=circus | tent -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸšŠ"]; new_value=tram | trolleybus -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿš"]; new_value=monorail | vehicle -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšœ"]; new_value=tractor | vehicle -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ"]; new_value=motorcycle | racing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›ต"]; new_value=motor | scooter -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›ด"]; new_value=kick | scooter -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›ข"]; new_value=drum | oil -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšง"]; new_value=barrier | construction -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›ถ"]; new_value=boat | canoe -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›ณ"]; new_value=passenger | ship -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’บ"]; new_value=chair | seat -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸšŸ"]; new_value=railway | suspension -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›ฐ"]; new_value=satellite | space -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โฒ"]; new_value=clock | timer -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŒก"]; new_value=thermometer | weather -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ˜"]; new_value=cloud | weather -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ˜„"]; new_value=comet | space -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŽ€"]; new_value=celebration | ribbon -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸฅŠ"]; new_value=boxing | glove -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฅ…"]; new_value=goal | net -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงค"]; new_value=gloves | hand -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿงฆ"]; new_value=socks | stocking -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ˜Ž"]; new_value=phone | telephone -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“Ÿ"]; new_value=communication | pager -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ–จ"]; new_value=computer | printer -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โŒจ"]; new_value=computer | keyboard -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ–ฑ"]; new_value=computer | mouse -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ–ฒ"]; new_value=computer | trackball -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•ฏ"]; new_value=candle | light -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“’"]; new_value=ledger | notebook -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“œ"]; new_value=paper | scroll -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”–"]; new_value=bookmark | mark -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ—ณ"]; new_value=ballot | box -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ–‹"]; new_value=fountain | pen -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ–Š"]; new_value=ballpoint | pen -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ–Œ"]; new_value=paintbrush | painting -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ’ผ"]; new_value=briefcase | office -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“"]; new_value=file | folder -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“…"]; new_value=calendar | date -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“†"]; new_value=calendar | tear-off -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›ก"]; new_value=shield | weapon -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”—"]; new_value=link | links -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ›“"]; new_value=chain | chains -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿฉน"]; new_value=adhesive | bandage -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšฝ"]; new_value=bathroom | toilet -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšฟ"]; new_value=shower | water -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›"]; new_value=bath | bathtub -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿšฌ"]; new_value=cigarette | smoking -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›‚"]; new_value=control | passport -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ›ƒ"]; new_value=customs | packing -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โš "]; new_value=caution | warning -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ˜ข"]; new_value=radioactive | sign -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ˜ฃ"]; new_value=biohazard | sign -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†•"]; new_value=arrow | up-down -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†”"]; new_value=arrow | left-right -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”™"]; new_value=arrow | BACK -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”š"]; new_value=arrow | END -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ"]; new_value=button | eject -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โšง"]; new_value=symbol | transgender -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โšœ"]; new_value=fleur-de-lis | knights -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“›"]; new_value=badge | name -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡"]; new_value=* | sparkle -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ยฉ"]; new_value=C | copyright -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ยฎ"]; new_value=R | registered -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ†‘"]; new_value=button | CL -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ†’"]; new_value=button | COOL -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ†“"]; new_value=button | FREE -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ„น"]; new_value=I | information -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ†•"]; new_value=button | NEW -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ†–"]; new_value=button | NG -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŸ "]; new_value=circle | orange -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŸก"]; new_value=circle | yellow -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŸข"]; new_value=circle | green -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŸฃ"]; new_value=circle | purple -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŸค"]; new_value=brown | circle -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŸง"]; new_value=orange | square -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŸฉ"]; new_value=green | square -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŸฆ"]; new_value=blue | square -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŸช"]; new_value=purple | square -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŸซ"]; new_value=brown | square -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•ณ"]; new_value=hole -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ‘"]; new_value=+1 -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ›ฐ"]; new_value=mountain -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ•"]; new_value=camping -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿœ"]; new_value=desert -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐ŸŸ"]; new_value=stadium -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ›ฒ"]; new_value=fountain -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ”‹"]; new_value=battery -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ““"]; new_value=notebook -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿท"]; new_value=label -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โœ"]; new_value=pencil -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ–"]; new_value=crayon -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ“Ž"]; new_value=paperclip -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="๐Ÿ—‘"]; new_value=wastebasket -locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โž•"]; new_value=+ \ No newline at end of file +# Modify non-emoji +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="_"]; new_value=dash | line | low | underdash | underline +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ€•"]; new_value=bar | dash | horizontal | line +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ใƒป"]; new_value=dot | dots | interpunct | katakana | middle | middot +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ุ›"]; new_value=arabic | semi-colon | semicolon +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="!"]; new_value=bang | exclamation | mark | point +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ยก"]; new_value=bang | exclamation | inverted | mark | point +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="?"]; new_value=mark | question +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ยฟ"]; new_value=inverted | mark | question +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ุŸ"]; new_value=arabic | mark | question +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="."]; new_value=dot | full | period | stop +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ใ€‚"]; new_value=full | ideographic | period | stop +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="'"]; new_value=apostrophe | quote | single | typewriter +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ€˜"]; new_value=apostrophe | left | quote | single | smart +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ€™"]; new_value=apostrophe | quote | right | single | smart +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ€š"]; new_value=apostrophe | low | quote | right +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ€œ"]; new_value=double | left | mark | quotation | quote | smart +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ€"]; new_value=double | mark | quotation | quote | right | smart +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ€ž"]; new_value=double | low | mark | quotation | quote | right | smart +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ยซ"]; new_value=angle | brackets | carets | chevron | guillemet | left | quote +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ยป"]; new_value=angle | brackets | carets | chevron | guillemet | quote | right +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp=")"]; new_value=bracket | close | paren | parens | parenthesis | round +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="["]; new_value=bracket | crotchet | open | square +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="]"]; new_value=bracket | close | crotchet | square +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="{"]; new_value=brace | bracket | curly | gullwing | open +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="}"]; new_value=brace | bracket | close | curly | gullwing +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ใ€ˆ"]; new_value=angle | bracket | brackets | chevron | diamond | open | pointy | tuple +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ใ€‰"]; new_value=angle | bracket | brackets | chevron | close | diamond | pointy | tuple +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ใ€Š"]; new_value=angle | bracket | double | open +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ใ€‹"]; new_value=angle | bracket | close | double +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ใ€Œ"]; new_value=bracket | corner | open +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ใ€"]; new_value=bracket | close | corner +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ใ€Ž"]; new_value=bracket | corner | hollow | open +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ใ€"]; new_value=bracket | close | corner | hollow +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ใ€"]; new_value=black | bracket | lens | lenticular | open +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ใ€‘"]; new_value=black | bracket | close | lens | lenticular +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ใ€”"]; new_value=bracket | open | shell | tortoise +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ใ€•"]; new_value=bracket | close | shell | tortoise +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ใ€–"]; new_value=bracket | hollow | lens | lenticular | open +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ใ€—"]; new_value=bracket | close | hollow | lens | lenticular +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ยถ"]; new_value=alinea | mark | paragraph | paraph | pilcrow +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="@"]; new_value=ampersat | arobase | arroba | at | at-sign | commercial | mark | sign | strudel +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="\"]; new_value=backslash | reverse | solidus | whack +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="%"]; new_value=cent | per | per-cent | percent +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ€ฐ"]; new_value=mil | mille | per | permil | permille +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ€ "]; new_value=dagger | obelisk | obelus | sign +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ€ก"]; new_value=dagger | double | obelisk | obelus | sign +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ€ง"]; new_value=dash | hyphen | hyphenation | point +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ€ณ"]; new_value=double | prime +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ€ด"]; new_value=prime | triple +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ€ป"]; new_value=mark | reference +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="^"]; new_value=accent | caret | chevron | circumflex | control | hat | pointer | power | sign | wedge | xor +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†"]; new_value=arrow | left | left-pointing +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†š"]; new_value=arrow | leftwards | stroke +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†’"]; new_value=arrow | right | right-pointing +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†›"]; new_value=arrow | rightwards | stroke +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†‘"]; new_value=arrow | up | up-pointing +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†“"]; new_value=arrow | down | down-pointing +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†œ"]; new_value=arrow | leftwards | wave +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†"]; new_value=arrow | rightwards | wave +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ž"]; new_value=arrow | headed | leftwards | two +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†Ÿ"]; new_value=arrow | headed | two | upwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ† "]; new_value=arrow | headed | rightwards | two +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ก"]; new_value=arrow | downwards | headed | two +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ข"]; new_value=arrow | leftwards | tail +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ฃ"]; new_value=arrow | rightwards | tail +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ค"]; new_value=arrow | bar | from | leftwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ฅ"]; new_value=arrow | bar | from | upwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ฆ"]; new_value=arrow | bar | from | rightwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ง"]; new_value=arrow | bar | downwards | from +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†จ"]; new_value=arrow | base | down | up | with +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ซ"]; new_value=arrow | leftwards | loop +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ฌ"]; new_value=arrow | loop | rightwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ญ"]; new_value=arrow | left | right | wave +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ฏ"]; new_value=arrow | downwards | zigzag +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ฐ"]; new_value=arrow | leftwards | tip | upwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ฑ"]; new_value=arrow | rightwards | tip | upwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ฒ"]; new_value=arrow | downwards | leftwards | tip +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ณ"]; new_value=arrow | downwards | rightwards | tip +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ด"]; new_value=arrow | corner | downwards | rightwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ต"]; new_value=arrow | corner | downwards | leftwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ถ"]; new_value=anticlockwise | arrow | semicircle | top +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ท"]; new_value=arrow | clockwise | semicircle | top +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ธ"]; new_value=arrow | bar | long | north | west +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†น"]; new_value=arrow | bar | bars | leftwards | over | rightwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†บ"]; new_value=anticlockwise | arrow | circle | open +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ป"]; new_value=arrow | circle | clockwise | open +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ผ"]; new_value=barb | harpoon | leftwards | upwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ฝ"]; new_value=barb | downwards | harpoon | leftwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†พ"]; new_value=barb | harpoon | rightwards | upwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ฟ"]; new_value=barb | harpoon | leftwards | upwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡€"]; new_value=barb | harpoon | rightwards | upwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡"]; new_value=barb | downwards | harpoon | rightwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡‚"]; new_value=barb | downwards | harpoon | rightwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡ƒ"]; new_value=barb | downwards | harpoon | leftwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡„"]; new_value=arrow | leftwards | over | rightwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡…"]; new_value=and | arrow | arrows | down | down-pointing | up | up-pointing +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡†"]; new_value=arrow | arrows | left | left-pointing | over | right | right-pointing +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡‡"]; new_value=arrows | leftwards | paired +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡ˆ"]; new_value=arrows | paired | upwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡‰"]; new_value=arrows | paired | rightwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡Š"]; new_value=arrows | downwards | paired +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡‹"]; new_value=harpoon | leftwards | over | rightwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡Œ"]; new_value=harpoon | leftwards | over | rightwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡"]; new_value=arrow | double | leftwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡"]; new_value=arrow | double | leftwards | stroke +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡‘"]; new_value=arrow | double | upwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡’"]; new_value=arrow | double | rightwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡"]; new_value=arrow | double | rightwards | stroke +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡“"]; new_value=arrow | double | downwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡”"]; new_value=arrow | double | left | right +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡Ž"]; new_value=arrow | double | left | right | stroke +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡–"]; new_value=arrow | double | north | west +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡—"]; new_value=arrow | double | east | north +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡˜"]; new_value=arrow | double | east | south +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡™"]; new_value=arrow | double | south | west +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡š"]; new_value=arrow | leftwards | triple +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡›"]; new_value=arrow | rightwards | triple +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡œ"]; new_value=arrow | leftwards | squiggle +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡"]; new_value=arrow | rightwards | squiggle +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡ž"]; new_value=arrow | double | stroke | upwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡Ÿ"]; new_value=arrow | double | downwards | stroke +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡ "]; new_value=arrow | dashed | leftwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡ก"]; new_value=arrow | dashed | upwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡ข"]; new_value=arrow | dashed | rightwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡ฃ"]; new_value=arrow | dashed | downwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡ค"]; new_value=arrow | bar | leftwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡ฅ"]; new_value=arrow | bar | rightwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡ฆ"]; new_value=arrow | hollow | leftwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡ง"]; new_value=arrow | hollow | upwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡จ"]; new_value=arrow | hollow | rightwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡ฉ"]; new_value=arrow | downwards | hollow +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡ช"]; new_value=arrow | bar | from | hollow | upwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‡ต"]; new_value=arrow | downwards | leftwards | upwards +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โˆ€"]; new_value=all | any | for | given | universal +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โˆ‚"]; new_value=differential | partial +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โˆƒ"]; new_value=exists | there +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โˆ…"]; new_value=empty | mathematics | operator | set +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โˆˆ"]; new_value=contains | element | membership | of | set +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โˆ‰"]; new_value=an | element | not +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โˆ‹"]; new_value=as | contains | element | member +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โˆŽ"]; new_value=end | halmos | proof | q.e.d. | qed | tombstone +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โˆ"]; new_value=logic | n-ary | product +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โˆ‘"]; new_value=mathematics | n-ary | summation +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="+"]; new_value=add | plus | sign +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="รท"]; new_value=divide | division | obelus | sign +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ร—"]; new_value=multiplication | multiply | sign | times +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="<"]; new_value=less | less-than | open | tag | than +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‰ฎ"]; new_value=inequality | less-than | mathematics | not +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‰ "]; new_value=equal | inequality | inequation | not +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp=">"]; new_value=close | greater | greater-than | tag | than +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‰ฏ"]; new_value=greater-than | inequality | mathematics | not +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="|"]; new_value=bar | line | pike | pipe | sheffer | stick | stroke | vbar | vertical +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โˆ’"]; new_value=minus | sign | subtract +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โˆ•"]; new_value=division | slash | stroke | virgule +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ„"]; new_value=fraction | slash | stroke | virgule +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โˆ—"]; new_value=asterisk | operator | star +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โˆ˜"]; new_value=composition | operator | ring +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โˆ™"]; new_value=bullet | operator +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โˆž"]; new_value=infinity | sign +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โˆŸ"]; new_value=angle | mathematics | right +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โˆง"]; new_value=ac | and | atque | logical | wedge +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โˆฌ"]; new_value=calculus | double | integral +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โˆฎ"]; new_value=contour | integral +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โˆผ"]; new_value=operator | tilde +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โˆฝ"]; new_value=reversed | tilde +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โˆพ"]; new_value=inverted | lazy | s +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‰ƒ"]; new_value=asymptote | asymptotically | equal | mathematics +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‰…"]; new_value=approximately | congruence | equal | equality | isomorphism | mathematics +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‰ˆ"]; new_value=almost | approximate | approximation | equal +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‰Œ"]; new_value=all | equal | equality | mathematics +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‰’"]; new_value=approximately | equal | image | the +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‰–"]; new_value=equal | equality | in | mathematics | ring +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‰ก"]; new_value=exact | identical | to | triple +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‰ฃ"]; new_value=equality | equivalent | mathematics | strictly +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‰ค"]; new_value=equal | equals | inequality | less-than | or +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‰ฅ"]; new_value=equal | equals | greater-than | inequality | or +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‰ฆ"]; new_value=equal | inequality | less-than | mathematics | over +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‰ง"]; new_value=equal | greater-than | inequality | mathematics | over +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‰ช"]; new_value=inequality | less-than | mathematics | much +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‰ซ"]; new_value=greater-than | inequality | mathematics | much +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‰ณ"]; new_value=equivalent | greater-than | inequality | mathematics +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‰บ"]; new_value=mathematics | operator | precedes | set +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‰ป"]; new_value=mathematics | operator | set | succeeds +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โŠ"]; new_value=does | mathematics | not | operator | set | succeed +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โŠ‚"]; new_value=of | set | subset +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โŠƒ"]; new_value=mathematics | operator | set | superset +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โŠ†"]; new_value=equal | subset +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โŠ‡"]; new_value=equal | equality | mathematics | superset +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โŠ•"]; new_value=circled | plus +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โŠ–"]; new_value=circled | difference | erosion | minus | symmetric +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โŠ—"]; new_value=circled | product | tensor | times +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โŠ˜"]; new_value=circled | division | division-like | mathematics | slash +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โŠ™"]; new_value=circled | dot | operator | XNOR +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โŠš"]; new_value=circled | operator | ring +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โŠ›"]; new_value=asterisk | circled | operator +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โŠž"]; new_value=addition-like | mathematics | plus | squared +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โŠŸ"]; new_value=mathematics | minus | squared | subtraction-like +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โŠฅ"]; new_value=eet | falsum | tack | up +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โŠฎ"]; new_value=does | force | not +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โŠฐ"]; new_value=mathematics | operator | precedes | relation | set | under +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โŠฑ"]; new_value=mathematics | operator | relation | set | succeeds | under +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‹ญ"]; new_value=as | contain | does | equal | group | mathematics | normal | not | subgroup | theory +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โŠน"]; new_value=conjugate | hermitian | mathematics | matrix | self-adjoint | square +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โŠฟ"]; new_value=mathematics | right | right-angled | triangle +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‹"]; new_value=disjunction | logic | logical | n-ary | or +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‹‚"]; new_value=intersection | mathematics | n-ary | operator | set +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‹ƒ"]; new_value=mathematics | n-ary | operator | set | union +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‹…"]; new_value=dot | operator +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‹†"]; new_value=operator | star +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‹ˆ"]; new_value=binary | bowtie | join | natural | operator +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‹’"]; new_value=double | intersection | mathematics | operator | set +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‹˜"]; new_value=inequality | less-than | mathematics | much | very +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‹™"]; new_value=greater-than | inequality | mathematics | much | very +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‹ฎ"]; new_value=ellipsis | mathematics | vertical +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‹ฏ"]; new_value=ellipsis | horizontal | midline +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‹ฐ"]; new_value=diagonal | ellipsis | mathematics | right | up +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‹ฑ"]; new_value=diagonal | down | ellipsis | mathematics | right +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ– "]; new_value=filled | square +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–ก"]; new_value=hollow | square +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–ข"]; new_value=corners | hollow | rounded | square | with +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–ฃ"]; new_value=containing | filled | hollow | square +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–ค"]; new_value=fill | horizontal | square | with +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–ฅ"]; new_value=fill | square | vertical | with +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–ฆ"]; new_value=crosshatch | fill | orthogonal | square +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–ง"]; new_value=fill | left | lower | right | square | upper +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–จ"]; new_value=fill | left | lower | right | square | upper +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–ฉ"]; new_value=crosshatch | diagonal | fill | square +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–ฌ"]; new_value=filled | rectangle +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–ญ"]; new_value=hollow | rectangle +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–ฎ"]; new_value=filled | rectangle | vertical +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–ฐ"]; new_value=filled | parallelogram +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–ฒ"]; new_value=arrow | filled | triangle | up | up-pointing +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–ณ"]; new_value=hollow | triangle | up-pointing +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–ด"]; new_value=filled | small | triangle | up-pointing +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–ต"]; new_value=hollow | small | triangle | up-pointing +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–ท"]; new_value=hollow | right-pointing | triangle +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–ธ"]; new_value=filled | right-pointing | small | triangle +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–น"]; new_value=hollow | right-pointing | small | triangle +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–บ"]; new_value=filled | pointer | right-pointing +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–ป"]; new_value=hollow | pointer | right-pointing +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–ผ"]; new_value=arrow | down | down-pointing | filled | triangle +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–ฝ"]; new_value=down-pointing | hollow | triangle +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–พ"]; new_value=down-pointing | filled | small | triangle +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ–ฟ"]; new_value=down-pointing | hollow | small | triangle +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—"]; new_value=hollow | left-pointing | triangle +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—‚"]; new_value=filled | left-pointing | small | triangle +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—ƒ"]; new_value=hollow | left-pointing | small | triangle +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—„"]; new_value=filled | left-pointing | pointer +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—…"]; new_value=hollow | left-pointing | pointer +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—†"]; new_value=diamond | filled +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—‡"]; new_value=diamond | hollow +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—ˆ"]; new_value=containing | diamond | filled | hollow +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—‰"]; new_value=cicles | circle | circled | concentric | containing | dot | filled | fisheye | hollow | ward +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—‹"]; new_value=circle | hollow | ring +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—Œ"]; new_value=circle | dotted +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—"]; new_value=circle | fill | vertical | with +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—Ž"]; new_value=circle | circles | concentric | double | target +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—"]; new_value=circle | filled +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—"]; new_value=circle | filled | half | left +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—‘"]; new_value=circle | filled | half | right +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—’"]; new_value=circle | filled | half | lower +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—“"]; new_value=circle | filled | half | upper +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—”"]; new_value=circle | filled | quadrant | right | upper +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—•"]; new_value=all | but | circle | filled | left | quadrant | upper +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—–"]; new_value=circle | filled | half | left +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ——"]; new_value=circle | filled | half | right +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—˜"]; new_value=bullet | inverse +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—™"]; new_value=circle | containing | filled | hollow | inverse | square +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—œ"]; new_value=arc | circular | left | quadrant | upper +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—"]; new_value=arc | circular | quadrant | right | upper +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—ž"]; new_value=arc | circular | lower | quadrant | right +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—Ÿ"]; new_value=arc | circular | left | lower | quadrant +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ— "]; new_value=circle | half | upper +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—ก"]; new_value=circle | half | lower +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—ข"]; new_value=filled | lower | right | triangle +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—ฃ"]; new_value=filled | left | lower | triangle +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—ค"]; new_value=filled | left | triangle | upper +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—ฅ"]; new_value=filled | right | triangle | upper +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—ฆ"]; new_value=bullet | hollow +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—ฏ"]; new_value=circle | hollow | large | ring +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—ณ"]; new_value=hollow | quadrant | right | square | upper +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—ท"]; new_value=circle | hollow | quadrant | right | upper | with +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ—ฟ"]; new_value=lower | right | triangle +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โจง"]; new_value=plus | subscript | two +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โจฏ"]; new_value=cross | product | vector +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โจผ"]; new_value=interior | product +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โฉฃ"]; new_value=double | logical | or | underbar +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โฉฝ"]; new_value=equal | less-than | slanted +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โช"]; new_value=above | equal | less-than | similar +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โชš"]; new_value=double-line | equal | greater-than | inequality | mathematics +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โชบ"]; new_value=above | almost | equal | not | succeeds +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ†ฎ"]; new_value=arrow | left | right | stroke +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‚ฃ"]; new_value=currency | franc | french +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‚ฐ"]; new_value=currency | german | penny | pfennig +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‚ถ"]; new_value=currency | livre | tournois +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‚น"]; new_value=currency | indian | rupee +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ยต"]; new_value=measure | micro | sign +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ™ฏ"]; new_value=diรจse | diesis | music | note | sharp +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="$"]; new_value=dollar | money | peso | USD +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ยฃ"]; new_value=currency | EGP | GBP | pound +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="ยฅ"]; new_value=CNY | currency | JPY | yen | yuan +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‚ฌ"]; new_value=currency | EUR | euro +locale=en; action=add; new_path=//ldml/annotations/annotation[@cp="โ‚ฟ"]; new_value=bitcoin | BTC \ No newline at end of file