summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuke Arms2021-09-25 15:41:40 +1000
committerLuke Arms2021-09-25 15:51:49 +1000
commitedcc81b6d26520da7c5d476dd633b6b626e5dcba (patch)
tree5b9d91a1bfbda28f1e7d057f6eb6d844965ba602
parent598df5cc5f2a1d85718825e30b173da6d1205d1d (diff)
downloadaur-edcc81b6d26520da7c5d476dd633b6b626e5dcba.tar.gz
Fix skin tone issues
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD13
-rw-r--r--fix-relative-paths.patch18
-rw-r--r--fix-skin-tone-static-path.patch2212
4 files changed, 2220 insertions, 29 deletions
diff --git a/.SRCINFO b/.SRCINFO
index c340ecf5b91b..5a0673eda5d4 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = emote
pkgdesc = Emoji Picker for Linux written in GTK3
pkgver = 3.0.3
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/tom-james-watson/Emote
arch = any
license = GPL3
@@ -16,9 +16,9 @@ pkgbase = emote
depends = xdotool
source = https://github.com/tom-james-watson/Emote/archive/ff40e3d66b251aaf2e91116ba177e59f087e1021.tar.gz
source = setup.py
- source = fix-relative-paths.patch
+ source = fix-skin-tone-static-path.patch
sha512sums = SKIP
sha512sums = ef8caea8ad9e9bc0487dd8c816561027adda743c1e8e2779a64e7ae99fb227c820f31ef9c87fb910bae7a8ffc623e5e2e1a53a8c69ce0a35ad96557e97a5a949
- sha512sums = 421f51590edcaa5c2143cc0ad3b8e29276219445365750ea359b36e4b1f1f8b48ccf85e966ba8a2d9166c74fdca3fbebf747e49498a1916c917149d0e68b6790
+ sha512sums = 332917b145cdfc2bc80fcac310cc21df1d0dcb1bec78b675930383295d074f80a176fec0d4c35ab7728a5bc948c05f53ce4037504e21f8f41708b5de2393edf1
pkgname = emote
diff --git a/PKGBUILD b/PKGBUILD
index f69a5f7bffb6..39a84de69372 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=emote
pkgver=3.0.3
_pkgref=ff40e3d66b251aaf2e91116ba177e59f087e1021
-pkgrel=1
+pkgrel=2
url="https://github.com/tom-james-watson/Emote"
pkgdesc="Emoji Picker for Linux written in GTK3"
arch=('any')
@@ -13,24 +13,21 @@ makedepends=('python-setuptools' 'python-pipenv')
source=(
"https://github.com/tom-james-watson/Emote/archive/${_pkgref}.tar.gz"
'setup.py'
- 'fix-relative-paths.patch'
+ 'fix-skin-tone-static-path.patch'
)
sha512sums=(
'SKIP'
'ef8caea8ad9e9bc0487dd8c816561027adda743c1e8e2779a64e7ae99fb227c820f31ef9c87fb910bae7a8ffc623e5e2e1a53a8c69ce0a35ad96557e97a5a949'
- '421f51590edcaa5c2143cc0ad3b8e29276219445365750ea359b36e4b1f1f8b48ccf85e966ba8a2d9166c74fdca3fbebf747e49498a1916c917149d0e68b6790'
+ '332917b145cdfc2bc80fcac310cc21df1d0dcb1bec78b675930383295d074f80a176fec0d4c35ab7728a5bc948c05f53ce4037504e21f8f41708b5de2393edf1'
)
build() {
# Replace setup.py
mv -f "$srcdir/setup.py" "$srcdir/Emote-$_pkgref/setup.py"
+ # Fix skin tone and `static/` path issues when not running as a snap
+ patch -d "$srcdir/Emote-$_pkgref" -p1 <"$srcdir/fix-skin-tone-static-path.patch"
# Move static files into the library
mv -T "$srcdir/Emote-$_pkgref/static" "$srcdir/Emote-$_pkgref/emote/static"
- # Fix relative paths
- #find "$srcdir/Emote-$_pkgref" -type f -name "*.py" -print0 |
- # xargs -0 \
- # sed -Ei 's/"static\/[^"]*"/os.path.join(os.path.dirname(__file__), &)/g'
- patch -d "$srcdir/Emote-$_pkgref" -p1 <"$srcdir/fix-relative-paths.patch"
# Fix .desktop file
sed -Ei 's/\$\{SNAP\}//' "$srcdir/Emote-$_pkgref/snap/gui/emote.desktop"
# Fix version number
diff --git a/fix-relative-paths.patch b/fix-relative-paths.patch
deleted file mode 100644
index fdf03098dcc9..000000000000
--- a/fix-relative-paths.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff --git a/emote/__init__.py b/emote/__init__.py
-index 646bd85..e0a4ec4 100644
---- a/emote/__init__.py
-+++ b/emote/__init__.py
-@@ -1,3 +1,4 @@
-+import os
- import sys
- import subprocess
- import gi
-@@ -8,6 +9,8 @@ gi.require_version("Keybinder", "3.0")
- from gi.repository import Gtk, Keybinder
- from emote import picker, css, emojis, user_data, config
-
-+os.chdir(os.path.dirname(__file__))
-+
- # Register updated emoji font
- if config.is_snap:
- manimpango.register_font(f"{config.snap_root}/static/NotoColorEmoji.ttf")
diff --git a/fix-skin-tone-static-path.patch b/fix-skin-tone-static-path.patch
new file mode 100644
index 000000000000..920c0f181b82
--- /dev/null
+++ b/fix-skin-tone-static-path.patch
@@ -0,0 +1,2212 @@
+diff --git a/.gitignore b/.gitignore
+index cdd8333..0769474 100644
+--- a/.gitignore
++++ b/.gitignore
+@@ -3,6 +3,7 @@ dist
+ *.egg-info
+ .venv
+ venv
++__pycache__
+ *.snap
+
+ # Editors
+diff --git a/emote/__init__.py b/emote/__init__.py
+index 646bd85..e6cae7b 100644
+--- a/emote/__init__.py
++++ b/emote/__init__.py
+@@ -9,10 +9,7 @@ from gi.repository import Gtk, Keybinder
+ from emote import picker, css, emojis, user_data, config
+
+ # Register updated emoji font
+-if config.is_snap:
+- manimpango.register_font(f"{config.snap_root}/static/NotoColorEmoji.ttf")
+-else:
+- manimpango.register_font("static/NotoColorEmoji.ttf")
++manimpango.register_font(f"{config.static_root}/NotoColorEmoji.ttf")
+
+ settings = Gtk.Settings.get_default()
+
+diff --git a/emote/config.py b/emote/config.py
+index fa443b3..51bfffe 100644
+--- a/emote/config.py
++++ b/emote/config.py
+@@ -6,3 +6,13 @@ is_dev = os.environ.get("ENV") == "dev"
+ is_snap = os.environ.get("SNAP") is not None
+ snap_root = os.environ.get("SNAP")
+ is_wayland = os.environ.get("XDG_SESSION_TYPE", "").lower() == "wayland"
++
++if is_snap:
++ static_root = f"{snap_root}/static"
++elif is_dev:
++ static_root = os.path.dirname(os.path.dirname(__file__)) + "/static"
++else:
++ static_root = os.path.dirname(__file__) + "/static"
++
++if not os.path.exists(static_root):
++ raise Exception(f"Directory not found: {static_root}")
+diff --git a/emote/css.py b/emote/css.py
+index bb305d8..707f4b1 100644
+--- a/emote/css.py
++++ b/emote/css.py
+@@ -11,11 +11,7 @@ def load_css():
+ Load associated CSS for the window.
+ """
+ css_provider = Gtk.CssProvider()
+-
+- if config.is_snap:
+- css_provider.load_from_path(f"{config.snap_root}/static/style.css")
+- else:
+- css_provider.load_from_path("static/style.css")
++ css_provider.load_from_path(f"{config.static_root}/style.css")
+
+ screen = Gdk.Screen.get_default()
+ styleContext = Gtk.StyleContext()
+diff --git a/emote/emojis.py b/emote/emojis.py
+index d63c27a..07093af 100644
+--- a/emote/emojis.py
++++ b/emote/emojis.py
+@@ -4,227 +4,232 @@ from collections import defaultdict
+ from emote import user_data, config
+
+
+-# These are emojis that support skintone sequences but that are not yet
+-# supported on the core18 snap base and as such would render as two separate
+-# emojis.
+-SKINTONE_SEQUENCE_BLOCKLIST = [
+- "hand_with_fingers_splayed",
+- "victory_hand",
+- "backhand_index_pointing_left",
+- "backhand_index_pointing_right",
+- "backhand_index_pointing_up",
+- "backhand_index_pointing_down",
+- "index_pointing_up",
+- "thumbs_up",
+- "thumbs_down",
+- "writing_hand",
+- "ear",
+- "man_beard",
+- "woman_beard",
+- "woman_blond_hair",
+- "man_blond_hair",
+- "man_frowning",
+- "woman_frowning",
+- "man_pouting",
+- "woman_pouting",
+- "man_gesturing_no",
+- "woman_gesturing_no",
+- "man_gesturing_ok",
+- "woman_gesturing_ok",
+- "man_tipping_hand",
+- "woman_tipping_hand",
+- "man_raising_hand",
+- "woman_raising_hand",
+- "man_bowing",
+- "woman_bowing",
+- "man_facepalming",
+- "woman_facepalming",
+- "man_shrugging",
+- "woman_shrugging",
+- "health_worker",
+- "man_health_worker",
+- "woman_health_worker",
+- "student",
+- "man_student",
+- "woman_student",
+- "teacher",
+- "man_teacher",
+- "woman_teacher",
+- "judge",
+- "man_judge",
+- "woman_judge",
+- "farmer",
+- "man_farmer",
+- "woman_farmer",
+- "cook",
+- "man_cook",
+- "woman_cook",
+- "mechanic",
+- "man_mechanic",
+- "woman_mechanic",
+- "factory_worker",
+- "man_factory_worker",
+- "woman_factory_worker",
+- "office_worker",
+- "man_office_worker",
+- "woman_office_worker",
+- "scientist",
+- "man_scientist",
+- "woman_scientist",
+- "technologist",
+- "man_technologist",
+- "woman_technologist",
+- "singer",
+- "man_singer",
+- "woman_singer",
+- "artist",
+- "man_artist",
+- "woman_artist",
+- "pilot",
+- "man_pilot",
+- "woman_pilot",
+- "astronaut",
+- "man_astronaut",
+- "woman_astronaut",
+- "firefighter",
+- "man_firefighter",
+- "woman_firefighter",
+- "man_police_officer",
+- "woman_police_officer",
+- "detective",
+- "man_detective",
+- "woman_detective",
+- "man_guard",
+- "woman_guard",
+- "man_construction_worker",
+- "woman_construction_worker",
+- "man_wearing_turban",
+- "woman_wearing_turban",
+- "man_in_tuxedo",
+- "woman_in_tuxedo",
+- "man_with_veil",
+- "woman_with_veil",
+- "woman_feeding_baby",
+- "man_feeding_baby",
+- "person_feeding_baby",
+- "mx_claus",
+- "man_mage",
+- "woman_mage",
+- "man_fairy",
+- "woman_fairy",
+- "man_vampire",
+- "woman_vampire",
+- "merman",
+- "mermaid",
+- "man_elf",
+- "woman_elf",
+- "man_getting_massage",
+- "woman_getting_massage",
+- "man_getting_haircut",
+- "woman_getting_haircut",
+- "man_walking",
+- "woman_walking",
+- "man_running",
+- "woman_running",
+- "person_in_suit_levitating",
+- "man_in_steamy_room",
+- "woman_in_steamy_room",
+- "man_climbing",
+- "woman_climbing",
+- "snowboarder",
+- "person_golfing",
+- "man_golfing",
+- "woman_golfing",
+- "person_surfing",
+- "man_surfing",
+- "woman_surfing",
+- "man_rowing_boat",
+- "woman_rowing_boat",
+- "person_swimming",
+- "man_swimming",
+- "woman_swimming",
+- "person_bouncing_ball",
+- "man_bouncing_ball",
+- "woman_bouncing_ball",
+- "person_lifting_weights",
+- "man_lifting_weights",
+- "woman_lifting_weights",
+- "man_biking",
+- "woman_biking",
+- "man_mountain_biking",
+- "woman_mountain_biking",
+- "man_cartwheeling",
+- "woman_cartwheeling",
+- "man_playing_water_polo",
+- "woman_playing_water_polo",
+- "man_playing_handball",
+- "woman_playing_handball",
+- "man_juggling",
+- "woman_juggling",
+- "man_in_lotus_position",
+- "woman_in_lotus_position",
+- "people_holding_hands",
+- "kiss_woman_man",
+- "kiss_man_man",
+- "kiss_woman_woman",
+- "couple_with_heart_woman_man",
+- "couple_with_heart_man_man",
+- "couple_with_heart_woman_woman",
+- "pinched_fingers",
+- "pinching_hand",
+- "leg",
+- "foot",
+- "ear_with_hearing_aid",
+- "deaf_person",
+- "ninja",
+- "superhero",
+- "supervillain",
+- "person_standing",
+- "person_kneeling",
+-]
+-# These are emojis that are not supported on core18 snap base and as such
+-# render as two separate emojis. The app itself bundles a recent version of the
+-# NotoColorEmoji font and so can display recent single char emojis, however any
+-# emojis that are sequences also require a recent version of pango for the OS
+-# to recognise and combine the sequences. Upgrading to core20 should let us
+-# include more recent unicode sequences:
+-# https://github.com/tom-james-watson/Emote/issues/48.
+-SEQUENCE_BLOCKLIST = [
+- "man_red_hair",
+- "man_curly_hair",
+- "man_white_hair",
+- "man_bald",
+- "woman_red_hair",
+- "person_red_hair",
+- "woman_curly_hair",
+- "person_curly_hair",
+- "woman_white_hair",
+- "person_white_hair",
+- "woman_bald",
+- "person_bald",
+- "deaf_man",
+- "deaf_woman",
+- "man_superhero",
+- "woman_superhero",
+- "man_supervillain",
+- "woman_supervillain",
+- "man_standing",
+- "woman_standing",
+- "man_kneeling",
+- "woman_kneeling",
+- "person_with_white_cane",
+- "man_with_white_cane",
+- "woman_with_white_cane",
+- "person_in_motorized_wheelchair",
+- "man_in_motorized_wheelchair",
+- "woman_in_motorized_wheelchair",
+- "person_in_manual_wheelchair",
+- "man_in_manual_wheelchair",
+- "woman_in_manual_wheelchair",
+- "service_dog",
+- "transgender_flag",
+- "mending_heart",
+-]
++if config.is_snap:
++ # These are emojis that support skintone sequences but that are not yet
++ # supported on the core18 snap base and as such would render as two separate
++ # emojis.
++ SKINTONE_SEQUENCE_BLOCKLIST = [
++ "hand_with_fingers_splayed",
++ "victory_hand",
++ "backhand_index_pointing_left",
++ "backhand_index_pointing_right",
++ "backhand_index_pointing_up",
++ "backhand_index_pointing_down",
++ "index_pointing_up",
++ "thumbs_up",
++ "thumbs_down",
++ "writing_hand",
++ "ear",
++ "man_beard",
++ "woman_beard",
++ "woman_blond_hair",
++ "man_blond_hair",
++ "man_frowning",
++ "woman_frowning",
++ "man_pouting",
++ "woman_pouting",
++ "man_gesturing_no",
++ "woman_gesturing_no",
++ "man_gesturing_ok",
++ "woman_gesturing_ok",
++ "man_tipping_hand",
++ "woman_tipping_hand",
++ "man_raising_hand",
++ "woman_raising_hand",
++ "man_bowing",
++ "woman_bowing",
++ "man_facepalming",
++ "woman_facepalming",
++ "man_shrugging",
++ "woman_shrugging",
++ "health_worker",
++ "man_health_worker",
++ "woman_health_worker",
++ "student",
++ "man_student",
++ "woman_student",
++ "teacher",
++ "man_teacher",
++ "woman_teacher",
++ "judge",
++ "man_judge",
++ "woman_judge",
++ "farmer",
++ "man_farmer",
++ "woman_farmer",
++ "cook",
++ "man_cook",
++ "woman_cook",
++ "mechanic",
++ "man_mechanic",
++ "woman_mechanic",
++ "factory_worker",
++ "man_factory_worker",
++ "woman_factory_worker",
++ "office_worker",
++ "man_office_worker",
++ "woman_office_worker",
++ "scientist",
++ "man_scientist",
++ "woman_scientist",
++ "technologist",
++ "man_technologist",
++ "woman_technologist",
++ "singer",
++ "man_singer",
++ "woman_singer",
++ "artist",
++ "man_artist",
++ "woman_artist",
++ "pilot",
++ "man_pilot",
++ "woman_pilot",
++ "astronaut",
++ "man_astronaut",
++ "woman_astronaut",
++ "firefighter",
++ "man_firefighter",
++ "woman_firefighter",
++ "man_police_officer",
++ "woman_police_officer",
++ "detective",
++ "man_detective",
++ "woman_detective",
++ "man_guard",
++ "woman_guard",
++ "man_construction_worker",
++ "woman_construction_worker",
++ "man_wearing_turban",
++ "woman_wearing_turban",
++ "man_in_tuxedo",
++ "woman_in_tuxedo",
++ "man_with_veil",
++ "woman_with_veil",
++ "woman_feeding_baby",
++ "man_feeding_baby",
++ "person_feeding_baby",
++ "mx_claus",
++ "man_mage",
++ "woman_mage",
++ "man_fairy",
++ "woman_fairy",
++ "man_vampire",
++ "woman_vampire",
++ "merman",
++ "mermaid",
++ "man_elf",
++ "woman_elf",
++ "man_getting_massage",
++ "woman_getting_massage",
++ "man_getting_haircut",
++ "woman_getting_haircut",
++ "man_walking",
++ "woman_walking",
++ "man_running",
++ "woman_running",
++ "person_in_suit_levitating",
++ "man_in_steamy_room",
++ "woman_in_steamy_room",
++ "man_climbing",
++ "woman_climbing",
++ "snowboarder",
++ "person_golfing",
++ "man_golfing",
++ "woman_golfing",
++ "person_surfing",
++ "man_surfing",
++ "woman_surfing",
++ "man_rowing_boat",
++ "woman_rowing_boat",
++ "person_swimming",
++ "man_swimming",
++ "woman_swimming",
++ "person_bouncing_ball",
++ "man_bouncing_ball",
++ "woman_bouncing_ball",
++ "person_lifting_weights",
++ "man_lifting_weights",
++ "woman_lifting_weights",
++ "man_biking",
++ "woman_biking",
++ "man_mountain_biking",
++ "woman_mountain_biking",
++ "man_cartwheeling",
++ "woman_cartwheeling",
++ "man_playing_water_polo",
++ "woman_playing_water_polo",
++ "man_playing_handball",
++ "woman_playing_handball",
++ "man_juggling",
++ "woman_juggling",
++ "man_in_lotus_position",
++ "woman_in_lotus_position",
++ "people_holding_hands",
++ "kiss_woman_man",
++ "kiss_man_man",
++ "kiss_woman_woman",
++ "couple_with_heart_woman_man",
++ "couple_with_heart_man_man",
++ "couple_with_heart_woman_woman",
++ "pinched_fingers",
++ "pinching_hand",
++ "leg",
++ "foot",
++ "ear_with_hearing_aid",
++ "deaf_person",
++ "ninja",
++ "superhero",
++ "supervillain",
++ "person_standing",
++ "person_kneeling",
++ ]
++ # These are emojis that are not supported on core18 snap base and as such
++ # render as two separate emojis. The app itself bundles a recent version of
++ # the NotoColorEmoji font and so can display recent single char emojis,
++ # however any emojis that are sequences also require a recent version of
++ # pango for the OS to recognise and combine the sequences. Upgrading to
++ # core20 should let us include more recent unicode sequences:
++ # https://github.com/tom-james-watson/Emote/issues/48.
++ SEQUENCE_BLOCKLIST = [
++ "man_red_hair",
++ "man_curly_hair",
++ "man_white_hair",
++ "man_bald",
++ "woman_red_hair",
++ "person_red_hair",
++ "woman_curly_hair",
++ "person_curly_hair",
++ "woman_white_hair",
++ "person_white_hair",
++ "woman_bald",
++ "person_bald",
++ "deaf_man",
++ "deaf_woman",
++ "man_superhero",
++ "woman_superhero",
++ "man_supervillain",
++ "woman_supervillain",
++ "man_standing",
++ "woman_standing",
++ "man_kneeling",
++ "woman_kneeling",
++ "person_with_white_cane",
++ "man_with_white_cane",
++ "woman_with_white_cane",
++ "person_in_motorized_wheelchair",
++ "man_in_motorized_wheelchair",
++ "woman_in_motorized_wheelchair",
++ "person_in_manual_wheelchair",
++ "man_in_manual_wheelchair",
++ "woman_in_manual_wheelchair",
++ "service_dog",
++ "transgender_flag",
++ "mending_heart",
++ ]
++else:
++ SKINTONE_SEQUENCE_BLOCKLIST = []
++ SEQUENCE_BLOCKLIST = []
++
+ EMOJI_CATEGORY_BLOCKLIST = ["component", "extras-openmoji", "extras-unicode"]
+
+
+@@ -236,14 +241,9 @@ def init():
+ global all_emojis
+ global emojis_by_category
+
+- filename = (
+- f"{config.snap_root}/static/emojis.csv"
+- if config.is_snap
+- else "static/emojis.csv"
+- )
+-
+- with open(filename, newline="") as csvfile:
++ with open(f"{config.static_root}/emojis.csv", newline="") as csvfile:
+ reader = csv.DictReader(csvfile)
++ skintone_templates = {}
+
+ for row in reader:
+ category = row["group"]
+@@ -255,6 +255,16 @@ def init():
+ if category in ["smileys-emotion", "people-body"]:
+ category = "smileys-people"
+
++ # Skin tone code points can appear anywhere in an emoji sequence
++ # (sometimes more than once), so we create a template from the first
++ # variant.
++ if row["skintone_combination"] == "single" and row["skintone"] == "1":
++ base_emoji = row["skintone_base_emoji"]
++ if base_emoji != "":
++ template = row["emoji"].replace(user_data.SKINTONES[1], "{}")
++ if "{}" in template:
++ skintone_templates[base_emoji] = template
++
+ # Ignore emojis that are skintone combinations of other emojis. We
+ # will handle this ourselves in the app.
+ if row["skintone"] != "":
+@@ -271,27 +281,44 @@ def init():
+ "char": row["emoji"],
+ "name": row["annotation"].capitalize(),
+ "shortcode": shortcode,
+- "skintone": row["skintone_combination"] == "single"
+- and shortcode not in SKINTONE_SEQUENCE_BLOCKLIST,
++ "skintone": row["skintone_combination"] == "single" and
++ shortcode not in SKINTONE_SEQUENCE_BLOCKLIST,
+ }
+ emojis_by_category[category].append(emoji)
+ all_emojis.append(emoji)
+
++ # Copy skin tone templates to emojis
++ for emoji in all_emojis:
++ if emoji["skintone"] and emoji["char"] in skintone_templates:
++ emoji["skintone_template"] = skintone_templates[emoji["char"]]
++ else:
++ emoji["skintone"] = False
++
+ update_recent_category()
+
+
+ def strip_char_skintone(char):
+- for skintone in user_data.SKINTONES:
+- char = char.replace(skintone, "")
++ try:
++ emoji = get_emoji_by_char(char)
++ except Exception:
++ return char
++
++ return emoji["char"]
++
++
++def get_skintone_template(char):
++ for skintone in user_data.SKINTONES[1:]:
++ char = char.replace(skintone, "{}")
+
+ return char
+
+
+ def get_emoji_by_char(char):
+- char = strip_char_skintone(char)
++ template = get_skintone_template(char)
+
+ for emoji in all_emojis:
+- if emoji["char"] == char:
++ if emoji["char"] == char or (
++ "skintone_template" in emoji and emoji["skintone_template"] == template):
+ return emoji
+
+ raise Exception(f"Couldn't find emoji by char {char}")
+@@ -303,7 +330,7 @@ def update_recent_category():
+ for char in user_data.load_recent_emojis():
+ try:
+ emoji = get_emoji_by_char(char)
+- except:
++ except Exception:
+ continue
+ emojis_by_category["recent"].append(emoji)
+
+diff --git a/emote/picker.py b/emote/picker.py
+index 5e98c1c..be20315 100644
+--- a/emote/picker.py
++++ b/emote/picker.py
+@@ -130,14 +130,14 @@ class EmojiPicker(Gtk.Window):
+ skintone_combo.connect("changed", self.on_skintone_combo_changed)
+
+ for skintone in user_data.SKINTONES:
+- skintone_combo.append_text(skintone)
++ skintone_combo.append_text("👋" + skintone)
+
+ skintone_combo.set_active(user_data.SKINTONES.index(user_data.load_skintone()))
+
+ return skintone_combo
+
+ def on_skintone_combo_changed(self, combo):
+- skintone = combo.get_active_text()
++ skintone = combo.get_active_text().replace("👋", "")
+
+ if skintone is not None:
+ user_data.update_skintone(skintone)
+@@ -239,7 +239,7 @@ class EmojiPicker(Gtk.Window):
+ if skintone == user_data.DEFAULT_SKINTONE:
+ return char
+
+- return char + skintone
++ return emoji["skintone_template"].replace("{}", skintone)
+
+ def show_emoji_preview(self, char):
+ emoji = emojis.get_emoji_by_char(char)
+@@ -318,12 +318,7 @@ class EmojiPicker(Gtk.Window):
+ guide_window.connect("destroy", self.on_close_dialog)
+
+ def open_about(self):
+- logo_path = (
+- f"{config.snap_root}/static/logo.svg"
+- if config.is_snap
+- else "static/logo.svg"
+- )
+- logo = Pixbuf.new_from_file(logo_path)
++ logo = Pixbuf.new_from_file(f"{config.static_root}/logo.svg")
+
+ about_dialog = Gtk.AboutDialog(
+ transient_for=self,
+diff --git a/emote/user_data.py b/emote/user_data.py
+index 7095a5f..08e20a7 100644
+--- a/emote/user_data.py
++++ b/emote/user_data.py
+@@ -62,9 +62,8 @@ THEMES = [
+ ]
+
+ SKINTONE = "skintone"
+-DEFAULT_SKINTONE = "🟨"
+-SKINTONES = ["🟨", "🏻", "🏼", "🏽", "🏾", "🏿"]
+-
++DEFAULT_SKINTONE = ""
++SKINTONES = ["", "\U0001f3fb", "\U0001f3fc", "\U0001f3fd", "\U0001f3fe", "\U0001f3ff"]
+
+ # Ensure the data dir exists
+ os.makedirs(DATA_DIR, exist_ok=True)
+diff --git a/static/emojis.csv b/static/emojis.csv
+index a26f7c1..9e6a4e7 100644
+--- a/static/emojis.csv
++++ b/static/emojis.csv
+@@ -17,7 +17,7 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🤩,1F929,smileys-emotion,face-affection,star-struck,"eyes, face, grinning, star",surprised,Emily Jäger,2018-04-18,,,,,5,16
+ 😘,1F618,smileys-emotion,face-affection,face blowing a kiss,"face, kiss","love, happy",Emily Jäger,2018-04-18,,,,,0.6,17
+ 😗,1F617,smileys-emotion,face-affection,kissing face,"face, kiss",,Emily Jäger,2018-04-18,,,,,1,18
+-☺️,263A,smileys-emotion,face-affection,smiling face,"face, outlined, relaxed, smile",satisfied,Emily Jäger,2018-04-18,,,,,0.6,20
++☺,263A,smileys-emotion,face-affection,smiling face,"face, outlined, relaxed, smile",satisfied,Emily Jäger,2018-04-18,,,,,0.6,20
+ 😚,1F61A,smileys-emotion,face-affection,kissing face with closed eyes,"closed, eye, face, kiss","love, happy",Emily Jäger,2018-04-18,,,,,0.6,21
+ 😙,1F619,smileys-emotion,face-affection,kissing face with smiling eyes,"eye, face, kiss, smile",,Emily Jäger,2018-04-18,,,,,1,22
+ 🥲,1F972,smileys-emotion,face-affection,smiling face with tear,"grateful, proud, relieved, smiling, tear, touched",,Liz Bravo,2020-03-07,,,,,13,23
+@@ -33,7 +33,7 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🤔,1F914,smileys-emotion,face-hand,thinking face,"face, thinking","hand, overthinking",Emily Jäger,2018-04-18,,,,,1,33
+ 🤐,1F910,smileys-emotion,face-neutral-skeptical,zipper-mouth face,"face, mouth, zipper",,Emily Jäger,2018-04-18,,,,,1,34
+ 🤨,1F928,smileys-emotion,face-neutral-skeptical,face with raised eyebrow,"distrust, skeptic",suspiciously,Emily Jäger,2018-04-18,,,,,5,35
+-😐️,1F610,smileys-emotion,face-neutral-skeptical,neutral face,"deadpan, face, meh, neutral",,Mariella Steeb,2018-04-18,,,,,0.7,36
++😐,1F610,smileys-emotion,face-neutral-skeptical,neutral face,"deadpan, face, meh, neutral",,Mariella Steeb,2018-04-18,,,,,0.7,36
+ 😑,1F611,smileys-emotion,face-neutral-skeptical,expressionless face,"expressionless, face, inexpressive, meh, unexpressive",,Mariella Steeb,2018-04-18,,,,,1,37
+ 😶,1F636,smileys-emotion,face-neutral-skeptical,face without mouth,"face, mouth, quiet, silent",shhh,Emily Jäger,2018-04-18,,,,,1,38
+ 😶‍🌫️,1F636-200D-1F32B-FE0F,smileys-emotion,face-neutral-skeptical,face in clouds,"absentminded, face in the fog, head in clouds",,Nelly Nieter,2021-04-23,,,,,13.1,39
+@@ -69,7 +69,7 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 😕,1F615,smileys-emotion,face-concerned,confused face,"confused, face, meh",,Mariella Steeb,2018-04-18,,,,,1,70
+ 😟,1F61F,smileys-emotion,face-concerned,worried face,"face, worried",,Mariella Steeb,2018-04-18,,,,,1,71
+ 🙁,1F641,smileys-emotion,face-concerned,slightly frowning face,"face, frown",,Mariella Steeb,2018-04-18,,,,,1,72
+-☹️,2639,smileys-emotion,face-concerned,frowning face,"face, frown",negative,Mariella Steeb,2018-04-18,,,,,0.7,74
++☹,2639,smileys-emotion,face-concerned,frowning face,"face, frown",negative,Mariella Steeb,2018-04-18,,,,,0.7,74
+ 😮,1F62E,smileys-emotion,face-concerned,face with open mouth,"face, mouth, open, sympathy",,Mariella Steeb,2018-04-18,,,,,1,75
+ 😯,1F62F,smileys-emotion,face-concerned,hushed face,"face, hushed, stunned, surprised",,Mariella Steeb,2018-04-18,,,,,1,76
+ 😲,1F632,smileys-emotion,face-concerned,astonished face,"astonished, face, shocked, totally",,Emily Jäger,2018-04-18,,,,,0.6,77
+@@ -97,13 +97,13 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 😈,1F608,smileys-emotion,face-negative,smiling face with horns,"face, fairy tale, fantasy, horns, smile","malicious, sardonic",Mariella Steeb,2018-04-18,,,,,1,99
+ 👿,1F47F,smileys-emotion,face-negative,angry face with horns,"demon, devil, face, fantasy, imp",mean,Mariella Steeb,2018-04-18,,,,,0.6,100
+ 💀,1F480,smileys-emotion,face-negative,skull,"death, face, fairy tale, monster",skull,Mariella Steeb,2018-04-18,,,,,0.6,101
+-☠️,2620,smileys-emotion,face-negative,skull and crossbones,"crossbones, death, face, monster, skull",,Mariella Steeb,2018-04-18,,,,,1,103
++☠,2620,smileys-emotion,face-negative,skull and crossbones,"crossbones, death, face, monster, skull",,Mariella Steeb,2018-04-18,,,,,1,103
+ 💩,1F4A9,smileys-emotion,face-costume,pile of poo,"dung, face, monster, poo, poop",,Mariella Steeb,2018-04-18,,,,,0.6,104
+ 🤡,1F921,smileys-emotion,face-costume,clown face,"clown, face",,Emily Jäger,2018-04-18,,,,,3,105
+ 👹,1F479,smileys-emotion,face-costume,ogre,"creature, face, fairy tale, fantasy, monster",,Anne Frauendorf,2018-11-16,,,,,0.6,106
+ 👺,1F47A,smileys-emotion,face-costume,goblin,"creature, face, fairy tale, fantasy, monster",,Antonia Wagner,2019-05-03,,,,,0.6,107
+ 👻,1F47B,smileys-emotion,face-costume,ghost,"creature, face, fairy tale, fantasy, monster",ghost,Mariella Steeb,2018-04-18,,,,,0.6,108
+-👽️,1F47D,smileys-emotion,face-costume,alien,"creature, extraterrestrial, face, fantasy, ufo",alien,Mariella Steeb,2018-04-18,,,,,0.6,109
++👽,1F47D,smileys-emotion,face-costume,alien,"creature, extraterrestrial, face, fantasy, ufo",alien,Mariella Steeb,2018-04-18,,,,,0.6,109
+ 👾,1F47E,smileys-emotion,face-costume,alien monster,"alien, creature, extraterrestrial, face, monster, ufo",,Antonia Wagner,2019-05-03,,,,,0.6,110
+ 🤖,1F916,smileys-emotion,face-costume,robot,"face, monster",,Mariella Steeb,2018-04-18,,,,,1,111
+ 😺,1F63A,smileys-emotion,cat-face,grinning cat,"cat, face, grinning, mouth, open, smile",grinning,Emily Jäger,2018-04-18,,,,,0.6,112
+@@ -128,11 +128,11 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 💞,1F49E,smileys-emotion,emotion,revolving hearts,revolving,,Laura Humpfer,2018-04-18,,,,,0.6,131
+ 💕,1F495,smileys-emotion,emotion,two hearts,love,,Laura Humpfer,2018-04-18,,,,,0.6,132
+ 💟,1F49F,smileys-emotion,emotion,heart decoration,heart,,Laura Humpfer,2018-04-18,,,,,0.6,133
+-❣️,2763,smileys-emotion,emotion,heart exclamation,"exclamation, mark, punctuation",,Laura Humpfer,2018-04-18,,,,,1,135
++❣,2763,smileys-emotion,emotion,heart exclamation,"exclamation, mark, punctuation",,Laura Humpfer,2018-04-18,,,,,1,135
+ 💔,1F494,smileys-emotion,emotion,broken heart,"break, broken",heartbreak,Laura Humpfer,2018-04-18,,,,,0.6,136
+ ❤️‍🔥,2764-FE0F-200D-1F525,smileys-emotion,emotion,heart on fire,"burn, heart, love, lust, sacred heart",,Nelly Nieter,2021-04-23,,,,,13.1,137
+ ❤️‍🩹,2764-FE0F-200D-1FA79,smileys-emotion,emotion,mending heart,"healthier, improving, mending, recovering, recuperating, well",,Nelly Nieter,2021-04-23,,,,,13.1,139
+-❤️,2764,smileys-emotion,emotion,red heart,heart,"love, red",Laura Humpfer,2018-04-18,,,,,0.6,142
++❤,2764,smileys-emotion,emotion,red heart,heart,"love, red",Laura Humpfer,2018-04-18,,,,,0.6,142
+ 🧡,1F9E1,smileys-emotion,emotion,orange heart,orange,,Laura Schießer,2019-05-06,,,,,5,143
+ 💛,1F49B,smileys-emotion,emotion,yellow heart,yellow,,Laura Humpfer,2018-04-18,,,,,0.6,144
+ 💚,1F49A,smileys-emotion,emotion,green heart,green,,Laura Humpfer,2018-04-18,,,,,0.6,145
+@@ -147,12 +147,12 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 💫,1F4AB,smileys-emotion,emotion,dizzy,"comic, star",shootingstar,Laura Humpfer,2018-04-18,,,,,0.6,154
+ 💦,1F4A6,smileys-emotion,emotion,sweat droplets,"comic, splashing, sweat",,Laura Humpfer,2018-04-18,,,,,0.6,155
+ 💨,1F4A8,smileys-emotion,emotion,dashing away,"comic, dash, running",,Laura Humpfer,2018-04-18,,,,,0.6,156
+-🕳️,1F573,smileys-emotion,emotion,hole,hole,,Laura Humpfer,2018-04-18,,,,,0.7,158
+-💣️,1F4A3,smileys-emotion,emotion,bomb,comic,explosion,Laura Humpfer,2018-04-18,,,,,0.6,159
++🕳,1F573,smileys-emotion,emotion,hole,hole,,Laura Humpfer,2018-04-18,,,,,0.7,158
++💣,1F4A3,smileys-emotion,emotion,bomb,comic,explosion,Laura Humpfer,2018-04-18,,,,,0.6,159
+ 💬,1F4AC,smileys-emotion,emotion,speech balloon,"balloon, bubble, comic, dialog, speech",talk,Laura Humpfer,2018-04-18,,,,,0.6,160
+ 👁️‍🗨️,1F441-FE0F-200D-1F5E8-FE0F,smileys-emotion,emotion,eye in speech bubble,"eye, speech bubble, witness","eye, speech bubble, witness",Julian Grüneberg,2018-04-18,,,,,2,161
+-🗨️,1F5E8,smileys-emotion,emotion,left speech bubble,"dialog, speech",,Laura Humpfer,2018-04-18,,,,,2,166
+-🗯️,1F5EF,smileys-emotion,emotion,right anger bubble,"angry, balloon, bubble, mad",,Laura Humpfer,2018-04-18,,,,,0.7,168
++🗨,1F5E8,smileys-emotion,emotion,left speech bubble,"dialog, speech",,Laura Humpfer,2018-04-18,,,,,2,166
++🗯,1F5EF,smileys-emotion,emotion,right anger bubble,"angry, balloon, bubble, mad",,Laura Humpfer,2018-04-18,,,,,0.7,168
+ 💭,1F4AD,smileys-emotion,emotion,thought balloon,"balloon, bubble, comic, thought",think,Laura Humpfer,2018-04-18,,,,,1,169
+ 💤,1F4A4,smileys-emotion,emotion,zzz,"comic, sleep",night,Laura Humpfer,2018-04-18,,,,,0.6,170
+ 👋,1F44B,people-body,hand-fingers-open,waving hand,"hand, wave, waving","Hello, Goodbye, Waving Hand Sign, Wave",Julian Grüneberg,2018-04-18,,single,👋,1F44B,0.6,171
+@@ -167,12 +167,12 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🤚🏽,1F91A-1F3FD,people-body,hand-fingers-open,raised back of hand: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,🤚,1F91A,3,180
+ 🤚🏾,1F91A-1F3FE,people-body,hand-fingers-open,raised back of hand: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,🤚,1F91A,3,181
+ 🤚🏿,1F91A-1F3FF,people-body,hand-fingers-open,raised back of hand: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,🤚,1F91A,3,182
+-🖐️,1F590,people-body,hand-fingers-open,hand with fingers splayed,"finger, hand, splayed","Five Hand, Hand, Five, Splayed",Julian Grüneberg,2018-04-18,,single,🖐️,1F590,0.7,184
+-🖐🏻,1F590-1F3FB,people-body,hand-fingers-open,hand with fingers splayed: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,🖐️,1F590,1,185
+-🖐🏼,1F590-1F3FC,people-body,hand-fingers-open,hand with fingers splayed: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,🖐️,1F590,1,186
+-🖐🏽,1F590-1F3FD,people-body,hand-fingers-open,hand with fingers splayed: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,🖐️,1F590,1,187
+-🖐🏾,1F590-1F3FE,people-body,hand-fingers-open,hand with fingers splayed: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,🖐️,1F590,1,188
+-🖐🏿,1F590-1F3FF,people-body,hand-fingers-open,hand with fingers splayed: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,🖐️,1F590,1,189
++🖐,1F590,people-body,hand-fingers-open,hand with fingers splayed,"finger, hand, splayed","Five Hand, Hand, Five, Splayed",Julian Grüneberg,2018-04-18,,single,🖐,1F590,0.7,184
++🖐🏻,1F590-1F3FB,people-body,hand-fingers-open,hand with fingers splayed: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,🖐,1F590,1,185
++🖐🏼,1F590-1F3FC,people-body,hand-fingers-open,hand with fingers splayed: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,🖐,1F590,1,186
++🖐🏽,1F590-1F3FD,people-body,hand-fingers-open,hand with fingers splayed: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,🖐,1F590,1,187
++🖐🏾,1F590-1F3FE,people-body,hand-fingers-open,hand with fingers splayed: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,🖐,1F590,1,188
++🖐🏿,1F590-1F3FF,people-body,hand-fingers-open,hand with fingers splayed: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,🖐,1F590,1,189
+ ✋,270B,people-body,hand-fingers-open,raised hand,"hand, high 5, high five","raise, raised, raised hand, hand",Julian Grüneberg,2018-04-18,,single,✋,270B,0.6,190
+ ✋🏻,270B-1F3FB,people-body,hand-fingers-open,raised hand: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,✋,270B,1,191
+ ✋🏼,270B-1F3FC,people-body,hand-fingers-open,raised hand: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,✋,270B,1,192
+@@ -203,12 +203,12 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🤏🏽,1F90F-1F3FD,people-body,hand-fingers-partial,pinching hand: medium skin tone,,,Laura Dworatschek,2019-05-06,3,single,🤏,1F90F,12,217
+ 🤏🏾,1F90F-1F3FE,people-body,hand-fingers-partial,pinching hand: medium-dark skin tone,,,Laura Dworatschek,2019-05-06,4,single,🤏,1F90F,12,218
+ 🤏🏿,1F90F-1F3FF,people-body,hand-fingers-partial,pinching hand: dark skin tone,,,Laura Dworatschek,2019-05-06,5,single,🤏,1F90F,12,219
+-✌️,270C,people-body,hand-fingers-partial,victory hand,"hand, v, victory","hand, v, victory, Air Quotes, quotes, Peace, Peace Sign, V Sign",Julian Grüneberg,2018-04-18,,single,✌️,270C,0.6,221
+-✌🏻,270C-1F3FB,people-body,hand-fingers-partial,victory hand: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,✌️,270C,1,222
+-✌🏼,270C-1F3FC,people-body,hand-fingers-partial,victory hand: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,✌️,270C,1,223
+-✌🏽,270C-1F3FD,people-body,hand-fingers-partial,victory hand: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,✌️,270C,1,224
+-✌🏾,270C-1F3FE,people-body,hand-fingers-partial,victory hand: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,✌️,270C,1,225
+-✌🏿,270C-1F3FF,people-body,hand-fingers-partial,victory hand: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,✌️,270C,1,226
++✌,270C,people-body,hand-fingers-partial,victory hand,"hand, v, victory","hand, v, victory, Air Quotes, quotes, Peace, Peace Sign, V Sign",Julian Grüneberg,2018-04-18,,single,✌,270C,0.6,221
++✌🏻,270C-1F3FB,people-body,hand-fingers-partial,victory hand: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,✌,270C,1,222
++✌🏼,270C-1F3FC,people-body,hand-fingers-partial,victory hand: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,✌,270C,1,223
++✌🏽,270C-1F3FD,people-body,hand-fingers-partial,victory hand: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,✌,270C,1,224
++✌🏾,270C-1F3FE,people-body,hand-fingers-partial,victory hand: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,✌,270C,1,225
++✌🏿,270C-1F3FF,people-body,hand-fingers-partial,victory hand: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,✌,270C,1,226
+ 🤞,1F91E,people-body,hand-fingers-partial,crossed fingers,"cross, finger, hand, luck","Fingers Crossed, crossed, fingers, Good Luck, luck",Julian Grüneberg,2018-04-18,,single,🤞,1F91E,3,227
+ 🤞🏻,1F91E-1F3FB,people-body,hand-fingers-partial,crossed fingers: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,🤞,1F91E,3,228
+ 🤞🏼,1F91E-1F3FC,people-body,hand-fingers-partial,crossed fingers: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,🤞,1F91E,3,229
+@@ -233,54 +233,54 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🤙🏽,1F919-1F3FD,people-body,hand-fingers-partial,call me hand: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,🤙,1F919,3,248
+ 🤙🏾,1F919-1F3FE,people-body,hand-fingers-partial,call me hand: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,🤙,1F919,3,249
+ 🤙🏿,1F919-1F3FF,people-body,hand-fingers-partial,call me hand: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,🤙,1F919,3,250
+-👈️,1F448,people-body,hand-single-finger,backhand index pointing left,"backhand, finger, hand, index, point","backhand, finger, hand, index, point, point, left, Middle Finger, White left",Julian Grüneberg,2018-04-18,,single,👈️,1F448,0.6,251
+-👈🏻,1F448-1F3FB,people-body,hand-single-finger,backhand index pointing left: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👈️,1F448,1,252
+-👈🏼,1F448-1F3FC,people-body,hand-single-finger,backhand index pointing left: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👈️,1F448,1,253
+-👈🏽,1F448-1F3FD,people-body,hand-single-finger,backhand index pointing left: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👈️,1F448,1,254
+-👈🏾,1F448-1F3FE,people-body,hand-single-finger,backhand index pointing left: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👈️,1F448,1,255
+-👈🏿,1F448-1F3FF,people-body,hand-single-finger,backhand index pointing left: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👈️,1F448,1,256
+-👉️,1F449,people-body,hand-single-finger,backhand index pointing right,"backhand, finger, hand, index, point","backhand, finger, hand, index, point, point, right, Middle Finger, White right",Julian Grüneberg,2018-04-18,,single,👉️,1F449,0.6,257
+-👉🏻,1F449-1F3FB,people-body,hand-single-finger,backhand index pointing right: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👉️,1F449,1,258
+-👉🏼,1F449-1F3FC,people-body,hand-single-finger,backhand index pointing right: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👉️,1F449,1,259
+-👉🏽,1F449-1F3FD,people-body,hand-single-finger,backhand index pointing right: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👉️,1F449,1,260
+-👉🏾,1F449-1F3FE,people-body,hand-single-finger,backhand index pointing right: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👉️,1F449,1,261
+-👉🏿,1F449-1F3FF,people-body,hand-single-finger,backhand index pointing right: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👉️,1F449,1,262
+-👆️,1F446,people-body,hand-single-finger,backhand index pointing up,"backhand, finger, hand, point, up","backhand, finger, hand, index, point, up, Middle Finger, White Up",Julian Grüneberg,2018-04-18,,single,👆️,1F446,0.6,263
+-👆🏻,1F446-1F3FB,people-body,hand-single-finger,backhand index pointing up: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👆️,1F446,1,264
+-👆🏼,1F446-1F3FC,people-body,hand-single-finger,backhand index pointing up: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👆️,1F446,1,265
+-👆🏽,1F446-1F3FD,people-body,hand-single-finger,backhand index pointing up: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👆️,1F446,1,266
+-👆🏾,1F446-1F3FE,people-body,hand-single-finger,backhand index pointing up: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👆️,1F446,1,267
+-👆🏿,1F446-1F3FF,people-body,hand-single-finger,backhand index pointing up: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👆️,1F446,1,268
++👈,1F448,people-body,hand-single-finger,backhand index pointing left,"backhand, finger, hand, index, point","backhand, finger, hand, index, point, point, left, Middle Finger, White left",Julian Grüneberg,2018-04-18,,single,👈,1F448,0.6,251
++👈🏻,1F448-1F3FB,people-body,hand-single-finger,backhand index pointing left: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👈,1F448,1,252
++👈🏼,1F448-1F3FC,people-body,hand-single-finger,backhand index pointing left: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👈,1F448,1,253
++👈🏽,1F448-1F3FD,people-body,hand-single-finger,backhand index pointing left: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👈,1F448,1,254
++👈🏾,1F448-1F3FE,people-body,hand-single-finger,backhand index pointing left: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👈,1F448,1,255
++👈🏿,1F448-1F3FF,people-body,hand-single-finger,backhand index pointing left: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👈,1F448,1,256
++👉,1F449,people-body,hand-single-finger,backhand index pointing right,"backhand, finger, hand, index, point","backhand, finger, hand, index, point, point, right, Middle Finger, White right",Julian Grüneberg,2018-04-18,,single,👉,1F449,0.6,257
++👉🏻,1F449-1F3FB,people-body,hand-single-finger,backhand index pointing right: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👉,1F449,1,258
++👉🏼,1F449-1F3FC,people-body,hand-single-finger,backhand index pointing right: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👉,1F449,1,259
++👉🏽,1F449-1F3FD,people-body,hand-single-finger,backhand index pointing right: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👉,1F449,1,260
++👉🏾,1F449-1F3FE,people-body,hand-single-finger,backhand index pointing right: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👉,1F449,1,261
++👉🏿,1F449-1F3FF,people-body,hand-single-finger,backhand index pointing right: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👉,1F449,1,262
++👆,1F446,people-body,hand-single-finger,backhand index pointing up,"backhand, finger, hand, point, up","backhand, finger, hand, index, point, up, Middle Finger, White Up",Julian Grüneberg,2018-04-18,,single,👆,1F446,0.6,263
++👆🏻,1F446-1F3FB,people-body,hand-single-finger,backhand index pointing up: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👆,1F446,1,264
++👆🏼,1F446-1F3FC,people-body,hand-single-finger,backhand index pointing up: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👆,1F446,1,265
++👆🏽,1F446-1F3FD,people-body,hand-single-finger,backhand index pointing up: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👆,1F446,1,266
++👆🏾,1F446-1F3FE,people-body,hand-single-finger,backhand index pointing up: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👆,1F446,1,267
++👆🏿,1F446-1F3FF,people-body,hand-single-finger,backhand index pointing up: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👆,1F446,1,268
+ 🖕,1F595,people-body,hand-single-finger,middle finger,"finger, hand","finger, hand, fingering",Julian Grüneberg,2018-04-18,,single,🖕,1F595,1,269
+ 🖕🏻,1F595-1F3FB,people-body,hand-single-finger,middle finger: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,🖕,1F595,1,270
+ 🖕🏼,1F595-1F3FC,people-body,hand-single-finger,middle finger: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,🖕,1F595,1,271
+ 🖕🏽,1F595-1F3FD,people-body,hand-single-finger,middle finger: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,🖕,1F595,1,272
+ 🖕🏾,1F595-1F3FE,people-body,hand-single-finger,middle finger: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,🖕,1F595,1,273
+ 🖕🏿,1F595-1F3FF,people-body,hand-single-finger,middle finger: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,🖕,1F595,1,274
+-👇️,1F447,people-body,hand-single-finger,backhand index pointing down,"backhand, down, finger, hand, point","backhand, down, finger, hand, index, point, point, down, Middle Finger, White down",Julian Grüneberg,2018-04-18,,single,👇️,1F447,0.6,275
+-👇🏻,1F447-1F3FB,people-body,hand-single-finger,backhand index pointing down: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👇️,1F447,1,276
+-👇🏼,1F447-1F3FC,people-body,hand-single-finger,backhand index pointing down: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👇️,1F447,1,277
+-👇🏽,1F447-1F3FD,people-body,hand-single-finger,backhand index pointing down: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👇️,1F447,1,278
+-👇🏾,1F447-1F3FE,people-body,hand-single-finger,backhand index pointing down: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👇️,1F447,1,279
+-👇🏿,1F447-1F3FF,people-body,hand-single-finger,backhand index pointing down: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👇️,1F447,1,280
+-☝️,261D,people-body,hand-single-finger,index pointing up,"finger, hand, index, point, up","finger, hand, index, point, up",Julian Grüneberg,2018-04-18,,single,☝️,261D,0.6,282
+-☝🏻,261D-1F3FB,people-body,hand-single-finger,index pointing up: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,☝️,261D,1,283
+-☝🏼,261D-1F3FC,people-body,hand-single-finger,index pointing up: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,☝️,261D,1,284
+-☝🏽,261D-1F3FD,people-body,hand-single-finger,index pointing up: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,☝️,261D,1,285
+-☝🏾,261D-1F3FE,people-body,hand-single-finger,index pointing up: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,☝️,261D,1,286
+-☝🏿,261D-1F3FF,people-body,hand-single-finger,index pointing up: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,☝️,261D,1,287
+-👍️,1F44D,people-body,hand-fingers-closed,thumbs up,"+1, hand, thumb, up","Like, yes, +1, hand, thumb, up, thumbs up, thumbs up",Julian Grüneberg,2018-04-18,,single,👍️,1F44D,0.6,288
+-👍🏻,1F44D-1F3FB,people-body,hand-fingers-closed,thumbs up: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👍️,1F44D,1,289
+-👍🏼,1F44D-1F3FC,people-body,hand-fingers-closed,thumbs up: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👍️,1F44D,1,290
+-👍🏽,1F44D-1F3FD,people-body,hand-fingers-closed,thumbs up: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👍️,1F44D,1,291
+-👍🏾,1F44D-1F3FE,people-body,hand-fingers-closed,thumbs up: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👍️,1F44D,1,292
+-👍🏿,1F44D-1F3FF,people-body,hand-fingers-closed,thumbs up: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👍️,1F44D,1,293
+-👎️,1F44E,people-body,hand-fingers-closed,thumbs down,"-1, down, hand, thumb","Dislike no, Thumbs Down, Thumbs Down sign, -1, down, hand, thumb, thumbs",Julian Grüneberg,2018-04-18,,single,👎️,1F44E,0.6,294
+-👎🏻,1F44E-1F3FB,people-body,hand-fingers-closed,thumbs down: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👎️,1F44E,1,295
+-👎🏼,1F44E-1F3FC,people-body,hand-fingers-closed,thumbs down: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👎️,1F44E,1,296
+-👎🏽,1F44E-1F3FD,people-body,hand-fingers-closed,thumbs down: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👎️,1F44E,1,297
+-👎🏾,1F44E-1F3FE,people-body,hand-fingers-closed,thumbs down: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👎️,1F44E,1,298
+-👎🏿,1F44E-1F3FF,people-body,hand-fingers-closed,thumbs down: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👎️,1F44E,1,299
++👇,1F447,people-body,hand-single-finger,backhand index pointing down,"backhand, down, finger, hand, point","backhand, down, finger, hand, index, point, point, down, Middle Finger, White down",Julian Grüneberg,2018-04-18,,single,👇,1F447,0.6,275
++👇🏻,1F447-1F3FB,people-body,hand-single-finger,backhand index pointing down: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👇,1F447,1,276
++👇🏼,1F447-1F3FC,people-body,hand-single-finger,backhand index pointing down: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👇,1F447,1,277
++👇🏽,1F447-1F3FD,people-body,hand-single-finger,backhand index pointing down: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👇,1F447,1,278
++👇🏾,1F447-1F3FE,people-body,hand-single-finger,backhand index pointing down: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👇,1F447,1,279
++👇🏿,1F447-1F3FF,people-body,hand-single-finger,backhand index pointing down: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👇,1F447,1,280
++☝,261D,people-body,hand-single-finger,index pointing up,"finger, hand, index, point, up","finger, hand, index, point, up",Julian Grüneberg,2018-04-18,,single,☝,261D,0.6,282
++☝🏻,261D-1F3FB,people-body,hand-single-finger,index pointing up: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,☝,261D,1,283
++☝🏼,261D-1F3FC,people-body,hand-single-finger,index pointing up: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,☝,261D,1,284
++☝🏽,261D-1F3FD,people-body,hand-single-finger,index pointing up: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,☝,261D,1,285
++☝🏾,261D-1F3FE,people-body,hand-single-finger,index pointing up: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,☝,261D,1,286
++☝🏿,261D-1F3FF,people-body,hand-single-finger,index pointing up: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,☝,261D,1,287
++👍,1F44D,people-body,hand-fingers-closed,thumbs up,"+1, hand, thumb, up","Like, yes, +1, hand, thumb, up, thumbs up, thumbs up",Julian Grüneberg,2018-04-18,,single,👍,1F44D,0.6,288
++👍🏻,1F44D-1F3FB,people-body,hand-fingers-closed,thumbs up: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👍,1F44D,1,289
++👍🏼,1F44D-1F3FC,people-body,hand-fingers-closed,thumbs up: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👍,1F44D,1,290
++👍🏽,1F44D-1F3FD,people-body,hand-fingers-closed,thumbs up: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👍,1F44D,1,291
++👍🏾,1F44D-1F3FE,people-body,hand-fingers-closed,thumbs up: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👍,1F44D,1,292
++👍🏿,1F44D-1F3FF,people-body,hand-fingers-closed,thumbs up: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👍,1F44D,1,293
++👎,1F44E,people-body,hand-fingers-closed,thumbs down,"-1, down, hand, thumb","Dislike no, Thumbs Down, Thumbs Down sign, -1, down, hand, thumb, thumbs",Julian Grüneberg,2018-04-18,,single,👎,1F44E,0.6,294
++👎🏻,1F44E-1F3FB,people-body,hand-fingers-closed,thumbs down: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👎,1F44E,1,295
++👎🏼,1F44E-1F3FC,people-body,hand-fingers-closed,thumbs down: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👎,1F44E,1,296
++👎🏽,1F44E-1F3FD,people-body,hand-fingers-closed,thumbs down: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👎,1F44E,1,297
++👎🏾,1F44E-1F3FE,people-body,hand-fingers-closed,thumbs down: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👎,1F44E,1,298
++👎🏿,1F44E-1F3FF,people-body,hand-fingers-closed,thumbs down: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👎,1F44E,1,299
+ ✊,270A,people-body,hand-fingers-closed,raised fist,"clenched, fist, hand, punch","clenched, fist, hand, punch",Julian Grüneberg,2018-04-18,,single,✊,270A,0.6,300
+ ✊🏻,270A-1F3FB,people-body,hand-fingers-closed,raised fist: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,✊,270A,1,301
+ ✊🏼,270A-1F3FC,people-body,hand-fingers-closed,raised fist: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,✊,270A,1,302
+@@ -336,12 +336,12 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🙏🏽,1F64F-1F3FD,people-body,hands,folded hands: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,🙏,1F64F,1,352
+ 🙏🏾,1F64F-1F3FE,people-body,hands,folded hands: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,🙏,1F64F,1,353
+ 🙏🏿,1F64F-1F3FF,people-body,hands,folded hands: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,🙏,1F64F,1,354
+-✍️,270D,people-body,hand-prop,writing hand,"hand, write","Writing Hand, Writing, Write",Julian Grüneberg,2018-04-18,,single,✍️,270D,0.7,356
+-✍🏻,270D-1F3FB,people-body,hand-prop,writing hand: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,✍️,270D,1,357
+-✍🏼,270D-1F3FC,people-body,hand-prop,writing hand: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,✍️,270D,1,358
+-✍🏽,270D-1F3FD,people-body,hand-prop,writing hand: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,✍️,270D,1,359
+-✍🏾,270D-1F3FE,people-body,hand-prop,writing hand: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,✍️,270D,1,360
+-✍🏿,270D-1F3FF,people-body,hand-prop,writing hand: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,✍️,270D,1,361
++✍,270D,people-body,hand-prop,writing hand,"hand, write","Writing Hand, Writing, Write",Julian Grüneberg,2018-04-18,,single,✍,270D,0.7,356
++✍🏻,270D-1F3FB,people-body,hand-prop,writing hand: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,✍,270D,1,357
++✍🏼,270D-1F3FC,people-body,hand-prop,writing hand: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,✍,270D,1,358
++✍🏽,270D-1F3FD,people-body,hand-prop,writing hand: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,✍,270D,1,359
++✍🏾,270D-1F3FE,people-body,hand-prop,writing hand: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,✍,270D,1,360
++✍🏿,270D-1F3FF,people-body,hand-prop,writing hand: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,✍,270D,1,361
+ 💅,1F485,people-body,hand-prop,nail polish,"care, cosmetics, manicure, nail, polish",,Laura Schießer,2019-05-06,,single,💅,1F485,0.6,362
+ 💅🏻,1F485-1F3FB,people-body,hand-prop,nail polish: light skin tone,,,Laura Schießer,2019-05-06,1,single,💅,1F485,1,363
+ 💅🏼,1F485-1F3FC,people-body,hand-prop,nail polish: medium-light skin tone,,,Laura Schießer,2019-05-06,2,single,💅,1F485,1,364
+@@ -374,12 +374,12 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🦶🏽,1F9B6-1F3FD,people-body,body-parts,foot: medium skin tone,,,Daniel Utz,2020-03-11,3,single,🦶,1F9B6,11,391
+ 🦶🏾,1F9B6-1F3FE,people-body,body-parts,foot: medium-dark skin tone,,,Daniel Utz,2020-03-11,4,single,🦶,1F9B6,11,392
+ 🦶🏿,1F9B6-1F3FF,people-body,body-parts,foot: dark skin tone,,,Daniel Utz,2020-03-11,5,single,🦶,1F9B6,11,393
+-👂️,1F442,people-body,body-parts,ear,body,"ear, hear, listen",Julian Grüneberg,2018-04-18,,single,👂️,1F442,0.6,394
+-👂🏻,1F442-1F3FB,people-body,body-parts,ear: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👂️,1F442,1,395
+-👂🏼,1F442-1F3FC,people-body,body-parts,ear: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👂️,1F442,1,396
+-👂🏽,1F442-1F3FD,people-body,body-parts,ear: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👂️,1F442,1,397
+-👂🏾,1F442-1F3FE,people-body,body-parts,ear: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👂️,1F442,1,398
+-👂🏿,1F442-1F3FF,people-body,body-parts,ear: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👂️,1F442,1,399
++👂,1F442,people-body,body-parts,ear,body,"ear, hear, listen",Julian Grüneberg,2018-04-18,,single,👂,1F442,0.6,394
++👂🏻,1F442-1F3FB,people-body,body-parts,ear: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👂,1F442,1,395
++👂🏼,1F442-1F3FC,people-body,body-parts,ear: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👂,1F442,1,396
++👂🏽,1F442-1F3FD,people-body,body-parts,ear: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👂,1F442,1,397
++👂🏾,1F442-1F3FE,people-body,body-parts,ear: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👂,1F442,1,398
++👂🏿,1F442-1F3FF,people-body,body-parts,ear: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👂,1F442,1,399
+ 🦻,1F9BB,people-body,body-parts,ear with hearing aid,"accessibility, hard of hearing",,Laura Dworatschek,2019-05-06,,single,🦻,1F9BB,12,400
+ 🦻🏻,1F9BB-1F3FB,people-body,body-parts,ear with hearing aid: light skin tone,,,Laura Dworatschek,2019-05-06,1,single,🦻,1F9BB,12,401
+ 🦻🏼,1F9BB-1F3FC,people-body,body-parts,ear with hearing aid: medium-light skin tone,,,Laura Dworatschek,2019-05-06,2,single,🦻,1F9BB,12,402
+@@ -398,7 +398,7 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🦷,1F9B7,people-body,body-parts,tooth,dentist,,Laura Schießer,2019-05-06,,,,,11,415
+ 🦴,1F9B4,people-body,body-parts,bone,skeleton,,Laura Schießer,2019-05-06,,,,,11,416
+ 👀,1F440,people-body,body-parts,eyes,"eye, face","eye, face, eyes",Julian Grüneberg,2018-04-18,,,,,0.6,417
+-👁️,1F441,people-body,body-parts,eye,body,"eye, face",Julian Grüneberg,2018-04-18,,,,,0.7,419
++👁,1F441,people-body,body-parts,eye,body,"eye, face",Julian Grüneberg,2018-04-18,,,,,0.7,419
+ 👅,1F445,people-body,body-parts,tongue,body,"tongue, kiss, lick, licking",Julian Grüneberg,2018-04-18,,,,,0.6,420
+ 👄,1F444,people-body,body-parts,mouth,lips,"lips, kiss, mouth",Julian Grüneberg,2018-04-18,,,,,0.6,421
+ 👶,1F476,people-body,person,baby,young,"human, person",Johanna Wellnitz,2018-04-18,,single,👶,1F476,0.6,422
+@@ -1055,12 +1055,12 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 👮🏽‍♀️,1F46E-1F3FD-200D-2640-FE0F,people-body,person-role,woman police officer: medium skin tone,,,Antonia Wagner,2019-05-03,3,single,👮‍♀️,1F46E-200D-2640-FE0F,4,1280
+ 👮🏾‍♀️,1F46E-1F3FE-200D-2640-FE0F,people-body,person-role,woman police officer: medium-dark skin tone,,,Antonia Wagner,2019-05-03,4,single,👮‍♀️,1F46E-200D-2640-FE0F,4,1282
+ 👮🏿‍♀️,1F46E-1F3FF-200D-2640-FE0F,people-body,person-role,woman police officer: dark skin tone,,,Antonia Wagner,2019-05-03,5,single,👮‍♀️,1F46E-200D-2640-FE0F,4,1284
+-🕵️,1F575,people-body,person-role,detective,"sleuth, spy","sleuth, spy, sherlock, investigator, magnifier, magnifying glass, cloak, coat",Lisa Thiel,2018-04-18,,single,🕵️,1F575,0.7,1287
+-🕵🏻,1F575-1F3FB,people-body,person-role,detective: light skin tone,,,Lisa Thiel,2018-04-18,1,single,🕵️,1F575,2,1288
+-🕵🏼,1F575-1F3FC,people-body,person-role,detective: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,🕵️,1F575,2,1289
+-🕵🏽,1F575-1F3FD,people-body,person-role,detective: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,🕵️,1F575,2,1290
+-🕵🏾,1F575-1F3FE,people-body,person-role,detective: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,🕵️,1F575,2,1291
+-🕵🏿,1F575-1F3FF,people-body,person-role,detective: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,🕵️,1F575,2,1292
++🕵,1F575,people-body,person-role,detective,"sleuth, spy","sleuth, spy, sherlock, investigator, magnifier, magnifying glass, cloak, coat",Lisa Thiel,2018-04-18,,single,🕵,1F575,0.7,1287
++🕵🏻,1F575-1F3FB,people-body,person-role,detective: light skin tone,,,Lisa Thiel,2018-04-18,1,single,🕵,1F575,2,1288
++🕵🏼,1F575-1F3FC,people-body,person-role,detective: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,🕵,1F575,2,1289
++🕵🏽,1F575-1F3FD,people-body,person-role,detective: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,🕵,1F575,2,1290
++🕵🏾,1F575-1F3FE,people-body,person-role,detective: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,🕵,1F575,2,1291
++🕵🏿,1F575-1F3FF,people-body,person-role,detective: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,🕵,1F575,2,1292
+ 🕵️‍♂️,1F575-FE0F-200D-2642-FE0F,people-body,person-role,man detective,"detective, man, sleuth, spy",,Antonia Wagner,2019-05-03,,single,🕵️‍♂️,1F575-FE0F-200D-2642-FE0F,4,1293
+ 🕵🏻‍♂️,1F575-1F3FB-200D-2642-FE0F,people-body,person-role,man detective: light skin tone,,,Antonia Wagner,2019-05-03,1,single,🕵️‍♂️,1F575-FE0F-200D-2642-FE0F,4,1297
+ 🕵🏼‍♂️,1F575-1F3FC-200D-2642-FE0F,people-body,person-role,man detective: medium-light skin tone,,,Antonia Wagner,2019-05-03,2,single,🕵️‍♂️,1F575-FE0F-200D-2642-FE0F,4,1299
+@@ -1553,12 +1553,12 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🕺🏽,1F57A-1F3FD,people-body,person-activity,man dancing: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🕺,1F57A,3,2018
+ 🕺🏾,1F57A-1F3FE,people-body,person-activity,man dancing: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🕺,1F57A,3,2019
+ 🕺🏿,1F57A-1F3FF,people-body,person-activity,man dancing: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🕺,1F57A,3,2020
+-🕴️,1F574,people-body,person-activity,person in suit levitating,"business, person, suit",,Florian Nagel,2019-05-07,,single,🕴️,1F574,0.7,2022
+-🕴🏻,1F574-1F3FB,people-body,person-activity,person in suit levitating: light skin tone,,,Florian Nagel,2019-05-07,1,single,🕴️,1F574,4,2023
+-🕴🏼,1F574-1F3FC,people-body,person-activity,person in suit levitating: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🕴️,1F574,4,2024
+-🕴🏽,1F574-1F3FD,people-body,person-activity,person in suit levitating: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🕴️,1F574,4,2025
+-🕴🏾,1F574-1F3FE,people-body,person-activity,person in suit levitating: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🕴️,1F574,4,2026
+-🕴🏿,1F574-1F3FF,people-body,person-activity,person in suit levitating: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🕴️,1F574,4,2027
++🕴,1F574,people-body,person-activity,person in suit levitating,"business, person, suit",,Florian Nagel,2019-05-07,,single,🕴,1F574,0.7,2022
++🕴🏻,1F574-1F3FB,people-body,person-activity,person in suit levitating: light skin tone,,,Florian Nagel,2019-05-07,1,single,🕴,1F574,4,2023
++🕴🏼,1F574-1F3FC,people-body,person-activity,person in suit levitating: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🕴,1F574,4,2024
++🕴🏽,1F574-1F3FD,people-body,person-activity,person in suit levitating: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🕴,1F574,4,2025
++🕴🏾,1F574-1F3FE,people-body,person-activity,person in suit levitating: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🕴,1F574,4,2026
++🕴🏿,1F574-1F3FF,people-body,person-activity,person in suit levitating: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🕴,1F574,4,2027
+ 👯,1F46F,people-body,person-activity,people with bunny ears,"bunny ear, dancer, partying","human, person",Johanna Wellnitz,2018-04-18,,,,,0.6,2028
+ 👯‍♂️,1F46F-200D-2642-FE0F,people-body,person-activity,men with bunny ears,"bunny ear, dancer, men, partying",,Rifat Erdogan,2019-05-06,,,,,4,2029
+ 👯‍♀️,1F46F-200D-2640-FE0F,people-body,person-activity,women with bunny ears,"bunny ear, dancer, partying, women",,Rifat Erdogan,2019-05-06,,,,,4,2031
+@@ -1605,19 +1605,19 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🏇🏽,1F3C7-1F3FD,people-body,person-sport,horse racing: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🏇,1F3C7,1,2097
+ 🏇🏾,1F3C7-1F3FE,people-body,person-sport,horse racing: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🏇,1F3C7,1,2098
+ 🏇🏿,1F3C7-1F3FF,people-body,person-sport,horse racing: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🏇,1F3C7,1,2099
+-⛷️,26F7,people-body,person-sport,skier,"ski, snow","winter, sports",Johanna Wellnitz,2018-04-18,,,,,0.7,2101
+-🏂️,1F3C2,people-body,person-sport,snowboarder,"ski, snow, snowboard","winter, sports",Johanna Wellnitz,2018-04-18,,single,🏂️,1F3C2,0.6,2102
+-🏂🏻,1F3C2-1F3FB,people-body,person-sport,snowboarder: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🏂️,1F3C2,1,2103
+-🏂🏼,1F3C2-1F3FC,people-body,person-sport,snowboarder: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🏂️,1F3C2,1,2104
+-🏂🏽,1F3C2-1F3FD,people-body,person-sport,snowboarder: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🏂️,1F3C2,1,2105
+-🏂🏾,1F3C2-1F3FE,people-body,person-sport,snowboarder: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🏂️,1F3C2,1,2106
+-🏂🏿,1F3C2-1F3FF,people-body,person-sport,snowboarder: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🏂️,1F3C2,1,2107
+-🏌️,1F3CC,people-body,person-sport,person golfing,"ball, golf",sports,Johanna Wellnitz,2018-04-18,,single,🏌️,1F3CC,0.7,2109
+-🏌🏻,1F3CC-1F3FB,people-body,person-sport,person golfing: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🏌️,1F3CC,4,2110
+-🏌🏼,1F3CC-1F3FC,people-body,person-sport,person golfing: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🏌️,1F3CC,4,2111
+-🏌🏽,1F3CC-1F3FD,people-body,person-sport,person golfing: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🏌️,1F3CC,4,2112
+-🏌🏾,1F3CC-1F3FE,people-body,person-sport,person golfing: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🏌️,1F3CC,4,2113
+-🏌🏿,1F3CC-1F3FF,people-body,person-sport,person golfing: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🏌️,1F3CC,4,2114
++⛷,26F7,people-body,person-sport,skier,"ski, snow","winter, sports",Johanna Wellnitz,2018-04-18,,,,,0.7,2101
++🏂,1F3C2,people-body,person-sport,snowboarder,"ski, snow, snowboard","winter, sports",Johanna Wellnitz,2018-04-18,,single,🏂,1F3C2,0.6,2102
++🏂🏻,1F3C2-1F3FB,people-body,person-sport,snowboarder: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🏂,1F3C2,1,2103
++🏂🏼,1F3C2-1F3FC,people-body,person-sport,snowboarder: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🏂,1F3C2,1,2104
++🏂🏽,1F3C2-1F3FD,people-body,person-sport,snowboarder: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🏂,1F3C2,1,2105
++🏂🏾,1F3C2-1F3FE,people-body,person-sport,snowboarder: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🏂,1F3C2,1,2106
++🏂🏿,1F3C2-1F3FF,people-body,person-sport,snowboarder: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🏂,1F3C2,1,2107
++🏌,1F3CC,people-body,person-sport,person golfing,"ball, golf",sports,Johanna Wellnitz,2018-04-18,,single,🏌,1F3CC,0.7,2109
++🏌🏻,1F3CC-1F3FB,people-body,person-sport,person golfing: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🏌,1F3CC,4,2110
++🏌🏼,1F3CC-1F3FC,people-body,person-sport,person golfing: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🏌,1F3CC,4,2111
++🏌🏽,1F3CC-1F3FD,people-body,person-sport,person golfing: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🏌,1F3CC,4,2112
++🏌🏾,1F3CC-1F3FE,people-body,person-sport,person golfing: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🏌,1F3CC,4,2113
++🏌🏿,1F3CC-1F3FF,people-body,person-sport,person golfing: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🏌,1F3CC,4,2114
+ 🏌️‍♂️,1F3CC-FE0F-200D-2642-FE0F,people-body,person-sport,man golfing,"golf, man",,Florian Nagel,2019-05-07,,single,🏌️‍♂️,1F3CC-FE0F-200D-2642-FE0F,4,2115
+ 🏌🏻‍♂️,1F3CC-1F3FB-200D-2642-FE0F,people-body,person-sport,man golfing: light skin tone,,,Florian Nagel,2019-05-07,1,single,🏌️‍♂️,1F3CC-FE0F-200D-2642-FE0F,4,2119
+ 🏌🏼‍♂️,1F3CC-1F3FC-200D-2642-FE0F,people-body,person-sport,man golfing: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🏌️‍♂️,1F3CC-FE0F-200D-2642-FE0F,4,2121
+@@ -1630,12 +1630,12 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🏌🏽‍♀️,1F3CC-1F3FD-200D-2640-FE0F,people-body,person-sport,woman golfing: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🏌️‍♀️,1F3CC-FE0F-200D-2640-FE0F,4,2137
+ 🏌🏾‍♀️,1F3CC-1F3FE-200D-2640-FE0F,people-body,person-sport,woman golfing: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🏌️‍♀️,1F3CC-FE0F-200D-2640-FE0F,4,2139
+ 🏌🏿‍♀️,1F3CC-1F3FF-200D-2640-FE0F,people-body,person-sport,woman golfing: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🏌️‍♀️,1F3CC-FE0F-200D-2640-FE0F,4,2141
+-🏄️,1F3C4,people-body,person-sport,person surfing,surfing,"water, ocean, sea, wave, surfer, sports",Johanna Wellnitz,2018-04-18,,single,🏄️,1F3C4,0.6,2143
+-🏄🏻,1F3C4-1F3FB,people-body,person-sport,person surfing: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🏄️,1F3C4,1,2144
+-🏄🏼,1F3C4-1F3FC,people-body,person-sport,person surfing: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🏄️,1F3C4,1,2145
+-🏄🏽,1F3C4-1F3FD,people-body,person-sport,person surfing: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🏄️,1F3C4,1,2146
+-🏄🏾,1F3C4-1F3FE,people-body,person-sport,person surfing: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🏄️,1F3C4,1,2147
+-🏄🏿,1F3C4-1F3FF,people-body,person-sport,person surfing: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🏄️,1F3C4,1,2148
++🏄,1F3C4,people-body,person-sport,person surfing,surfing,"water, ocean, sea, wave, surfer, sports",Johanna Wellnitz,2018-04-18,,single,🏄,1F3C4,0.6,2143
++🏄🏻,1F3C4-1F3FB,people-body,person-sport,person surfing: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🏄,1F3C4,1,2144
++🏄🏼,1F3C4-1F3FC,people-body,person-sport,person surfing: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🏄,1F3C4,1,2145
++🏄🏽,1F3C4-1F3FD,people-body,person-sport,person surfing: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🏄,1F3C4,1,2146
++🏄🏾,1F3C4-1F3FE,people-body,person-sport,person surfing: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🏄,1F3C4,1,2147
++🏄🏿,1F3C4-1F3FF,people-body,person-sport,person surfing: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🏄,1F3C4,1,2148
+ 🏄‍♂️,1F3C4-200D-2642-FE0F,people-body,person-sport,man surfing,"man, surfing",,Florian Nagel,2019-05-07,,single,🏄‍♂️,1F3C4-200D-2642-FE0F,4,2149
+ 🏄🏻‍♂️,1F3C4-1F3FB-200D-2642-FE0F,people-body,person-sport,man surfing: light skin tone,,,Florian Nagel,2019-05-07,1,single,🏄‍♂️,1F3C4-200D-2642-FE0F,4,2151
+ 🏄🏼‍♂️,1F3C4-1F3FC-200D-2642-FE0F,people-body,person-sport,man surfing: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🏄‍♂️,1F3C4-200D-2642-FE0F,4,2153
+@@ -1666,12 +1666,12 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🚣🏽‍♀️,1F6A3-1F3FD-200D-2640-FE0F,people-body,person-sport,woman rowing boat: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🚣‍♀️,1F6A3-200D-2640-FE0F,4,2197
+ 🚣🏾‍♀️,1F6A3-1F3FE-200D-2640-FE0F,people-body,person-sport,woman rowing boat: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🚣‍♀️,1F6A3-200D-2640-FE0F,4,2199
+ 🚣🏿‍♀️,1F6A3-1F3FF-200D-2640-FE0F,people-body,person-sport,woman rowing boat: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🚣‍♀️,1F6A3-200D-2640-FE0F,4,2201
+-🏊️,1F3CA,people-body,person-sport,person swimming,swim,"sports, water",Johanna Wellnitz,2018-04-18,,single,🏊️,1F3CA,0.6,2203
+-🏊🏻,1F3CA-1F3FB,people-body,person-sport,person swimming: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🏊️,1F3CA,1,2204
+-🏊🏼,1F3CA-1F3FC,people-body,person-sport,person swimming: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🏊️,1F3CA,1,2205
+-🏊🏽,1F3CA-1F3FD,people-body,person-sport,person swimming: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🏊️,1F3CA,1,2206
+-🏊🏾,1F3CA-1F3FE,people-body,person-sport,person swimming: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🏊️,1F3CA,1,2207
+-🏊🏿,1F3CA-1F3FF,people-body,person-sport,person swimming: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🏊️,1F3CA,1,2208
++🏊,1F3CA,people-body,person-sport,person swimming,swim,"sports, water",Johanna Wellnitz,2018-04-18,,single,🏊,1F3CA,0.6,2203
++🏊🏻,1F3CA-1F3FB,people-body,person-sport,person swimming: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🏊,1F3CA,1,2204
++🏊🏼,1F3CA-1F3FC,people-body,person-sport,person swimming: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🏊,1F3CA,1,2205
++🏊🏽,1F3CA-1F3FD,people-body,person-sport,person swimming: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🏊,1F3CA,1,2206
++🏊🏾,1F3CA-1F3FE,people-body,person-sport,person swimming: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🏊,1F3CA,1,2207
++🏊🏿,1F3CA-1F3FF,people-body,person-sport,person swimming: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🏊,1F3CA,1,2208
+ 🏊‍♂️,1F3CA-200D-2642-FE0F,people-body,person-sport,man swimming,"man, swim",,Florian Nagel,2019-05-07,,single,🏊‍♂️,1F3CA-200D-2642-FE0F,4,2209
+ 🏊🏻‍♂️,1F3CA-1F3FB-200D-2642-FE0F,people-body,person-sport,man swimming: light skin tone,,,Florian Nagel,2019-05-07,1,single,🏊‍♂️,1F3CA-200D-2642-FE0F,4,2211
+ 🏊🏼‍♂️,1F3CA-1F3FC-200D-2642-FE0F,people-body,person-sport,man swimming: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🏊‍♂️,1F3CA-200D-2642-FE0F,4,2213
+@@ -1684,12 +1684,12 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🏊🏽‍♀️,1F3CA-1F3FD-200D-2640-FE0F,people-body,person-sport,woman swimming: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🏊‍♀️,1F3CA-200D-2640-FE0F,4,2227
+ 🏊🏾‍♀️,1F3CA-1F3FE-200D-2640-FE0F,people-body,person-sport,woman swimming: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🏊‍♀️,1F3CA-200D-2640-FE0F,4,2229
+ 🏊🏿‍♀️,1F3CA-1F3FF-200D-2640-FE0F,people-body,person-sport,woman swimming: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🏊‍♀️,1F3CA-200D-2640-FE0F,4,2231
+-⛹️,26F9,people-body,person-sport,person bouncing ball,ball,"dribble, sports",Johanna Wellnitz,2018-04-18,,single,⛹️,26F9,0.7,2234
+-⛹🏻,26F9-1F3FB,people-body,person-sport,person bouncing ball: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,⛹️,26F9,2,2235
+-⛹🏼,26F9-1F3FC,people-body,person-sport,person bouncing ball: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,⛹️,26F9,2,2236
+-⛹🏽,26F9-1F3FD,people-body,person-sport,person bouncing ball: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,⛹️,26F9,2,2237
+-⛹🏾,26F9-1F3FE,people-body,person-sport,person bouncing ball: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,⛹️,26F9,2,2238
+-⛹🏿,26F9-1F3FF,people-body,person-sport,person bouncing ball: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,⛹️,26F9,2,2239
++⛹,26F9,people-body,person-sport,person bouncing ball,ball,"dribble, sports",Johanna Wellnitz,2018-04-18,,single,⛹,26F9,0.7,2234
++⛹🏻,26F9-1F3FB,people-body,person-sport,person bouncing ball: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,⛹,26F9,2,2235
++⛹🏼,26F9-1F3FC,people-body,person-sport,person bouncing ball: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,⛹,26F9,2,2236
++⛹🏽,26F9-1F3FD,people-body,person-sport,person bouncing ball: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,⛹,26F9,2,2237
++⛹🏾,26F9-1F3FE,people-body,person-sport,person bouncing ball: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,⛹,26F9,2,2238
++⛹🏿,26F9-1F3FF,people-body,person-sport,person bouncing ball: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,⛹,26F9,2,2239
+ ⛹️‍♂️,26F9-FE0F-200D-2642-FE0F,people-body,person-sport,man bouncing ball,"ball, man",,Florian Nagel,2019-05-07,,single,⛹️‍♂️,26F9-FE0F-200D-2642-FE0F,4,2240
+ ⛹🏻‍♂️,26F9-1F3FB-200D-2642-FE0F,people-body,person-sport,man bouncing ball: light skin tone,,,Florian Nagel,2019-05-07,1,single,⛹️‍♂️,26F9-FE0F-200D-2642-FE0F,4,2244
+ ⛹🏼‍♂️,26F9-1F3FC-200D-2642-FE0F,people-body,person-sport,man bouncing ball: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,⛹️‍♂️,26F9-FE0F-200D-2642-FE0F,4,2246
+@@ -1702,12 +1702,12 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ ⛹🏽‍♀️,26F9-1F3FD-200D-2640-FE0F,people-body,person-sport,woman bouncing ball: medium skin tone,,,Florian Nagel,2019-05-07,3,single,⛹️‍♀️,26F9-FE0F-200D-2640-FE0F,4,2262
+ ⛹🏾‍♀️,26F9-1F3FE-200D-2640-FE0F,people-body,person-sport,woman bouncing ball: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,⛹️‍♀️,26F9-FE0F-200D-2640-FE0F,4,2264
+ ⛹🏿‍♀️,26F9-1F3FF-200D-2640-FE0F,people-body,person-sport,woman bouncing ball: dark skin tone,,,Florian Nagel,2019-05-07,5,single,⛹️‍♀️,26F9-FE0F-200D-2640-FE0F,4,2266
+-🏋️,1F3CB,people-body,person-sport,person lifting weights,"lifter, weight","sports, power",Johanna Wellnitz,2018-04-18,,single,🏋️,1F3CB,0.7,2269
+-🏋🏻,1F3CB-1F3FB,people-body,person-sport,person lifting weights: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🏋️,1F3CB,2,2270
+-🏋🏼,1F3CB-1F3FC,people-body,person-sport,person lifting weights: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🏋️,1F3CB,2,2271
+-🏋🏽,1F3CB-1F3FD,people-body,person-sport,person lifting weights: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🏋️,1F3CB,2,2272
+-🏋🏾,1F3CB-1F3FE,people-body,person-sport,person lifting weights: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🏋️,1F3CB,2,2273
+-🏋🏿,1F3CB-1F3FF,people-body,person-sport,person lifting weights: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🏋️,1F3CB,2,2274
++🏋,1F3CB,people-body,person-sport,person lifting weights,"lifter, weight","sports, power",Johanna Wellnitz,2018-04-18,,single,🏋,1F3CB,0.7,2269
++🏋🏻,1F3CB-1F3FB,people-body,person-sport,person lifting weights: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🏋,1F3CB,2,2270
++🏋🏼,1F3CB-1F3FC,people-body,person-sport,person lifting weights: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🏋,1F3CB,2,2271
++🏋🏽,1F3CB-1F3FD,people-body,person-sport,person lifting weights: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🏋,1F3CB,2,2272
++🏋🏾,1F3CB-1F3FE,people-body,person-sport,person lifting weights: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🏋,1F3CB,2,2273
++🏋🏿,1F3CB-1F3FF,people-body,person-sport,person lifting weights: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🏋,1F3CB,2,2274
+ 🏋️‍♂️,1F3CB-FE0F-200D-2642-FE0F,people-body,person-sport,man lifting weights,"man, weight lifter",,Florian Nagel,2019-05-07,,single,🏋️‍♂️,1F3CB-FE0F-200D-2642-FE0F,4,2275
+ 🏋🏻‍♂️,1F3CB-1F3FB-200D-2642-FE0F,people-body,person-sport,man lifting weights: light skin tone,,,Florian Nagel,2019-05-07,1,single,🏋️‍♂️,1F3CB-FE0F-200D-2642-FE0F,4,2279
+ 🏋🏼‍♂️,1F3CB-1F3FC-200D-2642-FE0F,people-body,person-sport,man lifting weights: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🏋️‍♂️,1F3CB-FE0F-200D-2642-FE0F,4,2281
+@@ -2173,7 +2173,7 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 👩🏿‍❤️‍👩🏽,1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FD,people-body,family,"couple with heart: woman, woman, dark skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"5,3",multiple,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3032
+ 👩🏿‍❤️‍👩🏾,1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FE,people-body,family,"couple with heart: woman, woman, dark skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"5,4",multiple,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3034
+ 👩🏿‍❤️‍👩🏿,1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FF,people-body,family,"couple with heart: woman, woman, dark skin tone",,,Lisa Schulz,2018-04-18,5,single,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3036
+-👪️,1F46A,people-body,family,family,family,"man, woman, boy, child",Lisa Schulz,2018-04-18,,,,,0.6,3038
++👪,1F46A,people-body,family,family,family,"man, woman, boy, child",Lisa Schulz,2018-04-18,,,,,0.6,3038
+ 👨‍👩‍👦,1F468-200D-1F469-200D-1F466,people-body,family,"family: man, woman, boy","boy, family, man, woman",,Fanny Jung,2019-05-06,,,,,2,3039
+ 👨‍👩‍👧,1F468-200D-1F469-200D-1F467,people-body,family,"family: man, woman, girl","family, girl, man, woman",child,Lisa Schulz,2018-04-18,,,,,2,3040
+ 👨‍👩‍👧‍👦,1F468-200D-1F469-200D-1F467-200D-1F466,people-body,family,"family: man, woman, girl, boy","boy, family, girl, man, woman",,Fanny Jung,2019-05-06,,,,,2,3041
+@@ -2199,7 +2199,7 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 👩‍👧,1F469-200D-1F467,people-body,family,"family: woman, girl","family, girl, woman",,Fanny Jung,2019-05-06,,,,,4,3061
+ 👩‍👧‍👦,1F469-200D-1F467-200D-1F466,people-body,family,"family: woman, girl, boy","boy, family, girl, woman",,Fanny Jung,2019-05-06,,,,,4,3062
+ 👩‍👧‍👧,1F469-200D-1F467-200D-1F467,people-body,family,"family: woman, girl, girl","family, girl, woman",,Fanny Jung,2019-05-06,,,,,4,3063
+-🗣️,1F5E3,people-body,person-symbol,speaking head,"face, head, silhouette, speak, speaking","human, person",Johanna Wellnitz,2018-04-18,,,,,0.7,3065
++🗣,1F5E3,people-body,person-symbol,speaking head,"face, head, silhouette, speak, speaking","human, person",Johanna Wellnitz,2018-04-18,,,,,0.7,3065
+ 👤,1F464,people-body,person-symbol,bust in silhouette,"bust, silhouette","human, person",Johanna Wellnitz,2018-04-18,,,,,0.6,3066
+ 👥,1F465,people-body,person-symbol,busts in silhouette,"bust, silhouette","human, person",Johanna Wellnitz,2018-04-18,,,,,1,3067
+ 🫂,1FAC2,people-body,person-symbol,people hugging,"goodbye, hello, hug, thanks","love, harmony, humans, like, making out, arms",Kai Wanschura,2018-04-18,,,,,13,3068
+@@ -2218,7 +2218,7 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🦍,1F98D,animals-nature,animal-mammal,gorilla,gorilla,"monkey, primate, evolution",Sofie Ascherl,2018-04-18,,,,,3,3081
+ 🦧,1F9A7,animals-nature,animal-mammal,orangutan,ape,,Yasmin Abdullahi,2019-05-07,,,,,12,3082
+ 🐶,1F436,animals-nature,animal-mammal,dog face,"dog, face, pet","friend, puppy, doggy",Sofie Ascherl,2018-04-18,,,,,0.6,3083
+-🐕️,1F415,animals-nature,animal-mammal,dog,pet,"puppy, doggy",Sofie Ascherl,2018-04-18,,,,,0.7,3084
++🐕,1F415,animals-nature,animal-mammal,dog,pet,"puppy, doggy",Sofie Ascherl,2018-04-18,,,,,0.7,3084
+ 🦮,1F9AE,animals-nature,animal-mammal,guide dog,"accessibility, blind, guide",,Yasmin Abdullahi,2019-05-07,,,,,12,3085
+ 🐕‍🦺,1F415-200D-1F9BA,animals-nature,animal-mammal,service dog,"accessibility, assistance, dog, service",,Yasmin Abdullahi,2019-05-07,,,,,12,3086
+ 🐩,1F429,animals-nature,animal-mammal,poodle,dog,,Anne Frauendorf,2018-11-16,,,,,0.6,3087
+@@ -2226,7 +2226,7 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🦊,1F98A,animals-nature,animal-mammal,fox,face,"smart, red, quick, intelligent",Sofie Ascherl,2018-04-18,,,,,3,3089
+ 🦝,1F99D,animals-nature,animal-mammal,raccoon,"curious, sly",,Laura Schießer,2019-05-06,,,,,11,3090
+ 🐱,1F431,animals-nature,animal-mammal,cat face,"cat, face, pet","pet, kitty, kitten, miau",Sofie Ascherl,2018-04-18,,,,,0.6,3091
+-🐈️,1F408,animals-nature,animal-mammal,cat,pet,"pet, kitty, kitten, miau",Sofie Ascherl,2018-04-18,,,,,0.7,3092
++🐈,1F408,animals-nature,animal-mammal,cat,pet,"pet, kitty, kitten, miau",Sofie Ascherl,2018-04-18,,,,,0.7,3092
+ 🐈‍⬛,1F408-200D-2B1B,animals-nature,animal-mammal,black cat,"black, cat, unlucky",bad luck,Sofie Ascherl,2018-04-18,,,,,13,3093
+ 🦁,1F981,animals-nature,animal-mammal,lion,"face, leo, zodiac","king, simba, royal, wild, cat",Sofie Ascherl,2018-04-18,,,,,1,3094
+ 🐯,1F42F,animals-nature,animal-mammal,tiger face,"face, tiger","stripes, strong, cat, wild",Sofie Ascherl,2018-04-18,,,,,0.6,3095
+@@ -2263,7 +2263,7 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🐹,1F439,animals-nature,animal-mammal,hamster,"face, pet","rodent, fat, fluffy, corn",Sofie Ascherl,2018-04-18,,,,,0.6,3126
+ 🐰,1F430,animals-nature,animal-mammal,rabbit face,"bunny, face, pet, rabbit","rodent, teeth, cute, ears, bunny, hopping, easter",Sofie Ascherl,2018-04-18,,,,,0.6,3127
+ 🐇,1F407,animals-nature,animal-mammal,rabbit,"bunny, pet","rodent, teeth, cute, ears, bunny, hopping, easter",Sofie Ascherl,2018-04-18,,,,,1,3128
+-🐿️,1F43F,animals-nature,animal-mammal,chipmunk,squirrel,"squirrel, alvin",Sofie Ascherl,2018-04-18,,,,,0.7,3130
++🐿,1F43F,animals-nature,animal-mammal,chipmunk,squirrel,"squirrel, alvin",Sofie Ascherl,2018-04-18,,,,,0.7,3130
+ 🦫,1F9AB,animals-nature,animal-mammal,beaver,dam,,Liz Bravo,2020-10-07,,,,,13,3131
+ 🦔,1F994,animals-nature,animal-mammal,hedgehog,spiny,"prickly, fall, apple, leafs",Sofie Ascherl,2018-04-18,,,,,5,3132
+ 🦇,1F987,animals-nature,animal-mammal,bat,vampire,"batman, dracula",Sofie Ascherl,2018-04-18,,,,,3,3133
+@@ -2283,9 +2283,9 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🐣,1F423,animals-nature,animal-bird,hatching chick,"baby, bird, chick, hatching","baby, egg",Selina Bauder,2018-04-18,,,,,0.6,3148
+ 🐤,1F424,animals-nature,animal-bird,baby chick,"baby, bird, chick","small, baby, egg",Selina Bauder,2018-04-18,,,,,0.6,3149
+ 🐥,1F425,animals-nature,animal-bird,front-facing baby chick,"baby, bird, chick",,Selina Bauder,2018-04-18,,,,,0.6,3150
+-🐦️,1F426,animals-nature,animal-bird,bird,bird,"fly, colourful",Selina Bauder,2018-04-18,,,,,0.6,3151
++🐦,1F426,animals-nature,animal-bird,bird,bird,"fly, colourful",Selina Bauder,2018-04-18,,,,,0.6,3151
+ 🐧,1F427,animals-nature,animal-bird,penguin,bird,,Selina Bauder,2018-04-18,,,,,0.6,3152
+-🕊️,1F54A,animals-nature,animal-bird,dove,"bird, fly, peace",fly,Selina Bauder,2018-04-18,,,,,0.7,3154
++🕊,1F54A,animals-nature,animal-bird,dove,"bird, fly, peace",fly,Selina Bauder,2018-04-18,,,,,0.7,3154
+ 🦅,1F985,animals-nature,animal-bird,eagle,bird,fly,Selina Bauder,2018-04-18,,,,,3,3155
+ 🦆,1F986,animals-nature,animal-bird,duck,bird,"water, fly",Selina Bauder,2018-04-18,,,,,3,3156
+ 🦢,1F9A2,animals-nature,animal-bird,swan,"bird, cygnet, ugly duckling",,Laura Schießer,2019-05-06,,,,,11,3157
+@@ -2308,7 +2308,7 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🐋,1F40B,animals-nature,animal-marine,whale,whale,"cetacean, swim, animal, water",Kris Kowal,2020-04-04,,,,,1,3174
+ 🐬,1F42C,animals-nature,animal-marine,dolphin,flipper,"cetacean, swim, animal, water",Kris Kowal,2020-04-04,,,,,0.6,3175
+ 🦭,1F9AD,animals-nature,animal-marine,seal,sea lion,,Liz Bravo,2020-09-26,,,,,13,3176
+-🐟️,1F41F,animals-nature,animal-marine,fish,"pisces, zodiac","swim, animal, water",Selina Bauder,2018-04-18,,,,,0.6,3177
++🐟,1F41F,animals-nature,animal-marine,fish,"pisces, zodiac","swim, animal, water",Selina Bauder,2018-04-18,,,,,0.6,3177
+ 🐠,1F420,animals-nature,animal-marine,tropical fish,"fish, tropical","swim, animal, water",Selina Bauder,2018-04-18,,,,,0.6,3178
+ 🐡,1F421,animals-nature,animal-marine,blowfish,fish,"swim, animal, water",Selina Bauder,2018-04-18,,,,,0.6,3179
+ 🦈,1F988,animals-nature,animal-marine,shark,fish,"swim, animal, water",Selina Bauder,2018-04-18,,,,,3,3180
+@@ -2323,8 +2323,8 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🐞,1F41E,animals-nature,animal-bug,lady beetle,"beetle, insect, ladybird, ladybug",,Liz Bravo,2020-12-22,,,,,0.6,3189
+ 🦗,1F997,animals-nature,animal-bug,cricket,grasshopper,,Selina Bauder,2018-04-18,,,,,5,3190
+ 🪳,1FAB3,animals-nature,animal-bug,cockroach,"insect, pest, roach",,Liz Bravo,2020-09-26,,,,,13,3191
+-🕷️,1F577,animals-nature,animal-bug,spider,insect,,Selina Bauder,2018-04-18,,,,,0.7,3193
+-🕸️,1F578,animals-nature,animal-bug,spider web,"spider, web",,Selina Bauder,2018-04-18,,,,,0.7,3195
++🕷,1F577,animals-nature,animal-bug,spider,insect,,Selina Bauder,2018-04-18,,,,,0.7,3193
++🕸,1F578,animals-nature,animal-bug,spider web,"spider, web",,Selina Bauder,2018-04-18,,,,,0.7,3195
+ 🦂,1F982,animals-nature,animal-bug,scorpion,"scorpio, zodiac",,Selina Bauder,2018-04-18,,,,,1,3196
+ 🦟,1F99F,animals-nature,animal-bug,mosquito,"disease, fever, malaria, pest, virus",,Liz Bravo,2020-12-22,,,,,11,3197
+ 🪰,1FAB0,animals-nature,animal-bug,fly,"disease, maggot, pest, rotting",,Liz Bravo,2020-03-07,,,,,13,3198
+@@ -2333,7 +2333,7 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 💐,1F490,animals-nature,plant-flower,bouquet,flower,"present, flower, tulip, bouquet",Liz Bravo,2021-05-04,,,,,0.6,3201
+ 🌸,1F338,animals-nature,plant-flower,cherry blossom,"blossom, cherry, flower","pink,",Hilda Kalyoncu,2018-04-18,,,,,0.6,3202
+ 💮,1F4AE,animals-nature,plant-flower,white flower,flower,,Ricarda Krejci,2019-05-07,,,,,0.6,3203
+-🏵️,1F3F5,animals-nature,plant-flower,rosette,plant,,Ricarda Krejci,2019-05-07,,,,,0.7,3205
++🏵,1F3F5,animals-nature,plant-flower,rosette,plant,,Ricarda Krejci,2019-05-07,,,,,0.7,3205
+ 🌹,1F339,animals-nature,plant-flower,rose,flower,"rose, red, nature, present, valentines day",Hilda Kalyoncu,2018-04-18,,,,,0.6,3206
+ 🥀,1F940,animals-nature,plant-flower,wilted flower,"flower, wilted","rose, wilted, flower, red, sad, plant",Hilda Kalyoncu,2018-04-18,,,,,3,3207
+ 🌺,1F33A,animals-nature,plant-flower,hibiscus,flower,pink,Hilda Kalyoncu,2018-04-18,,,,,0.6,3208
+@@ -2348,7 +2348,7 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🌵,1F335,animals-nature,plant-other,cactus,plant,"desert, sun, warm, hot, texas, plant",Liz Bravo,2020-12-22,,,,,0.6,3217
+ 🌾,1F33E,animals-nature,plant-other,sheaf of rice,"ear, grain, rice",,Hend Hourani,2018-11-16,,,,,0.6,3218
+ 🌿,1F33F,animals-nature,plant-other,herb,leaf,green,Hilda Kalyoncu,2018-04-18,,,,,0.6,3219
+-☘️,2618,animals-nature,plant-other,shamrock,plant,"green, plant",Hilda Kalyoncu,2018-04-18,,,,,1,3221
++☘,2618,animals-nature,plant-other,shamrock,plant,"green, plant",Hilda Kalyoncu,2018-04-18,,,,,1,3221
+ 🍀,1F340,animals-nature,plant-other,four leaf clover,"4, clover, four, four-leaf clover, leaf","luck, four, leaf, green, plant",Hilda Kalyoncu,2018-04-18,,,,,0.6,3222
+ 🍁,1F341,animals-nature,plant-other,maple leaf,"falling, leaf, maple","autumn, colorful",Hilda Kalyoncu,2018-04-18,,,,,0.6,3223
+ 🍂,1F342,animals-nature,plant-other,fallen leaf,"falling, leaf",,Ricarda Krejci,2019-05-07,,,,,0.6,3224
+@@ -2377,7 +2377,7 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🥔,1F954,food-drink,food-vegetable,potato,"food, vegetable",,Marius Schnabel,2018-04-18,,,,,3,3247
+ 🥕,1F955,food-drink,food-vegetable,carrot,"food, vegetable",,Marius Schnabel,2018-04-18,,,,,3,3248
+ 🌽,1F33D,food-drink,food-vegetable,ear of corn,"corn, ear, maize, maze",yellow,Marius Schnabel,2018-04-18,,,,,0.6,3249
+-🌶️,1F336,food-drink,food-vegetable,hot pepper,"hot, pepper",red,Marius Schnabel,2018-04-18,,,,,0.7,3251
++🌶,1F336,food-drink,food-vegetable,hot pepper,"hot, pepper",red,Marius Schnabel,2018-04-18,,,,,0.7,3251
+ 🫑,1FAD1,food-drink,food-vegetable,bell pepper,"capsicum, pepper, vegetable",,Liz Bravo,2020-07-21,,,,,13,3252
+ 🥒,1F952,food-drink,food-vegetable,cucumber,"food, pickle, vegetable",,Liz Bravo,2021-05-04,,,,,3,3253
+ 🥬,1F96C,food-drink,food-vegetable,leafy green,"bok choy, cabbage, kale, lettuce",,Ricarda Krejci,2019-05-07,,,,,11,3254
+@@ -2459,13 +2459,13 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🍯,1F36F,food-drink,food-sweet,honey pot,"honey, honeypot, pot, sweet",,Miriam Vollmeier,2018-04-18,,,,,0.6,3330
+ 🍼,1F37C,food-drink,drink,baby bottle,"baby, bottle, drink, milk","baby, drink, sweet",Laura Humpfer,2018-04-18,,,,,1,3331
+ 🥛,1F95B,food-drink,drink,glass of milk,"drink, glass, milk",,Laura Humpfer,2018-04-18,,,,,3,3332
+-☕️,2615,food-drink,drink,hot beverage,"beverage, coffee, drink, hot, steaming, tea",,Alexander Müller,2020-05-11,,,,,0.6,3333
++☕,2615,food-drink,drink,hot beverage,"beverage, coffee, drink, hot, steaming, tea",,Alexander Müller,2020-05-11,,,,,0.6,3333
+ 🫖,1FAD6,food-drink,drink,teapot,"drink, pot, tea",,Liz Bravo,2020-07-21,,,,,13,3334
+ 🍵,1F375,food-drink,drink,teacup without handle,"beverage, cup, drink, tea, teacup","glass, hot",Laura Humpfer,2018-04-18,,,,,0.6,3335
+ 🍶,1F376,food-drink,drink,sake,"bar, beverage, bottle, cup, drink",,Laura Humpfer,2018-04-18,,,,,0.6,3336
+ 🍾,1F37E,food-drink,drink,bottle with popping cork,"bar, bottle, cork, drink, popping","party, celebrate, event",Laura Humpfer,2018-04-18,,,,,1,3337
+ 🍷,1F377,food-drink,drink,wine glass,"bar, beverage, drink, glass, wine","classic, drink, beverage, alcohol",Laura Humpfer,2018-04-18,,,,,0.6,3338
+-🍸️,1F378,food-drink,drink,cocktail glass,"bar, cocktail, drink, glass","classic, alcohol, elegant, party",Laura Humpfer,2018-04-18,,,,,0.6,3339
++🍸,1F378,food-drink,drink,cocktail glass,"bar, cocktail, drink, glass","classic, alcohol, elegant, party",Laura Humpfer,2018-04-18,,,,,0.6,3339
+ 🍹,1F379,food-drink,drink,tropical drink,"bar, drink, tropical","cocktail, glass, drink, party, summer, party",Laura Humpfer,2018-04-18,,,,,0.6,3340
+ 🍺,1F37A,food-drink,drink,beer mug,"bar, beer, drink, mug","beer, german, alcohol, bavaria, party",Laura Humpfer,2018-04-18,,,,,0.6,3341
+ 🍻,1F37B,food-drink,drink,clinking beer mugs,"bar, beer, clink, drink, mug","beer, german, party, alcohol, bavaria, party",Laura Humpfer,2018-04-18,,,,,0.6,3342
+@@ -2477,37 +2477,37 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🧉,1F9C9,food-drink,drink,mate,drink,,Evelyn Soos,2019-05-04,,,,,12,3348
+ 🧊,1F9CA,food-drink,drink,ice,"cold, ice cube, iceberg",isometric,Evelyn Soos,2019-05-04,,,,,12,3349
+ 🥢,1F962,food-drink,dishware,chopsticks,hashi,"sticks, eat, chopstick",Jonas Roßner,2018-04-18,,,,,5,3350
+-🍽️,1F37D,food-drink,dishware,fork and knife with plate,"cooking, fork, knife, plate",eat,Jonas Roßner,2018-04-18,,,,,0.7,3352
++🍽,1F37D,food-drink,dishware,fork and knife with plate,"cooking, fork, knife, plate",eat,Jonas Roßner,2018-04-18,,,,,0.7,3352
+ 🍴,1F374,food-drink,dishware,fork and knife,"cooking, cutlery, fork, knife",eat,Jonas Roßner,2018-04-18,,,,,0.6,3353
+ 🥄,1F944,food-drink,dishware,spoon,tableware,"metal, spoon, eat",Jonas Roßner,2018-04-18,,,,,3,3354
+ 🔪,1F52A,food-drink,dishware,kitchen knife,"cooking, hocho, knife, tool, weapon",eat,Jonas Roßner,2018-04-18,,,,,0.6,3355
+ 🏺,1F3FA,food-drink,dishware,amphora,"aquarius, cooking, drink, jug, zodiac",,Liz Bravo,2020-12-22,,,,,1,3356
+-🌍️,1F30D,travel-places,place-map,globe showing Europe-Africa,"africa, earth, europe, globe, globe showing europe-africa, world","geographic, continent, global, planet",Martin Wehl,2018-04-18,,,,,0.7,3357
+-🌎️,1F30E,travel-places,place-map,globe showing Americas,"americas, earth, globe, globe showing americas, world","geographic, continent, global, planet",Martin Wehl,2018-04-18,,,,,0.7,3358
+-🌏️,1F30F,travel-places,place-map,globe showing Asia-Australia,"asia, australia, earth, globe, globe showing asia-australia, world","geographic, continent, global, planet",Martin Wehl,2018-04-18,,,,,0.6,3359
++🌍,1F30D,travel-places,place-map,globe showing Europe-Africa,"africa, earth, europe, globe, globe showing europe-africa, world","geographic, continent, global, planet",Martin Wehl,2018-04-18,,,,,0.7,3357
++🌎,1F30E,travel-places,place-map,globe showing Americas,"americas, earth, globe, globe showing americas, world","geographic, continent, global, planet",Martin Wehl,2018-04-18,,,,,0.7,3358
++🌏,1F30F,travel-places,place-map,globe showing Asia-Australia,"asia, australia, earth, globe, globe showing asia-australia, world","geographic, continent, global, planet",Martin Wehl,2018-04-18,,,,,0.6,3359
+ 🌐,1F310,travel-places,place-map,globe with meridians,"earth, globe, meridians, world","geographic, continent, global, planet, grid",Martin Wehl,2018-04-18,,,,,1,3360
+-🗺️,1F5FA,travel-places,place-map,world map,"map, world","geographic, continent, global, planet, earth",Martin Wehl,2018-04-18,,,,,0.7,3362
++🗺,1F5FA,travel-places,place-map,world map,"map, world","geographic, continent, global, planet, earth",Martin Wehl,2018-04-18,,,,,0.7,3362
+ 🗾,1F5FE,travel-places,place-map,map of Japan,"japan, map, map of japan",,Louisa Mantsch,2018-11-16,,,,,0.6,3363
+ 🧭,1F9ED,travel-places,place-map,compass,"magnetic, navigation, orienteering","wayfinding, direction",Kai Magnus Müller,2018-04-18,,,,,11,3364
+-🏔️,1F3D4,travel-places,place-geographic,snow-capped mountain,"cold, mountain, snow","landscape, nature, hiking, climbing, white, outdoor, adventure",Martin Wehl,2018-04-18,,,,,0.7,3366
+-⛰️,26F0,travel-places,place-geographic,mountain,mountain,"landscape, nature, hiking, climbing, outdoor, adventure",Martin Wehl,2018-04-18,,,,,0.7,3368
++🏔,1F3D4,travel-places,place-geographic,snow-capped mountain,"cold, mountain, snow","landscape, nature, hiking, climbing, white, outdoor, adventure",Martin Wehl,2018-04-18,,,,,0.7,3366
++⛰,26F0,travel-places,place-geographic,mountain,mountain,"landscape, nature, hiking, climbing, outdoor, adventure",Martin Wehl,2018-04-18,,,,,0.7,3368
+ 🌋,1F30B,travel-places,place-geographic,volcano,"eruption, mountain","vulcano, landscape, nature, fire, smoke, hot",Guemil Project,2019-01-14,,,,,0.6,3369
+ 🗻,1F5FB,travel-places,place-geographic,mount fuji,"fuji, mountain","japan, japanese, geographic",Martin Wehl,2018-04-18,,,,,0.6,3370
+-🏕️,1F3D5,travel-places,place-geographic,camping,camping,"nature, outdoor, tent, adventure, sleeping",Martin Wehl,2018-04-18,,,,,0.7,3372
+-🏖️,1F3D6,travel-places,place-geographic,beach with umbrella,"beach, umbrella","nature, summer, sun, sand, water, holidays",Martin Wehl,2018-04-18,,,,,0.7,3374
+-🏜️,1F3DC,travel-places,place-geographic,desert,desert,"nature, hot, sun, sand, dry",Martin Wehl,2018-04-18,,,,,0.7,3376
+-🏝️,1F3DD,travel-places,place-geographic,desert island,"desert, island","sun, lonely, sand, water, stranded, palm, nature",Martin Wehl,2018-04-18,,,,,0.7,3378
+-🏞️,1F3DE,travel-places,place-geographic,national park,park,"nature, outdoor, adventure, woods, mountain",Martin Wehl,2018-04-18,,,,,0.7,3380
+-🏟️,1F3DF,travel-places,place-building,stadium,stadium,"building, football, sports, olympic",Martin Wehl,2018-04-18,,,,,0.7,3382
+-🏛️,1F3DB,travel-places,place-building,classical building,classical,"building, historical, old, antique",Martin Wehl,2018-04-18,,,,,0.7,3384
+-🏗️,1F3D7,travel-places,place-building,building construction,construction,"work, building lot, crane",Martin Wehl,2018-04-18,,,,,0.7,3386
++🏕,1F3D5,travel-places,place-geographic,camping,camping,"nature, outdoor, tent, adventure, sleeping",Martin Wehl,2018-04-18,,,,,0.7,3372
++🏖,1F3D6,travel-places,place-geographic,beach with umbrella,"beach, umbrella","nature, summer, sun, sand, water, holidays",Martin Wehl,2018-04-18,,,,,0.7,3374
++🏜,1F3DC,travel-places,place-geographic,desert,desert,"nature, hot, sun, sand, dry",Martin Wehl,2018-04-18,,,,,0.7,3376
++🏝,1F3DD,travel-places,place-geographic,desert island,"desert, island","sun, lonely, sand, water, stranded, palm, nature",Martin Wehl,2018-04-18,,,,,0.7,3378
++🏞,1F3DE,travel-places,place-geographic,national park,park,"nature, outdoor, adventure, woods, mountain",Martin Wehl,2018-04-18,,,,,0.7,3380
++🏟,1F3DF,travel-places,place-building,stadium,stadium,"building, football, sports, olympic",Martin Wehl,2018-04-18,,,,,0.7,3382
++🏛,1F3DB,travel-places,place-building,classical building,classical,"building, historical, old, antique",Martin Wehl,2018-04-18,,,,,0.7,3384
++🏗,1F3D7,travel-places,place-building,building construction,construction,"work, building lot, crane",Martin Wehl,2018-04-18,,,,,0.7,3386
+ 🧱,1F9F1,travel-places,place-building,brick,"bricks, clay, mortar, wall",,Jonas Dunkel,2019-05-07,,,,,11,3387
+ 🪨,1FAA8,travel-places,place-building,rock,"boulder, heavy, solid, stone",,Liz Bravo,2020-10-07,,,,,13,3388
+ 🪵,1FAB5,travel-places,place-building,wood,"log, lumber, timber",,Liz Bravo,2020-09-26,,,,,13,3389
+ 🛖,1F6D6,travel-places,place-building,hut,"house, roundhouse, yurt",,Liz Bravo,2020-09-26,,,,,13,3390
+-🏘️,1F3D8,travel-places,place-building,houses,houses,"buildings, neighbourhood",Martin Wehl,2018-04-18,,,,,0.7,3392
+-🏚️,1F3DA,travel-places,place-building,derelict house,"derelict, house","building, old, rotten, dangerous",Martin Wehl,2018-04-18,,,,,0.7,3394
+-🏠️,1F3E0,travel-places,place-building,house,home,building,Martin Wehl,2018-04-18,,,,,0.6,3395
++🏘,1F3D8,travel-places,place-building,houses,houses,"buildings, neighbourhood",Martin Wehl,2018-04-18,,,,,0.7,3392
++🏚,1F3DA,travel-places,place-building,derelict house,"derelict, house","building, old, rotten, dangerous",Martin Wehl,2018-04-18,,,,,0.7,3394
++🏠,1F3E0,travel-places,place-building,house,home,building,Martin Wehl,2018-04-18,,,,,0.6,3395
+ 🏡,1F3E1,travel-places,place-building,house with garden,"garden, home, house","building, grass, green, tree",Martin Wehl,2018-04-18,,,,,0.6,3396
+ 🏢,1F3E2,travel-places,place-building,office building,building,"workplace, company, firm, business",Martin Wehl,2018-04-18,,,,,0.6,3397
+ 🏣,1F3E3,travel-places,place-building,Japanese post office,"japanese, japanese post office, post","delivery, mailing, communication",Martin Wehl,2018-04-18,,,,,0.6,3398
+@@ -2519,29 +2519,29 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🏪,1F3EA,travel-places,place-building,convenience store,"convenience, store","building, shopping, buying, 24",Martin Wehl,2018-04-18,,,,,0.6,3404
+ 🏫,1F3EB,travel-places,place-building,school,building,"learning, public, teaching, education",Martin Wehl,2018-04-18,,,,,0.6,3405
+ 🏬,1F3EC,travel-places,place-building,department store,"department, store","building, shopping, buying",Martin Wehl,2018-04-18,,,,,0.6,3406
+-🏭️,1F3ED,travel-places,place-building,factory,building,"firm, workplace, business",Martin Wehl,2018-04-18,,,,,0.6,3407
++🏭,1F3ED,travel-places,place-building,factory,building,"firm, workplace, business",Martin Wehl,2018-04-18,,,,,0.6,3407
+ 🏯,1F3EF,travel-places,place-building,Japanese castle,"castle, japanese","building, culture, historical, war",Martin Wehl,2018-04-18,,,,,0.6,3408
+ 🏰,1F3F0,travel-places,place-building,castle,european,"building, culture, historical, war",Martin Wehl,2018-04-18,,,,,0.6,3409
+ 💒,1F492,travel-places,place-building,wedding,"chapel, romance","building, love, marriage, heart",Martin Wehl,2018-04-18,,,,,0.6,3410
+ 🗼,1F5FC,travel-places,place-building,Tokyo tower,"tokyo, tower",,Louisa Mantsch,2018-11-16,,,,,0.6,3411
+ 🗽,1F5FD,travel-places,place-building,Statue of Liberty,"liberty, statue, statue of liberty",,Louisa Mantsch,2018-11-16,,,,,0.6,3412
+-⛪️,26EA,travel-places,place-religious,church,"christian, cross, religion","religious, pray, cross, building, god, mess, faith",Martin Wehl,2018-04-18,,,,,0.6,3413
++⛪,26EA,travel-places,place-religious,church,"christian, cross, religion","religious, pray, cross, building, god, mess, faith",Martin Wehl,2018-04-18,,,,,0.6,3413
+ 🕌,1F54C,travel-places,place-religious,mosque,"islam, muslim, religion","religious, pray, building, god, faith",Liz Bravo,2020-12-22,,,,,1,3414
+ 🛕,1F6D5,travel-places,place-religious,hindu temple,"hindu, temple",,Evelyn Soos,2019-05-04,,,,,12,3415
+ 🕍,1F54D,travel-places,place-religious,synagogue,"jew, jewish, religion, temple","religious, pray, building, god, faith",Martin Wehl,2018-04-18,,,,,1,3416
+-⛩️,26E9,travel-places,place-religious,shinto shrine,"religion, shinto, shrine","religious, pray, building, god, faith",Martin Wehl,2018-04-18,,,,,0.7,3418
++⛩,26E9,travel-places,place-religious,shinto shrine,"religion, shinto, shrine","religious, pray, building, god, faith",Martin Wehl,2018-04-18,,,,,0.7,3418
+ 🕋,1F54B,travel-places,place-religious,kaaba,"islam, muslim, religion","religious, pray, building, god, black, mecca, faith",Martin Wehl,2018-04-18,,,,,1,3419
+-⛲️,26F2,travel-places,place-other,fountain,fountain,,Louisa Mantsch,2018-11-16,,,,,0.6,3420
+-⛺️,26FA,travel-places,place-other,tent,camping,"nature, outdoor, adventure",Martin Wehl,2018-04-18,,,,,0.6,3421
++⛲,26F2,travel-places,place-other,fountain,fountain,,Louisa Mantsch,2018-11-16,,,,,0.6,3420
++⛺,26FA,travel-places,place-other,tent,camping,"nature, outdoor, adventure",Martin Wehl,2018-04-18,,,,,0.6,3421
+ 🌁,1F301,travel-places,place-other,foggy,fog,,Nelly Nieter,2021-04-23,,,,,0.6,3422
+ 🌃,1F303,travel-places,place-other,night with stars,"night, star",,Louisa Mantsch,2018-11-16,,,,,0.6,3423
+-🏙️,1F3D9,travel-places,place-other,cityscape,city,"buildings, metropolis",Martin Wehl,2018-04-18,,,,,0.7,3425
++🏙,1F3D9,travel-places,place-other,cityscape,city,"buildings, metropolis",Martin Wehl,2018-04-18,,,,,0.7,3425
+ 🌄,1F304,travel-places,place-other,sunrise over mountains,"morning, mountain, sun, sunrise",,Louisa Mantsch,2018-11-16,,,,,0.6,3426
+ 🌅,1F305,travel-places,place-other,sunrise,"morning, sun",,Louisa Mantsch,2018-11-16,,,,,0.6,3427
+ 🌆,1F306,travel-places,place-other,cityscape at dusk,"city, dusk, evening, landscape, sunset",,Louisa Mantsch,2018-11-16,,,,,0.6,3428
+ 🌇,1F307,travel-places,place-other,sunset,"dusk, sun",,Louisa Mantsch,2018-11-16,,,,,0.6,3429
+ 🌉,1F309,travel-places,place-other,bridge at night,"bridge, night",,Jonas Dunkel,2019-05-07,,,,,0.6,3430
+-♨️,2668,travel-places,place-other,hot springs,"hot, hotsprings, springs, steaming",,Louisa Mantsch,2018-11-16,,,,,0.6,3432
++♨,2668,travel-places,place-other,hot springs,"hot, hotsprings, springs, steaming",,Louisa Mantsch,2018-11-16,,,,,0.6,3432
+ 🎠,1F3A0,travel-places,place-other,carousel horse,"carousel, horse",,Louisa Mantsch,2018-11-16,,,,,0.6,3433
+ 🎡,1F3A1,travel-places,place-other,ferris wheel,"amusement park, ferris, wheel",,Louisa Mantsch,2018-11-16,,,,,0.6,3434
+ 🎢,1F3A2,travel-places,place-other,roller coaster,"amusement park, coaster, roller",,Louisa Mantsch,2018-11-16,,,,,0.6,3435
+@@ -2552,7 +2552,7 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🚄,1F684,travel-places,transport-ground,high-speed train,"railway, shinkansen, speed, train",,Jonas Dunkel,2019-05-07,,,,,0.6,3440
+ 🚅,1F685,travel-places,transport-ground,bullet train,"bullet, railway, shinkansen, speed, train","train, locomotive, railway car, travel, transportation",Ronja Bäurlen,2018-04-18,,,,,0.6,3441
+ 🚆,1F686,travel-places,transport-ground,train,railway,,Nadja Grün,2018-11-16,,,,,1,3442
+-🚇️,1F687,travel-places,transport-ground,metro,subway,,Nadja Grün,2018-11-16,,,,,0.6,3443
++🚇,1F687,travel-places,transport-ground,metro,subway,,Nadja Grün,2018-11-16,,,,,0.6,3443
+ 🚈,1F688,travel-places,transport-ground,light rail,railway,,Nadja Grün,2018-11-16,,,,,1,3444
+ 🚉,1F689,travel-places,transport-ground,station,"railway, train","train station, station, stop, train, railway, travel, departure, arrives",Ronja Bäurlen,2018-04-18,,,,,0.6,3445
+ 🚊,1F68A,travel-places,transport-ground,tram,trolleybus,,Nadja Grün,2018-11-16,,,,,1,3446
+@@ -2560,52 +2560,52 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🚞,1F69E,travel-places,transport-ground,mountain railway,"car, mountain, railway",,Nadja Grün,2018-11-16,,,,,1,3448
+ 🚋,1F68B,travel-places,transport-ground,tram car,"car, tram, trolleybus",,Nadja Grün,2018-11-16,,,,,1,3449
+ 🚌,1F68C,travel-places,transport-ground,bus,vehicle,"Bus, travel, transportation",Ronja Bäurlen,2018-04-18,,,,,0.6,3450
+-🚍️,1F68D,travel-places,transport-ground,oncoming bus,"bus, oncoming",,Nadja Grün,2018-11-16,,,,,0.7,3451
++🚍,1F68D,travel-places,transport-ground,oncoming bus,"bus, oncoming",,Nadja Grün,2018-11-16,,,,,0.7,3451
+ 🚎,1F68E,travel-places,transport-ground,trolleybus,"bus, tram, trolley",,Nadja Grün,2018-11-16,,,,,1,3452
+ 🚐,1F690,travel-places,transport-ground,minibus,bus,"Bus, travel, transportation, car",Ronja Bäurlen,2018-04-18,,,,,1,3453
+-🚑️,1F691,travel-places,transport-ground,ambulance,vehicle,"travel, hospital, ambulance, alarm, doctor, help",Ronja Bäurlen,2018-04-18,,,,,0.6,3454
++🚑,1F691,travel-places,transport-ground,ambulance,vehicle,"travel, hospital, ambulance, alarm, doctor, help",Ronja Bäurlen,2018-04-18,,,,,0.6,3454
+ 🚒,1F692,travel-places,transport-ground,fire engine,"engine, fire, truck","travel, fire, fire engine, red, alarm",Ronja Bäurlen,2018-04-18,,,,,0.6,3455
+ 🚓,1F693,travel-places,transport-ground,police car,"car, patrol, police","travel, car, police, patrol",Ronja Bäurlen,2018-04-18,,,,,0.6,3456
+-🚔️,1F694,travel-places,transport-ground,oncoming police car,"car, oncoming, police",,Nadja Grün,2018-11-16,,,,,0.7,3457
++🚔,1F694,travel-places,transport-ground,oncoming police car,"car, oncoming, police",,Nadja Grün,2018-11-16,,,,,0.7,3457
+ 🚕,1F695,travel-places,transport-ground,taxi,vehicle,"travel, transportation, car, taxi, cab",Ronja Bäurlen,2018-04-18,,,,,0.6,3458
+ 🚖,1F696,travel-places,transport-ground,oncoming taxi,"oncoming, taxi",,Nadja Grün,2018-11-16,,,,,1,3459
+ 🚗,1F697,travel-places,transport-ground,automobile,car,"car, travel, automobile, vehicle, transportation",Ronja Bäurlen,2018-04-18,,,,,0.6,3460
+-🚘️,1F698,travel-places,transport-ground,oncoming automobile,"automobile, car, oncoming",,Nadja Grün,2018-11-16,,,,,0.7,3461
++🚘,1F698,travel-places,transport-ground,oncoming automobile,"automobile, car, oncoming",,Nadja Grün,2018-11-16,,,,,0.7,3461
+ 🚙,1F699,travel-places,transport-ground,sport utility vehicle,"recreational, sport utility","car, travel, automobile, vehicle, transportation, sport, utility",Ronja Bäurlen,2018-04-18,,,,,0.6,3462
+ 🛻,1F6FB,travel-places,transport-ground,pickup truck,"pick-up, pickup, truck",,Liz Bravo,2020-03-07,,,,,13,3463
+ 🚚,1F69A,travel-places,transport-ground,delivery truck,"delivery, truck","truck, delivery, car, transportation, travel, trucker, driver",Ronja Bäurlen,2018-04-18,,,,,0.6,3464
+ 🚛,1F69B,travel-places,transport-ground,articulated lorry,"lorry, semi, truck","delivery truck, truck, car, transportation, travel, trucker, truck driver",Ronja Bäurlen,2018-04-18,,,,,1,3465
+ 🚜,1F69C,travel-places,transport-ground,tractor,vehicle,"tractor, towing, vehicle, farm, farming, field, acre",Ronja Bäurlen,2018-04-18,,,,,1,3466
+-🏎️,1F3CE,travel-places,transport-ground,racing car,"car, racing","sports, motor",Johanna Wellnitz,2018-04-18,,,,,0.7,3468
+-🏍️,1F3CD,travel-places,transport-ground,motorcycle,racing,"motorsports, vehicle",Johanna Wellnitz,2018-04-18,,,,,0.7,3470
++🏎,1F3CE,travel-places,transport-ground,racing car,"car, racing","sports, motor",Johanna Wellnitz,2018-04-18,,,,,0.7,3468
++🏍,1F3CD,travel-places,transport-ground,motorcycle,racing,"motorsports, vehicle",Johanna Wellnitz,2018-04-18,,,,,0.7,3470
+ 🛵,1F6F5,travel-places,transport-ground,motor scooter,"motor, scooter","motor, scooter, transportation, bicycle,",Ronja Bäurlen,2018-04-18,,,,,3,3471
+ 🦽,1F9BD,travel-places,transport-ground,manual wheelchair,accessibility,,Evelyn Soos,2019-05-04,,,,,12,3472
+ 🦼,1F9BC,travel-places,transport-ground,motorized wheelchair,accessibility,,Evelyn Soos,2019-05-04,,,,,12,3473
+ 🛺,1F6FA,travel-places,transport-ground,auto rickshaw,tuk tuk,,Evelyn Soos,2019-05-04,,,,,12,3474
+-🚲️,1F6B2,travel-places,transport-ground,bicycle,bike,"bike, vehicle, bicycle",Ronja Bäurlen,2018-04-18,,,,,0.6,3475
++🚲,1F6B2,travel-places,transport-ground,bicycle,bike,"bike, vehicle, bicycle",Ronja Bäurlen,2018-04-18,,,,,0.6,3475
+ 🛴,1F6F4,travel-places,transport-ground,kick scooter,"kick, scooter","kick, scooter, city roller",Ronja Bäurlen,2018-04-18,,,,,3,3476
+ 🛹,1F6F9,travel-places,transport-ground,skateboard,board,,Jonas Dunkel,2019-05-07,,,,,11,3477
+ 🛼,1F6FC,travel-places,transport-ground,roller skate,"roller, skate",,Liz Bravo,2020-03-11,,,,,13,3478
+ 🚏,1F68F,travel-places,transport-ground,bus stop,"bus, busstop, stop","station, stop, bus, traffic, travel, bus stop, departure, arrive",Ronja Bäurlen,2018-04-18,,,,,0.6,3479
+-🛣️,1F6E3,travel-places,transport-ground,motorway,"highway, road",,Nadja Grün,2018-11-16,,,,,0.7,3481
+-🛤️,1F6E4,travel-places,transport-ground,railway track,"railway, train",,Nadja Grün,2018-11-16,,,,,0.7,3483
+-🛢️,1F6E2,travel-places,transport-ground,oil drum,"drum, oil",,Nadja Grün,2018-11-16,,,,,0.7,3485
+-⛽️,26FD,travel-places,transport-ground,fuel pump,"diesel, fuel, fuelpump, gas, pump, station","fuel, gas, station, transportation",Ronja Bäurlen,2018-04-18,,,,,0.6,3486
++🛣,1F6E3,travel-places,transport-ground,motorway,"highway, road",,Nadja Grün,2018-11-16,,,,,0.7,3481
++🛤,1F6E4,travel-places,transport-ground,railway track,"railway, train",,Nadja Grün,2018-11-16,,,,,0.7,3483
++🛢,1F6E2,travel-places,transport-ground,oil drum,"drum, oil",,Nadja Grün,2018-11-16,,,,,0.7,3485
++⛽,26FD,travel-places,transport-ground,fuel pump,"diesel, fuel, fuelpump, gas, pump, station","fuel, gas, station, transportation",Ronja Bäurlen,2018-04-18,,,,,0.6,3486
+ 🚨,1F6A8,travel-places,transport-ground,police car light,"beacon, car, light, police, revolving",,Nadja Grün,2018-11-16,,,,,0.6,3487
+ 🚥,1F6A5,travel-places,transport-ground,horizontal traffic light,"light, signal, traffic","light, red, green, yellow, traffic, traffic light",Ronja Bäurlen,2018-04-18,,,,,0.6,3488
+ 🚦,1F6A6,travel-places,transport-ground,vertical traffic light,"light, signal, traffic","light, red, green, yellow, vertical, traffic, light",Ronja Bäurlen,2018-04-18,,,,,1,3489
+ 🛑,1F6D1,travel-places,transport-ground,stop sign,"octagonal, sign, stop","stop, sign, signal, warning",Ronja Bäurlen,2018-04-18,,,,,3,3490
+ 🚧,1F6A7,travel-places,transport-ground,construction,barrier,"barrier, warning, stop, attention, traffic",Carlin MacKenzie,2020-09-13,,,,,0.6,3491
+-⚓️,2693,travel-places,transport-water,anchor,"ship, tool","boat, ship, travel, sea, atlantic, ocean, water, tool, anchor, metal",Ronja Bäurlen,2018-04-18,,,,,0.6,3492
+-⛵️,26F5,travel-places,transport-water,sailboat,"boat, resort, sea, yacht","boat, passengers, ship, travel, sea, atlantic, ocean, water, yacht, resort, sail, sailboat",Ronja Bäurlen,2018-04-18,,,,,0.6,3493
++⚓,2693,travel-places,transport-water,anchor,"ship, tool","boat, ship, travel, sea, atlantic, ocean, water, tool, anchor, metal",Ronja Bäurlen,2018-04-18,,,,,0.6,3492
++⛵,26F5,travel-places,transport-water,sailboat,"boat, resort, sea, yacht","boat, passengers, ship, travel, sea, atlantic, ocean, water, yacht, resort, sail, sailboat",Ronja Bäurlen,2018-04-18,,,,,0.6,3493
+ 🛶,1F6F6,travel-places,transport-water,canoe,boat,,Jonas Dunkel,2019-05-07,,,,,3,3494
+ 🚤,1F6A4,travel-places,transport-water,speedboat,boat,"boat, passengers, ship, travel, sea, atlantic, ocean, water, speed",Ronja Bäurlen,2018-04-18,,,,,0.6,3495
+-🛳️,1F6F3,travel-places,transport-water,passenger ship,"passenger, ship","boat, passengers, ship, travel, sea, atlantic, ocean, water",Ronja Bäurlen,2018-04-18,,,,,0.7,3497
+-⛴️,26F4,travel-places,transport-water,ferry,"boat, passenger",,Lois Proksch,2018-11-16,,,,,0.7,3499
+-🛥️,1F6E5,travel-places,transport-water,motor boat,"boat, motorboat","boat, passengers, ship, travel, sea, atlantic, ocean, water, motor",Ronja Bäurlen,2018-04-18,,,,,0.7,3501
++🛳,1F6F3,travel-places,transport-water,passenger ship,"passenger, ship","boat, passengers, ship, travel, sea, atlantic, ocean, water",Ronja Bäurlen,2018-04-18,,,,,0.7,3497
++⛴,26F4,travel-places,transport-water,ferry,"boat, passenger",,Lois Proksch,2018-11-16,,,,,0.7,3499
++🛥,1F6E5,travel-places,transport-water,motor boat,"boat, motorboat","boat, passengers, ship, travel, sea, atlantic, ocean, water, motor",Ronja Bäurlen,2018-04-18,,,,,0.7,3501
+ 🚢,1F6A2,travel-places,transport-water,ship,"boat, passenger","boat, passengers, ship, travel, sea, atlantic, ocean, water",Ronja Bäurlen,2018-04-18,,,,,0.6,3502
+-✈️,2708,travel-places,transport-air,airplane,aeroplane,"fly, airplane, aeroplane, air, sky, travel, departure, arrive",Ronja Bäurlen,2018-04-18,,,,,0.6,3504
+-🛩️,1F6E9,travel-places,transport-air,small airplane,"aeroplane, airplane","fly, airplane, aeroplane, air, sky, travel",Liz Bravo,2021-05-04,,,,,0.7,3506
++✈,2708,travel-places,transport-air,airplane,aeroplane,"fly, airplane, aeroplane, air, sky, travel, departure, arrive",Ronja Bäurlen,2018-04-18,,,,,0.6,3504
++🛩,1F6E9,travel-places,transport-air,small airplane,"aeroplane, airplane","fly, airplane, aeroplane, air, sky, travel",Liz Bravo,2021-05-04,,,,,0.7,3506
+ 🛫,1F6EB,travel-places,transport-air,airplane departure,"aeroplane, airplane, check-in, departure, departures","fly, airplane, aeroplane, air, sky, travel, departure",Ronja Bäurlen,2018-04-18,,,,,1,3507
+ 🛬,1F6EC,travel-places,transport-air,airplane arrival,"aeroplane, airplane, arrivals, arriving, landing","fly, airplane, aeroplane, air, sky, travel, arrive",Ronja Bäurlen,2018-04-18,,,,,1,3508
+ 🪂,1FA82,travel-places,transport-air,parachute,"hang-glide, parasail, skydive",,Evelyn Soos,2019-05-04,,,,,12,3509
+@@ -2614,86 +2614,86 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🚟,1F69F,travel-places,transport-air,suspension railway,"railway, suspension",,Lois Proksch,2018-11-16,,,,,1,3512
+ 🚠,1F6A0,travel-places,transport-air,mountain cableway,"cable, gondola, mountain","travel, mountain, high",Ronja Bäurlen,2018-04-18,,,,,1,3513
+ 🚡,1F6A1,travel-places,transport-air,aerial tramway,"aerial, cable, car, gondola, tramway",,Lois Proksch,2018-11-16,,,,,1,3514
+-🛰️,1F6F0,travel-places,transport-air,satellite,space,"space, galaxy, satellite",Ronja Bäurlen,2018-04-18,,,,,0.7,3516
++🛰,1F6F0,travel-places,transport-air,satellite,space,"space, galaxy, satellite",Ronja Bäurlen,2018-04-18,,,,,0.7,3516
+ 🚀,1F680,travel-places,transport-air,rocket,space,"rocket, space, galaxy, adventure, alien, transportation",Kris Kowal,2020-01-20,,,,,0.6,3517
+ 🛸,1F6F8,travel-places,transport-air,flying saucer,ufo,"alien, UFO, space, planets, adventures",Ronja Bäurlen,2018-04-18,,,,,5,3518
+-🛎️,1F6CE,travel-places,hotel,bellhop bell,"bell, bellhop, hotel",,Lois Proksch,2018-11-16,,,,,0.7,3520
++🛎,1F6CE,travel-places,hotel,bellhop bell,"bell, bellhop, hotel",,Lois Proksch,2018-11-16,,,,,0.7,3520
+ 🧳,1F9F3,travel-places,hotel,luggage,"packing, travel",,Jonas Dunkel,2019-05-07,,,,,11,3521
+-⌛️,231B,travel-places,time,hourglass done,"sand, timer","countdown, hourglass",Rana Cakir,2018-04-18,,,,,0.6,3522
+-⏳️,23F3,travel-places,time,hourglass not done,"hourglass, sand, timer",,Rana Cakir,2018-04-18,,,,,0.6,3523
+-⌚️,231A,travel-places,time,watch,clock,"watch, time,",Rana Cakir,2018-04-18,,,,,0.6,3524
++⌛,231B,travel-places,time,hourglass done,"sand, timer","countdown, hourglass",Rana Cakir,2018-04-18,,,,,0.6,3522
++⏳,23F3,travel-places,time,hourglass not done,"hourglass, sand, timer",,Rana Cakir,2018-04-18,,,,,0.6,3523
++⌚,231A,travel-places,time,watch,clock,"watch, time,",Rana Cakir,2018-04-18,,,,,0.6,3524
+ ⏰,23F0,travel-places,time,alarm clock,"alarm, clock",,Rana Cakir,2018-04-18,,,,,0.6,3525
+-⏱️,23F1,travel-places,time,stopwatch,clock,,Rana Cakir,2018-04-18,,,,,1,3527
+-⏲️,23F2,travel-places,time,timer clock,"clock, timer",time,Rana Cakir,2018-04-18,,,,,1,3529
+-🕰️,1F570,travel-places,time,mantelpiece clock,clock,,Lois Proksch,2018-11-16,,,,,0.7,3531
+-🕛️,1F55B,travel-places,time,twelve o’clock,"00, 12, 12:00, clock, o’clock, twelve",time,Rana Cakir,2018-04-18,,,,,0.6,3532
+-🕧️,1F567,travel-places,time,twelve-thirty,"12, 12:30, clock, thirty, twelve",time,Rana Cakir,2018-04-18,,,,,0.7,3533
+-🕐️,1F550,travel-places,time,one o’clock,"00, 1, 1:00, clock, one, o’clock",time,Rana Cakir,2018-04-18,,,,,0.6,3534
+-🕜️,1F55C,travel-places,time,one-thirty,"1, 1:30, clock, one, thirty",time,Rana Cakir,2018-04-18,,,,,0.7,3535
+-🕑️,1F551,travel-places,time,two o’clock,"00, 2, 2:00, clock, o’clock, two",time,Rana Cakir,2018-04-18,,,,,0.6,3536
+-🕝️,1F55D,travel-places,time,two-thirty,"2, 2:30, clock, thirty, two",time,Rana Cakir,2018-04-18,,,,,0.7,3537
+-🕒️,1F552,travel-places,time,three o’clock,"00, 3, 3:00, clock, o’clock, three",time,Rana Cakir,2018-04-18,,,,,0.6,3538
+-🕞️,1F55E,travel-places,time,three-thirty,"3, 3:30, clock, thirty, three",time,Rana Cakir,2018-04-18,,,,,0.7,3539
+-🕓️,1F553,travel-places,time,four o’clock,"00, 4, 4:00, clock, four, o’clock",time,Rana Cakir,2018-04-18,,,,,0.6,3540
+-🕟️,1F55F,travel-places,time,four-thirty,"4, 4:30, clock, four, thirty",time,Rana Cakir,2018-04-18,,,,,0.7,3541
+-🕔️,1F554,travel-places,time,five o’clock,"00, 5, 5:00, clock, five, o’clock",time,Rana Cakir,2018-04-18,,,,,0.6,3542
+-🕠️,1F560,travel-places,time,five-thirty,"5, 5:30, clock, five, thirty",time,Rana Cakir,2018-04-18,,,,,0.7,3543
+-🕕️,1F555,travel-places,time,six o’clock,"00, 6, 6:00, clock, o’clock, six",time,Rana Cakir,2018-04-18,,,,,0.6,3544
+-🕡️,1F561,travel-places,time,six-thirty,"6, 6:30, clock, six, thirty",time,Rana Cakir,2018-04-18,,,,,0.7,3545
+-🕖️,1F556,travel-places,time,seven o’clock,"00, 7, 7:00, clock, o’clock, seven",time,Rana Cakir,2018-04-18,,,,,0.6,3546
+-🕢️,1F562,travel-places,time,seven-thirty,"7, 7:30, clock, seven, thirty",time,Rana Cakir,2018-04-18,,,,,0.7,3547
+-🕗️,1F557,travel-places,time,eight o’clock,"00, 8, 8:00, clock, eight, o’clock",time,Rana Cakir,2018-04-18,,,,,0.6,3548
+-🕣️,1F563,travel-places,time,eight-thirty,"8, 8:30, clock, eight, thirty",time,Rana Cakir,2018-04-18,,,,,0.7,3549
+-🕘️,1F558,travel-places,time,nine o’clock,"00, 9, 9:00, clock, nine, o’clock",time,Rana Cakir,2018-04-18,,,,,0.6,3550
+-🕤️,1F564,travel-places,time,nine-thirty,"9, 9:30, clock, nine, thirty",time,Rana Cakir,2018-04-18,,,,,0.7,3551
+-🕙️,1F559,travel-places,time,ten o’clock,"00, 10, 10:00, clock, o’clock, ten",time,Rana Cakir,2018-04-18,,,,,0.6,3552
+-🕥️,1F565,travel-places,time,ten-thirty,"10, 10:30, clock, ten, thirty",time,Rana Cakir,2018-04-18,,,,,0.7,3553
+-🕚️,1F55A,travel-places,time,eleven o’clock,"00, 11, 11:00, clock, eleven, o’clock",time,Rana Cakir,2018-04-18,,,,,0.6,3554
+-🕦️,1F566,travel-places,time,eleven-thirty,"11, 11:30, clock, eleven, thirty",time,Rana Cakir,2018-04-18,,,,,0.7,3555
++⏱,23F1,travel-places,time,stopwatch,clock,,Rana Cakir,2018-04-18,,,,,1,3527
++⏲,23F2,travel-places,time,timer clock,"clock, timer",time,Rana Cakir,2018-04-18,,,,,1,3529
++🕰,1F570,travel-places,time,mantelpiece clock,clock,,Lois Proksch,2018-11-16,,,,,0.7,3531
++🕛,1F55B,travel-places,time,twelve o’clock,"00, 12, 12:00, clock, o’clock, twelve",time,Rana Cakir,2018-04-18,,,,,0.6,3532
++🕧,1F567,travel-places,time,twelve-thirty,"12, 12:30, clock, thirty, twelve",time,Rana Cakir,2018-04-18,,,,,0.7,3533
++🕐,1F550,travel-places,time,one o’clock,"00, 1, 1:00, clock, one, o’clock",time,Rana Cakir,2018-04-18,,,,,0.6,3534
++🕜,1F55C,travel-places,time,one-thirty,"1, 1:30, clock, one, thirty",time,Rana Cakir,2018-04-18,,,,,0.7,3535
++🕑,1F551,travel-places,time,two o’clock,"00, 2, 2:00, clock, o’clock, two",time,Rana Cakir,2018-04-18,,,,,0.6,3536
++🕝,1F55D,travel-places,time,two-thirty,"2, 2:30, clock, thirty, two",time,Rana Cakir,2018-04-18,,,,,0.7,3537
++🕒,1F552,travel-places,time,three o’clock,"00, 3, 3:00, clock, o’clock, three",time,Rana Cakir,2018-04-18,,,,,0.6,3538
++🕞,1F55E,travel-places,time,three-thirty,"3, 3:30, clock, thirty, three",time,Rana Cakir,2018-04-18,,,,,0.7,3539
++🕓,1F553,travel-places,time,four o’clock,"00, 4, 4:00, clock, four, o’clock",time,Rana Cakir,2018-04-18,,,,,0.6,3540
++🕟,1F55F,travel-places,time,four-thirty,"4, 4:30, clock, four, thirty",time,Rana Cakir,2018-04-18,,,,,0.7,3541
++🕔,1F554,travel-places,time,five o’clock,"00, 5, 5:00, clock, five, o’clock",time,Rana Cakir,2018-04-18,,,,,0.6,3542
++🕠,1F560,travel-places,time,five-thirty,"5, 5:30, clock, five, thirty",time,Rana Cakir,2018-04-18,,,,,0.7,3543
++🕕,1F555,travel-places,time,six o’clock,"00, 6, 6:00, clock, o’clock, six",time,Rana Cakir,2018-04-18,,,,,0.6,3544
++🕡,1F561,travel-places,time,six-thirty,"6, 6:30, clock, six, thirty",time,Rana Cakir,2018-04-18,,,,,0.7,3545
++🕖,1F556,travel-places,time,seven o’clock,"00, 7, 7:00, clock, o’clock, seven",time,Rana Cakir,2018-04-18,,,,,0.6,3546
++🕢,1F562,travel-places,time,seven-thirty,"7, 7:30, clock, seven, thirty",time,Rana Cakir,2018-04-18,,,,,0.7,3547
++🕗,1F557,travel-places,time,eight o’clock,"00, 8, 8:00, clock, eight, o’clock",time,Rana Cakir,2018-04-18,,,,,0.6,3548
++🕣,1F563,travel-places,time,eight-thirty,"8, 8:30, clock, eight, thirty",time,Rana Cakir,2018-04-18,,,,,0.7,3549
++🕘,1F558,travel-places,time,nine o’clock,"00, 9, 9:00, clock, nine, o’clock",time,Rana Cakir,2018-04-18,,,,,0.6,3550
++🕤,1F564,travel-places,time,nine-thirty,"9, 9:30, clock, nine, thirty",time,Rana Cakir,2018-04-18,,,,,0.7,3551
++🕙,1F559,travel-places,time,ten o’clock,"00, 10, 10:00, clock, o’clock, ten",time,Rana Cakir,2018-04-18,,,,,0.6,3552
++🕥,1F565,travel-places,time,ten-thirty,"10, 10:30, clock, ten, thirty",time,Rana Cakir,2018-04-18,,,,,0.7,3553
++🕚,1F55A,travel-places,time,eleven o’clock,"00, 11, 11:00, clock, eleven, o’clock",time,Rana Cakir,2018-04-18,,,,,0.6,3554
++🕦,1F566,travel-places,time,eleven-thirty,"11, 11:30, clock, eleven, thirty",time,Rana Cakir,2018-04-18,,,,,0.7,3555
+ 🌑,1F311,travel-places,sky-weather,new moon,"dark, moon",,Lois Proksch,2018-11-16,,,,,0.6,3556
+ 🌒,1F312,travel-places,sky-weather,waxing crescent moon,"crescent, moon, waxing",,Lois Proksch,2018-11-16,,,,,1,3557
+ 🌓,1F313,travel-places,sky-weather,first quarter moon,"moon, quarter",,Lois Proksch,2018-11-16,,,,,0.6,3558
+ 🌔,1F314,travel-places,sky-weather,waxing gibbous moon,"gibbous, moon, waxing",,Lois Proksch,2018-11-16,,,,,0.6,3559
+-🌕️,1F315,travel-places,sky-weather,full moon,"full, moon",,Lois Proksch,2018-11-16,,,,,0.6,3560
++🌕,1F315,travel-places,sky-weather,full moon,"full, moon",,Lois Proksch,2018-11-16,,,,,0.6,3560
+ 🌖,1F316,travel-places,sky-weather,waning gibbous moon,"gibbous, moon, waning",,Lois Proksch,2018-11-16,,,,,1,3561
+ 🌗,1F317,travel-places,sky-weather,last quarter moon,"moon, quarter",,Lois Proksch,2018-11-16,,,,,1,3562
+ 🌘,1F318,travel-places,sky-weather,waning crescent moon,"crescent, moon, waning",,Lois Proksch,2018-11-16,,,,,1,3563
+ 🌙,1F319,travel-places,sky-weather,crescent moon,"crescent, moon","crescent moon, full moon, night, night sky, moon, celestial body, crescent, planet, far away",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3564
+ 🌚,1F31A,travel-places,sky-weather,new moon face,"face, moon",,Lois Proksch,2018-11-16,,,,,1,3565
+ 🌛,1F31B,travel-places,sky-weather,first quarter moon face,"face, moon, quarter","face, first quarter, half moon, moon, full moon, night, night sky, starry sky, light, moonlight, round, celestial bodies, sickle, planet",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3566
+-🌜️,1F31C,travel-places,sky-weather,last quarter moon face,"face, moon, quarter","face, last quarter, half moon, moon, full moon, night, night sky, starry sky, light, moonlight, round, celestial bodies, sickle, planet",Vanessa Boutzikoudi,2018-04-18,,,,,0.7,3567
+-🌡️,1F321,travel-places,sky-weather,thermometer,weather,"temperatures, room temperatures, degrees, heat, warming, fever, cold, celsius, measure, sick",Vanessa Boutzikoudi,2018-04-18,,,,,0.7,3569
+-☀️,2600,travel-places,sky-weather,sun,"bright, rays, sunny","sun, sunrise, warm, sunbeams, feel good, beach, tanning, fire, fireball, hot, heavenly body",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3571
++🌜,1F31C,travel-places,sky-weather,last quarter moon face,"face, moon, quarter","face, last quarter, half moon, moon, full moon, night, night sky, starry sky, light, moonlight, round, celestial bodies, sickle, planet",Vanessa Boutzikoudi,2018-04-18,,,,,0.7,3567
++🌡,1F321,travel-places,sky-weather,thermometer,weather,"temperatures, room temperatures, degrees, heat, warming, fever, cold, celsius, measure, sick",Vanessa Boutzikoudi,2018-04-18,,,,,0.7,3569
++☀,2600,travel-places,sky-weather,sun,"bright, rays, sunny","sun, sunrise, warm, sunbeams, feel good, beach, tanning, fire, fireball, hot, heavenly body",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3571
+ 🌝,1F31D,travel-places,sky-weather,full moon face,"bright, face, full, moon","moon, full moon, night, stars, moonlight, disc, no clouds",Vanessa Boutzikoudi,2018-04-18,,,,,1,3572
+ 🌞,1F31E,travel-places,sky-weather,sun with face,"bright, face, sun","sun, face, bright, sun, sunrise, warm, rays, beach, tanning, fire, fireball, hot, celestial bodies, star",Vanessa Boutzikoudi,2018-04-18,,,,,1,3573
+ 🪐,1FA90,travel-places,sky-weather,ringed planet,"saturn, saturnine","saturn, saturnine",Liz Bravo,2021-04-28,,,,,12,3574
+-⭐️,2B50,travel-places,sky-weather,star,star,"star, shine, small planet, sky, yellow, sparkle, far away",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3575
++⭐,2B50,travel-places,sky-weather,star,star,"star, shine, small planet, sky, yellow, sparkle, far away",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3575
+ 🌟,1F31F,travel-places,sky-weather,glowing star,"glittery, glow, shining, sparkle, star","star, shine, glow, bright, sparkle, small planet, sky, yellow, far away, constellation, shooting star, milky way",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3576
+ 🌠,1F320,travel-places,sky-weather,shooting star,"falling, shooting, star","shooting star, star, sparkle, shine, bright, far away, sky, star sky, night, wish, lightning",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3577
+ 🌌,1F30C,travel-places,sky-weather,milky way,space,,Jonas Dunkel,2019-05-07,,,,,0.6,3578
+-☁️,2601,travel-places,sky-weather,cloud,weather,"cloud, cloudy, rain, gray, misty, diffuse, sky, dream, fleecy clouds",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3580
+-⛅️,26C5,travel-places,sky-weather,sun behind cloud,"cloud, sun","sun, behind, cloud, appear, cloudy, cool, sunny, weather",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3581
+-⛈️,26C8,travel-places,sky-weather,cloud with lightning and rain,"cloud, rain, thunder","cloud, lightning, rain, thunder, weather, storm, thunderstorm",Vanessa Boutzikoudi,2018-04-18,,,,,0.7,3583
+-🌤️,1F324,travel-places,sky-weather,sun behind small cloud,"cloud, sun","sun, behind, small, cloud, sunny, cloudy, rain, cool, sky, weather",Vanessa Boutzikoudi,2018-04-18,,,,,0.7,3585
+-🌥️,1F325,travel-places,sky-weather,sun behind large cloud,"cloud, sun","sun, behind, large, cloud, gray, cloudy, rain, diffuse, sky, weather",Vanessa Boutzikoudi,2018-04-18,,,,,0.7,3587
+-🌦️,1F326,travel-places,sky-weather,sun behind rain cloud,"cloud, rain, sun","sun, behind, rain, cloud, wet, rainy, cloudy, cool, weather",Vanessa Boutzikoudi,2018-04-18,,,,,0.7,3589
+-🌧️,1F327,travel-places,sky-weather,cloud with rain,"cloud, rain","cloud, rain, raindrops, falling, down, wet, cool, cloudy, weather, stormy",Vanessa Boutzikoudi,2018-04-18,,,,,0.7,3591
+-🌨️,1F328,travel-places,sky-weather,cloud with snow,"cloud, cold, snow","cloud, snow, falling, ice, wet, cold, cloudy, stormy, weather",Vanessa Boutzikoudi,2018-04-18,,,,,0.7,3593
+-🌩️,1F329,travel-places,sky-weather,cloud with lightning,"cloud, lightning","cloud, lightning, glaring, wet, cold, cloudy, gray, weather, storm, current, voltage, light up, light",Vanessa Boutzikoudi,2018-04-18,,,,,0.7,3595
+-🌪️,1F32A,travel-places,sky-weather,tornado,"cloud, whirlwind","tornado, wind, blow, sky, dangerous, severe weather, storm, hurricane, typhoon, cyclone",Vanessa Boutzikoudi,2018-04-18,,,,,0.7,3597
+-🌫️,1F32B,travel-places,sky-weather,fog,cloud,,Nelly Nieter,2021-04-23,,,,,0.7,3599
+-🌬️,1F32C,travel-places,sky-weather,wind face,"blow, cloud, face, wind","wind, face, blowing, air, mouth, mother nature, sky",Vanessa Boutzikoudi,2018-04-18,,,,,0.7,3601
++☁,2601,travel-places,sky-weather,cloud,weather,"cloud, cloudy, rain, gray, misty, diffuse, sky, dream, fleecy clouds",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3580
++⛅,26C5,travel-places,sky-weather,sun behind cloud,"cloud, sun","sun, behind, cloud, appear, cloudy, cool, sunny, weather",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3581
++⛈,26C8,travel-places,sky-weather,cloud with lightning and rain,"cloud, rain, thunder","cloud, lightning, rain, thunder, weather, storm, thunderstorm",Vanessa Boutzikoudi,2018-04-18,,,,,0.7,3583
++🌤,1F324,travel-places,sky-weather,sun behind small cloud,"cloud, sun","sun, behind, small, cloud, sunny, cloudy, rain, cool, sky, weather",Vanessa Boutzikoudi,2018-04-18,,,,,0.7,3585
++🌥,1F325,travel-places,sky-weather,sun behind large cloud,"cloud, sun","sun, behind, large, cloud, gray, cloudy, rain, diffuse, sky, weather",Vanessa Boutzikoudi,2018-04-18,,,,,0.7,3587
++🌦,1F326,travel-places,sky-weather,sun behind rain cloud,"cloud, rain, sun","sun, behind, rain, cloud, wet, rainy, cloudy, cool, weather",Vanessa Boutzikoudi,2018-04-18,,,,,0.7,3589
++🌧,1F327,travel-places,sky-weather,cloud with rain,"cloud, rain","cloud, rain, raindrops, falling, down, wet, cool, cloudy, weather, stormy",Vanessa Boutzikoudi,2018-04-18,,,,,0.7,3591
++🌨,1F328,travel-places,sky-weather,cloud with snow,"cloud, cold, snow","cloud, snow, falling, ice, wet, cold, cloudy, stormy, weather",Vanessa Boutzikoudi,2018-04-18,,,,,0.7,3593
++🌩,1F329,travel-places,sky-weather,cloud with lightning,"cloud, lightning","cloud, lightning, glaring, wet, cold, cloudy, gray, weather, storm, current, voltage, light up, light",Vanessa Boutzikoudi,2018-04-18,,,,,0.7,3595
++🌪,1F32A,travel-places,sky-weather,tornado,"cloud, whirlwind","tornado, wind, blow, sky, dangerous, severe weather, storm, hurricane, typhoon, cyclone",Vanessa Boutzikoudi,2018-04-18,,,,,0.7,3597
++🌫,1F32B,travel-places,sky-weather,fog,cloud,,Nelly Nieter,2021-04-23,,,,,0.7,3599
++🌬,1F32C,travel-places,sky-weather,wind face,"blow, cloud, face, wind","wind, face, blowing, air, mouth, mother nature, sky",Vanessa Boutzikoudi,2018-04-18,,,,,0.7,3601
+ 🌀,1F300,travel-places,sky-weather,cyclone,"dizzy, hurricane, twister, typhoon","whirl, swirl, spiral, funnel, rotation, rotate, air, turbulent",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3602
+ 🌈,1F308,travel-places,sky-weather,rainbow,rain,"rainbow, color, colorful, colors formed in the sky, sunbeams, sunlight, facet, sparkle, unicorn",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3603
+ 🌂,1F302,travel-places,sky-weather,closed umbrella,"clothing, rain, umbrella",,Carlin MacKenzie,2020-05-21,,,,,0.6,3604
+-☂️,2602,travel-places,sky-weather,umbrella,"clothing, rain","purple, umbrella, rain, wet, drop, raindrops",Vanessa Boutzikoudi,2018-04-18,,,,,0.7,3606
+-☔️,2614,travel-places,sky-weather,umbrella with rain drops,"clothing, drop, rain, umbrella","umbrella, rain, raindrops, wet, drops, windy, rain falling",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3607
+-⛱️,26F1,travel-places,sky-weather,umbrella on ground,"rain, sun, umbrella",,Lois Proksch,2018-11-16,,,,,0.7,3609
+-⚡️,26A1,travel-places,sky-weather,high voltage,"danger, electric, lightning, voltage, zap","lightning, high voltage, storm, current, voltage, volts, lights, light",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3610
+-❄️,2744,travel-places,sky-weather,snowflake,"cold, snow","snowflake, snow, ice, icy, wintry, snow storm, white, cold, frosty, season, weather, melting",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3612
+-☃️,2603,travel-places,sky-weather,snowman,"cold, snow",,Lois Proksch,2018-11-16,,,,,0.7,3614
+-⛄️,26C4,travel-places,sky-weather,snowman without snow,"cold, snow, snowman","snowman, frosty, frosty the snowman, snowman, olaf, winter, not snowing",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3615
+-☄️,2604,travel-places,sky-weather,comet,space,,Lois Proksch,2018-11-16,,,,,1,3617
++☂,2602,travel-places,sky-weather,umbrella,"clothing, rain","purple, umbrella, rain, wet, drop, raindrops",Vanessa Boutzikoudi,2018-04-18,,,,,0.7,3606
++☔,2614,travel-places,sky-weather,umbrella with rain drops,"clothing, drop, rain, umbrella","umbrella, rain, raindrops, wet, drops, windy, rain falling",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3607
++⛱,26F1,travel-places,sky-weather,umbrella on ground,"rain, sun, umbrella",,Lois Proksch,2018-11-16,,,,,0.7,3609
++⚡,26A1,travel-places,sky-weather,high voltage,"danger, electric, lightning, voltage, zap","lightning, high voltage, storm, current, voltage, volts, lights, light",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3610
++❄,2744,travel-places,sky-weather,snowflake,"cold, snow","snowflake, snow, ice, icy, wintry, snow storm, white, cold, frosty, season, weather, melting",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3612
++☃,2603,travel-places,sky-weather,snowman,"cold, snow",,Lois Proksch,2018-11-16,,,,,0.7,3614
++⛄,26C4,travel-places,sky-weather,snowman without snow,"cold, snow, snowman","snowman, frosty, frosty the snowman, snowman, olaf, winter, not snowing",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3615
++☄,2604,travel-places,sky-weather,comet,space,,Lois Proksch,2018-11-16,,,,,1,3617
+ 🔥,1F525,travel-places,sky-weather,fire,"flame, tool","fire, burn, hot, high temperature, flame, glow, flame, tool",Guemil Project,2019-01-14,,,,,0.6,3618
+ 💧,1F4A7,travel-places,sky-weather,droplet,"cold, comic, drop, sweat","drops, droplets, raindrops, wet, rain, cold, fluid, liquid, wet, puddle, pearl, tear",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3619
+ 🌊,1F30A,travel-places,sky-weather,water wave,"ocean, water, wave","wave, water, salty, sea, wet, cold, sun, beach, vacation, air, surf, sough, listen",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3620
+@@ -2715,17 +2715,17 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🧧,1F9E7,activities,event,red envelope,"gift, good luck, hóngbāo, lai see, money",,Jonas Dunkel,2019-05-07,,,,,11,3636
+ 🎀,1F380,activities,event,ribbon,celebration,"present, gift, decoration, party, girl, girly, fashion",Laura Humpfer,2018-04-18,,,,,0.6,3637
+ 🎁,1F381,activities,event,wrapped gift,"box, celebration, gift, present, wrapped","present, birthday, christmas",Laura Humpfer,2018-04-18,,,,,0.6,3638
+-🎗️,1F397,activities,event,reminder ribbon,"celebration, reminder, ribbon",,Laura Humpfer,2018-04-18,,,,,0.7,3640
+-🎟️,1F39F,activities,event,admission tickets,"admission, ticket",,Laura Humpfer,2018-04-18,,,,,0.7,3642
++🎗,1F397,activities,event,reminder ribbon,"celebration, reminder, ribbon",,Laura Humpfer,2018-04-18,,,,,0.7,3640
++🎟,1F39F,activities,event,admission tickets,"admission, ticket",,Laura Humpfer,2018-04-18,,,,,0.7,3642
+ 🎫,1F3AB,activities,event,ticket,admission,,Laura Humpfer,2018-04-18,,,,,0.6,3643
+-🎖️,1F396,activities,award-medal,military medal,"celebration, medal, military","Medal, Medallion, Military, Ribbon",Julian Grüneberg,2018-04-18,,,,,0.7,3645
+-🏆️,1F3C6,activities,award-medal,trophy,prize,"Trophy, Championship, Winner, Gold Cup, award",Julian Grüneberg,2018-04-18,,,,,0.6,3646
++🎖,1F396,activities,award-medal,military medal,"celebration, medal, military","Medal, Medallion, Military, Ribbon",Julian Grüneberg,2018-04-18,,,,,0.7,3645
++🏆,1F3C6,activities,award-medal,trophy,prize,"Trophy, Championship, Winner, Gold Cup, award",Julian Grüneberg,2018-04-18,,,,,0.6,3646
+ 🏅,1F3C5,activities,award-medal,sports medal,medal,"Sports, Medal, Sporting",Julian Grüneberg,2018-04-18,,,,,1,3647
+ 🥇,1F947,activities,award-medal,1st place medal,"first, gold, medal","Gold Medal, Gold, Medal, 1st Place Medal, First Place Medal",Julian Grüneberg,2018-04-18,,,,,3,3648
+ 🥈,1F948,activities,award-medal,2nd place medal,"medal, second, silver","Silver, Medal, Silver Medal, Second Place, Second Place Medal, 2nd Place Medal",Julian Grüneberg,2018-04-18,,,,,3,3649
+ 🥉,1F949,activities,award-medal,3rd place medal,"bronze, medal, third","Bronze, Medal, Bronze Medal, Third Place, Third Place Medal, 3rd Place Medal",Julian Grüneberg,2018-04-18,,,,,3,3650
+-⚽️,26BD,activities,sport,soccer ball,"ball, football, soccer","soccer, ball, football, game, ball game, team sports",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3651
+-⚾️,26BE,activities,sport,baseball,ball,"baseball, white, ball, american, game, ball game, team sports",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3652
++⚽,26BD,activities,sport,soccer ball,"ball, football, soccer","soccer, ball, football, game, ball game, team sports",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3651
++⚾,26BE,activities,sport,baseball,ball,"baseball, white, ball, american, game, ball game, team sports",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3652
+ 🥎,1F94E,activities,sport,softball,"ball, glove, underarm",,Jonas Dunkel,2019-05-07,,,,,11,3653
+ 🏀,1F3C0,activities,sport,basketball,"ball, hoop","basketball, orange ball, team sport, sport, canadian sport, game",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3654
+ 🏐,1F3D0,activities,sport,volleyball,"ball, game","ball, ball game, team sport, sport, hobby, olympic games",Vanessa Boutzikoudi,2018-04-18,,,,,1,3655
+@@ -2743,8 +2743,8 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🥊,1F94A,activities,sport,boxing glove,"boxing, glove","boxing, glove, red, mitt, sport, fist, beat, slap, slap in your face, muhammad ali",Vanessa Boutzikoudi,2018-04-18,,,,,3,3667
+ 🥋,1F94B,activities,sport,martial arts uniform,"judo, karate, martial arts, taekwondo, uniform","white, uniform, judo, karate, keikogi, sport",Vanessa Boutzikoudi,2018-04-18,,,,,3,3668
+ 🥅,1F945,activities,sport,goal net,"goal, net",,Nicole Kornhaas,2019-05-06,,,,,3,3669
+-⛳️,26F3,activities,sport,flag in hole,"golf, hole","flag, golf, golf flag, golf hole with flag, sport, ball, goal",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3670
+-⛸️,26F8,activities,sport,ice skate,"ice, skate",,Sarah Mager,2018-11-16,,,,,0.7,3672
++⛳,26F3,activities,sport,flag in hole,"golf, hole","flag, golf, golf flag, golf hole with flag, sport, ball, goal",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3670
++⛸,26F8,activities,sport,ice skate,"ice, skate",,Sarah Mager,2018-11-16,,,,,0.7,3672
+ 🎣,1F3A3,activities,sport,fishing pole,"fish, pole","fishing rod, fishing pole, line, fish, caught, hobby",Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3673
+ 🤿,1F93F,activities,sport,diving mask,"diving, scuba, snorkeling",,Evelyn Soos,2019-05-04,,,,,12,3674
+ 🎽,1F3BD,activities,sport,running shirt,"athletics, running, sash, shirt",,Sarah Mager,2018-11-16,,,,,0.6,3675
+@@ -2758,31 +2758,31 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🔮,1F52E,activities,game,crystal ball,"ball, crystal, fairy tale, fantasy, fortune, tool",mystery,Marius Schnabel,2018-04-18,,,,,0.6,3683
+ 🪄,1FA84,activities,game,magic wand,"magic, witch, wizard",,Liz Bravo,2020-03-11,,,,,13,3684
+ 🧿,1F9FF,activities,game,nazar amulet,"bead, charm, evil-eye, nazar, talisman",,Nicole Kornhaas,2019-05-06,,,,,11,3685
+-🎮️,1F3AE,activities,game,video game,"controller, game",gamble,Lisa Schulz,2018-04-18,,,,,0.6,3686
+-🕹️,1F579,activities,game,joystick,"game, video game",,Lisa Schulz,2018-04-18,,,,,0.7,3688
++🎮,1F3AE,activities,game,video game,"controller, game",gamble,Lisa Schulz,2018-04-18,,,,,0.6,3686
++🕹,1F579,activities,game,joystick,"game, video game",,Lisa Schulz,2018-04-18,,,,,0.7,3688
+ 🎰,1F3B0,activities,game,slot machine,"game, slot",,Nicole Kornhaas,2019-05-06,,,,,0.6,3689
+ 🎲,1F3B2,activities,game,game die,"dice, die, game","board game, isometric",Lisa Schulz,2018-04-18,,,,,0.6,3690
+ 🧩,1F9E9,activities,game,puzzle piece,"clue, interlocking, jigsaw, piece, puzzle",,Nicole Kornhaas,2019-05-06,,,,,11,3691
+ 🧸,1F9F8,activities,game,teddy bear,"plaything, plush, stuffed, toy",,Liz Bravo,2020-12-22,,,,,11,3692
+ 🪅,1FA85,activities,game,piñata,"celebration, party",,Liz Bravo,2020-03-03,,,,,13,3693
+ 🪆,1FA86,activities,game,nesting dolls,"doll, nesting, russia",,Liz Bravo,2020-03-11,,,,,13,3694
+-♠️,2660,activities,game,spade suit,"card, game",,Nicole Kornhaas,2019-05-06,,,,,0.6,3696
+-♥️,2665,activities,game,heart suit,"card, game",,Nicole Kornhaas,2019-05-06,,,,,0.6,3698
+-♦️,2666,activities,game,diamond suit,"card, game",,Nicole Kornhaas,2019-05-06,,,,,0.6,3700
+-♣️,2663,activities,game,club suit,"card, game",,Nicole Kornhaas,2019-05-06,,,,,0.6,3702
+-♟️,265F,activities,game,chess pawn,"chess, dupe, expendable",,Nicole Kornhaas,2019-05-06,,,,,11,3704
++♠,2660,activities,game,spade suit,"card, game",,Nicole Kornhaas,2019-05-06,,,,,0.6,3696
++♥,2665,activities,game,heart suit,"card, game",,Nicole Kornhaas,2019-05-06,,,,,0.6,3698
++♦,2666,activities,game,diamond suit,"card, game",,Nicole Kornhaas,2019-05-06,,,,,0.6,3700
++♣,2663,activities,game,club suit,"card, game",,Nicole Kornhaas,2019-05-06,,,,,0.6,3702
++♟,265F,activities,game,chess pawn,"chess, dupe, expendable",,Nicole Kornhaas,2019-05-06,,,,,11,3704
+ 🃏,1F0CF,activities,game,joker,"card, game, wildcard",,Nicole Kornhaas,2019-05-06,,,,,0.6,3705
+-🀄️,1F004,activities,game,mahjong red dragon,"game, mahjong, red",,Nicole Kornhaas,2019-05-06,,,,,0.6,3706
++🀄,1F004,activities,game,mahjong red dragon,"game, mahjong, red",,Nicole Kornhaas,2019-05-06,,,,,0.6,3706
+ 🎴,1F3B4,activities,game,flower playing cards,"card, flower, game, japanese, playing",,Abby Esquivel,2018-11-16,,,,,0.6,3707
+-🎭️,1F3AD,activities,arts-crafts,performing arts,"art, mask, performing, theater, theatre","culture, entertainment, education",Martin Wehl,2018-04-18,,,,,0.6,3708
+-🖼️,1F5BC,activities,arts-crafts,framed picture,"art, frame, museum, painting, picture","culture, artist, entertainment",Martin Wehl,2018-04-18,,,,,0.7,3710
++🎭,1F3AD,activities,arts-crafts,performing arts,"art, mask, performing, theater, theatre","culture, entertainment, education",Martin Wehl,2018-04-18,,,,,0.6,3708
++🖼,1F5BC,activities,arts-crafts,framed picture,"art, frame, museum, painting, picture","culture, artist, entertainment",Martin Wehl,2018-04-18,,,,,0.7,3710
+ 🎨,1F3A8,activities,arts-crafts,artist palette,"art, museum, painting, palette","culture, artist, leisure, entertainment",Martin Wehl,2018-04-18,,,,,0.6,3711
+ 🧵,1F9F5,activities,arts-crafts,thread,"needle, sewing, spool, string",,Nicole Kornhaas,2019-05-06,,,,,11,3712
+ 🪡,1FAA1,activities,arts-crafts,sewing needle,"embroidery, needle, sewing, stitches, sutures, tailoring",,Liz Bravo,2020-03-28,,,,,13,3713
+ 🧶,1F9F6,activities,arts-crafts,yarn,"ball, crochet, knit",,Nicole Kornhaas,2019-05-06,,,,,11,3714
+ 🪢,1FAA2,activities,arts-crafts,knot,"rope, tangled, tie, twine, twist",,Liz Bravo,2020-09-26,,,,,13,3715
+-👓️,1F453,objects,clothing,glasses,"clothing, eye, eyeglasses, eyewear",,Jonas Roßner,2018-04-18,,,,,0.6,3716
+-🕶️,1F576,objects,clothing,sunglasses,"dark, eye, eyewear, glasses",sunglasses,Jonas Roßner,2018-04-18,,,,,0.7,3718
++👓,1F453,objects,clothing,glasses,"clothing, eye, eyeglasses, eyewear",,Jonas Roßner,2018-04-18,,,,,0.6,3716
++🕶,1F576,objects,clothing,sunglasses,"dark, eye, eyewear, glasses",sunglasses,Jonas Roßner,2018-04-18,,,,,0.7,3718
+ 🥽,1F97D,objects,clothing,goggles,"eye protection, swimming, welding",,Laura Schießer,2019-05-06,,,,,11,3719
+ 🥼,1F97C,objects,clothing,lab coat,"doctor, experiment, scientist",,Laura Schießer,2019-05-06,,,,,11,3720
+ 🦺,1F9BA,objects,clothing,safety vest,"emergency, safety, vest",,Sam Eckert,2019-05-06,,,,,12,3721
+@@ -2804,7 +2804,7 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 👛,1F45B,objects,clothing,purse,"clothing, coin","money,",Jonas Roßner,2018-04-18,,,,,0.6,3737
+ 👜,1F45C,objects,clothing,handbag,"bag, clothing, purse",,Jonas Roßner,2018-04-18,,,,,0.6,3738
+ 👝,1F45D,objects,clothing,clutch bag,"bag, clothing, pouch",,Jonas Roßner,2018-04-18,,,,,0.6,3739
+-🛍️,1F6CD,objects,clothing,shopping bags,"bag, hotel, shopping","buy,",Jonas Roßner,2018-04-18,,,,,0.7,3741
++🛍,1F6CD,objects,clothing,shopping bags,"bag, hotel, shopping","buy,",Jonas Roßner,2018-04-18,,,,,0.7,3741
+ 🎒,1F392,objects,clothing,backpack,"bag, rucksack, satchel, school","young,",Jonas Roßner,2018-04-18,,,,,0.6,3742
+ 🩴,1FA74,objects,clothing,thong sandal,"beach sandals, sandals, thong sandals, thongs, zōri",,Liz Bravo,2020-03-11,,,,,13,3743
+ 👞,1F45E,objects,clothing,man’s shoe,"clothing, man, shoe",,Jonas Roßner,2018-04-18,,,,,0.6,3744
+@@ -2818,16 +2818,16 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 👑,1F451,objects,clothing,crown,"clothing, king, queen","crone, gold,",Jonas Roßner,2018-04-18,,,,,0.6,3752
+ 👒,1F452,objects,clothing,woman’s hat,"clothing, hat, woman","beautiful,",Jonas Roßner,2018-04-18,,,,,0.6,3753
+ 🎩,1F3A9,objects,clothing,top hat,"clothing, hat, top, tophat","magic,",Jonas Roßner,2018-04-18,,,,,0.6,3754
+-🎓️,1F393,objects,clothing,graduation cap,"cap, celebration, clothing, graduation, hat",,Jonas Roßner,2018-04-18,,,,,0.6,3755
++🎓,1F393,objects,clothing,graduation cap,"cap, celebration, clothing, graduation, hat",,Jonas Roßner,2018-04-18,,,,,0.6,3755
+ 🧢,1F9E2,objects,clothing,billed cap,baseball cap,,Daniel Quiros,2018-11-16,,,,,5,3756
+ 🪖,1FA96,objects,clothing,military helmet,"army, helmet, military, soldier, warrior",,Liz Bravo,2020-09-26,,,,,13,3757
+-⛑️,26D1,objects,clothing,rescue worker’s helmet,"aid, cross, face, hat, helmet",,Anne Frauendorf,2018-11-16,,,,,0.7,3759
++⛑,26D1,objects,clothing,rescue worker’s helmet,"aid, cross, face, hat, helmet",,Anne Frauendorf,2018-11-16,,,,,0.7,3759
+ 📿,1F4FF,objects,clothing,prayer beads,"beads, clothing, necklace, prayer, religion","expensive, jewelry",Jonas Roßner,2018-04-18,,,,,1,3760
+ 💄,1F484,objects,clothing,lipstick,"cosmetics, makeup",,Anne Frauendorf,2018-11-16,,,,,0.6,3761
+ 💍,1F48D,objects,clothing,ring,diamond,"expensive, jewelry",Jonas Roßner,2018-04-18,,,,,0.6,3762
+ 💎,1F48E,objects,clothing,gem stone,"diamond, gem, jewel","expensive,",Jonas Roßner,2018-04-18,,,,,0.6,3763
+ 🔇,1F507,objects,sound,muted speaker,"mute, quiet, silent, speaker",,Rana Cakir,2018-04-18,,,,,1,3764
+-🔈️,1F508,objects,sound,speaker low volume,soft,sound,Rana Cakir,2018-04-18,,,,,0.7,3765
++🔈,1F508,objects,sound,speaker low volume,soft,sound,Rana Cakir,2018-04-18,,,,,0.7,3765
+ 🔉,1F509,objects,sound,speaker medium volume,medium,,Rana Cakir,2018-04-18,,,,,1,3766
+ 🔊,1F50A,objects,sound,speaker high volume,loud,sound,Rana Cakir,2018-04-18,,,,,0.6,3767
+ 📢,1F4E2,objects,sound,loudspeaker,"loud, public address",sound,Rana Cakir,2018-04-18,,,,,0.6,3768
+@@ -2838,12 +2838,12 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🎼,1F3BC,objects,music,musical score,"music, score","violin key, rhythm",Sina Schulz,2018-04-18,,,,,0.6,3773
+ 🎵,1F3B5,objects,music,musical note,"music, note","song, melody, sounds, tone",Sina Schulz,2018-04-18,,,,,0.6,3774
+ 🎶,1F3B6,objects,music,musical notes,"music, note, notes","melody, harmony, sounds, rhythm",Sina Schulz,2018-04-18,,,,,0.6,3775
+-🎙️,1F399,objects,music,studio microphone,"mic, microphone, music, studio","studio, microphone, stereo, recording",Sina Schulz,2018-04-18,,,,,0.7,3777
+-🎚️,1F39A,objects,music,level slider,"level, music, slider","studio, music slider",Sina Schulz,2018-04-18,,,,,0.7,3779
+-🎛️,1F39B,objects,music,control knobs,"control, knobs, music","music, mix, recording, tool, knobs",Sina Schulz,2018-04-18,,,,,0.7,3781
++🎙,1F399,objects,music,studio microphone,"mic, microphone, music, studio","studio, microphone, stereo, recording",Sina Schulz,2018-04-18,,,,,0.7,3777
++🎚,1F39A,objects,music,level slider,"level, music, slider","studio, music slider",Sina Schulz,2018-04-18,,,,,0.7,3779
++🎛,1F39B,objects,music,control knobs,"control, knobs, music","music, mix, recording, tool, knobs",Sina Schulz,2018-04-18,,,,,0.7,3781
+ 🎤,1F3A4,objects,music,microphone,"karaoke, mic","sound, loud, stage, speech, singing, karaoke, mic, microphone, tone",Sina Schulz,2018-04-18,,,,,0.6,3782
+-🎧️,1F3A7,objects,music,headphone,earbud,"music, headphones",Sina Schulz,2018-04-18,,,,,0.6,3783
+-📻️,1F4FB,objects,music,radio,video,"radio, stereo radio, analog radio",Sina Schulz,2018-04-18,,,,,0.6,3784
++🎧,1F3A7,objects,music,headphone,earbud,"music, headphones",Sina Schulz,2018-04-18,,,,,0.6,3783
++📻,1F4FB,objects,music,radio,video,"radio, stereo radio, analog radio",Sina Schulz,2018-04-18,,,,,0.6,3784
+ 🎷,1F3B7,objects,musical-instrument,saxophone,"instrument, music, sax","saxophone, sax, jazz, instrument",Sina Schulz,2018-04-18,,,,,0.6,3785
+ 🪗,1FA97,objects,musical-instrument,accordion,"accordian, concertina, squeeze box",,Liz Bravo,2020-07-21,,,,,13,3786
+ 🎸,1F3B8,objects,musical-instrument,guitar,"instrument, music","guitar, e-guitar, instrumental, acoustic, chords,",Sina Schulz,2018-04-18,,,,,0.6,3787
+@@ -2855,35 +2855,35 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🪘,1FA98,objects,musical-instrument,long drum,"beat, conga, drum, rhythm",,Liz Bravo,2020-03-03,,,,,13,3793
+ 📱,1F4F1,objects,phone,mobile phone,"cell, mobile, phone, telephone","smartphone, message, voice, communication",Martin Wehl,2018-04-18,,,,,0.6,3794
+ 📲,1F4F2,objects,phone,mobile phone with arrow,"arrow, cell, mobile, phone, receive","voice, smartphone, message",Martin Wehl,2018-04-18,,,,,0.6,3795
+-☎️,260E,objects,phone,telephone,phone,"call, voice, communication",Kai Wanschura,2018-04-18,,,,,0.6,3797
++☎,260E,objects,phone,telephone,phone,"call, voice, communication",Kai Wanschura,2018-04-18,,,,,0.6,3797
+ 📞,1F4DE,objects,phone,telephone receiver,"phone, receiver, telephone","call, voice, communication",Kai Wanschura,2018-04-18,,,,,0.6,3798
+-📟️,1F4DF,objects,phone,pager,pager,,Nicole Kornhaas,2019-05-06,,,,,0.6,3799
++📟,1F4DF,objects,phone,pager,pager,,Nicole Kornhaas,2019-05-06,,,,,0.6,3799
+ 📠,1F4E0,objects,phone,fax machine,fax,"office, paper, communication",Martin Wehl,2018-04-18,,,,,0.6,3800
+ 🔋,1F50B,objects,computer,battery,battery,"electricity, energy, electric",Jonas Roßner,2018-04-18,,,,,0.6,3801
+ 🔌,1F50C,objects,computer,electric plug,"electric, electricity, plug",,Jonas Roßner,2018-04-18,,,,,0.6,3802
+-💻️,1F4BB,objects,computer,laptop,"computer, pc, personal","old, retro",Jonas Roßner,2018-04-18,,,,,0.6,3803
+-🖥️,1F5A5,objects,computer,desktop computer,"computer, desktop","electric, screen",Jonas Roßner,2018-04-18,,,,,0.7,3805
+-🖨️,1F5A8,objects,computer,printer,computer,"color, electric",Jonas Roßner,2018-04-18,,,,,0.7,3807
+-⌨️,2328,objects,computer,keyboard,computer,"key, write, electric",Carlin MacKenzie,2020-05-12,,,,,1,3809
+-🖱️,1F5B1,objects,computer,computer mouse,computer,"electric, computer, mouse",Jonas Roßner,2018-04-18,,,,,0.7,3811
+-🖲️,1F5B2,objects,computer,trackball,computer,,Nicole Kornhaas,2019-05-06,,,,,0.7,3813
++💻,1F4BB,objects,computer,laptop,"computer, pc, personal","old, retro",Jonas Roßner,2018-04-18,,,,,0.6,3803
++🖥,1F5A5,objects,computer,desktop computer,"computer, desktop","electric, screen",Jonas Roßner,2018-04-18,,,,,0.7,3805
++🖨,1F5A8,objects,computer,printer,computer,"color, electric",Jonas Roßner,2018-04-18,,,,,0.7,3807
++⌨,2328,objects,computer,keyboard,computer,"key, write, electric",Carlin MacKenzie,2020-05-12,,,,,1,3809
++🖱,1F5B1,objects,computer,computer mouse,computer,"electric, computer, mouse",Jonas Roßner,2018-04-18,,,,,0.7,3811
++🖲,1F5B2,objects,computer,trackball,computer,,Nicole Kornhaas,2019-05-06,,,,,0.7,3813
+ 💽,1F4BD,objects,computer,computer disk,"computer, disk, minidisk, optical","old, retro",Jonas Roßner,2018-04-18,,,,,0.6,3814
+ 💾,1F4BE,objects,computer,floppy disk,"computer, disk, floppy","old, retro",Jonas Roßner,2018-04-18,,,,,0.6,3815
+-💿️,1F4BF,objects,computer,optical disk,"cd, computer, disk, optical","analog,",Jonas Roßner,2018-04-18,,,,,0.6,3816
++💿,1F4BF,objects,computer,optical disk,"cd, computer, disk, optical","analog,",Jonas Roßner,2018-04-18,,,,,0.6,3816
+ 📀,1F4C0,objects,computer,dvd,"blu-ray, computer, disk, optical",film,Jonas Roßner,2018-04-18,,,,,0.6,3817
+ 🧮,1F9EE,objects,computer,abacus,calculation,,Nicole Kornhaas,2019-05-06,,,,,11,3818
+ 🎥,1F3A5,objects,light-video,movie camera,"camera, cinema, movie","film, record",Sina Schulz,2018-04-18,,,,,0.6,3819
+-🎞️,1F39E,objects,light-video,film frames,"cinema, film, frames, movie","clip, film",Sina Schulz,2018-04-18,,,,,0.7,3821
+-📽️,1F4FD,objects,light-video,film projector,"cinema, film, movie, projector, video","play, film clip, movie",Sina Schulz,2018-04-18,,,,,0.7,3823
+-🎬️,1F3AC,objects,light-video,clapper board,"clapper, movie","cut, new recording",Sina Schulz,2018-04-18,,,,,0.6,3824
+-📺️,1F4FA,objects,light-video,television,"tv, video","flat screen, tv, modern",Sina Schulz,2018-04-18,,,,,0.6,3825
+-📷️,1F4F7,objects,light-video,camera,video,"camera, digital",Sina Schulz,2018-04-18,,,,,0.6,3826
++🎞,1F39E,objects,light-video,film frames,"cinema, film, frames, movie","clip, film",Sina Schulz,2018-04-18,,,,,0.7,3821
++📽,1F4FD,objects,light-video,film projector,"cinema, film, movie, projector, video","play, film clip, movie",Sina Schulz,2018-04-18,,,,,0.7,3823
++🎬,1F3AC,objects,light-video,clapper board,"clapper, movie","cut, new recording",Sina Schulz,2018-04-18,,,,,0.6,3824
++📺,1F4FA,objects,light-video,television,"tv, video","flat screen, tv, modern",Sina Schulz,2018-04-18,,,,,0.6,3825
++📷,1F4F7,objects,light-video,camera,video,"camera, digital",Sina Schulz,2018-04-18,,,,,0.6,3826
+ 📸,1F4F8,objects,light-video,camera with flash,"camera, flash, video","camera, bright",Sina Schulz,2018-04-18,,,,,1,3827
+-📹️,1F4F9,objects,light-video,video camera,"camera, video","record, recording, film, movie",Sina Schulz,2018-04-18,,,,,0.6,3828
++📹,1F4F9,objects,light-video,video camera,"camera, video","record, recording, film, movie",Sina Schulz,2018-04-18,,,,,0.6,3828
+ 📼,1F4FC,objects,light-video,videocassette,"tape, vhs, video","movie, film, vhs, cassette, record, recording",Sina Schulz,2018-04-18,,,,,0.6,3829
+-🔍️,1F50D,objects,light-video,magnifying glass tilted left,"glass, magnifying, search, tool","detail, big, zoom, detective",Sina Schulz,2018-04-18,,,,,0.6,3830
++🔍,1F50D,objects,light-video,magnifying glass tilted left,"glass, magnifying, search, tool","detail, big, zoom, detective",Sina Schulz,2018-04-18,,,,,0.6,3830
+ 🔎,1F50E,objects,light-video,magnifying glass tilted right,"glass, magnifying, search, tool","detail, big, zoom, detective",Sina Schulz,2018-04-18,,,,,0.6,3831
+-🕯️,1F56F,objects,light-video,candle,light,"fire, bright, shine",Sina Schulz,2018-04-18,,,,,0.7,3833
++🕯,1F56F,objects,light-video,candle,light,"fire, bright, shine",Sina Schulz,2018-04-18,,,,,0.7,3833
+ 💡,1F4A1,objects,light-video,light bulb,"bulb, comic, electric, idea, light","shine, light, bulb, power, on, electric, idea",Sina Schulz,2018-04-18,,,,,0.6,3834
+ 🔦,1F526,objects,light-video,flashlight,"electric, light, tool, torch","bright, shine, light, flashlight, gadget",Sina Schulz,2018-04-18,,,,,0.6,3835
+ 🏮,1F3EE,objects,light-video,red paper lantern,"bar, lantern, light, red",,Abby Esquivel,2018-11-16,,,,,0.6,3836
+@@ -2894,102 +2894,102 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 📗,1F4D7,objects,book-paper,green book,"book, green",,Abby Esquivel,2018-11-16,,,,,0.6,3841
+ 📘,1F4D8,objects,book-paper,blue book,"blue, book",,Abby Esquivel,2018-11-16,,,,,0.6,3842
+ 📙,1F4D9,objects,book-paper,orange book,"book, orange",,Abby Esquivel,2018-11-16,,,,,0.6,3843
+-📚️,1F4DA,objects,book-paper,books,book,"book, read, write, isometric",Liz Bravo,2020-12-22,,,,,0.6,3844
++📚,1F4DA,objects,book-paper,books,book,"book, read, write, isometric",Liz Bravo,2020-12-22,,,,,0.6,3844
+ 📓,1F4D3,objects,book-paper,notebook,notebook,"book, read, write",Jonas Roßner,2018-04-18,,,,,0.6,3845
+ 📒,1F4D2,objects,book-paper,ledger,notebook,"book, read, write",Jonas Roßner,2018-04-18,,,,,0.6,3846
+ 📃,1F4C3,objects,book-paper,page with curl,"curl, document, page","rolled, page, text",Jonas Roßner,2018-04-18,,,,,0.6,3847
+ 📜,1F4DC,objects,book-paper,scroll,paper,"old, papyrus, text",Jonas Roßner,2018-04-18,,,,,0.6,3848
+ 📄,1F4C4,objects,book-paper,page facing up,"document, page","write, text, paper",Jonas Roßner,2018-04-18,,,,,0.6,3849
+ 📰,1F4F0,objects,book-paper,newspaper,"news, paper","read, news, paper, text",Jonas Roßner,2018-04-18,,,,,0.6,3850
+-🗞️,1F5DE,objects,book-paper,rolled-up newspaper,"news, newspaper, paper, rolled",,Tonia Reinhardt,2019-05-07,,,,,0.7,3852
++🗞,1F5DE,objects,book-paper,rolled-up newspaper,"news, newspaper, paper, rolled",,Tonia Reinhardt,2019-05-07,,,,,0.7,3852
+ 📑,1F4D1,objects,book-paper,bookmark tabs,"bookmark, mark, marker, tabs",,Abby Esquivel,2018-11-16,,,,,0.6,3853
+ 🔖,1F516,objects,book-paper,bookmark,mark,"remember,",Jonas Roßner,2018-04-18,,,,,0.6,3854
+-🏷️,1F3F7,objects,book-paper,label,label,"stick,",Jonas Roßner,2018-04-18,,,,,0.7,3856
+-💰️,1F4B0,objects,money,money bag,"bag, dollar, money, moneybag",,Marius Schnabel,2018-04-18,,,,,0.6,3857
++🏷,1F3F7,objects,book-paper,label,label,"stick,",Jonas Roßner,2018-04-18,,,,,0.7,3856
++💰,1F4B0,objects,money,money bag,"bag, dollar, money, moneybag",,Marius Schnabel,2018-04-18,,,,,0.6,3857
+ 🪙,1FA99,objects,money,coin,"gold, metal, money, silver, treasure",,Liz Bravo,2020-07-21,,,,,13,3858
+ 💴,1F4B4,objects,money,yen banknote,"banknote, bill, currency, money, note, yen",,Marius Schnabel,2018-04-18,,,,,0.6,3859
+ 💵,1F4B5,objects,money,dollar banknote,"banknote, bill, currency, dollar, money, note",,Marius Schnabel,2018-04-18,,,,,0.6,3860
+ 💶,1F4B6,objects,money,euro banknote,"banknote, bill, currency, euro, money, note",,Marius Schnabel,2018-04-18,,,,,1,3861
+ 💷,1F4B7,objects,money,pound banknote,"banknote, bill, currency, money, note, pound",,Marius Schnabel,2018-04-18,,,,,1,3862
+ 💸,1F4B8,objects,money,money with wings,"banknote, bill, fly, money, wings",,Marius Schnabel,2018-04-18,,,,,0.6,3863
+-💳️,1F4B3,objects,money,credit card,"card, credit, money",,Marius Schnabel,2018-04-18,,,,,0.6,3864
++💳,1F4B3,objects,money,credit card,"card, credit, money",,Marius Schnabel,2018-04-18,,,,,0.6,3864
+ 🧾,1F9FE,objects,money,receipt,"accounting, bookkeeping, evidence, proof",,Tonia Reinhardt,2019-05-07,,,,,11,3865
+ 💹,1F4B9,objects,money,chart increasing with yen,"chart, graph, growth, money, yen",,Marleen Heine,2018-11-16,,,,,0.6,3866
+-✉️,2709,objects,mail,envelope,"email, letter","post, message",Marius Schnabel,2018-04-18,,,,,0.6,3868
++✉,2709,objects,mail,envelope,"email, letter","post, message",Marius Schnabel,2018-04-18,,,,,0.6,3868
+ 📧,1F4E7,objects,mail,e-mail,"email, letter, mail","message, electronic",Marius Schnabel,2018-04-18,,,,,0.6,3869
+ 📨,1F4E8,objects,mail,incoming envelope,"e-mail, email, envelope, incoming, letter, receive",,Marleen Heine,2018-11-16,,,,,0.6,3870
+ 📩,1F4E9,objects,mail,envelope with arrow,"arrow, e-mail, email, envelope, outgoing",post,Marius Schnabel,2018-04-18,,,,,0.6,3871
+-📤️,1F4E4,objects,mail,outbox tray,"box, letter, mail, outbox, sent, tray",post,Marius Schnabel,2018-04-18,,,,,0.6,3872
+-📥️,1F4E5,objects,mail,inbox tray,"box, inbox, letter, mail, receive, tray",post,Marius Schnabel,2018-04-18,,,,,0.6,3873
+-📦️,1F4E6,objects,mail,package,"box, parcel","shipping, post, mail, parcel",Liz Bravo,2021-04-28,,,,,0.6,3874
+-📫️,1F4EB,objects,mail,closed mailbox with raised flag,"closed, mail, mailbox, postbox",post,Marius Schnabel,2018-04-18,,,,,0.6,3875
+-📪️,1F4EA,objects,mail,closed mailbox with lowered flag,"closed, lowered, mail, mailbox, postbox",post,Marius Schnabel,2018-04-18,,,,,0.6,3876
+-📬️,1F4EC,objects,mail,open mailbox with raised flag,"mail, mailbox, open, postbox",,Marleen Heine,2018-11-16,,,,,0.7,3877
+-📭️,1F4ED,objects,mail,open mailbox with lowered flag,"lowered, mail, mailbox, open, postbox",,Marleen Heine,2018-11-16,,,,,0.7,3878
++📤,1F4E4,objects,mail,outbox tray,"box, letter, mail, outbox, sent, tray",post,Marius Schnabel,2018-04-18,,,,,0.6,3872
++📥,1F4E5,objects,mail,inbox tray,"box, inbox, letter, mail, receive, tray",post,Marius Schnabel,2018-04-18,,,,,0.6,3873
++📦,1F4E6,objects,mail,package,"box, parcel","shipping, post, mail, parcel",Liz Bravo,2021-04-28,,,,,0.6,3874
++📫,1F4EB,objects,mail,closed mailbox with raised flag,"closed, mail, mailbox, postbox",post,Marius Schnabel,2018-04-18,,,,,0.6,3875
++📪,1F4EA,objects,mail,closed mailbox with lowered flag,"closed, lowered, mail, mailbox, postbox",post,Marius Schnabel,2018-04-18,,,,,0.6,3876
++📬,1F4EC,objects,mail,open mailbox with raised flag,"mail, mailbox, open, postbox",,Marleen Heine,2018-11-16,,,,,0.7,3877
++📭,1F4ED,objects,mail,open mailbox with lowered flag,"lowered, mail, mailbox, open, postbox",,Marleen Heine,2018-11-16,,,,,0.7,3878
+ 📮,1F4EE,objects,mail,postbox,"mail, mailbox",post,Marius Schnabel,2018-04-18,,,,,0.6,3879
+-🗳️,1F5F3,objects,mail,ballot box with ballot,"ballot, box",,Marleen Heine,2018-11-16,,,,,0.7,3881
+-✏️,270F,objects,writing,pencil,pencil,,Rana Cakir,2018-04-18,,,,,0.6,3883
+-✒️,2712,objects,writing,black nib,"nib, pen",,Liz Bravo,2021-05-04,,,,,0.6,3885
+-🖋️,1F58B,objects,writing,fountain pen,"fountain, pen",,Rana Cakir,2018-04-18,,,,,0.7,3887
+-🖊️,1F58A,objects,writing,pen,ballpoint,,Rana Cakir,2018-04-18,,,,,0.7,3889
+-🖌️,1F58C,objects,writing,paintbrush,painting,"colors, pain, brush",Rana Cakir,2018-04-18,,,,,0.7,3891
+-🖍️,1F58D,objects,writing,crayon,crayon,"painting, colors",Rana Cakir,2018-04-18,,,,,0.7,3893
++🗳,1F5F3,objects,mail,ballot box with ballot,"ballot, box",,Marleen Heine,2018-11-16,,,,,0.7,3881
++✏,270F,objects,writing,pencil,pencil,,Rana Cakir,2018-04-18,,,,,0.6,3883
++✒,2712,objects,writing,black nib,"nib, pen",,Liz Bravo,2021-05-04,,,,,0.6,3885
++🖋,1F58B,objects,writing,fountain pen,"fountain, pen",,Rana Cakir,2018-04-18,,,,,0.7,3887
++🖊,1F58A,objects,writing,pen,ballpoint,,Rana Cakir,2018-04-18,,,,,0.7,3889
++🖌,1F58C,objects,writing,paintbrush,painting,"colors, pain, brush",Rana Cakir,2018-04-18,,,,,0.7,3891
++🖍,1F58D,objects,writing,crayon,crayon,"painting, colors",Rana Cakir,2018-04-18,,,,,0.7,3893
+ 📝,1F4DD,objects,writing,memo,pencil,"pencil, paper, notice",Rana Cakir,2018-04-18,,,,,0.6,3894
+ 💼,1F4BC,objects,office,briefcase,briefcase,"bag, briefcase, office bag, leather bag",Sina Schulz,2018-04-18,,,,,0.6,3895
+ 📁,1F4C1,objects,office,file folder,"file, folder","file, folder, paper, organise, structure, office, box",Sina Schulz,2018-04-18,,,,,0.6,3896
+ 📂,1F4C2,objects,office,open file folder,"file, folder, open","open file, folder, organise, structure, office, box",Sina Schulz,2018-04-18,,,,,0.6,3897
+-🗂️,1F5C2,objects,office,card index dividers,"card, dividers, index",,Marleen Heine,2018-11-16,,,,,0.7,3899
++🗂,1F5C2,objects,office,card index dividers,"card, dividers, index",,Marleen Heine,2018-11-16,,,,,0.7,3899
+ 📅,1F4C5,objects,office,calendar,date,"calendar, day view, pages, analog",Sina Schulz,2018-04-18,,,,,0.6,3900
+ 📆,1F4C6,objects,office,tear-off calendar,calendar,"calendar, tear off",Sina Schulz,2018-04-18,,,,,0.6,3901
+-🗒️,1F5D2,objects,office,spiral notepad,"note, pad, spiral","notes, handwrite, paper, pen, spiral block, college",Sina Schulz,2018-04-18,,,,,0.7,3903
+-🗓️,1F5D3,objects,office,spiral calendar,"calendar, pad, spiral","calendar, year, month view",Sina Schulz,2018-04-18,,,,,0.7,3905
++🗒,1F5D2,objects,office,spiral notepad,"note, pad, spiral","notes, handwrite, paper, pen, spiral block, college",Sina Schulz,2018-04-18,,,,,0.7,3903
++🗓,1F5D3,objects,office,spiral calendar,"calendar, pad, spiral","calendar, year, month view",Sina Schulz,2018-04-18,,,,,0.7,3905
+ 📇,1F4C7,objects,office,card index,"card, index, rolodex",,Tonia Reinhardt,2019-05-07,,,,,0.6,3906
+ 📈,1F4C8,objects,office,chart increasing,"chart, graph, growth, trend, upward","graph going up, upward trend",Sina Schulz,2018-04-18,,,,,0.6,3907
+ 📉,1F4C9,objects,office,chart decreasing,"chart, down, graph, trend","graph going down, downtrend",Sina Schulz,2018-04-18,,,,,0.6,3908
+ 📊,1F4CA,objects,office,bar chart,"bar, chart, graph","data, chart, sheet, graph",Sina Schulz,2018-04-18,,,,,0.6,3909
+-📋️,1F4CB,objects,office,clipboard,clipboard,"board, clip, metal, wood, handwriting",Sina Schulz,2018-04-18,,,,,0.6,3910
++📋,1F4CB,objects,office,clipboard,clipboard,"board, clip, metal, wood, handwriting",Sina Schulz,2018-04-18,,,,,0.6,3910
+ 📌,1F4CC,objects,office,pushpin,pin,"pin, wall, push, paper",Sina Schulz,2018-04-18,,,,,0.6,3911
+ 📍,1F4CD,objects,office,round pushpin,"pin, pushpin","pin, wall, push, paper, notes",Sina Schulz,2018-04-18,,,,,0.6,3912
+ 📎,1F4CE,objects,office,paperclip,paperclip,"office, paperclip, organisation",Sina Schulz,2018-04-18,,,,,0.6,3913
+-🖇️,1F587,objects,office,linked paperclips,"link, paperclip",,Marleen Heine,2018-11-16,,,,,0.7,3915
++🖇,1F587,objects,office,linked paperclips,"link, paperclip",,Marleen Heine,2018-11-16,,,,,0.7,3915
+ 📏,1F4CF,objects,office,straight ruler,"ruler, straight edge","ruler, straight, line, measure, detail",Sina Schulz,2018-04-18,,,,,0.6,3916
+ 📐,1F4D0,objects,office,triangular ruler,"ruler, set, triangle","triangle, ruler, line, measure, detail",Sina Schulz,2018-04-18,,,,,0.6,3917
+-✂️,2702,objects,office,scissors,"cutting, tool","scissors, cut, cutting, tool, work, paper, material",Sina Schulz,2018-04-18,,,,,0.6,3919
+-🗃️,1F5C3,objects,office,card file box,"box, card, file","card, file, system, organising, structure, tidy",Sina Schulz,2018-04-18,,,,,0.7,3921
+-🗄️,1F5C4,objects,office,file cabinet,"cabinet, file, filing","box, file system, cabinet, file organising",Sina Schulz,2018-04-18,,,,,0.7,3923
+-🗑️,1F5D1,objects,office,wastebasket,wastebasket,"paper, bin, trash",Sina Schulz,2018-04-18,,,,,0.7,3925
+-🔒️,1F512,objects,lock,locked,closed,"locker, padlock",Lisa Schulz,2018-04-18,,,,,0.6,3926
+-🔓️,1F513,objects,lock,unlocked,"lock, open, unlock","locker, padlock",Lisa Schulz,2018-04-18,,,,,0.6,3927
++✂,2702,objects,office,scissors,"cutting, tool","scissors, cut, cutting, tool, work, paper, material",Sina Schulz,2018-04-18,,,,,0.6,3919
++🗃,1F5C3,objects,office,card file box,"box, card, file","card, file, system, organising, structure, tidy",Sina Schulz,2018-04-18,,,,,0.7,3921
++🗄,1F5C4,objects,office,file cabinet,"cabinet, file, filing","box, file system, cabinet, file organising",Sina Schulz,2018-04-18,,,,,0.7,3923
++🗑,1F5D1,objects,office,wastebasket,wastebasket,"paper, bin, trash",Sina Schulz,2018-04-18,,,,,0.7,3925
++🔒,1F512,objects,lock,locked,closed,"locker, padlock",Lisa Schulz,2018-04-18,,,,,0.6,3926
++🔓,1F513,objects,lock,unlocked,"lock, open, unlock","locker, padlock",Lisa Schulz,2018-04-18,,,,,0.6,3927
+ 🔏,1F50F,objects,lock,locked with pen,"ink, lock, nib, pen, privacy",,Marleen Heine,2018-11-16,,,,,0.6,3928
+ 🔐,1F510,objects,lock,locked with key,"closed, key, lock, secure",,Lisa Schulz,2018-04-18,,,,,0.6,3929
+ 🔑,1F511,objects,lock,key,"lock, password",closing,Lisa Schulz,2018-04-18,,,,,0.6,3930
+-🗝️,1F5DD,objects,lock,old key,"clue, key, lock, old",,Lisa Schulz,2018-04-18,,,,,0.7,3932
++🗝,1F5DD,objects,lock,old key,"clue, key, lock, old",,Lisa Schulz,2018-04-18,,,,,0.7,3932
+ 🔨,1F528,objects,tool,hammer,tool,"toolbox, metal, wood",Hilda Kalyoncu,2018-04-18,,,,,0.6,3933
+ 🪓,1FA93,objects,tool,axe,"chop, hatchet, split, wood",,Sam Eckert,2019-05-06,,,,,12,3934
+-⛏️,26CF,objects,tool,pick,"mining, tool",weapon,Hilda Kalyoncu,2018-04-18,,,,,0.7,3936
+-⚒️,2692,objects,tool,hammer and pick,"hammer, pick, tool",,Marleen Heine,2018-11-16,,,,,1,3938
+-🛠️,1F6E0,objects,tool,hammer and wrench,"hammer, spanner, tool, wrench","craft mans, logo",Hilda Kalyoncu,2018-04-18,,,,,0.7,3940
+-🗡️,1F5E1,objects,tool,dagger,"knife, weapon",metal,Liz Bravo,2020-12-22,,,,,0.7,3942
+-⚔️,2694,objects,tool,crossed swords,"crossed, swords, weapon",,Marleen Heine,2018-11-16,,,,,1,3944
++⛏,26CF,objects,tool,pick,"mining, tool",weapon,Hilda Kalyoncu,2018-04-18,,,,,0.7,3936
++⚒,2692,objects,tool,hammer and pick,"hammer, pick, tool",,Marleen Heine,2018-11-16,,,,,1,3938
++🛠,1F6E0,objects,tool,hammer and wrench,"hammer, spanner, tool, wrench","craft mans, logo",Hilda Kalyoncu,2018-04-18,,,,,0.7,3940
++🗡,1F5E1,objects,tool,dagger,"knife, weapon",metal,Liz Bravo,2020-12-22,,,,,0.7,3942
++⚔,2694,objects,tool,crossed swords,"crossed, swords, weapon",,Marleen Heine,2018-11-16,,,,,1,3944
+ 🔫,1F52B,objects,tool,water pistol,"gun, handgun, pistol, revolver, tool, water, weapon","gun, weapon, pistol",Hilda Kalyoncu,2018-04-18,,,,,0.6,3945
+ 🪃,1FA83,objects,tool,boomerang,"australia, rebound, repercussion",,Liz Bravo,2020-03-26,,,,,13,3946
+ 🏹,1F3F9,objects,tool,bow and arrow,"archer, arrow, bow, sagittarius, zodiac",,Marleen Heine,2018-11-16,,,,,1,3947
+-🛡️,1F6E1,objects,tool,shield,weapon,"protection, fight, middle ages",Hilda Kalyoncu,2018-04-18,,,,,0.7,3949
++🛡,1F6E1,objects,tool,shield,weapon,"protection, fight, middle ages",Hilda Kalyoncu,2018-04-18,,,,,0.7,3949
+ 🪚,1FA9A,objects,tool,carpentry saw,"carpenter, lumber, saw, tool",,Liz Bravo,2020-03-28,,,,,13,3950
+ 🔧,1F527,objects,tool,wrench,"spanner, tool","toolbox, silver",Hilda Kalyoncu,2018-04-18,,,,,0.6,3951
+ 🪛,1FA9B,objects,tool,screwdriver,"screw, tool",,Liz Bravo,2020-03-28,,,,,13,3952
+ 🔩,1F529,objects,tool,nut and bolt,"bolt, nut, tool",,Marleen Heine,2018-11-16,,,,,0.6,3953
+-⚙️,2699,objects,tool,gear,"cog, cogwheel, tool","tool, metal, silver",Hilda Kalyoncu,2018-04-18,,,,,1,3955
+-🗜️,1F5DC,objects,tool,clamp,"compress, tool, vice",toolbox,Hilda Kalyoncu,2018-04-18,,,,,0.7,3957
+-⚖️,2696,objects,tool,balance scale,"balance, justice, libra, scale, zodiac",silver,Hilda Kalyoncu,2018-04-18,,,,,1,3959
++⚙,2699,objects,tool,gear,"cog, cogwheel, tool","tool, metal, silver",Hilda Kalyoncu,2018-04-18,,,,,1,3955
++🗜,1F5DC,objects,tool,clamp,"compress, tool, vice",toolbox,Hilda Kalyoncu,2018-04-18,,,,,0.7,3957
++⚖,2696,objects,tool,balance scale,"balance, justice, libra, scale, zodiac",silver,Hilda Kalyoncu,2018-04-18,,,,,1,3959
+ 🦯,1F9AF,objects,tool,white cane,"accessibility, blind",,Sam Eckert,2019-05-06,,,,,12,3960
+ 🔗,1F517,objects,tool,link,link,"silver, link",Hilda Kalyoncu,2018-04-18,,,,,0.6,3961
+-⛓️,26D3,objects,tool,chains,chain,"metal, silver",Hilda Kalyoncu,2018-04-18,,,,,0.7,3963
++⛓,26D3,objects,tool,chains,chain,"metal, silver",Hilda Kalyoncu,2018-04-18,,,,,0.7,3963
+ 🪝,1FA9D,objects,tool,hook,"catch, crook, curve, ensnare, selling point","fishing, catch",Liz Bravo,2020-04-11,,,,,13,3964
+ 🧰,1F9F0,objects,tool,toolbox,"chest, mechanic, tool",,Tonia Reinhardt,2019-05-07,,,,,11,3965
+ 🧲,1F9F2,objects,tool,magnet,"attraction, horseshoe, magnetic",,Tonia Reinhardt,2019-05-07,,,,,11,3966
+ 🪜,1FA9C,objects,tool,ladder,"climb, rung, step",,Liz Bravo,2020-09-26,,,,,13,3967
+-⚗️,2697,objects,science,alembic,"chemistry, tool",,Marleen Heine,2018-11-16,,,,,1,3969
++⚗,2697,objects,science,alembic,"chemistry, tool",,Marleen Heine,2018-11-16,,,,,1,3969
+ 🧪,1F9EA,objects,science,test tube,"chemist, chemistry, experiment, lab, science",,Tonia Reinhardt,2019-05-07,,,,,11,3970
+ 🧫,1F9EB,objects,science,petri dish,"bacteria, biologist, biology, culture, lab",,Tonia Reinhardt,2019-05-07,,,,,11,3971
+ 🧬,1F9EC,objects,science,dna,"biologist, evolution, gene, genetics, life",,Tonia Reinhardt,2019-05-07,,,,,11,3972
+@@ -3005,8 +3005,8 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🛗,1F6D7,objects,household,elevator,"accessibility, hoist, lift",,Liz Bravo,2020-09-26,,,,,13,3982
+ 🪞,1FA9E,objects,household,mirror,"reflection, reflector, speculum",,Liz Bravo,2020-03-26,,,,,13,3983
+ 🪟,1FA9F,objects,household,window,"frame, fresh air, opening, transparent, view",,Liz Bravo,2020-07-21,,,,,13,3984
+-🛏️,1F6CF,objects,household,bed,"hotel, sleep",furniture,Lisa Schulz,2018-04-18,,,,,0.7,3986
+-🛋️,1F6CB,objects,household,couch and lamp,"couch, hotel, lamp",furniture,Lisa Schulz,2018-04-18,,,,,0.7,3988
++🛏,1F6CF,objects,household,bed,"hotel, sleep",furniture,Lisa Schulz,2018-04-18,,,,,0.7,3986
++🛋,1F6CB,objects,household,couch and lamp,"couch, hotel, lamp",furniture,Lisa Schulz,2018-04-18,,,,,0.7,3988
+ 🪑,1FA91,objects,household,chair,"seat, sit",,Sam Eckert,2019-05-06,,,,,12,3989
+ 🚽,1F6BD,objects,household,toilet,toilet,,Lisa Schulz,2018-04-18,,,,,0.6,3990
+ 🪠,1FAA0,objects,household,plunger,"force cup, plumber, suction, toilet",,Liz Bravo,2020-03-11,,,,,13,3991
+@@ -3026,51 +3026,51 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🧯,1F9EF,objects,household,fire extinguisher,"extinguish, fire, quench",,Tonia Reinhardt,2019-05-07,,,,,11,4005
+ 🛒,1F6D2,objects,household,shopping cart,"cart, shopping, trolley",,Marius Schnabel,2018-04-18,,,,,3,4006
+ 🚬,1F6AC,objects,other-object,cigarette,smoking,"tobacco, smoke",Marius Schnabel,2018-04-18,,,,,0.6,4007
+-⚰️,26B0,objects,other-object,coffin,death,"funeral, dead",Marius Schnabel,2018-04-18,,,,,1,4009
++⚰,26B0,objects,other-object,coffin,death,"funeral, dead",Marius Schnabel,2018-04-18,,,,,1,4009
+ 🪦,1FAA6,objects,other-object,headstone,"cemetery, grave, graveyard, tombstone",,Liz Bravo,2020-03-22,,,,,13,4010
+-⚱️,26B1,objects,other-object,funeral urn,"ashes, death, funeral, urn",,Marleen Heine,2018-11-16,,,,,1,4012
++⚱,26B1,objects,other-object,funeral urn,"ashes, death, funeral, urn",,Marleen Heine,2018-11-16,,,,,1,4012
+ 🗿,1F5FF,objects,other-object,moai,"face, moyai, statue","stone, easter island",Liz Bravo,2020-12-22,,,,,0.6,4013
+ 🪧,1FAA7,objects,other-object,placard,"demonstration, picket, protest, sign",,Liz Bravo,2020-03-28,,,,,13,4014
+ 🏧,1F3E7,symbols,transport-sign,ATM sign,"atm, atm sign, automated, bank, teller",,Liz Bravo,2021-05-04,,,,,0.6,4015
+ 🚮,1F6AE,symbols,transport-sign,litter in bin sign,"litter, litter bin","trash, litter, bin, garbage, can, throw, away",Ronja Bäurlen,2018-04-18,,,,,1,4016
+ 🚰,1F6B0,symbols,transport-sign,potable water,"drinking, potable, water","water, faucet, tap, glass",Guemil Project,2019-01-14,,,,,1,4017
+-♿️,267F,symbols,transport-sign,wheelchair symbol,access,"disabled person, wheel chair, toilet, restroom",Guemil Project,2019-01-14,,,,,0.6,4018
+-🚹️,1F6B9,symbols,transport-sign,men’s room,"lavatory, man, restroom, wc","man, restroom, guy, dude, male, toilet",Ronja Bäurlen,2018-04-18,,,,,0.6,4019
+-🚺️,1F6BA,symbols,transport-sign,women’s room,"lavatory, restroom, wc, woman","woman, female, restroom, chick, women, toilet",Ronja Bäurlen,2018-04-18,,,,,0.6,4020
++♿,267F,symbols,transport-sign,wheelchair symbol,access,"disabled person, wheel chair, toilet, restroom",Guemil Project,2019-01-14,,,,,0.6,4018
++🚹,1F6B9,symbols,transport-sign,men’s room,"lavatory, man, restroom, wc","man, restroom, guy, dude, male, toilet",Ronja Bäurlen,2018-04-18,,,,,0.6,4019
++🚺,1F6BA,symbols,transport-sign,women’s room,"lavatory, restroom, wc, woman","woman, female, restroom, chick, women, toilet",Ronja Bäurlen,2018-04-18,,,,,0.6,4020
+ 🚻,1F6BB,symbols,transport-sign,restroom,"lavatory, wc","unisex, restroom, male, toilet, woman, female",Ronja Bäurlen,2018-04-18,,,,,0.6,4021
+-🚼️,1F6BC,symbols,transport-sign,baby symbol,"baby, changing","baby, changing, station, restroom, toilet",Ronja Bäurlen,2018-04-18,,,,,0.6,4022
++🚼,1F6BC,symbols,transport-sign,baby symbol,"baby, changing","baby, changing, station, restroom, toilet",Ronja Bäurlen,2018-04-18,,,,,0.6,4022
+ 🚾,1F6BE,symbols,transport-sign,water closet,"closet, lavatory, restroom, water, wc","restroom, WC, toilet, water, closet",Ronja Bäurlen,2018-04-18,,,,,0.6,4023
+ 🛂,1F6C2,symbols,transport-sign,passport control,"control, passport",,Tonia Reinhardt,2019-05-07,,,,,1,4024
+ 🛃,1F6C3,symbols,transport-sign,customs,customs,,Tonia Reinhardt,2019-05-07,,,,,1,4025
+ 🛄,1F6C4,symbols,transport-sign,baggage claim,"baggage, claim",,Vincent Seitz,2018-11-16,,,,,1,4026
+ 🛅,1F6C5,symbols,transport-sign,left luggage,"baggage, locker, luggage",,Vincent Seitz,2018-11-16,,,,,1,4027
+-⚠️,26A0,symbols,warning,warning,warning,,Miriam Vollmeier,2018-04-18,,,,,0.6,4029
++⚠,26A0,symbols,warning,warning,warning,,Miriam Vollmeier,2018-04-18,,,,,0.6,4029
+ 🚸,1F6B8,symbols,warning,children crossing,"child, crossing, pedestrian, traffic",,Tonia Reinhardt,2019-05-07,,,,,1,4030
+-⛔️,26D4,symbols,warning,no entry,"entry, forbidden, no, not, prohibited, traffic",,Miriam Vollmeier,2018-04-18,,,,,0.6,4031
++⛔,26D4,symbols,warning,no entry,"entry, forbidden, no, not, prohibited, traffic",,Miriam Vollmeier,2018-04-18,,,,,0.6,4031
+ 🚫,1F6AB,symbols,warning,prohibited,"entry, forbidden, no, not",,Miriam Vollmeier,2018-04-18,,,,,0.6,4032
+ 🚳,1F6B3,symbols,warning,no bicycles,"bicycle, bike, forbidden, no, prohibited",,Miriam Vollmeier,2018-04-18,,,,,1,4033
+-🚭️,1F6AD,symbols,warning,no smoking,"forbidden, no, not, prohibited, smoking",,Miriam Vollmeier,2018-04-18,,,,,0.6,4034
++🚭,1F6AD,symbols,warning,no smoking,"forbidden, no, not, prohibited, smoking",,Miriam Vollmeier,2018-04-18,,,,,0.6,4034
+ 🚯,1F6AF,symbols,warning,no littering,"forbidden, litter, no, not, prohibited",,Vincent Seitz,2018-11-16,,,,,1,4035
+ 🚱,1F6B1,symbols,warning,non-potable water,"non-drinking, non-potable, water",,Vincent Seitz,2018-11-16,,,,,1,4036
+ 🚷,1F6B7,symbols,warning,no pedestrians,"forbidden, no, not, pedestrian, prohibited",,Vincent Seitz,2018-11-16,,,,,1,4037
+ 📵,1F4F5,symbols,warning,no mobile phones,"cell, forbidden, mobile, no, phone",,Miriam Vollmeier,2018-04-18,,,,,1,4038
+ 🔞,1F51E,symbols,warning,no one under eighteen,"18, age restriction, eighteen, prohibited, underage",,Miriam Vollmeier,2018-04-18,,,,,0.6,4039
+-☢️,2622,symbols,warning,radioactive,sign,,Vincent Seitz,2018-11-16,,,,,1,4041
+-☣️,2623,symbols,warning,biohazard,sign,,Selina Lange,2019-05-06,,,,,1,4043
+-⬆️,2B06,symbols,arrow,up arrow,"arrow, cardinal, direction, north","up, above",Guemil Project,2019-01-14,,,,,0.6,4045
+-↗️,2197,symbols,arrow,up-right arrow,"arrow, direction, intercardinal, northeast","diagonal, right up",Guemil Project,2019-01-14,,,,,0.6,4047
+-➡️,27A1,symbols,arrow,right arrow,"arrow, cardinal, direction, east","right, soon, future",Guemil Project,2019-01-14,,,,,0.6,4049
+-↘️,2198,symbols,arrow,down-right arrow,"arrow, direction, intercardinal, southeast","diagonal, right down",Guemil Project,2019-01-14,,,,,0.6,4051
+-⬇️,2B07,symbols,arrow,down arrow,"arrow, cardinal, direction, down, south","down, underneath",Guemil Project,2019-01-14,,,,,0.6,4053
+-↙️,2199,symbols,arrow,down-left arrow,"arrow, direction, intercardinal, southwest","diagonal, left down",Guemil Project,2019-01-14,,,,,0.6,4055
+-⬅️,2B05,symbols,arrow,left arrow,"arrow, cardinal, direction, west","left, past",Guemil Project,2019-01-14,,,,,0.6,4057
+-↖️,2196,symbols,arrow,up-left arrow,"arrow, direction, intercardinal, northwest","diagonal, left up",Guemil Project,2019-01-14,,,,,0.6,4059
+-↕️,2195,symbols,arrow,up-down arrow,arrow,"directions, opposite, up and down",Jose Avila,2018-04-18,,,,,0.6,4061
+-↔️,2194,symbols,arrow,left-right arrow,arrow,"directions, opposite, left and right",Jose Avila,2018-04-18,,,,,0.6,4063
+-↩️,21A9,symbols,arrow,right arrow curving left,arrow,"directions, turn around",Jose Avila,2018-04-18,,,,,0.6,4065
+-↪️,21AA,symbols,arrow,left arrow curving right,arrow,"directions, turn around",Jose Avila,2018-04-18,,,,,0.6,4067
+-⤴️,2934,symbols,arrow,right arrow curving up,arrow,"direction, curve up",Jose Avila,2018-04-18,,,,,0.6,4069
+-⤵️,2935,symbols,arrow,right arrow curving down,"arrow, down","direction, curve down",Jose Avila,2018-04-18,,,,,0.6,4071
++☢,2622,symbols,warning,radioactive,sign,,Vincent Seitz,2018-11-16,,,,,1,4041
++☣,2623,symbols,warning,biohazard,sign,,Selina Lange,2019-05-06,,,,,1,4043
++⬆,2B06,symbols,arrow,up arrow,"arrow, cardinal, direction, north","up, above",Guemil Project,2019-01-14,,,,,0.6,4045
++↗,2197,symbols,arrow,up-right arrow,"arrow, direction, intercardinal, northeast","diagonal, right up",Guemil Project,2019-01-14,,,,,0.6,4047
++➡,27A1,symbols,arrow,right arrow,"arrow, cardinal, direction, east","right, soon, future",Guemil Project,2019-01-14,,,,,0.6,4049
++↘,2198,symbols,arrow,down-right arrow,"arrow, direction, intercardinal, southeast","diagonal, right down",Guemil Project,2019-01-14,,,,,0.6,4051
++⬇,2B07,symbols,arrow,down arrow,"arrow, cardinal, direction, down, south","down, underneath",Guemil Project,2019-01-14,,,,,0.6,4053
++↙,2199,symbols,arrow,down-left arrow,"arrow, direction, intercardinal, southwest","diagonal, left down",Guemil Project,2019-01-14,,,,,0.6,4055
++⬅,2B05,symbols,arrow,left arrow,"arrow, cardinal, direction, west","left, past",Guemil Project,2019-01-14,,,,,0.6,4057
++↖,2196,symbols,arrow,up-left arrow,"arrow, direction, intercardinal, northwest","diagonal, left up",Guemil Project,2019-01-14,,,,,0.6,4059
++↕,2195,symbols,arrow,up-down arrow,arrow,"directions, opposite, up and down",Jose Avila,2018-04-18,,,,,0.6,4061
++↔,2194,symbols,arrow,left-right arrow,arrow,"directions, opposite, left and right",Jose Avila,2018-04-18,,,,,0.6,4063
++↩,21A9,symbols,arrow,right arrow curving left,arrow,"directions, turn around",Jose Avila,2018-04-18,,,,,0.6,4065
++↪,21AA,symbols,arrow,left arrow curving right,arrow,"directions, turn around",Jose Avila,2018-04-18,,,,,0.6,4067
++⤴,2934,symbols,arrow,right arrow curving up,arrow,"direction, curve up",Jose Avila,2018-04-18,,,,,0.6,4069
++⤵,2935,symbols,arrow,right arrow curving down,"arrow, down","direction, curve down",Jose Avila,2018-04-18,,,,,0.6,4071
+ 🔃,1F503,symbols,arrow,clockwise vertical arrows,"arrow, clockwise, reload",,Vincent Seitz,2018-11-16,,,,,0.6,4072
+ 🔄,1F504,symbols,arrow,counterclockwise arrows button,"anticlockwise, arrow, counterclockwise, withershins",cycle,Jose Avila,2018-04-18,,,,,1,4073
+ 🔙,1F519,symbols,arrow,BACK arrow,"arrow, back, back arrow",,Vincent Seitz,2018-11-16,,,,,0.6,4074
+@@ -3079,92 +3079,92 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🔜,1F51C,symbols,arrow,SOON arrow,"arrow, soon, soon arrow",,Vincent Seitz,2018-11-16,,,,,0.6,4077
+ 🔝,1F51D,symbols,arrow,TOP arrow,"arrow, top, top arrow, up",,Vincent Seitz,2018-11-16,,,,,0.6,4078
+ 🛐,1F6D0,symbols,religion,place of worship,"religion, worship",pray,Jose Avila,2018-04-18,,,,,1,4079
+-⚛️,269B,symbols,religion,atom symbol,"atheist, atom",,Jose Avila,2018-04-18,,,,,1,4081
+-🕉️,1F549,symbols,religion,om,"hindu, religion",,Sina Chlod,2018-11-16,,,,,0.7,4083
+-✡️,2721,symbols,religion,star of David,"david, jew, jewish, religion, star, star of david",,Sina Chlod,2018-11-16,,,,,0.7,4085
+-☸️,2638,symbols,religion,wheel of dharma,"buddhist, dharma, religion, wheel",,Sina Chlod,2018-11-16,,,,,0.7,4087
+-☯️,262F,symbols,religion,yin yang,"religion, tao, taoist, yang, yin",balance,Jose Avila,2018-04-18,,,,,0.7,4089
+-✝️,271D,symbols,religion,latin cross,"christian, cross, religion",,Jose Avila,2018-04-18,,,,,0.7,4091
+-☦️,2626,symbols,religion,orthodox cross,"christian, cross, religion",,Sina Chlod,2018-11-16,,,,,1,4093
+-☪️,262A,symbols,religion,star and crescent,"islam, muslim, religion",,Jose Avila,2018-04-18,,,,,0.7,4095
+-☮️,262E,symbols,religion,peace symbol,peace,,Jose Avila,2018-04-18,,,,,1,4097
++⚛,269B,symbols,religion,atom symbol,"atheist, atom",,Jose Avila,2018-04-18,,,,,1,4081
++🕉,1F549,symbols,religion,om,"hindu, religion",,Sina Chlod,2018-11-16,,,,,0.7,4083
++✡,2721,symbols,religion,star of David,"david, jew, jewish, religion, star, star of david",,Sina Chlod,2018-11-16,,,,,0.7,4085
++☸,2638,symbols,religion,wheel of dharma,"buddhist, dharma, religion, wheel",,Sina Chlod,2018-11-16,,,,,0.7,4087
++☯,262F,symbols,religion,yin yang,"religion, tao, taoist, yang, yin",balance,Jose Avila,2018-04-18,,,,,0.7,4089
++✝,271D,symbols,religion,latin cross,"christian, cross, religion",,Jose Avila,2018-04-18,,,,,0.7,4091
++☦,2626,symbols,religion,orthodox cross,"christian, cross, religion",,Sina Chlod,2018-11-16,,,,,1,4093
++☪,262A,symbols,religion,star and crescent,"islam, muslim, religion",,Jose Avila,2018-04-18,,,,,0.7,4095
++☮,262E,symbols,religion,peace symbol,peace,,Jose Avila,2018-04-18,,,,,1,4097
+ 🕎,1F54E,symbols,religion,menorah,"candelabrum, candlestick, religion",,Sina Chlod,2018-11-16,,,,,1,4098
+ 🔯,1F52F,symbols,religion,dotted six-pointed star,"fortune, star",,Sina Chlod,2018-11-16,,,,,0.6,4099
+-♈️,2648,symbols,zodiac,Aries,"aries, ram, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4100
+-♉️,2649,symbols,zodiac,Taurus,"bull, ox, taurus, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4101
+-♊️,264A,symbols,zodiac,Gemini,"gemini, twins, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4102
+-♋️,264B,symbols,zodiac,Cancer,"cancer, crab, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4103
+-♌️,264C,symbols,zodiac,Leo,"leo, lion, zodiac",,Selina Lange,2019-05-06,,,,,0.6,4104
+-♍️,264D,symbols,zodiac,Virgo,"virgo, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4105
+-♎️,264E,symbols,zodiac,Libra,"balance, justice, libra, scales, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4106
+-♏️,264F,symbols,zodiac,Scorpio,"scorpio, scorpion, scorpius, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4107
+-♐️,2650,symbols,zodiac,Sagittarius,"archer, sagittarius, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4108
+-♑️,2651,symbols,zodiac,Capricorn,"capricorn, goat, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4109
+-♒️,2652,symbols,zodiac,Aquarius,"aquarius, bearer, water, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4110
+-♓️,2653,symbols,zodiac,Pisces,"fish, pisces, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4111
++♈,2648,symbols,zodiac,Aries,"aries, ram, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4100
++♉,2649,symbols,zodiac,Taurus,"bull, ox, taurus, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4101
++♊,264A,symbols,zodiac,Gemini,"gemini, twins, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4102
++♋,264B,symbols,zodiac,Cancer,"cancer, crab, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4103
++♌,264C,symbols,zodiac,Leo,"leo, lion, zodiac",,Selina Lange,2019-05-06,,,,,0.6,4104
++♍,264D,symbols,zodiac,Virgo,"virgo, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4105
++♎,264E,symbols,zodiac,Libra,"balance, justice, libra, scales, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4106
++♏,264F,symbols,zodiac,Scorpio,"scorpio, scorpion, scorpius, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4107
++♐,2650,symbols,zodiac,Sagittarius,"archer, sagittarius, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4108
++♑,2651,symbols,zodiac,Capricorn,"capricorn, goat, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4109
++♒,2652,symbols,zodiac,Aquarius,"aquarius, bearer, water, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4110
++♓,2653,symbols,zodiac,Pisces,"fish, pisces, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4111
+ ⛎,26CE,symbols,zodiac,Ophiuchus,"bearer, ophiuchus, serpent, snake, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4112
+ 🔀,1F500,symbols,av-symbol,shuffle tracks button,"arrow, crossed",random,Jose Avila,2018-04-18,,,,,1,4113
+ 🔁,1F501,symbols,av-symbol,repeat button,"arrow, clockwise, repeat",cycle,Jose Avila,2018-04-18,,,,,1,4114
+ 🔂,1F502,symbols,av-symbol,repeat single button,"arrow, clockwise, once",,Jose Avila,2018-04-18,,,,,1,4115
+-▶️,25B6,symbols,av-symbol,play button,"arrow, play, right, triangle",,Jose Avila,2018-04-18,,,,,0.6,4117
+-⏩️,23E9,symbols,av-symbol,fast-forward button,"arrow, double, fast, forward",,Jose Avila,2018-04-18,,,,,0.6,4118
+-⏭️,23ED,symbols,av-symbol,next track button,"arrow, next scene, next track, triangle",,Jose Avila,2018-04-18,,,,,0.7,4120
+-⏯️,23EF,symbols,av-symbol,play or pause button,"arrow, pause, play, right, triangle",,Jose Avila,2018-04-18,,,,,1,4122
+-◀️,25C0,symbols,av-symbol,reverse button,"arrow, left, reverse, triangle",,Jose Avila,2018-04-18,,,,,0.6,4124
+-⏪️,23EA,symbols,av-symbol,fast reverse button,"arrow, double, rewind",,Jose Avila,2018-04-18,,,,,0.6,4125
+-⏮️,23EE,symbols,av-symbol,last track button,"arrow, previous scene, previous track, triangle",,Jose Avila,2018-04-18,,,,,0.7,4127
++▶,25B6,symbols,av-symbol,play button,"arrow, play, right, triangle",,Jose Avila,2018-04-18,,,,,0.6,4117
++⏩,23E9,symbols,av-symbol,fast-forward button,"arrow, double, fast, forward",,Jose Avila,2018-04-18,,,,,0.6,4118
++⏭,23ED,symbols,av-symbol,next track button,"arrow, next scene, next track, triangle",,Jose Avila,2018-04-18,,,,,0.7,4120
++⏯,23EF,symbols,av-symbol,play or pause button,"arrow, pause, play, right, triangle",,Jose Avila,2018-04-18,,,,,1,4122
++◀,25C0,symbols,av-symbol,reverse button,"arrow, left, reverse, triangle",,Jose Avila,2018-04-18,,,,,0.6,4124
++⏪,23EA,symbols,av-symbol,fast reverse button,"arrow, double, rewind",,Jose Avila,2018-04-18,,,,,0.6,4125
++⏮,23EE,symbols,av-symbol,last track button,"arrow, previous scene, previous track, triangle",,Jose Avila,2018-04-18,,,,,0.7,4127
+ 🔼,1F53C,symbols,av-symbol,upwards button,"arrow, button, red",improve,Jose Avila,2018-04-18,,,,,0.6,4128
+ ⏫,23EB,symbols,av-symbol,fast up button,"arrow, double",,Jose Avila,2018-04-18,,,,,0.6,4129
+ 🔽,1F53D,symbols,av-symbol,downwards button,"arrow, button, down, red","decline, decrease",Jose Avila,2018-04-18,,,,,0.6,4130
+ ⏬,23EC,symbols,av-symbol,fast down button,"arrow, double, down",,Jose Avila,2018-04-18,,,,,0.6,4131
+-⏸️,23F8,symbols,av-symbol,pause button,"bar, double, pause, vertical",,Jose Avila,2018-04-18,,,,,0.7,4133
+-⏹️,23F9,symbols,av-symbol,stop button,"square, stop",,Jose Avila,2018-04-18,,,,,0.7,4135
+-⏺️,23FA,symbols,av-symbol,record button,"circle, record",,Jose Avila,2018-04-18,,,,,0.7,4137
+-⏏️,23CF,symbols,av-symbol,eject button,eject,,Carlin MacKenzie,2020-06-05,,,,,1,4139
++⏸,23F8,symbols,av-symbol,pause button,"bar, double, pause, vertical",,Jose Avila,2018-04-18,,,,,0.7,4133
++⏹,23F9,symbols,av-symbol,stop button,"square, stop",,Jose Avila,2018-04-18,,,,,0.7,4135
++⏺,23FA,symbols,av-symbol,record button,"circle, record",,Jose Avila,2018-04-18,,,,,0.7,4137
++⏏,23CF,symbols,av-symbol,eject button,eject,,Carlin MacKenzie,2020-06-05,,,,,1,4139
+ 🎦,1F3A6,symbols,av-symbol,cinema,"camera, film, movie",,Liz Bravo,2021-05-04,,,,,0.6,4140
+ 🔅,1F505,symbols,av-symbol,dim button,"brightness, dim, low",,Jose Avila,2018-04-18,,,,,1,4141
+ 🔆,1F506,symbols,av-symbol,bright button,"bright, brightness",,Jose Avila,2018-04-18,,,,,1,4142
+ 📶,1F4F6,symbols,av-symbol,antenna bars,"antenna, bar, cell, mobile, phone",,Jose Avila,2018-04-18,,,,,0.6,4143
+ 📳,1F4F3,symbols,av-symbol,vibration mode,"cell, mobile, mode, phone, telephone, vibration",silent mode,Jose Avila,2018-04-18,,,,,0.6,4144
+ 📴,1F4F4,symbols,av-symbol,mobile phone off,"cell, mobile, off, phone, telephone",caos,Jose Avila,2018-04-18,,,,,0.6,4145
+-♀️,2640,symbols,gender,female sign,woman,"woman, sign, gender",Hilda Kalyoncu,2018-04-18,,,,,4,4147
+-♂️,2642,symbols,gender,male sign,man,"man, sign, gender",Hilda Kalyoncu,2018-04-18,,,,,4,4149
+-⚧️,26A7,symbols,gender,transgender symbol,transgender,"LGBT, trans, queer, gender",Carlin MacKenzie,2020-03-12,,,,,13,4151
+-✖️,2716,symbols,math,multiply,"cancel, multiplication, sign, x, ×","multiplication, x, cancel, wrong",Hilda Kalyoncu,2018-04-18,,,,,0.6,4153
++♀,2640,symbols,gender,female sign,woman,"woman, sign, gender",Hilda Kalyoncu,2018-04-18,,,,,4,4147
++♂,2642,symbols,gender,male sign,man,"man, sign, gender",Hilda Kalyoncu,2018-04-18,,,,,4,4149
++⚧,26A7,symbols,gender,transgender symbol,transgender,"LGBT, trans, queer, gender",Carlin MacKenzie,2020-03-12,,,,,13,4151
++✖,2716,symbols,math,multiply,"cancel, multiplication, sign, x, ×","multiplication, x, cancel, wrong",Hilda Kalyoncu,2018-04-18,,,,,0.6,4153
+ ➕,2795,symbols,math,plus,"+, math, sign","math, plus, sign",Hilda Kalyoncu,2018-04-18,,,,,0.6,4154
+ ➖,2796,symbols,math,minus,"-, math, sign, −","math, minus, sign",Hilda Kalyoncu,2018-04-18,,,,,0.6,4155
+ ➗,2797,symbols,math,divide,"division, math, sign, ÷","math, division, sign",Hilda Kalyoncu,2018-04-18,,,,,0.6,4156
+-♾️,267E,symbols,math,infinity,"forever, unbounded, universal",,Selina Lange,2019-05-06,,,,,11,4158
+-‼️,203C,symbols,punctuation,double exclamation mark,"!, !!, bangbang, exclamation, mark",,Selina Lange,2019-05-06,,,,,0.6,4160
+-⁉️,2049,symbols,punctuation,exclamation question mark,"!, !?, ?, exclamation, interrobang, mark, punctuation, question",,Selina Lange,2019-05-06,,,,,0.6,4162
+-❓️,2753,symbols,punctuation,red question mark,"?, mark, punctuation, question","question, punctation",Selina Lange,2019-05-06,,,,,0.6,4163
++♾,267E,symbols,math,infinity,"forever, unbounded, universal",,Selina Lange,2019-05-06,,,,,11,4158
++‼,203C,symbols,punctuation,double exclamation mark,"!, !!, bangbang, exclamation, mark",,Selina Lange,2019-05-06,,,,,0.6,4160
++⁉,2049,symbols,punctuation,exclamation question mark,"!, !?, ?, exclamation, interrobang, mark, punctuation, question",,Selina Lange,2019-05-06,,,,,0.6,4162
++❓,2753,symbols,punctuation,red question mark,"?, mark, punctuation, question","question, punctation",Selina Lange,2019-05-06,,,,,0.6,4163
+ ❔,2754,symbols,punctuation,white question mark,"?, mark, outlined, punctuation, question","punctation, mark, question, white",Selina Lange,2019-05-06,,,,,0.6,4164
+ ❕,2755,symbols,punctuation,white exclamation mark,"!, exclamation, mark, outlined, punctuation","exclamation, mark, punctation, white",Hilda Kalyoncu,2018-04-18,,,,,0.6,4165
+-❗️,2757,symbols,punctuation,red exclamation mark,"!, exclamation, mark, punctuation","exclamation, mark, punctation",Hilda Kalyoncu,2018-04-18,,,,,0.6,4166
+-〰️,3030,symbols,punctuation,wavy dash,"dash, punctuation, wavy","dash, punctuation, wavy",Hilda Kalyoncu,2018-04-18,,,,,0.6,4168
++❗,2757,symbols,punctuation,red exclamation mark,"!, exclamation, mark, punctuation","exclamation, mark, punctation",Hilda Kalyoncu,2018-04-18,,,,,0.6,4166
++〰,3030,symbols,punctuation,wavy dash,"dash, punctuation, wavy","dash, punctuation, wavy",Hilda Kalyoncu,2018-04-18,,,,,0.6,4168
+ 💱,1F4B1,symbols,currency,currency exchange,"bank, currency, exchange, money",,Marleen Heine,2018-11-16,,,,,0.6,4169
+ 💲,1F4B2,symbols,currency,heavy dollar sign,"currency, dollar, money",,Marleen Heine,2018-11-16,,,,,0.6,4170
+-⚕️,2695,symbols,other-symbol,medical symbol,"aesculapius, medicine, staff","medical, staff",Hilda Kalyoncu,2018-04-18,,,,,4,4172
+-♻️,267B,symbols,other-symbol,recycling symbol,recycle,"recycle, nature",Hilda Kalyoncu,2018-04-18,,,,,0.6,4174
+-⚜️,269C,symbols,other-symbol,fleur-de-lis,fleur-de-lis,,Selina Lange,2019-05-06,,,,,1,4176
++⚕,2695,symbols,other-symbol,medical symbol,"aesculapius, medicine, staff","medical, staff",Hilda Kalyoncu,2018-04-18,,,,,4,4172
++♻,267B,symbols,other-symbol,recycling symbol,recycle,"recycle, nature",Hilda Kalyoncu,2018-04-18,,,,,0.6,4174
++⚜,269C,symbols,other-symbol,fleur-de-lis,fleur-de-lis,,Selina Lange,2019-05-06,,,,,1,4176
+ 🔱,1F531,symbols,other-symbol,trident emblem,"anchor, emblem, ship, tool, trident","trident, emblem",Hilda Kalyoncu,2018-04-18,,,,,0.6,4177
+ 📛,1F4DB,symbols,other-symbol,name badge,"badge, name",,Selina Lange,2019-05-06,,,,,0.6,4178
+ 🔰,1F530,symbols,other-symbol,Japanese symbol for beginner,"beginner, chevron, japanese, japanese symbol for beginner, leaf",,Selina Lange,2019-05-06,,,,,0.6,4179
+-⭕️,2B55,symbols,other-symbol,hollow red circle,"circle, large, o, red","circle, red",Hilda Kalyoncu,2018-04-18,,,,,0.6,4180
++⭕,2B55,symbols,other-symbol,hollow red circle,"circle, large, o, red","circle, red",Hilda Kalyoncu,2018-04-18,,,,,0.6,4180
+ ✅,2705,symbols,other-symbol,check mark button,"button, check, mark, ✓","check, mark, white, right",Hilda Kalyoncu,2018-04-18,,,,,0.6,4181
+-☑️,2611,symbols,other-symbol,check box with check,"box, check, ✓","check, right, box",Hilda Kalyoncu,2018-04-18,,,,,0.6,4183
+-✔️,2714,symbols,other-symbol,check mark,"check, mark, ✓","check, mark, right, todo",Carlin MacKenzie,2020-05-12,,,,,0.6,4185
++☑,2611,symbols,other-symbol,check box with check,"box, check, ✓","check, right, box",Hilda Kalyoncu,2018-04-18,,,,,0.6,4183
++✔,2714,symbols,other-symbol,check mark,"check, mark, ✓","check, mark, right, todo",Carlin MacKenzie,2020-05-12,,,,,0.6,4185
+ ❌,274C,symbols,other-symbol,cross mark,"cancel, cross, mark, multiplication, multiply, x, ×","cancel, wrong, multiply, x,",Hilda Kalyoncu,2018-04-18,,,,,0.6,4186
+ ❎,274E,symbols,other-symbol,cross mark button,"mark, square, x, ×","mark, square, button",Hilda Kalyoncu,2018-04-18,,,,,0.6,4187
+ ➰,27B0,symbols,other-symbol,curly loop,"curl, loop",,Selina Lange,2019-05-06,,,,,0.6,4188
+ ➿,27BF,symbols,other-symbol,double curly loop,"curl, double, loop",,Selina Lange,2019-05-06,,,,,1,4189
+-〽️,303D,symbols,other-symbol,part alternation mark,"mark, part",,Selina Lange,2019-05-06,,,,,0.6,4191
+-✳️,2733,symbols,other-symbol,eight-spoked asterisk,"*, asterisk",,Selina Lange,2019-05-06,,,,,0.6,4193
+-✴️,2734,symbols,other-symbol,eight-pointed star,"*, star",,Selina Lange,2019-05-06,,,,,0.6,4195
+-❇️,2747,symbols,other-symbol,sparkle,*,,Selina Lange,2019-05-06,,,,,0.6,4197
+-©️,00A9,symbols,other-symbol,copyright,c,"copyright, c, sign",Carlin MacKenzie,2020-06-06,,,,,0.6,4199
+-®️,00AE,symbols,other-symbol,registered,r,"registered, r, sign",Carlin MacKenzie,2020-06-06,,,,,0.6,4201
+-™️,2122,symbols,other-symbol,trade mark,"mark, tm, trademark",,Carlin MacKenzie,2020-06-06,,,,,0.6,4203
++〽,303D,symbols,other-symbol,part alternation mark,"mark, part",,Selina Lange,2019-05-06,,,,,0.6,4191
++✳,2733,symbols,other-symbol,eight-spoked asterisk,"*, asterisk",,Selina Lange,2019-05-06,,,,,0.6,4193
++✴,2734,symbols,other-symbol,eight-pointed star,"*, star",,Selina Lange,2019-05-06,,,,,0.6,4195
++❇,2747,symbols,other-symbol,sparkle,*,,Selina Lange,2019-05-06,,,,,0.6,4197
++©,00A9,symbols,other-symbol,copyright,c,"copyright, c, sign",Carlin MacKenzie,2020-06-06,,,,,0.6,4199
++®,00AE,symbols,other-symbol,registered,r,"registered, r, sign",Carlin MacKenzie,2020-06-06,,,,,0.6,4201
++™,2122,symbols,other-symbol,trade mark,"mark, tm, trademark",,Carlin MacKenzie,2020-06-06,,,,,0.6,4203
+ #️⃣,0023-FE0F-20E3,symbols,keycap,keycap: #,keycap,,Selina Lange,2019-05-06,,,,,0.6,4204
+ *️⃣,002A-FE0F-20E3,symbols,keycap,keycap: *,keycap,,Selina Lange,2019-05-06,,,,,2,4206
+ 0️⃣,0030-FE0F-20E3,symbols,keycap,keycap: 0,keycap,,Selina Lange,2019-05-06,,,,,0.6,4208
+@@ -3183,38 +3183,38 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🔢,1F522,symbols,alphanum,input numbers,"1234, input, numbers",numbers,Jose Avila,2018-04-18,,,,,0.6,4231
+ 🔣,1F523,symbols,alphanum,input symbols,"input, 〒♪&%","ampersand, music, note, percentage",Jose Avila,2018-04-18,,,,,0.6,4232
+ 🔤,1F524,symbols,alphanum,input latin letters,"abc, alphabet, input, latin, letters","letters, alphabet",Jose Avila,2018-04-18,,,,,0.6,4233
+-🅰️,1F170,symbols,alphanum,A button (blood type),"a, a button (blood type), blood type",,Laura Dworatschek,2019-05-06,,,,,0.6,4235
++🅰,1F170,symbols,alphanum,A button (blood type),"a, a button (blood type), blood type",,Laura Dworatschek,2019-05-06,,,,,0.6,4235
+ 🆎,1F18E,symbols,alphanum,AB button (blood type),"ab, ab button (blood type), blood type",,Laura Dworatschek,2019-05-06,,,,,0.6,4236
+-🅱️,1F171,symbols,alphanum,B button (blood type),"b, b button (blood type), blood type",,Laura Dworatschek,2019-05-06,,,,,0.6,4238
++🅱,1F171,symbols,alphanum,B button (blood type),"b, b button (blood type), blood type",,Laura Dworatschek,2019-05-06,,,,,0.6,4238
+ 🆑,1F191,symbols,alphanum,CL button,"cl, cl button",,Laura Dworatschek,2019-05-06,,,,,0.6,4239
+ 🆒,1F192,symbols,alphanum,COOL button,"cool, cool button","popular, nice",Jose Avila,2018-04-18,,,,,0.6,4240
+ 🆓,1F193,symbols,alphanum,FREE button,"free, free button",,Laura Dworatschek,2019-05-06,,,,,0.6,4241
+-ℹ️,2139,symbols,alphanum,information,i,"advice, info",Jose Avila,2018-04-18,,,,,0.6,4243
++ℹ,2139,symbols,alphanum,information,i,"advice, info",Jose Avila,2018-04-18,,,,,0.6,4243
+ 🆔,1F194,symbols,alphanum,ID button,"id, id button, identity",id card,Jose Avila,2018-04-18,,,,,0.6,4244
+-Ⓜ️,24C2,symbols,alphanum,circled M,"circle, circled m, m",,Laura Dworatschek,2019-05-06,,,,,0.6,4246
++Ⓜ,24C2,symbols,alphanum,circled M,"circle, circled m, m",,Laura Dworatschek,2019-05-06,,,,,0.6,4246
+ 🆕,1F195,symbols,alphanum,NEW button,"new, new button","modern, recent",Jose Avila,2018-04-18,,,,,0.6,4247
+ 🆖,1F196,symbols,alphanum,NG button,"ng, ng button",,Laura Dworatschek,2019-05-06,,,,,0.6,4248
+-🅾️,1F17E,symbols,alphanum,O button (blood type),"blood type, o, o button (blood type)",,Laura Dworatschek,2019-05-06,,,,,0.6,4250
++🅾,1F17E,symbols,alphanum,O button (blood type),"blood type, o, o button (blood type)",,Laura Dworatschek,2019-05-06,,,,,0.6,4250
+ 🆗,1F197,symbols,alphanum,OK button,"ok, ok button",okay,Jose Avila,2018-04-18,,,,,0.6,4251
+-🅿️,1F17F,symbols,alphanum,P button,"p button, parking","place, drive",Jose Avila,2018-04-18,,,,,0.6,4253
++🅿,1F17F,symbols,alphanum,P button,"p button, parking","place, drive",Jose Avila,2018-04-18,,,,,0.6,4253
+ 🆘,1F198,symbols,alphanum,SOS button,"help, sos, sos button","emergency, warning",Jose Avila,2018-04-18,,,,,0.6,4254
+ 🆙,1F199,symbols,alphanum,UP! button,"mark, up, up! button",,Laura Dworatschek,2019-05-06,,,,,0.6,4255
+ 🆚,1F19A,symbols,alphanum,VS button,"versus, vs, vs button",against,Jose Avila,2018-04-18,,,,,0.6,4256
+ 🈁,1F201,symbols,alphanum,Japanese “here” button,"japanese, japanese “here” button, katakana, “here”, ココ",,Yasmin Abdullahi,2019-05-07,,,,,0.6,4257
+-🈂️,1F202,symbols,alphanum,Japanese “service charge” button,"japanese, japanese “service charge” button, katakana, “service charge”, サ",japanese,Jose Avila,2018-04-18,,,,,0.6,4259
+-🈷️,1F237,symbols,alphanum,Japanese “monthly amount” button,"ideograph, japanese, japanese “monthly amount” button, “monthly amount”, 月",,Yasmin Abdullahi,2019-05-07,,,,,0.6,4261
++🈂,1F202,symbols,alphanum,Japanese “service charge” button,"japanese, japanese “service charge” button, katakana, “service charge”, サ",japanese,Jose Avila,2018-04-18,,,,,0.6,4259
++🈷,1F237,symbols,alphanum,Japanese “monthly amount” button,"ideograph, japanese, japanese “monthly amount” button, “monthly amount”, 月",,Yasmin Abdullahi,2019-05-07,,,,,0.6,4261
+ 🈶,1F236,symbols,alphanum,Japanese “not free of charge” button,"ideograph, japanese, japanese “not free of charge” button, “not free of charge”, 有",,Yasmin Abdullahi,2019-05-07,,,,,0.6,4262
+-🈯️,1F22F,symbols,alphanum,Japanese “reserved” button,"ideograph, japanese, japanese “reserved” button, “reserved”, 指",,Yasmin Abdullahi,2019-05-07,,,,,0.6,4263
++🈯,1F22F,symbols,alphanum,Japanese “reserved” button,"ideograph, japanese, japanese “reserved” button, “reserved”, 指",,Yasmin Abdullahi,2019-05-07,,,,,0.6,4263
+ 🉐,1F250,symbols,alphanum,Japanese “bargain” button,"ideograph, japanese, japanese “bargain” button, “bargain”, 得",,Yasmin Abdullahi,2019-05-07,,,,,0.6,4264
+ 🈹,1F239,symbols,alphanum,Japanese “discount” button,"ideograph, japanese, japanese “discount” button, “discount”, 割",,Yasmin Abdullahi,2019-05-07,,,,,0.6,4265
+-🈚️,1F21A,symbols,alphanum,Japanese “free of charge” button,"ideograph, japanese, japanese “free of charge” button, “free of charge”, 無",,Yasmin Abdullahi,2019-05-07,,,,,0.6,4266
++🈚,1F21A,symbols,alphanum,Japanese “free of charge” button,"ideograph, japanese, japanese “free of charge” button, “free of charge”, 無",,Yasmin Abdullahi,2019-05-07,,,,,0.6,4266
+ 🈲,1F232,symbols,alphanum,Japanese “prohibited” button,"ideograph, japanese, japanese “prohibited” button, “prohibited”, 禁",,Evelyn Soos,2019-05-04,,,,,0.6,4267
+ 🉑,1F251,symbols,alphanum,Japanese “acceptable” button,"ideograph, japanese, japanese “acceptable” button, “acceptable”, 可",,Evelyn Soos,2019-05-04,,,,,0.6,4268
+ 🈸,1F238,symbols,alphanum,Japanese “application” button,"ideograph, japanese, japanese “application” button, “application”, 申",,Evelyn Soos,2019-05-04,,,,,0.6,4269
+ 🈴,1F234,symbols,alphanum,Japanese “passing grade” button,"ideograph, japanese, japanese “passing grade” button, “passing grade”, 合",,Evelyn Soos,2019-05-04,,,,,0.6,4270
+ 🈳,1F233,symbols,alphanum,Japanese “vacancy” button,"ideograph, japanese, japanese “vacancy” button, “vacancy”, 空",,Evelyn Soos,2019-05-04,,,,,0.6,4271
+-㊗️,3297,symbols,alphanum,Japanese “congratulations” button,"ideograph, japanese, japanese “congratulations” button, “congratulations”, 祝","japanese, compliments",Jose Avila,2018-04-18,,,,,0.6,4273
+-㊙️,3299,symbols,alphanum,Japanese “secret” button,"ideograph, japanese, japanese “secret” button, “secret”, 秘","japanese, mysterious",Jose Avila,2018-04-18,,,,,0.6,4275
++㊗,3297,symbols,alphanum,Japanese “congratulations” button,"ideograph, japanese, japanese “congratulations” button, “congratulations”, 祝","japanese, compliments",Jose Avila,2018-04-18,,,,,0.6,4273
++㊙,3299,symbols,alphanum,Japanese “secret” button,"ideograph, japanese, japanese “secret” button, “secret”, 秘","japanese, mysterious",Jose Avila,2018-04-18,,,,,0.6,4275
+ 🈺,1F23A,symbols,alphanum,Japanese “open for business” button,"ideograph, japanese, japanese “open for business” button, “open for business”, 営",,Evelyn Soos,2019-05-04,,,,,0.6,4276
+ 🈵,1F235,symbols,alphanum,Japanese “no vacancy” button,"ideograph, japanese, japanese “no vacancy” button, “no vacancy”, 満",,Evelyn Soos,2019-05-04,,,,,0.6,4277
+ 🔴,1F534,symbols,geometric,red circle,"circle, geometric, red",,Ricarda Krejci,2019-05-07,,,,,0.6,4278
+@@ -3224,8 +3224,8 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🔵,1F535,symbols,geometric,blue circle,"blue, circle, geometric",,Ricarda Krejci,2019-05-07,,,,,0.6,4282
+ 🟣,1F7E3,symbols,geometric,purple circle,"circle, purple",,Sam Eckert,2019-05-06,,,,,12,4283
+ 🟤,1F7E4,symbols,geometric,brown circle,"brown, circle",,Sam Eckert,2019-05-06,,,,,12,4284
+-⚫️,26AB,symbols,geometric,black circle,"circle, geometric",,Ricarda Krejci,2019-05-07,,,,,0.6,4285
+-⚪️,26AA,symbols,geometric,white circle,"circle, geometric",,Ricarda Krejci,2019-05-07,,,,,0.6,4286
++⚫,26AB,symbols,geometric,black circle,"circle, geometric",,Ricarda Krejci,2019-05-07,,,,,0.6,4285
++⚪,26AA,symbols,geometric,white circle,"circle, geometric",,Ricarda Krejci,2019-05-07,,,,,0.6,4286
+ 🟥,1F7E5,symbols,geometric,red square,"red, square",,Sam Eckert,2019-05-06,,,,,12,4287
+ 🟧,1F7E7,symbols,geometric,orange square,"orange, square",,Sam Eckert,2019-05-06,,,,,12,4288
+ 🟨,1F7E8,symbols,geometric,yellow square,"square, yellow",,Sam Eckert,2019-05-06,,,,,12,4289
+@@ -3233,14 +3233,14 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🟦,1F7E6,symbols,geometric,blue square,"blue, square",,Sam Eckert,2019-05-06,,,,,12,4291
+ 🟪,1F7EA,symbols,geometric,purple square,"purple, square",,Sam Eckert,2019-05-06,,,,,12,4292
+ 🟫,1F7EB,symbols,geometric,brown square,"brown, square",,Sam Eckert,2019-05-06,,,,,12,4293
+-⬛️,2B1B,symbols,geometric,black large square,"geometric, square",,Laura Schießer,2019-05-06,,,,,0.6,4294
+-⬜️,2B1C,symbols,geometric,white large square,"geometric, square",,Laura Schießer,2019-05-06,,,,,0.6,4295
+-◼️,25FC,symbols,geometric,black medium square,"geometric, square",,Laura Schießer,2019-05-06,,,,,0.6,4297
+-◻️,25FB,symbols,geometric,white medium square,"geometric, square",,Laura Schießer,2019-05-06,,,,,0.6,4299
+-◾️,25FE,symbols,geometric,black medium-small square,"geometric, square",,Laura Schießer,2019-05-06,,,,,0.6,4300
+-◽️,25FD,symbols,geometric,white medium-small square,"geometric, square",,Laura Schießer,2019-05-06,,,,,0.6,4301
+-▪️,25AA,symbols,geometric,black small square,"geometric, square",,Laura Schießer,2019-05-06,,,,,0.6,4303
+-▫️,25AB,symbols,geometric,white small square,"geometric, square",,Laura Schießer,2019-05-06,,,,,0.6,4305
++⬛,2B1B,symbols,geometric,black large square,"geometric, square",,Laura Schießer,2019-05-06,,,,,0.6,4294
++⬜,2B1C,symbols,geometric,white large square,"geometric, square",,Laura Schießer,2019-05-06,,,,,0.6,4295
++◼,25FC,symbols,geometric,black medium square,"geometric, square",,Laura Schießer,2019-05-06,,,,,0.6,4297
++◻,25FB,symbols,geometric,white medium square,"geometric, square",,Laura Schießer,2019-05-06,,,,,0.6,4299
++◾,25FE,symbols,geometric,black medium-small square,"geometric, square",,Laura Schießer,2019-05-06,,,,,0.6,4300
++◽,25FD,symbols,geometric,white medium-small square,"geometric, square",,Laura Schießer,2019-05-06,,,,,0.6,4301
++▪,25AA,symbols,geometric,black small square,"geometric, square",,Laura Schießer,2019-05-06,,,,,0.6,4303
++▫,25AB,symbols,geometric,white small square,"geometric, square",,Laura Schießer,2019-05-06,,,,,0.6,4305
+ 🔶,1F536,symbols,geometric,large orange diamond,"diamond, geometric, orange",,Laura Schießer,2019-05-06,,,,,0.6,4306
+ 🔷,1F537,symbols,geometric,large blue diamond,"blue, diamond, geometric",,Ricarda Krejci,2019-05-07,,,,,0.6,4307
+ 🔸,1F538,symbols,geometric,small orange diamond,"diamond, geometric, orange",,Ricarda Krejci,2019-05-07,,,,,0.6,4308
+@@ -3255,7 +3255,7 @@ emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,open
+ 🚩,1F6A9,flags,flag,triangular flag,post,,Aileen Gedrat,2018-11-16,,,,,0.6,4317
+ 🎌,1F38C,flags,flag,crossed flags,"celebration, cross, crossed, japanese",,Laura Dworatschek,2019-05-06,,,,,0.6,4318
+ 🏴,1F3F4,flags,flag,black flag,waving,,Aileen Gedrat,2018-11-16,,,,,1,4319
+-🏳️,1F3F3,flags,flag,white flag,waving,white,Aileen Gedrat,2018-11-16,,,,,0.7,4321
++🏳,1F3F3,flags,flag,white flag,waving,white,Aileen Gedrat,2018-11-16,,,,,0.7,4321
+ 🏳️‍🌈,1F3F3-FE0F-200D-1F308,flags,flag,rainbow flag,"pride, rainbow",color,Romain Bazile,2019-09-11,,,,,4,4322
+ 🏳️‍⚧️,1F3F3-FE0F-200D-26A7-FE0F,flags,flag,transgender flag,"flag, light blue, pink, transgender, white","LGBT, trans, queer, gender",Carlin MacKenzie,2020-01-09,,,,,13,4324
+ 🏴‍☠️,1F3F4-200D-2620-FE0F,flags,flag,pirate flag,"jolly roger, pirate, plunder, treasure",,Aileen Gedrat,2018-11-16,,,,,11,4328
+diff --git a/update-emojis b/update-emojis
+new file mode 100755
+index 0000000..d9a33f0
+--- /dev/null
++++ b/update-emojis
+@@ -0,0 +1,32 @@
++#!/bin/sh
++
++set -eu
++
++export LC_ALL=en_US.UTF-8
++
++URL=https://raw.githubusercontent.com/hfg-gmuend/openmoji/master/data/openmoji.csv
++CSV=${0%/*}/static/emojis.csv
++
++TEMP=$(mktemp)
++curl -fL "$URL" >"$TEMP"
++
++# Replace the emoji in columns 1 and 12 (NF - 3) by encoding the UTF-16 code
++# points in columns 2 and 13 (NF - 2) respectively.
++awk -F, -v OFS=, '
++function get_emoji(hexcode, _a, _i, _s) {
++ split(hexcode, _a, "-")
++ for (_i in _a) {
++ _s = _s sprintf("%c", strtonum("0x" _a[_i]))
++ }
++ return _s
++}
++
++{
++ if (NR > 1) {
++ $1 = get_emoji($2)
++ if ($(NF - 2)) {
++ $(NF - 3) = get_emoji($(NF - 2))
++ }
++ }
++ print
++}' "$TEMP" >"$CSV"