diff --git a/.gitmodules b/.gitmodules
index 998cbb8340..a28462e854 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -4,3 +4,6 @@
[submodule "build/twitter/twemoji"]
path = build/twitter/twemoji
url = https://github.com/twitter/twemoji.git
+[submodule "build/microsoft/fluent-emoji"]
+ path = build/microsoft/fluent-emoji
+ url = https://github.com/microsoft/fluentui-emoji.git
diff --git a/README.md b/README.md
index 57917466fc..755849923d 100644
--- a/README.md
+++ b/README.md
@@ -27,6 +27,7 @@ npm install emoji-datasource-apple
npm install emoji-datasource-google
npm install emoji-datasource-twitter
npm install emoji-datasource-facebook
+npm install emoji-datasource-microsoft
```
You can also use it without downloading via [jsDelivr CDN](https://www.jsdelivr.com/package/npm/emoji-datasource?path=img)
@@ -47,9 +48,9 @@ look like this:
"au": "E4F6",
"softbank": "E00F",
"google": "FEB98",
- "image": "261d.png",
- "sheet_x": 1,
- "sheet_y": 2,
+ "image": "261d-fe0f.png",
+ "sheet_x": 57,
+ "sheet_y": 20,
"short_name": "point_up",
"short_names": [
"point_up"
@@ -58,24 +59,27 @@ look like this:
"texts": null,
"category": "People & Body",
"subcategory": "hand-single-finger",
- "sort_order": 170,
- "added_in": "1.4",
+ "sort_order": 192,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
+ "has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "261D-1F3FB",
+ "non_qualified": null,
"image": "261d-1f3fb.png",
- "sheet_x": 1,
- "sheet_y": 3,
- "added_in": "6.0",
+ "sheet_x": 57,
+ "sheet_y": 21,
+ "added_in": "1.0",
"has_img_apple": true,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- }
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "has_img_microsoft": true
+ },
...
"1F3FB-1F3FC": {
...
@@ -148,17 +152,19 @@ Images are extracted from their sources and this library attempts to track the l
available versions. If you're looking for older versions of Apple or Android images
(such as the Hairy Heart) then you'll need to look at previous revisions.
-| Image Set | Source Version | Supported Emoji | Missing Images |
-|-----------|-----------------------------------------------------------------|-----------------|----------------|
-| Apple | macOS Ventura 13.3.1 | Emoji 15.0 | 3 |
-| Google | [Noto Emoji](https://github.com/googlefonts/noto-emoji), v2.038 | Emoji 15.0 | 0 |
-| Twitter | [Twemoji](https://github.com/twitter/twemoji), v14.0.0 | Emoji 14.0 | 31 |
-| Facebook | v9, fetched 2023-04-17 | Emoji 14.0 | 55 |
+| Image Set | Source Version | Supported Emoji | Missing Images |
+| --------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------- | -------------- |
+| Apple | macOS Ventura 13.3.1 | Emoji 15.0 | 3 |
+| Google | [Noto Emoji](https://github.com/googlefonts/noto-emoji), v2.038 | Emoji 15.0 | 0 |
+| Twitter | [Twemoji](https://github.com/twitter/twemoji), v14.0.0 | Emoji 14.0 | 31 |
+| Facebook | v9, fetched 2023-04-17 | Emoji 14.0 | 55 |
+| Microsoft | [fluent-emoji](https://github.com/microsoft/fluentui-emoji), [`dfb5c3b`](https://github.com/microsoft/fluentui-emoji/commit/dfb5c3b7b10e20878a3fee6e3b05660e4d3bd9d5) | No clear version | 650 |
* Apple images, Copyright © Apple Inc., are not licensed for commercial usage.
* Android/Google/Noto images, are available under the [Apache License 2.0](https://github.com/googlei18n/noto-emoji/blob/master/LICENSE).
* Twitter images are available under the [Creative Commons Attribution 4.0 license](https://github.com/twitter/twemoji/blob/gh-pages/LICENSE-GRAPHICS).
* Facebook images, © Facebook, Inc., have no clear licensing.
+* Microsoft images are available under the [MIT License](https://github.com/microsoft/fluentui-emoji/blob/main/LICENSE).
If you use the spritesheet images and are concerned about usage rights, please use the 'clean' versions, which avoid using fallback images for
missing emoji (see the spritesheet section above for more details).
diff --git a/build/build_image.php b/build/build_image.php
index 2b80abbae3..c10445f036 100644
--- a/build/build_image.php
+++ b/build/build_image.php
@@ -42,6 +42,7 @@
create_sheet('twitter', $sz, $clean);
create_sheet('google', $sz, $clean);
create_sheet('facebook', $sz, $clean);
+ create_sheet('microsoft', $sz, $clean);
}
}
@@ -66,7 +67,7 @@ function create_sheet($type, $img_w, $clean){
if ($clean){
$try_order = array($type);
}else{
- $try_order = array($type, 'apple', 'google', 'twitter', 'facebook');
+ $try_order = array($type, 'apple', 'google', 'twitter', 'facebook', 'microsoft');
}
diff --git a/build/build_map.php b/build/build_map.php
index a8df68cf3f..6e48364a67 100644
--- a/build/build_map.php
+++ b/build/build_map.php
@@ -819,6 +819,7 @@ function simple_row($img_key, $shorts, $props){
$ret['has_img_google'] = file_exists("{$GLOBALS['dir']}/../img-google-64/{$ret['image']}");
$ret['has_img_twitter'] = file_exists("{$GLOBALS['dir']}/../img-twitter-64/{$ret['image']}");
$ret['has_img_facebook'] = file_exists("{$GLOBALS['dir']}/../img-facebook-64/{$ret['image']}");
+ $ret['has_img_microsoft'] = file_exists("{$GLOBALS['dir']}/../img-microsoft-64/{$ret['image']}");
foreach ($props as $k => $v) $ret[$k] = $v;
@@ -862,6 +863,7 @@ function simple_row($img_key, $shorts, $props){
'has_img_google' => file_exists("{$GLOBALS['dir']}/../img-google-64/{$var_img}"),
'has_img_twitter' => file_exists("{$GLOBALS['dir']}/../img-twitter-64/{$var_img}"),
'has_img_facebook' => file_exists("{$GLOBALS['dir']}/../img-facebook-64/{$var_img}"),
+ 'has_img_microsoft' => file_exists("{$GLOBALS['dir']}/../img-facebook-64/{$var_img}"),
);
$ret['skin_variations'][$suffix] = $variation;
diff --git a/build/build_table.php b/build/build_table.php
index 778948d794..900de984e9 100644
--- a/build/build_table.php
+++ b/build/build_table.php
@@ -1,140 +1,146 @@
0x10000){
- # 4 bytes
- return chr(0xF0 | (($cp & 0x1C0000) >> 18)).
- chr(0x80 | (($cp & 0x3F000) >> 12)).
- chr(0x80 | (($cp & 0xFC0) >> 6)).
- chr(0x80 | ($cp & 0x3F));
- }else if ($cp > 0x800){
- # 3 bytes
- return chr(0xE0 | (($cp & 0xF000) >> 12)).
- chr(0x80 | (($cp & 0xFC0) >> 6)).
- chr(0x80 | ($cp & 0x3F));
- }else if ($cp > 0x80){
- # 2 bytes
- return chr(0xC0 | (($cp & 0x7C0) >> 6)).
- chr(0x80 | ($cp & 0x3F));
- }else{
- # 1 byte
- return chr($cp);
- }
+ return $out;
+}
+
+function emoji_utf8_bytes($cp)
+{
+
+ if ($cp > 0x10000) {
+ # 4 bytes
+ return chr(0xF0 | (($cp & 0x1C0000) >> 18)) .
+ chr(0x80 | (($cp & 0x3F000) >> 12)) .
+ chr(0x80 | (($cp & 0xFC0) >> 6)) .
+ chr(0x80 | ($cp & 0x3F));
+ } else if ($cp > 0x800) {
+ # 3 bytes
+ return chr(0xE0 | (($cp & 0xF000) >> 12)) .
+ chr(0x80 | (($cp & 0xFC0) >> 6)) .
+ chr(0x80 | ($cp & 0x3F));
+ } else if ($cp > 0x80) {
+ # 2 bytes
+ return chr(0xC0 | (($cp & 0x7C0) >> 6)) .
+ chr(0x80 | ($cp & 0x3F));
+ } else {
+ # 1 byte
+ return chr($cp);
}
+}
?>
-
-
-Emoji Catalog
-
-
+ table tbody td {
+ padding: 0.41em;
+ }
+
-
-
-Emoji Catalog
-
-
- Images |
- Official Name |
- Short Name |
- Code Point(s) |
- Image Path |
- Sheet |
-
-
-
-\n";
- }else{
- echo "\t\t- | \n";
- }
- }
+
- foreach ($catalog as $row){
-
- echo "\t\n";
- image_cell($row['has_img_apple' ], "img-apple-64/{$row['image']}");
- image_cell($row['has_img_google' ], "img-google-64/{$row['image']}");
- image_cell($row['has_img_twitter' ], "img-twitter-64/{$row['image']}");
- image_cell($row['has_img_facebook' ], "img-facebook-64/{$row['image']}");
- echo "\t\t".unicode_bytes($row['unified'])." | \n";
- echo "\t\t".HtmlSpecialChars(mb_strtolower($row['name'], 'UTF-8'))." | \n";
- echo "\t\t:{$row['short_name']}: | \n";
- echo "\t\t".format_codepoints($row['unified'])." | \n";
- echo "\t\t{$row['image']} | \n";
- echo "\t\t{$row['sheet_x']},{$row['sheet_y']} | \n";
- echo "\t
\n";
- }
-?>
-
-
+ Emoji Catalog
+
+
+
+ Images |
+ Official Name |
+ Short Name |
+ Code Point(s) |
+ Image Path |
+ Sheet |
+
+
+
+ \n";
+ } else {
+ echo "\t\t- | \n";
+ }
+ }
+
+ foreach ($catalog as $row) {
+
+ echo "\t\n";
+ image_cell($row['has_img_apple'], "img-apple-64/{$row['image']}");
+ image_cell($row['has_img_google'], "img-google-64/{$row['image']}");
+ image_cell($row['has_img_twitter'], "img-twitter-64/{$row['image']}");
+ image_cell($row['has_img_facebook'], "img-facebook-64/{$row['image']}");
+ image_cell($row['has_img_microsoft'], "img-microsoft-64/{$row['image']}");
+ echo "\t\t" . unicode_bytes($row['unified']) . " | \n";
+ echo "\t\t" . HtmlSpecialChars(mb_strtolower($row['name'], 'UTF-8')) . " | \n";
+ echo "\t\t:{$row['short_name']}: | \n";
+ echo "\t\t" . format_codepoints($row['unified']) . " | \n";
+ echo "\t\t{$row['image']} | \n";
+ echo "\t\t{$row['sheet_x']},{$row['sheet_y']} | \n";
+ echo "\t
\n";
+ }
+ ?>
+
+
diff --git a/build/find_flags.php b/build/find_flags.php
index e57cdc0e90..34089b220d 100644
--- a/build/find_flags.php
+++ b/build/find_flags.php
@@ -7,8 +7,9 @@
$b = find_flags("../img-google-64/1f1*-1f1*.png");
$c = find_flags("../img-twitter-64/1f1*-1f1*.png");
$d = find_flags("../img-facebook-64/1f1*-1f1*.png");
+ $e = find_flags("../img-microsoft-64/1f1*-1f1*.png");
- $all = array_unique(array_merge($a, $b, $c, $d));
+ $all = array_unique(array_merge($a, $b, $c, $d, $e));
sort($all);
foreach ($all as $line) echo $line;
diff --git a/build/find_missing.php b/build/find_missing.php
index c31b392704..39c83bcf85 100644
--- a/build/find_missing.php
+++ b/build/find_missing.php
@@ -10,6 +10,7 @@
'google',
'twitter',
'facebook',
+ 'microsoft'
);
$json = file_get_contents('../emoji.json');
@@ -19,13 +20,13 @@
foreach ($obj as $row){
if (!$row["has_img_$p"]){
- echo "$p missing {$row['unified']} / {$row['short_name']}\n";
+ echo "$p missing {$row['unified']} / {$row['short_name']} [{$row['added_in']}]\n";
}
if (isset($row['skin_variations'])){
foreach ($row['skin_variations'] as $row2){
if (!$row2["has_img_$p"]){
- echo "$p missing {$row2['unified']} / {$row['short_name']} (tone)\n";
+ echo "$p missing {$row2['unified']} / {$row['short_name']} (tone) [{$row['added_in']}]\n";
}
}
}
diff --git a/build/find_unused.php b/build/find_unused.php
index c7439a8a00..9f342cddbb 100644
--- a/build/find_unused.php
+++ b/build/find_unused.php
@@ -43,6 +43,7 @@
scan_unused($files, '../img-google-64/');
scan_unused($files, '../img-twitter-64/');
scan_unused($files, '../img-facebook-64/');
+ scan_unused($files, '../img-microsoft-64/');
echo "~FIN~\n";
function scan_unused($files, $path){
diff --git a/build/microsoft/README.md b/build/microsoft/README.md
new file mode 100644
index 0000000000..67b595d6f8
--- /dev/null
+++ b/build/microsoft/README.md
@@ -0,0 +1,13 @@
+# Building the Microsoft emoji images
+
+From any machine:
+
+ php grab.php
+
+This will fetch the 256px versions of all available emoji.
+
+Next you'll want to cut the 64px versions that are used in the sheets:
+
+ php make64.php
+
+The resulting 64px images are then ready to use.
diff --git a/build/microsoft/fluent-emoji b/build/microsoft/fluent-emoji
new file mode 160000
index 0000000000..dfb5c3b7b1
--- /dev/null
+++ b/build/microsoft/fluent-emoji
@@ -0,0 +1 @@
+Subproject commit dfb5c3b7b10e20878a3fee6e3b05660e4d3bd9d5
diff --git a/build/microsoft/grab.php b/build/microsoft/grab.php
new file mode 100644
index 0000000000..ff575dbae5
--- /dev/null
+++ b/build/microsoft/grab.php
@@ -0,0 +1,76 @@
+ $variant) {
+ $path = join('/', [$emoji_dir, $variant, $base . '_' . strtolower($variant) . '.png']);
+ if (!file_exists($path)) {
+ echo "$path not found!\n";
+ continue;
+ }
+ $converted = convert_unicode($data['unicodeSkintones'][$i]);
+ $rmap[$converted] = $path;
+ }
+ } else {
+ $converted = convert_unicode($data['unicode']);
+ $path = join('/', [$emoji_dir, $base . '.png']);
+ if (!file_exists($path)) {
+ echo "$path not found!\n";
+ continue;
+ }
+ $rmap[$converted] = $path;
+ }
+}
+
+echo sizeof($rmap) . "\n";
+
+$json = file_get_contents('../../emoji.json');
+$data = json_decode($json, true);
+
+$failed = 0;
+foreach ($data as $row) {
+ if (strlen($row['image'])) {
+ if ($row['non_qualified']) {
+ fetch($rmap, $row['unified'], $row['image']);
+ } else {
+ fetch($rmap, $row['unified'], $row['image']);
+ }
+ }
+
+ if (isset($row['skin_variations'])) {
+ foreach ($row['skin_variations'] as $row2) {
+ fetch($rmap, $row2['unified'], $row2['image']);
+ }
+ }
+}
+
+echo "\nDONE\n";
+
+function convert_unicode(string $src): string
+{
+ return strtoupper(str_replace(' ', '-', $src));
+}
+
+function fetch(array $rmap, string $qualified, string $target_file)
+{
+ $dst = "../../img-microsoft-256/$target_file";
+
+ if (!isset($rmap[$qualified])) {
+ echo "Not found: $qualified\n";
+ return;
+ }
+
+ $src = $rmap[$qualified];
+
+ copy($src, $dst);
+}
diff --git a/build/microsoft/make64.php b/build/microsoft/make64.php
new file mode 100644
index 0000000000..a5d362d29b
--- /dev/null
+++ b/build/microsoft/make64.php
@@ -0,0 +1,21 @@
+",":->"],"category":"Smileys & Emotion","subcategory":"face-smiling","sort_order":5,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SMILING FACE WITH HALO","unified":"1F607","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f607.png","sheet_x":32,"sheet_y":28,"short_name":"innocent","short_names":["innocent"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-smiling","sort_order":14,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SMILING FACE WITH HORNS","unified":"1F608","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f608.png","sheet_x":32,"sheet_y":29,"short_name":"smiling_imp","short_names":["smiling_imp"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-negative","sort_order":104,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WINKING FACE","unified":"1F609","non_qualified":null,"docomo":"E729","au":"E5C3","softbank":"E405","google":"FE347","image":"1f609.png","sheet_x":32,"sheet_y":30,"short_name":"wink","short_names":["wink"],"text":";)","texts":[";)",";-)"],"category":"Smileys & Emotion","subcategory":"face-smiling","sort_order":12,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SMILING FACE WITH SMILING EYES","unified":"1F60A","non_qualified":null,"docomo":"E6F0","au":"EACD","softbank":"E056","google":"FE335","image":"1f60a.png","sheet_x":32,"sheet_y":31,"short_name":"blush","short_names":["blush"],"text":":)","texts":null,"category":"Smileys & Emotion","subcategory":"face-smiling","sort_order":13,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE SAVOURING DELICIOUS FOOD","unified":"1F60B","non_qualified":null,"docomo":"E752","au":"EACD","softbank":null,"google":"FE32B","image":"1f60b.png","sheet_x":32,"sheet_y":32,"short_name":"yum","short_names":["yum"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-tongue","sort_order":24,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"RELIEVED FACE","unified":"1F60C","non_qualified":null,"docomo":"E721","au":"EAC5","softbank":"E40A","google":"FE33E","image":"1f60c.png","sheet_x":32,"sheet_y":33,"short_name":"relieved","short_names":["relieved"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-sleepy","sort_order":51,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SMILING FACE WITH HEART-SHAPED EYES","unified":"1F60D","non_qualified":null,"docomo":"E726","au":"E5C4","softbank":"E106","google":"FE327","image":"1f60d.png","sheet_x":32,"sheet_y":34,"short_name":"heart_eyes","short_names":["heart_eyes"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-affection","sort_order":16,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SMILING FACE WITH SUNGLASSES","unified":"1F60E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f60e.png","sheet_x":32,"sheet_y":35,"short_name":"sunglasses","short_names":["sunglasses"],"text":null,"texts":["8)"],"category":"Smileys & Emotion","subcategory":"face-glasses","sort_order":71,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SMIRKING FACE","unified":"1F60F","non_qualified":null,"docomo":"E72C","au":"EABF","softbank":"E402","google":"FE343","image":"1f60f.png","sheet_x":32,"sheet_y":36,"short_name":"smirk","short_names":["smirk"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":44,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"NEUTRAL FACE","unified":"1F610","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f610.png","sheet_x":32,"sheet_y":37,"short_name":"neutral_face","short_names":["neutral_face"],"text":null,"texts":[":|",":-|"],"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":39,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"EXPRESSIONLESS FACE","unified":"1F611","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f611.png","sheet_x":32,"sheet_y":38,"short_name":"expressionless","short_names":["expressionless"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":40,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"UNAMUSED FACE","unified":"1F612","non_qualified":null,"docomo":"E725","au":"EAC9","softbank":"E40E","google":"FE326","image":"1f612.png","sheet_x":32,"sheet_y":39,"short_name":"unamused","short_names":["unamused"],"text":":(","texts":null,"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":45,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE WITH COLD SWEAT","unified":"1F613","non_qualified":null,"docomo":"E723","au":"E5C6","softbank":"E108","google":"FE344","image":"1f613.png","sheet_x":32,"sheet_y":40,"short_name":"sweat","short_names":["sweat"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":96,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PENSIVE FACE","unified":"1F614","non_qualified":null,"docomo":"E720","au":"EAC0","softbank":"E403","google":"FE340","image":"1f614.png","sheet_x":32,"sheet_y":41,"short_name":"pensive","short_names":["pensive"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-sleepy","sort_order":52,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CONFUSED FACE","unified":"1F615","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f615.png","sheet_x":32,"sheet_y":42,"short_name":"confused","short_names":["confused"],"text":null,"texts":[":\\",":-\\",":\/",":-\/"],"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":74,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CONFOUNDED FACE","unified":"1F616","non_qualified":null,"docomo":"E6F3","au":"EAC3","softbank":"E407","google":"FE33F","image":"1f616.png","sheet_x":32,"sheet_y":43,"short_name":"confounded","short_names":["confounded"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":93,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"KISSING FACE","unified":"1F617","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f617.png","sheet_x":32,"sheet_y":44,"short_name":"kissing","short_names":["kissing"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-affection","sort_order":19,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE THROWING A KISS","unified":"1F618","non_qualified":null,"docomo":"E726","au":"EACF","softbank":"E418","google":"FE32C","image":"1f618.png","sheet_x":32,"sheet_y":45,"short_name":"kissing_heart","short_names":["kissing_heart"],"text":null,"texts":[":*",":-*"],"category":"Smileys & Emotion","subcategory":"face-affection","sort_order":18,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"KISSING FACE WITH SMILING EYES","unified":"1F619","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f619.png","sheet_x":32,"sheet_y":46,"short_name":"kissing_smiling_eyes","short_names":["kissing_smiling_eyes"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-affection","sort_order":22,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"KISSING FACE WITH CLOSED EYES","unified":"1F61A","non_qualified":null,"docomo":"E726","au":"EACE","softbank":"E417","google":"FE32D","image":"1f61a.png","sheet_x":32,"sheet_y":47,"short_name":"kissing_closed_eyes","short_names":["kissing_closed_eyes"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-affection","sort_order":21,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE WITH STUCK-OUT TONGUE","unified":"1F61B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f61b.png","sheet_x":32,"sheet_y":48,"short_name":"stuck_out_tongue","short_names":["stuck_out_tongue"],"text":":p","texts":[":p",":-p",":P",":-P",":b",":-b"],"category":"Smileys & Emotion","subcategory":"face-tongue","sort_order":25,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE WITH STUCK-OUT TONGUE AND WINKING EYE","unified":"1F61C","non_qualified":null,"docomo":"E728","au":"E4E7","softbank":"E105","google":"FE329","image":"1f61c.png","sheet_x":32,"sheet_y":49,"short_name":"stuck_out_tongue_winking_eye","short_names":["stuck_out_tongue_winking_eye"],"text":";p","texts":[";p",";-p",";b",";-b",";P",";-P"],"category":"Smileys & Emotion","subcategory":"face-tongue","sort_order":26,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE WITH STUCK-OUT TONGUE AND TIGHTLY-CLOSED EYES","unified":"1F61D","non_qualified":null,"docomo":"E728","au":"E4E7","softbank":"E409","google":"FE32A","image":"1f61d.png","sheet_x":32,"sheet_y":50,"short_name":"stuck_out_tongue_closed_eyes","short_names":["stuck_out_tongue_closed_eyes"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-tongue","sort_order":28,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"DISAPPOINTED FACE","unified":"1F61E","non_qualified":null,"docomo":"E6F2","au":"EAC0","softbank":"E058","google":"FE323","image":"1f61e.png","sheet_x":32,"sheet_y":51,"short_name":"disappointed","short_names":["disappointed"],"text":":(","texts":["):",":(",":-("],"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":95,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WORRIED FACE","unified":"1F61F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f61f.png","sheet_x":32,"sheet_y":52,"short_name":"worried","short_names":["worried"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":76,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ANGRY FACE","unified":"1F620","non_qualified":null,"docomo":"E6F1","au":"E472","softbank":"E059","google":"FE320","image":"1f620.png","sheet_x":32,"sheet_y":53,"short_name":"angry","short_names":["angry"],"text":null,"texts":[">:(",">:-("],"category":"Smileys & Emotion","subcategory":"face-negative","sort_order":102,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"POUTING FACE","unified":"1F621","non_qualified":null,"docomo":"E724","au":"EB5D","softbank":"E416","google":"FE33D","image":"1f621.png","sheet_x":32,"sheet_y":54,"short_name":"rage","short_names":["rage"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-negative","sort_order":101,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CRYING FACE","unified":"1F622","non_qualified":null,"docomo":"E72E","au":"EB69","softbank":"E413","google":"FE339","image":"1f622.png","sheet_x":32,"sheet_y":55,"short_name":"cry","short_names":["cry"],"text":":'(","texts":[":'("],"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":90,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PERSEVERING FACE","unified":"1F623","non_qualified":null,"docomo":"E72B","au":"EAC2","softbank":"E406","google":"FE33C","image":"1f623.png","sheet_x":32,"sheet_y":56,"short_name":"persevere","short_names":["persevere"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":94,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE WITH LOOK OF TRIUMPH","unified":"1F624","non_qualified":null,"docomo":"E753","au":"EAC1","softbank":null,"google":"FE328","image":"1f624.png","sheet_x":32,"sheet_y":57,"short_name":"triumph","short_names":["triumph"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-negative","sort_order":100,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"DISAPPOINTED BUT RELIEVED FACE","unified":"1F625","non_qualified":null,"docomo":"E723","au":"E5C6","softbank":"E401","google":"FE345","image":"1f625.png","sheet_x":32,"sheet_y":58,"short_name":"disappointed_relieved","short_names":["disappointed_relieved"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":89,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FROWNING FACE WITH OPEN MOUTH","unified":"1F626","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f626.png","sheet_x":32,"sheet_y":59,"short_name":"frowning","short_names":["frowning"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":85,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ANGUISHED FACE","unified":"1F627","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f627.png","sheet_x":32,"sheet_y":60,"short_name":"anguished","short_names":["anguished"],"text":null,"texts":["D:"],"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":86,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FEARFUL FACE","unified":"1F628","non_qualified":null,"docomo":"E757","au":"EAC6","softbank":"E40B","google":"FE33B","image":"1f628.png","sheet_x":33,"sheet_y":0,"short_name":"fearful","short_names":["fearful"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":87,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WEARY FACE","unified":"1F629","non_qualified":null,"docomo":"E6F3","au":"EB67","softbank":null,"google":"FE321","image":"1f629.png","sheet_x":33,"sheet_y":1,"short_name":"weary","short_names":["weary"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":97,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SLEEPY FACE","unified":"1F62A","non_qualified":null,"docomo":"E701","au":"EAC4","softbank":"E408","google":"FE342","image":"1f62a.png","sheet_x":33,"sheet_y":2,"short_name":"sleepy","short_names":["sleepy"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-sleepy","sort_order":53,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"TIRED FACE","unified":"1F62B","non_qualified":null,"docomo":"E72B","au":"E474","softbank":null,"google":"FE346","image":"1f62b.png","sheet_x":33,"sheet_y":3,"short_name":"tired_face","short_names":["tired_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":98,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"GRIMACING FACE","unified":"1F62C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f62c.png","sheet_x":33,"sheet_y":4,"short_name":"grimacing","short_names":["grimacing"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":47,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LOUDLY CRYING FACE","unified":"1F62D","non_qualified":null,"docomo":"E72D","au":"E473","softbank":"E411","google":"FE33A","image":"1f62d.png","sheet_x":33,"sheet_y":5,"short_name":"sob","short_names":["sob"],"text":":'(","texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":91,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE EXHALING","unified":"1F62E-200D-1F4A8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f62e-200d-1f4a8.png","sheet_x":33,"sheet_y":6,"short_name":"face_exhaling","short_names":["face_exhaling"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":48,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE WITH OPEN MOUTH","unified":"1F62E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f62e.png","sheet_x":33,"sheet_y":7,"short_name":"open_mouth","short_names":["open_mouth"],"text":null,"texts":[":o",":-o",":O",":-O"],"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":79,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HUSHED FACE","unified":"1F62F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f62f.png","sheet_x":33,"sheet_y":8,"short_name":"hushed","short_names":["hushed"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":80,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE WITH OPEN MOUTH AND COLD SWEAT","unified":"1F630","non_qualified":null,"docomo":"E723","au":"EACB","softbank":"E40F","google":"FE325","image":"1f630.png","sheet_x":33,"sheet_y":9,"short_name":"cold_sweat","short_names":["cold_sweat"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":88,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE SCREAMING IN FEAR","unified":"1F631","non_qualified":null,"docomo":"E757","au":"E5C5","softbank":"E107","google":"FE341","image":"1f631.png","sheet_x":33,"sheet_y":10,"short_name":"scream","short_names":["scream"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":92,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ASTONISHED FACE","unified":"1F632","non_qualified":null,"docomo":"E6F4","au":"EACA","softbank":"E410","google":"FE322","image":"1f632.png","sheet_x":33,"sheet_y":11,"short_name":"astonished","short_names":["astonished"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":81,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FLUSHED FACE","unified":"1F633","non_qualified":null,"docomo":"E72A","au":"EAC8","softbank":"E40D","google":"FE32F","image":"1f633.png","sheet_x":33,"sheet_y":12,"short_name":"flushed","short_names":["flushed"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":82,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SLEEPING FACE","unified":"1F634","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f634.png","sheet_x":33,"sheet_y":13,"short_name":"sleeping","short_names":["sleeping"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-sleepy","sort_order":55,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE WITH SPIRAL EYES","unified":"1F635-200D-1F4AB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f635-200d-1f4ab.png","sheet_x":33,"sheet_y":14,"short_name":"face_with_spiral_eyes","short_names":["face_with_spiral_eyes"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-unwell","sort_order":66,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"DIZZY FACE","unified":"1F635","non_qualified":null,"docomo":"E6F4","au":"E5AE","softbank":null,"google":"FE324","image":"1f635.png","sheet_x":33,"sheet_y":15,"short_name":"dizzy_face","short_names":["dizzy_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-unwell","sort_order":65,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE IN CLOUDS","unified":"1F636-200D-1F32B-FE0F","non_qualified":"1F636-200D-1F32B","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f636-200d-1f32b-fe0f.png","sheet_x":33,"sheet_y":16,"short_name":"face_in_clouds","short_names":["face_in_clouds"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":43,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE WITHOUT MOUTH","unified":"1F636","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f636.png","sheet_x":33,"sheet_y":17,"short_name":"no_mouth","short_names":["no_mouth"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":41,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE WITH MEDICAL MASK","unified":"1F637","non_qualified":null,"docomo":null,"au":"EAC7","softbank":"E40C","google":"FE32E","image":"1f637.png","sheet_x":33,"sheet_y":18,"short_name":"mask","short_names":["mask"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-unwell","sort_order":56,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"GRINNING CAT FACE WITH SMILING EYES","unified":"1F638","non_qualified":null,"docomo":"E753","au":"EB7F","softbank":null,"google":"FE349","image":"1f638.png","sheet_x":33,"sheet_y":19,"short_name":"smile_cat","short_names":["smile_cat"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"cat-face","sort_order":117,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CAT FACE WITH TEARS OF JOY","unified":"1F639","non_qualified":null,"docomo":"E72A","au":"EB63","softbank":null,"google":"FE34A","image":"1f639.png","sheet_x":33,"sheet_y":20,"short_name":"joy_cat","short_names":["joy_cat"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"cat-face","sort_order":118,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SMILING CAT FACE WITH OPEN MOUTH","unified":"1F63A","non_qualified":null,"docomo":"E6F0","au":"EB61","softbank":null,"google":"FE348","image":"1f63a.png","sheet_x":33,"sheet_y":21,"short_name":"smiley_cat","short_names":["smiley_cat"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"cat-face","sort_order":116,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SMILING CAT FACE WITH HEART-SHAPED EYES","unified":"1F63B","non_qualified":null,"docomo":"E726","au":"EB65","softbank":null,"google":"FE34C","image":"1f63b.png","sheet_x":33,"sheet_y":22,"short_name":"heart_eyes_cat","short_names":["heart_eyes_cat"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"cat-face","sort_order":119,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CAT FACE WITH WRY SMILE","unified":"1F63C","non_qualified":null,"docomo":"E753","au":"EB6A","softbank":null,"google":"FE34F","image":"1f63c.png","sheet_x":33,"sheet_y":23,"short_name":"smirk_cat","short_names":["smirk_cat"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"cat-face","sort_order":120,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"KISSING CAT FACE WITH CLOSED EYES","unified":"1F63D","non_qualified":null,"docomo":"E726","au":"EB60","softbank":null,"google":"FE34B","image":"1f63d.png","sheet_x":33,"sheet_y":24,"short_name":"kissing_cat","short_names":["kissing_cat"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"cat-face","sort_order":121,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"POUTING CAT FACE","unified":"1F63E","non_qualified":null,"docomo":"E724","au":"EB5E","softbank":null,"google":"FE34E","image":"1f63e.png","sheet_x":33,"sheet_y":25,"short_name":"pouting_cat","short_names":["pouting_cat"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"cat-face","sort_order":124,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CRYING CAT FACE","unified":"1F63F","non_qualified":null,"docomo":"E72E","au":"EB68","softbank":null,"google":"FE34D","image":"1f63f.png","sheet_x":33,"sheet_y":26,"short_name":"crying_cat_face","short_names":["crying_cat_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"cat-face","sort_order":123,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WEARY CAT FACE","unified":"1F640","non_qualified":null,"docomo":"E6F3","au":"EB66","softbank":null,"google":"FE350","image":"1f640.png","sheet_x":33,"sheet_y":27,"short_name":"scream_cat","short_names":["scream_cat"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"cat-face","sort_order":122,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SLIGHTLY FROWNING FACE","unified":"1F641","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f641.png","sheet_x":33,"sheet_y":28,"short_name":"slightly_frowning_face","short_names":["slightly_frowning_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":77,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SLIGHTLY SMILING FACE","unified":"1F642","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f642.png","sheet_x":33,"sheet_y":29,"short_name":"slightly_smiling_face","short_names":["slightly_smiling_face"],"text":null,"texts":[":)","(:",":-)"],"category":"Smileys & Emotion","subcategory":"face-smiling","sort_order":9,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"UPSIDE-DOWN FACE","unified":"1F643","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f643.png","sheet_x":33,"sheet_y":30,"short_name":"upside_down_face","short_names":["upside_down_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-smiling","sort_order":10,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE WITH ROLLING EYES","unified":"1F644","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f644.png","sheet_x":33,"sheet_y":31,"short_name":"face_with_rolling_eyes","short_names":["face_with_rolling_eyes"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":46,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WOMAN GESTURING NO","unified":"1F645-200D-2640-FE0F","non_qualified":"1F645-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f645-200d-2640-fe0f.png","sheet_x":33,"sheet_y":32,"short_name":"woman-gesturing-no","short_names":["woman-gesturing-no"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":264,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F645-1F3FB-200D-2640-FE0F","non_qualified":"1F645-1F3FB-200D-2640","image":"1f645-1f3fb-200d-2640-fe0f.png","sheet_x":33,"sheet_y":33,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F645-1F3FC-200D-2640-FE0F","non_qualified":"1F645-1F3FC-200D-2640","image":"1f645-1f3fc-200d-2640-fe0f.png","sheet_x":33,"sheet_y":34,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F645-1F3FD-200D-2640-FE0F","non_qualified":"1F645-1F3FD-200D-2640","image":"1f645-1f3fd-200d-2640-fe0f.png","sheet_x":33,"sheet_y":35,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F645-1F3FE-200D-2640-FE0F","non_qualified":"1F645-1F3FE-200D-2640","image":"1f645-1f3fe-200d-2640-fe0f.png","sheet_x":33,"sheet_y":36,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F645-1F3FF-200D-2640-FE0F","non_qualified":"1F645-1F3FF-200D-2640","image":"1f645-1f3ff-200d-2640-fe0f.png","sheet_x":33,"sheet_y":37,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}},"obsoletes":"1F645"},{"name":"MAN GESTURING NO","unified":"1F645-200D-2642-FE0F","non_qualified":"1F645-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f645-200d-2642-fe0f.png","sheet_x":33,"sheet_y":38,"short_name":"man-gesturing-no","short_names":["man-gesturing-no"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":263,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F645-1F3FB-200D-2642-FE0F","non_qualified":"1F645-1F3FB-200D-2642","image":"1f645-1f3fb-200d-2642-fe0f.png","sheet_x":33,"sheet_y":39,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F645-1F3FC-200D-2642-FE0F","non_qualified":"1F645-1F3FC-200D-2642","image":"1f645-1f3fc-200d-2642-fe0f.png","sheet_x":33,"sheet_y":40,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F645-1F3FD-200D-2642-FE0F","non_qualified":"1F645-1F3FD-200D-2642","image":"1f645-1f3fd-200d-2642-fe0f.png","sheet_x":33,"sheet_y":41,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F645-1F3FE-200D-2642-FE0F","non_qualified":"1F645-1F3FE-200D-2642","image":"1f645-1f3fe-200d-2642-fe0f.png","sheet_x":33,"sheet_y":42,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F645-1F3FF-200D-2642-FE0F","non_qualified":"1F645-1F3FF-200D-2642","image":"1f645-1f3ff-200d-2642-fe0f.png","sheet_x":33,"sheet_y":43,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"FACE WITH NO GOOD GESTURE","unified":"1F645","non_qualified":null,"docomo":"E72F","au":"EAD7","softbank":"E423","google":"FE351","image":"1f645.png","sheet_x":33,"sheet_y":44,"short_name":"no_good","short_names":["no_good"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":262,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F645-1F3FB","non_qualified":null,"image":"1f645-1f3fb.png","sheet_x":33,"sheet_y":45,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F645-1F3FC","non_qualified":null,"image":"1f645-1f3fc.png","sheet_x":33,"sheet_y":46,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F645-1F3FD","non_qualified":null,"image":"1f645-1f3fd.png","sheet_x":33,"sheet_y":47,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F645-1F3FE","non_qualified":null,"image":"1f645-1f3fe.png","sheet_x":33,"sheet_y":48,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F645-1F3FF","non_qualified":null,"image":"1f645-1f3ff.png","sheet_x":33,"sheet_y":49,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}},"obsoleted_by":"1F645-200D-2640-FE0F"},{"name":"WOMAN GESTURING OK","unified":"1F646-200D-2640-FE0F","non_qualified":"1F646-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f646-200d-2640-fe0f.png","sheet_x":33,"sheet_y":50,"short_name":"woman-gesturing-ok","short_names":["woman-gesturing-ok"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":267,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F646-1F3FB-200D-2640-FE0F","non_qualified":"1F646-1F3FB-200D-2640","image":"1f646-1f3fb-200d-2640-fe0f.png","sheet_x":33,"sheet_y":51,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F646-1F3FC-200D-2640-FE0F","non_qualified":"1F646-1F3FC-200D-2640","image":"1f646-1f3fc-200d-2640-fe0f.png","sheet_x":33,"sheet_y":52,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F646-1F3FD-200D-2640-FE0F","non_qualified":"1F646-1F3FD-200D-2640","image":"1f646-1f3fd-200d-2640-fe0f.png","sheet_x":33,"sheet_y":53,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F646-1F3FE-200D-2640-FE0F","non_qualified":"1F646-1F3FE-200D-2640","image":"1f646-1f3fe-200d-2640-fe0f.png","sheet_x":33,"sheet_y":54,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F646-1F3FF-200D-2640-FE0F","non_qualified":"1F646-1F3FF-200D-2640","image":"1f646-1f3ff-200d-2640-fe0f.png","sheet_x":33,"sheet_y":55,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}},"obsoletes":"1F646"},{"name":"MAN GESTURING OK","unified":"1F646-200D-2642-FE0F","non_qualified":"1F646-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f646-200d-2642-fe0f.png","sheet_x":33,"sheet_y":56,"short_name":"man-gesturing-ok","short_names":["man-gesturing-ok"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":266,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F646-1F3FB-200D-2642-FE0F","non_qualified":"1F646-1F3FB-200D-2642","image":"1f646-1f3fb-200d-2642-fe0f.png","sheet_x":33,"sheet_y":57,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F646-1F3FC-200D-2642-FE0F","non_qualified":"1F646-1F3FC-200D-2642","image":"1f646-1f3fc-200d-2642-fe0f.png","sheet_x":33,"sheet_y":58,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F646-1F3FD-200D-2642-FE0F","non_qualified":"1F646-1F3FD-200D-2642","image":"1f646-1f3fd-200d-2642-fe0f.png","sheet_x":33,"sheet_y":59,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F646-1F3FE-200D-2642-FE0F","non_qualified":"1F646-1F3FE-200D-2642","image":"1f646-1f3fe-200d-2642-fe0f.png","sheet_x":33,"sheet_y":60,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F646-1F3FF-200D-2642-FE0F","non_qualified":"1F646-1F3FF-200D-2642","image":"1f646-1f3ff-200d-2642-fe0f.png","sheet_x":34,"sheet_y":0,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"FACE WITH OK GESTURE","unified":"1F646","non_qualified":null,"docomo":"E70B","au":"EAD8","softbank":"E424","google":"FE352","image":"1f646.png","sheet_x":34,"sheet_y":1,"short_name":"ok_woman","short_names":["ok_woman"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":265,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F646-1F3FB","non_qualified":null,"image":"1f646-1f3fb.png","sheet_x":34,"sheet_y":2,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F646-1F3FC","non_qualified":null,"image":"1f646-1f3fc.png","sheet_x":34,"sheet_y":3,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F646-1F3FD","non_qualified":null,"image":"1f646-1f3fd.png","sheet_x":34,"sheet_y":4,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F646-1F3FE","non_qualified":null,"image":"1f646-1f3fe.png","sheet_x":34,"sheet_y":5,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F646-1F3FF","non_qualified":null,"image":"1f646-1f3ff.png","sheet_x":34,"sheet_y":6,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}},"obsoleted_by":"1F646-200D-2640-FE0F"},{"name":"WOMAN BOWING","unified":"1F647-200D-2640-FE0F","non_qualified":"1F647-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f647-200d-2640-fe0f.png","sheet_x":34,"sheet_y":7,"short_name":"woman-bowing","short_names":["woman-bowing"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":279,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F647-1F3FB-200D-2640-FE0F","non_qualified":"1F647-1F3FB-200D-2640","image":"1f647-1f3fb-200d-2640-fe0f.png","sheet_x":34,"sheet_y":8,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F647-1F3FC-200D-2640-FE0F","non_qualified":"1F647-1F3FC-200D-2640","image":"1f647-1f3fc-200d-2640-fe0f.png","sheet_x":34,"sheet_y":9,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F647-1F3FD-200D-2640-FE0F","non_qualified":"1F647-1F3FD-200D-2640","image":"1f647-1f3fd-200d-2640-fe0f.png","sheet_x":34,"sheet_y":10,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F647-1F3FE-200D-2640-FE0F","non_qualified":"1F647-1F3FE-200D-2640","image":"1f647-1f3fe-200d-2640-fe0f.png","sheet_x":34,"sheet_y":11,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F647-1F3FF-200D-2640-FE0F","non_qualified":"1F647-1F3FF-200D-2640","image":"1f647-1f3ff-200d-2640-fe0f.png","sheet_x":34,"sheet_y":12,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MAN BOWING","unified":"1F647-200D-2642-FE0F","non_qualified":"1F647-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f647-200d-2642-fe0f.png","sheet_x":34,"sheet_y":13,"short_name":"man-bowing","short_names":["man-bowing"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":278,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F647-1F3FB-200D-2642-FE0F","non_qualified":"1F647-1F3FB-200D-2642","image":"1f647-1f3fb-200d-2642-fe0f.png","sheet_x":34,"sheet_y":14,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F647-1F3FC-200D-2642-FE0F","non_qualified":"1F647-1F3FC-200D-2642","image":"1f647-1f3fc-200d-2642-fe0f.png","sheet_x":34,"sheet_y":15,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F647-1F3FD-200D-2642-FE0F","non_qualified":"1F647-1F3FD-200D-2642","image":"1f647-1f3fd-200d-2642-fe0f.png","sheet_x":34,"sheet_y":16,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F647-1F3FE-200D-2642-FE0F","non_qualified":"1F647-1F3FE-200D-2642","image":"1f647-1f3fe-200d-2642-fe0f.png","sheet_x":34,"sheet_y":17,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F647-1F3FF-200D-2642-FE0F","non_qualified":"1F647-1F3FF-200D-2642","image":"1f647-1f3ff-200d-2642-fe0f.png","sheet_x":34,"sheet_y":18,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"PERSON BOWING DEEPLY","unified":"1F647","non_qualified":null,"docomo":null,"au":"EAD9","softbank":"E426","google":"FE353","image":"1f647.png","sheet_x":34,"sheet_y":19,"short_name":"bow","short_names":["bow"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":277,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F647-1F3FB","non_qualified":null,"image":"1f647-1f3fb.png","sheet_x":34,"sheet_y":20,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F647-1F3FC","non_qualified":null,"image":"1f647-1f3fc.png","sheet_x":34,"sheet_y":21,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F647-1F3FD","non_qualified":null,"image":"1f647-1f3fd.png","sheet_x":34,"sheet_y":22,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F647-1F3FE","non_qualified":null,"image":"1f647-1f3fe.png","sheet_x":34,"sheet_y":23,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F647-1F3FF","non_qualified":null,"image":"1f647-1f3ff.png","sheet_x":34,"sheet_y":24,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"SEE-NO-EVIL MONKEY","unified":"1F648","non_qualified":null,"docomo":null,"au":"EB50","softbank":null,"google":"FE354","image":"1f648.png","sheet_x":34,"sheet_y":25,"short_name":"see_no_evil","short_names":["see_no_evil"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"monkey-face","sort_order":125,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HEAR-NO-EVIL MONKEY","unified":"1F649","non_qualified":null,"docomo":null,"au":"EB52","softbank":null,"google":"FE356","image":"1f649.png","sheet_x":34,"sheet_y":26,"short_name":"hear_no_evil","short_names":["hear_no_evil"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"monkey-face","sort_order":126,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SPEAK-NO-EVIL MONKEY","unified":"1F64A","non_qualified":null,"docomo":null,"au":"EB51","softbank":null,"google":"FE355","image":"1f64a.png","sheet_x":34,"sheet_y":27,"short_name":"speak_no_evil","short_names":["speak_no_evil"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"monkey-face","sort_order":127,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WOMAN RAISING HAND","unified":"1F64B-200D-2640-FE0F","non_qualified":"1F64B-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f64b-200d-2640-fe0f.png","sheet_x":34,"sheet_y":28,"short_name":"woman-raising-hand","short_names":["woman-raising-hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":273,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F64B-1F3FB-200D-2640-FE0F","non_qualified":"1F64B-1F3FB-200D-2640","image":"1f64b-1f3fb-200d-2640-fe0f.png","sheet_x":34,"sheet_y":29,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F64B-1F3FC-200D-2640-FE0F","non_qualified":"1F64B-1F3FC-200D-2640","image":"1f64b-1f3fc-200d-2640-fe0f.png","sheet_x":34,"sheet_y":30,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F64B-1F3FD-200D-2640-FE0F","non_qualified":"1F64B-1F3FD-200D-2640","image":"1f64b-1f3fd-200d-2640-fe0f.png","sheet_x":34,"sheet_y":31,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F64B-1F3FE-200D-2640-FE0F","non_qualified":"1F64B-1F3FE-200D-2640","image":"1f64b-1f3fe-200d-2640-fe0f.png","sheet_x":34,"sheet_y":32,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F64B-1F3FF-200D-2640-FE0F","non_qualified":"1F64B-1F3FF-200D-2640","image":"1f64b-1f3ff-200d-2640-fe0f.png","sheet_x":34,"sheet_y":33,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}},"obsoletes":"1F64B"},{"name":"MAN RAISING HAND","unified":"1F64B-200D-2642-FE0F","non_qualified":"1F64B-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f64b-200d-2642-fe0f.png","sheet_x":34,"sheet_y":34,"short_name":"man-raising-hand","short_names":["man-raising-hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":272,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F64B-1F3FB-200D-2642-FE0F","non_qualified":"1F64B-1F3FB-200D-2642","image":"1f64b-1f3fb-200d-2642-fe0f.png","sheet_x":34,"sheet_y":35,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F64B-1F3FC-200D-2642-FE0F","non_qualified":"1F64B-1F3FC-200D-2642","image":"1f64b-1f3fc-200d-2642-fe0f.png","sheet_x":34,"sheet_y":36,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F64B-1F3FD-200D-2642-FE0F","non_qualified":"1F64B-1F3FD-200D-2642","image":"1f64b-1f3fd-200d-2642-fe0f.png","sheet_x":34,"sheet_y":37,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F64B-1F3FE-200D-2642-FE0F","non_qualified":"1F64B-1F3FE-200D-2642","image":"1f64b-1f3fe-200d-2642-fe0f.png","sheet_x":34,"sheet_y":38,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F64B-1F3FF-200D-2642-FE0F","non_qualified":"1F64B-1F3FF-200D-2642","image":"1f64b-1f3ff-200d-2642-fe0f.png","sheet_x":34,"sheet_y":39,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"HAPPY PERSON RAISING ONE HAND","unified":"1F64B","non_qualified":null,"docomo":null,"au":"EB85","softbank":null,"google":"FE357","image":"1f64b.png","sheet_x":34,"sheet_y":40,"short_name":"raising_hand","short_names":["raising_hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":271,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F64B-1F3FB","non_qualified":null,"image":"1f64b-1f3fb.png","sheet_x":34,"sheet_y":41,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F64B-1F3FC","non_qualified":null,"image":"1f64b-1f3fc.png","sheet_x":34,"sheet_y":42,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F64B-1F3FD","non_qualified":null,"image":"1f64b-1f3fd.png","sheet_x":34,"sheet_y":43,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F64B-1F3FE","non_qualified":null,"image":"1f64b-1f3fe.png","sheet_x":34,"sheet_y":44,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F64B-1F3FF","non_qualified":null,"image":"1f64b-1f3ff.png","sheet_x":34,"sheet_y":45,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}},"obsoleted_by":"1F64B-200D-2640-FE0F"},{"name":"PERSON RAISING BOTH HANDS IN CELEBRATION","unified":"1F64C","non_qualified":null,"docomo":null,"au":"EB86","softbank":"E427","google":"FE358","image":"1f64c.png","sheet_x":34,"sheet_y":46,"short_name":"raised_hands","short_names":["raised_hands"],"text":null,"texts":null,"category":"People & Body","subcategory":"hands","sort_order":201,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F64C-1F3FB","non_qualified":null,"image":"1f64c-1f3fb.png","sheet_x":34,"sheet_y":47,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F64C-1F3FC","non_qualified":null,"image":"1f64c-1f3fc.png","sheet_x":34,"sheet_y":48,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F64C-1F3FD","non_qualified":null,"image":"1f64c-1f3fd.png","sheet_x":34,"sheet_y":49,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F64C-1F3FE","non_qualified":null,"image":"1f64c-1f3fe.png","sheet_x":34,"sheet_y":50,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F64C-1F3FF","non_qualified":null,"image":"1f64c-1f3ff.png","sheet_x":34,"sheet_y":51,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"WOMAN FROWNING","unified":"1F64D-200D-2640-FE0F","non_qualified":"1F64D-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f64d-200d-2640-fe0f.png","sheet_x":34,"sheet_y":52,"short_name":"woman-frowning","short_names":["woman-frowning"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":258,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F64D-1F3FB-200D-2640-FE0F","non_qualified":"1F64D-1F3FB-200D-2640","image":"1f64d-1f3fb-200d-2640-fe0f.png","sheet_x":34,"sheet_y":53,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F64D-1F3FC-200D-2640-FE0F","non_qualified":"1F64D-1F3FC-200D-2640","image":"1f64d-1f3fc-200d-2640-fe0f.png","sheet_x":34,"sheet_y":54,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F64D-1F3FD-200D-2640-FE0F","non_qualified":"1F64D-1F3FD-200D-2640","image":"1f64d-1f3fd-200d-2640-fe0f.png","sheet_x":34,"sheet_y":55,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F64D-1F3FE-200D-2640-FE0F","non_qualified":"1F64D-1F3FE-200D-2640","image":"1f64d-1f3fe-200d-2640-fe0f.png","sheet_x":34,"sheet_y":56,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F64D-1F3FF-200D-2640-FE0F","non_qualified":"1F64D-1F3FF-200D-2640","image":"1f64d-1f3ff-200d-2640-fe0f.png","sheet_x":34,"sheet_y":57,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}},"obsoletes":"1F64D"},{"name":"MAN FROWNING","unified":"1F64D-200D-2642-FE0F","non_qualified":"1F64D-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f64d-200d-2642-fe0f.png","sheet_x":34,"sheet_y":58,"short_name":"man-frowning","short_names":["man-frowning"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":257,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F64D-1F3FB-200D-2642-FE0F","non_qualified":"1F64D-1F3FB-200D-2642","image":"1f64d-1f3fb-200d-2642-fe0f.png","sheet_x":34,"sheet_y":59,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F64D-1F3FC-200D-2642-FE0F","non_qualified":"1F64D-1F3FC-200D-2642","image":"1f64d-1f3fc-200d-2642-fe0f.png","sheet_x":34,"sheet_y":60,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F64D-1F3FD-200D-2642-FE0F","non_qualified":"1F64D-1F3FD-200D-2642","image":"1f64d-1f3fd-200d-2642-fe0f.png","sheet_x":35,"sheet_y":0,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F64D-1F3FE-200D-2642-FE0F","non_qualified":"1F64D-1F3FE-200D-2642","image":"1f64d-1f3fe-200d-2642-fe0f.png","sheet_x":35,"sheet_y":1,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F64D-1F3FF-200D-2642-FE0F","non_qualified":"1F64D-1F3FF-200D-2642","image":"1f64d-1f3ff-200d-2642-fe0f.png","sheet_x":35,"sheet_y":2,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"PERSON FROWNING","unified":"1F64D","non_qualified":null,"docomo":"E6F3","au":"EB87","softbank":null,"google":"FE359","image":"1f64d.png","sheet_x":35,"sheet_y":3,"short_name":"person_frowning","short_names":["person_frowning"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":256,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F64D-1F3FB","non_qualified":null,"image":"1f64d-1f3fb.png","sheet_x":35,"sheet_y":4,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F64D-1F3FC","non_qualified":null,"image":"1f64d-1f3fc.png","sheet_x":35,"sheet_y":5,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F64D-1F3FD","non_qualified":null,"image":"1f64d-1f3fd.png","sheet_x":35,"sheet_y":6,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F64D-1F3FE","non_qualified":null,"image":"1f64d-1f3fe.png","sheet_x":35,"sheet_y":7,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F64D-1F3FF","non_qualified":null,"image":"1f64d-1f3ff.png","sheet_x":35,"sheet_y":8,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}},"obsoleted_by":"1F64D-200D-2640-FE0F"},{"name":"WOMAN POUTING","unified":"1F64E-200D-2640-FE0F","non_qualified":"1F64E-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f64e-200d-2640-fe0f.png","sheet_x":35,"sheet_y":9,"short_name":"woman-pouting","short_names":["woman-pouting"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":261,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F64E-1F3FB-200D-2640-FE0F","non_qualified":"1F64E-1F3FB-200D-2640","image":"1f64e-1f3fb-200d-2640-fe0f.png","sheet_x":35,"sheet_y":10,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F64E-1F3FC-200D-2640-FE0F","non_qualified":"1F64E-1F3FC-200D-2640","image":"1f64e-1f3fc-200d-2640-fe0f.png","sheet_x":35,"sheet_y":11,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F64E-1F3FD-200D-2640-FE0F","non_qualified":"1F64E-1F3FD-200D-2640","image":"1f64e-1f3fd-200d-2640-fe0f.png","sheet_x":35,"sheet_y":12,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F64E-1F3FE-200D-2640-FE0F","non_qualified":"1F64E-1F3FE-200D-2640","image":"1f64e-1f3fe-200d-2640-fe0f.png","sheet_x":35,"sheet_y":13,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F64E-1F3FF-200D-2640-FE0F","non_qualified":"1F64E-1F3FF-200D-2640","image":"1f64e-1f3ff-200d-2640-fe0f.png","sheet_x":35,"sheet_y":14,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}},"obsoletes":"1F64E"},{"name":"MAN POUTING","unified":"1F64E-200D-2642-FE0F","non_qualified":"1F64E-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f64e-200d-2642-fe0f.png","sheet_x":35,"sheet_y":15,"short_name":"man-pouting","short_names":["man-pouting"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":260,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F64E-1F3FB-200D-2642-FE0F","non_qualified":"1F64E-1F3FB-200D-2642","image":"1f64e-1f3fb-200d-2642-fe0f.png","sheet_x":35,"sheet_y":16,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F64E-1F3FC-200D-2642-FE0F","non_qualified":"1F64E-1F3FC-200D-2642","image":"1f64e-1f3fc-200d-2642-fe0f.png","sheet_x":35,"sheet_y":17,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F64E-1F3FD-200D-2642-FE0F","non_qualified":"1F64E-1F3FD-200D-2642","image":"1f64e-1f3fd-200d-2642-fe0f.png","sheet_x":35,"sheet_y":18,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F64E-1F3FE-200D-2642-FE0F","non_qualified":"1F64E-1F3FE-200D-2642","image":"1f64e-1f3fe-200d-2642-fe0f.png","sheet_x":35,"sheet_y":19,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F64E-1F3FF-200D-2642-FE0F","non_qualified":"1F64E-1F3FF-200D-2642","image":"1f64e-1f3ff-200d-2642-fe0f.png","sheet_x":35,"sheet_y":20,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"PERSON WITH POUTING FACE","unified":"1F64E","non_qualified":null,"docomo":"E6F1","au":"EB88","softbank":null,"google":"FE35A","image":"1f64e.png","sheet_x":35,"sheet_y":21,"short_name":"person_with_pouting_face","short_names":["person_with_pouting_face"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":259,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F64E-1F3FB","non_qualified":null,"image":"1f64e-1f3fb.png","sheet_x":35,"sheet_y":22,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F64E-1F3FC","non_qualified":null,"image":"1f64e-1f3fc.png","sheet_x":35,"sheet_y":23,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F64E-1F3FD","non_qualified":null,"image":"1f64e-1f3fd.png","sheet_x":35,"sheet_y":24,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F64E-1F3FE","non_qualified":null,"image":"1f64e-1f3fe.png","sheet_x":35,"sheet_y":25,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F64E-1F3FF","non_qualified":null,"image":"1f64e-1f3ff.png","sheet_x":35,"sheet_y":26,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}},"obsoleted_by":"1F64E-200D-2640-FE0F"},{"name":"PERSON WITH FOLDED HANDS","unified":"1F64F","non_qualified":null,"docomo":null,"au":"EAD2","softbank":"E41D","google":"FE35B","image":"1f64f.png","sheet_x":35,"sheet_y":27,"short_name":"pray","short_names":["pray"],"text":null,"texts":null,"category":"People & Body","subcategory":"hands","sort_order":206,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F64F-1F3FB","non_qualified":null,"image":"1f64f-1f3fb.png","sheet_x":35,"sheet_y":28,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F64F-1F3FC","non_qualified":null,"image":"1f64f-1f3fc.png","sheet_x":35,"sheet_y":29,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F64F-1F3FD","non_qualified":null,"image":"1f64f-1f3fd.png","sheet_x":35,"sheet_y":30,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F64F-1F3FE","non_qualified":null,"image":"1f64f-1f3fe.png","sheet_x":35,"sheet_y":31,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F64F-1F3FF","non_qualified":null,"image":"1f64f-1f3ff.png","sheet_x":35,"sheet_y":32,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"ROCKET","unified":"1F680","non_qualified":null,"docomo":null,"au":"E5C8","softbank":"E10D","google":"FE7ED","image":"1f680.png","sheet_x":35,"sheet_y":33,"short_name":"rocket","short_names":["rocket"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-air","sort_order":956,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HELICOPTER","unified":"1F681","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f681.png","sheet_x":35,"sheet_y":34,"short_name":"helicopter","short_names":["helicopter"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-air","sort_order":951,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"STEAM LOCOMOTIVE","unified":"1F682","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f682.png","sheet_x":35,"sheet_y":35,"short_name":"steam_locomotive","short_names":["steam_locomotive"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":886,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"RAILWAY CAR","unified":"1F683","non_qualified":null,"docomo":"E65B","au":"E4B5","softbank":"E01E","google":"FE7DF","image":"1f683.png","sheet_x":35,"sheet_y":36,"short_name":"railway_car","short_names":["railway_car"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":887,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HIGH-SPEED TRAIN","unified":"1F684","non_qualified":null,"docomo":"E65D","au":"E4B0","softbank":"E435","google":"FE7E2","image":"1f684.png","sheet_x":35,"sheet_y":37,"short_name":"bullettrain_side","short_names":["bullettrain_side"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":888,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HIGH-SPEED TRAIN WITH BULLET NOSE","unified":"1F685","non_qualified":null,"docomo":"E65D","au":"E4B0","softbank":"E01F","google":"FE7E3","image":"1f685.png","sheet_x":35,"sheet_y":38,"short_name":"bullettrain_front","short_names":["bullettrain_front"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":889,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"TRAIN","unified":"1F686","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f686.png","sheet_x":35,"sheet_y":39,"short_name":"train2","short_names":["train2"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":890,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"METRO","unified":"1F687","non_qualified":null,"docomo":"E65C","au":"E5BC","softbank":"E434","google":"FE7E0","image":"1f687.png","sheet_x":35,"sheet_y":40,"short_name":"metro","short_names":["metro"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":891,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LIGHT RAIL","unified":"1F688","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f688.png","sheet_x":35,"sheet_y":41,"short_name":"light_rail","short_names":["light_rail"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":892,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"STATION","unified":"1F689","non_qualified":null,"docomo":null,"au":"EB6D","softbank":"E039","google":"FE7EC","image":"1f689.png","sheet_x":35,"sheet_y":42,"short_name":"station","short_names":["station"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":893,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"TRAM","unified":"1F68A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f68a.png","sheet_x":35,"sheet_y":43,"short_name":"tram","short_names":["tram"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":894,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"TRAM CAR","unified":"1F68B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f68b.png","sheet_x":35,"sheet_y":44,"short_name":"train","short_names":["train"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":897,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BUS","unified":"1F68C","non_qualified":null,"docomo":"E660","au":"E4AF","softbank":"E159","google":"FE7E6","image":"1f68c.png","sheet_x":35,"sheet_y":45,"short_name":"bus","short_names":["bus"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":898,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ONCOMING BUS","unified":"1F68D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f68d.png","sheet_x":35,"sheet_y":46,"short_name":"oncoming_bus","short_names":["oncoming_bus"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":899,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"TROLLEYBUS","unified":"1F68E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f68e.png","sheet_x":35,"sheet_y":47,"short_name":"trolleybus","short_names":["trolleybus"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":900,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BUS STOP","unified":"1F68F","non_qualified":null,"docomo":null,"au":"E4A7","softbank":"E150","google":"FE7E7","image":"1f68f.png","sheet_x":35,"sheet_y":48,"short_name":"busstop","short_names":["busstop"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":925,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MINIBUS","unified":"1F690","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f690.png","sheet_x":35,"sheet_y":49,"short_name":"minibus","short_names":["minibus"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":901,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"AMBULANCE","unified":"1F691","non_qualified":null,"docomo":null,"au":"EAE0","softbank":"E431","google":"FE7F3","image":"1f691.png","sheet_x":35,"sheet_y":50,"short_name":"ambulance","short_names":["ambulance"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":902,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FIRE ENGINE","unified":"1F692","non_qualified":null,"docomo":null,"au":"EADF","softbank":"E430","google":"FE7F2","image":"1f692.png","sheet_x":35,"sheet_y":51,"short_name":"fire_engine","short_names":["fire_engine"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":903,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"POLICE CAR","unified":"1F693","non_qualified":null,"docomo":null,"au":"EAE1","softbank":"E432","google":"FE7F4","image":"1f693.png","sheet_x":35,"sheet_y":52,"short_name":"police_car","short_names":["police_car"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":904,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ONCOMING POLICE CAR","unified":"1F694","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f694.png","sheet_x":35,"sheet_y":53,"short_name":"oncoming_police_car","short_names":["oncoming_police_car"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":905,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"TAXI","unified":"1F695","non_qualified":null,"docomo":"E65E","au":"E4B1","softbank":"E15A","google":"FE7EF","image":"1f695.png","sheet_x":35,"sheet_y":54,"short_name":"taxi","short_names":["taxi"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":906,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ONCOMING TAXI","unified":"1F696","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f696.png","sheet_x":35,"sheet_y":55,"short_name":"oncoming_taxi","short_names":["oncoming_taxi"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":907,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"AUTOMOBILE","unified":"1F697","non_qualified":null,"docomo":"E65E","au":"E4B1","softbank":"E01B","google":"FE7E4","image":"1f697.png","sheet_x":35,"sheet_y":56,"short_name":"car","short_names":["car","red_car"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":908,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ONCOMING AUTOMOBILE","unified":"1F698","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f698.png","sheet_x":35,"sheet_y":57,"short_name":"oncoming_automobile","short_names":["oncoming_automobile"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":909,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"RECREATIONAL VEHICLE","unified":"1F699","non_qualified":null,"docomo":"E65F","au":"E4B1","softbank":"E42E","google":"FE7E5","image":"1f699.png","sheet_x":35,"sheet_y":58,"short_name":"blue_car","short_names":["blue_car"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":910,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"DELIVERY TRUCK","unified":"1F69A","non_qualified":null,"docomo":null,"au":"E4B2","softbank":"E42F","google":"FE7F1","image":"1f69a.png","sheet_x":35,"sheet_y":59,"short_name":"truck","short_names":["truck"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":912,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ARTICULATED LORRY","unified":"1F69B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f69b.png","sheet_x":35,"sheet_y":60,"short_name":"articulated_lorry","short_names":["articulated_lorry"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":913,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"TRACTOR","unified":"1F69C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f69c.png","sheet_x":36,"sheet_y":0,"short_name":"tractor","short_names":["tractor"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":914,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MONORAIL","unified":"1F69D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f69d.png","sheet_x":36,"sheet_y":1,"short_name":"monorail","short_names":["monorail"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":895,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MOUNTAIN RAILWAY","unified":"1F69E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f69e.png","sheet_x":36,"sheet_y":2,"short_name":"mountain_railway","short_names":["mountain_railway"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":896,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SUSPENSION RAILWAY","unified":"1F69F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f69f.png","sheet_x":36,"sheet_y":3,"short_name":"suspension_railway","short_names":["suspension_railway"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-air","sort_order":952,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MOUNTAIN CABLEWAY","unified":"1F6A0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6a0.png","sheet_x":36,"sheet_y":4,"short_name":"mountain_cableway","short_names":["mountain_cableway"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-air","sort_order":953,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"AERIAL TRAMWAY","unified":"1F6A1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6a1.png","sheet_x":36,"sheet_y":5,"short_name":"aerial_tramway","short_names":["aerial_tramway"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-air","sort_order":954,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SHIP","unified":"1F6A2","non_qualified":null,"docomo":"E661","au":"EA82","softbank":"E202","google":"FE7E8","image":"1f6a2.png","sheet_x":36,"sheet_y":6,"short_name":"ship","short_names":["ship"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-water","sort_order":944,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WOMAN ROWING BOAT","unified":"1F6A3-200D-2640-FE0F","non_qualified":"1F6A3-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6a3-200d-2640-fe0f.png","sheet_x":36,"sheet_y":7,"short_name":"woman-rowing-boat","short_names":["woman-rowing-boat"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":451,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F6A3-1F3FB-200D-2640-FE0F","non_qualified":"1F6A3-1F3FB-200D-2640","image":"1f6a3-1f3fb-200d-2640-fe0f.png","sheet_x":36,"sheet_y":8,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F6A3-1F3FC-200D-2640-FE0F","non_qualified":"1F6A3-1F3FC-200D-2640","image":"1f6a3-1f3fc-200d-2640-fe0f.png","sheet_x":36,"sheet_y":9,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F6A3-1F3FD-200D-2640-FE0F","non_qualified":"1F6A3-1F3FD-200D-2640","image":"1f6a3-1f3fd-200d-2640-fe0f.png","sheet_x":36,"sheet_y":10,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F6A3-1F3FE-200D-2640-FE0F","non_qualified":"1F6A3-1F3FE-200D-2640","image":"1f6a3-1f3fe-200d-2640-fe0f.png","sheet_x":36,"sheet_y":11,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F6A3-1F3FF-200D-2640-FE0F","non_qualified":"1F6A3-1F3FF-200D-2640","image":"1f6a3-1f3ff-200d-2640-fe0f.png","sheet_x":36,"sheet_y":12,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MAN ROWING BOAT","unified":"1F6A3-200D-2642-FE0F","non_qualified":"1F6A3-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6a3-200d-2642-fe0f.png","sheet_x":36,"sheet_y":13,"short_name":"man-rowing-boat","short_names":["man-rowing-boat"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":450,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F6A3-1F3FB-200D-2642-FE0F","non_qualified":"1F6A3-1F3FB-200D-2642","image":"1f6a3-1f3fb-200d-2642-fe0f.png","sheet_x":36,"sheet_y":14,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F6A3-1F3FC-200D-2642-FE0F","non_qualified":"1F6A3-1F3FC-200D-2642","image":"1f6a3-1f3fc-200d-2642-fe0f.png","sheet_x":36,"sheet_y":15,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F6A3-1F3FD-200D-2642-FE0F","non_qualified":"1F6A3-1F3FD-200D-2642","image":"1f6a3-1f3fd-200d-2642-fe0f.png","sheet_x":36,"sheet_y":16,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F6A3-1F3FE-200D-2642-FE0F","non_qualified":"1F6A3-1F3FE-200D-2642","image":"1f6a3-1f3fe-200d-2642-fe0f.png","sheet_x":36,"sheet_y":17,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F6A3-1F3FF-200D-2642-FE0F","non_qualified":"1F6A3-1F3FF-200D-2642","image":"1f6a3-1f3ff-200d-2642-fe0f.png","sheet_x":36,"sheet_y":18,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}},"obsoletes":"1F6A3"},{"name":"ROWBOAT","unified":"1F6A3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6a3.png","sheet_x":36,"sheet_y":19,"short_name":"rowboat","short_names":["rowboat"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":449,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F6A3-1F3FB","non_qualified":null,"image":"1f6a3-1f3fb.png","sheet_x":36,"sheet_y":20,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F6A3-1F3FC","non_qualified":null,"image":"1f6a3-1f3fc.png","sheet_x":36,"sheet_y":21,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F6A3-1F3FD","non_qualified":null,"image":"1f6a3-1f3fd.png","sheet_x":36,"sheet_y":22,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F6A3-1F3FE","non_qualified":null,"image":"1f6a3-1f3fe.png","sheet_x":36,"sheet_y":23,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F6A3-1F3FF","non_qualified":null,"image":"1f6a3-1f3ff.png","sheet_x":36,"sheet_y":24,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}},"obsoleted_by":"1F6A3-200D-2642-FE0F"},{"name":"SPEEDBOAT","unified":"1F6A4","non_qualified":null,"docomo":"E6A3","au":"E4B4","softbank":"E135","google":"FE7EE","image":"1f6a4.png","sheet_x":36,"sheet_y":25,"short_name":"speedboat","short_names":["speedboat"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-water","sort_order":940,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HORIZONTAL TRAFFIC LIGHT","unified":"1F6A5","non_qualified":null,"docomo":"E66D","au":"E46A","softbank":"E14E","google":"FE7F7","image":"1f6a5.png","sheet_x":36,"sheet_y":26,"short_name":"traffic_light","short_names":["traffic_light"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":932,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"VERTICAL TRAFFIC LIGHT","unified":"1F6A6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6a6.png","sheet_x":36,"sheet_y":27,"short_name":"vertical_traffic_light","short_names":["vertical_traffic_light"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":933,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CONSTRUCTION SIGN","unified":"1F6A7","non_qualified":null,"docomo":null,"au":"E5D7","softbank":"E137","google":"FE7F8","image":"1f6a7.png","sheet_x":36,"sheet_y":28,"short_name":"construction","short_names":["construction"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":935,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"POLICE CARS REVOLVING LIGHT","unified":"1F6A8","non_qualified":null,"docomo":null,"au":"EB73","softbank":null,"google":"FE7F9","image":"1f6a8.png","sheet_x":36,"sheet_y":29,"short_name":"rotating_light","short_names":["rotating_light"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":931,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"TRIANGULAR FLAG ON POST","unified":"1F6A9","non_qualified":null,"docomo":"E6DE","au":"EB2C","softbank":null,"google":"FEB22","image":"1f6a9.png","sheet_x":36,"sheet_y":30,"short_name":"triangular_flag_on_post","short_names":["triangular_flag_on_post"],"text":null,"texts":null,"category":"Flags","subcategory":"flag","sort_order":1608,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"DOOR","unified":"1F6AA","non_qualified":null,"docomo":"E714","au":null,"softbank":null,"google":"FE4F3","image":"1f6aa.png","sheet_x":36,"sheet_y":31,"short_name":"door","short_names":["door"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1350,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"NO ENTRY SIGN","unified":"1F6AB","non_qualified":null,"docomo":"E738","au":"E541","softbank":null,"google":"FEB48","image":"1f6ab.png","sheet_x":36,"sheet_y":32,"short_name":"no_entry_sign","short_names":["no_entry_sign"],"text":null,"texts":null,"category":"Symbols","subcategory":"warning","sort_order":1400,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SMOKING SYMBOL","unified":"1F6AC","non_qualified":null,"docomo":"E67F","au":"E47D","softbank":"E30E","google":"FEB1E","image":"1f6ac.png","sheet_x":36,"sheet_y":33,"short_name":"smoking","short_names":["smoking"],"text":null,"texts":null,"category":"Objects","subcategory":"other-object","sort_order":1375,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"NO SMOKING SYMBOL","unified":"1F6AD","non_qualified":null,"docomo":"E680","au":"E47E","softbank":"E208","google":"FEB1F","image":"1f6ad.png","sheet_x":36,"sheet_y":34,"short_name":"no_smoking","short_names":["no_smoking"],"text":null,"texts":null,"category":"Symbols","subcategory":"warning","sort_order":1402,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PUT LITTER IN ITS PLACE SYMBOL","unified":"1F6AE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6ae.png","sheet_x":36,"sheet_y":35,"short_name":"put_litter_in_its_place","short_names":["put_litter_in_its_place"],"text":null,"texts":null,"category":"Symbols","subcategory":"transport-sign","sort_order":1385,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"DO NOT LITTER SYMBOL","unified":"1F6AF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6af.png","sheet_x":36,"sheet_y":36,"short_name":"do_not_litter","short_names":["do_not_litter"],"text":null,"texts":null,"category":"Symbols","subcategory":"warning","sort_order":1403,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"POTABLE WATER SYMBOL","unified":"1F6B0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b0.png","sheet_x":36,"sheet_y":37,"short_name":"potable_water","short_names":["potable_water"],"text":null,"texts":null,"category":"Symbols","subcategory":"transport-sign","sort_order":1386,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"NON-POTABLE WATER SYMBOL","unified":"1F6B1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b1.png","sheet_x":36,"sheet_y":38,"short_name":"non-potable_water","short_names":["non-potable_water"],"text":null,"texts":null,"category":"Symbols","subcategory":"warning","sort_order":1404,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BICYCLE","unified":"1F6B2","non_qualified":null,"docomo":"E71D","au":"E4AE","softbank":"E136","google":"FE7EB","image":"1f6b2.png","sheet_x":36,"sheet_y":39,"short_name":"bike","short_names":["bike"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":921,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"NO BICYCLES","unified":"1F6B3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b3.png","sheet_x":36,"sheet_y":40,"short_name":"no_bicycles","short_names":["no_bicycles"],"text":null,"texts":null,"category":"Symbols","subcategory":"warning","sort_order":1401,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WOMAN BIKING","unified":"1F6B4-200D-2640-FE0F","non_qualified":"1F6B4-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b4-200d-2640-fe0f.png","sheet_x":36,"sheet_y":41,"short_name":"woman-biking","short_names":["woman-biking"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":463,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F6B4-1F3FB-200D-2640-FE0F","non_qualified":"1F6B4-1F3FB-200D-2640","image":"1f6b4-1f3fb-200d-2640-fe0f.png","sheet_x":36,"sheet_y":42,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F6B4-1F3FC-200D-2640-FE0F","non_qualified":"1F6B4-1F3FC-200D-2640","image":"1f6b4-1f3fc-200d-2640-fe0f.png","sheet_x":36,"sheet_y":43,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F6B4-1F3FD-200D-2640-FE0F","non_qualified":"1F6B4-1F3FD-200D-2640","image":"1f6b4-1f3fd-200d-2640-fe0f.png","sheet_x":36,"sheet_y":44,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F6B4-1F3FE-200D-2640-FE0F","non_qualified":"1F6B4-1F3FE-200D-2640","image":"1f6b4-1f3fe-200d-2640-fe0f.png","sheet_x":36,"sheet_y":45,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F6B4-1F3FF-200D-2640-FE0F","non_qualified":"1F6B4-1F3FF-200D-2640","image":"1f6b4-1f3ff-200d-2640-fe0f.png","sheet_x":36,"sheet_y":46,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MAN BIKING","unified":"1F6B4-200D-2642-FE0F","non_qualified":"1F6B4-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b4-200d-2642-fe0f.png","sheet_x":36,"sheet_y":47,"short_name":"man-biking","short_names":["man-biking"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":462,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F6B4-1F3FB-200D-2642-FE0F","non_qualified":"1F6B4-1F3FB-200D-2642","image":"1f6b4-1f3fb-200d-2642-fe0f.png","sheet_x":36,"sheet_y":48,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F6B4-1F3FC-200D-2642-FE0F","non_qualified":"1F6B4-1F3FC-200D-2642","image":"1f6b4-1f3fc-200d-2642-fe0f.png","sheet_x":36,"sheet_y":49,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F6B4-1F3FD-200D-2642-FE0F","non_qualified":"1F6B4-1F3FD-200D-2642","image":"1f6b4-1f3fd-200d-2642-fe0f.png","sheet_x":36,"sheet_y":50,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F6B4-1F3FE-200D-2642-FE0F","non_qualified":"1F6B4-1F3FE-200D-2642","image":"1f6b4-1f3fe-200d-2642-fe0f.png","sheet_x":36,"sheet_y":51,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F6B4-1F3FF-200D-2642-FE0F","non_qualified":"1F6B4-1F3FF-200D-2642","image":"1f6b4-1f3ff-200d-2642-fe0f.png","sheet_x":36,"sheet_y":52,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}},"obsoletes":"1F6B4"},{"name":"BICYCLIST","unified":"1F6B4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b4.png","sheet_x":36,"sheet_y":53,"short_name":"bicyclist","short_names":["bicyclist"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":461,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F6B4-1F3FB","non_qualified":null,"image":"1f6b4-1f3fb.png","sheet_x":36,"sheet_y":54,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F6B4-1F3FC","non_qualified":null,"image":"1f6b4-1f3fc.png","sheet_x":36,"sheet_y":55,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F6B4-1F3FD","non_qualified":null,"image":"1f6b4-1f3fd.png","sheet_x":36,"sheet_y":56,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F6B4-1F3FE","non_qualified":null,"image":"1f6b4-1f3fe.png","sheet_x":36,"sheet_y":57,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F6B4-1F3FF","non_qualified":null,"image":"1f6b4-1f3ff.png","sheet_x":36,"sheet_y":58,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}},"obsoleted_by":"1F6B4-200D-2642-FE0F"},{"name":"WOMAN MOUNTAIN BIKING","unified":"1F6B5-200D-2640-FE0F","non_qualified":"1F6B5-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b5-200d-2640-fe0f.png","sheet_x":36,"sheet_y":59,"short_name":"woman-mountain-biking","short_names":["woman-mountain-biking"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":466,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F6B5-1F3FB-200D-2640-FE0F","non_qualified":"1F6B5-1F3FB-200D-2640","image":"1f6b5-1f3fb-200d-2640-fe0f.png","sheet_x":36,"sheet_y":60,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F6B5-1F3FC-200D-2640-FE0F","non_qualified":"1F6B5-1F3FC-200D-2640","image":"1f6b5-1f3fc-200d-2640-fe0f.png","sheet_x":37,"sheet_y":0,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F6B5-1F3FD-200D-2640-FE0F","non_qualified":"1F6B5-1F3FD-200D-2640","image":"1f6b5-1f3fd-200d-2640-fe0f.png","sheet_x":37,"sheet_y":1,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F6B5-1F3FE-200D-2640-FE0F","non_qualified":"1F6B5-1F3FE-200D-2640","image":"1f6b5-1f3fe-200d-2640-fe0f.png","sheet_x":37,"sheet_y":2,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F6B5-1F3FF-200D-2640-FE0F","non_qualified":"1F6B5-1F3FF-200D-2640","image":"1f6b5-1f3ff-200d-2640-fe0f.png","sheet_x":37,"sheet_y":3,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MAN MOUNTAIN BIKING","unified":"1F6B5-200D-2642-FE0F","non_qualified":"1F6B5-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b5-200d-2642-fe0f.png","sheet_x":37,"sheet_y":4,"short_name":"man-mountain-biking","short_names":["man-mountain-biking"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":465,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F6B5-1F3FB-200D-2642-FE0F","non_qualified":"1F6B5-1F3FB-200D-2642","image":"1f6b5-1f3fb-200d-2642-fe0f.png","sheet_x":37,"sheet_y":5,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F6B5-1F3FC-200D-2642-FE0F","non_qualified":"1F6B5-1F3FC-200D-2642","image":"1f6b5-1f3fc-200d-2642-fe0f.png","sheet_x":37,"sheet_y":6,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F6B5-1F3FD-200D-2642-FE0F","non_qualified":"1F6B5-1F3FD-200D-2642","image":"1f6b5-1f3fd-200d-2642-fe0f.png","sheet_x":37,"sheet_y":7,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F6B5-1F3FE-200D-2642-FE0F","non_qualified":"1F6B5-1F3FE-200D-2642","image":"1f6b5-1f3fe-200d-2642-fe0f.png","sheet_x":37,"sheet_y":8,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F6B5-1F3FF-200D-2642-FE0F","non_qualified":"1F6B5-1F3FF-200D-2642","image":"1f6b5-1f3ff-200d-2642-fe0f.png","sheet_x":37,"sheet_y":9,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}},"obsoletes":"1F6B5"},{"name":"MOUNTAIN BICYCLIST","unified":"1F6B5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b5.png","sheet_x":37,"sheet_y":10,"short_name":"mountain_bicyclist","short_names":["mountain_bicyclist"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":464,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F6B5-1F3FB","non_qualified":null,"image":"1f6b5-1f3fb.png","sheet_x":37,"sheet_y":11,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F6B5-1F3FC","non_qualified":null,"image":"1f6b5-1f3fc.png","sheet_x":37,"sheet_y":12,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F6B5-1F3FD","non_qualified":null,"image":"1f6b5-1f3fd.png","sheet_x":37,"sheet_y":13,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F6B5-1F3FE","non_qualified":null,"image":"1f6b5-1f3fe.png","sheet_x":37,"sheet_y":14,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F6B5-1F3FF","non_qualified":null,"image":"1f6b5-1f3ff.png","sheet_x":37,"sheet_y":15,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}},"obsoleted_by":"1F6B5-200D-2642-FE0F"},{"name":"WOMAN WALKING","unified":"1F6B6-200D-2640-FE0F","non_qualified":"1F6B6-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b6-200d-2640-fe0f.png","sheet_x":37,"sheet_y":16,"short_name":"woman-walking","short_names":["woman-walking"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":408,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F6B6-1F3FB-200D-2640-FE0F","non_qualified":"1F6B6-1F3FB-200D-2640","image":"1f6b6-1f3fb-200d-2640-fe0f.png","sheet_x":37,"sheet_y":17,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F6B6-1F3FC-200D-2640-FE0F","non_qualified":"1F6B6-1F3FC-200D-2640","image":"1f6b6-1f3fc-200d-2640-fe0f.png","sheet_x":37,"sheet_y":18,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F6B6-1F3FD-200D-2640-FE0F","non_qualified":"1F6B6-1F3FD-200D-2640","image":"1f6b6-1f3fd-200d-2640-fe0f.png","sheet_x":37,"sheet_y":19,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F6B6-1F3FE-200D-2640-FE0F","non_qualified":"1F6B6-1F3FE-200D-2640","image":"1f6b6-1f3fe-200d-2640-fe0f.png","sheet_x":37,"sheet_y":20,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F6B6-1F3FF-200D-2640-FE0F","non_qualified":"1F6B6-1F3FF-200D-2640","image":"1f6b6-1f3ff-200d-2640-fe0f.png","sheet_x":37,"sheet_y":21,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MAN WALKING","unified":"1F6B6-200D-2642-FE0F","non_qualified":"1F6B6-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b6-200d-2642-fe0f.png","sheet_x":37,"sheet_y":22,"short_name":"man-walking","short_names":["man-walking"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":407,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F6B6-1F3FB-200D-2642-FE0F","non_qualified":"1F6B6-1F3FB-200D-2642","image":"1f6b6-1f3fb-200d-2642-fe0f.png","sheet_x":37,"sheet_y":23,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F6B6-1F3FC-200D-2642-FE0F","non_qualified":"1F6B6-1F3FC-200D-2642","image":"1f6b6-1f3fc-200d-2642-fe0f.png","sheet_x":37,"sheet_y":24,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F6B6-1F3FD-200D-2642-FE0F","non_qualified":"1F6B6-1F3FD-200D-2642","image":"1f6b6-1f3fd-200d-2642-fe0f.png","sheet_x":37,"sheet_y":25,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F6B6-1F3FE-200D-2642-FE0F","non_qualified":"1F6B6-1F3FE-200D-2642","image":"1f6b6-1f3fe-200d-2642-fe0f.png","sheet_x":37,"sheet_y":26,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F6B6-1F3FF-200D-2642-FE0F","non_qualified":"1F6B6-1F3FF-200D-2642","image":"1f6b6-1f3ff-200d-2642-fe0f.png","sheet_x":37,"sheet_y":27,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}},"obsoletes":"1F6B6"},{"name":"PEDESTRIAN","unified":"1F6B6","non_qualified":null,"docomo":"E733","au":"EB72","softbank":"E201","google":"FE7F0","image":"1f6b6.png","sheet_x":37,"sheet_y":28,"short_name":"walking","short_names":["walking"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":406,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F6B6-1F3FB","non_qualified":null,"image":"1f6b6-1f3fb.png","sheet_x":37,"sheet_y":29,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F6B6-1F3FC","non_qualified":null,"image":"1f6b6-1f3fc.png","sheet_x":37,"sheet_y":30,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F6B6-1F3FD","non_qualified":null,"image":"1f6b6-1f3fd.png","sheet_x":37,"sheet_y":31,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F6B6-1F3FE","non_qualified":null,"image":"1f6b6-1f3fe.png","sheet_x":37,"sheet_y":32,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F6B6-1F3FF","non_qualified":null,"image":"1f6b6-1f3ff.png","sheet_x":37,"sheet_y":33,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}},"obsoleted_by":"1F6B6-200D-2642-FE0F"},{"name":"NO PEDESTRIANS","unified":"1F6B7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b7.png","sheet_x":37,"sheet_y":34,"short_name":"no_pedestrians","short_names":["no_pedestrians"],"text":null,"texts":null,"category":"Symbols","subcategory":"warning","sort_order":1405,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CHILDREN CROSSING","unified":"1F6B8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b8.png","sheet_x":37,"sheet_y":35,"short_name":"children_crossing","short_names":["children_crossing"],"text":null,"texts":null,"category":"Symbols","subcategory":"warning","sort_order":1398,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MENS SYMBOL","unified":"1F6B9","non_qualified":null,"docomo":null,"au":null,"softbank":"E138","google":"FEB33","image":"1f6b9.png","sheet_x":37,"sheet_y":36,"short_name":"mens","short_names":["mens"],"text":null,"texts":null,"category":"Symbols","subcategory":"transport-sign","sort_order":1388,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WOMENS SYMBOL","unified":"1F6BA","non_qualified":null,"docomo":null,"au":null,"softbank":"E139","google":"FEB34","image":"1f6ba.png","sheet_x":37,"sheet_y":37,"short_name":"womens","short_names":["womens"],"text":null,"texts":null,"category":"Symbols","subcategory":"transport-sign","sort_order":1389,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"RESTROOM","unified":"1F6BB","non_qualified":null,"docomo":"E66E","au":"E4A5","softbank":"E151","google":"FE506","image":"1f6bb.png","sheet_x":37,"sheet_y":38,"short_name":"restroom","short_names":["restroom"],"text":null,"texts":null,"category":"Symbols","subcategory":"transport-sign","sort_order":1390,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BABY SYMBOL","unified":"1F6BC","non_qualified":null,"docomo":null,"au":"EB18","softbank":"E13A","google":"FEB35","image":"1f6bc.png","sheet_x":37,"sheet_y":39,"short_name":"baby_symbol","short_names":["baby_symbol"],"text":null,"texts":null,"category":"Symbols","subcategory":"transport-sign","sort_order":1391,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"TOILET","unified":"1F6BD","non_qualified":null,"docomo":"E66E","au":"E4A5","softbank":"E140","google":"FE507","image":"1f6bd.png","sheet_x":37,"sheet_y":40,"short_name":"toilet","short_names":["toilet"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1357,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WATER CLOSET","unified":"1F6BE","non_qualified":null,"docomo":"E66E","au":"E4A5","softbank":"E309","google":"FE508","image":"1f6be.png","sheet_x":37,"sheet_y":41,"short_name":"wc","short_names":["wc"],"text":null,"texts":null,"category":"Symbols","subcategory":"transport-sign","sort_order":1392,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SHOWER","unified":"1F6BF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6bf.png","sheet_x":37,"sheet_y":42,"short_name":"shower","short_names":["shower"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1359,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BATH","unified":"1F6C0","non_qualified":null,"docomo":"E6F7","au":"E5D8","softbank":"E13F","google":"FE505","image":"1f6c0.png","sheet_x":37,"sheet_y":43,"short_name":"bath","short_names":["bath"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-resting","sort_order":485,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F6C0-1F3FB","non_qualified":null,"image":"1f6c0-1f3fb.png","sheet_x":37,"sheet_y":44,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F6C0-1F3FC","non_qualified":null,"image":"1f6c0-1f3fc.png","sheet_x":37,"sheet_y":45,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F6C0-1F3FD","non_qualified":null,"image":"1f6c0-1f3fd.png","sheet_x":37,"sheet_y":46,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F6C0-1F3FE","non_qualified":null,"image":"1f6c0-1f3fe.png","sheet_x":37,"sheet_y":47,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F6C0-1F3FF","non_qualified":null,"image":"1f6c0-1f3ff.png","sheet_x":37,"sheet_y":48,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"BATHTUB","unified":"1F6C1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6c1.png","sheet_x":37,"sheet_y":49,"short_name":"bathtub","short_names":["bathtub"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1360,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PASSPORT CONTROL","unified":"1F6C2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6c2.png","sheet_x":37,"sheet_y":50,"short_name":"passport_control","short_names":["passport_control"],"text":null,"texts":null,"category":"Symbols","subcategory":"transport-sign","sort_order":1393,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CUSTOMS","unified":"1F6C3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6c3.png","sheet_x":37,"sheet_y":51,"short_name":"customs","short_names":["customs"],"text":null,"texts":null,"category":"Symbols","subcategory":"transport-sign","sort_order":1394,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BAGGAGE CLAIM","unified":"1F6C4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6c4.png","sheet_x":37,"sheet_y":52,"short_name":"baggage_claim","short_names":["baggage_claim"],"text":null,"texts":null,"category":"Symbols","subcategory":"transport-sign","sort_order":1395,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LEFT LUGGAGE","unified":"1F6C5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6c5.png","sheet_x":37,"sheet_y":53,"short_name":"left_luggage","short_names":["left_luggage"],"text":null,"texts":null,"category":"Symbols","subcategory":"transport-sign","sort_order":1396,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"COUCH AND LAMP","unified":"1F6CB-FE0F","non_qualified":"1F6CB","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6cb-fe0f.png","sheet_x":37,"sheet_y":54,"short_name":"couch_and_lamp","short_names":["couch_and_lamp"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1355,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SLEEPING ACCOMMODATION","unified":"1F6CC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6cc.png","sheet_x":37,"sheet_y":55,"short_name":"sleeping_accommodation","short_names":["sleeping_accommodation"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-resting","sort_order":486,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F6CC-1F3FB","non_qualified":null,"image":"1f6cc-1f3fb.png","sheet_x":37,"sheet_y":56,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F6CC-1F3FC","non_qualified":null,"image":"1f6cc-1f3fc.png","sheet_x":37,"sheet_y":57,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F6CC-1F3FD","non_qualified":null,"image":"1f6cc-1f3fd.png","sheet_x":37,"sheet_y":58,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F6CC-1F3FE","non_qualified":null,"image":"1f6cc-1f3fe.png","sheet_x":37,"sheet_y":59,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F6CC-1F3FF","non_qualified":null,"image":"1f6cc-1f3ff.png","sheet_x":37,"sheet_y":60,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"SHOPPING BAGS","unified":"1F6CD-FE0F","non_qualified":"1F6CD","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6cd-fe0f.png","sheet_x":38,"sheet_y":0,"short_name":"shopping_bags","short_names":["shopping_bags"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1147,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BELLHOP BELL","unified":"1F6CE-FE0F","non_qualified":"1F6CE","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6ce-fe0f.png","sheet_x":38,"sheet_y":1,"short_name":"bellhop_bell","short_names":["bellhop_bell"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"hotel","sort_order":958,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BED","unified":"1F6CF-FE0F","non_qualified":"1F6CF","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6cf-fe0f.png","sheet_x":38,"sheet_y":2,"short_name":"bed","short_names":["bed"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1354,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PLACE OF WORSHIP","unified":"1F6D0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6d0.png","sheet_x":38,"sheet_y":3,"short_name":"place_of_worship","short_names":["place_of_worship"],"text":null,"texts":null,"category":"Symbols","subcategory":"religion","sort_order":1431,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"OCTAGONAL SIGN","unified":"1F6D1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6d1.png","sheet_x":38,"sheet_y":4,"short_name":"octagonal_sign","short_names":["octagonal_sign"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":934,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SHOPPING TROLLEY","unified":"1F6D2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6d2.png","sheet_x":38,"sheet_y":5,"short_name":"shopping_trolley","short_names":["shopping_trolley"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1374,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HINDU TEMPLE","unified":"1F6D5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6d5.png","sheet_x":38,"sheet_y":6,"short_name":"hindu_temple","short_names":["hindu_temple"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-religious","sort_order":865,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HUT","unified":"1F6D6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6d6.png","sheet_x":38,"sheet_y":7,"short_name":"hut","short_names":["hut"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":842,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ELEVATOR","unified":"1F6D7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6d7.png","sheet_x":38,"sheet_y":8,"short_name":"elevator","short_names":["elevator"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1351,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WIRELESS","unified":"1F6DC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6dc.png","sheet_x":38,"sheet_y":9,"short_name":"wireless","short_names":["wireless"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1479,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false},{"name":"PLAYGROUND SLIDE","unified":"1F6DD","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6dd.png","sheet_x":38,"sheet_y":10,"short_name":"playground_slide","short_names":["playground_slide"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-other","sort_order":881,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WHEEL","unified":"1F6DE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6de.png","sheet_x":38,"sheet_y":11,"short_name":"wheel","short_names":["wheel"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":930,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"RING BUOY","unified":"1F6DF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6df.png","sheet_x":38,"sheet_y":12,"short_name":"ring_buoy","short_names":["ring_buoy"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-water","sort_order":937,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HAMMER AND WRENCH","unified":"1F6E0-FE0F","non_qualified":"1F6E0","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e0-fe0f.png","sheet_x":38,"sheet_y":13,"short_name":"hammer_and_wrench","short_names":["hammer_and_wrench"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1315,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SHIELD","unified":"1F6E1-FE0F","non_qualified":"1F6E1","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e1-fe0f.png","sheet_x":38,"sheet_y":14,"short_name":"shield","short_names":["shield"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1321,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"OIL DRUM","unified":"1F6E2-FE0F","non_qualified":"1F6E2","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e2-fe0f.png","sheet_x":38,"sheet_y":15,"short_name":"oil_drum","short_names":["oil_drum"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":928,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MOTORWAY","unified":"1F6E3-FE0F","non_qualified":"1F6E3","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e3-fe0f.png","sheet_x":38,"sheet_y":16,"short_name":"motorway","short_names":["motorway"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":926,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"RAILWAY TRACK","unified":"1F6E4-FE0F","non_qualified":"1F6E4","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e4-fe0f.png","sheet_x":38,"sheet_y":17,"short_name":"railway_track","short_names":["railway_track"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":927,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MOTOR BOAT","unified":"1F6E5-FE0F","non_qualified":"1F6E5","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e5-fe0f.png","sheet_x":38,"sheet_y":18,"short_name":"motor_boat","short_names":["motor_boat"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-water","sort_order":943,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SMALL AIRPLANE","unified":"1F6E9-FE0F","non_qualified":"1F6E9","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e9-fe0f.png","sheet_x":38,"sheet_y":19,"short_name":"small_airplane","short_names":["small_airplane"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-air","sort_order":946,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"AIRPLANE DEPARTURE","unified":"1F6EB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6eb.png","sheet_x":38,"sheet_y":20,"short_name":"airplane_departure","short_names":["airplane_departure"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-air","sort_order":947,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"AIRPLANE ARRIVING","unified":"1F6EC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6ec.png","sheet_x":38,"sheet_y":21,"short_name":"airplane_arriving","short_names":["airplane_arriving"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-air","sort_order":948,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SATELLITE","unified":"1F6F0-FE0F","non_qualified":"1F6F0","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6f0-fe0f.png","sheet_x":38,"sheet_y":22,"short_name":"satellite","short_names":["satellite"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-air","sort_order":955,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PASSENGER SHIP","unified":"1F6F3-FE0F","non_qualified":"1F6F3","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6f3-fe0f.png","sheet_x":38,"sheet_y":23,"short_name":"passenger_ship","short_names":["passenger_ship"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-water","sort_order":941,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SCOOTER","unified":"1F6F4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6f4.png","sheet_x":38,"sheet_y":24,"short_name":"scooter","short_names":["scooter"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":922,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MOTOR SCOOTER","unified":"1F6F5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6f5.png","sheet_x":38,"sheet_y":25,"short_name":"motor_scooter","short_names":["motor_scooter"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":917,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CANOE","unified":"1F6F6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6f6.png","sheet_x":38,"sheet_y":26,"short_name":"canoe","short_names":["canoe"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-water","sort_order":939,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SLED","unified":"1F6F7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6f7.png","sheet_x":38,"sheet_y":27,"short_name":"sled","short_names":["sled"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1090,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FLYING SAUCER","unified":"1F6F8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6f8.png","sheet_x":38,"sheet_y":28,"short_name":"flying_saucer","short_names":["flying_saucer"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-air","sort_order":957,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SKATEBOARD","unified":"1F6F9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6f9.png","sheet_x":38,"sheet_y":29,"short_name":"skateboard","short_names":["skateboard"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":923,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"AUTO RICKSHAW","unified":"1F6FA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6fa.png","sheet_x":38,"sheet_y":30,"short_name":"auto_rickshaw","short_names":["auto_rickshaw"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":920,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PICKUP TRUCK","unified":"1F6FB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6fb.png","sheet_x":38,"sheet_y":31,"short_name":"pickup_truck","short_names":["pickup_truck"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":911,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ROLLER SKATE","unified":"1F6FC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6fc.png","sheet_x":38,"sheet_y":32,"short_name":"roller_skate","short_names":["roller_skate"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":924,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LARGE ORANGE CIRCLE","unified":"1F7E0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f7e0.png","sheet_x":38,"sheet_y":33,"short_name":"large_orange_circle","short_names":["large_orange_circle"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1574,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LARGE YELLOW CIRCLE","unified":"1F7E1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f7e1.png","sheet_x":38,"sheet_y":34,"short_name":"large_yellow_circle","short_names":["large_yellow_circle"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1575,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LARGE GREEN CIRCLE","unified":"1F7E2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f7e2.png","sheet_x":38,"sheet_y":35,"short_name":"large_green_circle","short_names":["large_green_circle"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1576,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LARGE PURPLE CIRCLE","unified":"1F7E3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f7e3.png","sheet_x":38,"sheet_y":36,"short_name":"large_purple_circle","short_names":["large_purple_circle"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1578,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LARGE BROWN CIRCLE","unified":"1F7E4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f7e4.png","sheet_x":38,"sheet_y":37,"short_name":"large_brown_circle","short_names":["large_brown_circle"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1579,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LARGE RED SQUARE","unified":"1F7E5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f7e5.png","sheet_x":38,"sheet_y":38,"short_name":"large_red_square","short_names":["large_red_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1582,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LARGE BLUE SQUARE","unified":"1F7E6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f7e6.png","sheet_x":38,"sheet_y":39,"short_name":"large_blue_square","short_names":["large_blue_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1586,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LARGE ORANGE SQUARE","unified":"1F7E7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f7e7.png","sheet_x":38,"sheet_y":40,"short_name":"large_orange_square","short_names":["large_orange_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1583,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LARGE YELLOW SQUARE","unified":"1F7E8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f7e8.png","sheet_x":38,"sheet_y":41,"short_name":"large_yellow_square","short_names":["large_yellow_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1584,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LARGE GREEN SQUARE","unified":"1F7E9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f7e9.png","sheet_x":38,"sheet_y":42,"short_name":"large_green_square","short_names":["large_green_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1585,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LARGE PURPLE SQUARE","unified":"1F7EA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f7ea.png","sheet_x":38,"sheet_y":43,"short_name":"large_purple_square","short_names":["large_purple_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1587,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LARGE BROWN SQUARE","unified":"1F7EB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f7eb.png","sheet_x":38,"sheet_y":44,"short_name":"large_brown_square","short_names":["large_brown_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1588,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HEAVY EQUALS SIGN","unified":"1F7F0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f7f0.png","sheet_x":38,"sheet_y":45,"short_name":"heavy_equals_sign","short_names":["heavy_equals_sign"],"text":null,"texts":null,"category":"Symbols","subcategory":"math","sort_order":1489,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PINCHED FINGERS","unified":"1F90C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f90c.png","sheet_x":38,"sheet_y":46,"short_name":"pinched_fingers","short_names":["pinched_fingers"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-partial","sort_order":179,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F90C-1F3FB","non_qualified":null,"image":"1f90c-1f3fb.png","sheet_x":38,"sheet_y":47,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F90C-1F3FC","non_qualified":null,"image":"1f90c-1f3fc.png","sheet_x":38,"sheet_y":48,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F90C-1F3FD","non_qualified":null,"image":"1f90c-1f3fd.png","sheet_x":38,"sheet_y":49,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F90C-1F3FE","non_qualified":null,"image":"1f90c-1f3fe.png","sheet_x":38,"sheet_y":50,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F90C-1F3FF","non_qualified":null,"image":"1f90c-1f3ff.png","sheet_x":38,"sheet_y":51,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"WHITE HEART","unified":"1F90D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f90d.png","sheet_x":38,"sheet_y":52,"short_name":"white_heart","short_names":["white_heart"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":152,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BROWN HEART","unified":"1F90E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f90e.png","sheet_x":38,"sheet_y":53,"short_name":"brown_heart","short_names":["brown_heart"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":149,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PINCHING HAND","unified":"1F90F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f90f.png","sheet_x":38,"sheet_y":54,"short_name":"pinching_hand","short_names":["pinching_hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-partial","sort_order":180,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F90F-1F3FB","non_qualified":null,"image":"1f90f-1f3fb.png","sheet_x":38,"sheet_y":55,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F90F-1F3FC","non_qualified":null,"image":"1f90f-1f3fc.png","sheet_x":38,"sheet_y":56,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F90F-1F3FD","non_qualified":null,"image":"1f90f-1f3fd.png","sheet_x":38,"sheet_y":57,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F90F-1F3FE","non_qualified":null,"image":"1f90f-1f3fe.png","sheet_x":38,"sheet_y":58,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F90F-1F3FF","non_qualified":null,"image":"1f90f-1f3ff.png","sheet_x":38,"sheet_y":59,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"ZIPPER-MOUTH FACE","unified":"1F910","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f910.png","sheet_x":38,"sheet_y":60,"short_name":"zipper_mouth_face","short_names":["zipper_mouth_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":37,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MONEY-MOUTH FACE","unified":"1F911","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f911.png","sheet_x":39,"sheet_y":0,"short_name":"money_mouth_face","short_names":["money_mouth_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-tongue","sort_order":29,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE WITH THERMOMETER","unified":"1F912","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f912.png","sheet_x":39,"sheet_y":1,"short_name":"face_with_thermometer","short_names":["face_with_thermometer"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-unwell","sort_order":57,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"NERD FACE","unified":"1F913","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f913.png","sheet_x":39,"sheet_y":2,"short_name":"nerd_face","short_names":["nerd_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-glasses","sort_order":72,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"THINKING FACE","unified":"1F914","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f914.png","sheet_x":39,"sheet_y":3,"short_name":"thinking_face","short_names":["thinking_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-hand","sort_order":35,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE WITH HEAD-BANDAGE","unified":"1F915","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f915.png","sheet_x":39,"sheet_y":4,"short_name":"face_with_head_bandage","short_names":["face_with_head_bandage"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-unwell","sort_order":58,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ROBOT FACE","unified":"1F916","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f916.png","sheet_x":39,"sheet_y":5,"short_name":"robot_face","short_names":["robot_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-costume","sort_order":115,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HUGGING FACE","unified":"1F917","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f917.png","sheet_x":39,"sheet_y":6,"short_name":"hugging_face","short_names":["hugging_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-hand","sort_order":30,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SIGN OF THE HORNS","unified":"1F918","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f918.png","sheet_x":39,"sheet_y":7,"short_name":"the_horns","short_names":["the_horns","sign_of_the_horns"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-partial","sort_order":185,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F918-1F3FB","non_qualified":null,"image":"1f918-1f3fb.png","sheet_x":39,"sheet_y":8,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F918-1F3FC","non_qualified":null,"image":"1f918-1f3fc.png","sheet_x":39,"sheet_y":9,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F918-1F3FD","non_qualified":null,"image":"1f918-1f3fd.png","sheet_x":39,"sheet_y":10,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F918-1F3FE","non_qualified":null,"image":"1f918-1f3fe.png","sheet_x":39,"sheet_y":11,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F918-1F3FF","non_qualified":null,"image":"1f918-1f3ff.png","sheet_x":39,"sheet_y":12,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"CALL ME HAND","unified":"1F919","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f919.png","sheet_x":39,"sheet_y":13,"short_name":"call_me_hand","short_names":["call_me_hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-partial","sort_order":186,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F919-1F3FB","non_qualified":null,"image":"1f919-1f3fb.png","sheet_x":39,"sheet_y":14,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F919-1F3FC","non_qualified":null,"image":"1f919-1f3fc.png","sheet_x":39,"sheet_y":15,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F919-1F3FD","non_qualified":null,"image":"1f919-1f3fd.png","sheet_x":39,"sheet_y":16,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F919-1F3FE","non_qualified":null,"image":"1f919-1f3fe.png","sheet_x":39,"sheet_y":17,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F919-1F3FF","non_qualified":null,"image":"1f919-1f3ff.png","sheet_x":39,"sheet_y":18,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"RAISED BACK OF HAND","unified":"1F91A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f91a.png","sheet_x":39,"sheet_y":19,"short_name":"raised_back_of_hand","short_names":["raised_back_of_hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-open","sort_order":168,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F91A-1F3FB","non_qualified":null,"image":"1f91a-1f3fb.png","sheet_x":39,"sheet_y":20,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F91A-1F3FC","non_qualified":null,"image":"1f91a-1f3fc.png","sheet_x":39,"sheet_y":21,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F91A-1F3FD","non_qualified":null,"image":"1f91a-1f3fd.png","sheet_x":39,"sheet_y":22,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F91A-1F3FE","non_qualified":null,"image":"1f91a-1f3fe.png","sheet_x":39,"sheet_y":23,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F91A-1F3FF","non_qualified":null,"image":"1f91a-1f3ff.png","sheet_x":39,"sheet_y":24,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"LEFT-FACING FIST","unified":"1F91B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f91b.png","sheet_x":39,"sheet_y":25,"short_name":"left-facing_fist","short_names":["left-facing_fist"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-closed","sort_order":198,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F91B-1F3FB","non_qualified":null,"image":"1f91b-1f3fb.png","sheet_x":39,"sheet_y":26,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F91B-1F3FC","non_qualified":null,"image":"1f91b-1f3fc.png","sheet_x":39,"sheet_y":27,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F91B-1F3FD","non_qualified":null,"image":"1f91b-1f3fd.png","sheet_x":39,"sheet_y":28,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F91B-1F3FE","non_qualified":null,"image":"1f91b-1f3fe.png","sheet_x":39,"sheet_y":29,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F91B-1F3FF","non_qualified":null,"image":"1f91b-1f3ff.png","sheet_x":39,"sheet_y":30,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"RIGHT-FACING FIST","unified":"1F91C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f91c.png","sheet_x":39,"sheet_y":31,"short_name":"right-facing_fist","short_names":["right-facing_fist"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-closed","sort_order":199,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F91C-1F3FB","non_qualified":null,"image":"1f91c-1f3fb.png","sheet_x":39,"sheet_y":32,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F91C-1F3FC","non_qualified":null,"image":"1f91c-1f3fc.png","sheet_x":39,"sheet_y":33,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F91C-1F3FD","non_qualified":null,"image":"1f91c-1f3fd.png","sheet_x":39,"sheet_y":34,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F91C-1F3FE","non_qualified":null,"image":"1f91c-1f3fe.png","sheet_x":39,"sheet_y":35,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F91C-1F3FF","non_qualified":null,"image":"1f91c-1f3ff.png","sheet_x":39,"sheet_y":36,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"HANDSHAKE","unified":"1F91D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f91d.png","sheet_x":39,"sheet_y":37,"short_name":"handshake","short_names":["handshake"],"text":null,"texts":null,"category":"People & Body","subcategory":"hands","sort_order":205,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F91D-1F3FB","non_qualified":null,"image":"1f91d-1f3fb.png","sheet_x":39,"sheet_y":38,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F91D-1F3FC","non_qualified":null,"image":"1f91d-1f3fc.png","sheet_x":39,"sheet_y":39,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F91D-1F3FD","non_qualified":null,"image":"1f91d-1f3fd.png","sheet_x":39,"sheet_y":40,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F91D-1F3FE","non_qualified":null,"image":"1f91d-1f3fe.png","sheet_x":39,"sheet_y":41,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F91D-1F3FF","non_qualified":null,"image":"1f91d-1f3ff.png","sheet_x":39,"sheet_y":42,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FB-1F3FC":{"unified":"1FAF1-1F3FB-200D-1FAF2-1F3FC","non_qualified":null,"image":"1faf1-1f3fb-200d-1faf2-1f3fc.png","sheet_x":39,"sheet_y":43,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FB-1F3FD":{"unified":"1FAF1-1F3FB-200D-1FAF2-1F3FD","non_qualified":null,"image":"1faf1-1f3fb-200d-1faf2-1f3fd.png","sheet_x":39,"sheet_y":44,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FB-1F3FE":{"unified":"1FAF1-1F3FB-200D-1FAF2-1F3FE","non_qualified":null,"image":"1faf1-1f3fb-200d-1faf2-1f3fe.png","sheet_x":39,"sheet_y":45,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FB-1F3FF":{"unified":"1FAF1-1F3FB-200D-1FAF2-1F3FF","non_qualified":null,"image":"1faf1-1f3fb-200d-1faf2-1f3ff.png","sheet_x":39,"sheet_y":46,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC-1F3FB":{"unified":"1FAF1-1F3FC-200D-1FAF2-1F3FB","non_qualified":null,"image":"1faf1-1f3fc-200d-1faf2-1f3fb.png","sheet_x":39,"sheet_y":47,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC-1F3FD":{"unified":"1FAF1-1F3FC-200D-1FAF2-1F3FD","non_qualified":null,"image":"1faf1-1f3fc-200d-1faf2-1f3fd.png","sheet_x":39,"sheet_y":48,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC-1F3FE":{"unified":"1FAF1-1F3FC-200D-1FAF2-1F3FE","non_qualified":null,"image":"1faf1-1f3fc-200d-1faf2-1f3fe.png","sheet_x":39,"sheet_y":49,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC-1F3FF":{"unified":"1FAF1-1F3FC-200D-1FAF2-1F3FF","non_qualified":null,"image":"1faf1-1f3fc-200d-1faf2-1f3ff.png","sheet_x":39,"sheet_y":50,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD-1F3FB":{"unified":"1FAF1-1F3FD-200D-1FAF2-1F3FB","non_qualified":null,"image":"1faf1-1f3fd-200d-1faf2-1f3fb.png","sheet_x":39,"sheet_y":51,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD-1F3FC":{"unified":"1FAF1-1F3FD-200D-1FAF2-1F3FC","non_qualified":null,"image":"1faf1-1f3fd-200d-1faf2-1f3fc.png","sheet_x":39,"sheet_y":52,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD-1F3FE":{"unified":"1FAF1-1F3FD-200D-1FAF2-1F3FE","non_qualified":null,"image":"1faf1-1f3fd-200d-1faf2-1f3fe.png","sheet_x":39,"sheet_y":53,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD-1F3FF":{"unified":"1FAF1-1F3FD-200D-1FAF2-1F3FF","non_qualified":null,"image":"1faf1-1f3fd-200d-1faf2-1f3ff.png","sheet_x":39,"sheet_y":54,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE-1F3FB":{"unified":"1FAF1-1F3FE-200D-1FAF2-1F3FB","non_qualified":null,"image":"1faf1-1f3fe-200d-1faf2-1f3fb.png","sheet_x":39,"sheet_y":55,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE-1F3FC":{"unified":"1FAF1-1F3FE-200D-1FAF2-1F3FC","non_qualified":null,"image":"1faf1-1f3fe-200d-1faf2-1f3fc.png","sheet_x":39,"sheet_y":56,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE-1F3FD":{"unified":"1FAF1-1F3FE-200D-1FAF2-1F3FD","non_qualified":null,"image":"1faf1-1f3fe-200d-1faf2-1f3fd.png","sheet_x":39,"sheet_y":57,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE-1F3FF":{"unified":"1FAF1-1F3FE-200D-1FAF2-1F3FF","non_qualified":null,"image":"1faf1-1f3fe-200d-1faf2-1f3ff.png","sheet_x":39,"sheet_y":58,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF-1F3FB":{"unified":"1FAF1-1F3FF-200D-1FAF2-1F3FB","non_qualified":null,"image":"1faf1-1f3ff-200d-1faf2-1f3fb.png","sheet_x":39,"sheet_y":59,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF-1F3FC":{"unified":"1FAF1-1F3FF-200D-1FAF2-1F3FC","non_qualified":null,"image":"1faf1-1f3ff-200d-1faf2-1f3fc.png","sheet_x":39,"sheet_y":60,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF-1F3FD":{"unified":"1FAF1-1F3FF-200D-1FAF2-1F3FD","non_qualified":null,"image":"1faf1-1f3ff-200d-1faf2-1f3fd.png","sheet_x":40,"sheet_y":0,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF-1F3FE":{"unified":"1FAF1-1F3FF-200D-1FAF2-1F3FE","non_qualified":null,"image":"1faf1-1f3ff-200d-1faf2-1f3fe.png","sheet_x":40,"sheet_y":1,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"HAND WITH INDEX AND MIDDLE FINGERS CROSSED","unified":"1F91E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f91e.png","sheet_x":40,"sheet_y":2,"short_name":"crossed_fingers","short_names":["crossed_fingers","hand_with_index_and_middle_fingers_crossed"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-partial","sort_order":182,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F91E-1F3FB","non_qualified":null,"image":"1f91e-1f3fb.png","sheet_x":40,"sheet_y":3,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F91E-1F3FC","non_qualified":null,"image":"1f91e-1f3fc.png","sheet_x":40,"sheet_y":4,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F91E-1F3FD","non_qualified":null,"image":"1f91e-1f3fd.png","sheet_x":40,"sheet_y":5,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F91E-1F3FE","non_qualified":null,"image":"1f91e-1f3fe.png","sheet_x":40,"sheet_y":6,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F91E-1F3FF","non_qualified":null,"image":"1f91e-1f3ff.png","sheet_x":40,"sheet_y":7,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"I LOVE YOU HAND SIGN","unified":"1F91F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f91f.png","sheet_x":40,"sheet_y":8,"short_name":"i_love_you_hand_sign","short_names":["i_love_you_hand_sign"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-partial","sort_order":184,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F91F-1F3FB","non_qualified":null,"image":"1f91f-1f3fb.png","sheet_x":40,"sheet_y":9,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F91F-1F3FC","non_qualified":null,"image":"1f91f-1f3fc.png","sheet_x":40,"sheet_y":10,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F91F-1F3FD","non_qualified":null,"image":"1f91f-1f3fd.png","sheet_x":40,"sheet_y":11,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F91F-1F3FE","non_qualified":null,"image":"1f91f-1f3fe.png","sheet_x":40,"sheet_y":12,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F91F-1F3FF","non_qualified":null,"image":"1f91f-1f3ff.png","sheet_x":40,"sheet_y":13,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"FACE WITH COWBOY HAT","unified":"1F920","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f920.png","sheet_x":40,"sheet_y":14,"short_name":"face_with_cowboy_hat","short_names":["face_with_cowboy_hat"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-hat","sort_order":68,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CLOWN FACE","unified":"1F921","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f921.png","sheet_x":40,"sheet_y":15,"short_name":"clown_face","short_names":["clown_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-costume","sort_order":109,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"NAUSEATED FACE","unified":"1F922","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f922.png","sheet_x":40,"sheet_y":16,"short_name":"nauseated_face","short_names":["nauseated_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-unwell","sort_order":59,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ROLLING ON THE FLOOR LAUGHING","unified":"1F923","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f923.png","sheet_x":40,"sheet_y":17,"short_name":"rolling_on_the_floor_laughing","short_names":["rolling_on_the_floor_laughing"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-smiling","sort_order":7,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"DROOLING FACE","unified":"1F924","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f924.png","sheet_x":40,"sheet_y":18,"short_name":"drooling_face","short_names":["drooling_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-sleepy","sort_order":54,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LYING FACE","unified":"1F925","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f925.png","sheet_x":40,"sheet_y":19,"short_name":"lying_face","short_names":["lying_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":49,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WOMAN FACEPALMING","unified":"1F926-200D-2640-FE0F","non_qualified":"1F926-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f926-200d-2640-fe0f.png","sheet_x":40,"sheet_y":20,"short_name":"woman-facepalming","short_names":["woman-facepalming"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":282,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F926-1F3FB-200D-2640-FE0F","non_qualified":"1F926-1F3FB-200D-2640","image":"1f926-1f3fb-200d-2640-fe0f.png","sheet_x":40,"sheet_y":21,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F926-1F3FC-200D-2640-FE0F","non_qualified":"1F926-1F3FC-200D-2640","image":"1f926-1f3fc-200d-2640-fe0f.png","sheet_x":40,"sheet_y":22,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F926-1F3FD-200D-2640-FE0F","non_qualified":"1F926-1F3FD-200D-2640","image":"1f926-1f3fd-200d-2640-fe0f.png","sheet_x":40,"sheet_y":23,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F926-1F3FE-200D-2640-FE0F","non_qualified":"1F926-1F3FE-200D-2640","image":"1f926-1f3fe-200d-2640-fe0f.png","sheet_x":40,"sheet_y":24,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F926-1F3FF-200D-2640-FE0F","non_qualified":"1F926-1F3FF-200D-2640","image":"1f926-1f3ff-200d-2640-fe0f.png","sheet_x":40,"sheet_y":25,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MAN FACEPALMING","unified":"1F926-200D-2642-FE0F","non_qualified":"1F926-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f926-200d-2642-fe0f.png","sheet_x":40,"sheet_y":26,"short_name":"man-facepalming","short_names":["man-facepalming"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":281,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F926-1F3FB-200D-2642-FE0F","non_qualified":"1F926-1F3FB-200D-2642","image":"1f926-1f3fb-200d-2642-fe0f.png","sheet_x":40,"sheet_y":27,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F926-1F3FC-200D-2642-FE0F","non_qualified":"1F926-1F3FC-200D-2642","image":"1f926-1f3fc-200d-2642-fe0f.png","sheet_x":40,"sheet_y":28,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F926-1F3FD-200D-2642-FE0F","non_qualified":"1F926-1F3FD-200D-2642","image":"1f926-1f3fd-200d-2642-fe0f.png","sheet_x":40,"sheet_y":29,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F926-1F3FE-200D-2642-FE0F","non_qualified":"1F926-1F3FE-200D-2642","image":"1f926-1f3fe-200d-2642-fe0f.png","sheet_x":40,"sheet_y":30,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F926-1F3FF-200D-2642-FE0F","non_qualified":"1F926-1F3FF-200D-2642","image":"1f926-1f3ff-200d-2642-fe0f.png","sheet_x":40,"sheet_y":31,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"FACE PALM","unified":"1F926","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f926.png","sheet_x":40,"sheet_y":32,"short_name":"face_palm","short_names":["face_palm"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":280,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F926-1F3FB","non_qualified":null,"image":"1f926-1f3fb.png","sheet_x":40,"sheet_y":33,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F926-1F3FC","non_qualified":null,"image":"1f926-1f3fc.png","sheet_x":40,"sheet_y":34,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F926-1F3FD","non_qualified":null,"image":"1f926-1f3fd.png","sheet_x":40,"sheet_y":35,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F926-1F3FE","non_qualified":null,"image":"1f926-1f3fe.png","sheet_x":40,"sheet_y":36,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F926-1F3FF","non_qualified":null,"image":"1f926-1f3ff.png","sheet_x":40,"sheet_y":37,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"SNEEZING FACE","unified":"1F927","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f927.png","sheet_x":40,"sheet_y":38,"short_name":"sneezing_face","short_names":["sneezing_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-unwell","sort_order":61,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE WITH ONE EYEBROW RAISED","unified":"1F928","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f928.png","sheet_x":40,"sheet_y":39,"short_name":"face_with_raised_eyebrow","short_names":["face_with_raised_eyebrow","face_with_one_eyebrow_raised"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":38,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"GRINNING FACE WITH STAR EYES","unified":"1F929","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f929.png","sheet_x":40,"sheet_y":40,"short_name":"star-struck","short_names":["star-struck","grinning_face_with_star_eyes"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-affection","sort_order":17,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"GRINNING FACE WITH ONE LARGE AND ONE SMALL EYE","unified":"1F92A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f92a.png","sheet_x":40,"sheet_y":41,"short_name":"zany_face","short_names":["zany_face","grinning_face_with_one_large_and_one_small_eye"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-tongue","sort_order":27,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE WITH FINGER COVERING CLOSED LIPS","unified":"1F92B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f92b.png","sheet_x":40,"sheet_y":42,"short_name":"shushing_face","short_names":["shushing_face","face_with_finger_covering_closed_lips"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-hand","sort_order":34,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SERIOUS FACE WITH SYMBOLS COVERING MOUTH","unified":"1F92C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f92c.png","sheet_x":40,"sheet_y":43,"short_name":"face_with_symbols_on_mouth","short_names":["face_with_symbols_on_mouth","serious_face_with_symbols_covering_mouth"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-negative","sort_order":103,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SMILING FACE WITH SMILING EYES AND HAND COVERING MOUTH","unified":"1F92D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f92d.png","sheet_x":40,"sheet_y":44,"short_name":"face_with_hand_over_mouth","short_names":["face_with_hand_over_mouth","smiling_face_with_smiling_eyes_and_hand_covering_mouth"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-hand","sort_order":31,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE WITH OPEN MOUTH VOMITING","unified":"1F92E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f92e.png","sheet_x":40,"sheet_y":45,"short_name":"face_vomiting","short_names":["face_vomiting","face_with_open_mouth_vomiting"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-unwell","sort_order":60,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SHOCKED FACE WITH EXPLODING HEAD","unified":"1F92F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f92f.png","sheet_x":40,"sheet_y":46,"short_name":"exploding_head","short_names":["exploding_head","shocked_face_with_exploding_head"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-unwell","sort_order":67,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PREGNANT WOMAN","unified":"1F930","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f930.png","sheet_x":40,"sheet_y":47,"short_name":"pregnant_woman","short_names":["pregnant_woman"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":361,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F930-1F3FB","non_qualified":null,"image":"1f930-1f3fb.png","sheet_x":40,"sheet_y":48,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F930-1F3FC","non_qualified":null,"image":"1f930-1f3fc.png","sheet_x":40,"sheet_y":49,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F930-1F3FD","non_qualified":null,"image":"1f930-1f3fd.png","sheet_x":40,"sheet_y":50,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F930-1F3FE","non_qualified":null,"image":"1f930-1f3fe.png","sheet_x":40,"sheet_y":51,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F930-1F3FF","non_qualified":null,"image":"1f930-1f3ff.png","sheet_x":40,"sheet_y":52,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"BREAST-FEEDING","unified":"1F931","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f931.png","sheet_x":40,"sheet_y":53,"short_name":"breast-feeding","short_names":["breast-feeding"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":364,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F931-1F3FB","non_qualified":null,"image":"1f931-1f3fb.png","sheet_x":40,"sheet_y":54,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F931-1F3FC","non_qualified":null,"image":"1f931-1f3fc.png","sheet_x":40,"sheet_y":55,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F931-1F3FD","non_qualified":null,"image":"1f931-1f3fd.png","sheet_x":40,"sheet_y":56,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F931-1F3FE","non_qualified":null,"image":"1f931-1f3fe.png","sheet_x":40,"sheet_y":57,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F931-1F3FF","non_qualified":null,"image":"1f931-1f3ff.png","sheet_x":40,"sheet_y":58,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"PALMS UP TOGETHER","unified":"1F932","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f932.png","sheet_x":40,"sheet_y":59,"short_name":"palms_up_together","short_names":["palms_up_together"],"text":null,"texts":null,"category":"People & Body","subcategory":"hands","sort_order":204,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F932-1F3FB","non_qualified":null,"image":"1f932-1f3fb.png","sheet_x":40,"sheet_y":60,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F932-1F3FC","non_qualified":null,"image":"1f932-1f3fc.png","sheet_x":41,"sheet_y":0,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F932-1F3FD","non_qualified":null,"image":"1f932-1f3fd.png","sheet_x":41,"sheet_y":1,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F932-1F3FE","non_qualified":null,"image":"1f932-1f3fe.png","sheet_x":41,"sheet_y":2,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F932-1F3FF","non_qualified":null,"image":"1f932-1f3ff.png","sheet_x":41,"sheet_y":3,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"SELFIE","unified":"1F933","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f933.png","sheet_x":41,"sheet_y":4,"short_name":"selfie","short_names":["selfie"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-prop","sort_order":209,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F933-1F3FB","non_qualified":null,"image":"1f933-1f3fb.png","sheet_x":41,"sheet_y":5,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F933-1F3FC","non_qualified":null,"image":"1f933-1f3fc.png","sheet_x":41,"sheet_y":6,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F933-1F3FD","non_qualified":null,"image":"1f933-1f3fd.png","sheet_x":41,"sheet_y":7,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F933-1F3FE","non_qualified":null,"image":"1f933-1f3fe.png","sheet_x":41,"sheet_y":8,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F933-1F3FF","non_qualified":null,"image":"1f933-1f3ff.png","sheet_x":41,"sheet_y":9,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"PRINCE","unified":"1F934","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f934.png","sheet_x":41,"sheet_y":10,"short_name":"prince","short_names":["prince"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":348,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F934-1F3FB","non_qualified":null,"image":"1f934-1f3fb.png","sheet_x":41,"sheet_y":11,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F934-1F3FC","non_qualified":null,"image":"1f934-1f3fc.png","sheet_x":41,"sheet_y":12,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F934-1F3FD","non_qualified":null,"image":"1f934-1f3fd.png","sheet_x":41,"sheet_y":13,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F934-1F3FE","non_qualified":null,"image":"1f934-1f3fe.png","sheet_x":41,"sheet_y":14,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F934-1F3FF","non_qualified":null,"image":"1f934-1f3ff.png","sheet_x":41,"sheet_y":15,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"WOMAN IN TUXEDO","unified":"1F935-200D-2640-FE0F","non_qualified":"1F935-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f935-200d-2640-fe0f.png","sheet_x":41,"sheet_y":16,"short_name":"woman_in_tuxedo","short_names":["woman_in_tuxedo"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":357,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F935-1F3FB-200D-2640-FE0F","non_qualified":"1F935-1F3FB-200D-2640","image":"1f935-1f3fb-200d-2640-fe0f.png","sheet_x":41,"sheet_y":17,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F935-1F3FC-200D-2640-FE0F","non_qualified":"1F935-1F3FC-200D-2640","image":"1f935-1f3fc-200d-2640-fe0f.png","sheet_x":41,"sheet_y":18,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F935-1F3FD-200D-2640-FE0F","non_qualified":"1F935-1F3FD-200D-2640","image":"1f935-1f3fd-200d-2640-fe0f.png","sheet_x":41,"sheet_y":19,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F935-1F3FE-200D-2640-FE0F","non_qualified":"1F935-1F3FE-200D-2640","image":"1f935-1f3fe-200d-2640-fe0f.png","sheet_x":41,"sheet_y":20,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F935-1F3FF-200D-2640-FE0F","non_qualified":"1F935-1F3FF-200D-2640","image":"1f935-1f3ff-200d-2640-fe0f.png","sheet_x":41,"sheet_y":21,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MAN IN TUXEDO","unified":"1F935-200D-2642-FE0F","non_qualified":"1F935-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f935-200d-2642-fe0f.png","sheet_x":41,"sheet_y":22,"short_name":"man_in_tuxedo","short_names":["man_in_tuxedo"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":356,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F935-1F3FB-200D-2642-FE0F","non_qualified":"1F935-1F3FB-200D-2642","image":"1f935-1f3fb-200d-2642-fe0f.png","sheet_x":41,"sheet_y":23,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F935-1F3FC-200D-2642-FE0F","non_qualified":"1F935-1F3FC-200D-2642","image":"1f935-1f3fc-200d-2642-fe0f.png","sheet_x":41,"sheet_y":24,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F935-1F3FD-200D-2642-FE0F","non_qualified":"1F935-1F3FD-200D-2642","image":"1f935-1f3fd-200d-2642-fe0f.png","sheet_x":41,"sheet_y":25,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F935-1F3FE-200D-2642-FE0F","non_qualified":"1F935-1F3FE-200D-2642","image":"1f935-1f3fe-200d-2642-fe0f.png","sheet_x":41,"sheet_y":26,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F935-1F3FF-200D-2642-FE0F","non_qualified":"1F935-1F3FF-200D-2642","image":"1f935-1f3ff-200d-2642-fe0f.png","sheet_x":41,"sheet_y":27,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MAN IN TUXEDO","unified":"1F935","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f935.png","sheet_x":41,"sheet_y":28,"short_name":"person_in_tuxedo","short_names":["person_in_tuxedo"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":355,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F935-1F3FB","non_qualified":null,"image":"1f935-1f3fb.png","sheet_x":41,"sheet_y":29,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F935-1F3FC","non_qualified":null,"image":"1f935-1f3fc.png","sheet_x":41,"sheet_y":30,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F935-1F3FD","non_qualified":null,"image":"1f935-1f3fd.png","sheet_x":41,"sheet_y":31,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F935-1F3FE","non_qualified":null,"image":"1f935-1f3fe.png","sheet_x":41,"sheet_y":32,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F935-1F3FF","non_qualified":null,"image":"1f935-1f3ff.png","sheet_x":41,"sheet_y":33,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MOTHER CHRISTMAS","unified":"1F936","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f936.png","sheet_x":41,"sheet_y":34,"short_name":"mrs_claus","short_names":["mrs_claus","mother_christmas"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":370,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F936-1F3FB","non_qualified":null,"image":"1f936-1f3fb.png","sheet_x":41,"sheet_y":35,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F936-1F3FC","non_qualified":null,"image":"1f936-1f3fc.png","sheet_x":41,"sheet_y":36,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F936-1F3FD","non_qualified":null,"image":"1f936-1f3fd.png","sheet_x":41,"sheet_y":37,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F936-1F3FE","non_qualified":null,"image":"1f936-1f3fe.png","sheet_x":41,"sheet_y":38,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F936-1F3FF","non_qualified":null,"image":"1f936-1f3ff.png","sheet_x":41,"sheet_y":39,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"WOMAN SHRUGGING","unified":"1F937-200D-2640-FE0F","non_qualified":"1F937-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f937-200d-2640-fe0f.png","sheet_x":41,"sheet_y":40,"short_name":"woman-shrugging","short_names":["woman-shrugging"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":285,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F937-1F3FB-200D-2640-FE0F","non_qualified":"1F937-1F3FB-200D-2640","image":"1f937-1f3fb-200d-2640-fe0f.png","sheet_x":41,"sheet_y":41,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F937-1F3FC-200D-2640-FE0F","non_qualified":"1F937-1F3FC-200D-2640","image":"1f937-1f3fc-200d-2640-fe0f.png","sheet_x":41,"sheet_y":42,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F937-1F3FD-200D-2640-FE0F","non_qualified":"1F937-1F3FD-200D-2640","image":"1f937-1f3fd-200d-2640-fe0f.png","sheet_x":41,"sheet_y":43,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F937-1F3FE-200D-2640-FE0F","non_qualified":"1F937-1F3FE-200D-2640","image":"1f937-1f3fe-200d-2640-fe0f.png","sheet_x":41,"sheet_y":44,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F937-1F3FF-200D-2640-FE0F","non_qualified":"1F937-1F3FF-200D-2640","image":"1f937-1f3ff-200d-2640-fe0f.png","sheet_x":41,"sheet_y":45,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MAN SHRUGGING","unified":"1F937-200D-2642-FE0F","non_qualified":"1F937-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f937-200d-2642-fe0f.png","sheet_x":41,"sheet_y":46,"short_name":"man-shrugging","short_names":["man-shrugging"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":284,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F937-1F3FB-200D-2642-FE0F","non_qualified":"1F937-1F3FB-200D-2642","image":"1f937-1f3fb-200d-2642-fe0f.png","sheet_x":41,"sheet_y":47,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F937-1F3FC-200D-2642-FE0F","non_qualified":"1F937-1F3FC-200D-2642","image":"1f937-1f3fc-200d-2642-fe0f.png","sheet_x":41,"sheet_y":48,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F937-1F3FD-200D-2642-FE0F","non_qualified":"1F937-1F3FD-200D-2642","image":"1f937-1f3fd-200d-2642-fe0f.png","sheet_x":41,"sheet_y":49,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F937-1F3FE-200D-2642-FE0F","non_qualified":"1F937-1F3FE-200D-2642","image":"1f937-1f3fe-200d-2642-fe0f.png","sheet_x":41,"sheet_y":50,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F937-1F3FF-200D-2642-FE0F","non_qualified":"1F937-1F3FF-200D-2642","image":"1f937-1f3ff-200d-2642-fe0f.png","sheet_x":41,"sheet_y":51,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"SHRUG","unified":"1F937","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f937.png","sheet_x":41,"sheet_y":52,"short_name":"shrug","short_names":["shrug"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":283,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F937-1F3FB","non_qualified":null,"image":"1f937-1f3fb.png","sheet_x":41,"sheet_y":53,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F937-1F3FC","non_qualified":null,"image":"1f937-1f3fc.png","sheet_x":41,"sheet_y":54,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F937-1F3FD","non_qualified":null,"image":"1f937-1f3fd.png","sheet_x":41,"sheet_y":55,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F937-1F3FE","non_qualified":null,"image":"1f937-1f3fe.png","sheet_x":41,"sheet_y":56,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F937-1F3FF","non_qualified":null,"image":"1f937-1f3ff.png","sheet_x":41,"sheet_y":57,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"WOMAN CARTWHEELING","unified":"1F938-200D-2640-FE0F","non_qualified":"1F938-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f938-200d-2640-fe0f.png","sheet_x":41,"sheet_y":58,"short_name":"woman-cartwheeling","short_names":["woman-cartwheeling"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":469,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F938-1F3FB-200D-2640-FE0F","non_qualified":"1F938-1F3FB-200D-2640","image":"1f938-1f3fb-200d-2640-fe0f.png","sheet_x":41,"sheet_y":59,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F938-1F3FC-200D-2640-FE0F","non_qualified":"1F938-1F3FC-200D-2640","image":"1f938-1f3fc-200d-2640-fe0f.png","sheet_x":41,"sheet_y":60,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F938-1F3FD-200D-2640-FE0F","non_qualified":"1F938-1F3FD-200D-2640","image":"1f938-1f3fd-200d-2640-fe0f.png","sheet_x":42,"sheet_y":0,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F938-1F3FE-200D-2640-FE0F","non_qualified":"1F938-1F3FE-200D-2640","image":"1f938-1f3fe-200d-2640-fe0f.png","sheet_x":42,"sheet_y":1,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F938-1F3FF-200D-2640-FE0F","non_qualified":"1F938-1F3FF-200D-2640","image":"1f938-1f3ff-200d-2640-fe0f.png","sheet_x":42,"sheet_y":2,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MAN CARTWHEELING","unified":"1F938-200D-2642-FE0F","non_qualified":"1F938-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f938-200d-2642-fe0f.png","sheet_x":42,"sheet_y":3,"short_name":"man-cartwheeling","short_names":["man-cartwheeling"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":468,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F938-1F3FB-200D-2642-FE0F","non_qualified":"1F938-1F3FB-200D-2642","image":"1f938-1f3fb-200d-2642-fe0f.png","sheet_x":42,"sheet_y":4,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F938-1F3FC-200D-2642-FE0F","non_qualified":"1F938-1F3FC-200D-2642","image":"1f938-1f3fc-200d-2642-fe0f.png","sheet_x":42,"sheet_y":5,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F938-1F3FD-200D-2642-FE0F","non_qualified":"1F938-1F3FD-200D-2642","image":"1f938-1f3fd-200d-2642-fe0f.png","sheet_x":42,"sheet_y":6,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F938-1F3FE-200D-2642-FE0F","non_qualified":"1F938-1F3FE-200D-2642","image":"1f938-1f3fe-200d-2642-fe0f.png","sheet_x":42,"sheet_y":7,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F938-1F3FF-200D-2642-FE0F","non_qualified":"1F938-1F3FF-200D-2642","image":"1f938-1f3ff-200d-2642-fe0f.png","sheet_x":42,"sheet_y":8,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"PERSON DOING CARTWHEEL","unified":"1F938","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f938.png","sheet_x":42,"sheet_y":9,"short_name":"person_doing_cartwheel","short_names":["person_doing_cartwheel"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":467,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F938-1F3FB","non_qualified":null,"image":"1f938-1f3fb.png","sheet_x":42,"sheet_y":10,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F938-1F3FC","non_qualified":null,"image":"1f938-1f3fc.png","sheet_x":42,"sheet_y":11,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F938-1F3FD","non_qualified":null,"image":"1f938-1f3fd.png","sheet_x":42,"sheet_y":12,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F938-1F3FE","non_qualified":null,"image":"1f938-1f3fe.png","sheet_x":42,"sheet_y":13,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F938-1F3FF","non_qualified":null,"image":"1f938-1f3ff.png","sheet_x":42,"sheet_y":14,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"WOMAN JUGGLING","unified":"1F939-200D-2640-FE0F","non_qualified":"1F939-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f939-200d-2640-fe0f.png","sheet_x":42,"sheet_y":15,"short_name":"woman-juggling","short_names":["woman-juggling"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":481,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F939-1F3FB-200D-2640-FE0F","non_qualified":"1F939-1F3FB-200D-2640","image":"1f939-1f3fb-200d-2640-fe0f.png","sheet_x":42,"sheet_y":16,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F939-1F3FC-200D-2640-FE0F","non_qualified":"1F939-1F3FC-200D-2640","image":"1f939-1f3fc-200d-2640-fe0f.png","sheet_x":42,"sheet_y":17,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F939-1F3FD-200D-2640-FE0F","non_qualified":"1F939-1F3FD-200D-2640","image":"1f939-1f3fd-200d-2640-fe0f.png","sheet_x":42,"sheet_y":18,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F939-1F3FE-200D-2640-FE0F","non_qualified":"1F939-1F3FE-200D-2640","image":"1f939-1f3fe-200d-2640-fe0f.png","sheet_x":42,"sheet_y":19,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F939-1F3FF-200D-2640-FE0F","non_qualified":"1F939-1F3FF-200D-2640","image":"1f939-1f3ff-200d-2640-fe0f.png","sheet_x":42,"sheet_y":20,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MAN JUGGLING","unified":"1F939-200D-2642-FE0F","non_qualified":"1F939-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f939-200d-2642-fe0f.png","sheet_x":42,"sheet_y":21,"short_name":"man-juggling","short_names":["man-juggling"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":480,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F939-1F3FB-200D-2642-FE0F","non_qualified":"1F939-1F3FB-200D-2642","image":"1f939-1f3fb-200d-2642-fe0f.png","sheet_x":42,"sheet_y":22,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F939-1F3FC-200D-2642-FE0F","non_qualified":"1F939-1F3FC-200D-2642","image":"1f939-1f3fc-200d-2642-fe0f.png","sheet_x":42,"sheet_y":23,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F939-1F3FD-200D-2642-FE0F","non_qualified":"1F939-1F3FD-200D-2642","image":"1f939-1f3fd-200d-2642-fe0f.png","sheet_x":42,"sheet_y":24,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F939-1F3FE-200D-2642-FE0F","non_qualified":"1F939-1F3FE-200D-2642","image":"1f939-1f3fe-200d-2642-fe0f.png","sheet_x":42,"sheet_y":25,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F939-1F3FF-200D-2642-FE0F","non_qualified":"1F939-1F3FF-200D-2642","image":"1f939-1f3ff-200d-2642-fe0f.png","sheet_x":42,"sheet_y":26,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"JUGGLING","unified":"1F939","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f939.png","sheet_x":42,"sheet_y":27,"short_name":"juggling","short_names":["juggling"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":479,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F939-1F3FB","non_qualified":null,"image":"1f939-1f3fb.png","sheet_x":42,"sheet_y":28,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F939-1F3FC","non_qualified":null,"image":"1f939-1f3fc.png","sheet_x":42,"sheet_y":29,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F939-1F3FD","non_qualified":null,"image":"1f939-1f3fd.png","sheet_x":42,"sheet_y":30,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F939-1F3FE","non_qualified":null,"image":"1f939-1f3fe.png","sheet_x":42,"sheet_y":31,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F939-1F3FF","non_qualified":null,"image":"1f939-1f3ff.png","sheet_x":42,"sheet_y":32,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"FENCER","unified":"1F93A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f93a.png","sheet_x":42,"sheet_y":33,"short_name":"fencer","short_names":["fencer"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":439,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WOMEN WRESTLING","unified":"1F93C-200D-2640-FE0F","non_qualified":"1F93C-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f93c-200d-2640-fe0f.png","sheet_x":42,"sheet_y":34,"short_name":"woman-wrestling","short_names":["woman-wrestling"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":472,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MEN WRESTLING","unified":"1F93C-200D-2642-FE0F","non_qualified":"1F93C-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f93c-200d-2642-fe0f.png","sheet_x":42,"sheet_y":35,"short_name":"man-wrestling","short_names":["man-wrestling"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":471,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WRESTLERS","unified":"1F93C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f93c.png","sheet_x":42,"sheet_y":36,"short_name":"wrestlers","short_names":["wrestlers"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":470,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WOMAN PLAYING WATER POLO","unified":"1F93D-200D-2640-FE0F","non_qualified":"1F93D-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f93d-200d-2640-fe0f.png","sheet_x":42,"sheet_y":37,"short_name":"woman-playing-water-polo","short_names":["woman-playing-water-polo"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":475,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F93D-1F3FB-200D-2640-FE0F","non_qualified":"1F93D-1F3FB-200D-2640","image":"1f93d-1f3fb-200d-2640-fe0f.png","sheet_x":42,"sheet_y":38,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F93D-1F3FC-200D-2640-FE0F","non_qualified":"1F93D-1F3FC-200D-2640","image":"1f93d-1f3fc-200d-2640-fe0f.png","sheet_x":42,"sheet_y":39,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F93D-1F3FD-200D-2640-FE0F","non_qualified":"1F93D-1F3FD-200D-2640","image":"1f93d-1f3fd-200d-2640-fe0f.png","sheet_x":42,"sheet_y":40,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F93D-1F3FE-200D-2640-FE0F","non_qualified":"1F93D-1F3FE-200D-2640","image":"1f93d-1f3fe-200d-2640-fe0f.png","sheet_x":42,"sheet_y":41,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F93D-1F3FF-200D-2640-FE0F","non_qualified":"1F93D-1F3FF-200D-2640","image":"1f93d-1f3ff-200d-2640-fe0f.png","sheet_x":42,"sheet_y":42,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MAN PLAYING WATER POLO","unified":"1F93D-200D-2642-FE0F","non_qualified":"1F93D-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f93d-200d-2642-fe0f.png","sheet_x":42,"sheet_y":43,"short_name":"man-playing-water-polo","short_names":["man-playing-water-polo"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":474,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F93D-1F3FB-200D-2642-FE0F","non_qualified":"1F93D-1F3FB-200D-2642","image":"1f93d-1f3fb-200d-2642-fe0f.png","sheet_x":42,"sheet_y":44,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F93D-1F3FC-200D-2642-FE0F","non_qualified":"1F93D-1F3FC-200D-2642","image":"1f93d-1f3fc-200d-2642-fe0f.png","sheet_x":42,"sheet_y":45,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F93D-1F3FD-200D-2642-FE0F","non_qualified":"1F93D-1F3FD-200D-2642","image":"1f93d-1f3fd-200d-2642-fe0f.png","sheet_x":42,"sheet_y":46,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F93D-1F3FE-200D-2642-FE0F","non_qualified":"1F93D-1F3FE-200D-2642","image":"1f93d-1f3fe-200d-2642-fe0f.png","sheet_x":42,"sheet_y":47,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F93D-1F3FF-200D-2642-FE0F","non_qualified":"1F93D-1F3FF-200D-2642","image":"1f93d-1f3ff-200d-2642-fe0f.png","sheet_x":42,"sheet_y":48,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"WATER POLO","unified":"1F93D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f93d.png","sheet_x":42,"sheet_y":49,"short_name":"water_polo","short_names":["water_polo"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":473,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F93D-1F3FB","non_qualified":null,"image":"1f93d-1f3fb.png","sheet_x":42,"sheet_y":50,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F93D-1F3FC","non_qualified":null,"image":"1f93d-1f3fc.png","sheet_x":42,"sheet_y":51,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F93D-1F3FD","non_qualified":null,"image":"1f93d-1f3fd.png","sheet_x":42,"sheet_y":52,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F93D-1F3FE","non_qualified":null,"image":"1f93d-1f3fe.png","sheet_x":42,"sheet_y":53,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F93D-1F3FF","non_qualified":null,"image":"1f93d-1f3ff.png","sheet_x":42,"sheet_y":54,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"WOMAN PLAYING HANDBALL","unified":"1F93E-200D-2640-FE0F","non_qualified":"1F93E-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f93e-200d-2640-fe0f.png","sheet_x":42,"sheet_y":55,"short_name":"woman-playing-handball","short_names":["woman-playing-handball"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":478,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F93E-1F3FB-200D-2640-FE0F","non_qualified":"1F93E-1F3FB-200D-2640","image":"1f93e-1f3fb-200d-2640-fe0f.png","sheet_x":42,"sheet_y":56,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F93E-1F3FC-200D-2640-FE0F","non_qualified":"1F93E-1F3FC-200D-2640","image":"1f93e-1f3fc-200d-2640-fe0f.png","sheet_x":42,"sheet_y":57,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F93E-1F3FD-200D-2640-FE0F","non_qualified":"1F93E-1F3FD-200D-2640","image":"1f93e-1f3fd-200d-2640-fe0f.png","sheet_x":42,"sheet_y":58,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F93E-1F3FE-200D-2640-FE0F","non_qualified":"1F93E-1F3FE-200D-2640","image":"1f93e-1f3fe-200d-2640-fe0f.png","sheet_x":42,"sheet_y":59,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F93E-1F3FF-200D-2640-FE0F","non_qualified":"1F93E-1F3FF-200D-2640","image":"1f93e-1f3ff-200d-2640-fe0f.png","sheet_x":42,"sheet_y":60,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MAN PLAYING HANDBALL","unified":"1F93E-200D-2642-FE0F","non_qualified":"1F93E-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f93e-200d-2642-fe0f.png","sheet_x":43,"sheet_y":0,"short_name":"man-playing-handball","short_names":["man-playing-handball"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":477,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F93E-1F3FB-200D-2642-FE0F","non_qualified":"1F93E-1F3FB-200D-2642","image":"1f93e-1f3fb-200d-2642-fe0f.png","sheet_x":43,"sheet_y":1,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F93E-1F3FC-200D-2642-FE0F","non_qualified":"1F93E-1F3FC-200D-2642","image":"1f93e-1f3fc-200d-2642-fe0f.png","sheet_x":43,"sheet_y":2,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F93E-1F3FD-200D-2642-FE0F","non_qualified":"1F93E-1F3FD-200D-2642","image":"1f93e-1f3fd-200d-2642-fe0f.png","sheet_x":43,"sheet_y":3,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F93E-1F3FE-200D-2642-FE0F","non_qualified":"1F93E-1F3FE-200D-2642","image":"1f93e-1f3fe-200d-2642-fe0f.png","sheet_x":43,"sheet_y":4,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F93E-1F3FF-200D-2642-FE0F","non_qualified":"1F93E-1F3FF-200D-2642","image":"1f93e-1f3ff-200d-2642-fe0f.png","sheet_x":43,"sheet_y":5,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"HANDBALL","unified":"1F93E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f93e.png","sheet_x":43,"sheet_y":6,"short_name":"handball","short_names":["handball"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":476,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F93E-1F3FB","non_qualified":null,"image":"1f93e-1f3fb.png","sheet_x":43,"sheet_y":7,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F93E-1F3FC","non_qualified":null,"image":"1f93e-1f3fc.png","sheet_x":43,"sheet_y":8,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F93E-1F3FD","non_qualified":null,"image":"1f93e-1f3fd.png","sheet_x":43,"sheet_y":9,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F93E-1F3FE","non_qualified":null,"image":"1f93e-1f3fe.png","sheet_x":43,"sheet_y":10,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F93E-1F3FF","non_qualified":null,"image":"1f93e-1f3ff.png","sheet_x":43,"sheet_y":11,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"DIVING MASK","unified":"1F93F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f93f.png","sheet_x":43,"sheet_y":12,"short_name":"diving_mask","short_names":["diving_mask"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1087,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WILTED FLOWER","unified":"1F940","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f940.png","sheet_x":43,"sheet_y":13,"short_name":"wilted_flower","short_names":["wilted_flower"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-flower","sort_order":665,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"DRUM WITH DRUMSTICKS","unified":"1F941","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f941.png","sheet_x":43,"sheet_y":14,"short_name":"drum_with_drumsticks","short_names":["drum_with_drumsticks"],"text":null,"texts":null,"category":"Objects","subcategory":"musical-instrument","sort_order":1195,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CLINKING GLASSES","unified":"1F942","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f942.png","sheet_x":43,"sheet_y":15,"short_name":"clinking_glasses","short_names":["clinking_glasses"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":805,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"TUMBLER GLASS","unified":"1F943","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f943.png","sheet_x":43,"sheet_y":16,"short_name":"tumbler_glass","short_names":["tumbler_glass"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":806,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SPOON","unified":"1F944","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f944.png","sheet_x":43,"sheet_y":17,"short_name":"spoon","short_names":["spoon"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"dishware","sort_order":816,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"GOAL NET","unified":"1F945","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f945.png","sheet_x":43,"sheet_y":18,"short_name":"goal_net","short_names":["goal_net"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1083,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FIRST PLACE MEDAL","unified":"1F947","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f947.png","sheet_x":43,"sheet_y":19,"short_name":"first_place_medal","short_names":["first_place_medal"],"text":null,"texts":null,"category":"Activities","subcategory":"award-medal","sort_order":1062,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SECOND PLACE MEDAL","unified":"1F948","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f948.png","sheet_x":43,"sheet_y":20,"short_name":"second_place_medal","short_names":["second_place_medal"],"text":null,"texts":null,"category":"Activities","subcategory":"award-medal","sort_order":1063,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"THIRD PLACE MEDAL","unified":"1F949","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f949.png","sheet_x":43,"sheet_y":21,"short_name":"third_place_medal","short_names":["third_place_medal"],"text":null,"texts":null,"category":"Activities","subcategory":"award-medal","sort_order":1064,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BOXING GLOVE","unified":"1F94A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f94a.png","sheet_x":43,"sheet_y":22,"short_name":"boxing_glove","short_names":["boxing_glove"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1081,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MARTIAL ARTS UNIFORM","unified":"1F94B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f94b.png","sheet_x":43,"sheet_y":23,"short_name":"martial_arts_uniform","short_names":["martial_arts_uniform"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1082,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CURLING STONE","unified":"1F94C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f94c.png","sheet_x":43,"sheet_y":24,"short_name":"curling_stone","short_names":["curling_stone"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1091,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LACROSSE STICK AND BALL","unified":"1F94D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f94d.png","sheet_x":43,"sheet_y":25,"short_name":"lacrosse","short_names":["lacrosse"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1078,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SOFTBALL","unified":"1F94E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f94e.png","sheet_x":43,"sheet_y":26,"short_name":"softball","short_names":["softball"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1067,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FLYING DISC","unified":"1F94F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f94f.png","sheet_x":43,"sheet_y":27,"short_name":"flying_disc","short_names":["flying_disc"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1073,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CROISSANT","unified":"1F950","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f950.png","sheet_x":43,"sheet_y":28,"short_name":"croissant","short_names":["croissant"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":724,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"AVOCADO","unified":"1F951","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f951.png","sheet_x":43,"sheet_y":29,"short_name":"avocado","short_names":["avocado"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":706,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CUCUMBER","unified":"1F952","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f952.png","sheet_x":43,"sheet_y":30,"short_name":"cucumber","short_names":["cucumber"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":713,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BACON","unified":"1F953","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f953.png","sheet_x":43,"sheet_y":31,"short_name":"bacon","short_names":["bacon"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":735,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"POTATO","unified":"1F954","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f954.png","sheet_x":43,"sheet_y":32,"short_name":"potato","short_names":["potato"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":708,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CARROT","unified":"1F955","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f955.png","sheet_x":43,"sheet_y":33,"short_name":"carrot","short_names":["carrot"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":709,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BAGUETTE BREAD","unified":"1F956","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f956.png","sheet_x":43,"sheet_y":34,"short_name":"baguette_bread","short_names":["baguette_bread"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":725,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"GREEN SALAD","unified":"1F957","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f957.png","sheet_x":43,"sheet_y":35,"short_name":"green_salad","short_names":["green_salad"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":752,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SHALLOW PAN OF FOOD","unified":"1F958","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f958.png","sheet_x":43,"sheet_y":36,"short_name":"shallow_pan_of_food","short_names":["shallow_pan_of_food"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":748,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"STUFFED FLATBREAD","unified":"1F959","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f959.png","sheet_x":43,"sheet_y":37,"short_name":"stuffed_flatbread","short_names":["stuffed_flatbread"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":744,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"EGG","unified":"1F95A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f95a.png","sheet_x":43,"sheet_y":38,"short_name":"egg","short_names":["egg"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":746,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"GLASS OF MILK","unified":"1F95B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f95b.png","sheet_x":43,"sheet_y":39,"short_name":"glass_of_milk","short_names":["glass_of_milk"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":794,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PEANUTS","unified":"1F95C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f95c.png","sheet_x":43,"sheet_y":40,"short_name":"peanuts","short_names":["peanuts"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":718,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"KIWIFRUIT","unified":"1F95D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f95d.png","sheet_x":43,"sheet_y":41,"short_name":"kiwifruit","short_names":["kiwifruit"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-fruit","sort_order":702,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PANCAKES","unified":"1F95E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f95e.png","sheet_x":43,"sheet_y":42,"short_name":"pancakes","short_names":["pancakes"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":729,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"DUMPLING","unified":"1F95F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f95f.png","sheet_x":43,"sheet_y":43,"short_name":"dumpling","short_names":["dumpling"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-asian","sort_order":771,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FORTUNE COOKIE","unified":"1F960","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f960.png","sheet_x":43,"sheet_y":44,"short_name":"fortune_cookie","short_names":["fortune_cookie"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-asian","sort_order":772,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"TAKEOUT BOX","unified":"1F961","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f961.png","sheet_x":43,"sheet_y":45,"short_name":"takeout_box","short_names":["takeout_box"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-asian","sort_order":773,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CHOPSTICKS","unified":"1F962","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f962.png","sheet_x":43,"sheet_y":46,"short_name":"chopsticks","short_names":["chopsticks"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"dishware","sort_order":813,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BOWL WITH SPOON","unified":"1F963","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f963.png","sheet_x":43,"sheet_y":47,"short_name":"bowl_with_spoon","short_names":["bowl_with_spoon"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":751,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CUP WITH STRAW","unified":"1F964","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f964.png","sheet_x":43,"sheet_y":48,"short_name":"cup_with_straw","short_names":["cup_with_straw"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":808,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"COCONUT","unified":"1F965","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f965.png","sheet_x":43,"sheet_y":49,"short_name":"coconut","short_names":["coconut"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-fruit","sort_order":705,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BROCCOLI","unified":"1F966","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f966.png","sheet_x":43,"sheet_y":50,"short_name":"broccoli","short_names":["broccoli"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":715,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PIE","unified":"1F967","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f967.png","sheet_x":43,"sheet_y":51,"short_name":"pie","short_names":["pie"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-sweet","sort_order":787,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PRETZEL","unified":"1F968","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f968.png","sheet_x":43,"sheet_y":52,"short_name":"pretzel","short_names":["pretzel"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":727,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CUT OF MEAT","unified":"1F969","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f969.png","sheet_x":43,"sheet_y":53,"short_name":"cut_of_meat","short_names":["cut_of_meat"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":734,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SANDWICH","unified":"1F96A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f96a.png","sheet_x":43,"sheet_y":54,"short_name":"sandwich","short_names":["sandwich"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":740,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CANNED FOOD","unified":"1F96B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f96b.png","sheet_x":43,"sheet_y":55,"short_name":"canned_food","short_names":["canned_food"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":756,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LEAFY GREEN","unified":"1F96C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f96c.png","sheet_x":43,"sheet_y":56,"short_name":"leafy_green","short_names":["leafy_green"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":714,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MANGO","unified":"1F96D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f96d.png","sheet_x":43,"sheet_y":57,"short_name":"mango","short_names":["mango"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-fruit","sort_order":694,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MOON CAKE","unified":"1F96E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f96e.png","sheet_x":43,"sheet_y":58,"short_name":"moon_cake","short_names":["moon_cake"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-asian","sort_order":769,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BAGEL","unified":"1F96F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f96f.png","sheet_x":43,"sheet_y":59,"short_name":"bagel","short_names":["bagel"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":728,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SMILING FACE WITH SMILING EYES AND THREE HEARTS","unified":"1F970","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f970.png","sheet_x":43,"sheet_y":60,"short_name":"smiling_face_with_3_hearts","short_names":["smiling_face_with_3_hearts"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-affection","sort_order":15,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"YAWNING FACE","unified":"1F971","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f971.png","sheet_x":44,"sheet_y":0,"short_name":"yawning_face","short_names":["yawning_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":99,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SMILING FACE WITH TEAR","unified":"1F972","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f972.png","sheet_x":44,"sheet_y":1,"short_name":"smiling_face_with_tear","short_names":["smiling_face_with_tear"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-affection","sort_order":23,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE WITH PARTY HORN AND PARTY HAT","unified":"1F973","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f973.png","sheet_x":44,"sheet_y":2,"short_name":"partying_face","short_names":["partying_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-hat","sort_order":69,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE WITH UNEVEN EYES AND WAVY MOUTH","unified":"1F974","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f974.png","sheet_x":44,"sheet_y":3,"short_name":"woozy_face","short_names":["woozy_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-unwell","sort_order":64,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"OVERHEATED FACE","unified":"1F975","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f975.png","sheet_x":44,"sheet_y":4,"short_name":"hot_face","short_names":["hot_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-unwell","sort_order":62,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FREEZING FACE","unified":"1F976","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f976.png","sheet_x":44,"sheet_y":5,"short_name":"cold_face","short_names":["cold_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-unwell","sort_order":63,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"NINJA","unified":"1F977","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f977.png","sheet_x":44,"sheet_y":6,"short_name":"ninja","short_names":["ninja"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":343,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F977-1F3FB","non_qualified":null,"image":"1f977-1f3fb.png","sheet_x":44,"sheet_y":7,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F977-1F3FC","non_qualified":null,"image":"1f977-1f3fc.png","sheet_x":44,"sheet_y":8,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F977-1F3FD","non_qualified":null,"image":"1f977-1f3fd.png","sheet_x":44,"sheet_y":9,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F977-1F3FE","non_qualified":null,"image":"1f977-1f3fe.png","sheet_x":44,"sheet_y":10,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F977-1F3FF","non_qualified":null,"image":"1f977-1f3ff.png","sheet_x":44,"sheet_y":11,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"DISGUISED FACE","unified":"1F978","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f978.png","sheet_x":44,"sheet_y":12,"short_name":"disguised_face","short_names":["disguised_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-hat","sort_order":70,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE HOLDING BACK TEARS","unified":"1F979","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f979.png","sheet_x":44,"sheet_y":13,"short_name":"face_holding_back_tears","short_names":["face_holding_back_tears"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":84,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE WITH PLEADING EYES","unified":"1F97A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f97a.png","sheet_x":44,"sheet_y":14,"short_name":"pleading_face","short_names":["pleading_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":83,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SARI","unified":"1F97B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f97b.png","sheet_x":44,"sheet_y":15,"short_name":"sari","short_names":["sari"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1137,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LAB COAT","unified":"1F97C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f97c.png","sheet_x":44,"sheet_y":16,"short_name":"lab_coat","short_names":["lab_coat"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1126,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"GOGGLES","unified":"1F97D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f97d.png","sheet_x":44,"sheet_y":17,"short_name":"goggles","short_names":["goggles"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1125,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HIKING BOOT","unified":"1F97E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f97e.png","sheet_x":44,"sheet_y":18,"short_name":"hiking_boot","short_names":["hiking_boot"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1152,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FLAT SHOE","unified":"1F97F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f97f.png","sheet_x":44,"sheet_y":19,"short_name":"womans_flat_shoe","short_names":["womans_flat_shoe"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1153,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CRAB","unified":"1F980","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f980.png","sheet_x":44,"sheet_y":20,"short_name":"crab","short_names":["crab"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-marine","sort_order":774,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LION FACE","unified":"1F981","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f981.png","sheet_x":44,"sheet_y":21,"short_name":"lion_face","short_names":["lion_face"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":550,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SCORPION","unified":"1F982","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f982.png","sheet_x":44,"sheet_y":22,"short_name":"scorpion","short_names":["scorpion"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bug","sort_order":654,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"TURKEY","unified":"1F983","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f983.png","sheet_x":44,"sheet_y":23,"short_name":"turkey","short_names":["turkey"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":601,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"UNICORN FACE","unified":"1F984","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f984.png","sheet_x":44,"sheet_y":24,"short_name":"unicorn_face","short_names":["unicorn_face"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":558,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"EAGLE","unified":"1F985","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f985.png","sheet_x":44,"sheet_y":25,"short_name":"eagle","short_names":["eagle"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":610,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"DUCK","unified":"1F986","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f986.png","sheet_x":44,"sheet_y":26,"short_name":"duck","short_names":["duck"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":611,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BAT","unified":"1F987","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f987.png","sheet_x":44,"sheet_y":27,"short_name":"bat","short_names":["bat"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":590,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SHARK","unified":"1F988","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f988.png","sheet_x":44,"sheet_y":28,"short_name":"shark","short_names":["shark"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-marine","sort_order":638,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"OWL","unified":"1F989","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f989.png","sheet_x":44,"sheet_y":29,"short_name":"owl","short_names":["owl"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":613,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FOX FACE","unified":"1F98A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f98a.png","sheet_x":44,"sheet_y":30,"short_name":"fox_face","short_names":["fox_face"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":545,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BUTTERFLY","unified":"1F98B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f98b.png","sheet_x":44,"sheet_y":31,"short_name":"butterfly","short_names":["butterfly"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bug","sort_order":644,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"DEER","unified":"1F98C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f98c.png","sheet_x":44,"sheet_y":32,"short_name":"deer","short_names":["deer"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":560,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"GORILLA","unified":"1F98D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f98d.png","sheet_x":44,"sheet_y":33,"short_name":"gorilla","short_names":["gorilla"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":537,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LIZARD","unified":"1F98E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f98e.png","sheet_x":44,"sheet_y":34,"short_name":"lizard","short_names":["lizard"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-reptile","sort_order":625,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"RHINOCEROS","unified":"1F98F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f98f.png","sheet_x":44,"sheet_y":35,"short_name":"rhinoceros","short_names":["rhinoceros"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":579,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SHRIMP","unified":"1F990","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f990.png","sheet_x":44,"sheet_y":36,"short_name":"shrimp","short_names":["shrimp"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-marine","sort_order":776,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SQUID","unified":"1F991","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f991.png","sheet_x":44,"sheet_y":37,"short_name":"squid","short_names":["squid"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-marine","sort_order":777,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"GIRAFFE FACE","unified":"1F992","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f992.png","sheet_x":44,"sheet_y":38,"short_name":"giraffe_face","short_names":["giraffe_face"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":576,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ZEBRA FACE","unified":"1F993","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f993.png","sheet_x":44,"sheet_y":39,"short_name":"zebra_face","short_names":["zebra_face"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":559,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HEDGEHOG","unified":"1F994","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f994.png","sheet_x":44,"sheet_y":40,"short_name":"hedgehog","short_names":["hedgehog"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":589,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SAUROPOD","unified":"1F995","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f995.png","sheet_x":44,"sheet_y":41,"short_name":"sauropod","short_names":["sauropod"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-reptile","sort_order":629,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"T-REX","unified":"1F996","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f996.png","sheet_x":44,"sheet_y":42,"short_name":"t-rex","short_names":["t-rex"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-reptile","sort_order":630,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CRICKET","unified":"1F997","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f997.png","sheet_x":44,"sheet_y":43,"short_name":"cricket","short_names":["cricket"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bug","sort_order":650,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"KANGAROO","unified":"1F998","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f998.png","sheet_x":44,"sheet_y":44,"short_name":"kangaroo","short_names":["kangaroo"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":598,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LLAMA","unified":"1F999","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f999.png","sheet_x":44,"sheet_y":45,"short_name":"llama","short_names":["llama"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":575,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PEACOCK","unified":"1F99A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f99a.png","sheet_x":44,"sheet_y":46,"short_name":"peacock","short_names":["peacock"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":617,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HIPPOPOTAMUS","unified":"1F99B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f99b.png","sheet_x":44,"sheet_y":47,"short_name":"hippopotamus","short_names":["hippopotamus"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":580,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PARROT","unified":"1F99C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f99c.png","sheet_x":44,"sheet_y":48,"short_name":"parrot","short_names":["parrot"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":618,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"RACCOON","unified":"1F99D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f99d.png","sheet_x":44,"sheet_y":49,"short_name":"raccoon","short_names":["raccoon"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":546,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LOBSTER","unified":"1F99E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f99e.png","sheet_x":44,"sheet_y":50,"short_name":"lobster","short_names":["lobster"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-marine","sort_order":775,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MOSQUITO","unified":"1F99F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f99f.png","sheet_x":44,"sheet_y":51,"short_name":"mosquito","short_names":["mosquito"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bug","sort_order":655,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MICROBE","unified":"1F9A0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9a0.png","sheet_x":44,"sheet_y":52,"short_name":"microbe","short_names":["microbe"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bug","sort_order":658,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BADGER","unified":"1F9A1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9a1.png","sheet_x":44,"sheet_y":53,"short_name":"badger","short_names":["badger"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":599,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SWAN","unified":"1F9A2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9a2.png","sheet_x":44,"sheet_y":54,"short_name":"swan","short_names":["swan"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":612,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MAMMOTH","unified":"1F9A3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9a3.png","sheet_x":44,"sheet_y":55,"short_name":"mammoth","short_names":["mammoth"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":578,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"DODO","unified":"1F9A4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9a4.png","sheet_x":44,"sheet_y":56,"short_name":"dodo","short_names":["dodo"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":614,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SLOTH","unified":"1F9A5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9a5.png","sheet_x":44,"sheet_y":57,"short_name":"sloth","short_names":["sloth"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":595,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"OTTER","unified":"1F9A6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9a6.png","sheet_x":44,"sheet_y":58,"short_name":"otter","short_names":["otter"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":596,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ORANGUTAN","unified":"1F9A7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9a7.png","sheet_x":44,"sheet_y":59,"short_name":"orangutan","short_names":["orangutan"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":538,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SKUNK","unified":"1F9A8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9a8.png","sheet_x":44,"sheet_y":60,"short_name":"skunk","short_names":["skunk"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":597,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FLAMINGO","unified":"1F9A9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9a9.png","sheet_x":45,"sheet_y":0,"short_name":"flamingo","short_names":["flamingo"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":616,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"OYSTER","unified":"1F9AA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9aa.png","sheet_x":45,"sheet_y":1,"short_name":"oyster","short_names":["oyster"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-marine","sort_order":778,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BEAVER","unified":"1F9AB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ab.png","sheet_x":45,"sheet_y":2,"short_name":"beaver","short_names":["beaver"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":588,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BISON","unified":"1F9AC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ac.png","sheet_x":45,"sheet_y":3,"short_name":"bison","short_names":["bison"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":561,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SEAL","unified":"1F9AD","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ad.png","sheet_x":45,"sheet_y":4,"short_name":"seal","short_names":["seal"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-marine","sort_order":634,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"GUIDE DOG","unified":"1F9AE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ae.png","sheet_x":45,"sheet_y":5,"short_name":"guide_dog","short_names":["guide_dog"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":541,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PROBING CANE","unified":"1F9AF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9af.png","sheet_x":45,"sheet_y":6,"short_name":"probing_cane","short_names":["probing_cane"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1329,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BONE","unified":"1F9B4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9b4.png","sheet_x":45,"sheet_y":7,"short_name":"bone","short_names":["bone"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":222,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LEG","unified":"1F9B5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9b5.png","sheet_x":45,"sheet_y":8,"short_name":"leg","short_names":["leg"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":213,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9B5-1F3FB","non_qualified":null,"image":"1f9b5-1f3fb.png","sheet_x":45,"sheet_y":9,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9B5-1F3FC","non_qualified":null,"image":"1f9b5-1f3fc.png","sheet_x":45,"sheet_y":10,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9B5-1F3FD","non_qualified":null,"image":"1f9b5-1f3fd.png","sheet_x":45,"sheet_y":11,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9B5-1F3FE","non_qualified":null,"image":"1f9b5-1f3fe.png","sheet_x":45,"sheet_y":12,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9B5-1F3FF","non_qualified":null,"image":"1f9b5-1f3ff.png","sheet_x":45,"sheet_y":13,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"FOOT","unified":"1F9B6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9b6.png","sheet_x":45,"sheet_y":14,"short_name":"foot","short_names":["foot"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":214,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9B6-1F3FB","non_qualified":null,"image":"1f9b6-1f3fb.png","sheet_x":45,"sheet_y":15,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9B6-1F3FC","non_qualified":null,"image":"1f9b6-1f3fc.png","sheet_x":45,"sheet_y":16,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9B6-1F3FD","non_qualified":null,"image":"1f9b6-1f3fd.png","sheet_x":45,"sheet_y":17,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9B6-1F3FE","non_qualified":null,"image":"1f9b6-1f3fe.png","sheet_x":45,"sheet_y":18,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9B6-1F3FF","non_qualified":null,"image":"1f9b6-1f3ff.png","sheet_x":45,"sheet_y":19,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"TOOTH","unified":"1F9B7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9b7.png","sheet_x":45,"sheet_y":20,"short_name":"tooth","short_names":["tooth"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":221,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WOMAN SUPERHERO","unified":"1F9B8-200D-2640-FE0F","non_qualified":"1F9B8-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9b8-200d-2640-fe0f.png","sheet_x":45,"sheet_y":21,"short_name":"female_superhero","short_names":["female_superhero"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":374,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9B8-1F3FB-200D-2640-FE0F","non_qualified":"1F9B8-1F3FB-200D-2640","image":"1f9b8-1f3fb-200d-2640-fe0f.png","sheet_x":45,"sheet_y":22,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9B8-1F3FC-200D-2640-FE0F","non_qualified":"1F9B8-1F3FC-200D-2640","image":"1f9b8-1f3fc-200d-2640-fe0f.png","sheet_x":45,"sheet_y":23,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9B8-1F3FD-200D-2640-FE0F","non_qualified":"1F9B8-1F3FD-200D-2640","image":"1f9b8-1f3fd-200d-2640-fe0f.png","sheet_x":45,"sheet_y":24,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9B8-1F3FE-200D-2640-FE0F","non_qualified":"1F9B8-1F3FE-200D-2640","image":"1f9b8-1f3fe-200d-2640-fe0f.png","sheet_x":45,"sheet_y":25,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9B8-1F3FF-200D-2640-FE0F","non_qualified":"1F9B8-1F3FF-200D-2640","image":"1f9b8-1f3ff-200d-2640-fe0f.png","sheet_x":45,"sheet_y":26,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MAN SUPERHERO","unified":"1F9B8-200D-2642-FE0F","non_qualified":"1F9B8-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9b8-200d-2642-fe0f.png","sheet_x":45,"sheet_y":27,"short_name":"male_superhero","short_names":["male_superhero"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":373,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9B8-1F3FB-200D-2642-FE0F","non_qualified":"1F9B8-1F3FB-200D-2642","image":"1f9b8-1f3fb-200d-2642-fe0f.png","sheet_x":45,"sheet_y":28,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9B8-1F3FC-200D-2642-FE0F","non_qualified":"1F9B8-1F3FC-200D-2642","image":"1f9b8-1f3fc-200d-2642-fe0f.png","sheet_x":45,"sheet_y":29,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9B8-1F3FD-200D-2642-FE0F","non_qualified":"1F9B8-1F3FD-200D-2642","image":"1f9b8-1f3fd-200d-2642-fe0f.png","sheet_x":45,"sheet_y":30,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9B8-1F3FE-200D-2642-FE0F","non_qualified":"1F9B8-1F3FE-200D-2642","image":"1f9b8-1f3fe-200d-2642-fe0f.png","sheet_x":45,"sheet_y":31,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9B8-1F3FF-200D-2642-FE0F","non_qualified":"1F9B8-1F3FF-200D-2642","image":"1f9b8-1f3ff-200d-2642-fe0f.png","sheet_x":45,"sheet_y":32,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"SUPERHERO","unified":"1F9B8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9b8.png","sheet_x":45,"sheet_y":33,"short_name":"superhero","short_names":["superhero"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":372,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9B8-1F3FB","non_qualified":null,"image":"1f9b8-1f3fb.png","sheet_x":45,"sheet_y":34,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9B8-1F3FC","non_qualified":null,"image":"1f9b8-1f3fc.png","sheet_x":45,"sheet_y":35,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9B8-1F3FD","non_qualified":null,"image":"1f9b8-1f3fd.png","sheet_x":45,"sheet_y":36,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9B8-1F3FE","non_qualified":null,"image":"1f9b8-1f3fe.png","sheet_x":45,"sheet_y":37,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9B8-1F3FF","non_qualified":null,"image":"1f9b8-1f3ff.png","sheet_x":45,"sheet_y":38,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"WOMAN SUPERVILLAIN","unified":"1F9B9-200D-2640-FE0F","non_qualified":"1F9B9-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9b9-200d-2640-fe0f.png","sheet_x":45,"sheet_y":39,"short_name":"female_supervillain","short_names":["female_supervillain"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":377,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9B9-1F3FB-200D-2640-FE0F","non_qualified":"1F9B9-1F3FB-200D-2640","image":"1f9b9-1f3fb-200d-2640-fe0f.png","sheet_x":45,"sheet_y":40,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9B9-1F3FC-200D-2640-FE0F","non_qualified":"1F9B9-1F3FC-200D-2640","image":"1f9b9-1f3fc-200d-2640-fe0f.png","sheet_x":45,"sheet_y":41,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9B9-1F3FD-200D-2640-FE0F","non_qualified":"1F9B9-1F3FD-200D-2640","image":"1f9b9-1f3fd-200d-2640-fe0f.png","sheet_x":45,"sheet_y":42,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9B9-1F3FE-200D-2640-FE0F","non_qualified":"1F9B9-1F3FE-200D-2640","image":"1f9b9-1f3fe-200d-2640-fe0f.png","sheet_x":45,"sheet_y":43,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9B9-1F3FF-200D-2640-FE0F","non_qualified":"1F9B9-1F3FF-200D-2640","image":"1f9b9-1f3ff-200d-2640-fe0f.png","sheet_x":45,"sheet_y":44,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MAN SUPERVILLAIN","unified":"1F9B9-200D-2642-FE0F","non_qualified":"1F9B9-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9b9-200d-2642-fe0f.png","sheet_x":45,"sheet_y":45,"short_name":"male_supervillain","short_names":["male_supervillain"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":376,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9B9-1F3FB-200D-2642-FE0F","non_qualified":"1F9B9-1F3FB-200D-2642","image":"1f9b9-1f3fb-200d-2642-fe0f.png","sheet_x":45,"sheet_y":46,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9B9-1F3FC-200D-2642-FE0F","non_qualified":"1F9B9-1F3FC-200D-2642","image":"1f9b9-1f3fc-200d-2642-fe0f.png","sheet_x":45,"sheet_y":47,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9B9-1F3FD-200D-2642-FE0F","non_qualified":"1F9B9-1F3FD-200D-2642","image":"1f9b9-1f3fd-200d-2642-fe0f.png","sheet_x":45,"sheet_y":48,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9B9-1F3FE-200D-2642-FE0F","non_qualified":"1F9B9-1F3FE-200D-2642","image":"1f9b9-1f3fe-200d-2642-fe0f.png","sheet_x":45,"sheet_y":49,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9B9-1F3FF-200D-2642-FE0F","non_qualified":"1F9B9-1F3FF-200D-2642","image":"1f9b9-1f3ff-200d-2642-fe0f.png","sheet_x":45,"sheet_y":50,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"SUPERVILLAIN","unified":"1F9B9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9b9.png","sheet_x":45,"sheet_y":51,"short_name":"supervillain","short_names":["supervillain"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":375,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9B9-1F3FB","non_qualified":null,"image":"1f9b9-1f3fb.png","sheet_x":45,"sheet_y":52,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9B9-1F3FC","non_qualified":null,"image":"1f9b9-1f3fc.png","sheet_x":45,"sheet_y":53,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9B9-1F3FD","non_qualified":null,"image":"1f9b9-1f3fd.png","sheet_x":45,"sheet_y":54,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9B9-1F3FE","non_qualified":null,"image":"1f9b9-1f3fe.png","sheet_x":45,"sheet_y":55,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9B9-1F3FF","non_qualified":null,"image":"1f9b9-1f3ff.png","sheet_x":45,"sheet_y":56,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"SAFETY VEST","unified":"1F9BA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ba.png","sheet_x":45,"sheet_y":57,"short_name":"safety_vest","short_names":["safety_vest"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1127,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"EAR WITH HEARING AID","unified":"1F9BB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9bb.png","sheet_x":45,"sheet_y":58,"short_name":"ear_with_hearing_aid","short_names":["ear_with_hearing_aid"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":216,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9BB-1F3FB","non_qualified":null,"image":"1f9bb-1f3fb.png","sheet_x":45,"sheet_y":59,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9BB-1F3FC","non_qualified":null,"image":"1f9bb-1f3fc.png","sheet_x":45,"sheet_y":60,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9BB-1F3FD","non_qualified":null,"image":"1f9bb-1f3fd.png","sheet_x":46,"sheet_y":0,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9BB-1F3FE","non_qualified":null,"image":"1f9bb-1f3fe.png","sheet_x":46,"sheet_y":1,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9BB-1F3FF","non_qualified":null,"image":"1f9bb-1f3ff.png","sheet_x":46,"sheet_y":2,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MOTORIZED WHEELCHAIR","unified":"1F9BC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9bc.png","sheet_x":46,"sheet_y":3,"short_name":"motorized_wheelchair","short_names":["motorized_wheelchair"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":919,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MANUAL WHEELCHAIR","unified":"1F9BD","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9bd.png","sheet_x":46,"sheet_y":4,"short_name":"manual_wheelchair","short_names":["manual_wheelchair"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":918,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MECHANICAL ARM","unified":"1F9BE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9be.png","sheet_x":46,"sheet_y":5,"short_name":"mechanical_arm","short_names":["mechanical_arm"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":211,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MECHANICAL LEG","unified":"1F9BF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9bf.png","sheet_x":46,"sheet_y":6,"short_name":"mechanical_leg","short_names":["mechanical_leg"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":212,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CHEESE WEDGE","unified":"1F9C0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9c0.png","sheet_x":46,"sheet_y":7,"short_name":"cheese_wedge","short_names":["cheese_wedge"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":731,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CUPCAKE","unified":"1F9C1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9c1.png","sheet_x":46,"sheet_y":8,"short_name":"cupcake","short_names":["cupcake"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-sweet","sort_order":786,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SALT SHAKER","unified":"1F9C2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9c2.png","sheet_x":46,"sheet_y":9,"short_name":"salt","short_names":["salt"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":755,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BEVERAGE BOX","unified":"1F9C3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9c3.png","sheet_x":46,"sheet_y":10,"short_name":"beverage_box","short_names":["beverage_box"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":810,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"GARLIC","unified":"1F9C4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9c4.png","sheet_x":46,"sheet_y":11,"short_name":"garlic","short_names":["garlic"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":716,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ONION","unified":"1F9C5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9c5.png","sheet_x":46,"sheet_y":12,"short_name":"onion","short_names":["onion"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":717,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FALAFEL","unified":"1F9C6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9c6.png","sheet_x":46,"sheet_y":13,"short_name":"falafel","short_names":["falafel"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":745,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WAFFLE","unified":"1F9C7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9c7.png","sheet_x":46,"sheet_y":14,"short_name":"waffle","short_names":["waffle"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":730,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BUTTER","unified":"1F9C8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9c8.png","sheet_x":46,"sheet_y":15,"short_name":"butter","short_names":["butter"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":754,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MATE DRINK","unified":"1F9C9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9c9.png","sheet_x":46,"sheet_y":16,"short_name":"mate_drink","short_names":["mate_drink"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":811,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ICE CUBE","unified":"1F9CA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ca.png","sheet_x":46,"sheet_y":17,"short_name":"ice_cube","short_names":["ice_cube"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":812,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BUBBLE TEA","unified":"1F9CB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9cb.png","sheet_x":46,"sheet_y":18,"short_name":"bubble_tea","short_names":["bubble_tea"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":809,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"TROLL","unified":"1F9CC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9cc.png","sheet_x":46,"sheet_y":19,"short_name":"troll","short_names":["troll"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":399,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WOMAN STANDING","unified":"1F9CD-200D-2640-FE0F","non_qualified":"1F9CD-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9cd-200d-2640-fe0f.png","sheet_x":46,"sheet_y":20,"short_name":"woman_standing","short_names":["woman_standing"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":411,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9CD-1F3FB-200D-2640-FE0F","non_qualified":"1F9CD-1F3FB-200D-2640","image":"1f9cd-1f3fb-200d-2640-fe0f.png","sheet_x":46,"sheet_y":21,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9CD-1F3FC-200D-2640-FE0F","non_qualified":"1F9CD-1F3FC-200D-2640","image":"1f9cd-1f3fc-200d-2640-fe0f.png","sheet_x":46,"sheet_y":22,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9CD-1F3FD-200D-2640-FE0F","non_qualified":"1F9CD-1F3FD-200D-2640","image":"1f9cd-1f3fd-200d-2640-fe0f.png","sheet_x":46,"sheet_y":23,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9CD-1F3FE-200D-2640-FE0F","non_qualified":"1F9CD-1F3FE-200D-2640","image":"1f9cd-1f3fe-200d-2640-fe0f.png","sheet_x":46,"sheet_y":24,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9CD-1F3FF-200D-2640-FE0F","non_qualified":"1F9CD-1F3FF-200D-2640","image":"1f9cd-1f3ff-200d-2640-fe0f.png","sheet_x":46,"sheet_y":25,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MAN STANDING","unified":"1F9CD-200D-2642-FE0F","non_qualified":"1F9CD-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9cd-200d-2642-fe0f.png","sheet_x":46,"sheet_y":26,"short_name":"man_standing","short_names":["man_standing"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":410,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9CD-1F3FB-200D-2642-FE0F","non_qualified":"1F9CD-1F3FB-200D-2642","image":"1f9cd-1f3fb-200d-2642-fe0f.png","sheet_x":46,"sheet_y":27,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9CD-1F3FC-200D-2642-FE0F","non_qualified":"1F9CD-1F3FC-200D-2642","image":"1f9cd-1f3fc-200d-2642-fe0f.png","sheet_x":46,"sheet_y":28,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9CD-1F3FD-200D-2642-FE0F","non_qualified":"1F9CD-1F3FD-200D-2642","image":"1f9cd-1f3fd-200d-2642-fe0f.png","sheet_x":46,"sheet_y":29,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9CD-1F3FE-200D-2642-FE0F","non_qualified":"1F9CD-1F3FE-200D-2642","image":"1f9cd-1f3fe-200d-2642-fe0f.png","sheet_x":46,"sheet_y":30,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9CD-1F3FF-200D-2642-FE0F","non_qualified":"1F9CD-1F3FF-200D-2642","image":"1f9cd-1f3ff-200d-2642-fe0f.png","sheet_x":46,"sheet_y":31,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"STANDING PERSON","unified":"1F9CD","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9cd.png","sheet_x":46,"sheet_y":32,"short_name":"standing_person","short_names":["standing_person"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":409,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9CD-1F3FB","non_qualified":null,"image":"1f9cd-1f3fb.png","sheet_x":46,"sheet_y":33,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9CD-1F3FC","non_qualified":null,"image":"1f9cd-1f3fc.png","sheet_x":46,"sheet_y":34,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9CD-1F3FD","non_qualified":null,"image":"1f9cd-1f3fd.png","sheet_x":46,"sheet_y":35,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9CD-1F3FE","non_qualified":null,"image":"1f9cd-1f3fe.png","sheet_x":46,"sheet_y":36,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9CD-1F3FF","non_qualified":null,"image":"1f9cd-1f3ff.png","sheet_x":46,"sheet_y":37,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"WOMAN KNEELING","unified":"1F9CE-200D-2640-FE0F","non_qualified":"1F9CE-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ce-200d-2640-fe0f.png","sheet_x":46,"sheet_y":38,"short_name":"woman_kneeling","short_names":["woman_kneeling"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":414,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9CE-1F3FB-200D-2640-FE0F","non_qualified":"1F9CE-1F3FB-200D-2640","image":"1f9ce-1f3fb-200d-2640-fe0f.png","sheet_x":46,"sheet_y":39,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9CE-1F3FC-200D-2640-FE0F","non_qualified":"1F9CE-1F3FC-200D-2640","image":"1f9ce-1f3fc-200d-2640-fe0f.png","sheet_x":46,"sheet_y":40,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9CE-1F3FD-200D-2640-FE0F","non_qualified":"1F9CE-1F3FD-200D-2640","image":"1f9ce-1f3fd-200d-2640-fe0f.png","sheet_x":46,"sheet_y":41,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9CE-1F3FE-200D-2640-FE0F","non_qualified":"1F9CE-1F3FE-200D-2640","image":"1f9ce-1f3fe-200d-2640-fe0f.png","sheet_x":46,"sheet_y":42,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9CE-1F3FF-200D-2640-FE0F","non_qualified":"1F9CE-1F3FF-200D-2640","image":"1f9ce-1f3ff-200d-2640-fe0f.png","sheet_x":46,"sheet_y":43,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MAN KNEELING","unified":"1F9CE-200D-2642-FE0F","non_qualified":"1F9CE-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ce-200d-2642-fe0f.png","sheet_x":46,"sheet_y":44,"short_name":"man_kneeling","short_names":["man_kneeling"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":413,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9CE-1F3FB-200D-2642-FE0F","non_qualified":"1F9CE-1F3FB-200D-2642","image":"1f9ce-1f3fb-200d-2642-fe0f.png","sheet_x":46,"sheet_y":45,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9CE-1F3FC-200D-2642-FE0F","non_qualified":"1F9CE-1F3FC-200D-2642","image":"1f9ce-1f3fc-200d-2642-fe0f.png","sheet_x":46,"sheet_y":46,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9CE-1F3FD-200D-2642-FE0F","non_qualified":"1F9CE-1F3FD-200D-2642","image":"1f9ce-1f3fd-200d-2642-fe0f.png","sheet_x":46,"sheet_y":47,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9CE-1F3FE-200D-2642-FE0F","non_qualified":"1F9CE-1F3FE-200D-2642","image":"1f9ce-1f3fe-200d-2642-fe0f.png","sheet_x":46,"sheet_y":48,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9CE-1F3FF-200D-2642-FE0F","non_qualified":"1F9CE-1F3FF-200D-2642","image":"1f9ce-1f3ff-200d-2642-fe0f.png","sheet_x":46,"sheet_y":49,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"KNEELING PERSON","unified":"1F9CE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ce.png","sheet_x":46,"sheet_y":50,"short_name":"kneeling_person","short_names":["kneeling_person"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":412,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9CE-1F3FB","non_qualified":null,"image":"1f9ce-1f3fb.png","sheet_x":46,"sheet_y":51,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9CE-1F3FC","non_qualified":null,"image":"1f9ce-1f3fc.png","sheet_x":46,"sheet_y":52,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9CE-1F3FD","non_qualified":null,"image":"1f9ce-1f3fd.png","sheet_x":46,"sheet_y":53,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9CE-1F3FE","non_qualified":null,"image":"1f9ce-1f3fe.png","sheet_x":46,"sheet_y":54,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9CE-1F3FF","non_qualified":null,"image":"1f9ce-1f3ff.png","sheet_x":46,"sheet_y":55,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"DEAF WOMAN","unified":"1F9CF-200D-2640-FE0F","non_qualified":"1F9CF-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9cf-200d-2640-fe0f.png","sheet_x":46,"sheet_y":56,"short_name":"deaf_woman","short_names":["deaf_woman"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":276,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9CF-1F3FB-200D-2640-FE0F","non_qualified":"1F9CF-1F3FB-200D-2640","image":"1f9cf-1f3fb-200d-2640-fe0f.png","sheet_x":46,"sheet_y":57,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9CF-1F3FC-200D-2640-FE0F","non_qualified":"1F9CF-1F3FC-200D-2640","image":"1f9cf-1f3fc-200d-2640-fe0f.png","sheet_x":46,"sheet_y":58,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9CF-1F3FD-200D-2640-FE0F","non_qualified":"1F9CF-1F3FD-200D-2640","image":"1f9cf-1f3fd-200d-2640-fe0f.png","sheet_x":46,"sheet_y":59,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9CF-1F3FE-200D-2640-FE0F","non_qualified":"1F9CF-1F3FE-200D-2640","image":"1f9cf-1f3fe-200d-2640-fe0f.png","sheet_x":46,"sheet_y":60,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9CF-1F3FF-200D-2640-FE0F","non_qualified":"1F9CF-1F3FF-200D-2640","image":"1f9cf-1f3ff-200d-2640-fe0f.png","sheet_x":47,"sheet_y":0,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"DEAF MAN","unified":"1F9CF-200D-2642-FE0F","non_qualified":"1F9CF-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9cf-200d-2642-fe0f.png","sheet_x":47,"sheet_y":1,"short_name":"deaf_man","short_names":["deaf_man"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":275,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9CF-1F3FB-200D-2642-FE0F","non_qualified":"1F9CF-1F3FB-200D-2642","image":"1f9cf-1f3fb-200d-2642-fe0f.png","sheet_x":47,"sheet_y":2,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9CF-1F3FC-200D-2642-FE0F","non_qualified":"1F9CF-1F3FC-200D-2642","image":"1f9cf-1f3fc-200d-2642-fe0f.png","sheet_x":47,"sheet_y":3,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9CF-1F3FD-200D-2642-FE0F","non_qualified":"1F9CF-1F3FD-200D-2642","image":"1f9cf-1f3fd-200d-2642-fe0f.png","sheet_x":47,"sheet_y":4,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9CF-1F3FE-200D-2642-FE0F","non_qualified":"1F9CF-1F3FE-200D-2642","image":"1f9cf-1f3fe-200d-2642-fe0f.png","sheet_x":47,"sheet_y":5,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9CF-1F3FF-200D-2642-FE0F","non_qualified":"1F9CF-1F3FF-200D-2642","image":"1f9cf-1f3ff-200d-2642-fe0f.png","sheet_x":47,"sheet_y":6,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"DEAF PERSON","unified":"1F9CF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9cf.png","sheet_x":47,"sheet_y":7,"short_name":"deaf_person","short_names":["deaf_person"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":274,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9CF-1F3FB","non_qualified":null,"image":"1f9cf-1f3fb.png","sheet_x":47,"sheet_y":8,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9CF-1F3FC","non_qualified":null,"image":"1f9cf-1f3fc.png","sheet_x":47,"sheet_y":9,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9CF-1F3FD","non_qualified":null,"image":"1f9cf-1f3fd.png","sheet_x":47,"sheet_y":10,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9CF-1F3FE","non_qualified":null,"image":"1f9cf-1f3fe.png","sheet_x":47,"sheet_y":11,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9CF-1F3FF","non_qualified":null,"image":"1f9cf-1f3ff.png","sheet_x":47,"sheet_y":12,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"FACE WITH MONOCLE","unified":"1F9D0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d0.png","sheet_x":47,"sheet_y":13,"short_name":"face_with_monocle","short_names":["face_with_monocle"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-glasses","sort_order":73,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FARMER","unified":"1F9D1-200D-1F33E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f33e.png","sheet_x":47,"sheet_y":14,"short_name":"farmer","short_names":["farmer"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":298,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F33E","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f33e.png","sheet_x":47,"sheet_y":15,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F33E","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f33e.png","sheet_x":47,"sheet_y":16,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F33E","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f33e.png","sheet_x":47,"sheet_y":17,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F33E","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f33e.png","sheet_x":47,"sheet_y":18,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F33E","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f33e.png","sheet_x":47,"sheet_y":19,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"COOK","unified":"1F9D1-200D-1F373","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f373.png","sheet_x":47,"sheet_y":20,"short_name":"cook","short_names":["cook"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":301,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F373","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f373.png","sheet_x":47,"sheet_y":21,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F373","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f373.png","sheet_x":47,"sheet_y":22,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F373","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f373.png","sheet_x":47,"sheet_y":23,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F373","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f373.png","sheet_x":47,"sheet_y":24,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F373","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f373.png","sheet_x":47,"sheet_y":25,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"PERSON FEEDING BABY","unified":"1F9D1-200D-1F37C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f37c.png","sheet_x":47,"sheet_y":26,"short_name":"person_feeding_baby","short_names":["person_feeding_baby"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":367,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F37C","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f37c.png","sheet_x":47,"sheet_y":27,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F37C","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f37c.png","sheet_x":47,"sheet_y":28,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F37C","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f37c.png","sheet_x":47,"sheet_y":29,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F37C","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f37c.png","sheet_x":47,"sheet_y":30,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F37C","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f37c.png","sheet_x":47,"sheet_y":31,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MX CLAUS","unified":"1F9D1-200D-1F384","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f384.png","sheet_x":47,"sheet_y":32,"short_name":"mx_claus","short_names":["mx_claus"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":371,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F384","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f384.png","sheet_x":47,"sheet_y":33,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F384","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f384.png","sheet_x":47,"sheet_y":34,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F384","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f384.png","sheet_x":47,"sheet_y":35,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F384","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f384.png","sheet_x":47,"sheet_y":36,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F384","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f384.png","sheet_x":47,"sheet_y":37,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"STUDENT","unified":"1F9D1-200D-1F393","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f393.png","sheet_x":47,"sheet_y":38,"short_name":"student","short_names":["student"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":289,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F393","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f393.png","sheet_x":47,"sheet_y":39,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F393","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f393.png","sheet_x":47,"sheet_y":40,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F393","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f393.png","sheet_x":47,"sheet_y":41,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F393","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f393.png","sheet_x":47,"sheet_y":42,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F393","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f393.png","sheet_x":47,"sheet_y":43,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"SINGER","unified":"1F9D1-200D-1F3A4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f3a4.png","sheet_x":47,"sheet_y":44,"short_name":"singer","short_names":["singer"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":319,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F3A4","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f3a4.png","sheet_x":47,"sheet_y":45,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F3A4","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f3a4.png","sheet_x":47,"sheet_y":46,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F3A4","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f3a4.png","sheet_x":47,"sheet_y":47,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F3A4","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f3a4.png","sheet_x":47,"sheet_y":48,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F3A4","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f3a4.png","sheet_x":47,"sheet_y":49,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"ARTIST","unified":"1F9D1-200D-1F3A8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f3a8.png","sheet_x":47,"sheet_y":50,"short_name":"artist","short_names":["artist"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":322,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F3A8","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f3a8.png","sheet_x":47,"sheet_y":51,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F3A8","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f3a8.png","sheet_x":47,"sheet_y":52,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F3A8","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f3a8.png","sheet_x":47,"sheet_y":53,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F3A8","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f3a8.png","sheet_x":47,"sheet_y":54,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F3A8","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f3a8.png","sheet_x":47,"sheet_y":55,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"TEACHER","unified":"1F9D1-200D-1F3EB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f3eb.png","sheet_x":47,"sheet_y":56,"short_name":"teacher","short_names":["teacher"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":292,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F3EB","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f3eb.png","sheet_x":47,"sheet_y":57,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F3EB","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f3eb.png","sheet_x":47,"sheet_y":58,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F3EB","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f3eb.png","sheet_x":47,"sheet_y":59,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F3EB","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f3eb.png","sheet_x":47,"sheet_y":60,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F3EB","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f3eb.png","sheet_x":48,"sheet_y":0,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"FACTORY WORKER","unified":"1F9D1-200D-1F3ED","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f3ed.png","sheet_x":48,"sheet_y":1,"short_name":"factory_worker","short_names":["factory_worker"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":307,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F3ED","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f3ed.png","sheet_x":48,"sheet_y":2,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F3ED","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f3ed.png","sheet_x":48,"sheet_y":3,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F3ED","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f3ed.png","sheet_x":48,"sheet_y":4,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F3ED","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f3ed.png","sheet_x":48,"sheet_y":5,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F3ED","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f3ed.png","sheet_x":48,"sheet_y":6,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"TECHNOLOGIST","unified":"1F9D1-200D-1F4BB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f4bb.png","sheet_x":48,"sheet_y":7,"short_name":"technologist","short_names":["technologist"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":316,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F4BB","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f4bb.png","sheet_x":48,"sheet_y":8,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F4BB","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f4bb.png","sheet_x":48,"sheet_y":9,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F4BB","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f4bb.png","sheet_x":48,"sheet_y":10,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F4BB","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f4bb.png","sheet_x":48,"sheet_y":11,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F4BB","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f4bb.png","sheet_x":48,"sheet_y":12,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"OFFICE WORKER","unified":"1F9D1-200D-1F4BC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f4bc.png","sheet_x":48,"sheet_y":13,"short_name":"office_worker","short_names":["office_worker"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":310,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F4BC","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f4bc.png","sheet_x":48,"sheet_y":14,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F4BC","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f4bc.png","sheet_x":48,"sheet_y":15,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F4BC","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f4bc.png","sheet_x":48,"sheet_y":16,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F4BC","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f4bc.png","sheet_x":48,"sheet_y":17,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F4BC","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f4bc.png","sheet_x":48,"sheet_y":18,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MECHANIC","unified":"1F9D1-200D-1F527","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f527.png","sheet_x":48,"sheet_y":19,"short_name":"mechanic","short_names":["mechanic"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":304,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F527","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f527.png","sheet_x":48,"sheet_y":20,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F527","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f527.png","sheet_x":48,"sheet_y":21,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F527","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f527.png","sheet_x":48,"sheet_y":22,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F527","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f527.png","sheet_x":48,"sheet_y":23,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F527","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f527.png","sheet_x":48,"sheet_y":24,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"SCIENTIST","unified":"1F9D1-200D-1F52C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f52c.png","sheet_x":48,"sheet_y":25,"short_name":"scientist","short_names":["scientist"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":313,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F52C","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f52c.png","sheet_x":48,"sheet_y":26,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F52C","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f52c.png","sheet_x":48,"sheet_y":27,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F52C","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f52c.png","sheet_x":48,"sheet_y":28,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F52C","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f52c.png","sheet_x":48,"sheet_y":29,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F52C","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f52c.png","sheet_x":48,"sheet_y":30,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"ASTRONAUT","unified":"1F9D1-200D-1F680","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f680.png","sheet_x":48,"sheet_y":31,"short_name":"astronaut","short_names":["astronaut"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":328,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F680","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f680.png","sheet_x":48,"sheet_y":32,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F680","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f680.png","sheet_x":48,"sheet_y":33,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F680","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f680.png","sheet_x":48,"sheet_y":34,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F680","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f680.png","sheet_x":48,"sheet_y":35,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F680","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f680.png","sheet_x":48,"sheet_y":36,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"FIREFIGHTER","unified":"1F9D1-200D-1F692","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f692.png","sheet_x":48,"sheet_y":37,"short_name":"firefighter","short_names":["firefighter"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":331,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F692","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f692.png","sheet_x":48,"sheet_y":38,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F692","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f692.png","sheet_x":48,"sheet_y":39,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F692","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f692.png","sheet_x":48,"sheet_y":40,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F692","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f692.png","sheet_x":48,"sheet_y":41,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F692","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f692.png","sheet_x":48,"sheet_y":42,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"PEOPLE HOLDING HANDS","unified":"1F9D1-200D-1F91D-200D-1F9D1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f91d-200d-1f9d1.png","sheet_x":48,"sheet_y":43,"short_name":"people_holding_hands","short_names":["people_holding_hands"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":487,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB-1F3FB":{"unified":"1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FB","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb.png","sheet_x":48,"sheet_y":44,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FB-1F3FC":{"unified":"1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FC","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fc.png","sheet_x":48,"sheet_y":45,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FB-1F3FD":{"unified":"1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FD","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fd.png","sheet_x":48,"sheet_y":46,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FB-1F3FE":{"unified":"1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FE","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fe.png","sheet_x":48,"sheet_y":47,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FB-1F3FF":{"unified":"1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FF","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3ff.png","sheet_x":48,"sheet_y":48,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC-1F3FB":{"unified":"1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FB","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb.png","sheet_x":48,"sheet_y":49,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC-1F3FC":{"unified":"1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FC","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc.png","sheet_x":48,"sheet_y":50,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC-1F3FD":{"unified":"1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FD","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fd.png","sheet_x":48,"sheet_y":51,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC-1F3FE":{"unified":"1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FE","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fe.png","sheet_x":48,"sheet_y":52,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC-1F3FF":{"unified":"1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FF","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3ff.png","sheet_x":48,"sheet_y":53,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD-1F3FB":{"unified":"1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FB","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb.png","sheet_x":48,"sheet_y":54,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD-1F3FC":{"unified":"1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FC","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc.png","sheet_x":48,"sheet_y":55,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD-1F3FD":{"unified":"1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FD","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd.png","sheet_x":48,"sheet_y":56,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD-1F3FE":{"unified":"1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FE","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fe.png","sheet_x":48,"sheet_y":57,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD-1F3FF":{"unified":"1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FF","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3ff.png","sheet_x":48,"sheet_y":58,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE-1F3FB":{"unified":"1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FB","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb.png","sheet_x":48,"sheet_y":59,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE-1F3FC":{"unified":"1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FC","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc.png","sheet_x":48,"sheet_y":60,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE-1F3FD":{"unified":"1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FD","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd.png","sheet_x":49,"sheet_y":0,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE-1F3FE":{"unified":"1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FE","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe.png","sheet_x":49,"sheet_y":1,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE-1F3FF":{"unified":"1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FF","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3ff.png","sheet_x":49,"sheet_y":2,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF-1F3FB":{"unified":"1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FB","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb.png","sheet_x":49,"sheet_y":3,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF-1F3FC":{"unified":"1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FC","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc.png","sheet_x":49,"sheet_y":4,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF-1F3FD":{"unified":"1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FD","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd.png","sheet_x":49,"sheet_y":5,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF-1F3FE":{"unified":"1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FE","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe.png","sheet_x":49,"sheet_y":6,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF-1F3FF":{"unified":"1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FF","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff.png","sheet_x":49,"sheet_y":7,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"PERSON WITH WHITE CANE","unified":"1F9D1-200D-1F9AF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f9af.png","sheet_x":49,"sheet_y":8,"short_name":"person_with_probing_cane","short_names":["person_with_probing_cane"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":415,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F9AF","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f9af.png","sheet_x":49,"sheet_y":9,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F9AF","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f9af.png","sheet_x":49,"sheet_y":10,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F9AF","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f9af.png","sheet_x":49,"sheet_y":11,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F9AF","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f9af.png","sheet_x":49,"sheet_y":12,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F9AF","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f9af.png","sheet_x":49,"sheet_y":13,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"PERSON: RED HAIR","unified":"1F9D1-200D-1F9B0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f9b0.png","sheet_x":49,"sheet_y":14,"short_name":"red_haired_person","short_names":["red_haired_person"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":244,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F9B0","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f9b0.png","sheet_x":49,"sheet_y":15,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F9B0","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f9b0.png","sheet_x":49,"sheet_y":16,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F9B0","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f9b0.png","sheet_x":49,"sheet_y":17,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F9B0","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f9b0.png","sheet_x":49,"sheet_y":18,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F9B0","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f9b0.png","sheet_x":49,"sheet_y":19,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"PERSON: CURLY HAIR","unified":"1F9D1-200D-1F9B1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f9b1.png","sheet_x":49,"sheet_y":20,"short_name":"curly_haired_person","short_names":["curly_haired_person"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":246,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F9B1","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f9b1.png","sheet_x":49,"sheet_y":21,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F9B1","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f9b1.png","sheet_x":49,"sheet_y":22,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F9B1","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f9b1.png","sheet_x":49,"sheet_y":23,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F9B1","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f9b1.png","sheet_x":49,"sheet_y":24,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F9B1","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f9b1.png","sheet_x":49,"sheet_y":25,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"PERSON: BALD","unified":"1F9D1-200D-1F9B2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f9b2.png","sheet_x":49,"sheet_y":26,"short_name":"bald_person","short_names":["bald_person"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":250,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F9B2","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f9b2.png","sheet_x":49,"sheet_y":27,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F9B2","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f9b2.png","sheet_x":49,"sheet_y":28,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F9B2","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f9b2.png","sheet_x":49,"sheet_y":29,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F9B2","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f9b2.png","sheet_x":49,"sheet_y":30,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F9B2","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f9b2.png","sheet_x":49,"sheet_y":31,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"PERSON: WHITE HAIR","unified":"1F9D1-200D-1F9B3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f9b3.png","sheet_x":49,"sheet_y":32,"short_name":"white_haired_person","short_names":["white_haired_person"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":248,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F9B3","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f9b3.png","sheet_x":49,"sheet_y":33,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F9B3","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f9b3.png","sheet_x":49,"sheet_y":34,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F9B3","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f9b3.png","sheet_x":49,"sheet_y":35,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F9B3","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f9b3.png","sheet_x":49,"sheet_y":36,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F9B3","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f9b3.png","sheet_x":49,"sheet_y":37,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"PERSON IN MOTORIZED WHEELCHAIR","unified":"1F9D1-200D-1F9BC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f9bc.png","sheet_x":49,"sheet_y":38,"short_name":"person_in_motorized_wheelchair","short_names":["person_in_motorized_wheelchair"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":418,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F9BC","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f9bc.png","sheet_x":49,"sheet_y":39,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F9BC","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f9bc.png","sheet_x":49,"sheet_y":40,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F9BC","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f9bc.png","sheet_x":49,"sheet_y":41,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F9BC","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f9bc.png","sheet_x":49,"sheet_y":42,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F9BC","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f9bc.png","sheet_x":49,"sheet_y":43,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"PERSON IN MANUAL WHEELCHAIR","unified":"1F9D1-200D-1F9BD","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f9bd.png","sheet_x":49,"sheet_y":44,"short_name":"person_in_manual_wheelchair","short_names":["person_in_manual_wheelchair"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":421,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F9BD","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f9bd.png","sheet_x":49,"sheet_y":45,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F9BD","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f9bd.png","sheet_x":49,"sheet_y":46,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F9BD","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f9bd.png","sheet_x":49,"sheet_y":47,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F9BD","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f9bd.png","sheet_x":49,"sheet_y":48,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F9BD","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f9bd.png","sheet_x":49,"sheet_y":49,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"HEALTH WORKER","unified":"1F9D1-200D-2695-FE0F","non_qualified":"1F9D1-200D-2695","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-2695-fe0f.png","sheet_x":49,"sheet_y":50,"short_name":"health_worker","short_names":["health_worker"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":286,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-2695-FE0F","non_qualified":"1F9D1-1F3FB-200D-2695","image":"1f9d1-1f3fb-200d-2695-fe0f.png","sheet_x":49,"sheet_y":51,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-2695-FE0F","non_qualified":"1F9D1-1F3FC-200D-2695","image":"1f9d1-1f3fc-200d-2695-fe0f.png","sheet_x":49,"sheet_y":52,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-2695-FE0F","non_qualified":"1F9D1-1F3FD-200D-2695","image":"1f9d1-1f3fd-200d-2695-fe0f.png","sheet_x":49,"sheet_y":53,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-2695-FE0F","non_qualified":"1F9D1-1F3FE-200D-2695","image":"1f9d1-1f3fe-200d-2695-fe0f.png","sheet_x":49,"sheet_y":54,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-2695-FE0F","non_qualified":"1F9D1-1F3FF-200D-2695","image":"1f9d1-1f3ff-200d-2695-fe0f.png","sheet_x":49,"sheet_y":55,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"JUDGE","unified":"1F9D1-200D-2696-FE0F","non_qualified":"1F9D1-200D-2696","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-2696-fe0f.png","sheet_x":49,"sheet_y":56,"short_name":"judge","short_names":["judge"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":295,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-2696-FE0F","non_qualified":"1F9D1-1F3FB-200D-2696","image":"1f9d1-1f3fb-200d-2696-fe0f.png","sheet_x":49,"sheet_y":57,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-2696-FE0F","non_qualified":"1F9D1-1F3FC-200D-2696","image":"1f9d1-1f3fc-200d-2696-fe0f.png","sheet_x":49,"sheet_y":58,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-2696-FE0F","non_qualified":"1F9D1-1F3FD-200D-2696","image":"1f9d1-1f3fd-200d-2696-fe0f.png","sheet_x":49,"sheet_y":59,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-2696-FE0F","non_qualified":"1F9D1-1F3FE-200D-2696","image":"1f9d1-1f3fe-200d-2696-fe0f.png","sheet_x":49,"sheet_y":60,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-2696-FE0F","non_qualified":"1F9D1-1F3FF-200D-2696","image":"1f9d1-1f3ff-200d-2696-fe0f.png","sheet_x":50,"sheet_y":0,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"PILOT","unified":"1F9D1-200D-2708-FE0F","non_qualified":"1F9D1-200D-2708","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-2708-fe0f.png","sheet_x":50,"sheet_y":1,"short_name":"pilot","short_names":["pilot"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":325,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-2708-FE0F","non_qualified":"1F9D1-1F3FB-200D-2708","image":"1f9d1-1f3fb-200d-2708-fe0f.png","sheet_x":50,"sheet_y":2,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-2708-FE0F","non_qualified":"1F9D1-1F3FC-200D-2708","image":"1f9d1-1f3fc-200d-2708-fe0f.png","sheet_x":50,"sheet_y":3,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-2708-FE0F","non_qualified":"1F9D1-1F3FD-200D-2708","image":"1f9d1-1f3fd-200d-2708-fe0f.png","sheet_x":50,"sheet_y":4,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-2708-FE0F","non_qualified":"1F9D1-1F3FE-200D-2708","image":"1f9d1-1f3fe-200d-2708-fe0f.png","sheet_x":50,"sheet_y":5,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-2708-FE0F","non_qualified":"1F9D1-1F3FF-200D-2708","image":"1f9d1-1f3ff-200d-2708-fe0f.png","sheet_x":50,"sheet_y":6,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"ADULT","unified":"1F9D1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1.png","sheet_x":50,"sheet_y":7,"short_name":"adult","short_names":["adult"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":232,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB","non_qualified":null,"image":"1f9d1-1f3fb.png","sheet_x":50,"sheet_y":8,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D1-1F3FC","non_qualified":null,"image":"1f9d1-1f3fc.png","sheet_x":50,"sheet_y":9,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D1-1F3FD","non_qualified":null,"image":"1f9d1-1f3fd.png","sheet_x":50,"sheet_y":10,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D1-1F3FE","non_qualified":null,"image":"1f9d1-1f3fe.png","sheet_x":50,"sheet_y":11,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D1-1F3FF","non_qualified":null,"image":"1f9d1-1f3ff.png","sheet_x":50,"sheet_y":12,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"CHILD","unified":"1F9D2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d2.png","sheet_x":50,"sheet_y":13,"short_name":"child","short_names":["child"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":229,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D2-1F3FB","non_qualified":null,"image":"1f9d2-1f3fb.png","sheet_x":50,"sheet_y":14,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D2-1F3FC","non_qualified":null,"image":"1f9d2-1f3fc.png","sheet_x":50,"sheet_y":15,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D2-1F3FD","non_qualified":null,"image":"1f9d2-1f3fd.png","sheet_x":50,"sheet_y":16,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D2-1F3FE","non_qualified":null,"image":"1f9d2-1f3fe.png","sheet_x":50,"sheet_y":17,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D2-1F3FF","non_qualified":null,"image":"1f9d2-1f3ff.png","sheet_x":50,"sheet_y":18,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"OLDER ADULT","unified":"1F9D3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d3.png","sheet_x":50,"sheet_y":19,"short_name":"older_adult","short_names":["older_adult"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":253,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D3-1F3FB","non_qualified":null,"image":"1f9d3-1f3fb.png","sheet_x":50,"sheet_y":20,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D3-1F3FC","non_qualified":null,"image":"1f9d3-1f3fc.png","sheet_x":50,"sheet_y":21,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D3-1F3FD","non_qualified":null,"image":"1f9d3-1f3fd.png","sheet_x":50,"sheet_y":22,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D3-1F3FE","non_qualified":null,"image":"1f9d3-1f3fe.png","sheet_x":50,"sheet_y":23,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D3-1F3FF","non_qualified":null,"image":"1f9d3-1f3ff.png","sheet_x":50,"sheet_y":24,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"WOMAN: BEARD","unified":"1F9D4-200D-2640-FE0F","non_qualified":"1F9D4-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d4-200d-2640-fe0f.png","sheet_x":50,"sheet_y":25,"short_name":"woman_with_beard","short_names":["woman_with_beard"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":237,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D4-1F3FB-200D-2640-FE0F","non_qualified":"1F9D4-1F3FB-200D-2640","image":"1f9d4-1f3fb-200d-2640-fe0f.png","sheet_x":50,"sheet_y":26,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D4-1F3FC-200D-2640-FE0F","non_qualified":"1F9D4-1F3FC-200D-2640","image":"1f9d4-1f3fc-200d-2640-fe0f.png","sheet_x":50,"sheet_y":27,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D4-1F3FD-200D-2640-FE0F","non_qualified":"1F9D4-1F3FD-200D-2640","image":"1f9d4-1f3fd-200d-2640-fe0f.png","sheet_x":50,"sheet_y":28,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D4-1F3FE-200D-2640-FE0F","non_qualified":"1F9D4-1F3FE-200D-2640","image":"1f9d4-1f3fe-200d-2640-fe0f.png","sheet_x":50,"sheet_y":29,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D4-1F3FF-200D-2640-FE0F","non_qualified":"1F9D4-1F3FF-200D-2640","image":"1f9d4-1f3ff-200d-2640-fe0f.png","sheet_x":50,"sheet_y":30,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MAN: BEARD","unified":"1F9D4-200D-2642-FE0F","non_qualified":"1F9D4-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d4-200d-2642-fe0f.png","sheet_x":50,"sheet_y":31,"short_name":"man_with_beard","short_names":["man_with_beard"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":236,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D4-1F3FB-200D-2642-FE0F","non_qualified":"1F9D4-1F3FB-200D-2642","image":"1f9d4-1f3fb-200d-2642-fe0f.png","sheet_x":50,"sheet_y":32,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D4-1F3FC-200D-2642-FE0F","non_qualified":"1F9D4-1F3FC-200D-2642","image":"1f9d4-1f3fc-200d-2642-fe0f.png","sheet_x":50,"sheet_y":33,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D4-1F3FD-200D-2642-FE0F","non_qualified":"1F9D4-1F3FD-200D-2642","image":"1f9d4-1f3fd-200d-2642-fe0f.png","sheet_x":50,"sheet_y":34,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D4-1F3FE-200D-2642-FE0F","non_qualified":"1F9D4-1F3FE-200D-2642","image":"1f9d4-1f3fe-200d-2642-fe0f.png","sheet_x":50,"sheet_y":35,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D4-1F3FF-200D-2642-FE0F","non_qualified":"1F9D4-1F3FF-200D-2642","image":"1f9d4-1f3ff-200d-2642-fe0f.png","sheet_x":50,"sheet_y":36,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"BEARDED PERSON","unified":"1F9D4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d4.png","sheet_x":50,"sheet_y":37,"short_name":"bearded_person","short_names":["bearded_person"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":235,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D4-1F3FB","non_qualified":null,"image":"1f9d4-1f3fb.png","sheet_x":50,"sheet_y":38,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D4-1F3FC","non_qualified":null,"image":"1f9d4-1f3fc.png","sheet_x":50,"sheet_y":39,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D4-1F3FD","non_qualified":null,"image":"1f9d4-1f3fd.png","sheet_x":50,"sheet_y":40,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D4-1F3FE","non_qualified":null,"image":"1f9d4-1f3fe.png","sheet_x":50,"sheet_y":41,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D4-1F3FF","non_qualified":null,"image":"1f9d4-1f3ff.png","sheet_x":50,"sheet_y":42,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"PERSON WITH HEADSCARF","unified":"1F9D5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d5.png","sheet_x":50,"sheet_y":43,"short_name":"person_with_headscarf","short_names":["person_with_headscarf"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":354,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D5-1F3FB","non_qualified":null,"image":"1f9d5-1f3fb.png","sheet_x":50,"sheet_y":44,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D5-1F3FC","non_qualified":null,"image":"1f9d5-1f3fc.png","sheet_x":50,"sheet_y":45,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D5-1F3FD","non_qualified":null,"image":"1f9d5-1f3fd.png","sheet_x":50,"sheet_y":46,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D5-1F3FE","non_qualified":null,"image":"1f9d5-1f3fe.png","sheet_x":50,"sheet_y":47,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D5-1F3FF","non_qualified":null,"image":"1f9d5-1f3ff.png","sheet_x":50,"sheet_y":48,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"WOMAN IN STEAMY ROOM","unified":"1F9D6-200D-2640-FE0F","non_qualified":"1F9D6-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d6-200d-2640-fe0f.png","sheet_x":50,"sheet_y":49,"short_name":"woman_in_steamy_room","short_names":["woman_in_steamy_room"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":435,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D6-1F3FB-200D-2640-FE0F","non_qualified":"1F9D6-1F3FB-200D-2640","image":"1f9d6-1f3fb-200d-2640-fe0f.png","sheet_x":50,"sheet_y":50,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D6-1F3FC-200D-2640-FE0F","non_qualified":"1F9D6-1F3FC-200D-2640","image":"1f9d6-1f3fc-200d-2640-fe0f.png","sheet_x":50,"sheet_y":51,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D6-1F3FD-200D-2640-FE0F","non_qualified":"1F9D6-1F3FD-200D-2640","image":"1f9d6-1f3fd-200d-2640-fe0f.png","sheet_x":50,"sheet_y":52,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D6-1F3FE-200D-2640-FE0F","non_qualified":"1F9D6-1F3FE-200D-2640","image":"1f9d6-1f3fe-200d-2640-fe0f.png","sheet_x":50,"sheet_y":53,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D6-1F3FF-200D-2640-FE0F","non_qualified":"1F9D6-1F3FF-200D-2640","image":"1f9d6-1f3ff-200d-2640-fe0f.png","sheet_x":50,"sheet_y":54,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MAN IN STEAMY ROOM","unified":"1F9D6-200D-2642-FE0F","non_qualified":"1F9D6-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d6-200d-2642-fe0f.png","sheet_x":50,"sheet_y":55,"short_name":"man_in_steamy_room","short_names":["man_in_steamy_room"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":434,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D6-1F3FB-200D-2642-FE0F","non_qualified":"1F9D6-1F3FB-200D-2642","image":"1f9d6-1f3fb-200d-2642-fe0f.png","sheet_x":50,"sheet_y":56,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9D6-1F3FB"},"1F3FC":{"unified":"1F9D6-1F3FC-200D-2642-FE0F","non_qualified":"1F9D6-1F3FC-200D-2642","image":"1f9d6-1f3fc-200d-2642-fe0f.png","sheet_x":50,"sheet_y":57,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9D6-1F3FC"},"1F3FD":{"unified":"1F9D6-1F3FD-200D-2642-FE0F","non_qualified":"1F9D6-1F3FD-200D-2642","image":"1f9d6-1f3fd-200d-2642-fe0f.png","sheet_x":50,"sheet_y":58,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9D6-1F3FD"},"1F3FE":{"unified":"1F9D6-1F3FE-200D-2642-FE0F","non_qualified":"1F9D6-1F3FE-200D-2642","image":"1f9d6-1f3fe-200d-2642-fe0f.png","sheet_x":50,"sheet_y":59,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9D6-1F3FE"},"1F3FF":{"unified":"1F9D6-1F3FF-200D-2642-FE0F","non_qualified":"1F9D6-1F3FF-200D-2642","image":"1f9d6-1f3ff-200d-2642-fe0f.png","sheet_x":50,"sheet_y":60,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9D6-1F3FF"}},"obsoletes":"1F9D6"},{"name":"PERSON IN STEAMY ROOM","unified":"1F9D6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d6.png","sheet_x":51,"sheet_y":0,"short_name":"person_in_steamy_room","short_names":["person_in_steamy_room"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":433,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D6-1F3FB","non_qualified":null,"image":"1f9d6-1f3fb.png","sheet_x":51,"sheet_y":1,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9D6-1F3FB-200D-2642-FE0F"},"1F3FC":{"unified":"1F9D6-1F3FC","non_qualified":null,"image":"1f9d6-1f3fc.png","sheet_x":51,"sheet_y":2,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9D6-1F3FC-200D-2642-FE0F"},"1F3FD":{"unified":"1F9D6-1F3FD","non_qualified":null,"image":"1f9d6-1f3fd.png","sheet_x":51,"sheet_y":3,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9D6-1F3FD-200D-2642-FE0F"},"1F3FE":{"unified":"1F9D6-1F3FE","non_qualified":null,"image":"1f9d6-1f3fe.png","sheet_x":51,"sheet_y":4,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9D6-1F3FE-200D-2642-FE0F"},"1F3FF":{"unified":"1F9D6-1F3FF","non_qualified":null,"image":"1f9d6-1f3ff.png","sheet_x":51,"sheet_y":5,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9D6-1F3FF-200D-2642-FE0F"}},"obsoleted_by":"1F9D6-200D-2642-FE0F"},{"name":"WOMAN CLIMBING","unified":"1F9D7-200D-2640-FE0F","non_qualified":"1F9D7-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d7-200d-2640-fe0f.png","sheet_x":51,"sheet_y":6,"short_name":"woman_climbing","short_names":["woman_climbing"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":438,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D7-1F3FB-200D-2640-FE0F","non_qualified":"1F9D7-1F3FB-200D-2640","image":"1f9d7-1f3fb-200d-2640-fe0f.png","sheet_x":51,"sheet_y":7,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9D7-1F3FB"},"1F3FC":{"unified":"1F9D7-1F3FC-200D-2640-FE0F","non_qualified":"1F9D7-1F3FC-200D-2640","image":"1f9d7-1f3fc-200d-2640-fe0f.png","sheet_x":51,"sheet_y":8,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9D7-1F3FC"},"1F3FD":{"unified":"1F9D7-1F3FD-200D-2640-FE0F","non_qualified":"1F9D7-1F3FD-200D-2640","image":"1f9d7-1f3fd-200d-2640-fe0f.png","sheet_x":51,"sheet_y":9,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9D7-1F3FD"},"1F3FE":{"unified":"1F9D7-1F3FE-200D-2640-FE0F","non_qualified":"1F9D7-1F3FE-200D-2640","image":"1f9d7-1f3fe-200d-2640-fe0f.png","sheet_x":51,"sheet_y":10,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9D7-1F3FE"},"1F3FF":{"unified":"1F9D7-1F3FF-200D-2640-FE0F","non_qualified":"1F9D7-1F3FF-200D-2640","image":"1f9d7-1f3ff-200d-2640-fe0f.png","sheet_x":51,"sheet_y":11,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9D7-1F3FF"}},"obsoletes":"1F9D7"},{"name":"MAN CLIMBING","unified":"1F9D7-200D-2642-FE0F","non_qualified":"1F9D7-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d7-200d-2642-fe0f.png","sheet_x":51,"sheet_y":12,"short_name":"man_climbing","short_names":["man_climbing"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":437,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D7-1F3FB-200D-2642-FE0F","non_qualified":"1F9D7-1F3FB-200D-2642","image":"1f9d7-1f3fb-200d-2642-fe0f.png","sheet_x":51,"sheet_y":13,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D7-1F3FC-200D-2642-FE0F","non_qualified":"1F9D7-1F3FC-200D-2642","image":"1f9d7-1f3fc-200d-2642-fe0f.png","sheet_x":51,"sheet_y":14,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D7-1F3FD-200D-2642-FE0F","non_qualified":"1F9D7-1F3FD-200D-2642","image":"1f9d7-1f3fd-200d-2642-fe0f.png","sheet_x":51,"sheet_y":15,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D7-1F3FE-200D-2642-FE0F","non_qualified":"1F9D7-1F3FE-200D-2642","image":"1f9d7-1f3fe-200d-2642-fe0f.png","sheet_x":51,"sheet_y":16,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D7-1F3FF-200D-2642-FE0F","non_qualified":"1F9D7-1F3FF-200D-2642","image":"1f9d7-1f3ff-200d-2642-fe0f.png","sheet_x":51,"sheet_y":17,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"PERSON CLIMBING","unified":"1F9D7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d7.png","sheet_x":51,"sheet_y":18,"short_name":"person_climbing","short_names":["person_climbing"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":436,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D7-1F3FB","non_qualified":null,"image":"1f9d7-1f3fb.png","sheet_x":51,"sheet_y":19,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9D7-1F3FB-200D-2640-FE0F"},"1F3FC":{"unified":"1F9D7-1F3FC","non_qualified":null,"image":"1f9d7-1f3fc.png","sheet_x":51,"sheet_y":20,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9D7-1F3FC-200D-2640-FE0F"},"1F3FD":{"unified":"1F9D7-1F3FD","non_qualified":null,"image":"1f9d7-1f3fd.png","sheet_x":51,"sheet_y":21,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9D7-1F3FD-200D-2640-FE0F"},"1F3FE":{"unified":"1F9D7-1F3FE","non_qualified":null,"image":"1f9d7-1f3fe.png","sheet_x":51,"sheet_y":22,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9D7-1F3FE-200D-2640-FE0F"},"1F3FF":{"unified":"1F9D7-1F3FF","non_qualified":null,"image":"1f9d7-1f3ff.png","sheet_x":51,"sheet_y":23,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9D7-1F3FF-200D-2640-FE0F"}},"obsoleted_by":"1F9D7-200D-2640-FE0F"},{"name":"WOMAN IN LOTUS POSITION","unified":"1F9D8-200D-2640-FE0F","non_qualified":"1F9D8-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d8-200d-2640-fe0f.png","sheet_x":51,"sheet_y":24,"short_name":"woman_in_lotus_position","short_names":["woman_in_lotus_position"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-resting","sort_order":484,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D8-1F3FB-200D-2640-FE0F","non_qualified":"1F9D8-1F3FB-200D-2640","image":"1f9d8-1f3fb-200d-2640-fe0f.png","sheet_x":51,"sheet_y":25,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9D8-1F3FB"},"1F3FC":{"unified":"1F9D8-1F3FC-200D-2640-FE0F","non_qualified":"1F9D8-1F3FC-200D-2640","image":"1f9d8-1f3fc-200d-2640-fe0f.png","sheet_x":51,"sheet_y":26,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9D8-1F3FC"},"1F3FD":{"unified":"1F9D8-1F3FD-200D-2640-FE0F","non_qualified":"1F9D8-1F3FD-200D-2640","image":"1f9d8-1f3fd-200d-2640-fe0f.png","sheet_x":51,"sheet_y":27,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9D8-1F3FD"},"1F3FE":{"unified":"1F9D8-1F3FE-200D-2640-FE0F","non_qualified":"1F9D8-1F3FE-200D-2640","image":"1f9d8-1f3fe-200d-2640-fe0f.png","sheet_x":51,"sheet_y":28,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9D8-1F3FE"},"1F3FF":{"unified":"1F9D8-1F3FF-200D-2640-FE0F","non_qualified":"1F9D8-1F3FF-200D-2640","image":"1f9d8-1f3ff-200d-2640-fe0f.png","sheet_x":51,"sheet_y":29,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9D8-1F3FF"}},"obsoletes":"1F9D8"},{"name":"MAN IN LOTUS POSITION","unified":"1F9D8-200D-2642-FE0F","non_qualified":"1F9D8-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d8-200d-2642-fe0f.png","sheet_x":51,"sheet_y":30,"short_name":"man_in_lotus_position","short_names":["man_in_lotus_position"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-resting","sort_order":483,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D8-1F3FB-200D-2642-FE0F","non_qualified":"1F9D8-1F3FB-200D-2642","image":"1f9d8-1f3fb-200d-2642-fe0f.png","sheet_x":51,"sheet_y":31,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D8-1F3FC-200D-2642-FE0F","non_qualified":"1F9D8-1F3FC-200D-2642","image":"1f9d8-1f3fc-200d-2642-fe0f.png","sheet_x":51,"sheet_y":32,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D8-1F3FD-200D-2642-FE0F","non_qualified":"1F9D8-1F3FD-200D-2642","image":"1f9d8-1f3fd-200d-2642-fe0f.png","sheet_x":51,"sheet_y":33,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D8-1F3FE-200D-2642-FE0F","non_qualified":"1F9D8-1F3FE-200D-2642","image":"1f9d8-1f3fe-200d-2642-fe0f.png","sheet_x":51,"sheet_y":34,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D8-1F3FF-200D-2642-FE0F","non_qualified":"1F9D8-1F3FF-200D-2642","image":"1f9d8-1f3ff-200d-2642-fe0f.png","sheet_x":51,"sheet_y":35,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"PERSON IN LOTUS POSITION","unified":"1F9D8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d8.png","sheet_x":51,"sheet_y":36,"short_name":"person_in_lotus_position","short_names":["person_in_lotus_position"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-resting","sort_order":482,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D8-1F3FB","non_qualified":null,"image":"1f9d8-1f3fb.png","sheet_x":51,"sheet_y":37,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9D8-1F3FB-200D-2640-FE0F"},"1F3FC":{"unified":"1F9D8-1F3FC","non_qualified":null,"image":"1f9d8-1f3fc.png","sheet_x":51,"sheet_y":38,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9D8-1F3FC-200D-2640-FE0F"},"1F3FD":{"unified":"1F9D8-1F3FD","non_qualified":null,"image":"1f9d8-1f3fd.png","sheet_x":51,"sheet_y":39,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9D8-1F3FD-200D-2640-FE0F"},"1F3FE":{"unified":"1F9D8-1F3FE","non_qualified":null,"image":"1f9d8-1f3fe.png","sheet_x":51,"sheet_y":40,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9D8-1F3FE-200D-2640-FE0F"},"1F3FF":{"unified":"1F9D8-1F3FF","non_qualified":null,"image":"1f9d8-1f3ff.png","sheet_x":51,"sheet_y":41,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9D8-1F3FF-200D-2640-FE0F"}},"obsoleted_by":"1F9D8-200D-2640-FE0F"},{"name":"WOMAN MAGE","unified":"1F9D9-200D-2640-FE0F","non_qualified":"1F9D9-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d9-200d-2640-fe0f.png","sheet_x":51,"sheet_y":42,"short_name":"female_mage","short_names":["female_mage"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":380,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D9-1F3FB-200D-2640-FE0F","non_qualified":"1F9D9-1F3FB-200D-2640","image":"1f9d9-1f3fb-200d-2640-fe0f.png","sheet_x":51,"sheet_y":43,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9D9-1F3FB"},"1F3FC":{"unified":"1F9D9-1F3FC-200D-2640-FE0F","non_qualified":"1F9D9-1F3FC-200D-2640","image":"1f9d9-1f3fc-200d-2640-fe0f.png","sheet_x":51,"sheet_y":44,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9D9-1F3FC"},"1F3FD":{"unified":"1F9D9-1F3FD-200D-2640-FE0F","non_qualified":"1F9D9-1F3FD-200D-2640","image":"1f9d9-1f3fd-200d-2640-fe0f.png","sheet_x":51,"sheet_y":45,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9D9-1F3FD"},"1F3FE":{"unified":"1F9D9-1F3FE-200D-2640-FE0F","non_qualified":"1F9D9-1F3FE-200D-2640","image":"1f9d9-1f3fe-200d-2640-fe0f.png","sheet_x":51,"sheet_y":46,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9D9-1F3FE"},"1F3FF":{"unified":"1F9D9-1F3FF-200D-2640-FE0F","non_qualified":"1F9D9-1F3FF-200D-2640","image":"1f9d9-1f3ff-200d-2640-fe0f.png","sheet_x":51,"sheet_y":47,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9D9-1F3FF"}},"obsoletes":"1F9D9"},{"name":"MAN MAGE","unified":"1F9D9-200D-2642-FE0F","non_qualified":"1F9D9-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d9-200d-2642-fe0f.png","sheet_x":51,"sheet_y":48,"short_name":"male_mage","short_names":["male_mage"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":379,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D9-1F3FB-200D-2642-FE0F","non_qualified":"1F9D9-1F3FB-200D-2642","image":"1f9d9-1f3fb-200d-2642-fe0f.png","sheet_x":51,"sheet_y":49,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9D9-1F3FC-200D-2642-FE0F","non_qualified":"1F9D9-1F3FC-200D-2642","image":"1f9d9-1f3fc-200d-2642-fe0f.png","sheet_x":51,"sheet_y":50,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9D9-1F3FD-200D-2642-FE0F","non_qualified":"1F9D9-1F3FD-200D-2642","image":"1f9d9-1f3fd-200d-2642-fe0f.png","sheet_x":51,"sheet_y":51,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9D9-1F3FE-200D-2642-FE0F","non_qualified":"1F9D9-1F3FE-200D-2642","image":"1f9d9-1f3fe-200d-2642-fe0f.png","sheet_x":51,"sheet_y":52,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9D9-1F3FF-200D-2642-FE0F","non_qualified":"1F9D9-1F3FF-200D-2642","image":"1f9d9-1f3ff-200d-2642-fe0f.png","sheet_x":51,"sheet_y":53,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MAGE","unified":"1F9D9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d9.png","sheet_x":51,"sheet_y":54,"short_name":"mage","short_names":["mage"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":378,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9D9-1F3FB","non_qualified":null,"image":"1f9d9-1f3fb.png","sheet_x":51,"sheet_y":55,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9D9-1F3FB-200D-2640-FE0F"},"1F3FC":{"unified":"1F9D9-1F3FC","non_qualified":null,"image":"1f9d9-1f3fc.png","sheet_x":51,"sheet_y":56,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9D9-1F3FC-200D-2640-FE0F"},"1F3FD":{"unified":"1F9D9-1F3FD","non_qualified":null,"image":"1f9d9-1f3fd.png","sheet_x":51,"sheet_y":57,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9D9-1F3FD-200D-2640-FE0F"},"1F3FE":{"unified":"1F9D9-1F3FE","non_qualified":null,"image":"1f9d9-1f3fe.png","sheet_x":51,"sheet_y":58,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9D9-1F3FE-200D-2640-FE0F"},"1F3FF":{"unified":"1F9D9-1F3FF","non_qualified":null,"image":"1f9d9-1f3ff.png","sheet_x":51,"sheet_y":59,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9D9-1F3FF-200D-2640-FE0F"}},"obsoleted_by":"1F9D9-200D-2640-FE0F"},{"name":"WOMAN FAIRY","unified":"1F9DA-200D-2640-FE0F","non_qualified":"1F9DA-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9da-200d-2640-fe0f.png","sheet_x":51,"sheet_y":60,"short_name":"female_fairy","short_names":["female_fairy"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":383,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9DA-1F3FB-200D-2640-FE0F","non_qualified":"1F9DA-1F3FB-200D-2640","image":"1f9da-1f3fb-200d-2640-fe0f.png","sheet_x":52,"sheet_y":0,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9DA-1F3FB"},"1F3FC":{"unified":"1F9DA-1F3FC-200D-2640-FE0F","non_qualified":"1F9DA-1F3FC-200D-2640","image":"1f9da-1f3fc-200d-2640-fe0f.png","sheet_x":52,"sheet_y":1,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9DA-1F3FC"},"1F3FD":{"unified":"1F9DA-1F3FD-200D-2640-FE0F","non_qualified":"1F9DA-1F3FD-200D-2640","image":"1f9da-1f3fd-200d-2640-fe0f.png","sheet_x":52,"sheet_y":2,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9DA-1F3FD"},"1F3FE":{"unified":"1F9DA-1F3FE-200D-2640-FE0F","non_qualified":"1F9DA-1F3FE-200D-2640","image":"1f9da-1f3fe-200d-2640-fe0f.png","sheet_x":52,"sheet_y":3,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9DA-1F3FE"},"1F3FF":{"unified":"1F9DA-1F3FF-200D-2640-FE0F","non_qualified":"1F9DA-1F3FF-200D-2640","image":"1f9da-1f3ff-200d-2640-fe0f.png","sheet_x":52,"sheet_y":4,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9DA-1F3FF"}},"obsoletes":"1F9DA"},{"name":"MAN FAIRY","unified":"1F9DA-200D-2642-FE0F","non_qualified":"1F9DA-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9da-200d-2642-fe0f.png","sheet_x":52,"sheet_y":5,"short_name":"male_fairy","short_names":["male_fairy"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":382,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9DA-1F3FB-200D-2642-FE0F","non_qualified":"1F9DA-1F3FB-200D-2642","image":"1f9da-1f3fb-200d-2642-fe0f.png","sheet_x":52,"sheet_y":6,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9DA-1F3FC-200D-2642-FE0F","non_qualified":"1F9DA-1F3FC-200D-2642","image":"1f9da-1f3fc-200d-2642-fe0f.png","sheet_x":52,"sheet_y":7,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9DA-1F3FD-200D-2642-FE0F","non_qualified":"1F9DA-1F3FD-200D-2642","image":"1f9da-1f3fd-200d-2642-fe0f.png","sheet_x":52,"sheet_y":8,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9DA-1F3FE-200D-2642-FE0F","non_qualified":"1F9DA-1F3FE-200D-2642","image":"1f9da-1f3fe-200d-2642-fe0f.png","sheet_x":52,"sheet_y":9,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9DA-1F3FF-200D-2642-FE0F","non_qualified":"1F9DA-1F3FF-200D-2642","image":"1f9da-1f3ff-200d-2642-fe0f.png","sheet_x":52,"sheet_y":10,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"FAIRY","unified":"1F9DA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9da.png","sheet_x":52,"sheet_y":11,"short_name":"fairy","short_names":["fairy"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":381,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9DA-1F3FB","non_qualified":null,"image":"1f9da-1f3fb.png","sheet_x":52,"sheet_y":12,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9DA-1F3FB-200D-2640-FE0F"},"1F3FC":{"unified":"1F9DA-1F3FC","non_qualified":null,"image":"1f9da-1f3fc.png","sheet_x":52,"sheet_y":13,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9DA-1F3FC-200D-2640-FE0F"},"1F3FD":{"unified":"1F9DA-1F3FD","non_qualified":null,"image":"1f9da-1f3fd.png","sheet_x":52,"sheet_y":14,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9DA-1F3FD-200D-2640-FE0F"},"1F3FE":{"unified":"1F9DA-1F3FE","non_qualified":null,"image":"1f9da-1f3fe.png","sheet_x":52,"sheet_y":15,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9DA-1F3FE-200D-2640-FE0F"},"1F3FF":{"unified":"1F9DA-1F3FF","non_qualified":null,"image":"1f9da-1f3ff.png","sheet_x":52,"sheet_y":16,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9DA-1F3FF-200D-2640-FE0F"}},"obsoleted_by":"1F9DA-200D-2640-FE0F"},{"name":"WOMAN VAMPIRE","unified":"1F9DB-200D-2640-FE0F","non_qualified":"1F9DB-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9db-200d-2640-fe0f.png","sheet_x":52,"sheet_y":17,"short_name":"female_vampire","short_names":["female_vampire"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":386,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9DB-1F3FB-200D-2640-FE0F","non_qualified":"1F9DB-1F3FB-200D-2640","image":"1f9db-1f3fb-200d-2640-fe0f.png","sheet_x":52,"sheet_y":18,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9DB-1F3FB"},"1F3FC":{"unified":"1F9DB-1F3FC-200D-2640-FE0F","non_qualified":"1F9DB-1F3FC-200D-2640","image":"1f9db-1f3fc-200d-2640-fe0f.png","sheet_x":52,"sheet_y":19,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9DB-1F3FC"},"1F3FD":{"unified":"1F9DB-1F3FD-200D-2640-FE0F","non_qualified":"1F9DB-1F3FD-200D-2640","image":"1f9db-1f3fd-200d-2640-fe0f.png","sheet_x":52,"sheet_y":20,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9DB-1F3FD"},"1F3FE":{"unified":"1F9DB-1F3FE-200D-2640-FE0F","non_qualified":"1F9DB-1F3FE-200D-2640","image":"1f9db-1f3fe-200d-2640-fe0f.png","sheet_x":52,"sheet_y":21,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9DB-1F3FE"},"1F3FF":{"unified":"1F9DB-1F3FF-200D-2640-FE0F","non_qualified":"1F9DB-1F3FF-200D-2640","image":"1f9db-1f3ff-200d-2640-fe0f.png","sheet_x":52,"sheet_y":22,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9DB-1F3FF"}},"obsoletes":"1F9DB"},{"name":"MAN VAMPIRE","unified":"1F9DB-200D-2642-FE0F","non_qualified":"1F9DB-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9db-200d-2642-fe0f.png","sheet_x":52,"sheet_y":23,"short_name":"male_vampire","short_names":["male_vampire"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":385,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9DB-1F3FB-200D-2642-FE0F","non_qualified":"1F9DB-1F3FB-200D-2642","image":"1f9db-1f3fb-200d-2642-fe0f.png","sheet_x":52,"sheet_y":24,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9DB-1F3FC-200D-2642-FE0F","non_qualified":"1F9DB-1F3FC-200D-2642","image":"1f9db-1f3fc-200d-2642-fe0f.png","sheet_x":52,"sheet_y":25,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9DB-1F3FD-200D-2642-FE0F","non_qualified":"1F9DB-1F3FD-200D-2642","image":"1f9db-1f3fd-200d-2642-fe0f.png","sheet_x":52,"sheet_y":26,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9DB-1F3FE-200D-2642-FE0F","non_qualified":"1F9DB-1F3FE-200D-2642","image":"1f9db-1f3fe-200d-2642-fe0f.png","sheet_x":52,"sheet_y":27,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9DB-1F3FF-200D-2642-FE0F","non_qualified":"1F9DB-1F3FF-200D-2642","image":"1f9db-1f3ff-200d-2642-fe0f.png","sheet_x":52,"sheet_y":28,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"VAMPIRE","unified":"1F9DB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9db.png","sheet_x":52,"sheet_y":29,"short_name":"vampire","short_names":["vampire"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":384,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9DB-1F3FB","non_qualified":null,"image":"1f9db-1f3fb.png","sheet_x":52,"sheet_y":30,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9DB-1F3FB-200D-2640-FE0F"},"1F3FC":{"unified":"1F9DB-1F3FC","non_qualified":null,"image":"1f9db-1f3fc.png","sheet_x":52,"sheet_y":31,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9DB-1F3FC-200D-2640-FE0F"},"1F3FD":{"unified":"1F9DB-1F3FD","non_qualified":null,"image":"1f9db-1f3fd.png","sheet_x":52,"sheet_y":32,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9DB-1F3FD-200D-2640-FE0F"},"1F3FE":{"unified":"1F9DB-1F3FE","non_qualified":null,"image":"1f9db-1f3fe.png","sheet_x":52,"sheet_y":33,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9DB-1F3FE-200D-2640-FE0F"},"1F3FF":{"unified":"1F9DB-1F3FF","non_qualified":null,"image":"1f9db-1f3ff.png","sheet_x":52,"sheet_y":34,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9DB-1F3FF-200D-2640-FE0F"}},"obsoleted_by":"1F9DB-200D-2640-FE0F"},{"name":"MERMAID","unified":"1F9DC-200D-2640-FE0F","non_qualified":"1F9DC-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9dc-200d-2640-fe0f.png","sheet_x":52,"sheet_y":35,"short_name":"mermaid","short_names":["mermaid"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":389,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9DC-1F3FB-200D-2640-FE0F","non_qualified":"1F9DC-1F3FB-200D-2640","image":"1f9dc-1f3fb-200d-2640-fe0f.png","sheet_x":52,"sheet_y":36,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9DC-1F3FC-200D-2640-FE0F","non_qualified":"1F9DC-1F3FC-200D-2640","image":"1f9dc-1f3fc-200d-2640-fe0f.png","sheet_x":52,"sheet_y":37,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9DC-1F3FD-200D-2640-FE0F","non_qualified":"1F9DC-1F3FD-200D-2640","image":"1f9dc-1f3fd-200d-2640-fe0f.png","sheet_x":52,"sheet_y":38,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9DC-1F3FE-200D-2640-FE0F","non_qualified":"1F9DC-1F3FE-200D-2640","image":"1f9dc-1f3fe-200d-2640-fe0f.png","sheet_x":52,"sheet_y":39,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9DC-1F3FF-200D-2640-FE0F","non_qualified":"1F9DC-1F3FF-200D-2640","image":"1f9dc-1f3ff-200d-2640-fe0f.png","sheet_x":52,"sheet_y":40,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MERMAN","unified":"1F9DC-200D-2642-FE0F","non_qualified":"1F9DC-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9dc-200d-2642-fe0f.png","sheet_x":52,"sheet_y":41,"short_name":"merman","short_names":["merman"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":388,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9DC-1F3FB-200D-2642-FE0F","non_qualified":"1F9DC-1F3FB-200D-2642","image":"1f9dc-1f3fb-200d-2642-fe0f.png","sheet_x":52,"sheet_y":42,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9DC-1F3FB"},"1F3FC":{"unified":"1F9DC-1F3FC-200D-2642-FE0F","non_qualified":"1F9DC-1F3FC-200D-2642","image":"1f9dc-1f3fc-200d-2642-fe0f.png","sheet_x":52,"sheet_y":43,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9DC-1F3FC"},"1F3FD":{"unified":"1F9DC-1F3FD-200D-2642-FE0F","non_qualified":"1F9DC-1F3FD-200D-2642","image":"1f9dc-1f3fd-200d-2642-fe0f.png","sheet_x":52,"sheet_y":44,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9DC-1F3FD"},"1F3FE":{"unified":"1F9DC-1F3FE-200D-2642-FE0F","non_qualified":"1F9DC-1F3FE-200D-2642","image":"1f9dc-1f3fe-200d-2642-fe0f.png","sheet_x":52,"sheet_y":45,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9DC-1F3FE"},"1F3FF":{"unified":"1F9DC-1F3FF-200D-2642-FE0F","non_qualified":"1F9DC-1F3FF-200D-2642","image":"1f9dc-1f3ff-200d-2642-fe0f.png","sheet_x":52,"sheet_y":46,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9DC-1F3FF"}},"obsoletes":"1F9DC"},{"name":"MERPERSON","unified":"1F9DC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9dc.png","sheet_x":52,"sheet_y":47,"short_name":"merperson","short_names":["merperson"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":387,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9DC-1F3FB","non_qualified":null,"image":"1f9dc-1f3fb.png","sheet_x":52,"sheet_y":48,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9DC-1F3FB-200D-2642-FE0F"},"1F3FC":{"unified":"1F9DC-1F3FC","non_qualified":null,"image":"1f9dc-1f3fc.png","sheet_x":52,"sheet_y":49,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9DC-1F3FC-200D-2642-FE0F"},"1F3FD":{"unified":"1F9DC-1F3FD","non_qualified":null,"image":"1f9dc-1f3fd.png","sheet_x":52,"sheet_y":50,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9DC-1F3FD-200D-2642-FE0F"},"1F3FE":{"unified":"1F9DC-1F3FE","non_qualified":null,"image":"1f9dc-1f3fe.png","sheet_x":52,"sheet_y":51,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9DC-1F3FE-200D-2642-FE0F"},"1F3FF":{"unified":"1F9DC-1F3FF","non_qualified":null,"image":"1f9dc-1f3ff.png","sheet_x":52,"sheet_y":52,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9DC-1F3FF-200D-2642-FE0F"}},"obsoleted_by":"1F9DC-200D-2642-FE0F"},{"name":"WOMAN ELF","unified":"1F9DD-200D-2640-FE0F","non_qualified":"1F9DD-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9dd-200d-2640-fe0f.png","sheet_x":52,"sheet_y":53,"short_name":"female_elf","short_names":["female_elf"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":392,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9DD-1F3FB-200D-2640-FE0F","non_qualified":"1F9DD-1F3FB-200D-2640","image":"1f9dd-1f3fb-200d-2640-fe0f.png","sheet_x":52,"sheet_y":54,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1F9DD-1F3FC-200D-2640-FE0F","non_qualified":"1F9DD-1F3FC-200D-2640","image":"1f9dd-1f3fc-200d-2640-fe0f.png","sheet_x":52,"sheet_y":55,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1F9DD-1F3FD-200D-2640-FE0F","non_qualified":"1F9DD-1F3FD-200D-2640","image":"1f9dd-1f3fd-200d-2640-fe0f.png","sheet_x":52,"sheet_y":56,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1F9DD-1F3FE-200D-2640-FE0F","non_qualified":"1F9DD-1F3FE-200D-2640","image":"1f9dd-1f3fe-200d-2640-fe0f.png","sheet_x":52,"sheet_y":57,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1F9DD-1F3FF-200D-2640-FE0F","non_qualified":"1F9DD-1F3FF-200D-2640","image":"1f9dd-1f3ff-200d-2640-fe0f.png","sheet_x":52,"sheet_y":58,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MAN ELF","unified":"1F9DD-200D-2642-FE0F","non_qualified":"1F9DD-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9dd-200d-2642-fe0f.png","sheet_x":52,"sheet_y":59,"short_name":"male_elf","short_names":["male_elf"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":391,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9DD-1F3FB-200D-2642-FE0F","non_qualified":"1F9DD-1F3FB-200D-2642","image":"1f9dd-1f3fb-200d-2642-fe0f.png","sheet_x":52,"sheet_y":60,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9DD-1F3FB"},"1F3FC":{"unified":"1F9DD-1F3FC-200D-2642-FE0F","non_qualified":"1F9DD-1F3FC-200D-2642","image":"1f9dd-1f3fc-200d-2642-fe0f.png","sheet_x":53,"sheet_y":0,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9DD-1F3FC"},"1F3FD":{"unified":"1F9DD-1F3FD-200D-2642-FE0F","non_qualified":"1F9DD-1F3FD-200D-2642","image":"1f9dd-1f3fd-200d-2642-fe0f.png","sheet_x":53,"sheet_y":1,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9DD-1F3FD"},"1F3FE":{"unified":"1F9DD-1F3FE-200D-2642-FE0F","non_qualified":"1F9DD-1F3FE-200D-2642","image":"1f9dd-1f3fe-200d-2642-fe0f.png","sheet_x":53,"sheet_y":2,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9DD-1F3FE"},"1F3FF":{"unified":"1F9DD-1F3FF-200D-2642-FE0F","non_qualified":"1F9DD-1F3FF-200D-2642","image":"1f9dd-1f3ff-200d-2642-fe0f.png","sheet_x":53,"sheet_y":3,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9DD-1F3FF"}},"obsoletes":"1F9DD"},{"name":"ELF","unified":"1F9DD","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9dd.png","sheet_x":53,"sheet_y":4,"short_name":"elf","short_names":["elf"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":390,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1F9DD-1F3FB","non_qualified":null,"image":"1f9dd-1f3fb.png","sheet_x":53,"sheet_y":5,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9DD-1F3FB-200D-2642-FE0F"},"1F3FC":{"unified":"1F9DD-1F3FC","non_qualified":null,"image":"1f9dd-1f3fc.png","sheet_x":53,"sheet_y":6,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9DD-1F3FC-200D-2642-FE0F"},"1F3FD":{"unified":"1F9DD-1F3FD","non_qualified":null,"image":"1f9dd-1f3fd.png","sheet_x":53,"sheet_y":7,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9DD-1F3FD-200D-2642-FE0F"},"1F3FE":{"unified":"1F9DD-1F3FE","non_qualified":null,"image":"1f9dd-1f3fe.png","sheet_x":53,"sheet_y":8,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9DD-1F3FE-200D-2642-FE0F"},"1F3FF":{"unified":"1F9DD-1F3FF","non_qualified":null,"image":"1f9dd-1f3ff.png","sheet_x":53,"sheet_y":9,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9DD-1F3FF-200D-2642-FE0F"}},"obsoleted_by":"1F9DD-200D-2642-FE0F"},{"name":"WOMAN GENIE","unified":"1F9DE-200D-2640-FE0F","non_qualified":"1F9DE-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9de-200d-2640-fe0f.png","sheet_x":53,"sheet_y":10,"short_name":"female_genie","short_names":["female_genie"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":395,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MAN GENIE","unified":"1F9DE-200D-2642-FE0F","non_qualified":"1F9DE-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9de-200d-2642-fe0f.png","sheet_x":53,"sheet_y":11,"short_name":"male_genie","short_names":["male_genie"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":394,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9DE"},{"name":"GENIE","unified":"1F9DE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9de.png","sheet_x":53,"sheet_y":12,"short_name":"genie","short_names":["genie"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":393,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9DE-200D-2642-FE0F"},{"name":"WOMAN ZOMBIE","unified":"1F9DF-200D-2640-FE0F","non_qualified":"1F9DF-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9df-200d-2640-fe0f.png","sheet_x":53,"sheet_y":13,"short_name":"female_zombie","short_names":["female_zombie"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":398,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MAN ZOMBIE","unified":"1F9DF-200D-2642-FE0F","non_qualified":"1F9DF-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9df-200d-2642-fe0f.png","sheet_x":53,"sheet_y":14,"short_name":"male_zombie","short_names":["male_zombie"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":397,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoletes":"1F9DF"},{"name":"ZOMBIE","unified":"1F9DF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9df.png","sheet_x":53,"sheet_y":15,"short_name":"zombie","short_names":["zombie"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":396,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"obsoleted_by":"1F9DF-200D-2642-FE0F"},{"name":"BRAIN","unified":"1F9E0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9e0.png","sheet_x":53,"sheet_y":16,"short_name":"brain","short_names":["brain"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":218,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ORANGE HEART","unified":"1F9E1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9e1.png","sheet_x":53,"sheet_y":17,"short_name":"orange_heart","short_names":["orange_heart"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":143,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BILLED CAP","unified":"1F9E2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9e2.png","sheet_x":53,"sheet_y":18,"short_name":"billed_cap","short_names":["billed_cap"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1163,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SCARF","unified":"1F9E3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9e3.png","sheet_x":53,"sheet_y":19,"short_name":"scarf","short_names":["scarf"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1131,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"GLOVES","unified":"1F9E4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9e4.png","sheet_x":53,"sheet_y":20,"short_name":"gloves","short_names":["gloves"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1132,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"COAT","unified":"1F9E5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9e5.png","sheet_x":53,"sheet_y":21,"short_name":"coat","short_names":["coat"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1133,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SOCKS","unified":"1F9E6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9e6.png","sheet_x":53,"sheet_y":22,"short_name":"socks","short_names":["socks"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1134,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"RED GIFT ENVELOPE","unified":"1F9E7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9e7.png","sheet_x":53,"sheet_y":23,"short_name":"red_envelope","short_names":["red_envelope"],"text":null,"texts":null,"category":"Activities","subcategory":"event","sort_order":1053,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FIRECRACKER","unified":"1F9E8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9e8.png","sheet_x":53,"sheet_y":24,"short_name":"firecracker","short_names":["firecracker"],"text":null,"texts":null,"category":"Activities","subcategory":"event","sort_order":1042,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"JIGSAW PUZZLE PIECE","unified":"1F9E9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9e9.png","sheet_x":53,"sheet_y":25,"short_name":"jigsaw","short_names":["jigsaw"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1103,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"TEST TUBE","unified":"1F9EA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ea.png","sheet_x":53,"sheet_y":26,"short_name":"test_tube","short_names":["test_tube"],"text":null,"texts":null,"category":"Objects","subcategory":"science","sort_order":1337,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PETRI DISH","unified":"1F9EB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9eb.png","sheet_x":53,"sheet_y":27,"short_name":"petri_dish","short_names":["petri_dish"],"text":null,"texts":null,"category":"Objects","subcategory":"science","sort_order":1338,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"DNA DOUBLE HELIX","unified":"1F9EC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ec.png","sheet_x":53,"sheet_y":28,"short_name":"dna","short_names":["dna"],"text":null,"texts":null,"category":"Objects","subcategory":"science","sort_order":1339,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"COMPASS","unified":"1F9ED","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ed.png","sheet_x":53,"sheet_y":29,"short_name":"compass","short_names":["compass"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-map","sort_order":826,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ABACUS","unified":"1F9EE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ee.png","sheet_x":53,"sheet_y":30,"short_name":"abacus","short_names":["abacus"],"text":null,"texts":null,"category":"Objects","subcategory":"computer","sort_order":1218,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FIRE EXTINGUISHER","unified":"1F9EF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ef.png","sheet_x":53,"sheet_y":31,"short_name":"fire_extinguisher","short_names":["fire_extinguisher"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1373,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"TOOLBOX","unified":"1F9F0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9f0.png","sheet_x":53,"sheet_y":32,"short_name":"toolbox","short_names":["toolbox"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1333,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BRICK","unified":"1F9F1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9f1.png","sheet_x":53,"sheet_y":33,"short_name":"bricks","short_names":["bricks"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":839,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MAGNET","unified":"1F9F2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9f2.png","sheet_x":53,"sheet_y":34,"short_name":"magnet","short_names":["magnet"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1334,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LUGGAGE","unified":"1F9F3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9f3.png","sheet_x":53,"sheet_y":35,"short_name":"luggage","short_names":["luggage"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"hotel","sort_order":959,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LOTION BOTTLE","unified":"1F9F4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9f4.png","sheet_x":53,"sheet_y":36,"short_name":"lotion_bottle","short_names":["lotion_bottle"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1363,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SPOOL OF THREAD","unified":"1F9F5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9f5.png","sheet_x":53,"sheet_y":37,"short_name":"thread","short_names":["thread"],"text":null,"texts":null,"category":"Activities","subcategory":"arts & crafts","sort_order":1119,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BALL OF YARN","unified":"1F9F6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9f6.png","sheet_x":53,"sheet_y":38,"short_name":"yarn","short_names":["yarn"],"text":null,"texts":null,"category":"Activities","subcategory":"arts & crafts","sort_order":1121,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SAFETY PIN","unified":"1F9F7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9f7.png","sheet_x":53,"sheet_y":39,"short_name":"safety_pin","short_names":["safety_pin"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1364,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"TEDDY BEAR","unified":"1F9F8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9f8.png","sheet_x":53,"sheet_y":40,"short_name":"teddy_bear","short_names":["teddy_bear"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1104,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BROOM","unified":"1F9F9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9f9.png","sheet_x":53,"sheet_y":41,"short_name":"broom","short_names":["broom"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1365,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BASKET","unified":"1F9FA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9fa.png","sheet_x":53,"sheet_y":42,"short_name":"basket","short_names":["basket"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1366,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ROLL OF PAPER","unified":"1F9FB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9fb.png","sheet_x":53,"sheet_y":43,"short_name":"roll_of_paper","short_names":["roll_of_paper"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1367,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BAR OF SOAP","unified":"1F9FC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9fc.png","sheet_x":53,"sheet_y":44,"short_name":"soap","short_names":["soap"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1369,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SPONGE","unified":"1F9FD","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9fd.png","sheet_x":53,"sheet_y":45,"short_name":"sponge","short_names":["sponge"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1372,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"RECEIPT","unified":"1F9FE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9fe.png","sheet_x":53,"sheet_y":46,"short_name":"receipt","short_names":["receipt"],"text":null,"texts":null,"category":"Objects","subcategory":"money","sort_order":1260,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"NAZAR AMULET","unified":"1F9FF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ff.png","sheet_x":53,"sheet_y":47,"short_name":"nazar_amulet","short_names":["nazar_amulet"],"text":null,"texts":null,"category":"Objects","subcategory":"other-object","sort_order":1379,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BALLET SHOES","unified":"1FA70","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa70.png","sheet_x":53,"sheet_y":48,"short_name":"ballet_shoes","short_names":["ballet_shoes"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1156,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ONE-PIECE SWIMSUIT","unified":"1FA71","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa71.png","sheet_x":53,"sheet_y":49,"short_name":"one-piece_swimsuit","short_names":["one-piece_swimsuit"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1138,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BRIEFS","unified":"1FA72","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa72.png","sheet_x":53,"sheet_y":50,"short_name":"briefs","short_names":["briefs"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1139,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SHORTS","unified":"1FA73","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa73.png","sheet_x":53,"sheet_y":51,"short_name":"shorts","short_names":["shorts"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1140,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"THONG SANDAL","unified":"1FA74","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa74.png","sheet_x":53,"sheet_y":52,"short_name":"thong_sandal","short_names":["thong_sandal"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1149,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LIGHT BLUE HEART","unified":"1FA75","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa75.png","sheet_x":53,"sheet_y":53,"short_name":"light_blue_heart","short_names":["light_blue_heart"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":147,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false},{"name":"GREY HEART","unified":"1FA76","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa76.png","sheet_x":53,"sheet_y":54,"short_name":"grey_heart","short_names":["grey_heart"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":151,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false},{"name":"PINK HEART","unified":"1FA77","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa77.png","sheet_x":53,"sheet_y":55,"short_name":"pink_heart","short_names":["pink_heart"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":142,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false},{"name":"DROP OF BLOOD","unified":"1FA78","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa78.png","sheet_x":53,"sheet_y":56,"short_name":"drop_of_blood","short_names":["drop_of_blood"],"text":null,"texts":null,"category":"Objects","subcategory":"medical","sort_order":1344,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ADHESIVE BANDAGE","unified":"1FA79","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa79.png","sheet_x":53,"sheet_y":57,"short_name":"adhesive_bandage","short_names":["adhesive_bandage"],"text":null,"texts":null,"category":"Objects","subcategory":"medical","sort_order":1346,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"STETHOSCOPE","unified":"1FA7A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa7a.png","sheet_x":53,"sheet_y":58,"short_name":"stethoscope","short_names":["stethoscope"],"text":null,"texts":null,"category":"Objects","subcategory":"medical","sort_order":1348,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"X-RAY","unified":"1FA7B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa7b.png","sheet_x":53,"sheet_y":59,"short_name":"x-ray","short_names":["x-ray"],"text":null,"texts":null,"category":"Objects","subcategory":"medical","sort_order":1349,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CRUTCH","unified":"1FA7C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa7c.png","sheet_x":53,"sheet_y":60,"short_name":"crutch","short_names":["crutch"],"text":null,"texts":null,"category":"Objects","subcategory":"medical","sort_order":1347,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"YO-YO","unified":"1FA80","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa80.png","sheet_x":54,"sheet_y":0,"short_name":"yo-yo","short_names":["yo-yo"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1093,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"KITE","unified":"1FA81","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa81.png","sheet_x":54,"sheet_y":1,"short_name":"kite","short_names":["kite"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1094,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PARACHUTE","unified":"1FA82","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa82.png","sheet_x":54,"sheet_y":2,"short_name":"parachute","short_names":["parachute"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-air","sort_order":949,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BOOMERANG","unified":"1FA83","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa83.png","sheet_x":54,"sheet_y":3,"short_name":"boomerang","short_names":["boomerang"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1319,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MAGIC WAND","unified":"1FA84","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa84.png","sheet_x":54,"sheet_y":4,"short_name":"magic_wand","short_names":["magic_wand"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1098,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PINATA","unified":"1FA85","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa85.png","sheet_x":54,"sheet_y":5,"short_name":"pinata","short_names":["pinata"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1105,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"NESTING DOLLS","unified":"1FA86","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa86.png","sheet_x":54,"sheet_y":6,"short_name":"nesting_dolls","short_names":["nesting_dolls"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1107,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MARACAS","unified":"1FA87","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa87.png","sheet_x":54,"sheet_y":7,"short_name":"maracas","short_names":["maracas"],"text":null,"texts":null,"category":"Objects","subcategory":"musical-instrument","sort_order":1197,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false},{"name":"FLUTE","unified":"1FA88","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa88.png","sheet_x":54,"sheet_y":8,"short_name":"flute","short_names":["flute"],"text":null,"texts":null,"category":"Objects","subcategory":"musical-instrument","sort_order":1198,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false},{"name":"RINGED PLANET","unified":"1FA90","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa90.png","sheet_x":54,"sheet_y":9,"short_name":"ringed_planet","short_names":["ringed_planet"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1007,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CHAIR","unified":"1FA91","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa91.png","sheet_x":54,"sheet_y":10,"short_name":"chair","short_names":["chair"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1356,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"RAZOR","unified":"1FA92","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa92.png","sheet_x":54,"sheet_y":11,"short_name":"razor","short_names":["razor"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1362,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"AXE","unified":"1FA93","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa93.png","sheet_x":54,"sheet_y":12,"short_name":"axe","short_names":["axe"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1312,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"DIYA LAMP","unified":"1FA94","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa94.png","sheet_x":54,"sheet_y":13,"short_name":"diya_lamp","short_names":["diya_lamp"],"text":null,"texts":null,"category":"Objects","subcategory":"light & video","sort_order":1234,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BANJO","unified":"1FA95","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa95.png","sheet_x":54,"sheet_y":14,"short_name":"banjo","short_names":["banjo"],"text":null,"texts":null,"category":"Objects","subcategory":"musical-instrument","sort_order":1194,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MILITARY HELMET","unified":"1FA96","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa96.png","sheet_x":54,"sheet_y":15,"short_name":"military_helmet","short_names":["military_helmet"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1164,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ACCORDION","unified":"1FA97","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa97.png","sheet_x":54,"sheet_y":16,"short_name":"accordion","short_names":["accordion"],"text":null,"texts":null,"category":"Objects","subcategory":"musical-instrument","sort_order":1189,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LONG DRUM","unified":"1FA98","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa98.png","sheet_x":54,"sheet_y":17,"short_name":"long_drum","short_names":["long_drum"],"text":null,"texts":null,"category":"Objects","subcategory":"musical-instrument","sort_order":1196,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"COIN","unified":"1FA99","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa99.png","sheet_x":54,"sheet_y":18,"short_name":"coin","short_names":["coin"],"text":null,"texts":null,"category":"Objects","subcategory":"money","sort_order":1253,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CARPENTRY SAW","unified":"1FA9A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa9a.png","sheet_x":54,"sheet_y":19,"short_name":"carpentry_saw","short_names":["carpentry_saw"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1322,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SCREWDRIVER","unified":"1FA9B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa9b.png","sheet_x":54,"sheet_y":20,"short_name":"screwdriver","short_names":["screwdriver"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1324,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LADDER","unified":"1FA9C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa9c.png","sheet_x":54,"sheet_y":21,"short_name":"ladder","short_names":["ladder"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1335,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HOOK","unified":"1FA9D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa9d.png","sheet_x":54,"sheet_y":22,"short_name":"hook","short_names":["hook"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1332,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MIRROR","unified":"1FA9E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa9e.png","sheet_x":54,"sheet_y":23,"short_name":"mirror","short_names":["mirror"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1352,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WINDOW","unified":"1FA9F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa9f.png","sheet_x":54,"sheet_y":24,"short_name":"window","short_names":["window"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1353,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PLUNGER","unified":"1FAA0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faa0.png","sheet_x":54,"sheet_y":25,"short_name":"plunger","short_names":["plunger"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1358,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SEWING NEEDLE","unified":"1FAA1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faa1.png","sheet_x":54,"sheet_y":26,"short_name":"sewing_needle","short_names":["sewing_needle"],"text":null,"texts":null,"category":"Activities","subcategory":"arts & crafts","sort_order":1120,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"KNOT","unified":"1FAA2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faa2.png","sheet_x":54,"sheet_y":27,"short_name":"knot","short_names":["knot"],"text":null,"texts":null,"category":"Activities","subcategory":"arts & crafts","sort_order":1122,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BUCKET","unified":"1FAA3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faa3.png","sheet_x":54,"sheet_y":28,"short_name":"bucket","short_names":["bucket"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1368,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MOUSE TRAP","unified":"1FAA4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faa4.png","sheet_x":54,"sheet_y":29,"short_name":"mouse_trap","short_names":["mouse_trap"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1361,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"TOOTHBRUSH","unified":"1FAA5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faa5.png","sheet_x":54,"sheet_y":30,"short_name":"toothbrush","short_names":["toothbrush"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1371,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HEADSTONE","unified":"1FAA6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faa6.png","sheet_x":54,"sheet_y":31,"short_name":"headstone","short_names":["headstone"],"text":null,"texts":null,"category":"Objects","subcategory":"other-object","sort_order":1377,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PLACARD","unified":"1FAA7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faa7.png","sheet_x":54,"sheet_y":32,"short_name":"placard","short_names":["placard"],"text":null,"texts":null,"category":"Objects","subcategory":"other-object","sort_order":1382,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ROCK","unified":"1FAA8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faa8.png","sheet_x":54,"sheet_y":33,"short_name":"rock","short_names":["rock"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":840,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MIRROR BALL","unified":"1FAA9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faa9.png","sheet_x":54,"sheet_y":34,"short_name":"mirror_ball","short_names":["mirror_ball"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1106,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"IDENTIFICATION CARD","unified":"1FAAA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faaa.png","sheet_x":54,"sheet_y":35,"short_name":"identification_card","short_names":["identification_card"],"text":null,"texts":null,"category":"Objects","subcategory":"other-object","sort_order":1383,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LOW BATTERY","unified":"1FAAB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faab.png","sheet_x":54,"sheet_y":36,"short_name":"low_battery","short_names":["low_battery"],"text":null,"texts":null,"category":"Objects","subcategory":"computer","sort_order":1206,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HAMSA","unified":"1FAAC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faac.png","sheet_x":54,"sheet_y":37,"short_name":"hamsa","short_names":["hamsa"],"text":null,"texts":null,"category":"Objects","subcategory":"other-object","sort_order":1380,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FOLDING HAND FAN","unified":"1FAAD","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faad.png","sheet_x":54,"sheet_y":38,"short_name":"folding_hand_fan","short_names":["folding_hand_fan"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1143,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false},{"name":"HAIR PICK","unified":"1FAAE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faae.png","sheet_x":54,"sheet_y":39,"short_name":"hair_pick","short_names":["hair_pick"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1158,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false},{"name":"KHANDA","unified":"1FAAF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faaf.png","sheet_x":54,"sheet_y":40,"short_name":"khanda","short_names":["khanda"],"text":null,"texts":null,"category":"Symbols","subcategory":"religion","sort_order":1443,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false},{"name":"FLY","unified":"1FAB0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fab0.png","sheet_x":54,"sheet_y":41,"short_name":"fly","short_names":["fly"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bug","sort_order":656,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WORM","unified":"1FAB1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fab1.png","sheet_x":54,"sheet_y":42,"short_name":"worm","short_names":["worm"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bug","sort_order":657,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BEETLE","unified":"1FAB2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fab2.png","sheet_x":54,"sheet_y":43,"short_name":"beetle","short_names":["beetle"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bug","sort_order":648,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"COCKROACH","unified":"1FAB3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fab3.png","sheet_x":54,"sheet_y":44,"short_name":"cockroach","short_names":["cockroach"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bug","sort_order":651,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"POTTED PLANT","unified":"1FAB4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fab4.png","sheet_x":54,"sheet_y":45,"short_name":"potted_plant","short_names":["potted_plant"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-other","sort_order":672,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WOOD","unified":"1FAB5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fab5.png","sheet_x":54,"sheet_y":46,"short_name":"wood","short_names":["wood"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":841,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FEATHER","unified":"1FAB6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fab6.png","sheet_x":54,"sheet_y":47,"short_name":"feather","short_names":["feather"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":615,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LOTUS","unified":"1FAB7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fab7.png","sheet_x":54,"sheet_y":48,"short_name":"lotus","short_names":["lotus"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-flower","sort_order":662,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CORAL","unified":"1FAB8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fab8.png","sheet_x":54,"sheet_y":49,"short_name":"coral","short_names":["coral"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-marine","sort_order":641,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"EMPTY NEST","unified":"1FAB9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fab9.png","sheet_x":54,"sheet_y":50,"short_name":"empty_nest","short_names":["empty_nest"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-other","sort_order":684,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"NEST WITH EGGS","unified":"1FABA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faba.png","sheet_x":54,"sheet_y":51,"short_name":"nest_with_eggs","short_names":["nest_with_eggs"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-other","sort_order":685,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HYACINTH","unified":"1FABB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fabb.png","sheet_x":54,"sheet_y":52,"short_name":"hyacinth","short_names":["hyacinth"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-flower","sort_order":670,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false},{"name":"JELLYFISH","unified":"1FABC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fabc.png","sheet_x":54,"sheet_y":53,"short_name":"jellyfish","short_names":["jellyfish"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-marine","sort_order":642,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false},{"name":"WING","unified":"1FABD","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fabd.png","sheet_x":54,"sheet_y":54,"short_name":"wing","short_names":["wing"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":619,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false},{"name":"GOOSE","unified":"1FABF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fabf.png","sheet_x":54,"sheet_y":55,"short_name":"goose","short_names":["goose"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":621,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false},{"name":"ANATOMICAL HEART","unified":"1FAC0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fac0.png","sheet_x":54,"sheet_y":56,"short_name":"anatomical_heart","short_names":["anatomical_heart"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":219,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LUNGS","unified":"1FAC1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fac1.png","sheet_x":54,"sheet_y":57,"short_name":"lungs","short_names":["lungs"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":220,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PEOPLE HUGGING","unified":"1FAC2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fac2.png","sheet_x":54,"sheet_y":58,"short_name":"people_hugging","short_names":["people_hugging"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-symbol","sort_order":528,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PREGNANT MAN","unified":"1FAC3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fac3.png","sheet_x":54,"sheet_y":59,"short_name":"pregnant_man","short_names":["pregnant_man"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":362,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1FAC3-1F3FB","non_qualified":null,"image":"1fac3-1f3fb.png","sheet_x":54,"sheet_y":60,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1FAC3-1F3FC","non_qualified":null,"image":"1fac3-1f3fc.png","sheet_x":55,"sheet_y":0,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1FAC3-1F3FD","non_qualified":null,"image":"1fac3-1f3fd.png","sheet_x":55,"sheet_y":1,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1FAC3-1F3FE","non_qualified":null,"image":"1fac3-1f3fe.png","sheet_x":55,"sheet_y":2,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1FAC3-1F3FF","non_qualified":null,"image":"1fac3-1f3ff.png","sheet_x":55,"sheet_y":3,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"PREGNANT PERSON","unified":"1FAC4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fac4.png","sheet_x":55,"sheet_y":4,"short_name":"pregnant_person","short_names":["pregnant_person"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":363,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1FAC4-1F3FB","non_qualified":null,"image":"1fac4-1f3fb.png","sheet_x":55,"sheet_y":5,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1FAC4-1F3FC","non_qualified":null,"image":"1fac4-1f3fc.png","sheet_x":55,"sheet_y":6,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1FAC4-1F3FD","non_qualified":null,"image":"1fac4-1f3fd.png","sheet_x":55,"sheet_y":7,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1FAC4-1F3FE","non_qualified":null,"image":"1fac4-1f3fe.png","sheet_x":55,"sheet_y":8,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1FAC4-1F3FF","non_qualified":null,"image":"1fac4-1f3ff.png","sheet_x":55,"sheet_y":9,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"PERSON WITH CROWN","unified":"1FAC5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fac5.png","sheet_x":55,"sheet_y":10,"short_name":"person_with_crown","short_names":["person_with_crown"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":347,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1FAC5-1F3FB","non_qualified":null,"image":"1fac5-1f3fb.png","sheet_x":55,"sheet_y":11,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1FAC5-1F3FC","non_qualified":null,"image":"1fac5-1f3fc.png","sheet_x":55,"sheet_y":12,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1FAC5-1F3FD","non_qualified":null,"image":"1fac5-1f3fd.png","sheet_x":55,"sheet_y":13,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1FAC5-1F3FE","non_qualified":null,"image":"1fac5-1f3fe.png","sheet_x":55,"sheet_y":14,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1FAC5-1F3FF","non_qualified":null,"image":"1fac5-1f3ff.png","sheet_x":55,"sheet_y":15,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MOOSE","unified":"1FACE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1face.png","sheet_x":55,"sheet_y":16,"short_name":"moose","short_names":["moose"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":555,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false},{"name":"DONKEY","unified":"1FACF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1facf.png","sheet_x":55,"sheet_y":17,"short_name":"donkey","short_names":["donkey"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":556,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false},{"name":"BLUEBERRIES","unified":"1FAD0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fad0.png","sheet_x":55,"sheet_y":18,"short_name":"blueberries","short_names":["blueberries"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-fruit","sort_order":701,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BELL PEPPER","unified":"1FAD1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fad1.png","sheet_x":55,"sheet_y":19,"short_name":"bell_pepper","short_names":["bell_pepper"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":712,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"OLIVE","unified":"1FAD2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fad2.png","sheet_x":55,"sheet_y":20,"short_name":"olive","short_names":["olive"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-fruit","sort_order":704,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FLATBREAD","unified":"1FAD3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fad3.png","sheet_x":55,"sheet_y":21,"short_name":"flatbread","short_names":["flatbread"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":726,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"TAMALE","unified":"1FAD4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fad4.png","sheet_x":55,"sheet_y":22,"short_name":"tamale","short_names":["tamale"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":743,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FONDUE","unified":"1FAD5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fad5.png","sheet_x":55,"sheet_y":23,"short_name":"fondue","short_names":["fondue"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":750,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"TEAPOT","unified":"1FAD6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fad6.png","sheet_x":55,"sheet_y":24,"short_name":"teapot","short_names":["teapot"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":796,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"POURING LIQUID","unified":"1FAD7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fad7.png","sheet_x":55,"sheet_y":25,"short_name":"pouring_liquid","short_names":["pouring_liquid"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":807,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BEANS","unified":"1FAD8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fad8.png","sheet_x":55,"sheet_y":26,"short_name":"beans","short_names":["beans"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":719,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"JAR","unified":"1FAD9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fad9.png","sheet_x":55,"sheet_y":27,"short_name":"jar","short_names":["jar"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"dishware","sort_order":818,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"GINGER ROOT","unified":"1FADA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fada.png","sheet_x":55,"sheet_y":28,"short_name":"ginger_root","short_names":["ginger_root"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":721,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false},{"name":"PEA POD","unified":"1FADB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fadb.png","sheet_x":55,"sheet_y":29,"short_name":"pea_pod","short_names":["pea_pod"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":722,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false},{"name":"MELTING FACE","unified":"1FAE0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fae0.png","sheet_x":55,"sheet_y":30,"short_name":"melting_face","short_names":["melting_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-smiling","sort_order":11,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SALUTING FACE","unified":"1FAE1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fae1.png","sheet_x":55,"sheet_y":31,"short_name":"saluting_face","short_names":["saluting_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-hand","sort_order":36,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE WITH OPEN EYES AND HAND OVER MOUTH","unified":"1FAE2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fae2.png","sheet_x":55,"sheet_y":32,"short_name":"face_with_open_eyes_and_hand_over_mouth","short_names":["face_with_open_eyes_and_hand_over_mouth"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-hand","sort_order":32,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE WITH PEEKING EYE","unified":"1FAE3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fae3.png","sheet_x":55,"sheet_y":33,"short_name":"face_with_peeking_eye","short_names":["face_with_peeking_eye"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-hand","sort_order":33,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FACE WITH DIAGONAL MOUTH","unified":"1FAE4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fae4.png","sheet_x":55,"sheet_y":34,"short_name":"face_with_diagonal_mouth","short_names":["face_with_diagonal_mouth"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":75,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"DOTTED LINE FACE","unified":"1FAE5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fae5.png","sheet_x":55,"sheet_y":35,"short_name":"dotted_line_face","short_names":["dotted_line_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":42,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BITING LIP","unified":"1FAE6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fae6.png","sheet_x":55,"sheet_y":36,"short_name":"biting_lip","short_names":["biting_lip"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":227,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BUBBLES","unified":"1FAE7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fae7.png","sheet_x":55,"sheet_y":37,"short_name":"bubbles","short_names":["bubbles"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1370,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SHAKING FACE","unified":"1FAE8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fae8.png","sheet_x":55,"sheet_y":38,"short_name":"shaking_face","short_names":["shaking_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":50,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false},{"name":"HAND WITH INDEX FINGER AND THUMB CROSSED","unified":"1FAF0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faf0.png","sheet_x":55,"sheet_y":39,"short_name":"hand_with_index_finger_and_thumb_crossed","short_names":["hand_with_index_finger_and_thumb_crossed"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-partial","sort_order":183,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1FAF0-1F3FB","non_qualified":null,"image":"1faf0-1f3fb.png","sheet_x":55,"sheet_y":40,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1FAF0-1F3FC","non_qualified":null,"image":"1faf0-1f3fc.png","sheet_x":55,"sheet_y":41,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1FAF0-1F3FD","non_qualified":null,"image":"1faf0-1f3fd.png","sheet_x":55,"sheet_y":42,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1FAF0-1F3FE","non_qualified":null,"image":"1faf0-1f3fe.png","sheet_x":55,"sheet_y":43,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1FAF0-1F3FF","non_qualified":null,"image":"1faf0-1f3ff.png","sheet_x":55,"sheet_y":44,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"RIGHTWARDS HAND","unified":"1FAF1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faf1.png","sheet_x":55,"sheet_y":45,"short_name":"rightwards_hand","short_names":["rightwards_hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-open","sort_order":172,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1FAF1-1F3FB","non_qualified":null,"image":"1faf1-1f3fb.png","sheet_x":55,"sheet_y":46,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1FAF1-1F3FC","non_qualified":null,"image":"1faf1-1f3fc.png","sheet_x":55,"sheet_y":47,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1FAF1-1F3FD","non_qualified":null,"image":"1faf1-1f3fd.png","sheet_x":55,"sheet_y":48,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1FAF1-1F3FE","non_qualified":null,"image":"1faf1-1f3fe.png","sheet_x":55,"sheet_y":49,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1FAF1-1F3FF","non_qualified":null,"image":"1faf1-1f3ff.png","sheet_x":55,"sheet_y":50,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"LEFTWARDS HAND","unified":"1FAF2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faf2.png","sheet_x":55,"sheet_y":51,"short_name":"leftwards_hand","short_names":["leftwards_hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-open","sort_order":173,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1FAF2-1F3FB","non_qualified":null,"image":"1faf2-1f3fb.png","sheet_x":55,"sheet_y":52,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1FAF2-1F3FC","non_qualified":null,"image":"1faf2-1f3fc.png","sheet_x":55,"sheet_y":53,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1FAF2-1F3FD","non_qualified":null,"image":"1faf2-1f3fd.png","sheet_x":55,"sheet_y":54,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1FAF2-1F3FE","non_qualified":null,"image":"1faf2-1f3fe.png","sheet_x":55,"sheet_y":55,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1FAF2-1F3FF","non_qualified":null,"image":"1faf2-1f3ff.png","sheet_x":55,"sheet_y":56,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"PALM DOWN HAND","unified":"1FAF3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faf3.png","sheet_x":55,"sheet_y":57,"short_name":"palm_down_hand","short_names":["palm_down_hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-open","sort_order":174,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1FAF3-1F3FB","non_qualified":null,"image":"1faf3-1f3fb.png","sheet_x":55,"sheet_y":58,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1FAF3-1F3FC","non_qualified":null,"image":"1faf3-1f3fc.png","sheet_x":55,"sheet_y":59,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1FAF3-1F3FD","non_qualified":null,"image":"1faf3-1f3fd.png","sheet_x":55,"sheet_y":60,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1FAF3-1F3FE","non_qualified":null,"image":"1faf3-1f3fe.png","sheet_x":56,"sheet_y":0,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1FAF3-1F3FF","non_qualified":null,"image":"1faf3-1f3ff.png","sheet_x":56,"sheet_y":1,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"PALM UP HAND","unified":"1FAF4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faf4.png","sheet_x":56,"sheet_y":2,"short_name":"palm_up_hand","short_names":["palm_up_hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-open","sort_order":175,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1FAF4-1F3FB","non_qualified":null,"image":"1faf4-1f3fb.png","sheet_x":56,"sheet_y":3,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1FAF4-1F3FC","non_qualified":null,"image":"1faf4-1f3fc.png","sheet_x":56,"sheet_y":4,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1FAF4-1F3FD","non_qualified":null,"image":"1faf4-1f3fd.png","sheet_x":56,"sheet_y":5,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1FAF4-1F3FE","non_qualified":null,"image":"1faf4-1f3fe.png","sheet_x":56,"sheet_y":6,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1FAF4-1F3FF","non_qualified":null,"image":"1faf4-1f3ff.png","sheet_x":56,"sheet_y":7,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"INDEX POINTING AT THE VIEWER","unified":"1FAF5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faf5.png","sheet_x":56,"sheet_y":8,"short_name":"index_pointing_at_the_viewer","short_names":["index_pointing_at_the_viewer"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-single-finger","sort_order":193,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1FAF5-1F3FB","non_qualified":null,"image":"1faf5-1f3fb.png","sheet_x":56,"sheet_y":9,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1FAF5-1F3FC","non_qualified":null,"image":"1faf5-1f3fc.png","sheet_x":56,"sheet_y":10,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1FAF5-1F3FD","non_qualified":null,"image":"1faf5-1f3fd.png","sheet_x":56,"sheet_y":11,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1FAF5-1F3FE","non_qualified":null,"image":"1faf5-1f3fe.png","sheet_x":56,"sheet_y":12,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1FAF5-1F3FF","non_qualified":null,"image":"1faf5-1f3ff.png","sheet_x":56,"sheet_y":13,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"HEART HANDS","unified":"1FAF6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faf6.png","sheet_x":56,"sheet_y":14,"short_name":"heart_hands","short_names":["heart_hands"],"text":null,"texts":null,"category":"People & Body","subcategory":"hands","sort_order":202,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"1FAF6-1F3FB","non_qualified":null,"image":"1faf6-1f3fb.png","sheet_x":56,"sheet_y":15,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"1FAF6-1F3FC","non_qualified":null,"image":"1faf6-1f3fc.png","sheet_x":56,"sheet_y":16,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"1FAF6-1F3FD","non_qualified":null,"image":"1faf6-1f3fd.png","sheet_x":56,"sheet_y":17,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"1FAF6-1F3FE","non_qualified":null,"image":"1faf6-1f3fe.png","sheet_x":56,"sheet_y":18,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"1FAF6-1F3FF","non_qualified":null,"image":"1faf6-1f3ff.png","sheet_x":56,"sheet_y":19,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"LEFTWARDS PUSHING HAND","unified":"1FAF7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faf7.png","sheet_x":56,"sheet_y":20,"short_name":"leftwards_pushing_hand","short_names":["leftwards_pushing_hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-open","sort_order":176,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"skin_variations":{"1F3FB":{"unified":"1FAF7-1F3FB","non_qualified":null,"image":"1faf7-1f3fb.png","sheet_x":56,"sheet_y":21,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false},"1F3FC":{"unified":"1FAF7-1F3FC","non_qualified":null,"image":"1faf7-1f3fc.png","sheet_x":56,"sheet_y":22,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false},"1F3FD":{"unified":"1FAF7-1F3FD","non_qualified":null,"image":"1faf7-1f3fd.png","sheet_x":56,"sheet_y":23,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false},"1F3FE":{"unified":"1FAF7-1F3FE","non_qualified":null,"image":"1faf7-1f3fe.png","sheet_x":56,"sheet_y":24,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false},"1F3FF":{"unified":"1FAF7-1F3FF","non_qualified":null,"image":"1faf7-1f3ff.png","sheet_x":56,"sheet_y":25,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false}}},{"name":"RIGHTWARDS PUSHING HAND","unified":"1FAF8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faf8.png","sheet_x":56,"sheet_y":26,"short_name":"rightwards_pushing_hand","short_names":["rightwards_pushing_hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-open","sort_order":177,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"skin_variations":{"1F3FB":{"unified":"1FAF8-1F3FB","non_qualified":null,"image":"1faf8-1f3fb.png","sheet_x":56,"sheet_y":27,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false},"1F3FC":{"unified":"1FAF8-1F3FC","non_qualified":null,"image":"1faf8-1f3fc.png","sheet_x":56,"sheet_y":28,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false},"1F3FD":{"unified":"1FAF8-1F3FD","non_qualified":null,"image":"1faf8-1f3fd.png","sheet_x":56,"sheet_y":29,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false},"1F3FE":{"unified":"1FAF8-1F3FE","non_qualified":null,"image":"1faf8-1f3fe.png","sheet_x":56,"sheet_y":30,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false},"1F3FF":{"unified":"1FAF8-1F3FF","non_qualified":null,"image":"1faf8-1f3ff.png","sheet_x":56,"sheet_y":31,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false}}},{"name":"DOUBLE EXCLAMATION MARK","unified":"203C-FE0F","non_qualified":"203C","docomo":"E704","au":"EB30","softbank":null,"google":"FEB06","image":"203c-fe0f.png","sheet_x":56,"sheet_y":32,"short_name":"bangbang","short_names":["bangbang"],"text":null,"texts":null,"category":"Symbols","subcategory":"punctuation","sort_order":1491,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"EXCLAMATION QUESTION MARK","unified":"2049-FE0F","non_qualified":"2049","docomo":"E703","au":"EB2F","softbank":null,"google":"FEB05","image":"2049-fe0f.png","sheet_x":56,"sheet_y":33,"short_name":"interrobang","short_names":["interrobang"],"text":null,"texts":null,"category":"Symbols","subcategory":"punctuation","sort_order":1492,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"TRADE MARK SIGN","unified":"2122-FE0F","non_qualified":"2122","docomo":"E732","au":"E54E","softbank":"E537","google":"FEB2A","image":"2122-fe0f.png","sheet_x":56,"sheet_y":34,"short_name":"tm","short_names":["tm"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1520,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"INFORMATION SOURCE","unified":"2139-FE0F","non_qualified":"2139","docomo":null,"au":"E533","softbank":null,"google":"FEB47","image":"2139-fe0f.png","sheet_x":56,"sheet_y":35,"short_name":"information_source","short_names":["information_source"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1545,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LEFT RIGHT ARROW","unified":"2194-FE0F","non_qualified":"2194","docomo":"E73C","au":"EB7A","softbank":null,"google":"FEAF6","image":"2194-fe0f.png","sheet_x":56,"sheet_y":36,"short_name":"left_right_arrow","short_names":["left_right_arrow"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1419,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"UP DOWN ARROW","unified":"2195-FE0F","non_qualified":"2195","docomo":"E73D","au":"EB7B","softbank":null,"google":"FEAF7","image":"2195-fe0f.png","sheet_x":56,"sheet_y":37,"short_name":"arrow_up_down","short_names":["arrow_up_down"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1418,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"NORTH WEST ARROW","unified":"2196-FE0F","non_qualified":"2196","docomo":"E697","au":"E54C","softbank":"E237","google":"FEAF2","image":"2196-fe0f.png","sheet_x":56,"sheet_y":38,"short_name":"arrow_upper_left","short_names":["arrow_upper_left"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1417,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"NORTH EAST ARROW","unified":"2197-FE0F","non_qualified":"2197","docomo":"E678","au":"E555","softbank":"E236","google":"FEAF0","image":"2197-fe0f.png","sheet_x":56,"sheet_y":39,"short_name":"arrow_upper_right","short_names":["arrow_upper_right"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1411,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SOUTH EAST ARROW","unified":"2198-FE0F","non_qualified":"2198","docomo":"E696","au":"E54D","softbank":"E238","google":"FEAF1","image":"2198-fe0f.png","sheet_x":56,"sheet_y":40,"short_name":"arrow_lower_right","short_names":["arrow_lower_right"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1413,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SOUTH WEST ARROW","unified":"2199-FE0F","non_qualified":"2199","docomo":"E6A5","au":"E556","softbank":"E239","google":"FEAF3","image":"2199-fe0f.png","sheet_x":56,"sheet_y":41,"short_name":"arrow_lower_left","short_names":["arrow_lower_left"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1415,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LEFTWARDS ARROW WITH HOOK","unified":"21A9-FE0F","non_qualified":"21A9","docomo":"E6DA","au":"E55D","softbank":null,"google":"FEB83","image":"21a9-fe0f.png","sheet_x":56,"sheet_y":42,"short_name":"leftwards_arrow_with_hook","short_names":["leftwards_arrow_with_hook"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1420,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"RIGHTWARDS ARROW WITH HOOK","unified":"21AA-FE0F","non_qualified":"21AA","docomo":null,"au":"E55C","softbank":null,"google":"FEB88","image":"21aa-fe0f.png","sheet_x":56,"sheet_y":43,"short_name":"arrow_right_hook","short_names":["arrow_right_hook"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1421,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WATCH","unified":"231A","non_qualified":null,"docomo":"E71F","au":"E57A","softbank":null,"google":"FE01D","image":"231a.png","sheet_x":56,"sheet_y":44,"short_name":"watch","short_names":["watch"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":962,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HOURGLASS","unified":"231B","non_qualified":null,"docomo":"E71C","au":"E57B","softbank":null,"google":"FE01C","image":"231b.png","sheet_x":56,"sheet_y":45,"short_name":"hourglass","short_names":["hourglass"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":960,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"KEYBOARD","unified":"2328-FE0F","non_qualified":"2328","docomo":null,"au":null,"softbank":null,"google":null,"image":"2328-fe0f.png","sheet_x":56,"sheet_y":46,"short_name":"keyboard","short_names":["keyboard"],"text":null,"texts":null,"category":"Objects","subcategory":"computer","sort_order":1211,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"EJECT BUTTON","unified":"23CF-FE0F","non_qualified":"23CF","docomo":null,"au":null,"softbank":null,"google":null,"image":"23cf-fe0f.png","sheet_x":56,"sheet_y":47,"short_name":"eject","short_names":["eject"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1474,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BLACK RIGHT-POINTING DOUBLE TRIANGLE","unified":"23E9","non_qualified":null,"docomo":null,"au":"E530","softbank":"E23C","google":"FEAFE","image":"23e9.png","sheet_x":56,"sheet_y":48,"short_name":"fast_forward","short_names":["fast_forward"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1461,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BLACK LEFT-POINTING DOUBLE TRIANGLE","unified":"23EA","non_qualified":null,"docomo":null,"au":"E52F","softbank":"E23D","google":"FEAFF","image":"23ea.png","sheet_x":56,"sheet_y":49,"short_name":"rewind","short_names":["rewind"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1465,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BLACK UP-POINTING DOUBLE TRIANGLE","unified":"23EB","non_qualified":null,"docomo":null,"au":"E545","softbank":null,"google":"FEB03","image":"23eb.png","sheet_x":56,"sheet_y":50,"short_name":"arrow_double_up","short_names":["arrow_double_up"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1468,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BLACK DOWN-POINTING DOUBLE TRIANGLE","unified":"23EC","non_qualified":null,"docomo":null,"au":"E544","softbank":null,"google":"FEB02","image":"23ec.png","sheet_x":56,"sheet_y":51,"short_name":"arrow_double_down","short_names":["arrow_double_down"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1470,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"NEXT TRACK BUTTON","unified":"23ED-FE0F","non_qualified":"23ED","docomo":null,"au":null,"softbank":null,"google":null,"image":"23ed-fe0f.png","sheet_x":56,"sheet_y":52,"short_name":"black_right_pointing_double_triangle_with_vertical_bar","short_names":["black_right_pointing_double_triangle_with_vertical_bar"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1462,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LAST TRACK BUTTON","unified":"23EE-FE0F","non_qualified":"23EE","docomo":null,"au":null,"softbank":null,"google":null,"image":"23ee-fe0f.png","sheet_x":56,"sheet_y":53,"short_name":"black_left_pointing_double_triangle_with_vertical_bar","short_names":["black_left_pointing_double_triangle_with_vertical_bar"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1466,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PLAY OR PAUSE BUTTON","unified":"23EF-FE0F","non_qualified":"23EF","docomo":null,"au":null,"softbank":null,"google":null,"image":"23ef-fe0f.png","sheet_x":56,"sheet_y":54,"short_name":"black_right_pointing_triangle_with_double_vertical_bar","short_names":["black_right_pointing_triangle_with_double_vertical_bar"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1463,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ALARM CLOCK","unified":"23F0","non_qualified":null,"docomo":"E6BA","au":"E594","softbank":null,"google":"FE02A","image":"23f0.png","sheet_x":56,"sheet_y":55,"short_name":"alarm_clock","short_names":["alarm_clock"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":963,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"STOPWATCH","unified":"23F1-FE0F","non_qualified":"23F1","docomo":null,"au":null,"softbank":null,"google":null,"image":"23f1-fe0f.png","sheet_x":56,"sheet_y":56,"short_name":"stopwatch","short_names":["stopwatch"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":964,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"TIMER CLOCK","unified":"23F2-FE0F","non_qualified":"23F2","docomo":null,"au":null,"softbank":null,"google":null,"image":"23f2-fe0f.png","sheet_x":56,"sheet_y":57,"short_name":"timer_clock","short_names":["timer_clock"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":965,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HOURGLASS WITH FLOWING SAND","unified":"23F3","non_qualified":null,"docomo":"E71C","au":"E47C","softbank":null,"google":"FE01B","image":"23f3.png","sheet_x":56,"sheet_y":58,"short_name":"hourglass_flowing_sand","short_names":["hourglass_flowing_sand"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":961,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PAUSE BUTTON","unified":"23F8-FE0F","non_qualified":"23F8","docomo":null,"au":null,"softbank":null,"google":null,"image":"23f8-fe0f.png","sheet_x":56,"sheet_y":59,"short_name":"double_vertical_bar","short_names":["double_vertical_bar"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1471,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"STOP BUTTON","unified":"23F9-FE0F","non_qualified":"23F9","docomo":null,"au":null,"softbank":null,"google":null,"image":"23f9-fe0f.png","sheet_x":56,"sheet_y":60,"short_name":"black_square_for_stop","short_names":["black_square_for_stop"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1472,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"RECORD BUTTON","unified":"23FA-FE0F","non_qualified":"23FA","docomo":null,"au":null,"softbank":null,"google":null,"image":"23fa-fe0f.png","sheet_x":57,"sheet_y":0,"short_name":"black_circle_for_record","short_names":["black_circle_for_record"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1473,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CIRCLED LATIN CAPITAL LETTER M","unified":"24C2-FE0F","non_qualified":"24C2","docomo":"E65C","au":"E5BC","softbank":null,"google":"FE7E1","image":"24c2-fe0f.png","sheet_x":57,"sheet_y":1,"short_name":"m","short_names":["m"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1547,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BLACK SMALL SQUARE","unified":"25AA-FE0F","non_qualified":"25AA","docomo":null,"au":"E532","softbank":null,"google":"FEB6E","image":"25aa-fe0f.png","sheet_x":57,"sheet_y":2,"short_name":"black_small_square","short_names":["black_small_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1595,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WHITE SMALL SQUARE","unified":"25AB-FE0F","non_qualified":"25AB","docomo":null,"au":"E531","softbank":null,"google":"FEB6D","image":"25ab-fe0f.png","sheet_x":57,"sheet_y":3,"short_name":"white_small_square","short_names":["white_small_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1596,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BLACK RIGHT-POINTING TRIANGLE","unified":"25B6-FE0F","non_qualified":"25B6","docomo":null,"au":"E52E","softbank":"E23A","google":"FEAFC","image":"25b6-fe0f.png","sheet_x":57,"sheet_y":4,"short_name":"arrow_forward","short_names":["arrow_forward"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1460,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BLACK LEFT-POINTING TRIANGLE","unified":"25C0-FE0F","non_qualified":"25C0","docomo":null,"au":"E52D","softbank":"E23B","google":"FEAFD","image":"25c0-fe0f.png","sheet_x":57,"sheet_y":5,"short_name":"arrow_backward","short_names":["arrow_backward"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1464,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WHITE MEDIUM SQUARE","unified":"25FB-FE0F","non_qualified":"25FB","docomo":null,"au":"E538","softbank":null,"google":"FEB71","image":"25fb-fe0f.png","sheet_x":57,"sheet_y":6,"short_name":"white_medium_square","short_names":["white_medium_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1592,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BLACK MEDIUM SQUARE","unified":"25FC-FE0F","non_qualified":"25FC","docomo":null,"au":"E539","softbank":null,"google":"FEB72","image":"25fc-fe0f.png","sheet_x":57,"sheet_y":7,"short_name":"black_medium_square","short_names":["black_medium_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1591,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WHITE MEDIUM SMALL SQUARE","unified":"25FD","non_qualified":null,"docomo":null,"au":"E534","softbank":null,"google":"FEB6F","image":"25fd.png","sheet_x":57,"sheet_y":8,"short_name":"white_medium_small_square","short_names":["white_medium_small_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1594,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BLACK MEDIUM SMALL SQUARE","unified":"25FE","non_qualified":null,"docomo":null,"au":"E535","softbank":null,"google":"FEB70","image":"25fe.png","sheet_x":57,"sheet_y":9,"short_name":"black_medium_small_square","short_names":["black_medium_small_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1593,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BLACK SUN WITH RAYS","unified":"2600-FE0F","non_qualified":"2600","docomo":"E63E","au":"E488","softbank":"E04A","google":"FE000","image":"2600-fe0f.png","sheet_x":57,"sheet_y":10,"short_name":"sunny","short_names":["sunny"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1004,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CLOUD","unified":"2601-FE0F","non_qualified":"2601","docomo":"E63F","au":"E48D","softbank":"E049","google":"FE001","image":"2601-fe0f.png","sheet_x":57,"sheet_y":11,"short_name":"cloud","short_names":["cloud"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1012,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"UMBRELLA","unified":"2602-FE0F","non_qualified":"2602","docomo":null,"au":null,"softbank":null,"google":null,"image":"2602-fe0f.png","sheet_x":57,"sheet_y":12,"short_name":"umbrella","short_names":["umbrella"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1027,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SNOWMAN","unified":"2603-FE0F","non_qualified":"2603","docomo":null,"au":null,"softbank":null,"google":null,"image":"2603-fe0f.png","sheet_x":57,"sheet_y":13,"short_name":"snowman","short_names":["snowman"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1032,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"COMET","unified":"2604-FE0F","non_qualified":"2604","docomo":null,"au":null,"softbank":null,"google":null,"image":"2604-fe0f.png","sheet_x":57,"sheet_y":14,"short_name":"comet","short_names":["comet"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1034,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BLACK TELEPHONE","unified":"260E-FE0F","non_qualified":"260E","docomo":"E687","au":"E596","softbank":"E009","google":"FE523","image":"260e-fe0f.png","sheet_x":57,"sheet_y":15,"short_name":"phone","short_names":["phone","telephone"],"text":null,"texts":null,"category":"Objects","subcategory":"phone","sort_order":1201,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BALLOT BOX WITH CHECK","unified":"2611-FE0F","non_qualified":"2611","docomo":null,"au":"EB02","softbank":null,"google":"FEB8B","image":"2611-fe0f.png","sheet_x":57,"sheet_y":16,"short_name":"ballot_box_with_check","short_names":["ballot_box_with_check"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1508,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"UMBRELLA WITH RAIN DROPS","unified":"2614","non_qualified":null,"docomo":"E640","au":"E48C","softbank":"E04B","google":"FE002","image":"2614.png","sheet_x":57,"sheet_y":17,"short_name":"umbrella_with_rain_drops","short_names":["umbrella_with_rain_drops"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1028,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HOT BEVERAGE","unified":"2615","non_qualified":null,"docomo":"E670","au":"E597","softbank":"E045","google":"FE981","image":"2615.png","sheet_x":57,"sheet_y":18,"short_name":"coffee","short_names":["coffee"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":795,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SHAMROCK","unified":"2618-FE0F","non_qualified":"2618","docomo":null,"au":null,"softbank":null,"google":null,"image":"2618-fe0f.png","sheet_x":57,"sheet_y":19,"short_name":"shamrock","short_names":["shamrock"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-other","sort_order":679,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WHITE UP POINTING INDEX","unified":"261D-FE0F","non_qualified":"261D","docomo":null,"au":"E4F6","softbank":"E00F","google":"FEB98","image":"261d-fe0f.png","sheet_x":57,"sheet_y":20,"short_name":"point_up","short_names":["point_up"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-single-finger","sort_order":192,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"261D-1F3FB","non_qualified":null,"image":"261d-1f3fb.png","sheet_x":57,"sheet_y":21,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"261D-1F3FC","non_qualified":null,"image":"261d-1f3fc.png","sheet_x":57,"sheet_y":22,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"261D-1F3FD","non_qualified":null,"image":"261d-1f3fd.png","sheet_x":57,"sheet_y":23,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"261D-1F3FE","non_qualified":null,"image":"261d-1f3fe.png","sheet_x":57,"sheet_y":24,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"261D-1F3FF","non_qualified":null,"image":"261d-1f3ff.png","sheet_x":57,"sheet_y":25,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"SKULL AND CROSSBONES","unified":"2620-FE0F","non_qualified":"2620","docomo":null,"au":null,"softbank":null,"google":null,"image":"2620-fe0f.png","sheet_x":57,"sheet_y":26,"short_name":"skull_and_crossbones","short_names":["skull_and_crossbones"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-negative","sort_order":107,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"RADIOACTIVE","unified":"2622-FE0F","non_qualified":"2622","docomo":null,"au":null,"softbank":null,"google":null,"image":"2622-fe0f.png","sheet_x":57,"sheet_y":27,"short_name":"radioactive_sign","short_names":["radioactive_sign"],"text":null,"texts":null,"category":"Symbols","subcategory":"warning","sort_order":1408,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BIOHAZARD","unified":"2623-FE0F","non_qualified":"2623","docomo":null,"au":null,"softbank":null,"google":null,"image":"2623-fe0f.png","sheet_x":57,"sheet_y":28,"short_name":"biohazard_sign","short_names":["biohazard_sign"],"text":null,"texts":null,"category":"Symbols","subcategory":"warning","sort_order":1409,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ORTHODOX CROSS","unified":"2626-FE0F","non_qualified":"2626","docomo":null,"au":null,"softbank":null,"google":null,"image":"2626-fe0f.png","sheet_x":57,"sheet_y":29,"short_name":"orthodox_cross","short_names":["orthodox_cross"],"text":null,"texts":null,"category":"Symbols","subcategory":"religion","sort_order":1438,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"STAR AND CRESCENT","unified":"262A-FE0F","non_qualified":"262A","docomo":null,"au":null,"softbank":null,"google":null,"image":"262a-fe0f.png","sheet_x":57,"sheet_y":30,"short_name":"star_and_crescent","short_names":["star_and_crescent"],"text":null,"texts":null,"category":"Symbols","subcategory":"religion","sort_order":1439,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PEACE SYMBOL","unified":"262E-FE0F","non_qualified":"262E","docomo":null,"au":null,"softbank":null,"google":null,"image":"262e-fe0f.png","sheet_x":57,"sheet_y":31,"short_name":"peace_symbol","short_names":["peace_symbol"],"text":null,"texts":null,"category":"Symbols","subcategory":"religion","sort_order":1440,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"YIN YANG","unified":"262F-FE0F","non_qualified":"262F","docomo":null,"au":null,"softbank":null,"google":null,"image":"262f-fe0f.png","sheet_x":57,"sheet_y":32,"short_name":"yin_yang","short_names":["yin_yang"],"text":null,"texts":null,"category":"Symbols","subcategory":"religion","sort_order":1436,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WHEEL OF DHARMA","unified":"2638-FE0F","non_qualified":"2638","docomo":null,"au":null,"softbank":null,"google":null,"image":"2638-fe0f.png","sheet_x":57,"sheet_y":33,"short_name":"wheel_of_dharma","short_names":["wheel_of_dharma"],"text":null,"texts":null,"category":"Symbols","subcategory":"religion","sort_order":1435,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FROWNING FACE","unified":"2639-FE0F","non_qualified":"2639","docomo":null,"au":null,"softbank":null,"google":null,"image":"2639-fe0f.png","sheet_x":57,"sheet_y":34,"short_name":"white_frowning_face","short_names":["white_frowning_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":78,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WHITE SMILING FACE","unified":"263A-FE0F","non_qualified":"263A","docomo":"E6F0","au":"E4FB","softbank":"E414","google":"FE336","image":"263a-fe0f.png","sheet_x":57,"sheet_y":35,"short_name":"relaxed","short_names":["relaxed"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-affection","sort_order":20,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FEMALE SIGN","unified":"2640-FE0F","non_qualified":"2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"2640-fe0f.png","sheet_x":57,"sheet_y":36,"short_name":"female_sign","short_names":["female_sign"],"text":null,"texts":null,"category":"Symbols","subcategory":"gender","sort_order":1482,"added_in":"4.0","has_img_apple":false,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MALE SIGN","unified":"2642-FE0F","non_qualified":"2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"2642-fe0f.png","sheet_x":57,"sheet_y":37,"short_name":"male_sign","short_names":["male_sign"],"text":null,"texts":null,"category":"Symbols","subcategory":"gender","sort_order":1483,"added_in":"4.0","has_img_apple":false,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ARIES","unified":"2648","non_qualified":null,"docomo":"E646","au":"E48F","softbank":"E23F","google":"FE02B","image":"2648.png","sheet_x":57,"sheet_y":38,"short_name":"aries","short_names":["aries"],"text":null,"texts":null,"category":"Symbols","subcategory":"zodiac","sort_order":1444,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"TAURUS","unified":"2649","non_qualified":null,"docomo":"E647","au":"E490","softbank":"E240","google":"FE02C","image":"2649.png","sheet_x":57,"sheet_y":39,"short_name":"taurus","short_names":["taurus"],"text":null,"texts":null,"category":"Symbols","subcategory":"zodiac","sort_order":1445,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"GEMINI","unified":"264A","non_qualified":null,"docomo":"E648","au":"E491","softbank":"E241","google":"FE02D","image":"264a.png","sheet_x":57,"sheet_y":40,"short_name":"gemini","short_names":["gemini"],"text":null,"texts":null,"category":"Symbols","subcategory":"zodiac","sort_order":1446,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CANCER","unified":"264B","non_qualified":null,"docomo":"E649","au":"E492","softbank":"E242","google":"FE02E","image":"264b.png","sheet_x":57,"sheet_y":41,"short_name":"cancer","short_names":["cancer"],"text":null,"texts":null,"category":"Symbols","subcategory":"zodiac","sort_order":1447,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LEO","unified":"264C","non_qualified":null,"docomo":"E64A","au":"E493","softbank":"E243","google":"FE02F","image":"264c.png","sheet_x":57,"sheet_y":42,"short_name":"leo","short_names":["leo"],"text":null,"texts":null,"category":"Symbols","subcategory":"zodiac","sort_order":1448,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"VIRGO","unified":"264D","non_qualified":null,"docomo":"E64B","au":"E494","softbank":"E244","google":"FE030","image":"264d.png","sheet_x":57,"sheet_y":43,"short_name":"virgo","short_names":["virgo"],"text":null,"texts":null,"category":"Symbols","subcategory":"zodiac","sort_order":1449,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LIBRA","unified":"264E","non_qualified":null,"docomo":"E64C","au":"E495","softbank":"E245","google":"FE031","image":"264e.png","sheet_x":57,"sheet_y":44,"short_name":"libra","short_names":["libra"],"text":null,"texts":null,"category":"Symbols","subcategory":"zodiac","sort_order":1450,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SCORPIUS","unified":"264F","non_qualified":null,"docomo":"E64D","au":"E496","softbank":"E246","google":"FE032","image":"264f.png","sheet_x":57,"sheet_y":45,"short_name":"scorpius","short_names":["scorpius"],"text":null,"texts":null,"category":"Symbols","subcategory":"zodiac","sort_order":1451,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SAGITTARIUS","unified":"2650","non_qualified":null,"docomo":"E64E","au":"E497","softbank":"E247","google":"FE033","image":"2650.png","sheet_x":57,"sheet_y":46,"short_name":"sagittarius","short_names":["sagittarius"],"text":null,"texts":null,"category":"Symbols","subcategory":"zodiac","sort_order":1452,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CAPRICORN","unified":"2651","non_qualified":null,"docomo":"E64F","au":"E498","softbank":"E248","google":"FE034","image":"2651.png","sheet_x":57,"sheet_y":47,"short_name":"capricorn","short_names":["capricorn"],"text":null,"texts":null,"category":"Symbols","subcategory":"zodiac","sort_order":1453,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"AQUARIUS","unified":"2652","non_qualified":null,"docomo":"E650","au":"E499","softbank":"E249","google":"FE035","image":"2652.png","sheet_x":57,"sheet_y":48,"short_name":"aquarius","short_names":["aquarius"],"text":null,"texts":null,"category":"Symbols","subcategory":"zodiac","sort_order":1454,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PISCES","unified":"2653","non_qualified":null,"docomo":"E651","au":"E49A","softbank":"E24A","google":"FE036","image":"2653.png","sheet_x":57,"sheet_y":49,"short_name":"pisces","short_names":["pisces"],"text":null,"texts":null,"category":"Symbols","subcategory":"zodiac","sort_order":1455,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CHESS PAWN","unified":"265F-FE0F","non_qualified":"265F","docomo":null,"au":null,"softbank":null,"google":null,"image":"265f-fe0f.png","sheet_x":57,"sheet_y":50,"short_name":"chess_pawn","short_names":["chess_pawn"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1112,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BLACK SPADE SUIT","unified":"2660-FE0F","non_qualified":"2660","docomo":"E68E","au":"E5A1","softbank":"E20E","google":"FEB1B","image":"2660-fe0f.png","sheet_x":57,"sheet_y":51,"short_name":"spades","short_names":["spades"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1108,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BLACK CLUB SUIT","unified":"2663-FE0F","non_qualified":"2663","docomo":"E690","au":"E5A3","softbank":"E20F","google":"FEB1D","image":"2663-fe0f.png","sheet_x":57,"sheet_y":52,"short_name":"clubs","short_names":["clubs"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1111,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BLACK HEART SUIT","unified":"2665-FE0F","non_qualified":"2665","docomo":"E68D","au":"EAA5","softbank":"E20C","google":"FEB1A","image":"2665-fe0f.png","sheet_x":57,"sheet_y":53,"short_name":"hearts","short_names":["hearts"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1109,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BLACK DIAMOND SUIT","unified":"2666-FE0F","non_qualified":"2666","docomo":"E68F","au":"E5A2","softbank":"E20D","google":"FEB1C","image":"2666-fe0f.png","sheet_x":57,"sheet_y":54,"short_name":"diamonds","short_names":["diamonds"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1110,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HOT SPRINGS","unified":"2668-FE0F","non_qualified":"2668","docomo":"E6F7","au":"E4BC","softbank":"E123","google":"FE7FA","image":"2668-fe0f.png","sheet_x":57,"sheet_y":55,"short_name":"hotsprings","short_names":["hotsprings"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-other","sort_order":879,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BLACK UNIVERSAL RECYCLING SYMBOL","unified":"267B-FE0F","non_qualified":"267B","docomo":"E735","au":"EB79","softbank":null,"google":"FEB2C","image":"267b-fe0f.png","sheet_x":57,"sheet_y":56,"short_name":"recycle","short_names":["recycle"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1501,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"INFINITY","unified":"267E-FE0F","non_qualified":"267E","docomo":null,"au":null,"softbank":null,"google":null,"image":"267e-fe0f.png","sheet_x":57,"sheet_y":57,"short_name":"infinity","short_names":["infinity"],"text":null,"texts":null,"category":"Symbols","subcategory":"math","sort_order":1490,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WHEELCHAIR SYMBOL","unified":"267F","non_qualified":null,"docomo":"E69B","au":"E47F","softbank":"E20A","google":"FEB20","image":"267f.png","sheet_x":57,"sheet_y":58,"short_name":"wheelchair","short_names":["wheelchair"],"text":null,"texts":null,"category":"Symbols","subcategory":"transport-sign","sort_order":1387,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HAMMER AND PICK","unified":"2692-FE0F","non_qualified":"2692","docomo":null,"au":null,"softbank":null,"google":null,"image":"2692-fe0f.png","sheet_x":57,"sheet_y":59,"short_name":"hammer_and_pick","short_names":["hammer_and_pick"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1314,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ANCHOR","unified":"2693","non_qualified":null,"docomo":"E661","au":"E4A9","softbank":null,"google":"FE4C1","image":"2693.png","sheet_x":57,"sheet_y":60,"short_name":"anchor","short_names":["anchor"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-water","sort_order":936,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CROSSED SWORDS","unified":"2694-FE0F","non_qualified":"2694","docomo":null,"au":null,"softbank":null,"google":null,"image":"2694-fe0f.png","sheet_x":58,"sheet_y":0,"short_name":"crossed_swords","short_names":["crossed_swords"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1317,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MEDICAL SYMBOL","unified":"2695-FE0F","non_qualified":"2695","docomo":null,"au":null,"softbank":null,"google":null,"image":"2695-fe0f.png","sheet_x":58,"sheet_y":1,"short_name":"medical_symbol","short_names":["medical_symbol","staff_of_aesculapius"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1500,"added_in":"4.0","has_img_apple":false,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BALANCE SCALE","unified":"2696-FE0F","non_qualified":"2696","docomo":null,"au":null,"softbank":null,"google":null,"image":"2696-fe0f.png","sheet_x":58,"sheet_y":2,"short_name":"scales","short_names":["scales"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1328,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ALEMBIC","unified":"2697-FE0F","non_qualified":"2697","docomo":null,"au":null,"softbank":null,"google":null,"image":"2697-fe0f.png","sheet_x":58,"sheet_y":3,"short_name":"alembic","short_names":["alembic"],"text":null,"texts":null,"category":"Objects","subcategory":"science","sort_order":1336,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"GEAR","unified":"2699-FE0F","non_qualified":"2699","docomo":null,"au":null,"softbank":null,"google":null,"image":"2699-fe0f.png","sheet_x":58,"sheet_y":4,"short_name":"gear","short_names":["gear"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1326,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ATOM SYMBOL","unified":"269B-FE0F","non_qualified":"269B","docomo":null,"au":null,"softbank":null,"google":null,"image":"269b-fe0f.png","sheet_x":58,"sheet_y":5,"short_name":"atom_symbol","short_names":["atom_symbol"],"text":null,"texts":null,"category":"Symbols","subcategory":"religion","sort_order":1432,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FLEUR-DE-LIS","unified":"269C-FE0F","non_qualified":"269C","docomo":null,"au":null,"softbank":null,"google":null,"image":"269c-fe0f.png","sheet_x":58,"sheet_y":6,"short_name":"fleur_de_lis","short_names":["fleur_de_lis"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1502,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WARNING SIGN","unified":"26A0-FE0F","non_qualified":"26A0","docomo":"E737","au":"E481","softbank":"E252","google":"FEB23","image":"26a0-fe0f.png","sheet_x":58,"sheet_y":7,"short_name":"warning","short_names":["warning"],"text":null,"texts":null,"category":"Symbols","subcategory":"warning","sort_order":1397,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HIGH VOLTAGE SIGN","unified":"26A1","non_qualified":null,"docomo":"E642","au":"E487","softbank":"E13D","google":"FE004","image":"26a1.png","sheet_x":58,"sheet_y":8,"short_name":"zap","short_names":["zap"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1030,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"TRANSGENDER SYMBOL","unified":"26A7-FE0F","non_qualified":"26A7","docomo":null,"au":null,"softbank":null,"google":null,"image":"26a7-fe0f.png","sheet_x":58,"sheet_y":9,"short_name":"transgender_symbol","short_names":["transgender_symbol"],"text":null,"texts":null,"category":"Symbols","subcategory":"gender","sort_order":1484,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MEDIUM WHITE CIRCLE","unified":"26AA","non_qualified":null,"docomo":"E69C","au":"E53A","softbank":null,"google":"FEB65","image":"26aa.png","sheet_x":58,"sheet_y":10,"short_name":"white_circle","short_names":["white_circle"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1581,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MEDIUM BLACK CIRCLE","unified":"26AB","non_qualified":null,"docomo":"E69C","au":"E53B","softbank":null,"google":"FEB66","image":"26ab.png","sheet_x":58,"sheet_y":11,"short_name":"black_circle","short_names":["black_circle"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1580,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"COFFIN","unified":"26B0-FE0F","non_qualified":"26B0","docomo":null,"au":null,"softbank":null,"google":null,"image":"26b0-fe0f.png","sheet_x":58,"sheet_y":12,"short_name":"coffin","short_names":["coffin"],"text":null,"texts":null,"category":"Objects","subcategory":"other-object","sort_order":1376,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FUNERAL URN","unified":"26B1-FE0F","non_qualified":"26B1","docomo":null,"au":null,"softbank":null,"google":null,"image":"26b1-fe0f.png","sheet_x":58,"sheet_y":13,"short_name":"funeral_urn","short_names":["funeral_urn"],"text":null,"texts":null,"category":"Objects","subcategory":"other-object","sort_order":1378,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SOCCER BALL","unified":"26BD","non_qualified":null,"docomo":"E656","au":"E4B6","softbank":"E018","google":"FE7D4","image":"26bd.png","sheet_x":58,"sheet_y":14,"short_name":"soccer","short_names":["soccer"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1065,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BASEBALL","unified":"26BE","non_qualified":null,"docomo":"E653","au":"E4BA","softbank":"E016","google":"FE7D1","image":"26be.png","sheet_x":58,"sheet_y":15,"short_name":"baseball","short_names":["baseball"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1066,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SNOWMAN WITHOUT SNOW","unified":"26C4","non_qualified":null,"docomo":"E641","au":"E485","softbank":"E048","google":"FE003","image":"26c4.png","sheet_x":58,"sheet_y":16,"short_name":"snowman_without_snow","short_names":["snowman_without_snow"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1033,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SUN BEHIND CLOUD","unified":"26C5","non_qualified":null,"docomo":"E63E-E63F","au":"E48E","softbank":null,"google":"FE00F","image":"26c5.png","sheet_x":58,"sheet_y":17,"short_name":"partly_sunny","short_names":["partly_sunny"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1013,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CLOUD WITH LIGHTNING AND RAIN","unified":"26C8-FE0F","non_qualified":"26C8","docomo":null,"au":null,"softbank":null,"google":null,"image":"26c8-fe0f.png","sheet_x":58,"sheet_y":18,"short_name":"thunder_cloud_and_rain","short_names":["thunder_cloud_and_rain"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1014,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"OPHIUCHUS","unified":"26CE","non_qualified":null,"docomo":null,"au":"E49B","softbank":"E24B","google":"FE037","image":"26ce.png","sheet_x":58,"sheet_y":19,"short_name":"ophiuchus","short_names":["ophiuchus"],"text":null,"texts":null,"category":"Symbols","subcategory":"zodiac","sort_order":1456,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PICK","unified":"26CF-FE0F","non_qualified":"26CF","docomo":null,"au":null,"softbank":null,"google":null,"image":"26cf-fe0f.png","sheet_x":58,"sheet_y":20,"short_name":"pick","short_names":["pick"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1313,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"RESCUE WORKER\u2019S HELMET","unified":"26D1-FE0F","non_qualified":"26D1","docomo":null,"au":null,"softbank":null,"google":null,"image":"26d1-fe0f.png","sheet_x":58,"sheet_y":21,"short_name":"helmet_with_white_cross","short_names":["helmet_with_white_cross"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1165,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CHAINS","unified":"26D3-FE0F","non_qualified":"26D3","docomo":null,"au":null,"softbank":null,"google":null,"image":"26d3-fe0f.png","sheet_x":58,"sheet_y":22,"short_name":"chains","short_names":["chains"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1331,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"NO ENTRY","unified":"26D4","non_qualified":null,"docomo":"E72F","au":"E484","softbank":null,"google":"FEB26","image":"26d4.png","sheet_x":58,"sheet_y":23,"short_name":"no_entry","short_names":["no_entry"],"text":null,"texts":null,"category":"Symbols","subcategory":"warning","sort_order":1399,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SHINTO SHRINE","unified":"26E9-FE0F","non_qualified":"26E9","docomo":null,"au":null,"softbank":null,"google":null,"image":"26e9-fe0f.png","sheet_x":58,"sheet_y":24,"short_name":"shinto_shrine","short_names":["shinto_shrine"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-religious","sort_order":867,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CHURCH","unified":"26EA","non_qualified":null,"docomo":null,"au":"E5BB","softbank":"E037","google":"FE4BB","image":"26ea.png","sheet_x":58,"sheet_y":25,"short_name":"church","short_names":["church"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-religious","sort_order":863,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MOUNTAIN","unified":"26F0-FE0F","non_qualified":"26F0","docomo":null,"au":null,"softbank":null,"google":null,"image":"26f0-fe0f.png","sheet_x":58,"sheet_y":26,"short_name":"mountain","short_names":["mountain"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-geographic","sort_order":828,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"UMBRELLA ON GROUND","unified":"26F1-FE0F","non_qualified":"26F1","docomo":null,"au":null,"softbank":null,"google":null,"image":"26f1-fe0f.png","sheet_x":58,"sheet_y":27,"short_name":"umbrella_on_ground","short_names":["umbrella_on_ground"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1029,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FOUNTAIN","unified":"26F2","non_qualified":null,"docomo":null,"au":"E5CF","softbank":"E121","google":"FE4BC","image":"26f2.png","sheet_x":58,"sheet_y":28,"short_name":"fountain","short_names":["fountain"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-other","sort_order":869,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FLAG IN HOLE","unified":"26F3","non_qualified":null,"docomo":"E654","au":"E599","softbank":"E014","google":"FE7D2","image":"26f3.png","sheet_x":58,"sheet_y":29,"short_name":"golf","short_names":["golf"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1084,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FERRY","unified":"26F4-FE0F","non_qualified":"26F4","docomo":null,"au":null,"softbank":null,"google":null,"image":"26f4-fe0f.png","sheet_x":58,"sheet_y":30,"short_name":"ferry","short_names":["ferry"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-water","sort_order":942,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SAILBOAT","unified":"26F5","non_qualified":null,"docomo":"E6A3","au":"E4B4","softbank":"E01C","google":"FE7EA","image":"26f5.png","sheet_x":58,"sheet_y":31,"short_name":"boat","short_names":["boat","sailboat"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-water","sort_order":938,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SKIER","unified":"26F7-FE0F","non_qualified":"26F7","docomo":null,"au":null,"softbank":null,"google":null,"image":"26f7-fe0f.png","sheet_x":58,"sheet_y":32,"short_name":"skier","short_names":["skier"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":441,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ICE SKATE","unified":"26F8-FE0F","non_qualified":"26F8","docomo":null,"au":null,"softbank":null,"google":null,"image":"26f8-fe0f.png","sheet_x":58,"sheet_y":33,"short_name":"ice_skate","short_names":["ice_skate"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1085,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WOMAN BOUNCING BALL","unified":"26F9-FE0F-200D-2640-FE0F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"26f9-fe0f-200d-2640-fe0f.png","sheet_x":58,"sheet_y":34,"short_name":"woman-bouncing-ball","short_names":["woman-bouncing-ball"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":457,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":false,"skin_variations":{"1F3FB":{"unified":"26F9-1F3FB-200D-2640-FE0F","non_qualified":"26F9-1F3FB-200D-2640","image":"26f9-1f3fb-200d-2640-fe0f.png","sheet_x":58,"sheet_y":35,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"26F9-1F3FC-200D-2640-FE0F","non_qualified":"26F9-1F3FC-200D-2640","image":"26f9-1f3fc-200d-2640-fe0f.png","sheet_x":58,"sheet_y":36,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"26F9-1F3FD-200D-2640-FE0F","non_qualified":"26F9-1F3FD-200D-2640","image":"26f9-1f3fd-200d-2640-fe0f.png","sheet_x":58,"sheet_y":37,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"26F9-1F3FE-200D-2640-FE0F","non_qualified":"26F9-1F3FE-200D-2640","image":"26f9-1f3fe-200d-2640-fe0f.png","sheet_x":58,"sheet_y":38,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"26F9-1F3FF-200D-2640-FE0F","non_qualified":"26F9-1F3FF-200D-2640","image":"26f9-1f3ff-200d-2640-fe0f.png","sheet_x":58,"sheet_y":39,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"MAN BOUNCING BALL","unified":"26F9-FE0F-200D-2642-FE0F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"26f9-fe0f-200d-2642-fe0f.png","sheet_x":58,"sheet_y":40,"short_name":"man-bouncing-ball","short_names":["man-bouncing-ball"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":456,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":false,"skin_variations":{"1F3FB":{"unified":"26F9-1F3FB-200D-2642-FE0F","non_qualified":"26F9-1F3FB-200D-2642","image":"26f9-1f3fb-200d-2642-fe0f.png","sheet_x":58,"sheet_y":41,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"26F9-1F3FC-200D-2642-FE0F","non_qualified":"26F9-1F3FC-200D-2642","image":"26f9-1f3fc-200d-2642-fe0f.png","sheet_x":58,"sheet_y":42,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"26F9-1F3FD-200D-2642-FE0F","non_qualified":"26F9-1F3FD-200D-2642","image":"26f9-1f3fd-200d-2642-fe0f.png","sheet_x":58,"sheet_y":43,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"26F9-1F3FE-200D-2642-FE0F","non_qualified":"26F9-1F3FE-200D-2642","image":"26f9-1f3fe-200d-2642-fe0f.png","sheet_x":58,"sheet_y":44,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"26F9-1F3FF-200D-2642-FE0F","non_qualified":"26F9-1F3FF-200D-2642","image":"26f9-1f3ff-200d-2642-fe0f.png","sheet_x":58,"sheet_y":45,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}},"obsoletes":"26F9-FE0F"},{"name":"PERSON BOUNCING BALL","unified":"26F9-FE0F","non_qualified":"26F9","docomo":null,"au":null,"softbank":null,"google":null,"image":"26f9-fe0f.png","sheet_x":58,"sheet_y":46,"short_name":"person_with_ball","short_names":["person_with_ball"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":455,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"26F9-1F3FB","non_qualified":null,"image":"26f9-1f3fb.png","sheet_x":58,"sheet_y":47,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"26F9-1F3FC","non_qualified":null,"image":"26f9-1f3fc.png","sheet_x":58,"sheet_y":48,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"26F9-1F3FD","non_qualified":null,"image":"26f9-1f3fd.png","sheet_x":58,"sheet_y":49,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"26F9-1F3FE","non_qualified":null,"image":"26f9-1f3fe.png","sheet_x":58,"sheet_y":50,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"26F9-1F3FF","non_qualified":null,"image":"26f9-1f3ff.png","sheet_x":58,"sheet_y":51,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}},"obsoleted_by":"26F9-FE0F-200D-2642-FE0F"},{"name":"TENT","unified":"26FA","non_qualified":null,"docomo":null,"au":"E5D0","softbank":"E122","google":"FE7FB","image":"26fa.png","sheet_x":58,"sheet_y":52,"short_name":"tent","short_names":["tent"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-other","sort_order":870,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"FUEL PUMP","unified":"26FD","non_qualified":null,"docomo":"E66B","au":"E571","softbank":"E03A","google":"FE7F5","image":"26fd.png","sheet_x":58,"sheet_y":53,"short_name":"fuelpump","short_names":["fuelpump"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":929,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BLACK SCISSORS","unified":"2702-FE0F","non_qualified":"2702","docomo":"E675","au":"E516","softbank":"E313","google":"FE53E","image":"2702-fe0f.png","sheet_x":58,"sheet_y":54,"short_name":"scissors","short_names":["scissors"],"text":null,"texts":null,"category":"Objects","subcategory":"office","sort_order":1301,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WHITE HEAVY CHECK MARK","unified":"2705","non_qualified":null,"docomo":null,"au":"E55E","softbank":null,"google":"FEB4A","image":"2705.png","sheet_x":58,"sheet_y":55,"short_name":"white_check_mark","short_names":["white_check_mark"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1507,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"AIRPLANE","unified":"2708-FE0F","non_qualified":"2708","docomo":"E662","au":"E4B3","softbank":"E01D","google":"FE7E9","image":"2708-fe0f.png","sheet_x":58,"sheet_y":56,"short_name":"airplane","short_names":["airplane"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-air","sort_order":945,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ENVELOPE","unified":"2709-FE0F","non_qualified":"2709","docomo":"E6D3","au":"E521","softbank":null,"google":"FE529","image":"2709-fe0f.png","sheet_x":58,"sheet_y":57,"short_name":"email","short_names":["email","envelope"],"text":null,"texts":null,"category":"Objects","subcategory":"mail","sort_order":1262,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"RAISED FIST","unified":"270A","non_qualified":null,"docomo":"E693","au":"EB83","softbank":"E010","google":"FEB93","image":"270a.png","sheet_x":58,"sheet_y":58,"short_name":"fist","short_names":["fist"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-closed","sort_order":196,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"270A-1F3FB","non_qualified":null,"image":"270a-1f3fb.png","sheet_x":58,"sheet_y":59,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"270A-1F3FC","non_qualified":null,"image":"270a-1f3fc.png","sheet_x":58,"sheet_y":60,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"270A-1F3FD","non_qualified":null,"image":"270a-1f3fd.png","sheet_x":59,"sheet_y":0,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"270A-1F3FE","non_qualified":null,"image":"270a-1f3fe.png","sheet_x":59,"sheet_y":1,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"270A-1F3FF","non_qualified":null,"image":"270a-1f3ff.png","sheet_x":59,"sheet_y":2,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"RAISED HAND","unified":"270B","non_qualified":null,"docomo":"E695","au":"E5A7","softbank":"E012","google":"FEB95","image":"270b.png","sheet_x":59,"sheet_y":3,"short_name":"hand","short_names":["hand","raised_hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-open","sort_order":170,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"270B-1F3FB","non_qualified":null,"image":"270b-1f3fb.png","sheet_x":59,"sheet_y":4,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"270B-1F3FC","non_qualified":null,"image":"270b-1f3fc.png","sheet_x":59,"sheet_y":5,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"270B-1F3FD","non_qualified":null,"image":"270b-1f3fd.png","sheet_x":59,"sheet_y":6,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"270B-1F3FE","non_qualified":null,"image":"270b-1f3fe.png","sheet_x":59,"sheet_y":7,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"270B-1F3FF","non_qualified":null,"image":"270b-1f3ff.png","sheet_x":59,"sheet_y":8,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"VICTORY HAND","unified":"270C-FE0F","non_qualified":"270C","docomo":"E694","au":"E5A6","softbank":"E011","google":"FEB94","image":"270c-fe0f.png","sheet_x":59,"sheet_y":9,"short_name":"v","short_names":["v"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-partial","sort_order":181,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"270C-1F3FB","non_qualified":null,"image":"270c-1f3fb.png","sheet_x":59,"sheet_y":10,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"270C-1F3FC","non_qualified":null,"image":"270c-1f3fc.png","sheet_x":59,"sheet_y":11,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"270C-1F3FD","non_qualified":null,"image":"270c-1f3fd.png","sheet_x":59,"sheet_y":12,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"270C-1F3FE","non_qualified":null,"image":"270c-1f3fe.png","sheet_x":59,"sheet_y":13,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"270C-1F3FF","non_qualified":null,"image":"270c-1f3ff.png","sheet_x":59,"sheet_y":14,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"WRITING HAND","unified":"270D-FE0F","non_qualified":"270D","docomo":null,"au":null,"softbank":null,"google":null,"image":"270d-fe0f.png","sheet_x":59,"sheet_y":15,"short_name":"writing_hand","short_names":["writing_hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-prop","sort_order":207,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"skin_variations":{"1F3FB":{"unified":"270D-1F3FB","non_qualified":null,"image":"270d-1f3fb.png","sheet_x":59,"sheet_y":16,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FC":{"unified":"270D-1F3FC","non_qualified":null,"image":"270d-1f3fc.png","sheet_x":59,"sheet_y":17,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FD":{"unified":"270D-1F3FD","non_qualified":null,"image":"270d-1f3fd.png","sheet_x":59,"sheet_y":18,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FE":{"unified":"270D-1F3FE","non_qualified":null,"image":"270d-1f3fe.png","sheet_x":59,"sheet_y":19,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},"1F3FF":{"unified":"270D-1F3FF","non_qualified":null,"image":"270d-1f3ff.png","sheet_x":59,"sheet_y":20,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}}},{"name":"PENCIL","unified":"270F-FE0F","non_qualified":"270F","docomo":"E719","au":"E4A1","softbank":null,"google":"FE539","image":"270f-fe0f.png","sheet_x":59,"sheet_y":21,"short_name":"pencil2","short_names":["pencil2"],"text":null,"texts":null,"category":"Objects","subcategory":"writing","sort_order":1275,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BLACK NIB","unified":"2712-FE0F","non_qualified":"2712","docomo":"E6AE","au":"EB03","softbank":null,"google":"FE536","image":"2712-fe0f.png","sheet_x":59,"sheet_y":22,"short_name":"black_nib","short_names":["black_nib"],"text":null,"texts":null,"category":"Objects","subcategory":"writing","sort_order":1276,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HEAVY CHECK MARK","unified":"2714-FE0F","non_qualified":"2714","docomo":null,"au":"E557","softbank":null,"google":"FEB49","image":"2714-fe0f.png","sheet_x":59,"sheet_y":23,"short_name":"heavy_check_mark","short_names":["heavy_check_mark"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1509,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HEAVY MULTIPLICATION X","unified":"2716-FE0F","non_qualified":"2716","docomo":null,"au":"E54F","softbank":null,"google":"FEB53","image":"2716-fe0f.png","sheet_x":59,"sheet_y":24,"short_name":"heavy_multiplication_x","short_names":["heavy_multiplication_x"],"text":null,"texts":null,"category":"Symbols","subcategory":"math","sort_order":1485,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LATIN CROSS","unified":"271D-FE0F","non_qualified":"271D","docomo":null,"au":null,"softbank":null,"google":null,"image":"271d-fe0f.png","sheet_x":59,"sheet_y":25,"short_name":"latin_cross","short_names":["latin_cross"],"text":null,"texts":null,"category":"Symbols","subcategory":"religion","sort_order":1437,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"STAR OF DAVID","unified":"2721-FE0F","non_qualified":"2721","docomo":null,"au":null,"softbank":null,"google":null,"image":"2721-fe0f.png","sheet_x":59,"sheet_y":26,"short_name":"star_of_david","short_names":["star_of_david"],"text":null,"texts":null,"category":"Symbols","subcategory":"religion","sort_order":1434,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SPARKLES","unified":"2728","non_qualified":null,"docomo":"E6FA","au":"EAAB","softbank":"E32E","google":"FEB60","image":"2728.png","sheet_x":59,"sheet_y":27,"short_name":"sparkles","short_names":["sparkles"],"text":null,"texts":null,"category":"Activities","subcategory":"event","sort_order":1043,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"EIGHT SPOKED ASTERISK","unified":"2733-FE0F","non_qualified":"2733","docomo":"E6F8","au":"E53E","softbank":"E206","google":"FEB62","image":"2733-fe0f.png","sheet_x":59,"sheet_y":28,"short_name":"eight_spoked_asterisk","short_names":["eight_spoked_asterisk"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1515,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"EIGHT POINTED BLACK STAR","unified":"2734-FE0F","non_qualified":"2734","docomo":"E6F8","au":"E479","softbank":"E205","google":"FEB61","image":"2734-fe0f.png","sheet_x":59,"sheet_y":29,"short_name":"eight_pointed_black_star","short_names":["eight_pointed_black_star"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1516,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SNOWFLAKE","unified":"2744-FE0F","non_qualified":"2744","docomo":null,"au":"E48A","softbank":null,"google":"FE00E","image":"2744-fe0f.png","sheet_x":59,"sheet_y":30,"short_name":"snowflake","short_names":["snowflake"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1031,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"SPARKLE","unified":"2747-FE0F","non_qualified":"2747","docomo":"E6FA","au":"E46C","softbank":null,"google":"FEB77","image":"2747-fe0f.png","sheet_x":59,"sheet_y":31,"short_name":"sparkle","short_names":["sparkle"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1517,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CROSS MARK","unified":"274C","non_qualified":null,"docomo":null,"au":"E550","softbank":"E333","google":"FEB45","image":"274c.png","sheet_x":59,"sheet_y":32,"short_name":"x","short_names":["x"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1510,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"NEGATIVE SQUARED CROSS MARK","unified":"274E","non_qualified":null,"docomo":null,"au":"E551","softbank":null,"google":"FEB46","image":"274e.png","sheet_x":59,"sheet_y":33,"short_name":"negative_squared_cross_mark","short_names":["negative_squared_cross_mark"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1511,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BLACK QUESTION MARK ORNAMENT","unified":"2753","non_qualified":null,"docomo":null,"au":"E483","softbank":"E020","google":"FEB09","image":"2753.png","sheet_x":59,"sheet_y":34,"short_name":"question","short_names":["question"],"text":null,"texts":null,"category":"Symbols","subcategory":"punctuation","sort_order":1493,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WHITE QUESTION MARK ORNAMENT","unified":"2754","non_qualified":null,"docomo":null,"au":"E483","softbank":"E336","google":"FEB0A","image":"2754.png","sheet_x":59,"sheet_y":35,"short_name":"grey_question","short_names":["grey_question"],"text":null,"texts":null,"category":"Symbols","subcategory":"punctuation","sort_order":1494,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WHITE EXCLAMATION MARK ORNAMENT","unified":"2755","non_qualified":null,"docomo":"E702","au":"E482","softbank":"E337","google":"FEB0B","image":"2755.png","sheet_x":59,"sheet_y":36,"short_name":"grey_exclamation","short_names":["grey_exclamation"],"text":null,"texts":null,"category":"Symbols","subcategory":"punctuation","sort_order":1495,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HEAVY EXCLAMATION MARK SYMBOL","unified":"2757","non_qualified":null,"docomo":"E702","au":"E482","softbank":"E021","google":"FEB04","image":"2757.png","sheet_x":59,"sheet_y":37,"short_name":"exclamation","short_names":["exclamation","heavy_exclamation_mark"],"text":null,"texts":null,"category":"Symbols","subcategory":"punctuation","sort_order":1496,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HEART EXCLAMATION","unified":"2763-FE0F","non_qualified":"2763","docomo":null,"au":null,"softbank":null,"google":null,"image":"2763-fe0f.png","sheet_x":59,"sheet_y":38,"short_name":"heavy_heart_exclamation_mark_ornament","short_names":["heavy_heart_exclamation_mark_ornament"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":137,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HEART ON FIRE","unified":"2764-FE0F-200D-1F525","non_qualified":"2764-200D-1F525","docomo":null,"au":null,"softbank":null,"google":null,"image":"2764-fe0f-200d-1f525.png","sheet_x":59,"sheet_y":39,"short_name":"heart_on_fire","short_names":["heart_on_fire"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":139,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"MENDING HEART","unified":"2764-FE0F-200D-1FA79","non_qualified":"2764-200D-1FA79","docomo":null,"au":null,"softbank":null,"google":null,"image":"2764-fe0f-200d-1fa79.png","sheet_x":59,"sheet_y":40,"short_name":"mending_heart","short_names":["mending_heart"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":140,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HEAVY BLACK HEART","unified":"2764-FE0F","non_qualified":"2764","docomo":"E6EC","au":"E595","softbank":"E022","google":"FEB0C","image":"2764-fe0f.png","sheet_x":59,"sheet_y":41,"short_name":"heart","short_names":["heart"],"text":"<3","texts":["<3"],"category":"Smileys & Emotion","subcategory":"heart","sort_order":141,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HEAVY PLUS SIGN","unified":"2795","non_qualified":null,"docomo":null,"au":"E53C","softbank":null,"google":"FEB51","image":"2795.png","sheet_x":59,"sheet_y":42,"short_name":"heavy_plus_sign","short_names":["heavy_plus_sign"],"text":null,"texts":null,"category":"Symbols","subcategory":"math","sort_order":1486,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HEAVY MINUS SIGN","unified":"2796","non_qualified":null,"docomo":null,"au":"E53D","softbank":null,"google":"FEB52","image":"2796.png","sheet_x":59,"sheet_y":43,"short_name":"heavy_minus_sign","short_names":["heavy_minus_sign"],"text":null,"texts":null,"category":"Symbols","subcategory":"math","sort_order":1487,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HEAVY DIVISION SIGN","unified":"2797","non_qualified":null,"docomo":null,"au":"E554","softbank":null,"google":"FEB54","image":"2797.png","sheet_x":59,"sheet_y":44,"short_name":"heavy_division_sign","short_names":["heavy_division_sign"],"text":null,"texts":null,"category":"Symbols","subcategory":"math","sort_order":1488,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BLACK RIGHTWARDS ARROW","unified":"27A1-FE0F","non_qualified":"27A1","docomo":null,"au":"E552","softbank":"E234","google":"FEAFA","image":"27a1-fe0f.png","sheet_x":59,"sheet_y":45,"short_name":"arrow_right","short_names":["arrow_right"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1412,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CURLY LOOP","unified":"27B0","non_qualified":null,"docomo":"E70A","au":"EB31","softbank":null,"google":"FEB08","image":"27b0.png","sheet_x":59,"sheet_y":46,"short_name":"curly_loop","short_names":["curly_loop"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1512,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"DOUBLE CURLY LOOP","unified":"27BF","non_qualified":null,"docomo":"E6DF","au":null,"softbank":"E211","google":"FE82B","image":"27bf.png","sheet_x":59,"sheet_y":47,"short_name":"loop","short_names":["loop"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1513,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS","unified":"2934-FE0F","non_qualified":"2934","docomo":"E6F5","au":"EB2D","softbank":null,"google":"FEAF4","image":"2934-fe0f.png","sheet_x":59,"sheet_y":48,"short_name":"arrow_heading_up","short_names":["arrow_heading_up"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1422,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS","unified":"2935-FE0F","non_qualified":"2935","docomo":"E700","au":"EB2E","softbank":null,"google":"FEAF5","image":"2935-fe0f.png","sheet_x":59,"sheet_y":49,"short_name":"arrow_heading_down","short_names":["arrow_heading_down"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1423,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"LEFTWARDS BLACK ARROW","unified":"2B05-FE0F","non_qualified":"2B05","docomo":null,"au":"E553","softbank":"E235","google":"FEAFB","image":"2b05-fe0f.png","sheet_x":59,"sheet_y":50,"short_name":"arrow_left","short_names":["arrow_left"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1416,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"UPWARDS BLACK ARROW","unified":"2B06-FE0F","non_qualified":"2B06","docomo":null,"au":"E53F","softbank":"E232","google":"FEAF8","image":"2b06-fe0f.png","sheet_x":59,"sheet_y":51,"short_name":"arrow_up","short_names":["arrow_up"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1410,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"DOWNWARDS BLACK ARROW","unified":"2B07-FE0F","non_qualified":"2B07","docomo":null,"au":"E540","softbank":"E233","google":"FEAF9","image":"2b07-fe0f.png","sheet_x":59,"sheet_y":52,"short_name":"arrow_down","short_names":["arrow_down"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1414,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"BLACK LARGE SQUARE","unified":"2B1B","non_qualified":null,"docomo":null,"au":"E549","softbank":null,"google":"FEB6C","image":"2b1b.png","sheet_x":59,"sheet_y":53,"short_name":"black_large_square","short_names":["black_large_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1589,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WHITE LARGE SQUARE","unified":"2B1C","non_qualified":null,"docomo":null,"au":"E548","softbank":null,"google":"FEB6B","image":"2b1c.png","sheet_x":59,"sheet_y":54,"short_name":"white_large_square","short_names":["white_large_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1590,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WHITE MEDIUM STAR","unified":"2B50","non_qualified":null,"docomo":null,"au":"E48B","softbank":"E32F","google":"FEB68","image":"2b50.png","sheet_x":59,"sheet_y":55,"short_name":"star","short_names":["star"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1008,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"HEAVY LARGE CIRCLE","unified":"2B55","non_qualified":null,"docomo":"E6A0","au":"EAAD","softbank":"E332","google":"FEB44","image":"2b55.png","sheet_x":59,"sheet_y":56,"short_name":"o","short_names":["o"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1506,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"WAVY DASH","unified":"3030-FE0F","non_qualified":"3030","docomo":"E709","au":null,"softbank":null,"google":"FEB07","image":"3030-fe0f.png","sheet_x":59,"sheet_y":57,"short_name":"wavy_dash","short_names":["wavy_dash"],"text":null,"texts":null,"category":"Symbols","subcategory":"punctuation","sort_order":1497,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"PART ALTERNATION MARK","unified":"303D-FE0F","non_qualified":"303D","docomo":null,"au":null,"softbank":"E12C","google":"FE81B","image":"303d-fe0f.png","sheet_x":59,"sheet_y":58,"short_name":"part_alternation_mark","short_names":["part_alternation_mark"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1514,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CIRCLED IDEOGRAPH CONGRATULATION","unified":"3297-FE0F","non_qualified":"3297","docomo":null,"au":"EA99","softbank":"E30D","google":"FEB43","image":"3297-fe0f.png","sheet_x":59,"sheet_y":59,"short_name":"congratulations","short_names":["congratulations"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1569,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true},{"name":"CIRCLED IDEOGRAPH SECRET","unified":"3299-FE0F","non_qualified":"3299","docomo":"E734","au":"E4F1","softbank":"E315","google":"FEB2B","image":"3299-fe0f.png","sheet_x":59,"sheet_y":60,"short_name":"secret","short_names":["secret"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1570,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true}]
\ No newline at end of file
+[{"name":"HASH KEY","unified":"0023-FE0F-20E3","non_qualified":"0023-20E3","docomo":"E6E0","au":"EB84","softbank":"E210","google":"FE82C","image":"0023-fe0f-20e3.png","sheet_x":0,"sheet_y":0,"short_name":"hash","short_names":["hash"],"text":null,"texts":null,"category":"Symbols","subcategory":"keycap","sort_order":1521,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":false,"has_img_microsoft":true},{"name":"KEYCAP: *","unified":"002A-FE0F-20E3","non_qualified":"002A-20E3","docomo":null,"au":null,"softbank":null,"google":null,"image":"002a-fe0f-20e3.png","sheet_x":0,"sheet_y":1,"short_name":"keycap_star","short_names":["keycap_star"],"text":null,"texts":null,"category":"Symbols","subcategory":"keycap","sort_order":1522,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":false,"has_img_microsoft":true},{"name":"KEYCAP 0","unified":"0030-FE0F-20E3","non_qualified":"0030-20E3","docomo":"E6EB","au":"E5AC","softbank":"E225","google":"FE837","image":"0030-fe0f-20e3.png","sheet_x":0,"sheet_y":2,"short_name":"zero","short_names":["zero"],"text":null,"texts":null,"category":"Symbols","subcategory":"keycap","sort_order":1523,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":false,"has_img_microsoft":true},{"name":"KEYCAP 1","unified":"0031-FE0F-20E3","non_qualified":"0031-20E3","docomo":"E6E2","au":"E522","softbank":"E21C","google":"FE82E","image":"0031-fe0f-20e3.png","sheet_x":0,"sheet_y":3,"short_name":"one","short_names":["one"],"text":null,"texts":null,"category":"Symbols","subcategory":"keycap","sort_order":1524,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":false,"has_img_microsoft":true},{"name":"KEYCAP 2","unified":"0032-FE0F-20E3","non_qualified":"0032-20E3","docomo":"E6E3","au":"E523","softbank":"E21D","google":"FE82F","image":"0032-fe0f-20e3.png","sheet_x":0,"sheet_y":4,"short_name":"two","short_names":["two"],"text":null,"texts":null,"category":"Symbols","subcategory":"keycap","sort_order":1525,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":false,"has_img_microsoft":true},{"name":"KEYCAP 3","unified":"0033-FE0F-20E3","non_qualified":"0033-20E3","docomo":"E6E4","au":"E524","softbank":"E21E","google":"FE830","image":"0033-fe0f-20e3.png","sheet_x":0,"sheet_y":5,"short_name":"three","short_names":["three"],"text":null,"texts":null,"category":"Symbols","subcategory":"keycap","sort_order":1526,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":false,"has_img_microsoft":true},{"name":"KEYCAP 4","unified":"0034-FE0F-20E3","non_qualified":"0034-20E3","docomo":"E6E5","au":"E525","softbank":"E21F","google":"FE831","image":"0034-fe0f-20e3.png","sheet_x":0,"sheet_y":6,"short_name":"four","short_names":["four"],"text":null,"texts":null,"category":"Symbols","subcategory":"keycap","sort_order":1527,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":false,"has_img_microsoft":true},{"name":"KEYCAP 5","unified":"0035-FE0F-20E3","non_qualified":"0035-20E3","docomo":"E6E6","au":"E526","softbank":"E220","google":"FE832","image":"0035-fe0f-20e3.png","sheet_x":0,"sheet_y":7,"short_name":"five","short_names":["five"],"text":null,"texts":null,"category":"Symbols","subcategory":"keycap","sort_order":1528,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":false,"has_img_microsoft":true},{"name":"KEYCAP 6","unified":"0036-FE0F-20E3","non_qualified":"0036-20E3","docomo":"E6E7","au":"E527","softbank":"E221","google":"FE833","image":"0036-fe0f-20e3.png","sheet_x":0,"sheet_y":8,"short_name":"six","short_names":["six"],"text":null,"texts":null,"category":"Symbols","subcategory":"keycap","sort_order":1529,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":false,"has_img_microsoft":true},{"name":"KEYCAP 7","unified":"0037-FE0F-20E3","non_qualified":"0037-20E3","docomo":"E6E8","au":"E528","softbank":"E222","google":"FE834","image":"0037-fe0f-20e3.png","sheet_x":0,"sheet_y":9,"short_name":"seven","short_names":["seven"],"text":null,"texts":null,"category":"Symbols","subcategory":"keycap","sort_order":1530,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":false,"has_img_microsoft":true},{"name":"KEYCAP 8","unified":"0038-FE0F-20E3","non_qualified":"0038-20E3","docomo":"E6E9","au":"E529","softbank":"E223","google":"FE835","image":"0038-fe0f-20e3.png","sheet_x":0,"sheet_y":10,"short_name":"eight","short_names":["eight"],"text":null,"texts":null,"category":"Symbols","subcategory":"keycap","sort_order":1531,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":false,"has_img_microsoft":true},{"name":"KEYCAP 9","unified":"0039-FE0F-20E3","non_qualified":"0039-20E3","docomo":"E6EA","au":"E52A","softbank":"E224","google":"FE836","image":"0039-fe0f-20e3.png","sheet_x":0,"sheet_y":11,"short_name":"nine","short_names":["nine"],"text":null,"texts":null,"category":"Symbols","subcategory":"keycap","sort_order":1532,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":false,"has_img_microsoft":true},{"name":"COPYRIGHT SIGN","unified":"00A9-FE0F","non_qualified":"00A9","docomo":"E731","au":"E558","softbank":"E24E","google":"FEB29","image":"00a9-fe0f.png","sheet_x":0,"sheet_y":12,"short_name":"copyright","short_names":["copyright"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1518,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":false,"has_img_microsoft":true},{"name":"REGISTERED SIGN","unified":"00AE-FE0F","non_qualified":"00AE","docomo":"E736","au":"E559","softbank":"E24F","google":"FEB2D","image":"00ae-fe0f.png","sheet_x":0,"sheet_y":13,"short_name":"registered","short_names":["registered"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1519,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":false,"has_img_microsoft":true},{"name":"MAHJONG TILE RED DRAGON","unified":"1F004","non_qualified":null,"docomo":null,"au":"E5D1","softbank":"E12D","google":"FE80B","image":"1f004.png","sheet_x":0,"sheet_y":14,"short_name":"mahjong","short_names":["mahjong"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1114,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PLAYING CARD BLACK JOKER","unified":"1F0CF","non_qualified":null,"docomo":null,"au":"EB6F","softbank":null,"google":"FE812","image":"1f0cf.png","sheet_x":0,"sheet_y":15,"short_name":"black_joker","short_names":["black_joker"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1113,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NEGATIVE SQUARED LATIN CAPITAL LETTER A","unified":"1F170-FE0F","non_qualified":"1F170","docomo":null,"au":"EB26","softbank":"E532","google":"FE50B","image":"1f170-fe0f.png","sheet_x":0,"sheet_y":16,"short_name":"a","short_names":["a"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1539,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NEGATIVE SQUARED LATIN CAPITAL LETTER B","unified":"1F171-FE0F","non_qualified":"1F171","docomo":null,"au":"EB27","softbank":"E533","google":"FE50C","image":"1f171-fe0f.png","sheet_x":0,"sheet_y":17,"short_name":"b","short_names":["b"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1541,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NEGATIVE SQUARED LATIN CAPITAL LETTER O","unified":"1F17E-FE0F","non_qualified":"1F17E","docomo":null,"au":"EB28","softbank":"E535","google":"FE50E","image":"1f17e-fe0f.png","sheet_x":0,"sheet_y":18,"short_name":"o2","short_names":["o2"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1550,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NEGATIVE SQUARED LATIN CAPITAL LETTER P","unified":"1F17F-FE0F","non_qualified":"1F17F","docomo":"E66C","au":"E4A6","softbank":"E14F","google":"FE7F6","image":"1f17f-fe0f.png","sheet_x":0,"sheet_y":19,"short_name":"parking","short_names":["parking"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1552,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NEGATIVE SQUARED AB","unified":"1F18E","non_qualified":null,"docomo":null,"au":"EB29","softbank":"E534","google":"FE50D","image":"1f18e.png","sheet_x":0,"sheet_y":20,"short_name":"ab","short_names":["ab"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1540,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SQUARED CL","unified":"1F191","non_qualified":null,"docomo":"E6DB","au":"E5AB","softbank":null,"google":"FEB84","image":"1f191.png","sheet_x":0,"sheet_y":21,"short_name":"cl","short_names":["cl"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1542,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SQUARED COOL","unified":"1F192","non_qualified":null,"docomo":null,"au":"EA85","softbank":"E214","google":"FEB38","image":"1f192.png","sheet_x":0,"sheet_y":22,"short_name":"cool","short_names":["cool"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1543,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SQUARED FREE","unified":"1F193","non_qualified":null,"docomo":"E6D7","au":"E578","softbank":null,"google":"FEB21","image":"1f193.png","sheet_x":0,"sheet_y":23,"short_name":"free","short_names":["free"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1544,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SQUARED ID","unified":"1F194","non_qualified":null,"docomo":"E6D8","au":"EA88","softbank":"E229","google":"FEB81","image":"1f194.png","sheet_x":0,"sheet_y":24,"short_name":"id","short_names":["id"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1546,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SQUARED NEW","unified":"1F195","non_qualified":null,"docomo":"E6DD","au":"E5B5","softbank":"E212","google":"FEB36","image":"1f195.png","sheet_x":0,"sheet_y":25,"short_name":"new","short_names":["new"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1548,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SQUARED NG","unified":"1F196","non_qualified":null,"docomo":"E72F","au":null,"softbank":null,"google":"FEB28","image":"1f196.png","sheet_x":0,"sheet_y":26,"short_name":"ng","short_names":["ng"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1549,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SQUARED OK","unified":"1F197","non_qualified":null,"docomo":"E70B","au":"E5AD","softbank":"E24D","google":"FEB27","image":"1f197.png","sheet_x":0,"sheet_y":27,"short_name":"ok","short_names":["ok"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1551,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SQUARED SOS","unified":"1F198","non_qualified":null,"docomo":null,"au":"E4E8","softbank":null,"google":"FEB4F","image":"1f198.png","sheet_x":0,"sheet_y":28,"short_name":"sos","short_names":["sos"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1553,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SQUARED UP WITH EXCLAMATION MARK","unified":"1F199","non_qualified":null,"docomo":null,"au":"E50F","softbank":"E213","google":"FEB37","image":"1f199.png","sheet_x":0,"sheet_y":29,"short_name":"up","short_names":["up"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1554,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SQUARED VS","unified":"1F19A","non_qualified":null,"docomo":null,"au":"E5D2","softbank":"E12E","google":"FEB32","image":"1f19a.png","sheet_x":0,"sheet_y":30,"short_name":"vs","short_names":["vs"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1555,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"Ascension Island Flag","unified":"1F1E6-1F1E8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1e8.png","sheet_x":0,"sheet_y":31,"short_name":"flag-ac","short_names":["flag-ac"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1615,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Andorra Flag","unified":"1F1E6-1F1E9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1e9.png","sheet_x":0,"sheet_y":32,"short_name":"flag-ad","short_names":["flag-ad"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1616,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"United Arab Emirates Flag","unified":"1F1E6-1F1EA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1ea.png","sheet_x":0,"sheet_y":33,"short_name":"flag-ae","short_names":["flag-ae"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1617,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Afghanistan Flag","unified":"1F1E6-1F1EB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1eb.png","sheet_x":0,"sheet_y":34,"short_name":"flag-af","short_names":["flag-af"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1618,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Antigua & Barbuda Flag","unified":"1F1E6-1F1EC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1ec.png","sheet_x":0,"sheet_y":35,"short_name":"flag-ag","short_names":["flag-ag"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1619,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Anguilla Flag","unified":"1F1E6-1F1EE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1ee.png","sheet_x":0,"sheet_y":36,"short_name":"flag-ai","short_names":["flag-ai"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1620,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Albania Flag","unified":"1F1E6-1F1F1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1f1.png","sheet_x":0,"sheet_y":37,"short_name":"flag-al","short_names":["flag-al"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1621,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Armenia Flag","unified":"1F1E6-1F1F2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1f2.png","sheet_x":0,"sheet_y":38,"short_name":"flag-am","short_names":["flag-am"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1622,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Angola Flag","unified":"1F1E6-1F1F4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1f4.png","sheet_x":0,"sheet_y":39,"short_name":"flag-ao","short_names":["flag-ao"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1623,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Antarctica Flag","unified":"1F1E6-1F1F6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1f6.png","sheet_x":0,"sheet_y":40,"short_name":"flag-aq","short_names":["flag-aq"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1624,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Argentina Flag","unified":"1F1E6-1F1F7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1f7.png","sheet_x":0,"sheet_y":41,"short_name":"flag-ar","short_names":["flag-ar"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1625,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"American Samoa Flag","unified":"1F1E6-1F1F8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1f8.png","sheet_x":0,"sheet_y":42,"short_name":"flag-as","short_names":["flag-as"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1626,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Austria Flag","unified":"1F1E6-1F1F9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1f9.png","sheet_x":0,"sheet_y":43,"short_name":"flag-at","short_names":["flag-at"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1627,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Australia Flag","unified":"1F1E6-1F1FA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1fa.png","sheet_x":0,"sheet_y":44,"short_name":"flag-au","short_names":["flag-au"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1628,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Aruba Flag","unified":"1F1E6-1F1FC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1fc.png","sheet_x":0,"sheet_y":45,"short_name":"flag-aw","short_names":["flag-aw"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1629,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"\u00c5land Islands Flag","unified":"1F1E6-1F1FD","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1fd.png","sheet_x":0,"sheet_y":46,"short_name":"flag-ax","short_names":["flag-ax"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1630,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Azerbaijan Flag","unified":"1F1E6-1F1FF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1ff.png","sheet_x":0,"sheet_y":47,"short_name":"flag-az","short_names":["flag-az"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1631,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Bosnia & Herzegovina Flag","unified":"1F1E7-1F1E6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1e6.png","sheet_x":0,"sheet_y":48,"short_name":"flag-ba","short_names":["flag-ba"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1632,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Barbados Flag","unified":"1F1E7-1F1E7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1e7.png","sheet_x":0,"sheet_y":49,"short_name":"flag-bb","short_names":["flag-bb"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1633,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Bangladesh Flag","unified":"1F1E7-1F1E9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1e9.png","sheet_x":0,"sheet_y":50,"short_name":"flag-bd","short_names":["flag-bd"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1634,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Belgium Flag","unified":"1F1E7-1F1EA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1ea.png","sheet_x":0,"sheet_y":51,"short_name":"flag-be","short_names":["flag-be"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1635,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Burkina Faso Flag","unified":"1F1E7-1F1EB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1eb.png","sheet_x":0,"sheet_y":52,"short_name":"flag-bf","short_names":["flag-bf"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1636,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Bulgaria Flag","unified":"1F1E7-1F1EC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1ec.png","sheet_x":0,"sheet_y":53,"short_name":"flag-bg","short_names":["flag-bg"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1637,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Bahrain Flag","unified":"1F1E7-1F1ED","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1ed.png","sheet_x":0,"sheet_y":54,"short_name":"flag-bh","short_names":["flag-bh"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1638,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Burundi Flag","unified":"1F1E7-1F1EE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1ee.png","sheet_x":0,"sheet_y":55,"short_name":"flag-bi","short_names":["flag-bi"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1639,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Benin Flag","unified":"1F1E7-1F1EF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1ef.png","sheet_x":0,"sheet_y":56,"short_name":"flag-bj","short_names":["flag-bj"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1640,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"St. Barth\u00e9lemy Flag","unified":"1F1E7-1F1F1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1f1.png","sheet_x":0,"sheet_y":57,"short_name":"flag-bl","short_names":["flag-bl"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1641,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Bermuda Flag","unified":"1F1E7-1F1F2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1f2.png","sheet_x":0,"sheet_y":58,"short_name":"flag-bm","short_names":["flag-bm"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1642,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Brunei Flag","unified":"1F1E7-1F1F3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1f3.png","sheet_x":0,"sheet_y":59,"short_name":"flag-bn","short_names":["flag-bn"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1643,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Bolivia Flag","unified":"1F1E7-1F1F4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1f4.png","sheet_x":0,"sheet_y":60,"short_name":"flag-bo","short_names":["flag-bo"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1644,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Caribbean Netherlands Flag","unified":"1F1E7-1F1F6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1f6.png","sheet_x":1,"sheet_y":0,"short_name":"flag-bq","short_names":["flag-bq"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1645,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Brazil Flag","unified":"1F1E7-1F1F7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1f7.png","sheet_x":1,"sheet_y":1,"short_name":"flag-br","short_names":["flag-br"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1646,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Bahamas Flag","unified":"1F1E7-1F1F8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1f8.png","sheet_x":1,"sheet_y":2,"short_name":"flag-bs","short_names":["flag-bs"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1647,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Bhutan Flag","unified":"1F1E7-1F1F9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1f9.png","sheet_x":1,"sheet_y":3,"short_name":"flag-bt","short_names":["flag-bt"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1648,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Bouvet Island Flag","unified":"1F1E7-1F1FB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1fb.png","sheet_x":1,"sheet_y":4,"short_name":"flag-bv","short_names":["flag-bv"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1649,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Botswana Flag","unified":"1F1E7-1F1FC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1fc.png","sheet_x":1,"sheet_y":5,"short_name":"flag-bw","short_names":["flag-bw"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1650,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Belarus Flag","unified":"1F1E7-1F1FE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1fe.png","sheet_x":1,"sheet_y":6,"short_name":"flag-by","short_names":["flag-by"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1651,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Belize Flag","unified":"1F1E7-1F1FF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1ff.png","sheet_x":1,"sheet_y":7,"short_name":"flag-bz","short_names":["flag-bz"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1652,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Canada Flag","unified":"1F1E8-1F1E6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1e6.png","sheet_x":1,"sheet_y":8,"short_name":"flag-ca","short_names":["flag-ca"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1653,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Cocos (Keeling) Islands Flag","unified":"1F1E8-1F1E8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1e8.png","sheet_x":1,"sheet_y":9,"short_name":"flag-cc","short_names":["flag-cc"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1654,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Congo - Kinshasa Flag","unified":"1F1E8-1F1E9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1e9.png","sheet_x":1,"sheet_y":10,"short_name":"flag-cd","short_names":["flag-cd"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1655,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Central African Republic Flag","unified":"1F1E8-1F1EB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1eb.png","sheet_x":1,"sheet_y":11,"short_name":"flag-cf","short_names":["flag-cf"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1656,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Congo - Brazzaville Flag","unified":"1F1E8-1F1EC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1ec.png","sheet_x":1,"sheet_y":12,"short_name":"flag-cg","short_names":["flag-cg"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1657,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Switzerland Flag","unified":"1F1E8-1F1ED","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1ed.png","sheet_x":1,"sheet_y":13,"short_name":"flag-ch","short_names":["flag-ch"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1658,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"C\u00f4te d\u2019Ivoire Flag","unified":"1F1E8-1F1EE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1ee.png","sheet_x":1,"sheet_y":14,"short_name":"flag-ci","short_names":["flag-ci"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1659,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Cook Islands Flag","unified":"1F1E8-1F1F0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1f0.png","sheet_x":1,"sheet_y":15,"short_name":"flag-ck","short_names":["flag-ck"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1660,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Chile Flag","unified":"1F1E8-1F1F1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1f1.png","sheet_x":1,"sheet_y":16,"short_name":"flag-cl","short_names":["flag-cl"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1661,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Cameroon Flag","unified":"1F1E8-1F1F2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1f2.png","sheet_x":1,"sheet_y":17,"short_name":"flag-cm","short_names":["flag-cm"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1662,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"China Flag","unified":"1F1E8-1F1F3","non_qualified":null,"docomo":null,"au":"EB11","softbank":"E513","google":"FE4ED","image":"1f1e8-1f1f3.png","sheet_x":1,"sheet_y":18,"short_name":"cn","short_names":["cn","flag-cn"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1663,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Colombia Flag","unified":"1F1E8-1F1F4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1f4.png","sheet_x":1,"sheet_y":19,"short_name":"flag-co","short_names":["flag-co"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1664,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Clipperton Island Flag","unified":"1F1E8-1F1F5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1f5.png","sheet_x":1,"sheet_y":20,"short_name":"flag-cp","short_names":["flag-cp"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1665,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Costa Rica Flag","unified":"1F1E8-1F1F7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1f7.png","sheet_x":1,"sheet_y":21,"short_name":"flag-cr","short_names":["flag-cr"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1666,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Cuba Flag","unified":"1F1E8-1F1FA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1fa.png","sheet_x":1,"sheet_y":22,"short_name":"flag-cu","short_names":["flag-cu"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1667,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Cape Verde Flag","unified":"1F1E8-1F1FB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1fb.png","sheet_x":1,"sheet_y":23,"short_name":"flag-cv","short_names":["flag-cv"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1668,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Cura\u00e7ao Flag","unified":"1F1E8-1F1FC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1fc.png","sheet_x":1,"sheet_y":24,"short_name":"flag-cw","short_names":["flag-cw"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1669,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Christmas Island Flag","unified":"1F1E8-1F1FD","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1fd.png","sheet_x":1,"sheet_y":25,"short_name":"flag-cx","short_names":["flag-cx"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1670,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Cyprus Flag","unified":"1F1E8-1F1FE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1fe.png","sheet_x":1,"sheet_y":26,"short_name":"flag-cy","short_names":["flag-cy"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1671,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Czechia Flag","unified":"1F1E8-1F1FF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1ff.png","sheet_x":1,"sheet_y":27,"short_name":"flag-cz","short_names":["flag-cz"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1672,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Germany Flag","unified":"1F1E9-1F1EA","non_qualified":null,"docomo":null,"au":"EB0E","softbank":"E50E","google":"FE4E8","image":"1f1e9-1f1ea.png","sheet_x":1,"sheet_y":28,"short_name":"de","short_names":["de","flag-de"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1673,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Diego Garcia Flag","unified":"1F1E9-1F1EC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e9-1f1ec.png","sheet_x":1,"sheet_y":29,"short_name":"flag-dg","short_names":["flag-dg"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1674,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Djibouti Flag","unified":"1F1E9-1F1EF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e9-1f1ef.png","sheet_x":1,"sheet_y":30,"short_name":"flag-dj","short_names":["flag-dj"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1675,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Denmark Flag","unified":"1F1E9-1F1F0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e9-1f1f0.png","sheet_x":1,"sheet_y":31,"short_name":"flag-dk","short_names":["flag-dk"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1676,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Dominica Flag","unified":"1F1E9-1F1F2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e9-1f1f2.png","sheet_x":1,"sheet_y":32,"short_name":"flag-dm","short_names":["flag-dm"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1677,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Dominican Republic Flag","unified":"1F1E9-1F1F4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e9-1f1f4.png","sheet_x":1,"sheet_y":33,"short_name":"flag-do","short_names":["flag-do"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1678,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Algeria Flag","unified":"1F1E9-1F1FF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e9-1f1ff.png","sheet_x":1,"sheet_y":34,"short_name":"flag-dz","short_names":["flag-dz"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1679,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Ceuta & Melilla Flag","unified":"1F1EA-1F1E6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ea-1f1e6.png","sheet_x":1,"sheet_y":35,"short_name":"flag-ea","short_names":["flag-ea"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1680,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Ecuador Flag","unified":"1F1EA-1F1E8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ea-1f1e8.png","sheet_x":1,"sheet_y":36,"short_name":"flag-ec","short_names":["flag-ec"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1681,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Estonia Flag","unified":"1F1EA-1F1EA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ea-1f1ea.png","sheet_x":1,"sheet_y":37,"short_name":"flag-ee","short_names":["flag-ee"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1682,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Egypt Flag","unified":"1F1EA-1F1EC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ea-1f1ec.png","sheet_x":1,"sheet_y":38,"short_name":"flag-eg","short_names":["flag-eg"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1683,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Western Sahara Flag","unified":"1F1EA-1F1ED","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ea-1f1ed.png","sheet_x":1,"sheet_y":39,"short_name":"flag-eh","short_names":["flag-eh"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1684,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Eritrea Flag","unified":"1F1EA-1F1F7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ea-1f1f7.png","sheet_x":1,"sheet_y":40,"short_name":"flag-er","short_names":["flag-er"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1685,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Spain Flag","unified":"1F1EA-1F1F8","non_qualified":null,"docomo":null,"au":"E5D5","softbank":"E511","google":"FE4EB","image":"1f1ea-1f1f8.png","sheet_x":1,"sheet_y":41,"short_name":"es","short_names":["es","flag-es"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1686,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Ethiopia Flag","unified":"1F1EA-1F1F9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ea-1f1f9.png","sheet_x":1,"sheet_y":42,"short_name":"flag-et","short_names":["flag-et"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1687,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"European Union Flag","unified":"1F1EA-1F1FA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ea-1f1fa.png","sheet_x":1,"sheet_y":43,"short_name":"flag-eu","short_names":["flag-eu"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1688,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Finland Flag","unified":"1F1EB-1F1EE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1eb-1f1ee.png","sheet_x":1,"sheet_y":44,"short_name":"flag-fi","short_names":["flag-fi"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1689,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Fiji Flag","unified":"1F1EB-1F1EF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1eb-1f1ef.png","sheet_x":1,"sheet_y":45,"short_name":"flag-fj","short_names":["flag-fj"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1690,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Falkland Islands Flag","unified":"1F1EB-1F1F0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1eb-1f1f0.png","sheet_x":1,"sheet_y":46,"short_name":"flag-fk","short_names":["flag-fk"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1691,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Micronesia Flag","unified":"1F1EB-1F1F2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1eb-1f1f2.png","sheet_x":1,"sheet_y":47,"short_name":"flag-fm","short_names":["flag-fm"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1692,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Faroe Islands Flag","unified":"1F1EB-1F1F4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1eb-1f1f4.png","sheet_x":1,"sheet_y":48,"short_name":"flag-fo","short_names":["flag-fo"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1693,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"France Flag","unified":"1F1EB-1F1F7","non_qualified":null,"docomo":null,"au":"EAFA","softbank":"E50D","google":"FE4E7","image":"1f1eb-1f1f7.png","sheet_x":1,"sheet_y":49,"short_name":"fr","short_names":["fr","flag-fr"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1694,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Gabon Flag","unified":"1F1EC-1F1E6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1e6.png","sheet_x":1,"sheet_y":50,"short_name":"flag-ga","short_names":["flag-ga"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1695,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"United Kingdom Flag","unified":"1F1EC-1F1E7","non_qualified":null,"docomo":null,"au":"EB10","softbank":"E510","google":"FE4EA","image":"1f1ec-1f1e7.png","sheet_x":1,"sheet_y":51,"short_name":"gb","short_names":["gb","uk","flag-gb"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1696,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Grenada Flag","unified":"1F1EC-1F1E9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1e9.png","sheet_x":1,"sheet_y":52,"short_name":"flag-gd","short_names":["flag-gd"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1697,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Georgia Flag","unified":"1F1EC-1F1EA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1ea.png","sheet_x":1,"sheet_y":53,"short_name":"flag-ge","short_names":["flag-ge"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1698,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"French Guiana Flag","unified":"1F1EC-1F1EB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1eb.png","sheet_x":1,"sheet_y":54,"short_name":"flag-gf","short_names":["flag-gf"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1699,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Guernsey Flag","unified":"1F1EC-1F1EC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1ec.png","sheet_x":1,"sheet_y":55,"short_name":"flag-gg","short_names":["flag-gg"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1700,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Ghana Flag","unified":"1F1EC-1F1ED","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1ed.png","sheet_x":1,"sheet_y":56,"short_name":"flag-gh","short_names":["flag-gh"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1701,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Gibraltar Flag","unified":"1F1EC-1F1EE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1ee.png","sheet_x":1,"sheet_y":57,"short_name":"flag-gi","short_names":["flag-gi"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1702,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Greenland Flag","unified":"1F1EC-1F1F1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1f1.png","sheet_x":1,"sheet_y":58,"short_name":"flag-gl","short_names":["flag-gl"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1703,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Gambia Flag","unified":"1F1EC-1F1F2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1f2.png","sheet_x":1,"sheet_y":59,"short_name":"flag-gm","short_names":["flag-gm"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1704,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Guinea Flag","unified":"1F1EC-1F1F3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1f3.png","sheet_x":1,"sheet_y":60,"short_name":"flag-gn","short_names":["flag-gn"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1705,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Guadeloupe Flag","unified":"1F1EC-1F1F5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1f5.png","sheet_x":2,"sheet_y":0,"short_name":"flag-gp","short_names":["flag-gp"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1706,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Equatorial Guinea Flag","unified":"1F1EC-1F1F6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1f6.png","sheet_x":2,"sheet_y":1,"short_name":"flag-gq","short_names":["flag-gq"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1707,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Greece Flag","unified":"1F1EC-1F1F7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1f7.png","sheet_x":2,"sheet_y":2,"short_name":"flag-gr","short_names":["flag-gr"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1708,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"South Georgia & South Sandwich Islands Flag","unified":"1F1EC-1F1F8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1f8.png","sheet_x":2,"sheet_y":3,"short_name":"flag-gs","short_names":["flag-gs"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1709,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Guatemala Flag","unified":"1F1EC-1F1F9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1f9.png","sheet_x":2,"sheet_y":4,"short_name":"flag-gt","short_names":["flag-gt"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1710,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Guam Flag","unified":"1F1EC-1F1FA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1fa.png","sheet_x":2,"sheet_y":5,"short_name":"flag-gu","short_names":["flag-gu"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1711,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Guinea-Bissau Flag","unified":"1F1EC-1F1FC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1fc.png","sheet_x":2,"sheet_y":6,"short_name":"flag-gw","short_names":["flag-gw"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1712,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Guyana Flag","unified":"1F1EC-1F1FE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1fe.png","sheet_x":2,"sheet_y":7,"short_name":"flag-gy","short_names":["flag-gy"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1713,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Hong Kong SAR China Flag","unified":"1F1ED-1F1F0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ed-1f1f0.png","sheet_x":2,"sheet_y":8,"short_name":"flag-hk","short_names":["flag-hk"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1714,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Heard & McDonald Islands Flag","unified":"1F1ED-1F1F2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ed-1f1f2.png","sheet_x":2,"sheet_y":9,"short_name":"flag-hm","short_names":["flag-hm"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1715,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Honduras Flag","unified":"1F1ED-1F1F3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ed-1f1f3.png","sheet_x":2,"sheet_y":10,"short_name":"flag-hn","short_names":["flag-hn"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1716,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Croatia Flag","unified":"1F1ED-1F1F7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ed-1f1f7.png","sheet_x":2,"sheet_y":11,"short_name":"flag-hr","short_names":["flag-hr"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1717,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Haiti Flag","unified":"1F1ED-1F1F9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ed-1f1f9.png","sheet_x":2,"sheet_y":12,"short_name":"flag-ht","short_names":["flag-ht"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1718,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Hungary Flag","unified":"1F1ED-1F1FA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ed-1f1fa.png","sheet_x":2,"sheet_y":13,"short_name":"flag-hu","short_names":["flag-hu"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1719,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Canary Islands Flag","unified":"1F1EE-1F1E8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1e8.png","sheet_x":2,"sheet_y":14,"short_name":"flag-ic","short_names":["flag-ic"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1720,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Indonesia Flag","unified":"1F1EE-1F1E9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1e9.png","sheet_x":2,"sheet_y":15,"short_name":"flag-id","short_names":["flag-id"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1721,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Ireland Flag","unified":"1F1EE-1F1EA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1ea.png","sheet_x":2,"sheet_y":16,"short_name":"flag-ie","short_names":["flag-ie"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1722,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Israel Flag","unified":"1F1EE-1F1F1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1f1.png","sheet_x":2,"sheet_y":17,"short_name":"flag-il","short_names":["flag-il"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1723,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Isle of Man Flag","unified":"1F1EE-1F1F2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1f2.png","sheet_x":2,"sheet_y":18,"short_name":"flag-im","short_names":["flag-im"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1724,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"India Flag","unified":"1F1EE-1F1F3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1f3.png","sheet_x":2,"sheet_y":19,"short_name":"flag-in","short_names":["flag-in"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1725,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"British Indian Ocean Territory Flag","unified":"1F1EE-1F1F4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1f4.png","sheet_x":2,"sheet_y":20,"short_name":"flag-io","short_names":["flag-io"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1726,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Iraq Flag","unified":"1F1EE-1F1F6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1f6.png","sheet_x":2,"sheet_y":21,"short_name":"flag-iq","short_names":["flag-iq"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1727,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Iran Flag","unified":"1F1EE-1F1F7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1f7.png","sheet_x":2,"sheet_y":22,"short_name":"flag-ir","short_names":["flag-ir"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1728,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Iceland Flag","unified":"1F1EE-1F1F8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1f8.png","sheet_x":2,"sheet_y":23,"short_name":"flag-is","short_names":["flag-is"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1729,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Italy Flag","unified":"1F1EE-1F1F9","non_qualified":null,"docomo":null,"au":"EB0F","softbank":"E50F","google":"FE4E9","image":"1f1ee-1f1f9.png","sheet_x":2,"sheet_y":24,"short_name":"it","short_names":["it","flag-it"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1730,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Jersey Flag","unified":"1F1EF-1F1EA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ef-1f1ea.png","sheet_x":2,"sheet_y":25,"short_name":"flag-je","short_names":["flag-je"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1731,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Jamaica Flag","unified":"1F1EF-1F1F2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ef-1f1f2.png","sheet_x":2,"sheet_y":26,"short_name":"flag-jm","short_names":["flag-jm"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1732,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Jordan Flag","unified":"1F1EF-1F1F4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ef-1f1f4.png","sheet_x":2,"sheet_y":27,"short_name":"flag-jo","short_names":["flag-jo"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1733,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Japan Flag","unified":"1F1EF-1F1F5","non_qualified":null,"docomo":null,"au":"E4CC","softbank":"E50B","google":"FE4E5","image":"1f1ef-1f1f5.png","sheet_x":2,"sheet_y":28,"short_name":"jp","short_names":["jp","flag-jp"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1734,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Kenya Flag","unified":"1F1F0-1F1EA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1ea.png","sheet_x":2,"sheet_y":29,"short_name":"flag-ke","short_names":["flag-ke"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1735,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Kyrgyzstan Flag","unified":"1F1F0-1F1EC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1ec.png","sheet_x":2,"sheet_y":30,"short_name":"flag-kg","short_names":["flag-kg"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1736,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Cambodia Flag","unified":"1F1F0-1F1ED","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1ed.png","sheet_x":2,"sheet_y":31,"short_name":"flag-kh","short_names":["flag-kh"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1737,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Kiribati Flag","unified":"1F1F0-1F1EE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1ee.png","sheet_x":2,"sheet_y":32,"short_name":"flag-ki","short_names":["flag-ki"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1738,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Comoros Flag","unified":"1F1F0-1F1F2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1f2.png","sheet_x":2,"sheet_y":33,"short_name":"flag-km","short_names":["flag-km"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1739,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"St. Kitts & Nevis Flag","unified":"1F1F0-1F1F3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1f3.png","sheet_x":2,"sheet_y":34,"short_name":"flag-kn","short_names":["flag-kn"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1740,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"North Korea Flag","unified":"1F1F0-1F1F5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1f5.png","sheet_x":2,"sheet_y":35,"short_name":"flag-kp","short_names":["flag-kp"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1741,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"South Korea Flag","unified":"1F1F0-1F1F7","non_qualified":null,"docomo":null,"au":"EB12","softbank":"E514","google":"FE4EE","image":"1f1f0-1f1f7.png","sheet_x":2,"sheet_y":36,"short_name":"kr","short_names":["kr","flag-kr"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1742,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Kuwait Flag","unified":"1F1F0-1F1FC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1fc.png","sheet_x":2,"sheet_y":37,"short_name":"flag-kw","short_names":["flag-kw"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1743,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Cayman Islands Flag","unified":"1F1F0-1F1FE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1fe.png","sheet_x":2,"sheet_y":38,"short_name":"flag-ky","short_names":["flag-ky"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1744,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Kazakhstan Flag","unified":"1F1F0-1F1FF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1ff.png","sheet_x":2,"sheet_y":39,"short_name":"flag-kz","short_names":["flag-kz"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1745,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Laos Flag","unified":"1F1F1-1F1E6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1e6.png","sheet_x":2,"sheet_y":40,"short_name":"flag-la","short_names":["flag-la"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1746,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Lebanon Flag","unified":"1F1F1-1F1E7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1e7.png","sheet_x":2,"sheet_y":41,"short_name":"flag-lb","short_names":["flag-lb"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1747,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"St. Lucia Flag","unified":"1F1F1-1F1E8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1e8.png","sheet_x":2,"sheet_y":42,"short_name":"flag-lc","short_names":["flag-lc"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1748,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Liechtenstein Flag","unified":"1F1F1-1F1EE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1ee.png","sheet_x":2,"sheet_y":43,"short_name":"flag-li","short_names":["flag-li"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1749,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Sri Lanka Flag","unified":"1F1F1-1F1F0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1f0.png","sheet_x":2,"sheet_y":44,"short_name":"flag-lk","short_names":["flag-lk"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1750,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Liberia Flag","unified":"1F1F1-1F1F7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1f7.png","sheet_x":2,"sheet_y":45,"short_name":"flag-lr","short_names":["flag-lr"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1751,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Lesotho Flag","unified":"1F1F1-1F1F8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1f8.png","sheet_x":2,"sheet_y":46,"short_name":"flag-ls","short_names":["flag-ls"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1752,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Lithuania Flag","unified":"1F1F1-1F1F9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1f9.png","sheet_x":2,"sheet_y":47,"short_name":"flag-lt","short_names":["flag-lt"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1753,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Luxembourg Flag","unified":"1F1F1-1F1FA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1fa.png","sheet_x":2,"sheet_y":48,"short_name":"flag-lu","short_names":["flag-lu"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1754,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Latvia Flag","unified":"1F1F1-1F1FB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1fb.png","sheet_x":2,"sheet_y":49,"short_name":"flag-lv","short_names":["flag-lv"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1755,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Libya Flag","unified":"1F1F1-1F1FE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1fe.png","sheet_x":2,"sheet_y":50,"short_name":"flag-ly","short_names":["flag-ly"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1756,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Morocco Flag","unified":"1F1F2-1F1E6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1e6.png","sheet_x":2,"sheet_y":51,"short_name":"flag-ma","short_names":["flag-ma"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1757,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Monaco Flag","unified":"1F1F2-1F1E8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1e8.png","sheet_x":2,"sheet_y":52,"short_name":"flag-mc","short_names":["flag-mc"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1758,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Moldova Flag","unified":"1F1F2-1F1E9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1e9.png","sheet_x":2,"sheet_y":53,"short_name":"flag-md","short_names":["flag-md"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1759,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Montenegro Flag","unified":"1F1F2-1F1EA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1ea.png","sheet_x":2,"sheet_y":54,"short_name":"flag-me","short_names":["flag-me"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1760,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"St. Martin Flag","unified":"1F1F2-1F1EB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1eb.png","sheet_x":2,"sheet_y":55,"short_name":"flag-mf","short_names":["flag-mf"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1761,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Madagascar Flag","unified":"1F1F2-1F1EC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1ec.png","sheet_x":2,"sheet_y":56,"short_name":"flag-mg","short_names":["flag-mg"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1762,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Marshall Islands Flag","unified":"1F1F2-1F1ED","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1ed.png","sheet_x":2,"sheet_y":57,"short_name":"flag-mh","short_names":["flag-mh"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1763,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"North Macedonia Flag","unified":"1F1F2-1F1F0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f0.png","sheet_x":2,"sheet_y":58,"short_name":"flag-mk","short_names":["flag-mk"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1764,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Mali Flag","unified":"1F1F2-1F1F1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f1.png","sheet_x":2,"sheet_y":59,"short_name":"flag-ml","short_names":["flag-ml"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1765,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Myanmar (Burma) Flag","unified":"1F1F2-1F1F2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f2.png","sheet_x":2,"sheet_y":60,"short_name":"flag-mm","short_names":["flag-mm"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1766,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Mongolia Flag","unified":"1F1F2-1F1F3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f3.png","sheet_x":3,"sheet_y":0,"short_name":"flag-mn","short_names":["flag-mn"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1767,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Macao SAR China Flag","unified":"1F1F2-1F1F4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f4.png","sheet_x":3,"sheet_y":1,"short_name":"flag-mo","short_names":["flag-mo"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1768,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Northern Mariana Islands Flag","unified":"1F1F2-1F1F5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f5.png","sheet_x":3,"sheet_y":2,"short_name":"flag-mp","short_names":["flag-mp"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1769,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Martinique Flag","unified":"1F1F2-1F1F6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f6.png","sheet_x":3,"sheet_y":3,"short_name":"flag-mq","short_names":["flag-mq"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1770,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Mauritania Flag","unified":"1F1F2-1F1F7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f7.png","sheet_x":3,"sheet_y":4,"short_name":"flag-mr","short_names":["flag-mr"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1771,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Montserrat Flag","unified":"1F1F2-1F1F8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f8.png","sheet_x":3,"sheet_y":5,"short_name":"flag-ms","short_names":["flag-ms"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1772,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Malta Flag","unified":"1F1F2-1F1F9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f9.png","sheet_x":3,"sheet_y":6,"short_name":"flag-mt","short_names":["flag-mt"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1773,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Mauritius Flag","unified":"1F1F2-1F1FA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1fa.png","sheet_x":3,"sheet_y":7,"short_name":"flag-mu","short_names":["flag-mu"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1774,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Maldives Flag","unified":"1F1F2-1F1FB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1fb.png","sheet_x":3,"sheet_y":8,"short_name":"flag-mv","short_names":["flag-mv"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1775,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Malawi Flag","unified":"1F1F2-1F1FC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1fc.png","sheet_x":3,"sheet_y":9,"short_name":"flag-mw","short_names":["flag-mw"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1776,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Mexico Flag","unified":"1F1F2-1F1FD","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1fd.png","sheet_x":3,"sheet_y":10,"short_name":"flag-mx","short_names":["flag-mx"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1777,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Malaysia Flag","unified":"1F1F2-1F1FE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1fe.png","sheet_x":3,"sheet_y":11,"short_name":"flag-my","short_names":["flag-my"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1778,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Mozambique Flag","unified":"1F1F2-1F1FF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1ff.png","sheet_x":3,"sheet_y":12,"short_name":"flag-mz","short_names":["flag-mz"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1779,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Namibia Flag","unified":"1F1F3-1F1E6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1e6.png","sheet_x":3,"sheet_y":13,"short_name":"flag-na","short_names":["flag-na"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1780,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"New Caledonia Flag","unified":"1F1F3-1F1E8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1e8.png","sheet_x":3,"sheet_y":14,"short_name":"flag-nc","short_names":["flag-nc"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1781,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Niger Flag","unified":"1F1F3-1F1EA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1ea.png","sheet_x":3,"sheet_y":15,"short_name":"flag-ne","short_names":["flag-ne"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1782,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Norfolk Island Flag","unified":"1F1F3-1F1EB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1eb.png","sheet_x":3,"sheet_y":16,"short_name":"flag-nf","short_names":["flag-nf"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1783,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Nigeria Flag","unified":"1F1F3-1F1EC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1ec.png","sheet_x":3,"sheet_y":17,"short_name":"flag-ng","short_names":["flag-ng"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1784,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Nicaragua Flag","unified":"1F1F3-1F1EE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1ee.png","sheet_x":3,"sheet_y":18,"short_name":"flag-ni","short_names":["flag-ni"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1785,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Netherlands Flag","unified":"1F1F3-1F1F1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1f1.png","sheet_x":3,"sheet_y":19,"short_name":"flag-nl","short_names":["flag-nl"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1786,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Norway Flag","unified":"1F1F3-1F1F4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1f4.png","sheet_x":3,"sheet_y":20,"short_name":"flag-no","short_names":["flag-no"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1787,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Nepal Flag","unified":"1F1F3-1F1F5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1f5.png","sheet_x":3,"sheet_y":21,"short_name":"flag-np","short_names":["flag-np"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1788,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Nauru Flag","unified":"1F1F3-1F1F7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1f7.png","sheet_x":3,"sheet_y":22,"short_name":"flag-nr","short_names":["flag-nr"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1789,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Niue Flag","unified":"1F1F3-1F1FA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1fa.png","sheet_x":3,"sheet_y":23,"short_name":"flag-nu","short_names":["flag-nu"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1790,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"New Zealand Flag","unified":"1F1F3-1F1FF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1ff.png","sheet_x":3,"sheet_y":24,"short_name":"flag-nz","short_names":["flag-nz"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1791,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Oman Flag","unified":"1F1F4-1F1F2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f4-1f1f2.png","sheet_x":3,"sheet_y":25,"short_name":"flag-om","short_names":["flag-om"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1792,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Panama Flag","unified":"1F1F5-1F1E6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1e6.png","sheet_x":3,"sheet_y":26,"short_name":"flag-pa","short_names":["flag-pa"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1793,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Peru Flag","unified":"1F1F5-1F1EA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1ea.png","sheet_x":3,"sheet_y":27,"short_name":"flag-pe","short_names":["flag-pe"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1794,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"French Polynesia Flag","unified":"1F1F5-1F1EB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1eb.png","sheet_x":3,"sheet_y":28,"short_name":"flag-pf","short_names":["flag-pf"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1795,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Papua New Guinea Flag","unified":"1F1F5-1F1EC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1ec.png","sheet_x":3,"sheet_y":29,"short_name":"flag-pg","short_names":["flag-pg"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1796,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Philippines Flag","unified":"1F1F5-1F1ED","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1ed.png","sheet_x":3,"sheet_y":30,"short_name":"flag-ph","short_names":["flag-ph"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1797,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Pakistan Flag","unified":"1F1F5-1F1F0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1f0.png","sheet_x":3,"sheet_y":31,"short_name":"flag-pk","short_names":["flag-pk"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1798,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Poland Flag","unified":"1F1F5-1F1F1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1f1.png","sheet_x":3,"sheet_y":32,"short_name":"flag-pl","short_names":["flag-pl"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1799,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"St. Pierre & Miquelon Flag","unified":"1F1F5-1F1F2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1f2.png","sheet_x":3,"sheet_y":33,"short_name":"flag-pm","short_names":["flag-pm"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1800,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Pitcairn Islands Flag","unified":"1F1F5-1F1F3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1f3.png","sheet_x":3,"sheet_y":34,"short_name":"flag-pn","short_names":["flag-pn"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1801,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Puerto Rico Flag","unified":"1F1F5-1F1F7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1f7.png","sheet_x":3,"sheet_y":35,"short_name":"flag-pr","short_names":["flag-pr"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1802,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Palestinian Territories Flag","unified":"1F1F5-1F1F8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1f8.png","sheet_x":3,"sheet_y":36,"short_name":"flag-ps","short_names":["flag-ps"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1803,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Portugal Flag","unified":"1F1F5-1F1F9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1f9.png","sheet_x":3,"sheet_y":37,"short_name":"flag-pt","short_names":["flag-pt"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1804,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Palau Flag","unified":"1F1F5-1F1FC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1fc.png","sheet_x":3,"sheet_y":38,"short_name":"flag-pw","short_names":["flag-pw"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1805,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Paraguay Flag","unified":"1F1F5-1F1FE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1fe.png","sheet_x":3,"sheet_y":39,"short_name":"flag-py","short_names":["flag-py"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1806,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Qatar Flag","unified":"1F1F6-1F1E6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f6-1f1e6.png","sheet_x":3,"sheet_y":40,"short_name":"flag-qa","short_names":["flag-qa"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1807,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"R\u00e9union Flag","unified":"1F1F7-1F1EA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f7-1f1ea.png","sheet_x":3,"sheet_y":41,"short_name":"flag-re","short_names":["flag-re"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1808,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Romania Flag","unified":"1F1F7-1F1F4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f7-1f1f4.png","sheet_x":3,"sheet_y":42,"short_name":"flag-ro","short_names":["flag-ro"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1809,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Serbia Flag","unified":"1F1F7-1F1F8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f7-1f1f8.png","sheet_x":3,"sheet_y":43,"short_name":"flag-rs","short_names":["flag-rs"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1810,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Russia Flag","unified":"1F1F7-1F1FA","non_qualified":null,"docomo":null,"au":"E5D6","softbank":"E512","google":"FE4EC","image":"1f1f7-1f1fa.png","sheet_x":3,"sheet_y":44,"short_name":"ru","short_names":["ru","flag-ru"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1811,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Rwanda Flag","unified":"1F1F7-1F1FC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f7-1f1fc.png","sheet_x":3,"sheet_y":45,"short_name":"flag-rw","short_names":["flag-rw"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1812,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Saudi Arabia Flag","unified":"1F1F8-1F1E6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1e6.png","sheet_x":3,"sheet_y":46,"short_name":"flag-sa","short_names":["flag-sa"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1813,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Solomon Islands Flag","unified":"1F1F8-1F1E7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1e7.png","sheet_x":3,"sheet_y":47,"short_name":"flag-sb","short_names":["flag-sb"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1814,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Seychelles Flag","unified":"1F1F8-1F1E8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1e8.png","sheet_x":3,"sheet_y":48,"short_name":"flag-sc","short_names":["flag-sc"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1815,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Sudan Flag","unified":"1F1F8-1F1E9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1e9.png","sheet_x":3,"sheet_y":49,"short_name":"flag-sd","short_names":["flag-sd"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1816,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Sweden Flag","unified":"1F1F8-1F1EA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1ea.png","sheet_x":3,"sheet_y":50,"short_name":"flag-se","short_names":["flag-se"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1817,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Singapore Flag","unified":"1F1F8-1F1EC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1ec.png","sheet_x":3,"sheet_y":51,"short_name":"flag-sg","short_names":["flag-sg"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1818,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"St. Helena Flag","unified":"1F1F8-1F1ED","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1ed.png","sheet_x":3,"sheet_y":52,"short_name":"flag-sh","short_names":["flag-sh"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1819,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Slovenia Flag","unified":"1F1F8-1F1EE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1ee.png","sheet_x":3,"sheet_y":53,"short_name":"flag-si","short_names":["flag-si"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1820,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Svalbard & Jan Mayen Flag","unified":"1F1F8-1F1EF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1ef.png","sheet_x":3,"sheet_y":54,"short_name":"flag-sj","short_names":["flag-sj"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1821,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Slovakia Flag","unified":"1F1F8-1F1F0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1f0.png","sheet_x":3,"sheet_y":55,"short_name":"flag-sk","short_names":["flag-sk"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1822,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Sierra Leone Flag","unified":"1F1F8-1F1F1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1f1.png","sheet_x":3,"sheet_y":56,"short_name":"flag-sl","short_names":["flag-sl"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1823,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"San Marino Flag","unified":"1F1F8-1F1F2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1f2.png","sheet_x":3,"sheet_y":57,"short_name":"flag-sm","short_names":["flag-sm"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1824,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Senegal Flag","unified":"1F1F8-1F1F3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1f3.png","sheet_x":3,"sheet_y":58,"short_name":"flag-sn","short_names":["flag-sn"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1825,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Somalia Flag","unified":"1F1F8-1F1F4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1f4.png","sheet_x":3,"sheet_y":59,"short_name":"flag-so","short_names":["flag-so"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1826,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Suriname Flag","unified":"1F1F8-1F1F7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1f7.png","sheet_x":3,"sheet_y":60,"short_name":"flag-sr","short_names":["flag-sr"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1827,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"South Sudan Flag","unified":"1F1F8-1F1F8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1f8.png","sheet_x":4,"sheet_y":0,"short_name":"flag-ss","short_names":["flag-ss"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1828,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"S\u00e3o Tom\u00e9 & Pr\u00edncipe Flag","unified":"1F1F8-1F1F9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1f9.png","sheet_x":4,"sheet_y":1,"short_name":"flag-st","short_names":["flag-st"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1829,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"El Salvador Flag","unified":"1F1F8-1F1FB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1fb.png","sheet_x":4,"sheet_y":2,"short_name":"flag-sv","short_names":["flag-sv"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1830,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Sint Maarten Flag","unified":"1F1F8-1F1FD","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1fd.png","sheet_x":4,"sheet_y":3,"short_name":"flag-sx","short_names":["flag-sx"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1831,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Syria Flag","unified":"1F1F8-1F1FE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1fe.png","sheet_x":4,"sheet_y":4,"short_name":"flag-sy","short_names":["flag-sy"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1832,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Eswatini Flag","unified":"1F1F8-1F1FF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1ff.png","sheet_x":4,"sheet_y":5,"short_name":"flag-sz","short_names":["flag-sz"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1833,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Tristan da Cunha Flag","unified":"1F1F9-1F1E6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1e6.png","sheet_x":4,"sheet_y":6,"short_name":"flag-ta","short_names":["flag-ta"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1834,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Turks & Caicos Islands Flag","unified":"1F1F9-1F1E8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1e8.png","sheet_x":4,"sheet_y":7,"short_name":"flag-tc","short_names":["flag-tc"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1835,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Chad Flag","unified":"1F1F9-1F1E9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1e9.png","sheet_x":4,"sheet_y":8,"short_name":"flag-td","short_names":["flag-td"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1836,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"French Southern Territories Flag","unified":"1F1F9-1F1EB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1eb.png","sheet_x":4,"sheet_y":9,"short_name":"flag-tf","short_names":["flag-tf"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1837,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Togo Flag","unified":"1F1F9-1F1EC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1ec.png","sheet_x":4,"sheet_y":10,"short_name":"flag-tg","short_names":["flag-tg"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1838,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Thailand Flag","unified":"1F1F9-1F1ED","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1ed.png","sheet_x":4,"sheet_y":11,"short_name":"flag-th","short_names":["flag-th"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1839,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Tajikistan Flag","unified":"1F1F9-1F1EF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1ef.png","sheet_x":4,"sheet_y":12,"short_name":"flag-tj","short_names":["flag-tj"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1840,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Tokelau Flag","unified":"1F1F9-1F1F0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1f0.png","sheet_x":4,"sheet_y":13,"short_name":"flag-tk","short_names":["flag-tk"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1841,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Timor-Leste Flag","unified":"1F1F9-1F1F1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1f1.png","sheet_x":4,"sheet_y":14,"short_name":"flag-tl","short_names":["flag-tl"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1842,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Turkmenistan Flag","unified":"1F1F9-1F1F2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1f2.png","sheet_x":4,"sheet_y":15,"short_name":"flag-tm","short_names":["flag-tm"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1843,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Tunisia Flag","unified":"1F1F9-1F1F3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1f3.png","sheet_x":4,"sheet_y":16,"short_name":"flag-tn","short_names":["flag-tn"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1844,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Tonga Flag","unified":"1F1F9-1F1F4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1f4.png","sheet_x":4,"sheet_y":17,"short_name":"flag-to","short_names":["flag-to"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1845,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Turkey Flag","unified":"1F1F9-1F1F7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1f7.png","sheet_x":4,"sheet_y":18,"short_name":"flag-tr","short_names":["flag-tr"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1846,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Trinidad & Tobago Flag","unified":"1F1F9-1F1F9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1f9.png","sheet_x":4,"sheet_y":19,"short_name":"flag-tt","short_names":["flag-tt"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1847,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Tuvalu Flag","unified":"1F1F9-1F1FB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1fb.png","sheet_x":4,"sheet_y":20,"short_name":"flag-tv","short_names":["flag-tv"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1848,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Taiwan Flag","unified":"1F1F9-1F1FC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1fc.png","sheet_x":4,"sheet_y":21,"short_name":"flag-tw","short_names":["flag-tw"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1849,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Tanzania Flag","unified":"1F1F9-1F1FF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1ff.png","sheet_x":4,"sheet_y":22,"short_name":"flag-tz","short_names":["flag-tz"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1850,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Ukraine Flag","unified":"1F1FA-1F1E6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fa-1f1e6.png","sheet_x":4,"sheet_y":23,"short_name":"flag-ua","short_names":["flag-ua"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1851,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Uganda Flag","unified":"1F1FA-1F1EC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fa-1f1ec.png","sheet_x":4,"sheet_y":24,"short_name":"flag-ug","short_names":["flag-ug"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1852,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"U.S. Outlying Islands Flag","unified":"1F1FA-1F1F2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fa-1f1f2.png","sheet_x":4,"sheet_y":25,"short_name":"flag-um","short_names":["flag-um"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1853,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"United Nations Flag","unified":"1F1FA-1F1F3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fa-1f1f3.png","sheet_x":4,"sheet_y":26,"short_name":"flag-un","short_names":["flag-un"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1854,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"United States Flag","unified":"1F1FA-1F1F8","non_qualified":null,"docomo":null,"au":"E573","softbank":"E50C","google":"FE4E6","image":"1f1fa-1f1f8.png","sheet_x":4,"sheet_y":27,"short_name":"us","short_names":["us","flag-us"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1855,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Uruguay Flag","unified":"1F1FA-1F1FE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fa-1f1fe.png","sheet_x":4,"sheet_y":28,"short_name":"flag-uy","short_names":["flag-uy"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1856,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Uzbekistan Flag","unified":"1F1FA-1F1FF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fa-1f1ff.png","sheet_x":4,"sheet_y":29,"short_name":"flag-uz","short_names":["flag-uz"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1857,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Vatican City Flag","unified":"1F1FB-1F1E6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fb-1f1e6.png","sheet_x":4,"sheet_y":30,"short_name":"flag-va","short_names":["flag-va"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1858,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"St. Vincent & Grenadines Flag","unified":"1F1FB-1F1E8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fb-1f1e8.png","sheet_x":4,"sheet_y":31,"short_name":"flag-vc","short_names":["flag-vc"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1859,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Venezuela Flag","unified":"1F1FB-1F1EA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fb-1f1ea.png","sheet_x":4,"sheet_y":32,"short_name":"flag-ve","short_names":["flag-ve"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1860,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"British Virgin Islands Flag","unified":"1F1FB-1F1EC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fb-1f1ec.png","sheet_x":4,"sheet_y":33,"short_name":"flag-vg","short_names":["flag-vg"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1861,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"U.S. Virgin Islands Flag","unified":"1F1FB-1F1EE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fb-1f1ee.png","sheet_x":4,"sheet_y":34,"short_name":"flag-vi","short_names":["flag-vi"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1862,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Vietnam Flag","unified":"1F1FB-1F1F3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fb-1f1f3.png","sheet_x":4,"sheet_y":35,"short_name":"flag-vn","short_names":["flag-vn"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1863,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Vanuatu Flag","unified":"1F1FB-1F1FA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fb-1f1fa.png","sheet_x":4,"sheet_y":36,"short_name":"flag-vu","short_names":["flag-vu"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1864,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Wallis & Futuna Flag","unified":"1F1FC-1F1EB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fc-1f1eb.png","sheet_x":4,"sheet_y":37,"short_name":"flag-wf","short_names":["flag-wf"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1865,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Samoa Flag","unified":"1F1FC-1F1F8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fc-1f1f8.png","sheet_x":4,"sheet_y":38,"short_name":"flag-ws","short_names":["flag-ws"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1866,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Kosovo Flag","unified":"1F1FD-1F1F0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fd-1f1f0.png","sheet_x":4,"sheet_y":39,"short_name":"flag-xk","short_names":["flag-xk"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1867,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Yemen Flag","unified":"1F1FE-1F1EA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fe-1f1ea.png","sheet_x":4,"sheet_y":40,"short_name":"flag-ye","short_names":["flag-ye"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1868,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Mayotte Flag","unified":"1F1FE-1F1F9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fe-1f1f9.png","sheet_x":4,"sheet_y":41,"short_name":"flag-yt","short_names":["flag-yt"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1869,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"South Africa Flag","unified":"1F1FF-1F1E6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ff-1f1e6.png","sheet_x":4,"sheet_y":42,"short_name":"flag-za","short_names":["flag-za"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1870,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Zambia Flag","unified":"1F1FF-1F1F2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ff-1f1f2.png","sheet_x":4,"sheet_y":43,"short_name":"flag-zm","short_names":["flag-zm"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1871,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Zimbabwe Flag","unified":"1F1FF-1F1FC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ff-1f1fc.png","sheet_x":4,"sheet_y":44,"short_name":"flag-zw","short_names":["flag-zw"],"text":null,"texts":null,"category":"Flags","subcategory":"country-flag","sort_order":1872,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"SQUARED KATAKANA KOKO","unified":"1F201","non_qualified":null,"docomo":null,"au":null,"softbank":"E203","google":"FEB24","image":"1f201.png","sheet_x":4,"sheet_y":45,"short_name":"koko","short_names":["koko"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1556,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SQUARED KATAKANA SA","unified":"1F202-FE0F","non_qualified":"1F202","docomo":null,"au":"EA87","softbank":"E228","google":"FEB3F","image":"1f202-fe0f.png","sheet_x":4,"sheet_y":46,"short_name":"sa","short_names":["sa"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1557,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SQUARED CJK UNIFIED IDEOGRAPH-7121","unified":"1F21A","non_qualified":null,"docomo":null,"au":null,"softbank":"E216","google":"FEB3A","image":"1f21a.png","sheet_x":4,"sheet_y":47,"short_name":"u7121","short_names":["u7121"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1563,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SQUARED CJK UNIFIED IDEOGRAPH-6307","unified":"1F22F","non_qualified":null,"docomo":null,"au":"EA8B","softbank":"E22C","google":"FEB40","image":"1f22f.png","sheet_x":4,"sheet_y":48,"short_name":"u6307","short_names":["u6307"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1560,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SQUARED CJK UNIFIED IDEOGRAPH-7981","unified":"1F232","non_qualified":null,"docomo":"E738","au":null,"softbank":null,"google":"FEB2E","image":"1f232.png","sheet_x":4,"sheet_y":49,"short_name":"u7981","short_names":["u7981"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1564,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SQUARED CJK UNIFIED IDEOGRAPH-7A7A","unified":"1F233","non_qualified":null,"docomo":"E739","au":"EA8A","softbank":"E22B","google":"FEB2F","image":"1f233.png","sheet_x":4,"sheet_y":50,"short_name":"u7a7a","short_names":["u7a7a"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1568,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SQUARED CJK UNIFIED IDEOGRAPH-5408","unified":"1F234","non_qualified":null,"docomo":"E73A","au":null,"softbank":null,"google":"FEB30","image":"1f234.png","sheet_x":4,"sheet_y":51,"short_name":"u5408","short_names":["u5408"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1567,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SQUARED CJK UNIFIED IDEOGRAPH-6E80","unified":"1F235","non_qualified":null,"docomo":"E73B","au":"EA89","softbank":"E22A","google":"FEB31","image":"1f235.png","sheet_x":4,"sheet_y":52,"short_name":"u6e80","short_names":["u6e80"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1572,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SQUARED CJK UNIFIED IDEOGRAPH-6709","unified":"1F236","non_qualified":null,"docomo":null,"au":null,"softbank":"E215","google":"FEB39","image":"1f236.png","sheet_x":4,"sheet_y":53,"short_name":"u6709","short_names":["u6709"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1559,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SQUARED CJK UNIFIED IDEOGRAPH-6708","unified":"1F237-FE0F","non_qualified":"1F237","docomo":null,"au":null,"softbank":"E217","google":"FEB3B","image":"1f237-fe0f.png","sheet_x":4,"sheet_y":54,"short_name":"u6708","short_names":["u6708"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1558,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SQUARED CJK UNIFIED IDEOGRAPH-7533","unified":"1F238","non_qualified":null,"docomo":null,"au":null,"softbank":"E218","google":"FEB3C","image":"1f238.png","sheet_x":4,"sheet_y":55,"short_name":"u7533","short_names":["u7533"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1566,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SQUARED CJK UNIFIED IDEOGRAPH-5272","unified":"1F239","non_qualified":null,"docomo":null,"au":"EA86","softbank":"E227","google":"FEB3E","image":"1f239.png","sheet_x":4,"sheet_y":56,"short_name":"u5272","short_names":["u5272"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1562,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SQUARED CJK UNIFIED IDEOGRAPH-55B6","unified":"1F23A","non_qualified":null,"docomo":null,"au":"EA8C","softbank":"E22D","google":"FEB41","image":"1f23a.png","sheet_x":4,"sheet_y":57,"short_name":"u55b6","short_names":["u55b6"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1571,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CIRCLED IDEOGRAPH ADVANTAGE","unified":"1F250","non_qualified":null,"docomo":null,"au":"E4F7","softbank":"E226","google":"FEB3D","image":"1f250.png","sheet_x":4,"sheet_y":58,"short_name":"ideograph_advantage","short_names":["ideograph_advantage"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1561,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CIRCLED IDEOGRAPH ACCEPT","unified":"1F251","non_qualified":null,"docomo":null,"au":"EB01","softbank":null,"google":"FEB50","image":"1f251.png","sheet_x":4,"sheet_y":59,"short_name":"accept","short_names":["accept"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1565,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CYCLONE","unified":"1F300","non_qualified":null,"docomo":"E643","au":"E469","softbank":"E443","google":"FE005","image":"1f300.png","sheet_x":4,"sheet_y":60,"short_name":"cyclone","short_names":["cyclone"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1024,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FOGGY","unified":"1F301","non_qualified":null,"docomo":"E644","au":"E598","softbank":null,"google":"FE006","image":"1f301.png","sheet_x":5,"sheet_y":0,"short_name":"foggy","short_names":["foggy"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-other","sort_order":871,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOSED UMBRELLA","unified":"1F302","non_qualified":null,"docomo":"E645","au":"EAE8","softbank":"E43C","google":"FE007","image":"1f302.png","sheet_x":5,"sheet_y":1,"short_name":"closed_umbrella","short_names":["closed_umbrella"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1026,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NIGHT WITH STARS","unified":"1F303","non_qualified":null,"docomo":"E6B3","au":"EAF1","softbank":"E44B","google":"FE008","image":"1f303.png","sheet_x":5,"sheet_y":2,"short_name":"night_with_stars","short_names":["night_with_stars"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-other","sort_order":872,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SUNRISE OVER MOUNTAINS","unified":"1F304","non_qualified":null,"docomo":"E63E","au":"EAF4","softbank":"E04D","google":"FE009","image":"1f304.png","sheet_x":5,"sheet_y":3,"short_name":"sunrise_over_mountains","short_names":["sunrise_over_mountains"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-other","sort_order":874,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SUNRISE","unified":"1F305","non_qualified":null,"docomo":"E63E","au":"EAF4","softbank":"E449","google":"FE00A","image":"1f305.png","sheet_x":5,"sheet_y":4,"short_name":"sunrise","short_names":["sunrise"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-other","sort_order":875,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CITYSCAPE AT DUSK","unified":"1F306","non_qualified":null,"docomo":null,"au":"E5DA","softbank":"E146","google":"FE00B","image":"1f306.png","sheet_x":5,"sheet_y":5,"short_name":"city_sunset","short_names":["city_sunset"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-other","sort_order":876,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SUNSET OVER BUILDINGS","unified":"1F307","non_qualified":null,"docomo":"E63E","au":"E5DA","softbank":"E44A","google":"FE00C","image":"1f307.png","sheet_x":5,"sheet_y":6,"short_name":"city_sunrise","short_names":["city_sunrise"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-other","sort_order":877,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RAINBOW","unified":"1F308","non_qualified":null,"docomo":null,"au":"EAF2","softbank":"E44C","google":"FE00D","image":"1f308.png","sheet_x":5,"sheet_y":7,"short_name":"rainbow","short_names":["rainbow"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1025,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BRIDGE AT NIGHT","unified":"1F309","non_qualified":null,"docomo":"E6B3","au":"E4BF","softbank":null,"google":"FE010","image":"1f309.png","sheet_x":5,"sheet_y":8,"short_name":"bridge_at_night","short_names":["bridge_at_night"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-other","sort_order":878,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WATER WAVE","unified":"1F30A","non_qualified":null,"docomo":"E73F","au":"EB7C","softbank":"E43E","google":"FE038","image":"1f30a.png","sheet_x":5,"sheet_y":9,"short_name":"ocean","short_names":["ocean"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1037,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"VOLCANO","unified":"1F30B","non_qualified":null,"docomo":null,"au":"EB53","softbank":null,"google":"FE03A","image":"1f30b.png","sheet_x":5,"sheet_y":10,"short_name":"volcano","short_names":["volcano"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-geographic","sort_order":829,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MILKY WAY","unified":"1F30C","non_qualified":null,"docomo":"E6B3","au":"EB5F","softbank":null,"google":"FE03B","image":"1f30c.png","sheet_x":5,"sheet_y":11,"short_name":"milky_way","short_names":["milky_way"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1011,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"EARTH GLOBE EUROPE-AFRICA","unified":"1F30D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f30d.png","sheet_x":5,"sheet_y":12,"short_name":"earth_africa","short_names":["earth_africa"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-map","sort_order":820,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"EARTH GLOBE AMERICAS","unified":"1F30E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f30e.png","sheet_x":5,"sheet_y":13,"short_name":"earth_americas","short_names":["earth_americas"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-map","sort_order":821,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"EARTH GLOBE ASIA-AUSTRALIA","unified":"1F30F","non_qualified":null,"docomo":null,"au":"E5B3","softbank":null,"google":"FE039","image":"1f30f.png","sheet_x":5,"sheet_y":14,"short_name":"earth_asia","short_names":["earth_asia"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-map","sort_order":822,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GLOBE WITH MERIDIANS","unified":"1F310","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f310.png","sheet_x":5,"sheet_y":15,"short_name":"globe_with_meridians","short_names":["globe_with_meridians"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-map","sort_order":823,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NEW MOON SYMBOL","unified":"1F311","non_qualified":null,"docomo":"E69C","au":"E5A8","softbank":null,"google":"FE011","image":"1f311.png","sheet_x":5,"sheet_y":16,"short_name":"new_moon","short_names":["new_moon"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":991,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WAXING CRESCENT MOON SYMBOL","unified":"1F312","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f312.png","sheet_x":5,"sheet_y":17,"short_name":"waxing_crescent_moon","short_names":["waxing_crescent_moon"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":992,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FIRST QUARTER MOON SYMBOL","unified":"1F313","non_qualified":null,"docomo":"E69E","au":"E5AA","softbank":null,"google":"FE013","image":"1f313.png","sheet_x":5,"sheet_y":18,"short_name":"first_quarter_moon","short_names":["first_quarter_moon"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":993,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WAXING GIBBOUS MOON SYMBOL","unified":"1F314","non_qualified":null,"docomo":"E69D","au":"E5A9","softbank":null,"google":"FE012","image":"1f314.png","sheet_x":5,"sheet_y":19,"short_name":"moon","short_names":["moon","waxing_gibbous_moon"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":994,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FULL MOON SYMBOL","unified":"1F315","non_qualified":null,"docomo":"E6A0","au":null,"softbank":null,"google":"FE015","image":"1f315.png","sheet_x":5,"sheet_y":20,"short_name":"full_moon","short_names":["full_moon"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":995,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WANING GIBBOUS MOON SYMBOL","unified":"1F316","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f316.png","sheet_x":5,"sheet_y":21,"short_name":"waning_gibbous_moon","short_names":["waning_gibbous_moon"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":996,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LAST QUARTER MOON SYMBOL","unified":"1F317","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f317.png","sheet_x":5,"sheet_y":22,"short_name":"last_quarter_moon","short_names":["last_quarter_moon"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":997,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WANING CRESCENT MOON SYMBOL","unified":"1F318","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f318.png","sheet_x":5,"sheet_y":23,"short_name":"waning_crescent_moon","short_names":["waning_crescent_moon"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":998,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CRESCENT MOON","unified":"1F319","non_qualified":null,"docomo":"E69F","au":"E486","softbank":"E04C","google":"FE014","image":"1f319.png","sheet_x":5,"sheet_y":24,"short_name":"crescent_moon","short_names":["crescent_moon"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":999,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NEW MOON WITH FACE","unified":"1F31A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f31a.png","sheet_x":5,"sheet_y":25,"short_name":"new_moon_with_face","short_names":["new_moon_with_face"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1000,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FIRST QUARTER MOON WITH FACE","unified":"1F31B","non_qualified":null,"docomo":"E69E","au":"E489","softbank":null,"google":"FE016","image":"1f31b.png","sheet_x":5,"sheet_y":26,"short_name":"first_quarter_moon_with_face","short_names":["first_quarter_moon_with_face"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1001,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LAST QUARTER MOON WITH FACE","unified":"1F31C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f31c.png","sheet_x":5,"sheet_y":27,"short_name":"last_quarter_moon_with_face","short_names":["last_quarter_moon_with_face"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1002,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FULL MOON WITH FACE","unified":"1F31D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f31d.png","sheet_x":5,"sheet_y":28,"short_name":"full_moon_with_face","short_names":["full_moon_with_face"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1005,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SUN WITH FACE","unified":"1F31E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f31e.png","sheet_x":5,"sheet_y":29,"short_name":"sun_with_face","short_names":["sun_with_face"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1006,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GLOWING STAR","unified":"1F31F","non_qualified":null,"docomo":null,"au":"E48B","softbank":"E335","google":"FEB69","image":"1f31f.png","sheet_x":5,"sheet_y":30,"short_name":"star2","short_names":["star2"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1009,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SHOOTING STAR","unified":"1F320","non_qualified":null,"docomo":null,"au":"E468","softbank":null,"google":"FEB6A","image":"1f320.png","sheet_x":5,"sheet_y":31,"short_name":"stars","short_names":["stars"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1010,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"THERMOMETER","unified":"1F321-FE0F","non_qualified":"1F321","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f321-fe0f.png","sheet_x":5,"sheet_y":32,"short_name":"thermometer","short_names":["thermometer"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1003,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SUN BEHIND SMALL CLOUD","unified":"1F324-FE0F","non_qualified":"1F324","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f324-fe0f.png","sheet_x":5,"sheet_y":33,"short_name":"mostly_sunny","short_names":["mostly_sunny","sun_small_cloud"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1015,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SUN BEHIND LARGE CLOUD","unified":"1F325-FE0F","non_qualified":"1F325","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f325-fe0f.png","sheet_x":5,"sheet_y":34,"short_name":"barely_sunny","short_names":["barely_sunny","sun_behind_cloud"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1016,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SUN BEHIND RAIN CLOUD","unified":"1F326-FE0F","non_qualified":"1F326","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f326-fe0f.png","sheet_x":5,"sheet_y":35,"short_name":"partly_sunny_rain","short_names":["partly_sunny_rain","sun_behind_rain_cloud"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1017,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOUD WITH RAIN","unified":"1F327-FE0F","non_qualified":"1F327","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f327-fe0f.png","sheet_x":5,"sheet_y":36,"short_name":"rain_cloud","short_names":["rain_cloud"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1018,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOUD WITH SNOW","unified":"1F328-FE0F","non_qualified":"1F328","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f328-fe0f.png","sheet_x":5,"sheet_y":37,"short_name":"snow_cloud","short_names":["snow_cloud"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1019,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOUD WITH LIGHTNING","unified":"1F329-FE0F","non_qualified":"1F329","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f329-fe0f.png","sheet_x":5,"sheet_y":38,"short_name":"lightning","short_names":["lightning","lightning_cloud"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1020,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TORNADO","unified":"1F32A-FE0F","non_qualified":"1F32A","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f32a-fe0f.png","sheet_x":5,"sheet_y":39,"short_name":"tornado","short_names":["tornado","tornado_cloud"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1021,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FOG","unified":"1F32B-FE0F","non_qualified":"1F32B","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f32b-fe0f.png","sheet_x":5,"sheet_y":40,"short_name":"fog","short_names":["fog"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1022,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WIND FACE","unified":"1F32C-FE0F","non_qualified":"1F32C","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f32c-fe0f.png","sheet_x":5,"sheet_y":41,"short_name":"wind_blowing_face","short_names":["wind_blowing_face"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1023,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HOT DOG","unified":"1F32D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f32d.png","sheet_x":5,"sheet_y":42,"short_name":"hotdog","short_names":["hotdog"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":739,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TACO","unified":"1F32E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f32e.png","sheet_x":5,"sheet_y":43,"short_name":"taco","short_names":["taco"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":741,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BURRITO","unified":"1F32F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f32f.png","sheet_x":5,"sheet_y":44,"short_name":"burrito","short_names":["burrito"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":742,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CHESTNUT","unified":"1F330","non_qualified":null,"docomo":null,"au":"EB38","softbank":null,"google":"FE04C","image":"1f330.png","sheet_x":5,"sheet_y":45,"short_name":"chestnut","short_names":["chestnut"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":720,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SEEDLING","unified":"1F331","non_qualified":null,"docomo":"E746","au":"EB7D","softbank":null,"google":"FE03E","image":"1f331.png","sheet_x":5,"sheet_y":46,"short_name":"seedling","short_names":["seedling"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-other","sort_order":671,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"EVERGREEN TREE","unified":"1F332","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f332.png","sheet_x":5,"sheet_y":47,"short_name":"evergreen_tree","short_names":["evergreen_tree"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-other","sort_order":673,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DECIDUOUS TREE","unified":"1F333","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f333.png","sheet_x":5,"sheet_y":48,"short_name":"deciduous_tree","short_names":["deciduous_tree"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-other","sort_order":674,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PALM TREE","unified":"1F334","non_qualified":null,"docomo":null,"au":"E4E2","softbank":"E307","google":"FE047","image":"1f334.png","sheet_x":5,"sheet_y":49,"short_name":"palm_tree","short_names":["palm_tree"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-other","sort_order":675,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CACTUS","unified":"1F335","non_qualified":null,"docomo":null,"au":"EA96","softbank":"E308","google":"FE048","image":"1f335.png","sheet_x":5,"sheet_y":50,"short_name":"cactus","short_names":["cactus"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-other","sort_order":676,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HOT PEPPER","unified":"1F336-FE0F","non_qualified":"1F336","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f336-fe0f.png","sheet_x":5,"sheet_y":51,"short_name":"hot_pepper","short_names":["hot_pepper"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":711,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TULIP","unified":"1F337","non_qualified":null,"docomo":"E743","au":"E4E4","softbank":"E304","google":"FE03D","image":"1f337.png","sheet_x":5,"sheet_y":52,"short_name":"tulip","short_names":["tulip"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-flower","sort_order":669,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CHERRY BLOSSOM","unified":"1F338","non_qualified":null,"docomo":"E748","au":"E4CA","softbank":"E030","google":"FE040","image":"1f338.png","sheet_x":5,"sheet_y":53,"short_name":"cherry_blossom","short_names":["cherry_blossom"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-flower","sort_order":660,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ROSE","unified":"1F339","non_qualified":null,"docomo":null,"au":"E5BA","softbank":"E032","google":"FE041","image":"1f339.png","sheet_x":5,"sheet_y":54,"short_name":"rose","short_names":["rose"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-flower","sort_order":664,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HIBISCUS","unified":"1F33A","non_qualified":null,"docomo":null,"au":"EA94","softbank":"E303","google":"FE045","image":"1f33a.png","sheet_x":5,"sheet_y":55,"short_name":"hibiscus","short_names":["hibiscus"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-flower","sort_order":666,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SUNFLOWER","unified":"1F33B","non_qualified":null,"docomo":null,"au":"E4E3","softbank":"E305","google":"FE046","image":"1f33b.png","sheet_x":5,"sheet_y":56,"short_name":"sunflower","short_names":["sunflower"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-flower","sort_order":667,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLOSSOM","unified":"1F33C","non_qualified":null,"docomo":null,"au":"EB49","softbank":null,"google":"FE04D","image":"1f33c.png","sheet_x":5,"sheet_y":57,"short_name":"blossom","short_names":["blossom"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-flower","sort_order":668,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"EAR OF MAIZE","unified":"1F33D","non_qualified":null,"docomo":null,"au":"EB36","softbank":null,"google":"FE04A","image":"1f33d.png","sheet_x":5,"sheet_y":58,"short_name":"corn","short_names":["corn"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":710,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"EAR OF RICE","unified":"1F33E","non_qualified":null,"docomo":null,"au":null,"softbank":"E444","google":"FE049","image":"1f33e.png","sheet_x":5,"sheet_y":59,"short_name":"ear_of_rice","short_names":["ear_of_rice"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-other","sort_order":677,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HERB","unified":"1F33F","non_qualified":null,"docomo":"E741","au":"EB82","softbank":null,"google":"FE04E","image":"1f33f.png","sheet_x":5,"sheet_y":60,"short_name":"herb","short_names":["herb"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-other","sort_order":678,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FOUR LEAF CLOVER","unified":"1F340","non_qualified":null,"docomo":"E741","au":"E513","softbank":"E110","google":"FE03C","image":"1f340.png","sheet_x":6,"sheet_y":0,"short_name":"four_leaf_clover","short_names":["four_leaf_clover"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-other","sort_order":680,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MAPLE LEAF","unified":"1F341","non_qualified":null,"docomo":"E747","au":"E4CE","softbank":"E118","google":"FE03F","image":"1f341.png","sheet_x":6,"sheet_y":1,"short_name":"maple_leaf","short_names":["maple_leaf"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-other","sort_order":681,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FALLEN LEAF","unified":"1F342","non_qualified":null,"docomo":"E747","au":"E5CD","softbank":"E119","google":"FE042","image":"1f342.png","sheet_x":6,"sheet_y":2,"short_name":"fallen_leaf","short_names":["fallen_leaf"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-other","sort_order":682,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LEAF FLUTTERING IN WIND","unified":"1F343","non_qualified":null,"docomo":null,"au":"E5CD","softbank":"E447","google":"FE043","image":"1f343.png","sheet_x":6,"sheet_y":3,"short_name":"leaves","short_names":["leaves"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-other","sort_order":683,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MUSHROOM","unified":"1F344","non_qualified":null,"docomo":null,"au":"EB37","softbank":null,"google":"FE04B","image":"1f344.png","sheet_x":6,"sheet_y":4,"short_name":"mushroom","short_names":["mushroom"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-other","sort_order":686,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TOMATO","unified":"1F345","non_qualified":null,"docomo":null,"au":"EABB","softbank":"E349","google":"FE055","image":"1f345.png","sheet_x":6,"sheet_y":5,"short_name":"tomato","short_names":["tomato"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-fruit","sort_order":703,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"AUBERGINE","unified":"1F346","non_qualified":null,"docomo":null,"au":"EABC","softbank":"E34A","google":"FE056","image":"1f346.png","sheet_x":6,"sheet_y":6,"short_name":"eggplant","short_names":["eggplant"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":707,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GRAPES","unified":"1F347","non_qualified":null,"docomo":null,"au":"EB34","softbank":null,"google":"FE059","image":"1f347.png","sheet_x":6,"sheet_y":7,"short_name":"grapes","short_names":["grapes"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-fruit","sort_order":687,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MELON","unified":"1F348","non_qualified":null,"docomo":null,"au":"EB32","softbank":null,"google":"FE057","image":"1f348.png","sheet_x":6,"sheet_y":8,"short_name":"melon","short_names":["melon"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-fruit","sort_order":688,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WATERMELON","unified":"1F349","non_qualified":null,"docomo":null,"au":"E4CD","softbank":"E348","google":"FE054","image":"1f349.png","sheet_x":6,"sheet_y":9,"short_name":"watermelon","short_names":["watermelon"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-fruit","sort_order":689,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TANGERINE","unified":"1F34A","non_qualified":null,"docomo":null,"au":"EABA","softbank":"E346","google":"FE052","image":"1f34a.png","sheet_x":6,"sheet_y":10,"short_name":"tangerine","short_names":["tangerine"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-fruit","sort_order":690,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LEMON","unified":"1F34B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f34b.png","sheet_x":6,"sheet_y":11,"short_name":"lemon","short_names":["lemon"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-fruit","sort_order":691,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BANANA","unified":"1F34C","non_qualified":null,"docomo":"E744","au":"EB35","softbank":null,"google":"FE050","image":"1f34c.png","sheet_x":6,"sheet_y":12,"short_name":"banana","short_names":["banana"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-fruit","sort_order":692,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PINEAPPLE","unified":"1F34D","non_qualified":null,"docomo":null,"au":"EB33","softbank":null,"google":"FE058","image":"1f34d.png","sheet_x":6,"sheet_y":13,"short_name":"pineapple","short_names":["pineapple"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-fruit","sort_order":693,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RED APPLE","unified":"1F34E","non_qualified":null,"docomo":"E745","au":"EAB9","softbank":"E345","google":"FE051","image":"1f34e.png","sheet_x":6,"sheet_y":14,"short_name":"apple","short_names":["apple"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-fruit","sort_order":695,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GREEN APPLE","unified":"1F34F","non_qualified":null,"docomo":"E745","au":"EB5A","softbank":null,"google":"FE05B","image":"1f34f.png","sheet_x":6,"sheet_y":15,"short_name":"green_apple","short_names":["green_apple"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-fruit","sort_order":696,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PEAR","unified":"1F350","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f350.png","sheet_x":6,"sheet_y":16,"short_name":"pear","short_names":["pear"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-fruit","sort_order":697,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PEACH","unified":"1F351","non_qualified":null,"docomo":null,"au":"EB39","softbank":null,"google":"FE05A","image":"1f351.png","sheet_x":6,"sheet_y":17,"short_name":"peach","short_names":["peach"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-fruit","sort_order":698,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CHERRIES","unified":"1F352","non_qualified":null,"docomo":"E742","au":"E4D2","softbank":null,"google":"FE04F","image":"1f352.png","sheet_x":6,"sheet_y":18,"short_name":"cherries","short_names":["cherries"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-fruit","sort_order":699,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"STRAWBERRY","unified":"1F353","non_qualified":null,"docomo":null,"au":"E4D4","softbank":"E347","google":"FE053","image":"1f353.png","sheet_x":6,"sheet_y":19,"short_name":"strawberry","short_names":["strawberry"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-fruit","sort_order":700,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HAMBURGER","unified":"1F354","non_qualified":null,"docomo":"E673","au":"E4D6","softbank":"E120","google":"FE960","image":"1f354.png","sheet_x":6,"sheet_y":20,"short_name":"hamburger","short_names":["hamburger"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":736,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SLICE OF PIZZA","unified":"1F355","non_qualified":null,"docomo":null,"au":"EB3B","softbank":null,"google":"FE975","image":"1f355.png","sheet_x":6,"sheet_y":21,"short_name":"pizza","short_names":["pizza"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":738,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MEAT ON BONE","unified":"1F356","non_qualified":null,"docomo":null,"au":"E4C4","softbank":null,"google":"FE972","image":"1f356.png","sheet_x":6,"sheet_y":22,"short_name":"meat_on_bone","short_names":["meat_on_bone"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":732,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"POULTRY LEG","unified":"1F357","non_qualified":null,"docomo":null,"au":"EB3C","softbank":null,"google":"FE976","image":"1f357.png","sheet_x":6,"sheet_y":23,"short_name":"poultry_leg","short_names":["poultry_leg"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":733,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RICE CRACKER","unified":"1F358","non_qualified":null,"docomo":null,"au":"EAB3","softbank":"E33D","google":"FE969","image":"1f358.png","sheet_x":6,"sheet_y":24,"short_name":"rice_cracker","short_names":["rice_cracker"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-asian","sort_order":758,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RICE BALL","unified":"1F359","non_qualified":null,"docomo":"E749","au":"E4D5","softbank":"E342","google":"FE961","image":"1f359.png","sheet_x":6,"sheet_y":25,"short_name":"rice_ball","short_names":["rice_ball"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-asian","sort_order":759,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"COOKED RICE","unified":"1F35A","non_qualified":null,"docomo":"E74C","au":"EAB4","softbank":"E33E","google":"FE96A","image":"1f35a.png","sheet_x":6,"sheet_y":26,"short_name":"rice","short_names":["rice"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-asian","sort_order":760,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CURRY AND RICE","unified":"1F35B","non_qualified":null,"docomo":null,"au":"EAB6","softbank":"E341","google":"FE96C","image":"1f35b.png","sheet_x":6,"sheet_y":27,"short_name":"curry","short_names":["curry"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-asian","sort_order":761,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"STEAMING BOWL","unified":"1F35C","non_qualified":null,"docomo":"E74C","au":"E5B4","softbank":"E340","google":"FE963","image":"1f35c.png","sheet_x":6,"sheet_y":28,"short_name":"ramen","short_names":["ramen"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-asian","sort_order":762,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SPAGHETTI","unified":"1F35D","non_qualified":null,"docomo":null,"au":"EAB5","softbank":"E33F","google":"FE96B","image":"1f35d.png","sheet_x":6,"sheet_y":29,"short_name":"spaghetti","short_names":["spaghetti"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-asian","sort_order":763,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BREAD","unified":"1F35E","non_qualified":null,"docomo":"E74D","au":"EAAF","softbank":"E339","google":"FE964","image":"1f35e.png","sheet_x":6,"sheet_y":30,"short_name":"bread","short_names":["bread"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":723,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FRENCH FRIES","unified":"1F35F","non_qualified":null,"docomo":null,"au":"EAB1","softbank":"E33B","google":"FE967","image":"1f35f.png","sheet_x":6,"sheet_y":31,"short_name":"fries","short_names":["fries"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":737,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ROASTED SWEET POTATO","unified":"1F360","non_qualified":null,"docomo":null,"au":"EB3A","softbank":null,"google":"FE974","image":"1f360.png","sheet_x":6,"sheet_y":32,"short_name":"sweet_potato","short_names":["sweet_potato"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-asian","sort_order":764,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DANGO","unified":"1F361","non_qualified":null,"docomo":null,"au":"EAB2","softbank":"E33C","google":"FE968","image":"1f361.png","sheet_x":6,"sheet_y":33,"short_name":"dango","short_names":["dango"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-asian","sort_order":770,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ODEN","unified":"1F362","non_qualified":null,"docomo":null,"au":"EAB7","softbank":"E343","google":"FE96D","image":"1f362.png","sheet_x":6,"sheet_y":34,"short_name":"oden","short_names":["oden"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-asian","sort_order":765,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SUSHI","unified":"1F363","non_qualified":null,"docomo":null,"au":"EAB8","softbank":"E344","google":"FE96E","image":"1f363.png","sheet_x":6,"sheet_y":35,"short_name":"sushi","short_names":["sushi"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-asian","sort_order":766,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FRIED SHRIMP","unified":"1F364","non_qualified":null,"docomo":null,"au":"EB70","softbank":null,"google":"FE97F","image":"1f364.png","sheet_x":6,"sheet_y":36,"short_name":"fried_shrimp","short_names":["fried_shrimp"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-asian","sort_order":767,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FISH CAKE WITH SWIRL DESIGN","unified":"1F365","non_qualified":null,"docomo":"E643","au":"E4ED","softbank":null,"google":"FE973","image":"1f365.png","sheet_x":6,"sheet_y":37,"short_name":"fish_cake","short_names":["fish_cake"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-asian","sort_order":768,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SOFT ICE CREAM","unified":"1F366","non_qualified":null,"docomo":null,"au":"EAB0","softbank":"E33A","google":"FE966","image":"1f366.png","sheet_x":6,"sheet_y":38,"short_name":"icecream","short_names":["icecream"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-sweet","sort_order":779,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SHAVED ICE","unified":"1F367","non_qualified":null,"docomo":null,"au":"EAEA","softbank":"E43F","google":"FE971","image":"1f367.png","sheet_x":6,"sheet_y":39,"short_name":"shaved_ice","short_names":["shaved_ice"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-sweet","sort_order":780,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ICE CREAM","unified":"1F368","non_qualified":null,"docomo":null,"au":"EB4A","softbank":null,"google":"FE977","image":"1f368.png","sheet_x":6,"sheet_y":40,"short_name":"ice_cream","short_names":["ice_cream"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-sweet","sort_order":781,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DOUGHNUT","unified":"1F369","non_qualified":null,"docomo":null,"au":"EB4B","softbank":null,"google":"FE978","image":"1f369.png","sheet_x":6,"sheet_y":41,"short_name":"doughnut","short_names":["doughnut"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-sweet","sort_order":782,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"COOKIE","unified":"1F36A","non_qualified":null,"docomo":null,"au":"EB4C","softbank":null,"google":"FE979","image":"1f36a.png","sheet_x":6,"sheet_y":42,"short_name":"cookie","short_names":["cookie"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-sweet","sort_order":783,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CHOCOLATE BAR","unified":"1F36B","non_qualified":null,"docomo":null,"au":"EB4D","softbank":null,"google":"FE97A","image":"1f36b.png","sheet_x":6,"sheet_y":43,"short_name":"chocolate_bar","short_names":["chocolate_bar"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-sweet","sort_order":788,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CANDY","unified":"1F36C","non_qualified":null,"docomo":null,"au":"EB4E","softbank":null,"google":"FE97B","image":"1f36c.png","sheet_x":6,"sheet_y":44,"short_name":"candy","short_names":["candy"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-sweet","sort_order":789,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LOLLIPOP","unified":"1F36D","non_qualified":null,"docomo":null,"au":"EB4F","softbank":null,"google":"FE97C","image":"1f36d.png","sheet_x":6,"sheet_y":45,"short_name":"lollipop","short_names":["lollipop"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-sweet","sort_order":790,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CUSTARD","unified":"1F36E","non_qualified":null,"docomo":null,"au":"EB56","softbank":null,"google":"FE97D","image":"1f36e.png","sheet_x":6,"sheet_y":46,"short_name":"custard","short_names":["custard"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-sweet","sort_order":791,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HONEY POT","unified":"1F36F","non_qualified":null,"docomo":null,"au":"EB59","softbank":null,"google":"FE97E","image":"1f36f.png","sheet_x":6,"sheet_y":47,"short_name":"honey_pot","short_names":["honey_pot"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-sweet","sort_order":792,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SHORTCAKE","unified":"1F370","non_qualified":null,"docomo":"E74A","au":"E4D0","softbank":"E046","google":"FE962","image":"1f370.png","sheet_x":6,"sheet_y":48,"short_name":"cake","short_names":["cake"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-sweet","sort_order":785,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BENTO BOX","unified":"1F371","non_qualified":null,"docomo":null,"au":"EABD","softbank":"E34C","google":"FE96F","image":"1f371.png","sheet_x":6,"sheet_y":49,"short_name":"bento","short_names":["bento"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-asian","sort_order":757,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"POT OF FOOD","unified":"1F372","non_qualified":null,"docomo":null,"au":"EABE","softbank":"E34D","google":"FE970","image":"1f372.png","sheet_x":6,"sheet_y":50,"short_name":"stew","short_names":["stew"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":749,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"COOKING","unified":"1F373","non_qualified":null,"docomo":null,"au":"E4D1","softbank":"E147","google":"FE965","image":"1f373.png","sheet_x":6,"sheet_y":51,"short_name":"fried_egg","short_names":["fried_egg","cooking"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":747,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FORK AND KNIFE","unified":"1F374","non_qualified":null,"docomo":"E66F","au":"E4AC","softbank":"E043","google":"FE980","image":"1f374.png","sheet_x":6,"sheet_y":52,"short_name":"fork_and_knife","short_names":["fork_and_knife"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"dishware","sort_order":815,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TEACUP WITHOUT HANDLE","unified":"1F375","non_qualified":null,"docomo":"E71E","au":"EAAE","softbank":"E338","google":"FE984","image":"1f375.png","sheet_x":6,"sheet_y":53,"short_name":"tea","short_names":["tea"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":797,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SAKE BOTTLE AND CUP","unified":"1F376","non_qualified":null,"docomo":"E74B","au":"EA97","softbank":"E30B","google":"FE985","image":"1f376.png","sheet_x":6,"sheet_y":54,"short_name":"sake","short_names":["sake"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":798,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WINE GLASS","unified":"1F377","non_qualified":null,"docomo":"E756","au":"E4C1","softbank":null,"google":"FE986","image":"1f377.png","sheet_x":6,"sheet_y":55,"short_name":"wine_glass","short_names":["wine_glass"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":800,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"COCKTAIL GLASS","unified":"1F378","non_qualified":null,"docomo":"E671","au":"E4C2","softbank":"E044","google":"FE982","image":"1f378.png","sheet_x":6,"sheet_y":56,"short_name":"cocktail","short_names":["cocktail"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":801,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TROPICAL DRINK","unified":"1F379","non_qualified":null,"docomo":"E671","au":"EB3E","softbank":null,"google":"FE988","image":"1f379.png","sheet_x":6,"sheet_y":57,"short_name":"tropical_drink","short_names":["tropical_drink"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":802,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BEER MUG","unified":"1F37A","non_qualified":null,"docomo":"E672","au":"E4C3","softbank":"E047","google":"FE983","image":"1f37a.png","sheet_x":6,"sheet_y":58,"short_name":"beer","short_names":["beer"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":803,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLINKING BEER MUGS","unified":"1F37B","non_qualified":null,"docomo":"E672","au":"EA98","softbank":"E30C","google":"FE987","image":"1f37b.png","sheet_x":6,"sheet_y":59,"short_name":"beers","short_names":["beers"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":804,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BABY BOTTLE","unified":"1F37C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f37c.png","sheet_x":6,"sheet_y":60,"short_name":"baby_bottle","short_names":["baby_bottle"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":793,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FORK AND KNIFE WITH PLATE","unified":"1F37D-FE0F","non_qualified":"1F37D","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f37d-fe0f.png","sheet_x":7,"sheet_y":0,"short_name":"knife_fork_plate","short_names":["knife_fork_plate"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"dishware","sort_order":814,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BOTTLE WITH POPPING CORK","unified":"1F37E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f37e.png","sheet_x":7,"sheet_y":1,"short_name":"champagne","short_names":["champagne"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":799,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"POPCORN","unified":"1F37F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f37f.png","sheet_x":7,"sheet_y":2,"short_name":"popcorn","short_names":["popcorn"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":753,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RIBBON","unified":"1F380","non_qualified":null,"docomo":"E684","au":"E59F","softbank":"E314","google":"FE50F","image":"1f380.png","sheet_x":7,"sheet_y":3,"short_name":"ribbon","short_names":["ribbon"],"text":null,"texts":null,"category":"Activities","subcategory":"event","sort_order":1054,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WRAPPED PRESENT","unified":"1F381","non_qualified":null,"docomo":"E685","au":"E4CF","softbank":"E112","google":"FE510","image":"1f381.png","sheet_x":7,"sheet_y":4,"short_name":"gift","short_names":["gift"],"text":null,"texts":null,"category":"Activities","subcategory":"event","sort_order":1055,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BIRTHDAY CAKE","unified":"1F382","non_qualified":null,"docomo":"E686","au":"E5A0","softbank":"E34B","google":"FE511","image":"1f382.png","sheet_x":7,"sheet_y":5,"short_name":"birthday","short_names":["birthday"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-sweet","sort_order":784,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"JACK-O-LANTERN","unified":"1F383","non_qualified":null,"docomo":null,"au":"EAEE","softbank":"E445","google":"FE51F","image":"1f383.png","sheet_x":7,"sheet_y":6,"short_name":"jack_o_lantern","short_names":["jack_o_lantern"],"text":null,"texts":null,"category":"Activities","subcategory":"event","sort_order":1038,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CHRISTMAS TREE","unified":"1F384","non_qualified":null,"docomo":"E6A4","au":"E4C9","softbank":"E033","google":"FE512","image":"1f384.png","sheet_x":7,"sheet_y":7,"short_name":"christmas_tree","short_names":["christmas_tree"],"text":null,"texts":null,"category":"Activities","subcategory":"event","sort_order":1039,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FATHER CHRISTMAS","unified":"1F385","non_qualified":null,"docomo":null,"au":"EAF0","softbank":"E448","google":"FE513","image":"1f385.png","sheet_x":7,"sheet_y":8,"short_name":"santa","short_names":["santa"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":369,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F385-1F3FB","non_qualified":null,"image":"1f385-1f3fb.png","sheet_x":7,"sheet_y":9,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F385-1F3FC","non_qualified":null,"image":"1f385-1f3fc.png","sheet_x":7,"sheet_y":10,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F385-1F3FD","non_qualified":null,"image":"1f385-1f3fd.png","sheet_x":7,"sheet_y":11,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F385-1F3FE","non_qualified":null,"image":"1f385-1f3fe.png","sheet_x":7,"sheet_y":12,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F385-1F3FF","non_qualified":null,"image":"1f385-1f3ff.png","sheet_x":7,"sheet_y":13,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"FIREWORKS","unified":"1F386","non_qualified":null,"docomo":null,"au":"E5CC","softbank":"E117","google":"FE515","image":"1f386.png","sheet_x":7,"sheet_y":14,"short_name":"fireworks","short_names":["fireworks"],"text":null,"texts":null,"category":"Activities","subcategory":"event","sort_order":1040,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FIREWORK SPARKLER","unified":"1F387","non_qualified":null,"docomo":null,"au":"EAEB","softbank":"E440","google":"FE51D","image":"1f387.png","sheet_x":7,"sheet_y":15,"short_name":"sparkler","short_names":["sparkler"],"text":null,"texts":null,"category":"Activities","subcategory":"event","sort_order":1041,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BALLOON","unified":"1F388","non_qualified":null,"docomo":null,"au":"EA9B","softbank":"E310","google":"FE516","image":"1f388.png","sheet_x":7,"sheet_y":16,"short_name":"balloon","short_names":["balloon"],"text":null,"texts":null,"category":"Activities","subcategory":"event","sort_order":1044,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PARTY POPPER","unified":"1F389","non_qualified":null,"docomo":null,"au":"EA9C","softbank":"E312","google":"FE517","image":"1f389.png","sheet_x":7,"sheet_y":17,"short_name":"tada","short_names":["tada"],"text":null,"texts":null,"category":"Activities","subcategory":"event","sort_order":1045,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CONFETTI BALL","unified":"1F38A","non_qualified":null,"docomo":null,"au":"E46F","softbank":null,"google":"FE520","image":"1f38a.png","sheet_x":7,"sheet_y":18,"short_name":"confetti_ball","short_names":["confetti_ball"],"text":null,"texts":null,"category":"Activities","subcategory":"event","sort_order":1046,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TANABATA TREE","unified":"1F38B","non_qualified":null,"docomo":null,"au":"EB3D","softbank":null,"google":"FE521","image":"1f38b.png","sheet_x":7,"sheet_y":19,"short_name":"tanabata_tree","short_names":["tanabata_tree"],"text":null,"texts":null,"category":"Activities","subcategory":"event","sort_order":1047,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CROSSED FLAGS","unified":"1F38C","non_qualified":null,"docomo":null,"au":"E5D9","softbank":"E143","google":"FE514","image":"1f38c.png","sheet_x":7,"sheet_y":20,"short_name":"crossed_flags","short_names":["crossed_flags"],"text":null,"texts":null,"category":"Flags","subcategory":"flag","sort_order":1609,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PINE DECORATION","unified":"1F38D","non_qualified":null,"docomo":null,"au":"EAE3","softbank":"E436","google":"FE518","image":"1f38d.png","sheet_x":7,"sheet_y":21,"short_name":"bamboo","short_names":["bamboo"],"text":null,"texts":null,"category":"Activities","subcategory":"event","sort_order":1048,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"JAPANESE DOLLS","unified":"1F38E","non_qualified":null,"docomo":null,"au":"EAE4","softbank":"E438","google":"FE519","image":"1f38e.png","sheet_x":7,"sheet_y":22,"short_name":"dolls","short_names":["dolls"],"text":null,"texts":null,"category":"Activities","subcategory":"event","sort_order":1049,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CARP STREAMER","unified":"1F38F","non_qualified":null,"docomo":null,"au":"EAE7","softbank":"E43B","google":"FE51C","image":"1f38f.png","sheet_x":7,"sheet_y":23,"short_name":"flags","short_names":["flags"],"text":null,"texts":null,"category":"Activities","subcategory":"event","sort_order":1050,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WIND CHIME","unified":"1F390","non_qualified":null,"docomo":null,"au":"EAED","softbank":"E442","google":"FE51E","image":"1f390.png","sheet_x":7,"sheet_y":24,"short_name":"wind_chime","short_names":["wind_chime"],"text":null,"texts":null,"category":"Activities","subcategory":"event","sort_order":1051,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MOON VIEWING CEREMONY","unified":"1F391","non_qualified":null,"docomo":null,"au":"EAEF","softbank":"E446","google":"FE017","image":"1f391.png","sheet_x":7,"sheet_y":25,"short_name":"rice_scene","short_names":["rice_scene"],"text":null,"texts":null,"category":"Activities","subcategory":"event","sort_order":1052,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SCHOOL SATCHEL","unified":"1F392","non_qualified":null,"docomo":null,"au":"EAE6","softbank":"E43A","google":"FE51B","image":"1f392.png","sheet_x":7,"sheet_y":26,"short_name":"school_satchel","short_names":["school_satchel"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1148,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GRADUATION CAP","unified":"1F393","non_qualified":null,"docomo":null,"au":"EAE5","softbank":"E439","google":"FE51A","image":"1f393.png","sheet_x":7,"sheet_y":27,"short_name":"mortar_board","short_names":["mortar_board"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1162,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MILITARY MEDAL","unified":"1F396-FE0F","non_qualified":"1F396","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f396-fe0f.png","sheet_x":7,"sheet_y":28,"short_name":"medal","short_names":["medal"],"text":null,"texts":null,"category":"Activities","subcategory":"award-medal","sort_order":1059,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"REMINDER RIBBON","unified":"1F397-FE0F","non_qualified":"1F397","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f397-fe0f.png","sheet_x":7,"sheet_y":29,"short_name":"reminder_ribbon","short_names":["reminder_ribbon"],"text":null,"texts":null,"category":"Activities","subcategory":"event","sort_order":1056,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"STUDIO MICROPHONE","unified":"1F399-FE0F","non_qualified":"1F399","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f399-fe0f.png","sheet_x":7,"sheet_y":30,"short_name":"studio_microphone","short_names":["studio_microphone"],"text":null,"texts":null,"category":"Objects","subcategory":"music","sort_order":1182,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LEVEL SLIDER","unified":"1F39A-FE0F","non_qualified":"1F39A","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f39a-fe0f.png","sheet_x":7,"sheet_y":31,"short_name":"level_slider","short_names":["level_slider"],"text":null,"texts":null,"category":"Objects","subcategory":"music","sort_order":1183,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CONTROL KNOBS","unified":"1F39B-FE0F","non_qualified":"1F39B","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f39b-fe0f.png","sheet_x":7,"sheet_y":32,"short_name":"control_knobs","short_names":["control_knobs"],"text":null,"texts":null,"category":"Objects","subcategory":"music","sort_order":1184,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FILM FRAMES","unified":"1F39E-FE0F","non_qualified":"1F39E","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f39e-fe0f.png","sheet_x":7,"sheet_y":33,"short_name":"film_frames","short_names":["film_frames"],"text":null,"texts":null,"category":"Objects","subcategory":"light & video","sort_order":1220,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ADMISSION TICKETS","unified":"1F39F-FE0F","non_qualified":"1F39F","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f39f-fe0f.png","sheet_x":7,"sheet_y":34,"short_name":"admission_tickets","short_names":["admission_tickets"],"text":null,"texts":null,"category":"Activities","subcategory":"event","sort_order":1057,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CAROUSEL HORSE","unified":"1F3A0","non_qualified":null,"docomo":"E679","au":null,"softbank":null,"google":"FE7FC","image":"1f3a0.png","sheet_x":7,"sheet_y":35,"short_name":"carousel_horse","short_names":["carousel_horse"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-other","sort_order":880,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FERRIS WHEEL","unified":"1F3A1","non_qualified":null,"docomo":null,"au":"E46D","softbank":"E124","google":"FE7FD","image":"1f3a1.png","sheet_x":7,"sheet_y":36,"short_name":"ferris_wheel","short_names":["ferris_wheel"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-other","sort_order":882,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ROLLER COASTER","unified":"1F3A2","non_qualified":null,"docomo":null,"au":"EAE2","softbank":"E433","google":"FE7FE","image":"1f3a2.png","sheet_x":7,"sheet_y":37,"short_name":"roller_coaster","short_names":["roller_coaster"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-other","sort_order":883,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FISHING POLE AND FISH","unified":"1F3A3","non_qualified":null,"docomo":"E751","au":"EB42","softbank":null,"google":"FE7FF","image":"1f3a3.png","sheet_x":7,"sheet_y":38,"short_name":"fishing_pole_and_fish","short_names":["fishing_pole_and_fish"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1086,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MICROPHONE","unified":"1F3A4","non_qualified":null,"docomo":"E676","au":"E503","softbank":"E03C","google":"FE800","image":"1f3a4.png","sheet_x":7,"sheet_y":39,"short_name":"microphone","short_names":["microphone"],"text":null,"texts":null,"category":"Objects","subcategory":"music","sort_order":1185,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MOVIE CAMERA","unified":"1F3A5","non_qualified":null,"docomo":"E677","au":"E517","softbank":"E03D","google":"FE801","image":"1f3a5.png","sheet_x":7,"sheet_y":40,"short_name":"movie_camera","short_names":["movie_camera"],"text":null,"texts":null,"category":"Objects","subcategory":"light & video","sort_order":1219,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CINEMA","unified":"1F3A6","non_qualified":null,"docomo":"E677","au":"E517","softbank":"E507","google":"FE802","image":"1f3a6.png","sheet_x":7,"sheet_y":41,"short_name":"cinema","short_names":["cinema"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1475,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HEADPHONE","unified":"1F3A7","non_qualified":null,"docomo":"E67A","au":"E508","softbank":"E30A","google":"FE803","image":"1f3a7.png","sheet_x":7,"sheet_y":42,"short_name":"headphones","short_names":["headphones"],"text":null,"texts":null,"category":"Objects","subcategory":"music","sort_order":1186,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ARTIST PALETTE","unified":"1F3A8","non_qualified":null,"docomo":"E67B","au":"E59C","softbank":"E502","google":"FE804","image":"1f3a8.png","sheet_x":7,"sheet_y":43,"short_name":"art","short_names":["art"],"text":null,"texts":null,"category":"Activities","subcategory":"arts & crafts","sort_order":1118,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TOP HAT","unified":"1F3A9","non_qualified":null,"docomo":"E67C","au":"EAF5","softbank":"E503","google":"FE805","image":"1f3a9.png","sheet_x":7,"sheet_y":44,"short_name":"tophat","short_names":["tophat"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1161,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CIRCUS TENT","unified":"1F3AA","non_qualified":null,"docomo":"E67D","au":"E59E","softbank":null,"google":"FE806","image":"1f3aa.png","sheet_x":7,"sheet_y":45,"short_name":"circus_tent","short_names":["circus_tent"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-other","sort_order":885,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TICKET","unified":"1F3AB","non_qualified":null,"docomo":"E67E","au":"E49E","softbank":"E125","google":"FE807","image":"1f3ab.png","sheet_x":7,"sheet_y":46,"short_name":"ticket","short_names":["ticket"],"text":null,"texts":null,"category":"Activities","subcategory":"event","sort_order":1058,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLAPPER BOARD","unified":"1F3AC","non_qualified":null,"docomo":"E6AC","au":"E4BE","softbank":"E324","google":"FE808","image":"1f3ac.png","sheet_x":7,"sheet_y":47,"short_name":"clapper","short_names":["clapper"],"text":null,"texts":null,"category":"Objects","subcategory":"light & video","sort_order":1222,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PERFORMING ARTS","unified":"1F3AD","non_qualified":null,"docomo":null,"au":"E59D","softbank":null,"google":"FE809","image":"1f3ad.png","sheet_x":7,"sheet_y":48,"short_name":"performing_arts","short_names":["performing_arts"],"text":null,"texts":null,"category":"Activities","subcategory":"arts & crafts","sort_order":1116,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"VIDEO GAME","unified":"1F3AE","non_qualified":null,"docomo":"E68B","au":"E4C6","softbank":null,"google":"FE80A","image":"1f3ae.png","sheet_x":7,"sheet_y":49,"short_name":"video_game","short_names":["video_game"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1099,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"DIRECT HIT","unified":"1F3AF","non_qualified":null,"docomo":null,"au":"E4C5","softbank":"E130","google":"FE80C","image":"1f3af.png","sheet_x":7,"sheet_y":50,"short_name":"dart","short_names":["dart"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1092,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SLOT MACHINE","unified":"1F3B0","non_qualified":null,"docomo":null,"au":"E46E","softbank":"E133","google":"FE80D","image":"1f3b0.png","sheet_x":7,"sheet_y":51,"short_name":"slot_machine","short_names":["slot_machine"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1101,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BILLIARDS","unified":"1F3B1","non_qualified":null,"docomo":null,"au":"EADD","softbank":"E42C","google":"FE80E","image":"1f3b1.png","sheet_x":7,"sheet_y":52,"short_name":"8ball","short_names":["8ball"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1096,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GAME DIE","unified":"1F3B2","non_qualified":null,"docomo":null,"au":"E4C8","softbank":null,"google":"FE80F","image":"1f3b2.png","sheet_x":7,"sheet_y":53,"short_name":"game_die","short_names":["game_die"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1102,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BOWLING","unified":"1F3B3","non_qualified":null,"docomo":null,"au":"EB43","softbank":null,"google":"FE810","image":"1f3b3.png","sheet_x":7,"sheet_y":54,"short_name":"bowling","short_names":["bowling"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1074,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FLOWER PLAYING CARDS","unified":"1F3B4","non_qualified":null,"docomo":null,"au":"EB6E","softbank":null,"google":"FE811","image":"1f3b4.png","sheet_x":7,"sheet_y":55,"short_name":"flower_playing_cards","short_names":["flower_playing_cards"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1115,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MUSICAL NOTE","unified":"1F3B5","non_qualified":null,"docomo":"E6F6","au":"E5BE","softbank":"E03E","google":"FE813","image":"1f3b5.png","sheet_x":7,"sheet_y":56,"short_name":"musical_note","short_names":["musical_note"],"text":null,"texts":null,"category":"Objects","subcategory":"music","sort_order":1180,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MULTIPLE MUSICAL NOTES","unified":"1F3B6","non_qualified":null,"docomo":"E6FF","au":"E505","softbank":"E326","google":"FE814","image":"1f3b6.png","sheet_x":7,"sheet_y":57,"short_name":"notes","short_names":["notes"],"text":null,"texts":null,"category":"Objects","subcategory":"music","sort_order":1181,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SAXOPHONE","unified":"1F3B7","non_qualified":null,"docomo":null,"au":null,"softbank":"E040","google":"FE815","image":"1f3b7.png","sheet_x":7,"sheet_y":58,"short_name":"saxophone","short_names":["saxophone"],"text":null,"texts":null,"category":"Objects","subcategory":"musical-instrument","sort_order":1188,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GUITAR","unified":"1F3B8","non_qualified":null,"docomo":null,"au":"E506","softbank":"E041","google":"FE816","image":"1f3b8.png","sheet_x":7,"sheet_y":59,"short_name":"guitar","short_names":["guitar"],"text":null,"texts":null,"category":"Objects","subcategory":"musical-instrument","sort_order":1190,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MUSICAL KEYBOARD","unified":"1F3B9","non_qualified":null,"docomo":null,"au":"EB40","softbank":null,"google":"FE817","image":"1f3b9.png","sheet_x":7,"sheet_y":60,"short_name":"musical_keyboard","short_names":["musical_keyboard"],"text":null,"texts":null,"category":"Objects","subcategory":"musical-instrument","sort_order":1191,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TRUMPET","unified":"1F3BA","non_qualified":null,"docomo":null,"au":"EADC","softbank":"E042","google":"FE818","image":"1f3ba.png","sheet_x":8,"sheet_y":0,"short_name":"trumpet","short_names":["trumpet"],"text":null,"texts":null,"category":"Objects","subcategory":"musical-instrument","sort_order":1192,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"VIOLIN","unified":"1F3BB","non_qualified":null,"docomo":null,"au":"E507","softbank":null,"google":"FE819","image":"1f3bb.png","sheet_x":8,"sheet_y":1,"short_name":"violin","short_names":["violin"],"text":null,"texts":null,"category":"Objects","subcategory":"musical-instrument","sort_order":1193,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MUSICAL SCORE","unified":"1F3BC","non_qualified":null,"docomo":"E6FF","au":"EACC","softbank":null,"google":"FE81A","image":"1f3bc.png","sheet_x":8,"sheet_y":2,"short_name":"musical_score","short_names":["musical_score"],"text":null,"texts":null,"category":"Objects","subcategory":"music","sort_order":1179,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RUNNING SHIRT WITH SASH","unified":"1F3BD","non_qualified":null,"docomo":"E652","au":null,"softbank":null,"google":"FE7D0","image":"1f3bd.png","sheet_x":8,"sheet_y":3,"short_name":"running_shirt_with_sash","short_names":["running_shirt_with_sash"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1088,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TENNIS RACQUET AND BALL","unified":"1F3BE","non_qualified":null,"docomo":"E655","au":"E4B7","softbank":"E015","google":"FE7D3","image":"1f3be.png","sheet_x":8,"sheet_y":4,"short_name":"tennis","short_names":["tennis"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1072,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SKI AND SKI BOOT","unified":"1F3BF","non_qualified":null,"docomo":"E657","au":"EAAC","softbank":"E013","google":"FE7D5","image":"1f3bf.png","sheet_x":8,"sheet_y":5,"short_name":"ski","short_names":["ski"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1089,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BASKETBALL AND HOOP","unified":"1F3C0","non_qualified":null,"docomo":"E658","au":"E59A","softbank":"E42A","google":"FE7D6","image":"1f3c0.png","sheet_x":8,"sheet_y":6,"short_name":"basketball","short_names":["basketball"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1068,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CHEQUERED FLAG","unified":"1F3C1","non_qualified":null,"docomo":"E659","au":"E4B9","softbank":"E132","google":"FE7D7","image":"1f3c1.png","sheet_x":8,"sheet_y":7,"short_name":"checkered_flag","short_names":["checkered_flag"],"text":null,"texts":null,"category":"Flags","subcategory":"flag","sort_order":1607,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SNOWBOARDER","unified":"1F3C2","non_qualified":null,"docomo":"E712","au":"E4B8","softbank":null,"google":"FE7D8","image":"1f3c2.png","sheet_x":8,"sheet_y":8,"short_name":"snowboarder","short_names":["snowboarder"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":442,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F3C2-1F3FB","non_qualified":null,"image":"1f3c2-1f3fb.png","sheet_x":8,"sheet_y":9,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F3C2-1F3FC","non_qualified":null,"image":"1f3c2-1f3fc.png","sheet_x":8,"sheet_y":10,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F3C2-1F3FD","non_qualified":null,"image":"1f3c2-1f3fd.png","sheet_x":8,"sheet_y":11,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F3C2-1F3FE","non_qualified":null,"image":"1f3c2-1f3fe.png","sheet_x":8,"sheet_y":12,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F3C2-1F3FF","non_qualified":null,"image":"1f3c2-1f3ff.png","sheet_x":8,"sheet_y":13,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN RUNNING","unified":"1F3C3-200D-2640-FE0F","non_qualified":"1F3C3-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3c3-200d-2640-fe0f.png","sheet_x":8,"sheet_y":14,"short_name":"woman-running","short_names":["woman-running"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":426,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F3C3-1F3FB-200D-2640-FE0F","non_qualified":"1F3C3-1F3FB-200D-2640","image":"1f3c3-1f3fb-200d-2640-fe0f.png","sheet_x":8,"sheet_y":15,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F3C3-1F3FC-200D-2640-FE0F","non_qualified":"1F3C3-1F3FC-200D-2640","image":"1f3c3-1f3fc-200d-2640-fe0f.png","sheet_x":8,"sheet_y":16,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F3C3-1F3FD-200D-2640-FE0F","non_qualified":"1F3C3-1F3FD-200D-2640","image":"1f3c3-1f3fd-200d-2640-fe0f.png","sheet_x":8,"sheet_y":17,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F3C3-1F3FE-200D-2640-FE0F","non_qualified":"1F3C3-1F3FE-200D-2640","image":"1f3c3-1f3fe-200d-2640-fe0f.png","sheet_x":8,"sheet_y":18,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F3C3-1F3FF-200D-2640-FE0F","non_qualified":"1F3C3-1F3FF-200D-2640","image":"1f3c3-1f3ff-200d-2640-fe0f.png","sheet_x":8,"sheet_y":19,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN RUNNING","unified":"1F3C3-200D-2642-FE0F","non_qualified":"1F3C3-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3c3-200d-2642-fe0f.png","sheet_x":8,"sheet_y":20,"short_name":"man-running","short_names":["man-running"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":425,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F3C3-1F3FB-200D-2642-FE0F","non_qualified":"1F3C3-1F3FB-200D-2642","image":"1f3c3-1f3fb-200d-2642-fe0f.png","sheet_x":8,"sheet_y":21,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F3C3-1F3FC-200D-2642-FE0F","non_qualified":"1F3C3-1F3FC-200D-2642","image":"1f3c3-1f3fc-200d-2642-fe0f.png","sheet_x":8,"sheet_y":22,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F3C3-1F3FD-200D-2642-FE0F","non_qualified":"1F3C3-1F3FD-200D-2642","image":"1f3c3-1f3fd-200d-2642-fe0f.png","sheet_x":8,"sheet_y":23,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F3C3-1F3FE-200D-2642-FE0F","non_qualified":"1F3C3-1F3FE-200D-2642","image":"1f3c3-1f3fe-200d-2642-fe0f.png","sheet_x":8,"sheet_y":24,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F3C3-1F3FF-200D-2642-FE0F","non_qualified":"1F3C3-1F3FF-200D-2642","image":"1f3c3-1f3ff-200d-2642-fe0f.png","sheet_x":8,"sheet_y":25,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoletes":"1F3C3"},{"name":"RUNNER","unified":"1F3C3","non_qualified":null,"docomo":"E733","au":"E46B","softbank":"E115","google":"FE7D9","image":"1f3c3.png","sheet_x":8,"sheet_y":26,"short_name":"runner","short_names":["runner","running"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":424,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F3C3-1F3FB","non_qualified":null,"image":"1f3c3-1f3fb.png","sheet_x":8,"sheet_y":27,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F3C3-1F3FC","non_qualified":null,"image":"1f3c3-1f3fc.png","sheet_x":8,"sheet_y":28,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F3C3-1F3FD","non_qualified":null,"image":"1f3c3-1f3fd.png","sheet_x":8,"sheet_y":29,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F3C3-1F3FE","non_qualified":null,"image":"1f3c3-1f3fe.png","sheet_x":8,"sheet_y":30,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F3C3-1F3FF","non_qualified":null,"image":"1f3c3-1f3ff.png","sheet_x":8,"sheet_y":31,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoleted_by":"1F3C3-200D-2642-FE0F"},{"name":"WOMAN SURFING","unified":"1F3C4-200D-2640-FE0F","non_qualified":"1F3C4-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3c4-200d-2640-fe0f.png","sheet_x":8,"sheet_y":32,"short_name":"woman-surfing","short_names":["woman-surfing"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":448,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F3C4-1F3FB-200D-2640-FE0F","non_qualified":"1F3C4-1F3FB-200D-2640","image":"1f3c4-1f3fb-200d-2640-fe0f.png","sheet_x":8,"sheet_y":33,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F3C4-1F3FC-200D-2640-FE0F","non_qualified":"1F3C4-1F3FC-200D-2640","image":"1f3c4-1f3fc-200d-2640-fe0f.png","sheet_x":8,"sheet_y":34,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F3C4-1F3FD-200D-2640-FE0F","non_qualified":"1F3C4-1F3FD-200D-2640","image":"1f3c4-1f3fd-200d-2640-fe0f.png","sheet_x":8,"sheet_y":35,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F3C4-1F3FE-200D-2640-FE0F","non_qualified":"1F3C4-1F3FE-200D-2640","image":"1f3c4-1f3fe-200d-2640-fe0f.png","sheet_x":8,"sheet_y":36,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F3C4-1F3FF-200D-2640-FE0F","non_qualified":"1F3C4-1F3FF-200D-2640","image":"1f3c4-1f3ff-200d-2640-fe0f.png","sheet_x":8,"sheet_y":37,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN SURFING","unified":"1F3C4-200D-2642-FE0F","non_qualified":"1F3C4-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3c4-200d-2642-fe0f.png","sheet_x":8,"sheet_y":38,"short_name":"man-surfing","short_names":["man-surfing"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":447,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F3C4-1F3FB-200D-2642-FE0F","non_qualified":"1F3C4-1F3FB-200D-2642","image":"1f3c4-1f3fb-200d-2642-fe0f.png","sheet_x":8,"sheet_y":39,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F3C4-1F3FC-200D-2642-FE0F","non_qualified":"1F3C4-1F3FC-200D-2642","image":"1f3c4-1f3fc-200d-2642-fe0f.png","sheet_x":8,"sheet_y":40,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F3C4-1F3FD-200D-2642-FE0F","non_qualified":"1F3C4-1F3FD-200D-2642","image":"1f3c4-1f3fd-200d-2642-fe0f.png","sheet_x":8,"sheet_y":41,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F3C4-1F3FE-200D-2642-FE0F","non_qualified":"1F3C4-1F3FE-200D-2642","image":"1f3c4-1f3fe-200d-2642-fe0f.png","sheet_x":8,"sheet_y":42,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F3C4-1F3FF-200D-2642-FE0F","non_qualified":"1F3C4-1F3FF-200D-2642","image":"1f3c4-1f3ff-200d-2642-fe0f.png","sheet_x":8,"sheet_y":43,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoletes":"1F3C4"},{"name":"SURFER","unified":"1F3C4","non_qualified":null,"docomo":"E712","au":"EB41","softbank":"E017","google":"FE7DA","image":"1f3c4.png","sheet_x":8,"sheet_y":44,"short_name":"surfer","short_names":["surfer"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":446,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F3C4-1F3FB","non_qualified":null,"image":"1f3c4-1f3fb.png","sheet_x":8,"sheet_y":45,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F3C4-1F3FC","non_qualified":null,"image":"1f3c4-1f3fc.png","sheet_x":8,"sheet_y":46,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F3C4-1F3FD","non_qualified":null,"image":"1f3c4-1f3fd.png","sheet_x":8,"sheet_y":47,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F3C4-1F3FE","non_qualified":null,"image":"1f3c4-1f3fe.png","sheet_x":8,"sheet_y":48,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F3C4-1F3FF","non_qualified":null,"image":"1f3c4-1f3ff.png","sheet_x":8,"sheet_y":49,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoleted_by":"1F3C4-200D-2642-FE0F"},{"name":"SPORTS MEDAL","unified":"1F3C5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3c5.png","sheet_x":8,"sheet_y":50,"short_name":"sports_medal","short_names":["sports_medal"],"text":null,"texts":null,"category":"Activities","subcategory":"award-medal","sort_order":1061,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TROPHY","unified":"1F3C6","non_qualified":null,"docomo":null,"au":"E5D3","softbank":"E131","google":"FE7DB","image":"1f3c6.png","sheet_x":8,"sheet_y":51,"short_name":"trophy","short_names":["trophy"],"text":null,"texts":null,"category":"Activities","subcategory":"award-medal","sort_order":1060,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HORSE RACING","unified":"1F3C7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3c7.png","sheet_x":8,"sheet_y":52,"short_name":"horse_racing","short_names":["horse_racing"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":440,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F3C7-1F3FB","non_qualified":null,"image":"1f3c7-1f3fb.png","sheet_x":8,"sheet_y":53,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F3C7-1F3FC","non_qualified":null,"image":"1f3c7-1f3fc.png","sheet_x":8,"sheet_y":54,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F3C7-1F3FD","non_qualified":null,"image":"1f3c7-1f3fd.png","sheet_x":8,"sheet_y":55,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F3C7-1F3FE","non_qualified":null,"image":"1f3c7-1f3fe.png","sheet_x":8,"sheet_y":56,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F3C7-1F3FF","non_qualified":null,"image":"1f3c7-1f3ff.png","sheet_x":8,"sheet_y":57,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"AMERICAN FOOTBALL","unified":"1F3C8","non_qualified":null,"docomo":null,"au":"E4BB","softbank":"E42B","google":"FE7DD","image":"1f3c8.png","sheet_x":8,"sheet_y":58,"short_name":"football","short_names":["football"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1070,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RUGBY FOOTBALL","unified":"1F3C9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3c9.png","sheet_x":8,"sheet_y":59,"short_name":"rugby_football","short_names":["rugby_football"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1071,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WOMAN SWIMMING","unified":"1F3CA-200D-2640-FE0F","non_qualified":"1F3CA-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3ca-200d-2640-fe0f.png","sheet_x":8,"sheet_y":60,"short_name":"woman-swimming","short_names":["woman-swimming"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":454,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F3CA-1F3FB-200D-2640-FE0F","non_qualified":"1F3CA-1F3FB-200D-2640","image":"1f3ca-1f3fb-200d-2640-fe0f.png","sheet_x":9,"sheet_y":0,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F3CA-1F3FC-200D-2640-FE0F","non_qualified":"1F3CA-1F3FC-200D-2640","image":"1f3ca-1f3fc-200d-2640-fe0f.png","sheet_x":9,"sheet_y":1,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F3CA-1F3FD-200D-2640-FE0F","non_qualified":"1F3CA-1F3FD-200D-2640","image":"1f3ca-1f3fd-200d-2640-fe0f.png","sheet_x":9,"sheet_y":2,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F3CA-1F3FE-200D-2640-FE0F","non_qualified":"1F3CA-1F3FE-200D-2640","image":"1f3ca-1f3fe-200d-2640-fe0f.png","sheet_x":9,"sheet_y":3,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F3CA-1F3FF-200D-2640-FE0F","non_qualified":"1F3CA-1F3FF-200D-2640","image":"1f3ca-1f3ff-200d-2640-fe0f.png","sheet_x":9,"sheet_y":4,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN SWIMMING","unified":"1F3CA-200D-2642-FE0F","non_qualified":"1F3CA-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3ca-200d-2642-fe0f.png","sheet_x":9,"sheet_y":5,"short_name":"man-swimming","short_names":["man-swimming"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":453,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F3CA-1F3FB-200D-2642-FE0F","non_qualified":"1F3CA-1F3FB-200D-2642","image":"1f3ca-1f3fb-200d-2642-fe0f.png","sheet_x":9,"sheet_y":6,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F3CA-1F3FC-200D-2642-FE0F","non_qualified":"1F3CA-1F3FC-200D-2642","image":"1f3ca-1f3fc-200d-2642-fe0f.png","sheet_x":9,"sheet_y":7,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F3CA-1F3FD-200D-2642-FE0F","non_qualified":"1F3CA-1F3FD-200D-2642","image":"1f3ca-1f3fd-200d-2642-fe0f.png","sheet_x":9,"sheet_y":8,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F3CA-1F3FE-200D-2642-FE0F","non_qualified":"1F3CA-1F3FE-200D-2642","image":"1f3ca-1f3fe-200d-2642-fe0f.png","sheet_x":9,"sheet_y":9,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F3CA-1F3FF-200D-2642-FE0F","non_qualified":"1F3CA-1F3FF-200D-2642","image":"1f3ca-1f3ff-200d-2642-fe0f.png","sheet_x":9,"sheet_y":10,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoletes":"1F3CA"},{"name":"SWIMMER","unified":"1F3CA","non_qualified":null,"docomo":null,"au":"EADE","softbank":"E42D","google":"FE7DE","image":"1f3ca.png","sheet_x":9,"sheet_y":11,"short_name":"swimmer","short_names":["swimmer"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":452,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F3CA-1F3FB","non_qualified":null,"image":"1f3ca-1f3fb.png","sheet_x":9,"sheet_y":12,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F3CA-1F3FC","non_qualified":null,"image":"1f3ca-1f3fc.png","sheet_x":9,"sheet_y":13,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F3CA-1F3FD","non_qualified":null,"image":"1f3ca-1f3fd.png","sheet_x":9,"sheet_y":14,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F3CA-1F3FE","non_qualified":null,"image":"1f3ca-1f3fe.png","sheet_x":9,"sheet_y":15,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F3CA-1F3FF","non_qualified":null,"image":"1f3ca-1f3ff.png","sheet_x":9,"sheet_y":16,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoleted_by":"1F3CA-200D-2642-FE0F"},{"name":"WOMAN LIFTING WEIGHTS","unified":"1F3CB-FE0F-200D-2640-FE0F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3cb-fe0f-200d-2640-fe0f.png","sheet_x":9,"sheet_y":17,"short_name":"woman-lifting-weights","short_names":["woman-lifting-weights"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":460,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":false,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F3CB-1F3FB-200D-2640-FE0F","non_qualified":"1F3CB-1F3FB-200D-2640","image":"1f3cb-1f3fb-200d-2640-fe0f.png","sheet_x":9,"sheet_y":18,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F3CB-1F3FC-200D-2640-FE0F","non_qualified":"1F3CB-1F3FC-200D-2640","image":"1f3cb-1f3fc-200d-2640-fe0f.png","sheet_x":9,"sheet_y":19,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F3CB-1F3FD-200D-2640-FE0F","non_qualified":"1F3CB-1F3FD-200D-2640","image":"1f3cb-1f3fd-200d-2640-fe0f.png","sheet_x":9,"sheet_y":20,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F3CB-1F3FE-200D-2640-FE0F","non_qualified":"1F3CB-1F3FE-200D-2640","image":"1f3cb-1f3fe-200d-2640-fe0f.png","sheet_x":9,"sheet_y":21,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F3CB-1F3FF-200D-2640-FE0F","non_qualified":"1F3CB-1F3FF-200D-2640","image":"1f3cb-1f3ff-200d-2640-fe0f.png","sheet_x":9,"sheet_y":22,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN LIFTING WEIGHTS","unified":"1F3CB-FE0F-200D-2642-FE0F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3cb-fe0f-200d-2642-fe0f.png","sheet_x":9,"sheet_y":23,"short_name":"man-lifting-weights","short_names":["man-lifting-weights"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":459,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":false,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F3CB-1F3FB-200D-2642-FE0F","non_qualified":"1F3CB-1F3FB-200D-2642","image":"1f3cb-1f3fb-200d-2642-fe0f.png","sheet_x":9,"sheet_y":24,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F3CB-1F3FC-200D-2642-FE0F","non_qualified":"1F3CB-1F3FC-200D-2642","image":"1f3cb-1f3fc-200d-2642-fe0f.png","sheet_x":9,"sheet_y":25,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F3CB-1F3FD-200D-2642-FE0F","non_qualified":"1F3CB-1F3FD-200D-2642","image":"1f3cb-1f3fd-200d-2642-fe0f.png","sheet_x":9,"sheet_y":26,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F3CB-1F3FE-200D-2642-FE0F","non_qualified":"1F3CB-1F3FE-200D-2642","image":"1f3cb-1f3fe-200d-2642-fe0f.png","sheet_x":9,"sheet_y":27,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F3CB-1F3FF-200D-2642-FE0F","non_qualified":"1F3CB-1F3FF-200D-2642","image":"1f3cb-1f3ff-200d-2642-fe0f.png","sheet_x":9,"sheet_y":28,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoletes":"1F3CB-FE0F"},{"name":"PERSON LIFTING WEIGHTS","unified":"1F3CB-FE0F","non_qualified":"1F3CB","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3cb-fe0f.png","sheet_x":9,"sheet_y":29,"short_name":"weight_lifter","short_names":["weight_lifter"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":458,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F3CB-1F3FB","non_qualified":null,"image":"1f3cb-1f3fb.png","sheet_x":9,"sheet_y":30,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F3CB-1F3FC","non_qualified":null,"image":"1f3cb-1f3fc.png","sheet_x":9,"sheet_y":31,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F3CB-1F3FD","non_qualified":null,"image":"1f3cb-1f3fd.png","sheet_x":9,"sheet_y":32,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F3CB-1F3FE","non_qualified":null,"image":"1f3cb-1f3fe.png","sheet_x":9,"sheet_y":33,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F3CB-1F3FF","non_qualified":null,"image":"1f3cb-1f3ff.png","sheet_x":9,"sheet_y":34,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoleted_by":"1F3CB-FE0F-200D-2642-FE0F"},{"name":"WOMAN GOLFING","unified":"1F3CC-FE0F-200D-2640-FE0F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3cc-fe0f-200d-2640-fe0f.png","sheet_x":9,"sheet_y":35,"short_name":"woman-golfing","short_names":["woman-golfing"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":445,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":false,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F3CC-1F3FB-200D-2640-FE0F","non_qualified":"1F3CC-1F3FB-200D-2640","image":"1f3cc-1f3fb-200d-2640-fe0f.png","sheet_x":9,"sheet_y":36,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F3CC-1F3FC-200D-2640-FE0F","non_qualified":"1F3CC-1F3FC-200D-2640","image":"1f3cc-1f3fc-200d-2640-fe0f.png","sheet_x":9,"sheet_y":37,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F3CC-1F3FD-200D-2640-FE0F","non_qualified":"1F3CC-1F3FD-200D-2640","image":"1f3cc-1f3fd-200d-2640-fe0f.png","sheet_x":9,"sheet_y":38,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F3CC-1F3FE-200D-2640-FE0F","non_qualified":"1F3CC-1F3FE-200D-2640","image":"1f3cc-1f3fe-200d-2640-fe0f.png","sheet_x":9,"sheet_y":39,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F3CC-1F3FF-200D-2640-FE0F","non_qualified":"1F3CC-1F3FF-200D-2640","image":"1f3cc-1f3ff-200d-2640-fe0f.png","sheet_x":9,"sheet_y":40,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN GOLFING","unified":"1F3CC-FE0F-200D-2642-FE0F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3cc-fe0f-200d-2642-fe0f.png","sheet_x":9,"sheet_y":41,"short_name":"man-golfing","short_names":["man-golfing"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":444,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":false,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F3CC-1F3FB-200D-2642-FE0F","non_qualified":"1F3CC-1F3FB-200D-2642","image":"1f3cc-1f3fb-200d-2642-fe0f.png","sheet_x":9,"sheet_y":42,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F3CC-1F3FC-200D-2642-FE0F","non_qualified":"1F3CC-1F3FC-200D-2642","image":"1f3cc-1f3fc-200d-2642-fe0f.png","sheet_x":9,"sheet_y":43,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F3CC-1F3FD-200D-2642-FE0F","non_qualified":"1F3CC-1F3FD-200D-2642","image":"1f3cc-1f3fd-200d-2642-fe0f.png","sheet_x":9,"sheet_y":44,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F3CC-1F3FE-200D-2642-FE0F","non_qualified":"1F3CC-1F3FE-200D-2642","image":"1f3cc-1f3fe-200d-2642-fe0f.png","sheet_x":9,"sheet_y":45,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F3CC-1F3FF-200D-2642-FE0F","non_qualified":"1F3CC-1F3FF-200D-2642","image":"1f3cc-1f3ff-200d-2642-fe0f.png","sheet_x":9,"sheet_y":46,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoletes":"1F3CC-FE0F"},{"name":"PERSON GOLFING","unified":"1F3CC-FE0F","non_qualified":"1F3CC","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3cc-fe0f.png","sheet_x":9,"sheet_y":47,"short_name":"golfer","short_names":["golfer"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":443,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F3CC-1F3FB","non_qualified":null,"image":"1f3cc-1f3fb.png","sheet_x":9,"sheet_y":48,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F3CC-1F3FC","non_qualified":null,"image":"1f3cc-1f3fc.png","sheet_x":9,"sheet_y":49,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F3CC-1F3FD","non_qualified":null,"image":"1f3cc-1f3fd.png","sheet_x":9,"sheet_y":50,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F3CC-1F3FE","non_qualified":null,"image":"1f3cc-1f3fe.png","sheet_x":9,"sheet_y":51,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F3CC-1F3FF","non_qualified":null,"image":"1f3cc-1f3ff.png","sheet_x":9,"sheet_y":52,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoleted_by":"1F3CC-FE0F-200D-2642-FE0F"},{"name":"MOTORCYCLE","unified":"1F3CD-FE0F","non_qualified":"1F3CD","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3cd-fe0f.png","sheet_x":9,"sheet_y":53,"short_name":"racing_motorcycle","short_names":["racing_motorcycle"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":916,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RACING CAR","unified":"1F3CE-FE0F","non_qualified":"1F3CE","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3ce-fe0f.png","sheet_x":9,"sheet_y":54,"short_name":"racing_car","short_names":["racing_car"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":915,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CRICKET BAT AND BALL","unified":"1F3CF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3cf.png","sheet_x":9,"sheet_y":55,"short_name":"cricket_bat_and_ball","short_names":["cricket_bat_and_ball"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1075,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"VOLLEYBALL","unified":"1F3D0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d0.png","sheet_x":9,"sheet_y":56,"short_name":"volleyball","short_names":["volleyball"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1069,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FIELD HOCKEY STICK AND BALL","unified":"1F3D1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d1.png","sheet_x":9,"sheet_y":57,"short_name":"field_hockey_stick_and_ball","short_names":["field_hockey_stick_and_ball"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1076,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ICE HOCKEY STICK AND PUCK","unified":"1F3D2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d2.png","sheet_x":9,"sheet_y":58,"short_name":"ice_hockey_stick_and_puck","short_names":["ice_hockey_stick_and_puck"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1077,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TABLE TENNIS PADDLE AND BALL","unified":"1F3D3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d3.png","sheet_x":9,"sheet_y":59,"short_name":"table_tennis_paddle_and_ball","short_names":["table_tennis_paddle_and_ball"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1079,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SNOW-CAPPED MOUNTAIN","unified":"1F3D4-FE0F","non_qualified":"1F3D4","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d4-fe0f.png","sheet_x":9,"sheet_y":60,"short_name":"snow_capped_mountain","short_names":["snow_capped_mountain"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-geographic","sort_order":827,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CAMPING","unified":"1F3D5-FE0F","non_qualified":"1F3D5","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d5-fe0f.png","sheet_x":10,"sheet_y":0,"short_name":"camping","short_names":["camping"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-geographic","sort_order":831,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BEACH WITH UMBRELLA","unified":"1F3D6-FE0F","non_qualified":"1F3D6","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d6-fe0f.png","sheet_x":10,"sheet_y":1,"short_name":"beach_with_umbrella","short_names":["beach_with_umbrella"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-geographic","sort_order":832,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BUILDING CONSTRUCTION","unified":"1F3D7-FE0F","non_qualified":"1F3D7","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d7-fe0f.png","sheet_x":10,"sheet_y":2,"short_name":"building_construction","short_names":["building_construction"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":838,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HOUSES","unified":"1F3D8-FE0F","non_qualified":"1F3D8","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d8-fe0f.png","sheet_x":10,"sheet_y":3,"short_name":"house_buildings","short_names":["house_buildings"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":843,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CITYSCAPE","unified":"1F3D9-FE0F","non_qualified":"1F3D9","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d9-fe0f.png","sheet_x":10,"sheet_y":4,"short_name":"cityscape","short_names":["cityscape"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-other","sort_order":873,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DERELICT HOUSE","unified":"1F3DA-FE0F","non_qualified":"1F3DA","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3da-fe0f.png","sheet_x":10,"sheet_y":5,"short_name":"derelict_house_building","short_names":["derelict_house_building"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":844,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLASSICAL BUILDING","unified":"1F3DB-FE0F","non_qualified":"1F3DB","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3db-fe0f.png","sheet_x":10,"sheet_y":6,"short_name":"classical_building","short_names":["classical_building"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":837,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DESERT","unified":"1F3DC-FE0F","non_qualified":"1F3DC","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3dc-fe0f.png","sheet_x":10,"sheet_y":7,"short_name":"desert","short_names":["desert"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-geographic","sort_order":833,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DESERT ISLAND","unified":"1F3DD-FE0F","non_qualified":"1F3DD","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3dd-fe0f.png","sheet_x":10,"sheet_y":8,"short_name":"desert_island","short_names":["desert_island"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-geographic","sort_order":834,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NATIONAL PARK","unified":"1F3DE-FE0F","non_qualified":"1F3DE","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3de-fe0f.png","sheet_x":10,"sheet_y":9,"short_name":"national_park","short_names":["national_park"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-geographic","sort_order":835,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"STADIUM","unified":"1F3DF-FE0F","non_qualified":"1F3DF","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3df-fe0f.png","sheet_x":10,"sheet_y":10,"short_name":"stadium","short_names":["stadium"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":836,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HOUSE BUILDING","unified":"1F3E0","non_qualified":null,"docomo":"E663","au":"E4AB","softbank":"E036","google":"FE4B0","image":"1f3e0.png","sheet_x":10,"sheet_y":11,"short_name":"house","short_names":["house"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":845,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HOUSE WITH GARDEN","unified":"1F3E1","non_qualified":null,"docomo":"E663","au":"EB09","softbank":null,"google":"FE4B1","image":"1f3e1.png","sheet_x":10,"sheet_y":12,"short_name":"house_with_garden","short_names":["house_with_garden"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":846,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"OFFICE BUILDING","unified":"1F3E2","non_qualified":null,"docomo":"E664","au":"E4AD","softbank":"E038","google":"FE4B2","image":"1f3e2.png","sheet_x":10,"sheet_y":13,"short_name":"office","short_names":["office"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":847,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"JAPANESE POST OFFICE","unified":"1F3E3","non_qualified":null,"docomo":"E665","au":"E5DE","softbank":"E153","google":"FE4B3","image":"1f3e3.png","sheet_x":10,"sheet_y":14,"short_name":"post_office","short_names":["post_office"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":848,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"EUROPEAN POST OFFICE","unified":"1F3E4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3e4.png","sheet_x":10,"sheet_y":15,"short_name":"european_post_office","short_names":["european_post_office"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":849,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HOSPITAL","unified":"1F3E5","non_qualified":null,"docomo":"E666","au":"E5DF","softbank":"E155","google":"FE4B4","image":"1f3e5.png","sheet_x":10,"sheet_y":16,"short_name":"hospital","short_names":["hospital"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":850,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BANK","unified":"1F3E6","non_qualified":null,"docomo":"E667","au":"E4AA","softbank":"E14D","google":"FE4B5","image":"1f3e6.png","sheet_x":10,"sheet_y":17,"short_name":"bank","short_names":["bank"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":851,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"AUTOMATED TELLER MACHINE","unified":"1F3E7","non_qualified":null,"docomo":"E668","au":"E4A3","softbank":"E154","google":"FE4B6","image":"1f3e7.png","sheet_x":10,"sheet_y":18,"short_name":"atm","short_names":["atm"],"text":null,"texts":null,"category":"Symbols","subcategory":"transport-sign","sort_order":1384,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HOTEL","unified":"1F3E8","non_qualified":null,"docomo":"E669","au":"EA81","softbank":"E158","google":"FE4B7","image":"1f3e8.png","sheet_x":10,"sheet_y":19,"short_name":"hotel","short_names":["hotel"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":852,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LOVE HOTEL","unified":"1F3E9","non_qualified":null,"docomo":"E669-E6EF","au":"EAF3","softbank":"E501","google":"FE4B8","image":"1f3e9.png","sheet_x":10,"sheet_y":20,"short_name":"love_hotel","short_names":["love_hotel"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":853,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CONVENIENCE STORE","unified":"1F3EA","non_qualified":null,"docomo":"E66A","au":"E4A4","softbank":"E156","google":"FE4B9","image":"1f3ea.png","sheet_x":10,"sheet_y":21,"short_name":"convenience_store","short_names":["convenience_store"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":854,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SCHOOL","unified":"1F3EB","non_qualified":null,"docomo":"E73E","au":"EA80","softbank":"E157","google":"FE4BA","image":"1f3eb.png","sheet_x":10,"sheet_y":22,"short_name":"school","short_names":["school"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":855,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DEPARTMENT STORE","unified":"1F3EC","non_qualified":null,"docomo":null,"au":"EAF6","softbank":"E504","google":"FE4BD","image":"1f3ec.png","sheet_x":10,"sheet_y":23,"short_name":"department_store","short_names":["department_store"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":856,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACTORY","unified":"1F3ED","non_qualified":null,"docomo":null,"au":"EAF9","softbank":"E508","google":"FE4C0","image":"1f3ed.png","sheet_x":10,"sheet_y":24,"short_name":"factory","short_names":["factory"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":857,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"IZAKAYA LANTERN","unified":"1F3EE","non_qualified":null,"docomo":"E74B","au":"E4BD","softbank":null,"google":"FE4C2","image":"1f3ee.png","sheet_x":10,"sheet_y":25,"short_name":"izakaya_lantern","short_names":["izakaya_lantern","lantern"],"text":null,"texts":null,"category":"Objects","subcategory":"light & video","sort_order":1233,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"JAPANESE CASTLE","unified":"1F3EF","non_qualified":null,"docomo":null,"au":"EAF7","softbank":"E505","google":"FE4BE","image":"1f3ef.png","sheet_x":10,"sheet_y":26,"short_name":"japanese_castle","short_names":["japanese_castle"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":858,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"EUROPEAN CASTLE","unified":"1F3F0","non_qualified":null,"docomo":null,"au":"EAF8","softbank":"E506","google":"FE4BF","image":"1f3f0.png","sheet_x":10,"sheet_y":27,"short_name":"european_castle","short_names":["european_castle"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":859,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RAINBOW FLAG","unified":"1F3F3-FE0F-200D-1F308","non_qualified":"1F3F3-200D-1F308","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3f3-fe0f-200d-1f308.png","sheet_x":10,"sheet_y":28,"short_name":"rainbow-flag","short_names":["rainbow-flag"],"text":null,"texts":null,"category":"Flags","subcategory":"flag","sort_order":1612,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TRANSGENDER FLAG","unified":"1F3F3-FE0F-200D-26A7-FE0F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3f3-fe0f-200d-26a7-fe0f.png","sheet_x":10,"sheet_y":29,"short_name":"transgender_flag","short_names":["transgender_flag"],"text":null,"texts":null,"category":"Flags","subcategory":"flag","sort_order":1613,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":false,"has_img_microsoft":true},{"name":"WHITE FLAG","unified":"1F3F3-FE0F","non_qualified":"1F3F3","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3f3-fe0f.png","sheet_x":10,"sheet_y":30,"short_name":"waving_white_flag","short_names":["waving_white_flag"],"text":null,"texts":null,"category":"Flags","subcategory":"flag","sort_order":1611,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PIRATE FLAG","unified":"1F3F4-200D-2620-FE0F","non_qualified":"1F3F4-200D-2620","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3f4-200d-2620-fe0f.png","sheet_x":10,"sheet_y":31,"short_name":"pirate_flag","short_names":["pirate_flag"],"text":null,"texts":null,"category":"Flags","subcategory":"flag","sort_order":1614,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"England Flag","unified":"1F3F4-E0067-E0062-E0065-E006E-E0067-E007F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3f4-e0067-e0062-e0065-e006e-e0067-e007f.png","sheet_x":10,"sheet_y":32,"short_name":"flag-england","short_names":["flag-england"],"text":null,"texts":null,"category":"Flags","subcategory":"subdivision-flag","sort_order":1873,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Scotland Flag","unified":"1F3F4-E0067-E0062-E0073-E0063-E0074-E007F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3f4-e0067-e0062-e0073-e0063-e0074-e007f.png","sheet_x":10,"sheet_y":33,"short_name":"flag-scotland","short_names":["flag-scotland"],"text":null,"texts":null,"category":"Flags","subcategory":"subdivision-flag","sort_order":1874,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"Wales Flag","unified":"1F3F4-E0067-E0062-E0077-E006C-E0073-E007F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3f4-e0067-e0062-e0077-e006c-e0073-e007f.png","sheet_x":10,"sheet_y":34,"short_name":"flag-wales","short_names":["flag-wales"],"text":null,"texts":null,"category":"Flags","subcategory":"subdivision-flag","sort_order":1875,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"WAVING BLACK FLAG","unified":"1F3F4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3f4.png","sheet_x":10,"sheet_y":35,"short_name":"waving_black_flag","short_names":["waving_black_flag"],"text":null,"texts":null,"category":"Flags","subcategory":"flag","sort_order":1610,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ROSETTE","unified":"1F3F5-FE0F","non_qualified":"1F3F5","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3f5-fe0f.png","sheet_x":10,"sheet_y":36,"short_name":"rosette","short_names":["rosette"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-flower","sort_order":663,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LABEL","unified":"1F3F7-FE0F","non_qualified":"1F3F7","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3f7-fe0f.png","sheet_x":10,"sheet_y":37,"short_name":"label","short_names":["label"],"text":null,"texts":null,"category":"Objects","subcategory":"book-paper","sort_order":1251,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BADMINTON RACQUET AND SHUTTLECOCK","unified":"1F3F8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3f8.png","sheet_x":10,"sheet_y":38,"short_name":"badminton_racquet_and_shuttlecock","short_names":["badminton_racquet_and_shuttlecock"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1080,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BOW AND ARROW","unified":"1F3F9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3f9.png","sheet_x":10,"sheet_y":39,"short_name":"bow_and_arrow","short_names":["bow_and_arrow"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1320,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"AMPHORA","unified":"1F3FA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3fa.png","sheet_x":10,"sheet_y":40,"short_name":"amphora","short_names":["amphora"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"dishware","sort_order":819,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"EMOJI MODIFIER FITZPATRICK TYPE-1-2","unified":"1F3FB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3fb.png","sheet_x":10,"sheet_y":41,"short_name":"skin-tone-2","short_names":["skin-tone-2"],"text":null,"texts":null,"category":"Component","subcategory":"skin-tone","sort_order":530,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"EMOJI MODIFIER FITZPATRICK TYPE-3","unified":"1F3FC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3fc.png","sheet_x":10,"sheet_y":42,"short_name":"skin-tone-3","short_names":["skin-tone-3"],"text":null,"texts":null,"category":"Component","subcategory":"skin-tone","sort_order":531,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"EMOJI MODIFIER FITZPATRICK TYPE-4","unified":"1F3FD","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3fd.png","sheet_x":10,"sheet_y":43,"short_name":"skin-tone-4","short_names":["skin-tone-4"],"text":null,"texts":null,"category":"Component","subcategory":"skin-tone","sort_order":532,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"EMOJI MODIFIER FITZPATRICK TYPE-5","unified":"1F3FE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3fe.png","sheet_x":10,"sheet_y":44,"short_name":"skin-tone-5","short_names":["skin-tone-5"],"text":null,"texts":null,"category":"Component","subcategory":"skin-tone","sort_order":533,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"EMOJI MODIFIER FITZPATRICK TYPE-6","unified":"1F3FF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3ff.png","sheet_x":10,"sheet_y":45,"short_name":"skin-tone-6","short_names":["skin-tone-6"],"text":null,"texts":null,"category":"Component","subcategory":"skin-tone","sort_order":534,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"RAT","unified":"1F400","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f400.png","sheet_x":10,"sheet_y":46,"short_name":"rat","short_names":["rat"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":583,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MOUSE","unified":"1F401","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f401.png","sheet_x":10,"sheet_y":47,"short_name":"mouse2","short_names":["mouse2"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":582,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"OX","unified":"1F402","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f402.png","sheet_x":10,"sheet_y":48,"short_name":"ox","short_names":["ox"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":563,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WATER BUFFALO","unified":"1F403","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f403.png","sheet_x":10,"sheet_y":49,"short_name":"water_buffalo","short_names":["water_buffalo"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":564,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"COW","unified":"1F404","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f404.png","sheet_x":10,"sheet_y":50,"short_name":"cow2","short_names":["cow2"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":565,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TIGER","unified":"1F405","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f405.png","sheet_x":10,"sheet_y":51,"short_name":"tiger2","short_names":["tiger2"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":552,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LEOPARD","unified":"1F406","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f406.png","sheet_x":10,"sheet_y":52,"short_name":"leopard","short_names":["leopard"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":553,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RABBIT","unified":"1F407","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f407.png","sheet_x":10,"sheet_y":53,"short_name":"rabbit2","short_names":["rabbit2"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":586,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLACK CAT","unified":"1F408-200D-2B1B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f408-200d-2b1b.png","sheet_x":10,"sheet_y":54,"short_name":"black_cat","short_names":["black_cat"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":549,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CAT","unified":"1F408","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f408.png","sheet_x":10,"sheet_y":55,"short_name":"cat2","short_names":["cat2"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":548,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DRAGON","unified":"1F409","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f409.png","sheet_x":10,"sheet_y":56,"short_name":"dragon","short_names":["dragon"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-reptile","sort_order":628,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CROCODILE","unified":"1F40A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f40a.png","sheet_x":10,"sheet_y":57,"short_name":"crocodile","short_names":["crocodile"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-reptile","sort_order":623,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WHALE","unified":"1F40B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f40b.png","sheet_x":10,"sheet_y":58,"short_name":"whale2","short_names":["whale2"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-marine","sort_order":632,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SNAIL","unified":"1F40C","non_qualified":null,"docomo":"E74E","au":"EB7E","softbank":null,"google":"FE1B9","image":"1f40c.png","sheet_x":10,"sheet_y":59,"short_name":"snail","short_names":["snail"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bug","sort_order":643,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SNAKE","unified":"1F40D","non_qualified":null,"docomo":null,"au":"EB22","softbank":"E52D","google":"FE1D3","image":"1f40d.png","sheet_x":10,"sheet_y":60,"short_name":"snake","short_names":["snake"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-reptile","sort_order":626,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HORSE","unified":"1F40E","non_qualified":null,"docomo":"E754","au":"E4D8","softbank":"E134","google":"FE7DC","image":"1f40e.png","sheet_x":11,"sheet_y":0,"short_name":"racehorse","short_names":["racehorse"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":557,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RAM","unified":"1F40F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f40f.png","sheet_x":11,"sheet_y":1,"short_name":"ram","short_names":["ram"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":570,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GOAT","unified":"1F410","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f410.png","sheet_x":11,"sheet_y":2,"short_name":"goat","short_names":["goat"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":572,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SHEEP","unified":"1F411","non_qualified":null,"docomo":null,"au":"E48F","softbank":"E529","google":"FE1CF","image":"1f411.png","sheet_x":11,"sheet_y":3,"short_name":"sheep","short_names":["sheep"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":571,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MONKEY","unified":"1F412","non_qualified":null,"docomo":null,"au":"E4D9","softbank":"E528","google":"FE1CE","image":"1f412.png","sheet_x":11,"sheet_y":4,"short_name":"monkey","short_names":["monkey"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":536,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ROOSTER","unified":"1F413","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f413.png","sheet_x":11,"sheet_y":5,"short_name":"rooster","short_names":["rooster"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":603,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CHICKEN","unified":"1F414","non_qualified":null,"docomo":null,"au":"EB23","softbank":"E52E","google":"FE1D4","image":"1f414.png","sheet_x":11,"sheet_y":6,"short_name":"chicken","short_names":["chicken"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":602,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SERVICE DOG","unified":"1F415-200D-1F9BA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f415-200d-1f9ba.png","sheet_x":11,"sheet_y":7,"short_name":"service_dog","short_names":["service_dog"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":542,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DOG","unified":"1F415","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f415.png","sheet_x":11,"sheet_y":8,"short_name":"dog2","short_names":["dog2"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":540,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PIG","unified":"1F416","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f416.png","sheet_x":11,"sheet_y":9,"short_name":"pig2","short_names":["pig2"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":567,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BOAR","unified":"1F417","non_qualified":null,"docomo":null,"au":"EB24","softbank":"E52F","google":"FE1D5","image":"1f417.png","sheet_x":11,"sheet_y":10,"short_name":"boar","short_names":["boar"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":568,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ELEPHANT","unified":"1F418","non_qualified":null,"docomo":null,"au":"EB1F","softbank":"E526","google":"FE1CC","image":"1f418.png","sheet_x":11,"sheet_y":11,"short_name":"elephant","short_names":["elephant"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":577,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"OCTOPUS","unified":"1F419","non_qualified":null,"docomo":null,"au":"E5C7","softbank":"E10A","google":"FE1C5","image":"1f419.png","sheet_x":11,"sheet_y":12,"short_name":"octopus","short_names":["octopus"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-marine","sort_order":639,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SPIRAL SHELL","unified":"1F41A","non_qualified":null,"docomo":null,"au":"EAEC","softbank":"E441","google":"FE1C6","image":"1f41a.png","sheet_x":11,"sheet_y":13,"short_name":"shell","short_names":["shell"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-marine","sort_order":640,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BUG","unified":"1F41B","non_qualified":null,"docomo":null,"au":"EB1E","softbank":"E525","google":"FE1CB","image":"1f41b.png","sheet_x":11,"sheet_y":14,"short_name":"bug","short_names":["bug"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bug","sort_order":645,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ANT","unified":"1F41C","non_qualified":null,"docomo":null,"au":"E4DD","softbank":null,"google":"FE1DA","image":"1f41c.png","sheet_x":11,"sheet_y":15,"short_name":"ant","short_names":["ant"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bug","sort_order":646,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HONEYBEE","unified":"1F41D","non_qualified":null,"docomo":null,"au":"EB57","softbank":null,"google":"FE1E1","image":"1f41d.png","sheet_x":11,"sheet_y":16,"short_name":"bee","short_names":["bee","honeybee"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bug","sort_order":647,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LADY BEETLE","unified":"1F41E","non_qualified":null,"docomo":null,"au":"EB58","softbank":null,"google":"FE1E2","image":"1f41e.png","sheet_x":11,"sheet_y":17,"short_name":"ladybug","short_names":["ladybug","lady_beetle"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bug","sort_order":649,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FISH","unified":"1F41F","non_qualified":null,"docomo":"E751","au":"E49A","softbank":"E019","google":"FE1BD","image":"1f41f.png","sheet_x":11,"sheet_y":18,"short_name":"fish","short_names":["fish"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-marine","sort_order":635,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TROPICAL FISH","unified":"1F420","non_qualified":null,"docomo":"E751","au":"EB1D","softbank":"E522","google":"FE1C9","image":"1f420.png","sheet_x":11,"sheet_y":19,"short_name":"tropical_fish","short_names":["tropical_fish"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-marine","sort_order":636,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLOWFISH","unified":"1F421","non_qualified":null,"docomo":"E751","au":"E4D3","softbank":null,"google":"FE1D9","image":"1f421.png","sheet_x":11,"sheet_y":20,"short_name":"blowfish","short_names":["blowfish"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-marine","sort_order":637,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TURTLE","unified":"1F422","non_qualified":null,"docomo":null,"au":"E5D4","softbank":null,"google":"FE1DC","image":"1f422.png","sheet_x":11,"sheet_y":21,"short_name":"turtle","short_names":["turtle"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-reptile","sort_order":624,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HATCHING CHICK","unified":"1F423","non_qualified":null,"docomo":"E74F","au":"E5DB","softbank":null,"google":"FE1DD","image":"1f423.png","sheet_x":11,"sheet_y":22,"short_name":"hatching_chick","short_names":["hatching_chick"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":604,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BABY CHICK","unified":"1F424","non_qualified":null,"docomo":"E74F","au":"E4E0","softbank":"E523","google":"FE1BA","image":"1f424.png","sheet_x":11,"sheet_y":23,"short_name":"baby_chick","short_names":["baby_chick"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":605,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FRONT-FACING BABY CHICK","unified":"1F425","non_qualified":null,"docomo":"E74F","au":"EB76","softbank":null,"google":"FE1BB","image":"1f425.png","sheet_x":11,"sheet_y":24,"short_name":"hatched_chick","short_names":["hatched_chick"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":606,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLACK BIRD","unified":"1F426-200D-2B1B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f426-200d-2b1b.png","sheet_x":11,"sheet_y":25,"short_name":"black_bird","short_names":["black_bird"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":620,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},{"name":"BIRD","unified":"1F426","non_qualified":null,"docomo":"E74F","au":"E4E0","softbank":"E521","google":"FE1C8","image":"1f426.png","sheet_x":11,"sheet_y":26,"short_name":"bird","short_names":["bird"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":607,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PENGUIN","unified":"1F427","non_qualified":null,"docomo":"E750","au":"E4DC","softbank":"E055","google":"FE1BC","image":"1f427.png","sheet_x":11,"sheet_y":27,"short_name":"penguin","short_names":["penguin"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":608,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"KOALA","unified":"1F428","non_qualified":null,"docomo":null,"au":"EB20","softbank":"E527","google":"FE1CD","image":"1f428.png","sheet_x":11,"sheet_y":28,"short_name":"koala","short_names":["koala"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":593,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"POODLE","unified":"1F429","non_qualified":null,"docomo":"E6A1","au":"E4DF","softbank":null,"google":"FE1D8","image":"1f429.png","sheet_x":11,"sheet_y":29,"short_name":"poodle","short_names":["poodle"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":543,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DROMEDARY CAMEL","unified":"1F42A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f42a.png","sheet_x":11,"sheet_y":30,"short_name":"dromedary_camel","short_names":["dromedary_camel"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":573,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BACTRIAN CAMEL","unified":"1F42B","non_qualified":null,"docomo":null,"au":"EB25","softbank":"E530","google":"FE1D6","image":"1f42b.png","sheet_x":11,"sheet_y":31,"short_name":"camel","short_names":["camel"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":574,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DOLPHIN","unified":"1F42C","non_qualified":null,"docomo":null,"au":"EB1B","softbank":"E520","google":"FE1C7","image":"1f42c.png","sheet_x":11,"sheet_y":32,"short_name":"dolphin","short_names":["dolphin","flipper"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-marine","sort_order":633,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MOUSE FACE","unified":"1F42D","non_qualified":null,"docomo":null,"au":"E5C2","softbank":"E053","google":"FE1C2","image":"1f42d.png","sheet_x":11,"sheet_y":33,"short_name":"mouse","short_names":["mouse"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":581,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"COW FACE","unified":"1F42E","non_qualified":null,"docomo":null,"au":"EB21","softbank":"E52B","google":"FE1D1","image":"1f42e.png","sheet_x":11,"sheet_y":34,"short_name":"cow","short_names":["cow"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":562,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TIGER FACE","unified":"1F42F","non_qualified":null,"docomo":null,"au":"E5C0","softbank":"E050","google":"FE1C0","image":"1f42f.png","sheet_x":11,"sheet_y":35,"short_name":"tiger","short_names":["tiger"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":551,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RABBIT FACE","unified":"1F430","non_qualified":null,"docomo":null,"au":"E4D7","softbank":"E52C","google":"FE1D2","image":"1f430.png","sheet_x":11,"sheet_y":36,"short_name":"rabbit","short_names":["rabbit"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":585,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CAT FACE","unified":"1F431","non_qualified":null,"docomo":"E6A2","au":"E4DB","softbank":"E04F","google":"FE1B8","image":"1f431.png","sheet_x":11,"sheet_y":37,"short_name":"cat","short_names":["cat"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":547,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DRAGON FACE","unified":"1F432","non_qualified":null,"docomo":null,"au":"EB3F","softbank":null,"google":"FE1DE","image":"1f432.png","sheet_x":11,"sheet_y":38,"short_name":"dragon_face","short_names":["dragon_face"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-reptile","sort_order":627,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SPOUTING WHALE","unified":"1F433","non_qualified":null,"docomo":null,"au":"E470","softbank":"E054","google":"FE1C3","image":"1f433.png","sheet_x":11,"sheet_y":39,"short_name":"whale","short_names":["whale"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-marine","sort_order":631,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HORSE FACE","unified":"1F434","non_qualified":null,"docomo":"E754","au":"E4D8","softbank":"E01A","google":"FE1BE","image":"1f434.png","sheet_x":11,"sheet_y":40,"short_name":"horse","short_names":["horse"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":554,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MONKEY FACE","unified":"1F435","non_qualified":null,"docomo":null,"au":"E4D9","softbank":"E109","google":"FE1C4","image":"1f435.png","sheet_x":11,"sheet_y":41,"short_name":"monkey_face","short_names":["monkey_face"],"text":null,"texts":[":o)"],"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":535,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DOG FACE","unified":"1F436","non_qualified":null,"docomo":"E6A1","au":"E4E1","softbank":"E052","google":"FE1B7","image":"1f436.png","sheet_x":11,"sheet_y":42,"short_name":"dog","short_names":["dog"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":539,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PIG FACE","unified":"1F437","non_qualified":null,"docomo":"E755","au":"E4DE","softbank":"E10B","google":"FE1BF","image":"1f437.png","sheet_x":11,"sheet_y":43,"short_name":"pig","short_names":["pig"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":566,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FROG FACE","unified":"1F438","non_qualified":null,"docomo":null,"au":"E4DA","softbank":"E531","google":"FE1D7","image":"1f438.png","sheet_x":11,"sheet_y":44,"short_name":"frog","short_names":["frog"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-amphibian","sort_order":622,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HAMSTER FACE","unified":"1F439","non_qualified":null,"docomo":null,"au":null,"softbank":"E524","google":"FE1CA","image":"1f439.png","sheet_x":11,"sheet_y":45,"short_name":"hamster","short_names":["hamster"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":584,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WOLF FACE","unified":"1F43A","non_qualified":null,"docomo":"E6A1","au":"E4E1","softbank":"E52A","google":"FE1D0","image":"1f43a.png","sheet_x":11,"sheet_y":46,"short_name":"wolf","short_names":["wolf"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":544,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"POLAR BEAR","unified":"1F43B-200D-2744-FE0F","non_qualified":"1F43B-200D-2744","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f43b-200d-2744-fe0f.png","sheet_x":11,"sheet_y":47,"short_name":"polar_bear","short_names":["polar_bear"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":592,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BEAR FACE","unified":"1F43B","non_qualified":null,"docomo":null,"au":"E5C1","softbank":"E051","google":"FE1C1","image":"1f43b.png","sheet_x":11,"sheet_y":48,"short_name":"bear","short_names":["bear"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":591,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PANDA FACE","unified":"1F43C","non_qualified":null,"docomo":null,"au":"EB46","softbank":null,"google":"FE1DF","image":"1f43c.png","sheet_x":11,"sheet_y":49,"short_name":"panda_face","short_names":["panda_face"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":594,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PIG NOSE","unified":"1F43D","non_qualified":null,"docomo":"E755","au":"EB48","softbank":null,"google":"FE1E0","image":"1f43d.png","sheet_x":11,"sheet_y":50,"short_name":"pig_nose","short_names":["pig_nose"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":569,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PAW PRINTS","unified":"1F43E","non_qualified":null,"docomo":"E698","au":"E4EE","softbank":null,"google":"FE1DB","image":"1f43e.png","sheet_x":11,"sheet_y":51,"short_name":"feet","short_names":["feet","paw_prints"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":600,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CHIPMUNK","unified":"1F43F-FE0F","non_qualified":"1F43F","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f43f-fe0f.png","sheet_x":11,"sheet_y":52,"short_name":"chipmunk","short_names":["chipmunk"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":587,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"EYES","unified":"1F440","non_qualified":null,"docomo":"E691","au":"E5A4","softbank":"E419","google":"FE190","image":"1f440.png","sheet_x":11,"sheet_y":53,"short_name":"eyes","short_names":["eyes"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":223,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"EYE IN SPEECH BUBBLE","unified":"1F441-FE0F-200D-1F5E8-FE0F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f441-fe0f-200d-1f5e8-fe0f.png","sheet_x":11,"sheet_y":54,"short_name":"eye-in-speech-bubble","short_names":["eye-in-speech-bubble"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"emotion","sort_order":162,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":false,"has_img_microsoft":true},{"name":"EYE","unified":"1F441-FE0F","non_qualified":"1F441","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f441-fe0f.png","sheet_x":11,"sheet_y":55,"short_name":"eye","short_names":["eye"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":224,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"EAR","unified":"1F442","non_qualified":null,"docomo":"E692","au":"E5A5","softbank":"E41B","google":"FE191","image":"1f442.png","sheet_x":11,"sheet_y":56,"short_name":"ear","short_names":["ear"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":215,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F442-1F3FB","non_qualified":null,"image":"1f442-1f3fb.png","sheet_x":11,"sheet_y":57,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F442-1F3FC","non_qualified":null,"image":"1f442-1f3fc.png","sheet_x":11,"sheet_y":58,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F442-1F3FD","non_qualified":null,"image":"1f442-1f3fd.png","sheet_x":11,"sheet_y":59,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F442-1F3FE","non_qualified":null,"image":"1f442-1f3fe.png","sheet_x":11,"sheet_y":60,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F442-1F3FF","non_qualified":null,"image":"1f442-1f3ff.png","sheet_x":12,"sheet_y":0,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"NOSE","unified":"1F443","non_qualified":null,"docomo":null,"au":"EAD0","softbank":"E41A","google":"FE192","image":"1f443.png","sheet_x":12,"sheet_y":1,"short_name":"nose","short_names":["nose"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":217,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F443-1F3FB","non_qualified":null,"image":"1f443-1f3fb.png","sheet_x":12,"sheet_y":2,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F443-1F3FC","non_qualified":null,"image":"1f443-1f3fc.png","sheet_x":12,"sheet_y":3,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F443-1F3FD","non_qualified":null,"image":"1f443-1f3fd.png","sheet_x":12,"sheet_y":4,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F443-1F3FE","non_qualified":null,"image":"1f443-1f3fe.png","sheet_x":12,"sheet_y":5,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F443-1F3FF","non_qualified":null,"image":"1f443-1f3ff.png","sheet_x":12,"sheet_y":6,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MOUTH","unified":"1F444","non_qualified":null,"docomo":"E6F9","au":"EAD1","softbank":"E41C","google":"FE193","image":"1f444.png","sheet_x":12,"sheet_y":7,"short_name":"lips","short_names":["lips"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":226,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TONGUE","unified":"1F445","non_qualified":null,"docomo":"E728","au":"EB47","softbank":null,"google":"FE194","image":"1f445.png","sheet_x":12,"sheet_y":8,"short_name":"tongue","short_names":["tongue"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":225,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WHITE UP POINTING BACKHAND INDEX","unified":"1F446","non_qualified":null,"docomo":null,"au":"EA8D","softbank":"E22E","google":"FEB99","image":"1f446.png","sheet_x":12,"sheet_y":9,"short_name":"point_up_2","short_names":["point_up_2"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-single-finger","sort_order":189,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F446-1F3FB","non_qualified":null,"image":"1f446-1f3fb.png","sheet_x":12,"sheet_y":10,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F446-1F3FC","non_qualified":null,"image":"1f446-1f3fc.png","sheet_x":12,"sheet_y":11,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F446-1F3FD","non_qualified":null,"image":"1f446-1f3fd.png","sheet_x":12,"sheet_y":12,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F446-1F3FE","non_qualified":null,"image":"1f446-1f3fe.png","sheet_x":12,"sheet_y":13,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F446-1F3FF","non_qualified":null,"image":"1f446-1f3ff.png","sheet_x":12,"sheet_y":14,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WHITE DOWN POINTING BACKHAND INDEX","unified":"1F447","non_qualified":null,"docomo":null,"au":"EA8E","softbank":"E22F","google":"FEB9A","image":"1f447.png","sheet_x":12,"sheet_y":15,"short_name":"point_down","short_names":["point_down"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-single-finger","sort_order":191,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F447-1F3FB","non_qualified":null,"image":"1f447-1f3fb.png","sheet_x":12,"sheet_y":16,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F447-1F3FC","non_qualified":null,"image":"1f447-1f3fc.png","sheet_x":12,"sheet_y":17,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F447-1F3FD","non_qualified":null,"image":"1f447-1f3fd.png","sheet_x":12,"sheet_y":18,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F447-1F3FE","non_qualified":null,"image":"1f447-1f3fe.png","sheet_x":12,"sheet_y":19,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F447-1F3FF","non_qualified":null,"image":"1f447-1f3ff.png","sheet_x":12,"sheet_y":20,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WHITE LEFT POINTING BACKHAND INDEX","unified":"1F448","non_qualified":null,"docomo":null,"au":"E4FF","softbank":"E230","google":"FEB9B","image":"1f448.png","sheet_x":12,"sheet_y":21,"short_name":"point_left","short_names":["point_left"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-single-finger","sort_order":187,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F448-1F3FB","non_qualified":null,"image":"1f448-1f3fb.png","sheet_x":12,"sheet_y":22,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F448-1F3FC","non_qualified":null,"image":"1f448-1f3fc.png","sheet_x":12,"sheet_y":23,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F448-1F3FD","non_qualified":null,"image":"1f448-1f3fd.png","sheet_x":12,"sheet_y":24,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F448-1F3FE","non_qualified":null,"image":"1f448-1f3fe.png","sheet_x":12,"sheet_y":25,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F448-1F3FF","non_qualified":null,"image":"1f448-1f3ff.png","sheet_x":12,"sheet_y":26,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WHITE RIGHT POINTING BACKHAND INDEX","unified":"1F449","non_qualified":null,"docomo":null,"au":"E500","softbank":"E231","google":"FEB9C","image":"1f449.png","sheet_x":12,"sheet_y":27,"short_name":"point_right","short_names":["point_right"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-single-finger","sort_order":188,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F449-1F3FB","non_qualified":null,"image":"1f449-1f3fb.png","sheet_x":12,"sheet_y":28,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F449-1F3FC","non_qualified":null,"image":"1f449-1f3fc.png","sheet_x":12,"sheet_y":29,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F449-1F3FD","non_qualified":null,"image":"1f449-1f3fd.png","sheet_x":12,"sheet_y":30,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F449-1F3FE","non_qualified":null,"image":"1f449-1f3fe.png","sheet_x":12,"sheet_y":31,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F449-1F3FF","non_qualified":null,"image":"1f449-1f3ff.png","sheet_x":12,"sheet_y":32,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"FISTED HAND SIGN","unified":"1F44A","non_qualified":null,"docomo":"E6FD","au":"E4F3","softbank":"E00D","google":"FEB96","image":"1f44a.png","sheet_x":12,"sheet_y":33,"short_name":"facepunch","short_names":["facepunch","punch"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-closed","sort_order":197,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F44A-1F3FB","non_qualified":null,"image":"1f44a-1f3fb.png","sheet_x":12,"sheet_y":34,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F44A-1F3FC","non_qualified":null,"image":"1f44a-1f3fc.png","sheet_x":12,"sheet_y":35,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F44A-1F3FD","non_qualified":null,"image":"1f44a-1f3fd.png","sheet_x":12,"sheet_y":36,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F44A-1F3FE","non_qualified":null,"image":"1f44a-1f3fe.png","sheet_x":12,"sheet_y":37,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F44A-1F3FF","non_qualified":null,"image":"1f44a-1f3ff.png","sheet_x":12,"sheet_y":38,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WAVING HAND SIGN","unified":"1F44B","non_qualified":null,"docomo":"E695","au":"EAD6","softbank":"E41E","google":"FEB9D","image":"1f44b.png","sheet_x":12,"sheet_y":39,"short_name":"wave","short_names":["wave"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-open","sort_order":167,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F44B-1F3FB","non_qualified":null,"image":"1f44b-1f3fb.png","sheet_x":12,"sheet_y":40,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F44B-1F3FC","non_qualified":null,"image":"1f44b-1f3fc.png","sheet_x":12,"sheet_y":41,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F44B-1F3FD","non_qualified":null,"image":"1f44b-1f3fd.png","sheet_x":12,"sheet_y":42,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F44B-1F3FE","non_qualified":null,"image":"1f44b-1f3fe.png","sheet_x":12,"sheet_y":43,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F44B-1F3FF","non_qualified":null,"image":"1f44b-1f3ff.png","sheet_x":12,"sheet_y":44,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"OK HAND SIGN","unified":"1F44C","non_qualified":null,"docomo":"E70B","au":"EAD4","softbank":"E420","google":"FEB9F","image":"1f44c.png","sheet_x":12,"sheet_y":45,"short_name":"ok_hand","short_names":["ok_hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-partial","sort_order":178,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F44C-1F3FB","non_qualified":null,"image":"1f44c-1f3fb.png","sheet_x":12,"sheet_y":46,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F44C-1F3FC","non_qualified":null,"image":"1f44c-1f3fc.png","sheet_x":12,"sheet_y":47,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F44C-1F3FD","non_qualified":null,"image":"1f44c-1f3fd.png","sheet_x":12,"sheet_y":48,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F44C-1F3FE","non_qualified":null,"image":"1f44c-1f3fe.png","sheet_x":12,"sheet_y":49,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F44C-1F3FF","non_qualified":null,"image":"1f44c-1f3ff.png","sheet_x":12,"sheet_y":50,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"THUMBS UP SIGN","unified":"1F44D","non_qualified":null,"docomo":"E727","au":"E4F9","softbank":"E00E","google":"FEB97","image":"1f44d.png","sheet_x":12,"sheet_y":51,"short_name":"+1","short_names":["+1","thumbsup"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-closed","sort_order":194,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F44D-1F3FB","non_qualified":null,"image":"1f44d-1f3fb.png","sheet_x":12,"sheet_y":52,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F44D-1F3FC","non_qualified":null,"image":"1f44d-1f3fc.png","sheet_x":12,"sheet_y":53,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F44D-1F3FD","non_qualified":null,"image":"1f44d-1f3fd.png","sheet_x":12,"sheet_y":54,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F44D-1F3FE","non_qualified":null,"image":"1f44d-1f3fe.png","sheet_x":12,"sheet_y":55,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F44D-1F3FF","non_qualified":null,"image":"1f44d-1f3ff.png","sheet_x":12,"sheet_y":56,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"THUMBS DOWN SIGN","unified":"1F44E","non_qualified":null,"docomo":"E700","au":"EAD5","softbank":"E421","google":"FEBA0","image":"1f44e.png","sheet_x":12,"sheet_y":57,"short_name":"-1","short_names":["-1","thumbsdown"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-closed","sort_order":195,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F44E-1F3FB","non_qualified":null,"image":"1f44e-1f3fb.png","sheet_x":12,"sheet_y":58,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F44E-1F3FC","non_qualified":null,"image":"1f44e-1f3fc.png","sheet_x":12,"sheet_y":59,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F44E-1F3FD","non_qualified":null,"image":"1f44e-1f3fd.png","sheet_x":12,"sheet_y":60,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F44E-1F3FE","non_qualified":null,"image":"1f44e-1f3fe.png","sheet_x":13,"sheet_y":0,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F44E-1F3FF","non_qualified":null,"image":"1f44e-1f3ff.png","sheet_x":13,"sheet_y":1,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"CLAPPING HANDS SIGN","unified":"1F44F","non_qualified":null,"docomo":null,"au":"EAD3","softbank":"E41F","google":"FEB9E","image":"1f44f.png","sheet_x":13,"sheet_y":2,"short_name":"clap","short_names":["clap"],"text":null,"texts":null,"category":"People & Body","subcategory":"hands","sort_order":200,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F44F-1F3FB","non_qualified":null,"image":"1f44f-1f3fb.png","sheet_x":13,"sheet_y":3,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F44F-1F3FC","non_qualified":null,"image":"1f44f-1f3fc.png","sheet_x":13,"sheet_y":4,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F44F-1F3FD","non_qualified":null,"image":"1f44f-1f3fd.png","sheet_x":13,"sheet_y":5,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F44F-1F3FE","non_qualified":null,"image":"1f44f-1f3fe.png","sheet_x":13,"sheet_y":6,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F44F-1F3FF","non_qualified":null,"image":"1f44f-1f3ff.png","sheet_x":13,"sheet_y":7,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"OPEN HANDS SIGN","unified":"1F450","non_qualified":null,"docomo":"E695","au":"EAD6","softbank":"E422","google":"FEBA1","image":"1f450.png","sheet_x":13,"sheet_y":8,"short_name":"open_hands","short_names":["open_hands"],"text":null,"texts":null,"category":"People & Body","subcategory":"hands","sort_order":203,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F450-1F3FB","non_qualified":null,"image":"1f450-1f3fb.png","sheet_x":13,"sheet_y":9,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F450-1F3FC","non_qualified":null,"image":"1f450-1f3fc.png","sheet_x":13,"sheet_y":10,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F450-1F3FD","non_qualified":null,"image":"1f450-1f3fd.png","sheet_x":13,"sheet_y":11,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F450-1F3FE","non_qualified":null,"image":"1f450-1f3fe.png","sheet_x":13,"sheet_y":12,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F450-1F3FF","non_qualified":null,"image":"1f450-1f3ff.png","sheet_x":13,"sheet_y":13,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"CROWN","unified":"1F451","non_qualified":null,"docomo":"E71A","au":"E5C9","softbank":"E10E","google":"FE4D1","image":"1f451.png","sheet_x":13,"sheet_y":14,"short_name":"crown","short_names":["crown"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1159,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WOMANS HAT","unified":"1F452","non_qualified":null,"docomo":null,"au":"EA9E","softbank":"E318","google":"FE4D4","image":"1f452.png","sheet_x":13,"sheet_y":15,"short_name":"womans_hat","short_names":["womans_hat"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1160,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"EYEGLASSES","unified":"1F453","non_qualified":null,"docomo":"E69A","au":"E4FE","softbank":null,"google":"FE4CE","image":"1f453.png","sheet_x":13,"sheet_y":16,"short_name":"eyeglasses","short_names":["eyeglasses"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1123,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NECKTIE","unified":"1F454","non_qualified":null,"docomo":null,"au":"EA93","softbank":"E302","google":"FE4D3","image":"1f454.png","sheet_x":13,"sheet_y":17,"short_name":"necktie","short_names":["necktie"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1128,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"T-SHIRT","unified":"1F455","non_qualified":null,"docomo":"E70E","au":"E5B6","softbank":"E006","google":"FE4CF","image":"1f455.png","sheet_x":13,"sheet_y":18,"short_name":"shirt","short_names":["shirt","tshirt"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1129,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"JEANS","unified":"1F456","non_qualified":null,"docomo":"E711","au":"EB77","softbank":null,"google":"FE4D0","image":"1f456.png","sheet_x":13,"sheet_y":19,"short_name":"jeans","short_names":["jeans"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1130,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DRESS","unified":"1F457","non_qualified":null,"docomo":null,"au":"EB6B","softbank":"E319","google":"FE4D5","image":"1f457.png","sheet_x":13,"sheet_y":20,"short_name":"dress","short_names":["dress"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1135,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"KIMONO","unified":"1F458","non_qualified":null,"docomo":null,"au":"EAA3","softbank":"E321","google":"FE4D9","image":"1f458.png","sheet_x":13,"sheet_y":21,"short_name":"kimono","short_names":["kimono"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1136,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BIKINI","unified":"1F459","non_qualified":null,"docomo":null,"au":"EAA4","softbank":"E322","google":"FE4DA","image":"1f459.png","sheet_x":13,"sheet_y":22,"short_name":"bikini","short_names":["bikini"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1141,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WOMANS CLOTHES","unified":"1F45A","non_qualified":null,"docomo":"E70E","au":"E50D","softbank":null,"google":"FE4DB","image":"1f45a.png","sheet_x":13,"sheet_y":23,"short_name":"womans_clothes","short_names":["womans_clothes"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1142,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PURSE","unified":"1F45B","non_qualified":null,"docomo":"E70F","au":"E504","softbank":null,"google":"FE4DC","image":"1f45b.png","sheet_x":13,"sheet_y":24,"short_name":"purse","short_names":["purse"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1144,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HANDBAG","unified":"1F45C","non_qualified":null,"docomo":"E682","au":"E49C","softbank":"E323","google":"FE4F0","image":"1f45c.png","sheet_x":13,"sheet_y":25,"short_name":"handbag","short_names":["handbag"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1145,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"POUCH","unified":"1F45D","non_qualified":null,"docomo":"E6AD","au":null,"softbank":null,"google":"FE4F1","image":"1f45d.png","sheet_x":13,"sheet_y":26,"short_name":"pouch","short_names":["pouch"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1146,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MANS SHOE","unified":"1F45E","non_qualified":null,"docomo":"E699","au":"E5B7","softbank":null,"google":"FE4CC","image":"1f45e.png","sheet_x":13,"sheet_y":27,"short_name":"mans_shoe","short_names":["mans_shoe","shoe"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1150,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ATHLETIC SHOE","unified":"1F45F","non_qualified":null,"docomo":"E699","au":"EB2B","softbank":"E007","google":"FE4CD","image":"1f45f.png","sheet_x":13,"sheet_y":28,"short_name":"athletic_shoe","short_names":["athletic_shoe"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1151,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HIGH-HEELED SHOE","unified":"1F460","non_qualified":null,"docomo":"E674","au":"E51A","softbank":"E13E","google":"FE4D6","image":"1f460.png","sheet_x":13,"sheet_y":29,"short_name":"high_heel","short_names":["high_heel"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1154,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WOMANS SANDAL","unified":"1F461","non_qualified":null,"docomo":"E674","au":"E51A","softbank":"E31A","google":"FE4D7","image":"1f461.png","sheet_x":13,"sheet_y":30,"short_name":"sandal","short_names":["sandal"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1155,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WOMANS BOOTS","unified":"1F462","non_qualified":null,"docomo":null,"au":"EA9F","softbank":"E31B","google":"FE4D8","image":"1f462.png","sheet_x":13,"sheet_y":31,"short_name":"boot","short_names":["boot"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1157,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FOOTPRINTS","unified":"1F463","non_qualified":null,"docomo":"E698","au":"EB2A","softbank":"E536","google":"FE553","image":"1f463.png","sheet_x":13,"sheet_y":32,"short_name":"footprints","short_names":["footprints"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-symbol","sort_order":529,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BUST IN SILHOUETTE","unified":"1F464","non_qualified":null,"docomo":"E6B1","au":null,"softbank":null,"google":"FE19A","image":"1f464.png","sheet_x":13,"sheet_y":33,"short_name":"bust_in_silhouette","short_names":["bust_in_silhouette"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-symbol","sort_order":526,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BUSTS IN SILHOUETTE","unified":"1F465","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f465.png","sheet_x":13,"sheet_y":34,"short_name":"busts_in_silhouette","short_names":["busts_in_silhouette"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-symbol","sort_order":527,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BOY","unified":"1F466","non_qualified":null,"docomo":"E6F0","au":"E4FC","softbank":"E001","google":"FE19B","image":"1f466.png","sheet_x":13,"sheet_y":35,"short_name":"boy","short_names":["boy"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":230,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F466-1F3FB","non_qualified":null,"image":"1f466-1f3fb.png","sheet_x":13,"sheet_y":36,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F466-1F3FC","non_qualified":null,"image":"1f466-1f3fc.png","sheet_x":13,"sheet_y":37,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F466-1F3FD","non_qualified":null,"image":"1f466-1f3fd.png","sheet_x":13,"sheet_y":38,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F466-1F3FE","non_qualified":null,"image":"1f466-1f3fe.png","sheet_x":13,"sheet_y":39,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F466-1F3FF","non_qualified":null,"image":"1f466-1f3ff.png","sheet_x":13,"sheet_y":40,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"GIRL","unified":"1F467","non_qualified":null,"docomo":"E6F0","au":"E4FA","softbank":"E002","google":"FE19C","image":"1f467.png","sheet_x":13,"sheet_y":41,"short_name":"girl","short_names":["girl"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":231,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F467-1F3FB","non_qualified":null,"image":"1f467-1f3fb.png","sheet_x":13,"sheet_y":42,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F467-1F3FC","non_qualified":null,"image":"1f467-1f3fc.png","sheet_x":13,"sheet_y":43,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F467-1F3FD","non_qualified":null,"image":"1f467-1f3fd.png","sheet_x":13,"sheet_y":44,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F467-1F3FE","non_qualified":null,"image":"1f467-1f3fe.png","sheet_x":13,"sheet_y":45,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F467-1F3FF","non_qualified":null,"image":"1f467-1f3ff.png","sheet_x":13,"sheet_y":46,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN FARMER","unified":"1F468-200D-1F33E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f33e.png","sheet_x":13,"sheet_y":47,"short_name":"male-farmer","short_names":["male-farmer"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":299,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F33E","non_qualified":null,"image":"1f468-1f3fb-200d-1f33e.png","sheet_x":13,"sheet_y":48,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F468-1F3FC-200D-1F33E","non_qualified":null,"image":"1f468-1f3fc-200d-1f33e.png","sheet_x":13,"sheet_y":49,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F468-1F3FD-200D-1F33E","non_qualified":null,"image":"1f468-1f3fd-200d-1f33e.png","sheet_x":13,"sheet_y":50,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F468-1F3FE-200D-1F33E","non_qualified":null,"image":"1f468-1f3fe-200d-1f33e.png","sheet_x":13,"sheet_y":51,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F468-1F3FF-200D-1F33E","non_qualified":null,"image":"1f468-1f3ff-200d-1f33e.png","sheet_x":13,"sheet_y":52,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN COOK","unified":"1F468-200D-1F373","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f373.png","sheet_x":13,"sheet_y":53,"short_name":"male-cook","short_names":["male-cook"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":302,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F373","non_qualified":null,"image":"1f468-1f3fb-200d-1f373.png","sheet_x":13,"sheet_y":54,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F468-1F3FC-200D-1F373","non_qualified":null,"image":"1f468-1f3fc-200d-1f373.png","sheet_x":13,"sheet_y":55,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F468-1F3FD-200D-1F373","non_qualified":null,"image":"1f468-1f3fd-200d-1f373.png","sheet_x":13,"sheet_y":56,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F468-1F3FE-200D-1F373","non_qualified":null,"image":"1f468-1f3fe-200d-1f373.png","sheet_x":13,"sheet_y":57,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F468-1F3FF-200D-1F373","non_qualified":null,"image":"1f468-1f3ff-200d-1f373.png","sheet_x":13,"sheet_y":58,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN FEEDING BABY","unified":"1F468-200D-1F37C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f37c.png","sheet_x":13,"sheet_y":59,"short_name":"man_feeding_baby","short_names":["man_feeding_baby"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":366,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F37C","non_qualified":null,"image":"1f468-1f3fb-200d-1f37c.png","sheet_x":13,"sheet_y":60,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F468-1F3FC-200D-1F37C","non_qualified":null,"image":"1f468-1f3fc-200d-1f37c.png","sheet_x":14,"sheet_y":0,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F468-1F3FD-200D-1F37C","non_qualified":null,"image":"1f468-1f3fd-200d-1f37c.png","sheet_x":14,"sheet_y":1,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F468-1F3FE-200D-1F37C","non_qualified":null,"image":"1f468-1f3fe-200d-1f37c.png","sheet_x":14,"sheet_y":2,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F468-1F3FF-200D-1F37C","non_qualified":null,"image":"1f468-1f3ff-200d-1f37c.png","sheet_x":14,"sheet_y":3,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN STUDENT","unified":"1F468-200D-1F393","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f393.png","sheet_x":14,"sheet_y":4,"short_name":"male-student","short_names":["male-student"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":290,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F393","non_qualified":null,"image":"1f468-1f3fb-200d-1f393.png","sheet_x":14,"sheet_y":5,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F468-1F3FC-200D-1F393","non_qualified":null,"image":"1f468-1f3fc-200d-1f393.png","sheet_x":14,"sheet_y":6,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F468-1F3FD-200D-1F393","non_qualified":null,"image":"1f468-1f3fd-200d-1f393.png","sheet_x":14,"sheet_y":7,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F468-1F3FE-200D-1F393","non_qualified":null,"image":"1f468-1f3fe-200d-1f393.png","sheet_x":14,"sheet_y":8,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F468-1F3FF-200D-1F393","non_qualified":null,"image":"1f468-1f3ff-200d-1f393.png","sheet_x":14,"sheet_y":9,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN SINGER","unified":"1F468-200D-1F3A4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f3a4.png","sheet_x":14,"sheet_y":10,"short_name":"male-singer","short_names":["male-singer"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":320,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F3A4","non_qualified":null,"image":"1f468-1f3fb-200d-1f3a4.png","sheet_x":14,"sheet_y":11,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F468-1F3FC-200D-1F3A4","non_qualified":null,"image":"1f468-1f3fc-200d-1f3a4.png","sheet_x":14,"sheet_y":12,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F468-1F3FD-200D-1F3A4","non_qualified":null,"image":"1f468-1f3fd-200d-1f3a4.png","sheet_x":14,"sheet_y":13,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F468-1F3FE-200D-1F3A4","non_qualified":null,"image":"1f468-1f3fe-200d-1f3a4.png","sheet_x":14,"sheet_y":14,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F468-1F3FF-200D-1F3A4","non_qualified":null,"image":"1f468-1f3ff-200d-1f3a4.png","sheet_x":14,"sheet_y":15,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN ARTIST","unified":"1F468-200D-1F3A8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f3a8.png","sheet_x":14,"sheet_y":16,"short_name":"male-artist","short_names":["male-artist"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":323,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F3A8","non_qualified":null,"image":"1f468-1f3fb-200d-1f3a8.png","sheet_x":14,"sheet_y":17,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F468-1F3FC-200D-1F3A8","non_qualified":null,"image":"1f468-1f3fc-200d-1f3a8.png","sheet_x":14,"sheet_y":18,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F468-1F3FD-200D-1F3A8","non_qualified":null,"image":"1f468-1f3fd-200d-1f3a8.png","sheet_x":14,"sheet_y":19,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F468-1F3FE-200D-1F3A8","non_qualified":null,"image":"1f468-1f3fe-200d-1f3a8.png","sheet_x":14,"sheet_y":20,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F468-1F3FF-200D-1F3A8","non_qualified":null,"image":"1f468-1f3ff-200d-1f3a8.png","sheet_x":14,"sheet_y":21,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN TEACHER","unified":"1F468-200D-1F3EB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f3eb.png","sheet_x":14,"sheet_y":22,"short_name":"male-teacher","short_names":["male-teacher"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":293,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F3EB","non_qualified":null,"image":"1f468-1f3fb-200d-1f3eb.png","sheet_x":14,"sheet_y":23,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F468-1F3FC-200D-1F3EB","non_qualified":null,"image":"1f468-1f3fc-200d-1f3eb.png","sheet_x":14,"sheet_y":24,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F468-1F3FD-200D-1F3EB","non_qualified":null,"image":"1f468-1f3fd-200d-1f3eb.png","sheet_x":14,"sheet_y":25,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F468-1F3FE-200D-1F3EB","non_qualified":null,"image":"1f468-1f3fe-200d-1f3eb.png","sheet_x":14,"sheet_y":26,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F468-1F3FF-200D-1F3EB","non_qualified":null,"image":"1f468-1f3ff-200d-1f3eb.png","sheet_x":14,"sheet_y":27,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN FACTORY WORKER","unified":"1F468-200D-1F3ED","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f3ed.png","sheet_x":14,"sheet_y":28,"short_name":"male-factory-worker","short_names":["male-factory-worker"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":308,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F3ED","non_qualified":null,"image":"1f468-1f3fb-200d-1f3ed.png","sheet_x":14,"sheet_y":29,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F468-1F3FC-200D-1F3ED","non_qualified":null,"image":"1f468-1f3fc-200d-1f3ed.png","sheet_x":14,"sheet_y":30,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F468-1F3FD-200D-1F3ED","non_qualified":null,"image":"1f468-1f3fd-200d-1f3ed.png","sheet_x":14,"sheet_y":31,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F468-1F3FE-200D-1F3ED","non_qualified":null,"image":"1f468-1f3fe-200d-1f3ed.png","sheet_x":14,"sheet_y":32,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F468-1F3FF-200D-1F3ED","non_qualified":null,"image":"1f468-1f3ff-200d-1f3ed.png","sheet_x":14,"sheet_y":33,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"FAMILY: MAN, BOY, BOY","unified":"1F468-200D-1F466-200D-1F466","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f466-200d-1f466.png","sheet_x":14,"sheet_y":34,"short_name":"man-boy-boy","short_names":["man-boy-boy"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":516,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"FAMILY: MAN, BOY","unified":"1F468-200D-1F466","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f466.png","sheet_x":14,"sheet_y":35,"short_name":"man-boy","short_names":["man-boy"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":515,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"FAMILY: MAN, GIRL, BOY","unified":"1F468-200D-1F467-200D-1F466","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f467-200d-1f466.png","sheet_x":14,"sheet_y":36,"short_name":"man-girl-boy","short_names":["man-girl-boy"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":518,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"FAMILY: MAN, GIRL, GIRL","unified":"1F468-200D-1F467-200D-1F467","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f467-200d-1f467.png","sheet_x":14,"sheet_y":37,"short_name":"man-girl-girl","short_names":["man-girl-girl"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":519,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"FAMILY: MAN, GIRL","unified":"1F468-200D-1F467","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f467.png","sheet_x":14,"sheet_y":38,"short_name":"man-girl","short_names":["man-girl"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":517,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"FAMILY: MAN, MAN, BOY","unified":"1F468-200D-1F468-200D-1F466","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f468-200d-1f466.png","sheet_x":14,"sheet_y":39,"short_name":"man-man-boy","short_names":["man-man-boy"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":505,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"FAMILY: MAN, MAN, BOY, BOY","unified":"1F468-200D-1F468-200D-1F466-200D-1F466","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f468-200d-1f466-200d-1f466.png","sheet_x":14,"sheet_y":40,"short_name":"man-man-boy-boy","short_names":["man-man-boy-boy"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":508,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"FAMILY: MAN, MAN, GIRL","unified":"1F468-200D-1F468-200D-1F467","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f468-200d-1f467.png","sheet_x":14,"sheet_y":41,"short_name":"man-man-girl","short_names":["man-man-girl"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":506,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"FAMILY: MAN, MAN, GIRL, BOY","unified":"1F468-200D-1F468-200D-1F467-200D-1F466","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f468-200d-1f467-200d-1f466.png","sheet_x":14,"sheet_y":42,"short_name":"man-man-girl-boy","short_names":["man-man-girl-boy"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":507,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"FAMILY: MAN, MAN, GIRL, GIRL","unified":"1F468-200D-1F468-200D-1F467-200D-1F467","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f468-200d-1f467-200d-1f467.png","sheet_x":14,"sheet_y":43,"short_name":"man-man-girl-girl","short_names":["man-man-girl-girl"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":509,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"FAMILY: MAN, WOMAN, BOY","unified":"1F468-200D-1F469-200D-1F466","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f469-200d-1f466.png","sheet_x":14,"sheet_y":44,"short_name":"man-woman-boy","short_names":["man-woman-boy"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":500,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false,"obsoletes":"1F46A"},{"name":"FAMILY: MAN, WOMAN, BOY, BOY","unified":"1F468-200D-1F469-200D-1F466-200D-1F466","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f469-200d-1f466-200d-1f466.png","sheet_x":14,"sheet_y":45,"short_name":"man-woman-boy-boy","short_names":["man-woman-boy-boy"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":503,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"FAMILY: MAN, WOMAN, GIRL","unified":"1F468-200D-1F469-200D-1F467","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f469-200d-1f467.png","sheet_x":14,"sheet_y":46,"short_name":"man-woman-girl","short_names":["man-woman-girl"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":501,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"FAMILY: MAN, WOMAN, GIRL, BOY","unified":"1F468-200D-1F469-200D-1F467-200D-1F466","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f469-200d-1f467-200d-1f466.png","sheet_x":14,"sheet_y":47,"short_name":"man-woman-girl-boy","short_names":["man-woman-girl-boy"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":502,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"FAMILY: MAN, WOMAN, GIRL, GIRL","unified":"1F468-200D-1F469-200D-1F467-200D-1F467","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f469-200d-1f467-200d-1f467.png","sheet_x":14,"sheet_y":48,"short_name":"man-woman-girl-girl","short_names":["man-woman-girl-girl"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":504,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"MAN TECHNOLOGIST","unified":"1F468-200D-1F4BB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f4bb.png","sheet_x":14,"sheet_y":49,"short_name":"male-technologist","short_names":["male-technologist"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":317,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false,"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F4BB","non_qualified":null,"image":"1f468-1f3fb-200d-1f4bb.png","sheet_x":14,"sheet_y":50,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC":{"unified":"1F468-1F3FC-200D-1F4BB","non_qualified":null,"image":"1f468-1f3fc-200d-1f4bb.png","sheet_x":14,"sheet_y":51,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD":{"unified":"1F468-1F3FD-200D-1F4BB","non_qualified":null,"image":"1f468-1f3fd-200d-1f4bb.png","sheet_x":14,"sheet_y":52,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE":{"unified":"1F468-1F3FE-200D-1F4BB","non_qualified":null,"image":"1f468-1f3fe-200d-1f4bb.png","sheet_x":14,"sheet_y":53,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF":{"unified":"1F468-1F3FF-200D-1F4BB","non_qualified":null,"image":"1f468-1f3ff-200d-1f4bb.png","sheet_x":14,"sheet_y":54,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false}}},{"name":"MAN OFFICE WORKER","unified":"1F468-200D-1F4BC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f4bc.png","sheet_x":14,"sheet_y":55,"short_name":"male-office-worker","short_names":["male-office-worker"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":311,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F4BC","non_qualified":null,"image":"1f468-1f3fb-200d-1f4bc.png","sheet_x":14,"sheet_y":56,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F468-1F3FC-200D-1F4BC","non_qualified":null,"image":"1f468-1f3fc-200d-1f4bc.png","sheet_x":14,"sheet_y":57,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F468-1F3FD-200D-1F4BC","non_qualified":null,"image":"1f468-1f3fd-200d-1f4bc.png","sheet_x":14,"sheet_y":58,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F468-1F3FE-200D-1F4BC","non_qualified":null,"image":"1f468-1f3fe-200d-1f4bc.png","sheet_x":14,"sheet_y":59,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F468-1F3FF-200D-1F4BC","non_qualified":null,"image":"1f468-1f3ff-200d-1f4bc.png","sheet_x":14,"sheet_y":60,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN MECHANIC","unified":"1F468-200D-1F527","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f527.png","sheet_x":15,"sheet_y":0,"short_name":"male-mechanic","short_names":["male-mechanic"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":305,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F527","non_qualified":null,"image":"1f468-1f3fb-200d-1f527.png","sheet_x":15,"sheet_y":1,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F468-1F3FC-200D-1F527","non_qualified":null,"image":"1f468-1f3fc-200d-1f527.png","sheet_x":15,"sheet_y":2,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F468-1F3FD-200D-1F527","non_qualified":null,"image":"1f468-1f3fd-200d-1f527.png","sheet_x":15,"sheet_y":3,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F468-1F3FE-200D-1F527","non_qualified":null,"image":"1f468-1f3fe-200d-1f527.png","sheet_x":15,"sheet_y":4,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F468-1F3FF-200D-1F527","non_qualified":null,"image":"1f468-1f3ff-200d-1f527.png","sheet_x":15,"sheet_y":5,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN SCIENTIST","unified":"1F468-200D-1F52C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f52c.png","sheet_x":15,"sheet_y":6,"short_name":"male-scientist","short_names":["male-scientist"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":314,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F52C","non_qualified":null,"image":"1f468-1f3fb-200d-1f52c.png","sheet_x":15,"sheet_y":7,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F468-1F3FC-200D-1F52C","non_qualified":null,"image":"1f468-1f3fc-200d-1f52c.png","sheet_x":15,"sheet_y":8,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F468-1F3FD-200D-1F52C","non_qualified":null,"image":"1f468-1f3fd-200d-1f52c.png","sheet_x":15,"sheet_y":9,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F468-1F3FE-200D-1F52C","non_qualified":null,"image":"1f468-1f3fe-200d-1f52c.png","sheet_x":15,"sheet_y":10,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F468-1F3FF-200D-1F52C","non_qualified":null,"image":"1f468-1f3ff-200d-1f52c.png","sheet_x":15,"sheet_y":11,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN ASTRONAUT","unified":"1F468-200D-1F680","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f680.png","sheet_x":15,"sheet_y":12,"short_name":"male-astronaut","short_names":["male-astronaut"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":329,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F680","non_qualified":null,"image":"1f468-1f3fb-200d-1f680.png","sheet_x":15,"sheet_y":13,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F468-1F3FC-200D-1F680","non_qualified":null,"image":"1f468-1f3fc-200d-1f680.png","sheet_x":15,"sheet_y":14,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F468-1F3FD-200D-1F680","non_qualified":null,"image":"1f468-1f3fd-200d-1f680.png","sheet_x":15,"sheet_y":15,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F468-1F3FE-200D-1F680","non_qualified":null,"image":"1f468-1f3fe-200d-1f680.png","sheet_x":15,"sheet_y":16,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F468-1F3FF-200D-1F680","non_qualified":null,"image":"1f468-1f3ff-200d-1f680.png","sheet_x":15,"sheet_y":17,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN FIREFIGHTER","unified":"1F468-200D-1F692","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f692.png","sheet_x":15,"sheet_y":18,"short_name":"male-firefighter","short_names":["male-firefighter"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":332,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F692","non_qualified":null,"image":"1f468-1f3fb-200d-1f692.png","sheet_x":15,"sheet_y":19,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F468-1F3FC-200D-1F692","non_qualified":null,"image":"1f468-1f3fc-200d-1f692.png","sheet_x":15,"sheet_y":20,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F468-1F3FD-200D-1F692","non_qualified":null,"image":"1f468-1f3fd-200d-1f692.png","sheet_x":15,"sheet_y":21,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F468-1F3FE-200D-1F692","non_qualified":null,"image":"1f468-1f3fe-200d-1f692.png","sheet_x":15,"sheet_y":22,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F468-1F3FF-200D-1F692","non_qualified":null,"image":"1f468-1f3ff-200d-1f692.png","sheet_x":15,"sheet_y":23,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN WITH WHITE CANE","unified":"1F468-200D-1F9AF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f9af.png","sheet_x":15,"sheet_y":24,"short_name":"man_with_probing_cane","short_names":["man_with_probing_cane"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":416,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F9AF","non_qualified":null,"image":"1f468-1f3fb-200d-1f9af.png","sheet_x":15,"sheet_y":25,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F468-1F3FC-200D-1F9AF","non_qualified":null,"image":"1f468-1f3fc-200d-1f9af.png","sheet_x":15,"sheet_y":26,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F468-1F3FD-200D-1F9AF","non_qualified":null,"image":"1f468-1f3fd-200d-1f9af.png","sheet_x":15,"sheet_y":27,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F468-1F3FE-200D-1F9AF","non_qualified":null,"image":"1f468-1f3fe-200d-1f9af.png","sheet_x":15,"sheet_y":28,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F468-1F3FF-200D-1F9AF","non_qualified":null,"image":"1f468-1f3ff-200d-1f9af.png","sheet_x":15,"sheet_y":29,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN: RED HAIR","unified":"1F468-200D-1F9B0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f9b0.png","sheet_x":15,"sheet_y":30,"short_name":"red_haired_man","short_names":["red_haired_man"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":238,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F9B0","non_qualified":null,"image":"1f468-1f3fb-200d-1f9b0.png","sheet_x":15,"sheet_y":31,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F468-1F3FC-200D-1F9B0","non_qualified":null,"image":"1f468-1f3fc-200d-1f9b0.png","sheet_x":15,"sheet_y":32,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F468-1F3FD-200D-1F9B0","non_qualified":null,"image":"1f468-1f3fd-200d-1f9b0.png","sheet_x":15,"sheet_y":33,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F468-1F3FE-200D-1F9B0","non_qualified":null,"image":"1f468-1f3fe-200d-1f9b0.png","sheet_x":15,"sheet_y":34,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F468-1F3FF-200D-1F9B0","non_qualified":null,"image":"1f468-1f3ff-200d-1f9b0.png","sheet_x":15,"sheet_y":35,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN: CURLY HAIR","unified":"1F468-200D-1F9B1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f9b1.png","sheet_x":15,"sheet_y":36,"short_name":"curly_haired_man","short_names":["curly_haired_man"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":239,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F9B1","non_qualified":null,"image":"1f468-1f3fb-200d-1f9b1.png","sheet_x":15,"sheet_y":37,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F468-1F3FC-200D-1F9B1","non_qualified":null,"image":"1f468-1f3fc-200d-1f9b1.png","sheet_x":15,"sheet_y":38,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F468-1F3FD-200D-1F9B1","non_qualified":null,"image":"1f468-1f3fd-200d-1f9b1.png","sheet_x":15,"sheet_y":39,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F468-1F3FE-200D-1F9B1","non_qualified":null,"image":"1f468-1f3fe-200d-1f9b1.png","sheet_x":15,"sheet_y":40,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F468-1F3FF-200D-1F9B1","non_qualified":null,"image":"1f468-1f3ff-200d-1f9b1.png","sheet_x":15,"sheet_y":41,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN: BALD","unified":"1F468-200D-1F9B2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f9b2.png","sheet_x":15,"sheet_y":42,"short_name":"bald_man","short_names":["bald_man"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":241,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F9B2","non_qualified":null,"image":"1f468-1f3fb-200d-1f9b2.png","sheet_x":15,"sheet_y":43,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F468-1F3FC-200D-1F9B2","non_qualified":null,"image":"1f468-1f3fc-200d-1f9b2.png","sheet_x":15,"sheet_y":44,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F468-1F3FD-200D-1F9B2","non_qualified":null,"image":"1f468-1f3fd-200d-1f9b2.png","sheet_x":15,"sheet_y":45,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F468-1F3FE-200D-1F9B2","non_qualified":null,"image":"1f468-1f3fe-200d-1f9b2.png","sheet_x":15,"sheet_y":46,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F468-1F3FF-200D-1F9B2","non_qualified":null,"image":"1f468-1f3ff-200d-1f9b2.png","sheet_x":15,"sheet_y":47,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN: WHITE HAIR","unified":"1F468-200D-1F9B3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f9b3.png","sheet_x":15,"sheet_y":48,"short_name":"white_haired_man","short_names":["white_haired_man"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":240,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F9B3","non_qualified":null,"image":"1f468-1f3fb-200d-1f9b3.png","sheet_x":15,"sheet_y":49,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F468-1F3FC-200D-1F9B3","non_qualified":null,"image":"1f468-1f3fc-200d-1f9b3.png","sheet_x":15,"sheet_y":50,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F468-1F3FD-200D-1F9B3","non_qualified":null,"image":"1f468-1f3fd-200d-1f9b3.png","sheet_x":15,"sheet_y":51,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F468-1F3FE-200D-1F9B3","non_qualified":null,"image":"1f468-1f3fe-200d-1f9b3.png","sheet_x":15,"sheet_y":52,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F468-1F3FF-200D-1F9B3","non_qualified":null,"image":"1f468-1f3ff-200d-1f9b3.png","sheet_x":15,"sheet_y":53,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN IN MOTORIZED WHEELCHAIR","unified":"1F468-200D-1F9BC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f9bc.png","sheet_x":15,"sheet_y":54,"short_name":"man_in_motorized_wheelchair","short_names":["man_in_motorized_wheelchair"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":419,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F9BC","non_qualified":null,"image":"1f468-1f3fb-200d-1f9bc.png","sheet_x":15,"sheet_y":55,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F468-1F3FC-200D-1F9BC","non_qualified":null,"image":"1f468-1f3fc-200d-1f9bc.png","sheet_x":15,"sheet_y":56,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F468-1F3FD-200D-1F9BC","non_qualified":null,"image":"1f468-1f3fd-200d-1f9bc.png","sheet_x":15,"sheet_y":57,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F468-1F3FE-200D-1F9BC","non_qualified":null,"image":"1f468-1f3fe-200d-1f9bc.png","sheet_x":15,"sheet_y":58,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F468-1F3FF-200D-1F9BC","non_qualified":null,"image":"1f468-1f3ff-200d-1f9bc.png","sheet_x":15,"sheet_y":59,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN IN MANUAL WHEELCHAIR","unified":"1F468-200D-1F9BD","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f9bd.png","sheet_x":15,"sheet_y":60,"short_name":"man_in_manual_wheelchair","short_names":["man_in_manual_wheelchair"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":422,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-1F9BD","non_qualified":null,"image":"1f468-1f3fb-200d-1f9bd.png","sheet_x":16,"sheet_y":0,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F468-1F3FC-200D-1F9BD","non_qualified":null,"image":"1f468-1f3fc-200d-1f9bd.png","sheet_x":16,"sheet_y":1,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F468-1F3FD-200D-1F9BD","non_qualified":null,"image":"1f468-1f3fd-200d-1f9bd.png","sheet_x":16,"sheet_y":2,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F468-1F3FE-200D-1F9BD","non_qualified":null,"image":"1f468-1f3fe-200d-1f9bd.png","sheet_x":16,"sheet_y":3,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F468-1F3FF-200D-1F9BD","non_qualified":null,"image":"1f468-1f3ff-200d-1f9bd.png","sheet_x":16,"sheet_y":4,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN HEALTH WORKER","unified":"1F468-200D-2695-FE0F","non_qualified":"1F468-200D-2695","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-2695-fe0f.png","sheet_x":16,"sheet_y":5,"short_name":"male-doctor","short_names":["male-doctor"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":287,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-2695-FE0F","non_qualified":"1F468-1F3FB-200D-2695","image":"1f468-1f3fb-200d-2695-fe0f.png","sheet_x":16,"sheet_y":6,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F468-1F3FC-200D-2695-FE0F","non_qualified":"1F468-1F3FC-200D-2695","image":"1f468-1f3fc-200d-2695-fe0f.png","sheet_x":16,"sheet_y":7,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F468-1F3FD-200D-2695-FE0F","non_qualified":"1F468-1F3FD-200D-2695","image":"1f468-1f3fd-200d-2695-fe0f.png","sheet_x":16,"sheet_y":8,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F468-1F3FE-200D-2695-FE0F","non_qualified":"1F468-1F3FE-200D-2695","image":"1f468-1f3fe-200d-2695-fe0f.png","sheet_x":16,"sheet_y":9,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F468-1F3FF-200D-2695-FE0F","non_qualified":"1F468-1F3FF-200D-2695","image":"1f468-1f3ff-200d-2695-fe0f.png","sheet_x":16,"sheet_y":10,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN JUDGE","unified":"1F468-200D-2696-FE0F","non_qualified":"1F468-200D-2696","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-2696-fe0f.png","sheet_x":16,"sheet_y":11,"short_name":"male-judge","short_names":["male-judge"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":296,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-2696-FE0F","non_qualified":"1F468-1F3FB-200D-2696","image":"1f468-1f3fb-200d-2696-fe0f.png","sheet_x":16,"sheet_y":12,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F468-1F3FC-200D-2696-FE0F","non_qualified":"1F468-1F3FC-200D-2696","image":"1f468-1f3fc-200d-2696-fe0f.png","sheet_x":16,"sheet_y":13,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F468-1F3FD-200D-2696-FE0F","non_qualified":"1F468-1F3FD-200D-2696","image":"1f468-1f3fd-200d-2696-fe0f.png","sheet_x":16,"sheet_y":14,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F468-1F3FE-200D-2696-FE0F","non_qualified":"1F468-1F3FE-200D-2696","image":"1f468-1f3fe-200d-2696-fe0f.png","sheet_x":16,"sheet_y":15,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F468-1F3FF-200D-2696-FE0F","non_qualified":"1F468-1F3FF-200D-2696","image":"1f468-1f3ff-200d-2696-fe0f.png","sheet_x":16,"sheet_y":16,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN PILOT","unified":"1F468-200D-2708-FE0F","non_qualified":"1F468-200D-2708","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-2708-fe0f.png","sheet_x":16,"sheet_y":17,"short_name":"male-pilot","short_names":["male-pilot"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":326,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB-200D-2708-FE0F","non_qualified":"1F468-1F3FB-200D-2708","image":"1f468-1f3fb-200d-2708-fe0f.png","sheet_x":16,"sheet_y":18,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F468-1F3FC-200D-2708-FE0F","non_qualified":"1F468-1F3FC-200D-2708","image":"1f468-1f3fc-200d-2708-fe0f.png","sheet_x":16,"sheet_y":19,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F468-1F3FD-200D-2708-FE0F","non_qualified":"1F468-1F3FD-200D-2708","image":"1f468-1f3fd-200d-2708-fe0f.png","sheet_x":16,"sheet_y":20,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F468-1F3FE-200D-2708-FE0F","non_qualified":"1F468-1F3FE-200D-2708","image":"1f468-1f3fe-200d-2708-fe0f.png","sheet_x":16,"sheet_y":21,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F468-1F3FF-200D-2708-FE0F","non_qualified":"1F468-1F3FF-200D-2708","image":"1f468-1f3ff-200d-2708-fe0f.png","sheet_x":16,"sheet_y":22,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"COUPLE WITH HEART: MAN, MAN","unified":"1F468-200D-2764-FE0F-200D-1F468","non_qualified":"1F468-200D-2764-200D-1F468","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-2764-fe0f-200d-1f468.png","sheet_x":16,"sheet_y":23,"short_name":"man-heart-man","short_names":["man-heart-man"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":497,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false,"skin_variations":{"1F3FB-1F3FB":{"unified":"1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FB","non_qualified":"1F468-1F3FB-200D-2764-200D-1F468-1F3FB","image":"1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fb.png","sheet_x":16,"sheet_y":24,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FC":{"unified":"1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FC","non_qualified":"1F468-1F3FB-200D-2764-200D-1F468-1F3FC","image":"1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fc.png","sheet_x":16,"sheet_y":25,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FD":{"unified":"1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FD","non_qualified":"1F468-1F3FB-200D-2764-200D-1F468-1F3FD","image":"1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fd.png","sheet_x":16,"sheet_y":26,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FE":{"unified":"1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FE","non_qualified":"1F468-1F3FB-200D-2764-200D-1F468-1F3FE","image":"1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fe.png","sheet_x":16,"sheet_y":27,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FF":{"unified":"1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FF","non_qualified":"1F468-1F3FB-200D-2764-200D-1F468-1F3FF","image":"1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3ff.png","sheet_x":16,"sheet_y":28,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FB":{"unified":"1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FB","non_qualified":"1F468-1F3FC-200D-2764-200D-1F468-1F3FB","image":"1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fb.png","sheet_x":16,"sheet_y":29,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FC":{"unified":"1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FC","non_qualified":"1F468-1F3FC-200D-2764-200D-1F468-1F3FC","image":"1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fc.png","sheet_x":16,"sheet_y":30,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FD":{"unified":"1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FD","non_qualified":"1F468-1F3FC-200D-2764-200D-1F468-1F3FD","image":"1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fd.png","sheet_x":16,"sheet_y":31,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FE":{"unified":"1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FE","non_qualified":"1F468-1F3FC-200D-2764-200D-1F468-1F3FE","image":"1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fe.png","sheet_x":16,"sheet_y":32,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FF":{"unified":"1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FF","non_qualified":"1F468-1F3FC-200D-2764-200D-1F468-1F3FF","image":"1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3ff.png","sheet_x":16,"sheet_y":33,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FB":{"unified":"1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FB","non_qualified":"1F468-1F3FD-200D-2764-200D-1F468-1F3FB","image":"1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fb.png","sheet_x":16,"sheet_y":34,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FC":{"unified":"1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FC","non_qualified":"1F468-1F3FD-200D-2764-200D-1F468-1F3FC","image":"1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fc.png","sheet_x":16,"sheet_y":35,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FD":{"unified":"1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FD","non_qualified":"1F468-1F3FD-200D-2764-200D-1F468-1F3FD","image":"1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fd.png","sheet_x":16,"sheet_y":36,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FE":{"unified":"1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FE","non_qualified":"1F468-1F3FD-200D-2764-200D-1F468-1F3FE","image":"1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fe.png","sheet_x":16,"sheet_y":37,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FF":{"unified":"1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FF","non_qualified":"1F468-1F3FD-200D-2764-200D-1F468-1F3FF","image":"1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3ff.png","sheet_x":16,"sheet_y":38,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FB":{"unified":"1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FB","non_qualified":"1F468-1F3FE-200D-2764-200D-1F468-1F3FB","image":"1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fb.png","sheet_x":16,"sheet_y":39,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FC":{"unified":"1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FC","non_qualified":"1F468-1F3FE-200D-2764-200D-1F468-1F3FC","image":"1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fc.png","sheet_x":16,"sheet_y":40,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FD":{"unified":"1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FD","non_qualified":"1F468-1F3FE-200D-2764-200D-1F468-1F3FD","image":"1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fd.png","sheet_x":16,"sheet_y":41,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FE":{"unified":"1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FE","non_qualified":"1F468-1F3FE-200D-2764-200D-1F468-1F3FE","image":"1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fe.png","sheet_x":16,"sheet_y":42,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FF":{"unified":"1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FF","non_qualified":"1F468-1F3FE-200D-2764-200D-1F468-1F3FF","image":"1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3ff.png","sheet_x":16,"sheet_y":43,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FB":{"unified":"1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FB","non_qualified":"1F468-1F3FF-200D-2764-200D-1F468-1F3FB","image":"1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fb.png","sheet_x":16,"sheet_y":44,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FC":{"unified":"1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FC","non_qualified":"1F468-1F3FF-200D-2764-200D-1F468-1F3FC","image":"1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fc.png","sheet_x":16,"sheet_y":45,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FD":{"unified":"1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FD","non_qualified":"1F468-1F3FF-200D-2764-200D-1F468-1F3FD","image":"1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fd.png","sheet_x":16,"sheet_y":46,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FE":{"unified":"1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FE","non_qualified":"1F468-1F3FF-200D-2764-200D-1F468-1F3FE","image":"1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fe.png","sheet_x":16,"sheet_y":47,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FF":{"unified":"1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FF","non_qualified":"1F468-1F3FF-200D-2764-200D-1F468-1F3FF","image":"1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3ff.png","sheet_x":16,"sheet_y":48,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false}}},{"name":"KISS: MAN, MAN","unified":"1F468-200D-2764-FE0F-200D-1F48B-200D-1F468","non_qualified":"1F468-200D-2764-200D-1F48B-200D-1F468","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.png","sheet_x":16,"sheet_y":49,"short_name":"man-kiss-man","short_names":["man-kiss-man"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":493,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false,"skin_variations":{"1F3FB-1F3FB":{"unified":"1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB","non_qualified":"1F468-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FB","image":"1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png","sheet_x":16,"sheet_y":50,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FC":{"unified":"1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC","non_qualified":"1F468-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FC","image":"1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png","sheet_x":16,"sheet_y":51,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FD":{"unified":"1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD","non_qualified":"1F468-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FD","image":"1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png","sheet_x":16,"sheet_y":52,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FE":{"unified":"1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE","non_qualified":"1F468-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FE","image":"1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png","sheet_x":16,"sheet_y":53,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FF":{"unified":"1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF","non_qualified":"1F468-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FF","image":"1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png","sheet_x":16,"sheet_y":54,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FB":{"unified":"1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB","non_qualified":"1F468-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FB","image":"1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png","sheet_x":16,"sheet_y":55,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FC":{"unified":"1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC","non_qualified":"1F468-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FC","image":"1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png","sheet_x":16,"sheet_y":56,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FD":{"unified":"1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD","non_qualified":"1F468-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FD","image":"1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png","sheet_x":16,"sheet_y":57,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FE":{"unified":"1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE","non_qualified":"1F468-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FE","image":"1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png","sheet_x":16,"sheet_y":58,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FF":{"unified":"1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF","non_qualified":"1F468-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FF","image":"1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png","sheet_x":16,"sheet_y":59,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FB":{"unified":"1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB","non_qualified":"1F468-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FB","image":"1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png","sheet_x":16,"sheet_y":60,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FC":{"unified":"1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC","non_qualified":"1F468-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FC","image":"1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png","sheet_x":17,"sheet_y":0,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FD":{"unified":"1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD","non_qualified":"1F468-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FD","image":"1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png","sheet_x":17,"sheet_y":1,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FE":{"unified":"1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE","non_qualified":"1F468-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FE","image":"1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png","sheet_x":17,"sheet_y":2,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FF":{"unified":"1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF","non_qualified":"1F468-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FF","image":"1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png","sheet_x":17,"sheet_y":3,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FB":{"unified":"1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB","non_qualified":"1F468-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FB","image":"1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png","sheet_x":17,"sheet_y":4,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FC":{"unified":"1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC","non_qualified":"1F468-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FC","image":"1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png","sheet_x":17,"sheet_y":5,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FD":{"unified":"1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD","non_qualified":"1F468-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FD","image":"1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png","sheet_x":17,"sheet_y":6,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FE":{"unified":"1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE","non_qualified":"1F468-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FE","image":"1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png","sheet_x":17,"sheet_y":7,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FF":{"unified":"1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF","non_qualified":"1F468-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FF","image":"1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png","sheet_x":17,"sheet_y":8,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FB":{"unified":"1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB","non_qualified":"1F468-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FB","image":"1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png","sheet_x":17,"sheet_y":9,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FC":{"unified":"1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC","non_qualified":"1F468-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FC","image":"1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png","sheet_x":17,"sheet_y":10,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FD":{"unified":"1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD","non_qualified":"1F468-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FD","image":"1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png","sheet_x":17,"sheet_y":11,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FE":{"unified":"1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE","non_qualified":"1F468-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FE","image":"1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png","sheet_x":17,"sheet_y":12,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FF":{"unified":"1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF","non_qualified":"1F468-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FF","image":"1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png","sheet_x":17,"sheet_y":13,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false}}},{"name":"MAN","unified":"1F468","non_qualified":null,"docomo":"E6F0","au":"E4FC","softbank":"E004","google":"FE19D","image":"1f468.png","sheet_x":17,"sheet_y":14,"short_name":"man","short_names":["man"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":234,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F468-1F3FB","non_qualified":null,"image":"1f468-1f3fb.png","sheet_x":17,"sheet_y":15,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F468-1F3FC","non_qualified":null,"image":"1f468-1f3fc.png","sheet_x":17,"sheet_y":16,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F468-1F3FD","non_qualified":null,"image":"1f468-1f3fd.png","sheet_x":17,"sheet_y":17,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F468-1F3FE","non_qualified":null,"image":"1f468-1f3fe.png","sheet_x":17,"sheet_y":18,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F468-1F3FF","non_qualified":null,"image":"1f468-1f3ff.png","sheet_x":17,"sheet_y":19,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN FARMER","unified":"1F469-200D-1F33E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f33e.png","sheet_x":17,"sheet_y":20,"short_name":"female-farmer","short_names":["female-farmer"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":300,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F33E","non_qualified":null,"image":"1f469-1f3fb-200d-1f33e.png","sheet_x":17,"sheet_y":21,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F469-1F3FC-200D-1F33E","non_qualified":null,"image":"1f469-1f3fc-200d-1f33e.png","sheet_x":17,"sheet_y":22,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F469-1F3FD-200D-1F33E","non_qualified":null,"image":"1f469-1f3fd-200d-1f33e.png","sheet_x":17,"sheet_y":23,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F469-1F3FE-200D-1F33E","non_qualified":null,"image":"1f469-1f3fe-200d-1f33e.png","sheet_x":17,"sheet_y":24,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F469-1F3FF-200D-1F33E","non_qualified":null,"image":"1f469-1f3ff-200d-1f33e.png","sheet_x":17,"sheet_y":25,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN COOK","unified":"1F469-200D-1F373","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f373.png","sheet_x":17,"sheet_y":26,"short_name":"female-cook","short_names":["female-cook"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":303,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F373","non_qualified":null,"image":"1f469-1f3fb-200d-1f373.png","sheet_x":17,"sheet_y":27,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F469-1F3FC-200D-1F373","non_qualified":null,"image":"1f469-1f3fc-200d-1f373.png","sheet_x":17,"sheet_y":28,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F469-1F3FD-200D-1F373","non_qualified":null,"image":"1f469-1f3fd-200d-1f373.png","sheet_x":17,"sheet_y":29,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F469-1F3FE-200D-1F373","non_qualified":null,"image":"1f469-1f3fe-200d-1f373.png","sheet_x":17,"sheet_y":30,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F469-1F3FF-200D-1F373","non_qualified":null,"image":"1f469-1f3ff-200d-1f373.png","sheet_x":17,"sheet_y":31,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN FEEDING BABY","unified":"1F469-200D-1F37C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f37c.png","sheet_x":17,"sheet_y":32,"short_name":"woman_feeding_baby","short_names":["woman_feeding_baby"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":365,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F37C","non_qualified":null,"image":"1f469-1f3fb-200d-1f37c.png","sheet_x":17,"sheet_y":33,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F469-1F3FC-200D-1F37C","non_qualified":null,"image":"1f469-1f3fc-200d-1f37c.png","sheet_x":17,"sheet_y":34,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F469-1F3FD-200D-1F37C","non_qualified":null,"image":"1f469-1f3fd-200d-1f37c.png","sheet_x":17,"sheet_y":35,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F469-1F3FE-200D-1F37C","non_qualified":null,"image":"1f469-1f3fe-200d-1f37c.png","sheet_x":17,"sheet_y":36,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F469-1F3FF-200D-1F37C","non_qualified":null,"image":"1f469-1f3ff-200d-1f37c.png","sheet_x":17,"sheet_y":37,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN STUDENT","unified":"1F469-200D-1F393","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f393.png","sheet_x":17,"sheet_y":38,"short_name":"female-student","short_names":["female-student"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":291,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F393","non_qualified":null,"image":"1f469-1f3fb-200d-1f393.png","sheet_x":17,"sheet_y":39,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F469-1F3FC-200D-1F393","non_qualified":null,"image":"1f469-1f3fc-200d-1f393.png","sheet_x":17,"sheet_y":40,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F469-1F3FD-200D-1F393","non_qualified":null,"image":"1f469-1f3fd-200d-1f393.png","sheet_x":17,"sheet_y":41,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F469-1F3FE-200D-1F393","non_qualified":null,"image":"1f469-1f3fe-200d-1f393.png","sheet_x":17,"sheet_y":42,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F469-1F3FF-200D-1F393","non_qualified":null,"image":"1f469-1f3ff-200d-1f393.png","sheet_x":17,"sheet_y":43,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN SINGER","unified":"1F469-200D-1F3A4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f3a4.png","sheet_x":17,"sheet_y":44,"short_name":"female-singer","short_names":["female-singer"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":321,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F3A4","non_qualified":null,"image":"1f469-1f3fb-200d-1f3a4.png","sheet_x":17,"sheet_y":45,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F469-1F3FC-200D-1F3A4","non_qualified":null,"image":"1f469-1f3fc-200d-1f3a4.png","sheet_x":17,"sheet_y":46,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F469-1F3FD-200D-1F3A4","non_qualified":null,"image":"1f469-1f3fd-200d-1f3a4.png","sheet_x":17,"sheet_y":47,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F469-1F3FE-200D-1F3A4","non_qualified":null,"image":"1f469-1f3fe-200d-1f3a4.png","sheet_x":17,"sheet_y":48,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F469-1F3FF-200D-1F3A4","non_qualified":null,"image":"1f469-1f3ff-200d-1f3a4.png","sheet_x":17,"sheet_y":49,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN ARTIST","unified":"1F469-200D-1F3A8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f3a8.png","sheet_x":17,"sheet_y":50,"short_name":"female-artist","short_names":["female-artist"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":324,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F3A8","non_qualified":null,"image":"1f469-1f3fb-200d-1f3a8.png","sheet_x":17,"sheet_y":51,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F469-1F3FC-200D-1F3A8","non_qualified":null,"image":"1f469-1f3fc-200d-1f3a8.png","sheet_x":17,"sheet_y":52,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F469-1F3FD-200D-1F3A8","non_qualified":null,"image":"1f469-1f3fd-200d-1f3a8.png","sheet_x":17,"sheet_y":53,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F469-1F3FE-200D-1F3A8","non_qualified":null,"image":"1f469-1f3fe-200d-1f3a8.png","sheet_x":17,"sheet_y":54,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F469-1F3FF-200D-1F3A8","non_qualified":null,"image":"1f469-1f3ff-200d-1f3a8.png","sheet_x":17,"sheet_y":55,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN TEACHER","unified":"1F469-200D-1F3EB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f3eb.png","sheet_x":17,"sheet_y":56,"short_name":"female-teacher","short_names":["female-teacher"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":294,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F3EB","non_qualified":null,"image":"1f469-1f3fb-200d-1f3eb.png","sheet_x":17,"sheet_y":57,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F469-1F3FC-200D-1F3EB","non_qualified":null,"image":"1f469-1f3fc-200d-1f3eb.png","sheet_x":17,"sheet_y":58,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F469-1F3FD-200D-1F3EB","non_qualified":null,"image":"1f469-1f3fd-200d-1f3eb.png","sheet_x":17,"sheet_y":59,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F469-1F3FE-200D-1F3EB","non_qualified":null,"image":"1f469-1f3fe-200d-1f3eb.png","sheet_x":17,"sheet_y":60,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F469-1F3FF-200D-1F3EB","non_qualified":null,"image":"1f469-1f3ff-200d-1f3eb.png","sheet_x":18,"sheet_y":0,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN FACTORY WORKER","unified":"1F469-200D-1F3ED","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f3ed.png","sheet_x":18,"sheet_y":1,"short_name":"female-factory-worker","short_names":["female-factory-worker"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":309,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F3ED","non_qualified":null,"image":"1f469-1f3fb-200d-1f3ed.png","sheet_x":18,"sheet_y":2,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F469-1F3FC-200D-1F3ED","non_qualified":null,"image":"1f469-1f3fc-200d-1f3ed.png","sheet_x":18,"sheet_y":3,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F469-1F3FD-200D-1F3ED","non_qualified":null,"image":"1f469-1f3fd-200d-1f3ed.png","sheet_x":18,"sheet_y":4,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F469-1F3FE-200D-1F3ED","non_qualified":null,"image":"1f469-1f3fe-200d-1f3ed.png","sheet_x":18,"sheet_y":5,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F469-1F3FF-200D-1F3ED","non_qualified":null,"image":"1f469-1f3ff-200d-1f3ed.png","sheet_x":18,"sheet_y":6,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"FAMILY: WOMAN, BOY, BOY","unified":"1F469-200D-1F466-200D-1F466","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f466-200d-1f466.png","sheet_x":18,"sheet_y":7,"short_name":"woman-boy-boy","short_names":["woman-boy-boy"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":521,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"FAMILY: WOMAN, BOY","unified":"1F469-200D-1F466","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f466.png","sheet_x":18,"sheet_y":8,"short_name":"woman-boy","short_names":["woman-boy"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":520,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"FAMILY: WOMAN, GIRL, BOY","unified":"1F469-200D-1F467-200D-1F466","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f467-200d-1f466.png","sheet_x":18,"sheet_y":9,"short_name":"woman-girl-boy","short_names":["woman-girl-boy"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":523,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"FAMILY: WOMAN, GIRL, GIRL","unified":"1F469-200D-1F467-200D-1F467","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f467-200d-1f467.png","sheet_x":18,"sheet_y":10,"short_name":"woman-girl-girl","short_names":["woman-girl-girl"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":524,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"FAMILY: WOMAN, GIRL","unified":"1F469-200D-1F467","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f467.png","sheet_x":18,"sheet_y":11,"short_name":"woman-girl","short_names":["woman-girl"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":522,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"FAMILY: WOMAN, WOMAN, BOY","unified":"1F469-200D-1F469-200D-1F466","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f469-200d-1f466.png","sheet_x":18,"sheet_y":12,"short_name":"woman-woman-boy","short_names":["woman-woman-boy"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":510,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"FAMILY: WOMAN, WOMAN, BOY, BOY","unified":"1F469-200D-1F469-200D-1F466-200D-1F466","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f469-200d-1f466-200d-1f466.png","sheet_x":18,"sheet_y":13,"short_name":"woman-woman-boy-boy","short_names":["woman-woman-boy-boy"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":513,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"FAMILY: WOMAN, WOMAN, GIRL","unified":"1F469-200D-1F469-200D-1F467","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f469-200d-1f467.png","sheet_x":18,"sheet_y":14,"short_name":"woman-woman-girl","short_names":["woman-woman-girl"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":511,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"FAMILY: WOMAN, WOMAN, GIRL, BOY","unified":"1F469-200D-1F469-200D-1F467-200D-1F466","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f469-200d-1f467-200d-1f466.png","sheet_x":18,"sheet_y":15,"short_name":"woman-woman-girl-boy","short_names":["woman-woman-girl-boy"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":512,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"FAMILY: WOMAN, WOMAN, GIRL, GIRL","unified":"1F469-200D-1F469-200D-1F467-200D-1F467","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f469-200d-1f467-200d-1f467.png","sheet_x":18,"sheet_y":16,"short_name":"woman-woman-girl-girl","short_names":["woman-woman-girl-girl"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":514,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"WOMAN TECHNOLOGIST","unified":"1F469-200D-1F4BB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f4bb.png","sheet_x":18,"sheet_y":17,"short_name":"female-technologist","short_names":["female-technologist"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":318,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false,"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F4BB","non_qualified":null,"image":"1f469-1f3fb-200d-1f4bb.png","sheet_x":18,"sheet_y":18,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC":{"unified":"1F469-1F3FC-200D-1F4BB","non_qualified":null,"image":"1f469-1f3fc-200d-1f4bb.png","sheet_x":18,"sheet_y":19,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD":{"unified":"1F469-1F3FD-200D-1F4BB","non_qualified":null,"image":"1f469-1f3fd-200d-1f4bb.png","sheet_x":18,"sheet_y":20,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE":{"unified":"1F469-1F3FE-200D-1F4BB","non_qualified":null,"image":"1f469-1f3fe-200d-1f4bb.png","sheet_x":18,"sheet_y":21,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF":{"unified":"1F469-1F3FF-200D-1F4BB","non_qualified":null,"image":"1f469-1f3ff-200d-1f4bb.png","sheet_x":18,"sheet_y":22,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false}}},{"name":"WOMAN OFFICE WORKER","unified":"1F469-200D-1F4BC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f4bc.png","sheet_x":18,"sheet_y":23,"short_name":"female-office-worker","short_names":["female-office-worker"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":312,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F4BC","non_qualified":null,"image":"1f469-1f3fb-200d-1f4bc.png","sheet_x":18,"sheet_y":24,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F469-1F3FC-200D-1F4BC","non_qualified":null,"image":"1f469-1f3fc-200d-1f4bc.png","sheet_x":18,"sheet_y":25,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F469-1F3FD-200D-1F4BC","non_qualified":null,"image":"1f469-1f3fd-200d-1f4bc.png","sheet_x":18,"sheet_y":26,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F469-1F3FE-200D-1F4BC","non_qualified":null,"image":"1f469-1f3fe-200d-1f4bc.png","sheet_x":18,"sheet_y":27,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F469-1F3FF-200D-1F4BC","non_qualified":null,"image":"1f469-1f3ff-200d-1f4bc.png","sheet_x":18,"sheet_y":28,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN MECHANIC","unified":"1F469-200D-1F527","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f527.png","sheet_x":18,"sheet_y":29,"short_name":"female-mechanic","short_names":["female-mechanic"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":306,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F527","non_qualified":null,"image":"1f469-1f3fb-200d-1f527.png","sheet_x":18,"sheet_y":30,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F469-1F3FC-200D-1F527","non_qualified":null,"image":"1f469-1f3fc-200d-1f527.png","sheet_x":18,"sheet_y":31,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F469-1F3FD-200D-1F527","non_qualified":null,"image":"1f469-1f3fd-200d-1f527.png","sheet_x":18,"sheet_y":32,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F469-1F3FE-200D-1F527","non_qualified":null,"image":"1f469-1f3fe-200d-1f527.png","sheet_x":18,"sheet_y":33,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F469-1F3FF-200D-1F527","non_qualified":null,"image":"1f469-1f3ff-200d-1f527.png","sheet_x":18,"sheet_y":34,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN SCIENTIST","unified":"1F469-200D-1F52C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f52c.png","sheet_x":18,"sheet_y":35,"short_name":"female-scientist","short_names":["female-scientist"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":315,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F52C","non_qualified":null,"image":"1f469-1f3fb-200d-1f52c.png","sheet_x":18,"sheet_y":36,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F469-1F3FC-200D-1F52C","non_qualified":null,"image":"1f469-1f3fc-200d-1f52c.png","sheet_x":18,"sheet_y":37,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F469-1F3FD-200D-1F52C","non_qualified":null,"image":"1f469-1f3fd-200d-1f52c.png","sheet_x":18,"sheet_y":38,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F469-1F3FE-200D-1F52C","non_qualified":null,"image":"1f469-1f3fe-200d-1f52c.png","sheet_x":18,"sheet_y":39,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F469-1F3FF-200D-1F52C","non_qualified":null,"image":"1f469-1f3ff-200d-1f52c.png","sheet_x":18,"sheet_y":40,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN ASTRONAUT","unified":"1F469-200D-1F680","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f680.png","sheet_x":18,"sheet_y":41,"short_name":"female-astronaut","short_names":["female-astronaut"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":330,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F680","non_qualified":null,"image":"1f469-1f3fb-200d-1f680.png","sheet_x":18,"sheet_y":42,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F469-1F3FC-200D-1F680","non_qualified":null,"image":"1f469-1f3fc-200d-1f680.png","sheet_x":18,"sheet_y":43,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F469-1F3FD-200D-1F680","non_qualified":null,"image":"1f469-1f3fd-200d-1f680.png","sheet_x":18,"sheet_y":44,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F469-1F3FE-200D-1F680","non_qualified":null,"image":"1f469-1f3fe-200d-1f680.png","sheet_x":18,"sheet_y":45,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F469-1F3FF-200D-1F680","non_qualified":null,"image":"1f469-1f3ff-200d-1f680.png","sheet_x":18,"sheet_y":46,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN FIREFIGHTER","unified":"1F469-200D-1F692","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f692.png","sheet_x":18,"sheet_y":47,"short_name":"female-firefighter","short_names":["female-firefighter"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":333,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F692","non_qualified":null,"image":"1f469-1f3fb-200d-1f692.png","sheet_x":18,"sheet_y":48,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F469-1F3FC-200D-1F692","non_qualified":null,"image":"1f469-1f3fc-200d-1f692.png","sheet_x":18,"sheet_y":49,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F469-1F3FD-200D-1F692","non_qualified":null,"image":"1f469-1f3fd-200d-1f692.png","sheet_x":18,"sheet_y":50,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F469-1F3FE-200D-1F692","non_qualified":null,"image":"1f469-1f3fe-200d-1f692.png","sheet_x":18,"sheet_y":51,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F469-1F3FF-200D-1F692","non_qualified":null,"image":"1f469-1f3ff-200d-1f692.png","sheet_x":18,"sheet_y":52,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN WITH WHITE CANE","unified":"1F469-200D-1F9AF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f9af.png","sheet_x":18,"sheet_y":53,"short_name":"woman_with_probing_cane","short_names":["woman_with_probing_cane"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":417,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F9AF","non_qualified":null,"image":"1f469-1f3fb-200d-1f9af.png","sheet_x":18,"sheet_y":54,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F469-1F3FC-200D-1F9AF","non_qualified":null,"image":"1f469-1f3fc-200d-1f9af.png","sheet_x":18,"sheet_y":55,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F469-1F3FD-200D-1F9AF","non_qualified":null,"image":"1f469-1f3fd-200d-1f9af.png","sheet_x":18,"sheet_y":56,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F469-1F3FE-200D-1F9AF","non_qualified":null,"image":"1f469-1f3fe-200d-1f9af.png","sheet_x":18,"sheet_y":57,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F469-1F3FF-200D-1F9AF","non_qualified":null,"image":"1f469-1f3ff-200d-1f9af.png","sheet_x":18,"sheet_y":58,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN: RED HAIR","unified":"1F469-200D-1F9B0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f9b0.png","sheet_x":18,"sheet_y":59,"short_name":"red_haired_woman","short_names":["red_haired_woman"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":243,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F9B0","non_qualified":null,"image":"1f469-1f3fb-200d-1f9b0.png","sheet_x":18,"sheet_y":60,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F469-1F3FC-200D-1F9B0","non_qualified":null,"image":"1f469-1f3fc-200d-1f9b0.png","sheet_x":19,"sheet_y":0,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F469-1F3FD-200D-1F9B0","non_qualified":null,"image":"1f469-1f3fd-200d-1f9b0.png","sheet_x":19,"sheet_y":1,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F469-1F3FE-200D-1F9B0","non_qualified":null,"image":"1f469-1f3fe-200d-1f9b0.png","sheet_x":19,"sheet_y":2,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F469-1F3FF-200D-1F9B0","non_qualified":null,"image":"1f469-1f3ff-200d-1f9b0.png","sheet_x":19,"sheet_y":3,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN: CURLY HAIR","unified":"1F469-200D-1F9B1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f9b1.png","sheet_x":19,"sheet_y":4,"short_name":"curly_haired_woman","short_names":["curly_haired_woman"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":245,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F9B1","non_qualified":null,"image":"1f469-1f3fb-200d-1f9b1.png","sheet_x":19,"sheet_y":5,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F469-1F3FC-200D-1F9B1","non_qualified":null,"image":"1f469-1f3fc-200d-1f9b1.png","sheet_x":19,"sheet_y":6,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F469-1F3FD-200D-1F9B1","non_qualified":null,"image":"1f469-1f3fd-200d-1f9b1.png","sheet_x":19,"sheet_y":7,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F469-1F3FE-200D-1F9B1","non_qualified":null,"image":"1f469-1f3fe-200d-1f9b1.png","sheet_x":19,"sheet_y":8,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F469-1F3FF-200D-1F9B1","non_qualified":null,"image":"1f469-1f3ff-200d-1f9b1.png","sheet_x":19,"sheet_y":9,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN: BALD","unified":"1F469-200D-1F9B2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f9b2.png","sheet_x":19,"sheet_y":10,"short_name":"bald_woman","short_names":["bald_woman"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":249,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F9B2","non_qualified":null,"image":"1f469-1f3fb-200d-1f9b2.png","sheet_x":19,"sheet_y":11,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F469-1F3FC-200D-1F9B2","non_qualified":null,"image":"1f469-1f3fc-200d-1f9b2.png","sheet_x":19,"sheet_y":12,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F469-1F3FD-200D-1F9B2","non_qualified":null,"image":"1f469-1f3fd-200d-1f9b2.png","sheet_x":19,"sheet_y":13,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F469-1F3FE-200D-1F9B2","non_qualified":null,"image":"1f469-1f3fe-200d-1f9b2.png","sheet_x":19,"sheet_y":14,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F469-1F3FF-200D-1F9B2","non_qualified":null,"image":"1f469-1f3ff-200d-1f9b2.png","sheet_x":19,"sheet_y":15,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN: WHITE HAIR","unified":"1F469-200D-1F9B3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f9b3.png","sheet_x":19,"sheet_y":16,"short_name":"white_haired_woman","short_names":["white_haired_woman"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":247,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F9B3","non_qualified":null,"image":"1f469-1f3fb-200d-1f9b3.png","sheet_x":19,"sheet_y":17,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F469-1F3FC-200D-1F9B3","non_qualified":null,"image":"1f469-1f3fc-200d-1f9b3.png","sheet_x":19,"sheet_y":18,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F469-1F3FD-200D-1F9B3","non_qualified":null,"image":"1f469-1f3fd-200d-1f9b3.png","sheet_x":19,"sheet_y":19,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F469-1F3FE-200D-1F9B3","non_qualified":null,"image":"1f469-1f3fe-200d-1f9b3.png","sheet_x":19,"sheet_y":20,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F469-1F3FF-200D-1F9B3","non_qualified":null,"image":"1f469-1f3ff-200d-1f9b3.png","sheet_x":19,"sheet_y":21,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN IN MOTORIZED WHEELCHAIR","unified":"1F469-200D-1F9BC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f9bc.png","sheet_x":19,"sheet_y":22,"short_name":"woman_in_motorized_wheelchair","short_names":["woman_in_motorized_wheelchair"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":420,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F9BC","non_qualified":null,"image":"1f469-1f3fb-200d-1f9bc.png","sheet_x":19,"sheet_y":23,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F469-1F3FC-200D-1F9BC","non_qualified":null,"image":"1f469-1f3fc-200d-1f9bc.png","sheet_x":19,"sheet_y":24,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F469-1F3FD-200D-1F9BC","non_qualified":null,"image":"1f469-1f3fd-200d-1f9bc.png","sheet_x":19,"sheet_y":25,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F469-1F3FE-200D-1F9BC","non_qualified":null,"image":"1f469-1f3fe-200d-1f9bc.png","sheet_x":19,"sheet_y":26,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F469-1F3FF-200D-1F9BC","non_qualified":null,"image":"1f469-1f3ff-200d-1f9bc.png","sheet_x":19,"sheet_y":27,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN IN MANUAL WHEELCHAIR","unified":"1F469-200D-1F9BD","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f9bd.png","sheet_x":19,"sheet_y":28,"short_name":"woman_in_manual_wheelchair","short_names":["woman_in_manual_wheelchair"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":423,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-1F9BD","non_qualified":null,"image":"1f469-1f3fb-200d-1f9bd.png","sheet_x":19,"sheet_y":29,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F469-1F3FC-200D-1F9BD","non_qualified":null,"image":"1f469-1f3fc-200d-1f9bd.png","sheet_x":19,"sheet_y":30,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F469-1F3FD-200D-1F9BD","non_qualified":null,"image":"1f469-1f3fd-200d-1f9bd.png","sheet_x":19,"sheet_y":31,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F469-1F3FE-200D-1F9BD","non_qualified":null,"image":"1f469-1f3fe-200d-1f9bd.png","sheet_x":19,"sheet_y":32,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F469-1F3FF-200D-1F9BD","non_qualified":null,"image":"1f469-1f3ff-200d-1f9bd.png","sheet_x":19,"sheet_y":33,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN HEALTH WORKER","unified":"1F469-200D-2695-FE0F","non_qualified":"1F469-200D-2695","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-2695-fe0f.png","sheet_x":19,"sheet_y":34,"short_name":"female-doctor","short_names":["female-doctor"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":288,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-2695-FE0F","non_qualified":"1F469-1F3FB-200D-2695","image":"1f469-1f3fb-200d-2695-fe0f.png","sheet_x":19,"sheet_y":35,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F469-1F3FC-200D-2695-FE0F","non_qualified":"1F469-1F3FC-200D-2695","image":"1f469-1f3fc-200d-2695-fe0f.png","sheet_x":19,"sheet_y":36,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F469-1F3FD-200D-2695-FE0F","non_qualified":"1F469-1F3FD-200D-2695","image":"1f469-1f3fd-200d-2695-fe0f.png","sheet_x":19,"sheet_y":37,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F469-1F3FE-200D-2695-FE0F","non_qualified":"1F469-1F3FE-200D-2695","image":"1f469-1f3fe-200d-2695-fe0f.png","sheet_x":19,"sheet_y":38,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F469-1F3FF-200D-2695-FE0F","non_qualified":"1F469-1F3FF-200D-2695","image":"1f469-1f3ff-200d-2695-fe0f.png","sheet_x":19,"sheet_y":39,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN JUDGE","unified":"1F469-200D-2696-FE0F","non_qualified":"1F469-200D-2696","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-2696-fe0f.png","sheet_x":19,"sheet_y":40,"short_name":"female-judge","short_names":["female-judge"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":297,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-2696-FE0F","non_qualified":"1F469-1F3FB-200D-2696","image":"1f469-1f3fb-200d-2696-fe0f.png","sheet_x":19,"sheet_y":41,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F469-1F3FC-200D-2696-FE0F","non_qualified":"1F469-1F3FC-200D-2696","image":"1f469-1f3fc-200d-2696-fe0f.png","sheet_x":19,"sheet_y":42,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F469-1F3FD-200D-2696-FE0F","non_qualified":"1F469-1F3FD-200D-2696","image":"1f469-1f3fd-200d-2696-fe0f.png","sheet_x":19,"sheet_y":43,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F469-1F3FE-200D-2696-FE0F","non_qualified":"1F469-1F3FE-200D-2696","image":"1f469-1f3fe-200d-2696-fe0f.png","sheet_x":19,"sheet_y":44,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F469-1F3FF-200D-2696-FE0F","non_qualified":"1F469-1F3FF-200D-2696","image":"1f469-1f3ff-200d-2696-fe0f.png","sheet_x":19,"sheet_y":45,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN PILOT","unified":"1F469-200D-2708-FE0F","non_qualified":"1F469-200D-2708","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-2708-fe0f.png","sheet_x":19,"sheet_y":46,"short_name":"female-pilot","short_names":["female-pilot"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":327,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB-200D-2708-FE0F","non_qualified":"1F469-1F3FB-200D-2708","image":"1f469-1f3fb-200d-2708-fe0f.png","sheet_x":19,"sheet_y":47,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F469-1F3FC-200D-2708-FE0F","non_qualified":"1F469-1F3FC-200D-2708","image":"1f469-1f3fc-200d-2708-fe0f.png","sheet_x":19,"sheet_y":48,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F469-1F3FD-200D-2708-FE0F","non_qualified":"1F469-1F3FD-200D-2708","image":"1f469-1f3fd-200d-2708-fe0f.png","sheet_x":19,"sheet_y":49,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F469-1F3FE-200D-2708-FE0F","non_qualified":"1F469-1F3FE-200D-2708","image":"1f469-1f3fe-200d-2708-fe0f.png","sheet_x":19,"sheet_y":50,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F469-1F3FF-200D-2708-FE0F","non_qualified":"1F469-1F3FF-200D-2708","image":"1f469-1f3ff-200d-2708-fe0f.png","sheet_x":19,"sheet_y":51,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"COUPLE WITH HEART: WOMAN, MAN","unified":"1F469-200D-2764-FE0F-200D-1F468","non_qualified":"1F469-200D-2764-200D-1F468","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-2764-fe0f-200d-1f468.png","sheet_x":19,"sheet_y":52,"short_name":"woman-heart-man","short_names":["woman-heart-man"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":496,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false,"skin_variations":{"1F3FB-1F3FB":{"unified":"1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FB","non_qualified":"1F469-1F3FB-200D-2764-200D-1F468-1F3FB","image":"1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fb.png","sheet_x":19,"sheet_y":53,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FC":{"unified":"1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FC","non_qualified":"1F469-1F3FB-200D-2764-200D-1F468-1F3FC","image":"1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fc.png","sheet_x":19,"sheet_y":54,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FD":{"unified":"1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FD","non_qualified":"1F469-1F3FB-200D-2764-200D-1F468-1F3FD","image":"1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fd.png","sheet_x":19,"sheet_y":55,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FE":{"unified":"1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FE","non_qualified":"1F469-1F3FB-200D-2764-200D-1F468-1F3FE","image":"1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fe.png","sheet_x":19,"sheet_y":56,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FF":{"unified":"1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FF","non_qualified":"1F469-1F3FB-200D-2764-200D-1F468-1F3FF","image":"1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3ff.png","sheet_x":19,"sheet_y":57,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FB":{"unified":"1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FB","non_qualified":"1F469-1F3FC-200D-2764-200D-1F468-1F3FB","image":"1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fb.png","sheet_x":19,"sheet_y":58,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FC":{"unified":"1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FC","non_qualified":"1F469-1F3FC-200D-2764-200D-1F468-1F3FC","image":"1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fc.png","sheet_x":19,"sheet_y":59,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FD":{"unified":"1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FD","non_qualified":"1F469-1F3FC-200D-2764-200D-1F468-1F3FD","image":"1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fd.png","sheet_x":19,"sheet_y":60,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FE":{"unified":"1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FE","non_qualified":"1F469-1F3FC-200D-2764-200D-1F468-1F3FE","image":"1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fe.png","sheet_x":20,"sheet_y":0,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FF":{"unified":"1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FF","non_qualified":"1F469-1F3FC-200D-2764-200D-1F468-1F3FF","image":"1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3ff.png","sheet_x":20,"sheet_y":1,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FB":{"unified":"1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FB","non_qualified":"1F469-1F3FD-200D-2764-200D-1F468-1F3FB","image":"1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fb.png","sheet_x":20,"sheet_y":2,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FC":{"unified":"1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FC","non_qualified":"1F469-1F3FD-200D-2764-200D-1F468-1F3FC","image":"1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fc.png","sheet_x":20,"sheet_y":3,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FD":{"unified":"1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FD","non_qualified":"1F469-1F3FD-200D-2764-200D-1F468-1F3FD","image":"1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fd.png","sheet_x":20,"sheet_y":4,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FE":{"unified":"1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FE","non_qualified":"1F469-1F3FD-200D-2764-200D-1F468-1F3FE","image":"1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fe.png","sheet_x":20,"sheet_y":5,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FF":{"unified":"1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FF","non_qualified":"1F469-1F3FD-200D-2764-200D-1F468-1F3FF","image":"1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3ff.png","sheet_x":20,"sheet_y":6,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FB":{"unified":"1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FB","non_qualified":"1F469-1F3FE-200D-2764-200D-1F468-1F3FB","image":"1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fb.png","sheet_x":20,"sheet_y":7,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FC":{"unified":"1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FC","non_qualified":"1F469-1F3FE-200D-2764-200D-1F468-1F3FC","image":"1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fc.png","sheet_x":20,"sheet_y":8,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FD":{"unified":"1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FD","non_qualified":"1F469-1F3FE-200D-2764-200D-1F468-1F3FD","image":"1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fd.png","sheet_x":20,"sheet_y":9,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FE":{"unified":"1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FE","non_qualified":"1F469-1F3FE-200D-2764-200D-1F468-1F3FE","image":"1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fe.png","sheet_x":20,"sheet_y":10,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FF":{"unified":"1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FF","non_qualified":"1F469-1F3FE-200D-2764-200D-1F468-1F3FF","image":"1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3ff.png","sheet_x":20,"sheet_y":11,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FB":{"unified":"1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FB","non_qualified":"1F469-1F3FF-200D-2764-200D-1F468-1F3FB","image":"1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fb.png","sheet_x":20,"sheet_y":12,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FC":{"unified":"1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FC","non_qualified":"1F469-1F3FF-200D-2764-200D-1F468-1F3FC","image":"1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fc.png","sheet_x":20,"sheet_y":13,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FD":{"unified":"1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FD","non_qualified":"1F469-1F3FF-200D-2764-200D-1F468-1F3FD","image":"1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fd.png","sheet_x":20,"sheet_y":14,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FE":{"unified":"1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FE","non_qualified":"1F469-1F3FF-200D-2764-200D-1F468-1F3FE","image":"1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fe.png","sheet_x":20,"sheet_y":15,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FF":{"unified":"1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FF","non_qualified":"1F469-1F3FF-200D-2764-200D-1F468-1F3FF","image":"1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3ff.png","sheet_x":20,"sheet_y":16,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false}}},{"name":"COUPLE WITH HEART: WOMAN, WOMAN","unified":"1F469-200D-2764-FE0F-200D-1F469","non_qualified":"1F469-200D-2764-200D-1F469","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-2764-fe0f-200d-1f469.png","sheet_x":20,"sheet_y":17,"short_name":"woman-heart-woman","short_names":["woman-heart-woman"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":498,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false,"skin_variations":{"1F3FB-1F3FB":{"unified":"1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FB","non_qualified":"1F469-1F3FB-200D-2764-200D-1F469-1F3FB","image":"1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fb.png","sheet_x":20,"sheet_y":18,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FC":{"unified":"1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FC","non_qualified":"1F469-1F3FB-200D-2764-200D-1F469-1F3FC","image":"1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fc.png","sheet_x":20,"sheet_y":19,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FD":{"unified":"1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FD","non_qualified":"1F469-1F3FB-200D-2764-200D-1F469-1F3FD","image":"1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fd.png","sheet_x":20,"sheet_y":20,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FE":{"unified":"1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FE","non_qualified":"1F469-1F3FB-200D-2764-200D-1F469-1F3FE","image":"1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fe.png","sheet_x":20,"sheet_y":21,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FF":{"unified":"1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FF","non_qualified":"1F469-1F3FB-200D-2764-200D-1F469-1F3FF","image":"1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3ff.png","sheet_x":20,"sheet_y":22,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FB":{"unified":"1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FB","non_qualified":"1F469-1F3FC-200D-2764-200D-1F469-1F3FB","image":"1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fb.png","sheet_x":20,"sheet_y":23,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FC":{"unified":"1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FC","non_qualified":"1F469-1F3FC-200D-2764-200D-1F469-1F3FC","image":"1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fc.png","sheet_x":20,"sheet_y":24,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FD":{"unified":"1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FD","non_qualified":"1F469-1F3FC-200D-2764-200D-1F469-1F3FD","image":"1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fd.png","sheet_x":20,"sheet_y":25,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FE":{"unified":"1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FE","non_qualified":"1F469-1F3FC-200D-2764-200D-1F469-1F3FE","image":"1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fe.png","sheet_x":20,"sheet_y":26,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FF":{"unified":"1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FF","non_qualified":"1F469-1F3FC-200D-2764-200D-1F469-1F3FF","image":"1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3ff.png","sheet_x":20,"sheet_y":27,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FB":{"unified":"1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FB","non_qualified":"1F469-1F3FD-200D-2764-200D-1F469-1F3FB","image":"1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fb.png","sheet_x":20,"sheet_y":28,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FC":{"unified":"1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FC","non_qualified":"1F469-1F3FD-200D-2764-200D-1F469-1F3FC","image":"1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fc.png","sheet_x":20,"sheet_y":29,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FD":{"unified":"1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FD","non_qualified":"1F469-1F3FD-200D-2764-200D-1F469-1F3FD","image":"1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fd.png","sheet_x":20,"sheet_y":30,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FE":{"unified":"1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FE","non_qualified":"1F469-1F3FD-200D-2764-200D-1F469-1F3FE","image":"1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fe.png","sheet_x":20,"sheet_y":31,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FF":{"unified":"1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FF","non_qualified":"1F469-1F3FD-200D-2764-200D-1F469-1F3FF","image":"1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3ff.png","sheet_x":20,"sheet_y":32,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FB":{"unified":"1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FB","non_qualified":"1F469-1F3FE-200D-2764-200D-1F469-1F3FB","image":"1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fb.png","sheet_x":20,"sheet_y":33,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FC":{"unified":"1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FC","non_qualified":"1F469-1F3FE-200D-2764-200D-1F469-1F3FC","image":"1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fc.png","sheet_x":20,"sheet_y":34,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FD":{"unified":"1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FD","non_qualified":"1F469-1F3FE-200D-2764-200D-1F469-1F3FD","image":"1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fd.png","sheet_x":20,"sheet_y":35,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FE":{"unified":"1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FE","non_qualified":"1F469-1F3FE-200D-2764-200D-1F469-1F3FE","image":"1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fe.png","sheet_x":20,"sheet_y":36,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FF":{"unified":"1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FF","non_qualified":"1F469-1F3FE-200D-2764-200D-1F469-1F3FF","image":"1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3ff.png","sheet_x":20,"sheet_y":37,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FB":{"unified":"1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FB","non_qualified":"1F469-1F3FF-200D-2764-200D-1F469-1F3FB","image":"1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fb.png","sheet_x":20,"sheet_y":38,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FC":{"unified":"1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FC","non_qualified":"1F469-1F3FF-200D-2764-200D-1F469-1F3FC","image":"1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fc.png","sheet_x":20,"sheet_y":39,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FD":{"unified":"1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FD","non_qualified":"1F469-1F3FF-200D-2764-200D-1F469-1F3FD","image":"1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fd.png","sheet_x":20,"sheet_y":40,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FE":{"unified":"1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FE","non_qualified":"1F469-1F3FF-200D-2764-200D-1F469-1F3FE","image":"1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fe.png","sheet_x":20,"sheet_y":41,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FF":{"unified":"1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FF","non_qualified":"1F469-1F3FF-200D-2764-200D-1F469-1F3FF","image":"1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3ff.png","sheet_x":20,"sheet_y":42,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false}}},{"name":"KISS: WOMAN, MAN","unified":"1F469-200D-2764-FE0F-200D-1F48B-200D-1F468","non_qualified":"1F469-200D-2764-200D-1F48B-200D-1F468","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.png","sheet_x":20,"sheet_y":43,"short_name":"woman-kiss-man","short_names":["woman-kiss-man"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":492,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false,"skin_variations":{"1F3FB-1F3FB":{"unified":"1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB","non_qualified":"1F469-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FB","image":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png","sheet_x":20,"sheet_y":44,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FC":{"unified":"1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC","non_qualified":"1F469-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FC","image":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png","sheet_x":20,"sheet_y":45,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FD":{"unified":"1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD","non_qualified":"1F469-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FD","image":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png","sheet_x":20,"sheet_y":46,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FE":{"unified":"1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE","non_qualified":"1F469-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FE","image":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png","sheet_x":20,"sheet_y":47,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FF":{"unified":"1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF","non_qualified":"1F469-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FF","image":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png","sheet_x":20,"sheet_y":48,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FB":{"unified":"1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB","non_qualified":"1F469-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FB","image":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png","sheet_x":20,"sheet_y":49,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FC":{"unified":"1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC","non_qualified":"1F469-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FC","image":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png","sheet_x":20,"sheet_y":50,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FD":{"unified":"1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD","non_qualified":"1F469-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FD","image":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png","sheet_x":20,"sheet_y":51,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FE":{"unified":"1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE","non_qualified":"1F469-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FE","image":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png","sheet_x":20,"sheet_y":52,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FF":{"unified":"1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF","non_qualified":"1F469-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FF","image":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png","sheet_x":20,"sheet_y":53,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FB":{"unified":"1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB","non_qualified":"1F469-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FB","image":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png","sheet_x":20,"sheet_y":54,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FC":{"unified":"1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC","non_qualified":"1F469-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FC","image":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png","sheet_x":20,"sheet_y":55,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FD":{"unified":"1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD","non_qualified":"1F469-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FD","image":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png","sheet_x":20,"sheet_y":56,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FE":{"unified":"1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE","non_qualified":"1F469-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FE","image":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png","sheet_x":20,"sheet_y":57,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FF":{"unified":"1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF","non_qualified":"1F469-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FF","image":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png","sheet_x":20,"sheet_y":58,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FB":{"unified":"1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB","non_qualified":"1F469-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FB","image":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png","sheet_x":20,"sheet_y":59,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FC":{"unified":"1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC","non_qualified":"1F469-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FC","image":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png","sheet_x":20,"sheet_y":60,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FD":{"unified":"1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD","non_qualified":"1F469-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FD","image":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png","sheet_x":21,"sheet_y":0,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FE":{"unified":"1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE","non_qualified":"1F469-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FE","image":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png","sheet_x":21,"sheet_y":1,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FF":{"unified":"1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF","non_qualified":"1F469-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FF","image":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png","sheet_x":21,"sheet_y":2,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FB":{"unified":"1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB","non_qualified":"1F469-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FB","image":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png","sheet_x":21,"sheet_y":3,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FC":{"unified":"1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC","non_qualified":"1F469-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FC","image":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png","sheet_x":21,"sheet_y":4,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FD":{"unified":"1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD","non_qualified":"1F469-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FD","image":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png","sheet_x":21,"sheet_y":5,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FE":{"unified":"1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE","non_qualified":"1F469-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FE","image":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png","sheet_x":21,"sheet_y":6,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FF":{"unified":"1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF","non_qualified":"1F469-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FF","image":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png","sheet_x":21,"sheet_y":7,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false}}},{"name":"KISS: WOMAN, WOMAN","unified":"1F469-200D-2764-FE0F-200D-1F48B-200D-1F469","non_qualified":"1F469-200D-2764-200D-1F48B-200D-1F469","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.png","sheet_x":21,"sheet_y":8,"short_name":"woman-kiss-woman","short_names":["woman-kiss-woman"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":494,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false,"skin_variations":{"1F3FB-1F3FB":{"unified":"1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB","non_qualified":"1F469-1F3FB-200D-2764-200D-1F48B-200D-1F469-1F3FB","image":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png","sheet_x":21,"sheet_y":9,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FC":{"unified":"1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC","non_qualified":"1F469-1F3FB-200D-2764-200D-1F48B-200D-1F469-1F3FC","image":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png","sheet_x":21,"sheet_y":10,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FD":{"unified":"1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD","non_qualified":"1F469-1F3FB-200D-2764-200D-1F48B-200D-1F469-1F3FD","image":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png","sheet_x":21,"sheet_y":11,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FE":{"unified":"1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE","non_qualified":"1F469-1F3FB-200D-2764-200D-1F48B-200D-1F469-1F3FE","image":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png","sheet_x":21,"sheet_y":12,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FF":{"unified":"1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF","non_qualified":"1F469-1F3FB-200D-2764-200D-1F48B-200D-1F469-1F3FF","image":"1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png","sheet_x":21,"sheet_y":13,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FB":{"unified":"1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB","non_qualified":"1F469-1F3FC-200D-2764-200D-1F48B-200D-1F469-1F3FB","image":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png","sheet_x":21,"sheet_y":14,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FC":{"unified":"1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC","non_qualified":"1F469-1F3FC-200D-2764-200D-1F48B-200D-1F469-1F3FC","image":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png","sheet_x":21,"sheet_y":15,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FD":{"unified":"1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD","non_qualified":"1F469-1F3FC-200D-2764-200D-1F48B-200D-1F469-1F3FD","image":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png","sheet_x":21,"sheet_y":16,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FE":{"unified":"1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE","non_qualified":"1F469-1F3FC-200D-2764-200D-1F48B-200D-1F469-1F3FE","image":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png","sheet_x":21,"sheet_y":17,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FF":{"unified":"1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF","non_qualified":"1F469-1F3FC-200D-2764-200D-1F48B-200D-1F469-1F3FF","image":"1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png","sheet_x":21,"sheet_y":18,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FB":{"unified":"1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB","non_qualified":"1F469-1F3FD-200D-2764-200D-1F48B-200D-1F469-1F3FB","image":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png","sheet_x":21,"sheet_y":19,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FC":{"unified":"1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC","non_qualified":"1F469-1F3FD-200D-2764-200D-1F48B-200D-1F469-1F3FC","image":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png","sheet_x":21,"sheet_y":20,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FD":{"unified":"1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD","non_qualified":"1F469-1F3FD-200D-2764-200D-1F48B-200D-1F469-1F3FD","image":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png","sheet_x":21,"sheet_y":21,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FE":{"unified":"1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE","non_qualified":"1F469-1F3FD-200D-2764-200D-1F48B-200D-1F469-1F3FE","image":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png","sheet_x":21,"sheet_y":22,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FF":{"unified":"1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF","non_qualified":"1F469-1F3FD-200D-2764-200D-1F48B-200D-1F469-1F3FF","image":"1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png","sheet_x":21,"sheet_y":23,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FB":{"unified":"1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB","non_qualified":"1F469-1F3FE-200D-2764-200D-1F48B-200D-1F469-1F3FB","image":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png","sheet_x":21,"sheet_y":24,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FC":{"unified":"1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC","non_qualified":"1F469-1F3FE-200D-2764-200D-1F48B-200D-1F469-1F3FC","image":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png","sheet_x":21,"sheet_y":25,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FD":{"unified":"1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD","non_qualified":"1F469-1F3FE-200D-2764-200D-1F48B-200D-1F469-1F3FD","image":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png","sheet_x":21,"sheet_y":26,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FE":{"unified":"1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE","non_qualified":"1F469-1F3FE-200D-2764-200D-1F48B-200D-1F469-1F3FE","image":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png","sheet_x":21,"sheet_y":27,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FF":{"unified":"1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF","non_qualified":"1F469-1F3FE-200D-2764-200D-1F48B-200D-1F469-1F3FF","image":"1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png","sheet_x":21,"sheet_y":28,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FB":{"unified":"1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB","non_qualified":"1F469-1F3FF-200D-2764-200D-1F48B-200D-1F469-1F3FB","image":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png","sheet_x":21,"sheet_y":29,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FC":{"unified":"1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC","non_qualified":"1F469-1F3FF-200D-2764-200D-1F48B-200D-1F469-1F3FC","image":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png","sheet_x":21,"sheet_y":30,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FD":{"unified":"1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD","non_qualified":"1F469-1F3FF-200D-2764-200D-1F48B-200D-1F469-1F3FD","image":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png","sheet_x":21,"sheet_y":31,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FE":{"unified":"1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE","non_qualified":"1F469-1F3FF-200D-2764-200D-1F48B-200D-1F469-1F3FE","image":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png","sheet_x":21,"sheet_y":32,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FF":{"unified":"1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF","non_qualified":"1F469-1F3FF-200D-2764-200D-1F48B-200D-1F469-1F3FF","image":"1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png","sheet_x":21,"sheet_y":33,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false}}},{"name":"WOMAN","unified":"1F469","non_qualified":null,"docomo":"E6F0","au":"E4FA","softbank":"E005","google":"FE19E","image":"1f469.png","sheet_x":21,"sheet_y":34,"short_name":"woman","short_names":["woman"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":242,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F469-1F3FB","non_qualified":null,"image":"1f469-1f3fb.png","sheet_x":21,"sheet_y":35,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F469-1F3FC","non_qualified":null,"image":"1f469-1f3fc.png","sheet_x":21,"sheet_y":36,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F469-1F3FD","non_qualified":null,"image":"1f469-1f3fd.png","sheet_x":21,"sheet_y":37,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F469-1F3FE","non_qualified":null,"image":"1f469-1f3fe.png","sheet_x":21,"sheet_y":38,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F469-1F3FF","non_qualified":null,"image":"1f469-1f3ff.png","sheet_x":21,"sheet_y":39,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"FAMILY","unified":"1F46A","non_qualified":null,"docomo":null,"au":"E501","softbank":null,"google":"FE19F","image":"1f46a.png","sheet_x":21,"sheet_y":40,"short_name":"family","short_names":["family"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":499,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false,"obsoleted_by":"1F468-200D-1F469-200D-1F466"},{"name":"MAN AND WOMAN HOLDING HANDS","unified":"1F46B","non_qualified":null,"docomo":null,"au":null,"softbank":"E428","google":"FE1A0","image":"1f46b.png","sheet_x":21,"sheet_y":41,"short_name":"man_and_woman_holding_hands","short_names":["man_and_woman_holding_hands","woman_and_man_holding_hands","couple"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":489,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false,"skin_variations":{"1F3FB":{"unified":"1F46B-1F3FB","non_qualified":null,"image":"1f46b-1f3fb.png","sheet_x":21,"sheet_y":42,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F46B-1F3FC","non_qualified":null,"image":"1f46b-1f3fc.png","sheet_x":21,"sheet_y":43,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F46B-1F3FD","non_qualified":null,"image":"1f46b-1f3fd.png","sheet_x":21,"sheet_y":44,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F46B-1F3FE","non_qualified":null,"image":"1f46b-1f3fe.png","sheet_x":21,"sheet_y":45,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F46B-1F3FF","non_qualified":null,"image":"1f46b-1f3ff.png","sheet_x":21,"sheet_y":46,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FB-1F3FC":{"unified":"1F469-1F3FB-200D-1F91D-200D-1F468-1F3FC","non_qualified":null,"image":"1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc.png","sheet_x":21,"sheet_y":47,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FD":{"unified":"1F469-1F3FB-200D-1F91D-200D-1F468-1F3FD","non_qualified":null,"image":"1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd.png","sheet_x":21,"sheet_y":48,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FE":{"unified":"1F469-1F3FB-200D-1F91D-200D-1F468-1F3FE","non_qualified":null,"image":"1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe.png","sheet_x":21,"sheet_y":49,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FF":{"unified":"1F469-1F3FB-200D-1F91D-200D-1F468-1F3FF","non_qualified":null,"image":"1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff.png","sheet_x":21,"sheet_y":50,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FB":{"unified":"1F469-1F3FC-200D-1F91D-200D-1F468-1F3FB","non_qualified":null,"image":"1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb.png","sheet_x":21,"sheet_y":51,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FD":{"unified":"1F469-1F3FC-200D-1F91D-200D-1F468-1F3FD","non_qualified":null,"image":"1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd.png","sheet_x":21,"sheet_y":52,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FE":{"unified":"1F469-1F3FC-200D-1F91D-200D-1F468-1F3FE","non_qualified":null,"image":"1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe.png","sheet_x":21,"sheet_y":53,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FF":{"unified":"1F469-1F3FC-200D-1F91D-200D-1F468-1F3FF","non_qualified":null,"image":"1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff.png","sheet_x":21,"sheet_y":54,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FB":{"unified":"1F469-1F3FD-200D-1F91D-200D-1F468-1F3FB","non_qualified":null,"image":"1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb.png","sheet_x":21,"sheet_y":55,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FC":{"unified":"1F469-1F3FD-200D-1F91D-200D-1F468-1F3FC","non_qualified":null,"image":"1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc.png","sheet_x":21,"sheet_y":56,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FE":{"unified":"1F469-1F3FD-200D-1F91D-200D-1F468-1F3FE","non_qualified":null,"image":"1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe.png","sheet_x":21,"sheet_y":57,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FF":{"unified":"1F469-1F3FD-200D-1F91D-200D-1F468-1F3FF","non_qualified":null,"image":"1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff.png","sheet_x":21,"sheet_y":58,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FB":{"unified":"1F469-1F3FE-200D-1F91D-200D-1F468-1F3FB","non_qualified":null,"image":"1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb.png","sheet_x":21,"sheet_y":59,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FC":{"unified":"1F469-1F3FE-200D-1F91D-200D-1F468-1F3FC","non_qualified":null,"image":"1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc.png","sheet_x":21,"sheet_y":60,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FD":{"unified":"1F469-1F3FE-200D-1F91D-200D-1F468-1F3FD","non_qualified":null,"image":"1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd.png","sheet_x":22,"sheet_y":0,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FF":{"unified":"1F469-1F3FE-200D-1F91D-200D-1F468-1F3FF","non_qualified":null,"image":"1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff.png","sheet_x":22,"sheet_y":1,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FB":{"unified":"1F469-1F3FF-200D-1F91D-200D-1F468-1F3FB","non_qualified":null,"image":"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb.png","sheet_x":22,"sheet_y":2,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FC":{"unified":"1F469-1F3FF-200D-1F91D-200D-1F468-1F3FC","non_qualified":null,"image":"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc.png","sheet_x":22,"sheet_y":3,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FD":{"unified":"1F469-1F3FF-200D-1F91D-200D-1F468-1F3FD","non_qualified":null,"image":"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd.png","sheet_x":22,"sheet_y":4,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FE":{"unified":"1F469-1F3FF-200D-1F91D-200D-1F468-1F3FE","non_qualified":null,"image":"1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe.png","sheet_x":22,"sheet_y":5,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false}}},{"name":"TWO MEN HOLDING HANDS","unified":"1F46C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f46c.png","sheet_x":22,"sheet_y":6,"short_name":"two_men_holding_hands","short_names":["two_men_holding_hands","men_holding_hands"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":490,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false,"skin_variations":{"1F3FB":{"unified":"1F46C-1F3FB","non_qualified":null,"image":"1f46c-1f3fb.png","sheet_x":22,"sheet_y":7,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F46C-1F3FC","non_qualified":null,"image":"1f46c-1f3fc.png","sheet_x":22,"sheet_y":8,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F46C-1F3FD","non_qualified":null,"image":"1f46c-1f3fd.png","sheet_x":22,"sheet_y":9,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F46C-1F3FE","non_qualified":null,"image":"1f46c-1f3fe.png","sheet_x":22,"sheet_y":10,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F46C-1F3FF","non_qualified":null,"image":"1f46c-1f3ff.png","sheet_x":22,"sheet_y":11,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FB-1F3FC":{"unified":"1F468-1F3FB-200D-1F91D-200D-1F468-1F3FC","non_qualified":null,"image":"1f468-1f3fb-200d-1f91d-200d-1f468-1f3fc.png","sheet_x":22,"sheet_y":12,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FD":{"unified":"1F468-1F3FB-200D-1F91D-200D-1F468-1F3FD","non_qualified":null,"image":"1f468-1f3fb-200d-1f91d-200d-1f468-1f3fd.png","sheet_x":22,"sheet_y":13,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FE":{"unified":"1F468-1F3FB-200D-1F91D-200D-1F468-1F3FE","non_qualified":null,"image":"1f468-1f3fb-200d-1f91d-200d-1f468-1f3fe.png","sheet_x":22,"sheet_y":14,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FF":{"unified":"1F468-1F3FB-200D-1F91D-200D-1F468-1F3FF","non_qualified":null,"image":"1f468-1f3fb-200d-1f91d-200d-1f468-1f3ff.png","sheet_x":22,"sheet_y":15,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FB":{"unified":"1F468-1F3FC-200D-1F91D-200D-1F468-1F3FB","non_qualified":null,"image":"1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb.png","sheet_x":22,"sheet_y":16,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FD":{"unified":"1F468-1F3FC-200D-1F91D-200D-1F468-1F3FD","non_qualified":null,"image":"1f468-1f3fc-200d-1f91d-200d-1f468-1f3fd.png","sheet_x":22,"sheet_y":17,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FE":{"unified":"1F468-1F3FC-200D-1F91D-200D-1F468-1F3FE","non_qualified":null,"image":"1f468-1f3fc-200d-1f91d-200d-1f468-1f3fe.png","sheet_x":22,"sheet_y":18,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FF":{"unified":"1F468-1F3FC-200D-1F91D-200D-1F468-1F3FF","non_qualified":null,"image":"1f468-1f3fc-200d-1f91d-200d-1f468-1f3ff.png","sheet_x":22,"sheet_y":19,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FB":{"unified":"1F468-1F3FD-200D-1F91D-200D-1F468-1F3FB","non_qualified":null,"image":"1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb.png","sheet_x":22,"sheet_y":20,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FC":{"unified":"1F468-1F3FD-200D-1F91D-200D-1F468-1F3FC","non_qualified":null,"image":"1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc.png","sheet_x":22,"sheet_y":21,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FE":{"unified":"1F468-1F3FD-200D-1F91D-200D-1F468-1F3FE","non_qualified":null,"image":"1f468-1f3fd-200d-1f91d-200d-1f468-1f3fe.png","sheet_x":22,"sheet_y":22,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FF":{"unified":"1F468-1F3FD-200D-1F91D-200D-1F468-1F3FF","non_qualified":null,"image":"1f468-1f3fd-200d-1f91d-200d-1f468-1f3ff.png","sheet_x":22,"sheet_y":23,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FB":{"unified":"1F468-1F3FE-200D-1F91D-200D-1F468-1F3FB","non_qualified":null,"image":"1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb.png","sheet_x":22,"sheet_y":24,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FC":{"unified":"1F468-1F3FE-200D-1F91D-200D-1F468-1F3FC","non_qualified":null,"image":"1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc.png","sheet_x":22,"sheet_y":25,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FD":{"unified":"1F468-1F3FE-200D-1F91D-200D-1F468-1F3FD","non_qualified":null,"image":"1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd.png","sheet_x":22,"sheet_y":26,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FF":{"unified":"1F468-1F3FE-200D-1F91D-200D-1F468-1F3FF","non_qualified":null,"image":"1f468-1f3fe-200d-1f91d-200d-1f468-1f3ff.png","sheet_x":22,"sheet_y":27,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FB":{"unified":"1F468-1F3FF-200D-1F91D-200D-1F468-1F3FB","non_qualified":null,"image":"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb.png","sheet_x":22,"sheet_y":28,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FC":{"unified":"1F468-1F3FF-200D-1F91D-200D-1F468-1F3FC","non_qualified":null,"image":"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc.png","sheet_x":22,"sheet_y":29,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FD":{"unified":"1F468-1F3FF-200D-1F91D-200D-1F468-1F3FD","non_qualified":null,"image":"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd.png","sheet_x":22,"sheet_y":30,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FE":{"unified":"1F468-1F3FF-200D-1F91D-200D-1F468-1F3FE","non_qualified":null,"image":"1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe.png","sheet_x":22,"sheet_y":31,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false}}},{"name":"TWO WOMEN HOLDING HANDS","unified":"1F46D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f46d.png","sheet_x":22,"sheet_y":32,"short_name":"two_women_holding_hands","short_names":["two_women_holding_hands","women_holding_hands"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":488,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false,"skin_variations":{"1F3FB":{"unified":"1F46D-1F3FB","non_qualified":null,"image":"1f46d-1f3fb.png","sheet_x":22,"sheet_y":33,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F46D-1F3FC","non_qualified":null,"image":"1f46d-1f3fc.png","sheet_x":22,"sheet_y":34,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F46D-1F3FD","non_qualified":null,"image":"1f46d-1f3fd.png","sheet_x":22,"sheet_y":35,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F46D-1F3FE","non_qualified":null,"image":"1f46d-1f3fe.png","sheet_x":22,"sheet_y":36,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F46D-1F3FF","non_qualified":null,"image":"1f46d-1f3ff.png","sheet_x":22,"sheet_y":37,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FB-1F3FC":{"unified":"1F469-1F3FB-200D-1F91D-200D-1F469-1F3FC","non_qualified":null,"image":"1f469-1f3fb-200d-1f91d-200d-1f469-1f3fc.png","sheet_x":22,"sheet_y":38,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FD":{"unified":"1F469-1F3FB-200D-1F91D-200D-1F469-1F3FD","non_qualified":null,"image":"1f469-1f3fb-200d-1f91d-200d-1f469-1f3fd.png","sheet_x":22,"sheet_y":39,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FE":{"unified":"1F469-1F3FB-200D-1F91D-200D-1F469-1F3FE","non_qualified":null,"image":"1f469-1f3fb-200d-1f91d-200d-1f469-1f3fe.png","sheet_x":22,"sheet_y":40,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FF":{"unified":"1F469-1F3FB-200D-1F91D-200D-1F469-1F3FF","non_qualified":null,"image":"1f469-1f3fb-200d-1f91d-200d-1f469-1f3ff.png","sheet_x":22,"sheet_y":41,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FB":{"unified":"1F469-1F3FC-200D-1F91D-200D-1F469-1F3FB","non_qualified":null,"image":"1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb.png","sheet_x":22,"sheet_y":42,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FD":{"unified":"1F469-1F3FC-200D-1F91D-200D-1F469-1F3FD","non_qualified":null,"image":"1f469-1f3fc-200d-1f91d-200d-1f469-1f3fd.png","sheet_x":22,"sheet_y":43,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FE":{"unified":"1F469-1F3FC-200D-1F91D-200D-1F469-1F3FE","non_qualified":null,"image":"1f469-1f3fc-200d-1f91d-200d-1f469-1f3fe.png","sheet_x":22,"sheet_y":44,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FF":{"unified":"1F469-1F3FC-200D-1F91D-200D-1F469-1F3FF","non_qualified":null,"image":"1f469-1f3fc-200d-1f91d-200d-1f469-1f3ff.png","sheet_x":22,"sheet_y":45,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FB":{"unified":"1F469-1F3FD-200D-1F91D-200D-1F469-1F3FB","non_qualified":null,"image":"1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb.png","sheet_x":22,"sheet_y":46,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FC":{"unified":"1F469-1F3FD-200D-1F91D-200D-1F469-1F3FC","non_qualified":null,"image":"1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc.png","sheet_x":22,"sheet_y":47,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FE":{"unified":"1F469-1F3FD-200D-1F91D-200D-1F469-1F3FE","non_qualified":null,"image":"1f469-1f3fd-200d-1f91d-200d-1f469-1f3fe.png","sheet_x":22,"sheet_y":48,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FF":{"unified":"1F469-1F3FD-200D-1F91D-200D-1F469-1F3FF","non_qualified":null,"image":"1f469-1f3fd-200d-1f91d-200d-1f469-1f3ff.png","sheet_x":22,"sheet_y":49,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FB":{"unified":"1F469-1F3FE-200D-1F91D-200D-1F469-1F3FB","non_qualified":null,"image":"1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb.png","sheet_x":22,"sheet_y":50,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FC":{"unified":"1F469-1F3FE-200D-1F91D-200D-1F469-1F3FC","non_qualified":null,"image":"1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc.png","sheet_x":22,"sheet_y":51,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FD":{"unified":"1F469-1F3FE-200D-1F91D-200D-1F469-1F3FD","non_qualified":null,"image":"1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd.png","sheet_x":22,"sheet_y":52,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FF":{"unified":"1F469-1F3FE-200D-1F91D-200D-1F469-1F3FF","non_qualified":null,"image":"1f469-1f3fe-200d-1f91d-200d-1f469-1f3ff.png","sheet_x":22,"sheet_y":53,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FB":{"unified":"1F469-1F3FF-200D-1F91D-200D-1F469-1F3FB","non_qualified":null,"image":"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb.png","sheet_x":22,"sheet_y":54,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FC":{"unified":"1F469-1F3FF-200D-1F91D-200D-1F469-1F3FC","non_qualified":null,"image":"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc.png","sheet_x":22,"sheet_y":55,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FD":{"unified":"1F469-1F3FF-200D-1F91D-200D-1F469-1F3FD","non_qualified":null,"image":"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd.png","sheet_x":22,"sheet_y":56,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FE":{"unified":"1F469-1F3FF-200D-1F91D-200D-1F469-1F3FE","non_qualified":null,"image":"1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe.png","sheet_x":22,"sheet_y":57,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false}}},{"name":"WOMAN POLICE OFFICER","unified":"1F46E-200D-2640-FE0F","non_qualified":"1F46E-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f46e-200d-2640-fe0f.png","sheet_x":22,"sheet_y":58,"short_name":"female-police-officer","short_names":["female-police-officer"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":336,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F46E-1F3FB-200D-2640-FE0F","non_qualified":"1F46E-1F3FB-200D-2640","image":"1f46e-1f3fb-200d-2640-fe0f.png","sheet_x":22,"sheet_y":59,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F46E-1F3FC-200D-2640-FE0F","non_qualified":"1F46E-1F3FC-200D-2640","image":"1f46e-1f3fc-200d-2640-fe0f.png","sheet_x":22,"sheet_y":60,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F46E-1F3FD-200D-2640-FE0F","non_qualified":"1F46E-1F3FD-200D-2640","image":"1f46e-1f3fd-200d-2640-fe0f.png","sheet_x":23,"sheet_y":0,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F46E-1F3FE-200D-2640-FE0F","non_qualified":"1F46E-1F3FE-200D-2640","image":"1f46e-1f3fe-200d-2640-fe0f.png","sheet_x":23,"sheet_y":1,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F46E-1F3FF-200D-2640-FE0F","non_qualified":"1F46E-1F3FF-200D-2640","image":"1f46e-1f3ff-200d-2640-fe0f.png","sheet_x":23,"sheet_y":2,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN POLICE OFFICER","unified":"1F46E-200D-2642-FE0F","non_qualified":"1F46E-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f46e-200d-2642-fe0f.png","sheet_x":23,"sheet_y":3,"short_name":"male-police-officer","short_names":["male-police-officer"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":335,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F46E-1F3FB-200D-2642-FE0F","non_qualified":"1F46E-1F3FB-200D-2642","image":"1f46e-1f3fb-200d-2642-fe0f.png","sheet_x":23,"sheet_y":4,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F46E-1F3FC-200D-2642-FE0F","non_qualified":"1F46E-1F3FC-200D-2642","image":"1f46e-1f3fc-200d-2642-fe0f.png","sheet_x":23,"sheet_y":5,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F46E-1F3FD-200D-2642-FE0F","non_qualified":"1F46E-1F3FD-200D-2642","image":"1f46e-1f3fd-200d-2642-fe0f.png","sheet_x":23,"sheet_y":6,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F46E-1F3FE-200D-2642-FE0F","non_qualified":"1F46E-1F3FE-200D-2642","image":"1f46e-1f3fe-200d-2642-fe0f.png","sheet_x":23,"sheet_y":7,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F46E-1F3FF-200D-2642-FE0F","non_qualified":"1F46E-1F3FF-200D-2642","image":"1f46e-1f3ff-200d-2642-fe0f.png","sheet_x":23,"sheet_y":8,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoletes":"1F46E"},{"name":"POLICE OFFICER","unified":"1F46E","non_qualified":null,"docomo":null,"au":"E5DD","softbank":"E152","google":"FE1A1","image":"1f46e.png","sheet_x":23,"sheet_y":9,"short_name":"cop","short_names":["cop"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":334,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F46E-1F3FB","non_qualified":null,"image":"1f46e-1f3fb.png","sheet_x":23,"sheet_y":10,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F46E-1F3FC","non_qualified":null,"image":"1f46e-1f3fc.png","sheet_x":23,"sheet_y":11,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F46E-1F3FD","non_qualified":null,"image":"1f46e-1f3fd.png","sheet_x":23,"sheet_y":12,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F46E-1F3FE","non_qualified":null,"image":"1f46e-1f3fe.png","sheet_x":23,"sheet_y":13,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F46E-1F3FF","non_qualified":null,"image":"1f46e-1f3ff.png","sheet_x":23,"sheet_y":14,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoleted_by":"1F46E-200D-2642-FE0F"},{"name":"WOMEN WITH BUNNY EARS","unified":"1F46F-200D-2640-FE0F","non_qualified":"1F46F-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f46f-200d-2640-fe0f.png","sheet_x":23,"sheet_y":15,"short_name":"women-with-bunny-ears-partying","short_names":["women-with-bunny-ears-partying","woman-with-bunny-ears-partying"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":432,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F46F"},{"name":"MEN WITH BUNNY EARS","unified":"1F46F-200D-2642-FE0F","non_qualified":"1F46F-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f46f-200d-2642-fe0f.png","sheet_x":23,"sheet_y":16,"short_name":"men-with-bunny-ears-partying","short_names":["men-with-bunny-ears-partying","man-with-bunny-ears-partying"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":431,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WOMAN WITH BUNNY EARS","unified":"1F46F","non_qualified":null,"docomo":null,"au":"EADB","softbank":"E429","google":"FE1A2","image":"1f46f.png","sheet_x":23,"sheet_y":17,"short_name":"dancers","short_names":["dancers"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":430,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F46F-200D-2640-FE0F"},{"name":"WOMAN WITH VEIL","unified":"1F470-200D-2640-FE0F","non_qualified":"1F470-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f470-200d-2640-fe0f.png","sheet_x":23,"sheet_y":18,"short_name":"woman_with_veil","short_names":["woman_with_veil"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":360,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F470-1F3FB-200D-2640-FE0F","non_qualified":"1F470-1F3FB-200D-2640","image":"1f470-1f3fb-200d-2640-fe0f.png","sheet_x":23,"sheet_y":19,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F470-1F3FC-200D-2640-FE0F","non_qualified":"1F470-1F3FC-200D-2640","image":"1f470-1f3fc-200d-2640-fe0f.png","sheet_x":23,"sheet_y":20,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F470-1F3FD-200D-2640-FE0F","non_qualified":"1F470-1F3FD-200D-2640","image":"1f470-1f3fd-200d-2640-fe0f.png","sheet_x":23,"sheet_y":21,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F470-1F3FE-200D-2640-FE0F","non_qualified":"1F470-1F3FE-200D-2640","image":"1f470-1f3fe-200d-2640-fe0f.png","sheet_x":23,"sheet_y":22,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F470-1F3FF-200D-2640-FE0F","non_qualified":"1F470-1F3FF-200D-2640","image":"1f470-1f3ff-200d-2640-fe0f.png","sheet_x":23,"sheet_y":23,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN WITH VEIL","unified":"1F470-200D-2642-FE0F","non_qualified":"1F470-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f470-200d-2642-fe0f.png","sheet_x":23,"sheet_y":24,"short_name":"man_with_veil","short_names":["man_with_veil"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":359,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F470-1F3FB-200D-2642-FE0F","non_qualified":"1F470-1F3FB-200D-2642","image":"1f470-1f3fb-200d-2642-fe0f.png","sheet_x":23,"sheet_y":25,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F470-1F3FC-200D-2642-FE0F","non_qualified":"1F470-1F3FC-200D-2642","image":"1f470-1f3fc-200d-2642-fe0f.png","sheet_x":23,"sheet_y":26,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F470-1F3FD-200D-2642-FE0F","non_qualified":"1F470-1F3FD-200D-2642","image":"1f470-1f3fd-200d-2642-fe0f.png","sheet_x":23,"sheet_y":27,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F470-1F3FE-200D-2642-FE0F","non_qualified":"1F470-1F3FE-200D-2642","image":"1f470-1f3fe-200d-2642-fe0f.png","sheet_x":23,"sheet_y":28,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F470-1F3FF-200D-2642-FE0F","non_qualified":"1F470-1F3FF-200D-2642","image":"1f470-1f3ff-200d-2642-fe0f.png","sheet_x":23,"sheet_y":29,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"BRIDE WITH VEIL","unified":"1F470","non_qualified":null,"docomo":null,"au":"EAE9","softbank":null,"google":"FE1A3","image":"1f470.png","sheet_x":23,"sheet_y":30,"short_name":"bride_with_veil","short_names":["bride_with_veil"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":358,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F470-1F3FB","non_qualified":null,"image":"1f470-1f3fb.png","sheet_x":23,"sheet_y":31,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F470-1F3FC","non_qualified":null,"image":"1f470-1f3fc.png","sheet_x":23,"sheet_y":32,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F470-1F3FD","non_qualified":null,"image":"1f470-1f3fd.png","sheet_x":23,"sheet_y":33,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F470-1F3FE","non_qualified":null,"image":"1f470-1f3fe.png","sheet_x":23,"sheet_y":34,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F470-1F3FF","non_qualified":null,"image":"1f470-1f3ff.png","sheet_x":23,"sheet_y":35,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN: BLOND HAIR","unified":"1F471-200D-2640-FE0F","non_qualified":"1F471-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f471-200d-2640-fe0f.png","sheet_x":23,"sheet_y":36,"short_name":"blond-haired-woman","short_names":["blond-haired-woman"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":251,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F471-1F3FB-200D-2640-FE0F","non_qualified":"1F471-1F3FB-200D-2640","image":"1f471-1f3fb-200d-2640-fe0f.png","sheet_x":23,"sheet_y":37,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F471-1F3FC-200D-2640-FE0F","non_qualified":"1F471-1F3FC-200D-2640","image":"1f471-1f3fc-200d-2640-fe0f.png","sheet_x":23,"sheet_y":38,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F471-1F3FD-200D-2640-FE0F","non_qualified":"1F471-1F3FD-200D-2640","image":"1f471-1f3fd-200d-2640-fe0f.png","sheet_x":23,"sheet_y":39,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F471-1F3FE-200D-2640-FE0F","non_qualified":"1F471-1F3FE-200D-2640","image":"1f471-1f3fe-200d-2640-fe0f.png","sheet_x":23,"sheet_y":40,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F471-1F3FF-200D-2640-FE0F","non_qualified":"1F471-1F3FF-200D-2640","image":"1f471-1f3ff-200d-2640-fe0f.png","sheet_x":23,"sheet_y":41,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN: BLOND HAIR","unified":"1F471-200D-2642-FE0F","non_qualified":"1F471-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f471-200d-2642-fe0f.png","sheet_x":23,"sheet_y":42,"short_name":"blond-haired-man","short_names":["blond-haired-man"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":252,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F471-1F3FB-200D-2642-FE0F","non_qualified":"1F471-1F3FB-200D-2642","image":"1f471-1f3fb-200d-2642-fe0f.png","sheet_x":23,"sheet_y":43,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F471-1F3FC-200D-2642-FE0F","non_qualified":"1F471-1F3FC-200D-2642","image":"1f471-1f3fc-200d-2642-fe0f.png","sheet_x":23,"sheet_y":44,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F471-1F3FD-200D-2642-FE0F","non_qualified":"1F471-1F3FD-200D-2642","image":"1f471-1f3fd-200d-2642-fe0f.png","sheet_x":23,"sheet_y":45,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F471-1F3FE-200D-2642-FE0F","non_qualified":"1F471-1F3FE-200D-2642","image":"1f471-1f3fe-200d-2642-fe0f.png","sheet_x":23,"sheet_y":46,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F471-1F3FF-200D-2642-FE0F","non_qualified":"1F471-1F3FF-200D-2642","image":"1f471-1f3ff-200d-2642-fe0f.png","sheet_x":23,"sheet_y":47,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoletes":"1F471"},{"name":"PERSON WITH BLOND HAIR","unified":"1F471","non_qualified":null,"docomo":null,"au":"EB13","softbank":"E515","google":"FE1A4","image":"1f471.png","sheet_x":23,"sheet_y":48,"short_name":"person_with_blond_hair","short_names":["person_with_blond_hair"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":233,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F471-1F3FB","non_qualified":null,"image":"1f471-1f3fb.png","sheet_x":23,"sheet_y":49,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F471-1F3FC","non_qualified":null,"image":"1f471-1f3fc.png","sheet_x":23,"sheet_y":50,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F471-1F3FD","non_qualified":null,"image":"1f471-1f3fd.png","sheet_x":23,"sheet_y":51,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F471-1F3FE","non_qualified":null,"image":"1f471-1f3fe.png","sheet_x":23,"sheet_y":52,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F471-1F3FF","non_qualified":null,"image":"1f471-1f3ff.png","sheet_x":23,"sheet_y":53,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoleted_by":"1F471-200D-2642-FE0F"},{"name":"MAN WITH GUA PI MAO","unified":"1F472","non_qualified":null,"docomo":null,"au":"EB14","softbank":"E516","google":"FE1A5","image":"1f472.png","sheet_x":23,"sheet_y":54,"short_name":"man_with_gua_pi_mao","short_names":["man_with_gua_pi_mao"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":353,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F472-1F3FB","non_qualified":null,"image":"1f472-1f3fb.png","sheet_x":23,"sheet_y":55,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F472-1F3FC","non_qualified":null,"image":"1f472-1f3fc.png","sheet_x":23,"sheet_y":56,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F472-1F3FD","non_qualified":null,"image":"1f472-1f3fd.png","sheet_x":23,"sheet_y":57,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F472-1F3FE","non_qualified":null,"image":"1f472-1f3fe.png","sheet_x":23,"sheet_y":58,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F472-1F3FF","non_qualified":null,"image":"1f472-1f3ff.png","sheet_x":23,"sheet_y":59,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN WEARING TURBAN","unified":"1F473-200D-2640-FE0F","non_qualified":"1F473-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f473-200d-2640-fe0f.png","sheet_x":23,"sheet_y":60,"short_name":"woman-wearing-turban","short_names":["woman-wearing-turban"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":352,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F473-1F3FB-200D-2640-FE0F","non_qualified":"1F473-1F3FB-200D-2640","image":"1f473-1f3fb-200d-2640-fe0f.png","sheet_x":24,"sheet_y":0,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F473-1F3FC-200D-2640-FE0F","non_qualified":"1F473-1F3FC-200D-2640","image":"1f473-1f3fc-200d-2640-fe0f.png","sheet_x":24,"sheet_y":1,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F473-1F3FD-200D-2640-FE0F","non_qualified":"1F473-1F3FD-200D-2640","image":"1f473-1f3fd-200d-2640-fe0f.png","sheet_x":24,"sheet_y":2,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F473-1F3FE-200D-2640-FE0F","non_qualified":"1F473-1F3FE-200D-2640","image":"1f473-1f3fe-200d-2640-fe0f.png","sheet_x":24,"sheet_y":3,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F473-1F3FF-200D-2640-FE0F","non_qualified":"1F473-1F3FF-200D-2640","image":"1f473-1f3ff-200d-2640-fe0f.png","sheet_x":24,"sheet_y":4,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN WEARING TURBAN","unified":"1F473-200D-2642-FE0F","non_qualified":"1F473-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f473-200d-2642-fe0f.png","sheet_x":24,"sheet_y":5,"short_name":"man-wearing-turban","short_names":["man-wearing-turban"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":351,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F473-1F3FB-200D-2642-FE0F","non_qualified":"1F473-1F3FB-200D-2642","image":"1f473-1f3fb-200d-2642-fe0f.png","sheet_x":24,"sheet_y":6,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F473-1F3FC-200D-2642-FE0F","non_qualified":"1F473-1F3FC-200D-2642","image":"1f473-1f3fc-200d-2642-fe0f.png","sheet_x":24,"sheet_y":7,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F473-1F3FD-200D-2642-FE0F","non_qualified":"1F473-1F3FD-200D-2642","image":"1f473-1f3fd-200d-2642-fe0f.png","sheet_x":24,"sheet_y":8,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F473-1F3FE-200D-2642-FE0F","non_qualified":"1F473-1F3FE-200D-2642","image":"1f473-1f3fe-200d-2642-fe0f.png","sheet_x":24,"sheet_y":9,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F473-1F3FF-200D-2642-FE0F","non_qualified":"1F473-1F3FF-200D-2642","image":"1f473-1f3ff-200d-2642-fe0f.png","sheet_x":24,"sheet_y":10,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoletes":"1F473"},{"name":"MAN WITH TURBAN","unified":"1F473","non_qualified":null,"docomo":null,"au":"EB15","softbank":"E517","google":"FE1A6","image":"1f473.png","sheet_x":24,"sheet_y":11,"short_name":"man_with_turban","short_names":["man_with_turban"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":350,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F473-1F3FB","non_qualified":null,"image":"1f473-1f3fb.png","sheet_x":24,"sheet_y":12,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F473-1F3FC","non_qualified":null,"image":"1f473-1f3fc.png","sheet_x":24,"sheet_y":13,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F473-1F3FD","non_qualified":null,"image":"1f473-1f3fd.png","sheet_x":24,"sheet_y":14,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F473-1F3FE","non_qualified":null,"image":"1f473-1f3fe.png","sheet_x":24,"sheet_y":15,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F473-1F3FF","non_qualified":null,"image":"1f473-1f3ff.png","sheet_x":24,"sheet_y":16,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoleted_by":"1F473-200D-2642-FE0F"},{"name":"OLDER MAN","unified":"1F474","non_qualified":null,"docomo":null,"au":"EB16","softbank":"E518","google":"FE1A7","image":"1f474.png","sheet_x":24,"sheet_y":17,"short_name":"older_man","short_names":["older_man"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":254,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F474-1F3FB","non_qualified":null,"image":"1f474-1f3fb.png","sheet_x":24,"sheet_y":18,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F474-1F3FC","non_qualified":null,"image":"1f474-1f3fc.png","sheet_x":24,"sheet_y":19,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F474-1F3FD","non_qualified":null,"image":"1f474-1f3fd.png","sheet_x":24,"sheet_y":20,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F474-1F3FE","non_qualified":null,"image":"1f474-1f3fe.png","sheet_x":24,"sheet_y":21,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F474-1F3FF","non_qualified":null,"image":"1f474-1f3ff.png","sheet_x":24,"sheet_y":22,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"OLDER WOMAN","unified":"1F475","non_qualified":null,"docomo":null,"au":"EB17","softbank":"E519","google":"FE1A8","image":"1f475.png","sheet_x":24,"sheet_y":23,"short_name":"older_woman","short_names":["older_woman"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":255,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F475-1F3FB","non_qualified":null,"image":"1f475-1f3fb.png","sheet_x":24,"sheet_y":24,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F475-1F3FC","non_qualified":null,"image":"1f475-1f3fc.png","sheet_x":24,"sheet_y":25,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F475-1F3FD","non_qualified":null,"image":"1f475-1f3fd.png","sheet_x":24,"sheet_y":26,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F475-1F3FE","non_qualified":null,"image":"1f475-1f3fe.png","sheet_x":24,"sheet_y":27,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F475-1F3FF","non_qualified":null,"image":"1f475-1f3ff.png","sheet_x":24,"sheet_y":28,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"BABY","unified":"1F476","non_qualified":null,"docomo":null,"au":"EB18","softbank":"E51A","google":"FE1A9","image":"1f476.png","sheet_x":24,"sheet_y":29,"short_name":"baby","short_names":["baby"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":228,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F476-1F3FB","non_qualified":null,"image":"1f476-1f3fb.png","sheet_x":24,"sheet_y":30,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F476-1F3FC","non_qualified":null,"image":"1f476-1f3fc.png","sheet_x":24,"sheet_y":31,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F476-1F3FD","non_qualified":null,"image":"1f476-1f3fd.png","sheet_x":24,"sheet_y":32,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F476-1F3FE","non_qualified":null,"image":"1f476-1f3fe.png","sheet_x":24,"sheet_y":33,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F476-1F3FF","non_qualified":null,"image":"1f476-1f3ff.png","sheet_x":24,"sheet_y":34,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN CONSTRUCTION WORKER","unified":"1F477-200D-2640-FE0F","non_qualified":"1F477-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f477-200d-2640-fe0f.png","sheet_x":24,"sheet_y":35,"short_name":"female-construction-worker","short_names":["female-construction-worker"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":346,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F477-1F3FB-200D-2640-FE0F","non_qualified":"1F477-1F3FB-200D-2640","image":"1f477-1f3fb-200d-2640-fe0f.png","sheet_x":24,"sheet_y":36,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F477-1F3FC-200D-2640-FE0F","non_qualified":"1F477-1F3FC-200D-2640","image":"1f477-1f3fc-200d-2640-fe0f.png","sheet_x":24,"sheet_y":37,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F477-1F3FD-200D-2640-FE0F","non_qualified":"1F477-1F3FD-200D-2640","image":"1f477-1f3fd-200d-2640-fe0f.png","sheet_x":24,"sheet_y":38,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F477-1F3FE-200D-2640-FE0F","non_qualified":"1F477-1F3FE-200D-2640","image":"1f477-1f3fe-200d-2640-fe0f.png","sheet_x":24,"sheet_y":39,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F477-1F3FF-200D-2640-FE0F","non_qualified":"1F477-1F3FF-200D-2640","image":"1f477-1f3ff-200d-2640-fe0f.png","sheet_x":24,"sheet_y":40,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN CONSTRUCTION WORKER","unified":"1F477-200D-2642-FE0F","non_qualified":"1F477-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f477-200d-2642-fe0f.png","sheet_x":24,"sheet_y":41,"short_name":"male-construction-worker","short_names":["male-construction-worker"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":345,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F477-1F3FB-200D-2642-FE0F","non_qualified":"1F477-1F3FB-200D-2642","image":"1f477-1f3fb-200d-2642-fe0f.png","sheet_x":24,"sheet_y":42,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F477-1F3FC-200D-2642-FE0F","non_qualified":"1F477-1F3FC-200D-2642","image":"1f477-1f3fc-200d-2642-fe0f.png","sheet_x":24,"sheet_y":43,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F477-1F3FD-200D-2642-FE0F","non_qualified":"1F477-1F3FD-200D-2642","image":"1f477-1f3fd-200d-2642-fe0f.png","sheet_x":24,"sheet_y":44,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F477-1F3FE-200D-2642-FE0F","non_qualified":"1F477-1F3FE-200D-2642","image":"1f477-1f3fe-200d-2642-fe0f.png","sheet_x":24,"sheet_y":45,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F477-1F3FF-200D-2642-FE0F","non_qualified":"1F477-1F3FF-200D-2642","image":"1f477-1f3ff-200d-2642-fe0f.png","sheet_x":24,"sheet_y":46,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoletes":"1F477"},{"name":"CONSTRUCTION WORKER","unified":"1F477","non_qualified":null,"docomo":null,"au":"EB19","softbank":"E51B","google":"FE1AA","image":"1f477.png","sheet_x":24,"sheet_y":47,"short_name":"construction_worker","short_names":["construction_worker"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":344,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F477-1F3FB","non_qualified":null,"image":"1f477-1f3fb.png","sheet_x":24,"sheet_y":48,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F477-1F3FC","non_qualified":null,"image":"1f477-1f3fc.png","sheet_x":24,"sheet_y":49,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F477-1F3FD","non_qualified":null,"image":"1f477-1f3fd.png","sheet_x":24,"sheet_y":50,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F477-1F3FE","non_qualified":null,"image":"1f477-1f3fe.png","sheet_x":24,"sheet_y":51,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F477-1F3FF","non_qualified":null,"image":"1f477-1f3ff.png","sheet_x":24,"sheet_y":52,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoleted_by":"1F477-200D-2642-FE0F"},{"name":"PRINCESS","unified":"1F478","non_qualified":null,"docomo":null,"au":"EB1A","softbank":"E51C","google":"FE1AB","image":"1f478.png","sheet_x":24,"sheet_y":53,"short_name":"princess","short_names":["princess"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":349,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F478-1F3FB","non_qualified":null,"image":"1f478-1f3fb.png","sheet_x":24,"sheet_y":54,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F478-1F3FC","non_qualified":null,"image":"1f478-1f3fc.png","sheet_x":24,"sheet_y":55,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F478-1F3FD","non_qualified":null,"image":"1f478-1f3fd.png","sheet_x":24,"sheet_y":56,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F478-1F3FE","non_qualified":null,"image":"1f478-1f3fe.png","sheet_x":24,"sheet_y":57,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F478-1F3FF","non_qualified":null,"image":"1f478-1f3ff.png","sheet_x":24,"sheet_y":58,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"JAPANESE OGRE","unified":"1F479","non_qualified":null,"docomo":null,"au":"EB44","softbank":null,"google":"FE1AC","image":"1f479.png","sheet_x":24,"sheet_y":59,"short_name":"japanese_ogre","short_names":["japanese_ogre"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-costume","sort_order":110,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"JAPANESE GOBLIN","unified":"1F47A","non_qualified":null,"docomo":null,"au":"EB45","softbank":null,"google":"FE1AD","image":"1f47a.png","sheet_x":24,"sheet_y":60,"short_name":"japanese_goblin","short_names":["japanese_goblin"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-costume","sort_order":111,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GHOST","unified":"1F47B","non_qualified":null,"docomo":null,"au":"E4CB","softbank":"E11B","google":"FE1AE","image":"1f47b.png","sheet_x":25,"sheet_y":0,"short_name":"ghost","short_names":["ghost"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-costume","sort_order":112,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BABY ANGEL","unified":"1F47C","non_qualified":null,"docomo":null,"au":"E5BF","softbank":"E04E","google":"FE1AF","image":"1f47c.png","sheet_x":25,"sheet_y":1,"short_name":"angel","short_names":["angel"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":368,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F47C-1F3FB","non_qualified":null,"image":"1f47c-1f3fb.png","sheet_x":25,"sheet_y":2,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F47C-1F3FC","non_qualified":null,"image":"1f47c-1f3fc.png","sheet_x":25,"sheet_y":3,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F47C-1F3FD","non_qualified":null,"image":"1f47c-1f3fd.png","sheet_x":25,"sheet_y":4,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F47C-1F3FE","non_qualified":null,"image":"1f47c-1f3fe.png","sheet_x":25,"sheet_y":5,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F47C-1F3FF","non_qualified":null,"image":"1f47c-1f3ff.png","sheet_x":25,"sheet_y":6,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"EXTRATERRESTRIAL ALIEN","unified":"1F47D","non_qualified":null,"docomo":null,"au":"E50E","softbank":"E10C","google":"FE1B0","image":"1f47d.png","sheet_x":25,"sheet_y":7,"short_name":"alien","short_names":["alien"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-costume","sort_order":113,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ALIEN MONSTER","unified":"1F47E","non_qualified":null,"docomo":null,"au":"E4EC","softbank":"E12B","google":"FE1B1","image":"1f47e.png","sheet_x":25,"sheet_y":8,"short_name":"space_invader","short_names":["space_invader"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-costume","sort_order":114,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"IMP","unified":"1F47F","non_qualified":null,"docomo":null,"au":"E4EF","softbank":"E11A","google":"FE1B2","image":"1f47f.png","sheet_x":25,"sheet_y":9,"short_name":"imp","short_names":["imp"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-negative","sort_order":105,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SKULL","unified":"1F480","non_qualified":null,"docomo":null,"au":"E4F8","softbank":"E11C","google":"FE1B3","image":"1f480.png","sheet_x":25,"sheet_y":10,"short_name":"skull","short_names":["skull"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-negative","sort_order":106,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WOMAN TIPPING HAND","unified":"1F481-200D-2640-FE0F","non_qualified":"1F481-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f481-200d-2640-fe0f.png","sheet_x":25,"sheet_y":11,"short_name":"woman-tipping-hand","short_names":["woman-tipping-hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":270,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F481-1F3FB-200D-2640-FE0F","non_qualified":"1F481-1F3FB-200D-2640","image":"1f481-1f3fb-200d-2640-fe0f.png","sheet_x":25,"sheet_y":12,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F481-1F3FC-200D-2640-FE0F","non_qualified":"1F481-1F3FC-200D-2640","image":"1f481-1f3fc-200d-2640-fe0f.png","sheet_x":25,"sheet_y":13,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F481-1F3FD-200D-2640-FE0F","non_qualified":"1F481-1F3FD-200D-2640","image":"1f481-1f3fd-200d-2640-fe0f.png","sheet_x":25,"sheet_y":14,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F481-1F3FE-200D-2640-FE0F","non_qualified":"1F481-1F3FE-200D-2640","image":"1f481-1f3fe-200d-2640-fe0f.png","sheet_x":25,"sheet_y":15,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F481-1F3FF-200D-2640-FE0F","non_qualified":"1F481-1F3FF-200D-2640","image":"1f481-1f3ff-200d-2640-fe0f.png","sheet_x":25,"sheet_y":16,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoletes":"1F481"},{"name":"MAN TIPPING HAND","unified":"1F481-200D-2642-FE0F","non_qualified":"1F481-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f481-200d-2642-fe0f.png","sheet_x":25,"sheet_y":17,"short_name":"man-tipping-hand","short_names":["man-tipping-hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":269,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F481-1F3FB-200D-2642-FE0F","non_qualified":"1F481-1F3FB-200D-2642","image":"1f481-1f3fb-200d-2642-fe0f.png","sheet_x":25,"sheet_y":18,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F481-1F3FC-200D-2642-FE0F","non_qualified":"1F481-1F3FC-200D-2642","image":"1f481-1f3fc-200d-2642-fe0f.png","sheet_x":25,"sheet_y":19,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F481-1F3FD-200D-2642-FE0F","non_qualified":"1F481-1F3FD-200D-2642","image":"1f481-1f3fd-200d-2642-fe0f.png","sheet_x":25,"sheet_y":20,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F481-1F3FE-200D-2642-FE0F","non_qualified":"1F481-1F3FE-200D-2642","image":"1f481-1f3fe-200d-2642-fe0f.png","sheet_x":25,"sheet_y":21,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F481-1F3FF-200D-2642-FE0F","non_qualified":"1F481-1F3FF-200D-2642","image":"1f481-1f3ff-200d-2642-fe0f.png","sheet_x":25,"sheet_y":22,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"INFORMATION DESK PERSON","unified":"1F481","non_qualified":null,"docomo":null,"au":null,"softbank":"E253","google":"FE1B4","image":"1f481.png","sheet_x":25,"sheet_y":23,"short_name":"information_desk_person","short_names":["information_desk_person"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":268,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F481-1F3FB","non_qualified":null,"image":"1f481-1f3fb.png","sheet_x":25,"sheet_y":24,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F481-1F3FC","non_qualified":null,"image":"1f481-1f3fc.png","sheet_x":25,"sheet_y":25,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F481-1F3FD","non_qualified":null,"image":"1f481-1f3fd.png","sheet_x":25,"sheet_y":26,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F481-1F3FE","non_qualified":null,"image":"1f481-1f3fe.png","sheet_x":25,"sheet_y":27,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F481-1F3FF","non_qualified":null,"image":"1f481-1f3ff.png","sheet_x":25,"sheet_y":28,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoleted_by":"1F481-200D-2640-FE0F"},{"name":"WOMAN GUARD","unified":"1F482-200D-2640-FE0F","non_qualified":"1F482-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f482-200d-2640-fe0f.png","sheet_x":25,"sheet_y":29,"short_name":"female-guard","short_names":["female-guard"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":342,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F482-1F3FB-200D-2640-FE0F","non_qualified":"1F482-1F3FB-200D-2640","image":"1f482-1f3fb-200d-2640-fe0f.png","sheet_x":25,"sheet_y":30,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F482-1F3FC-200D-2640-FE0F","non_qualified":"1F482-1F3FC-200D-2640","image":"1f482-1f3fc-200d-2640-fe0f.png","sheet_x":25,"sheet_y":31,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F482-1F3FD-200D-2640-FE0F","non_qualified":"1F482-1F3FD-200D-2640","image":"1f482-1f3fd-200d-2640-fe0f.png","sheet_x":25,"sheet_y":32,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F482-1F3FE-200D-2640-FE0F","non_qualified":"1F482-1F3FE-200D-2640","image":"1f482-1f3fe-200d-2640-fe0f.png","sheet_x":25,"sheet_y":33,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F482-1F3FF-200D-2640-FE0F","non_qualified":"1F482-1F3FF-200D-2640","image":"1f482-1f3ff-200d-2640-fe0f.png","sheet_x":25,"sheet_y":34,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN GUARD","unified":"1F482-200D-2642-FE0F","non_qualified":"1F482-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f482-200d-2642-fe0f.png","sheet_x":25,"sheet_y":35,"short_name":"male-guard","short_names":["male-guard"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":341,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F482-1F3FB-200D-2642-FE0F","non_qualified":"1F482-1F3FB-200D-2642","image":"1f482-1f3fb-200d-2642-fe0f.png","sheet_x":25,"sheet_y":36,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F482-1F3FC-200D-2642-FE0F","non_qualified":"1F482-1F3FC-200D-2642","image":"1f482-1f3fc-200d-2642-fe0f.png","sheet_x":25,"sheet_y":37,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F482-1F3FD-200D-2642-FE0F","non_qualified":"1F482-1F3FD-200D-2642","image":"1f482-1f3fd-200d-2642-fe0f.png","sheet_x":25,"sheet_y":38,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F482-1F3FE-200D-2642-FE0F","non_qualified":"1F482-1F3FE-200D-2642","image":"1f482-1f3fe-200d-2642-fe0f.png","sheet_x":25,"sheet_y":39,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F482-1F3FF-200D-2642-FE0F","non_qualified":"1F482-1F3FF-200D-2642","image":"1f482-1f3ff-200d-2642-fe0f.png","sheet_x":25,"sheet_y":40,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoletes":"1F482"},{"name":"GUARDSMAN","unified":"1F482","non_qualified":null,"docomo":null,"au":null,"softbank":"E51E","google":"FE1B5","image":"1f482.png","sheet_x":25,"sheet_y":41,"short_name":"guardsman","short_names":["guardsman"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":340,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F482-1F3FB","non_qualified":null,"image":"1f482-1f3fb.png","sheet_x":25,"sheet_y":42,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F482-1F3FC","non_qualified":null,"image":"1f482-1f3fc.png","sheet_x":25,"sheet_y":43,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F482-1F3FD","non_qualified":null,"image":"1f482-1f3fd.png","sheet_x":25,"sheet_y":44,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F482-1F3FE","non_qualified":null,"image":"1f482-1f3fe.png","sheet_x":25,"sheet_y":45,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F482-1F3FF","non_qualified":null,"image":"1f482-1f3ff.png","sheet_x":25,"sheet_y":46,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoleted_by":"1F482-200D-2642-FE0F"},{"name":"DANCER","unified":"1F483","non_qualified":null,"docomo":null,"au":"EB1C","softbank":"E51F","google":"FE1B6","image":"1f483.png","sheet_x":25,"sheet_y":47,"short_name":"dancer","short_names":["dancer"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":427,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F483-1F3FB","non_qualified":null,"image":"1f483-1f3fb.png","sheet_x":25,"sheet_y":48,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F483-1F3FC","non_qualified":null,"image":"1f483-1f3fc.png","sheet_x":25,"sheet_y":49,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F483-1F3FD","non_qualified":null,"image":"1f483-1f3fd.png","sheet_x":25,"sheet_y":50,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F483-1F3FE","non_qualified":null,"image":"1f483-1f3fe.png","sheet_x":25,"sheet_y":51,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F483-1F3FF","non_qualified":null,"image":"1f483-1f3ff.png","sheet_x":25,"sheet_y":52,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"LIPSTICK","unified":"1F484","non_qualified":null,"docomo":"E710","au":"E509","softbank":"E31C","google":"FE195","image":"1f484.png","sheet_x":25,"sheet_y":53,"short_name":"lipstick","short_names":["lipstick"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1167,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NAIL POLISH","unified":"1F485","non_qualified":null,"docomo":null,"au":"EAA0","softbank":"E31D","google":"FE196","image":"1f485.png","sheet_x":25,"sheet_y":54,"short_name":"nail_care","short_names":["nail_care"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-prop","sort_order":208,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F485-1F3FB","non_qualified":null,"image":"1f485-1f3fb.png","sheet_x":25,"sheet_y":55,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F485-1F3FC","non_qualified":null,"image":"1f485-1f3fc.png","sheet_x":25,"sheet_y":56,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F485-1F3FD","non_qualified":null,"image":"1f485-1f3fd.png","sheet_x":25,"sheet_y":57,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F485-1F3FE","non_qualified":null,"image":"1f485-1f3fe.png","sheet_x":25,"sheet_y":58,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F485-1F3FF","non_qualified":null,"image":"1f485-1f3ff.png","sheet_x":25,"sheet_y":59,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN GETTING MASSAGE","unified":"1F486-200D-2640-FE0F","non_qualified":"1F486-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f486-200d-2640-fe0f.png","sheet_x":25,"sheet_y":60,"short_name":"woman-getting-massage","short_names":["woman-getting-massage"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":402,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F486-1F3FB-200D-2640-FE0F","non_qualified":"1F486-1F3FB-200D-2640","image":"1f486-1f3fb-200d-2640-fe0f.png","sheet_x":26,"sheet_y":0,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F486-1F3FC-200D-2640-FE0F","non_qualified":"1F486-1F3FC-200D-2640","image":"1f486-1f3fc-200d-2640-fe0f.png","sheet_x":26,"sheet_y":1,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F486-1F3FD-200D-2640-FE0F","non_qualified":"1F486-1F3FD-200D-2640","image":"1f486-1f3fd-200d-2640-fe0f.png","sheet_x":26,"sheet_y":2,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F486-1F3FE-200D-2640-FE0F","non_qualified":"1F486-1F3FE-200D-2640","image":"1f486-1f3fe-200d-2640-fe0f.png","sheet_x":26,"sheet_y":3,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F486-1F3FF-200D-2640-FE0F","non_qualified":"1F486-1F3FF-200D-2640","image":"1f486-1f3ff-200d-2640-fe0f.png","sheet_x":26,"sheet_y":4,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoletes":"1F486"},{"name":"MAN GETTING MASSAGE","unified":"1F486-200D-2642-FE0F","non_qualified":"1F486-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f486-200d-2642-fe0f.png","sheet_x":26,"sheet_y":5,"short_name":"man-getting-massage","short_names":["man-getting-massage"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":401,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F486-1F3FB-200D-2642-FE0F","non_qualified":"1F486-1F3FB-200D-2642","image":"1f486-1f3fb-200d-2642-fe0f.png","sheet_x":26,"sheet_y":6,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F486-1F3FC-200D-2642-FE0F","non_qualified":"1F486-1F3FC-200D-2642","image":"1f486-1f3fc-200d-2642-fe0f.png","sheet_x":26,"sheet_y":7,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F486-1F3FD-200D-2642-FE0F","non_qualified":"1F486-1F3FD-200D-2642","image":"1f486-1f3fd-200d-2642-fe0f.png","sheet_x":26,"sheet_y":8,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F486-1F3FE-200D-2642-FE0F","non_qualified":"1F486-1F3FE-200D-2642","image":"1f486-1f3fe-200d-2642-fe0f.png","sheet_x":26,"sheet_y":9,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F486-1F3FF-200D-2642-FE0F","non_qualified":"1F486-1F3FF-200D-2642","image":"1f486-1f3ff-200d-2642-fe0f.png","sheet_x":26,"sheet_y":10,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"FACE MASSAGE","unified":"1F486","non_qualified":null,"docomo":null,"au":"E50B","softbank":"E31E","google":"FE197","image":"1f486.png","sheet_x":26,"sheet_y":11,"short_name":"massage","short_names":["massage"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":400,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F486-1F3FB","non_qualified":null,"image":"1f486-1f3fb.png","sheet_x":26,"sheet_y":12,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F486-1F3FC","non_qualified":null,"image":"1f486-1f3fc.png","sheet_x":26,"sheet_y":13,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F486-1F3FD","non_qualified":null,"image":"1f486-1f3fd.png","sheet_x":26,"sheet_y":14,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F486-1F3FE","non_qualified":null,"image":"1f486-1f3fe.png","sheet_x":26,"sheet_y":15,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F486-1F3FF","non_qualified":null,"image":"1f486-1f3ff.png","sheet_x":26,"sheet_y":16,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoleted_by":"1F486-200D-2640-FE0F"},{"name":"WOMAN GETTING HAIRCUT","unified":"1F487-200D-2640-FE0F","non_qualified":"1F487-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f487-200d-2640-fe0f.png","sheet_x":26,"sheet_y":17,"short_name":"woman-getting-haircut","short_names":["woman-getting-haircut"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":405,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F487-1F3FB-200D-2640-FE0F","non_qualified":"1F487-1F3FB-200D-2640","image":"1f487-1f3fb-200d-2640-fe0f.png","sheet_x":26,"sheet_y":18,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F487-1F3FC-200D-2640-FE0F","non_qualified":"1F487-1F3FC-200D-2640","image":"1f487-1f3fc-200d-2640-fe0f.png","sheet_x":26,"sheet_y":19,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F487-1F3FD-200D-2640-FE0F","non_qualified":"1F487-1F3FD-200D-2640","image":"1f487-1f3fd-200d-2640-fe0f.png","sheet_x":26,"sheet_y":20,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F487-1F3FE-200D-2640-FE0F","non_qualified":"1F487-1F3FE-200D-2640","image":"1f487-1f3fe-200d-2640-fe0f.png","sheet_x":26,"sheet_y":21,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F487-1F3FF-200D-2640-FE0F","non_qualified":"1F487-1F3FF-200D-2640","image":"1f487-1f3ff-200d-2640-fe0f.png","sheet_x":26,"sheet_y":22,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoletes":"1F487"},{"name":"MAN GETTING HAIRCUT","unified":"1F487-200D-2642-FE0F","non_qualified":"1F487-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f487-200d-2642-fe0f.png","sheet_x":26,"sheet_y":23,"short_name":"man-getting-haircut","short_names":["man-getting-haircut"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":404,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F487-1F3FB-200D-2642-FE0F","non_qualified":"1F487-1F3FB-200D-2642","image":"1f487-1f3fb-200d-2642-fe0f.png","sheet_x":26,"sheet_y":24,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F487-1F3FC-200D-2642-FE0F","non_qualified":"1F487-1F3FC-200D-2642","image":"1f487-1f3fc-200d-2642-fe0f.png","sheet_x":26,"sheet_y":25,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F487-1F3FD-200D-2642-FE0F","non_qualified":"1F487-1F3FD-200D-2642","image":"1f487-1f3fd-200d-2642-fe0f.png","sheet_x":26,"sheet_y":26,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F487-1F3FE-200D-2642-FE0F","non_qualified":"1F487-1F3FE-200D-2642","image":"1f487-1f3fe-200d-2642-fe0f.png","sheet_x":26,"sheet_y":27,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F487-1F3FF-200D-2642-FE0F","non_qualified":"1F487-1F3FF-200D-2642","image":"1f487-1f3ff-200d-2642-fe0f.png","sheet_x":26,"sheet_y":28,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"HAIRCUT","unified":"1F487","non_qualified":null,"docomo":"E675","au":"EAA1","softbank":"E31F","google":"FE198","image":"1f487.png","sheet_x":26,"sheet_y":29,"short_name":"haircut","short_names":["haircut"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":403,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F487-1F3FB","non_qualified":null,"image":"1f487-1f3fb.png","sheet_x":26,"sheet_y":30,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F487-1F3FC","non_qualified":null,"image":"1f487-1f3fc.png","sheet_x":26,"sheet_y":31,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F487-1F3FD","non_qualified":null,"image":"1f487-1f3fd.png","sheet_x":26,"sheet_y":32,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F487-1F3FE","non_qualified":null,"image":"1f487-1f3fe.png","sheet_x":26,"sheet_y":33,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F487-1F3FF","non_qualified":null,"image":"1f487-1f3ff.png","sheet_x":26,"sheet_y":34,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoleted_by":"1F487-200D-2640-FE0F"},{"name":"BARBER POLE","unified":"1F488","non_qualified":null,"docomo":null,"au":"EAA2","softbank":"E320","google":"FE199","image":"1f488.png","sheet_x":26,"sheet_y":35,"short_name":"barber","short_names":["barber"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-other","sort_order":884,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SYRINGE","unified":"1F489","non_qualified":null,"docomo":null,"au":"E510","softbank":"E13B","google":"FE509","image":"1f489.png","sheet_x":26,"sheet_y":36,"short_name":"syringe","short_names":["syringe"],"text":null,"texts":null,"category":"Objects","subcategory":"medical","sort_order":1343,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PILL","unified":"1F48A","non_qualified":null,"docomo":null,"au":"EA9A","softbank":"E30F","google":"FE50A","image":"1f48a.png","sheet_x":26,"sheet_y":37,"short_name":"pill","short_names":["pill"],"text":null,"texts":null,"category":"Objects","subcategory":"medical","sort_order":1345,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"KISS MARK","unified":"1F48B","non_qualified":null,"docomo":"E6F9","au":"E4EB","softbank":"E003","google":"FE823","image":"1f48b.png","sheet_x":26,"sheet_y":38,"short_name":"kiss","short_names":["kiss"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"emotion","sort_order":153,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LOVE LETTER","unified":"1F48C","non_qualified":null,"docomo":"E717","au":"EB78","softbank":null,"google":"FE824","image":"1f48c.png","sheet_x":26,"sheet_y":39,"short_name":"love_letter","short_names":["love_letter"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":128,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RING","unified":"1F48D","non_qualified":null,"docomo":"E71B","au":"E514","softbank":"E034","google":"FE825","image":"1f48d.png","sheet_x":26,"sheet_y":40,"short_name":"ring","short_names":["ring"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1168,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GEM STONE","unified":"1F48E","non_qualified":null,"docomo":"E71B","au":"E514","softbank":"E035","google":"FE826","image":"1f48e.png","sheet_x":26,"sheet_y":41,"short_name":"gem","short_names":["gem"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1169,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"KISS","unified":"1F48F","non_qualified":null,"docomo":"E6F9","au":"E5CA","softbank":"E111","google":"FE827","image":"1f48f.png","sheet_x":26,"sheet_y":42,"short_name":"couplekiss","short_names":["couplekiss"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":491,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false,"skin_variations":{"1F3FB":{"unified":"1F48F-1F3FB","non_qualified":null,"image":"1f48f-1f3fb.png","sheet_x":26,"sheet_y":43,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F48F-1F3FC","non_qualified":null,"image":"1f48f-1f3fc.png","sheet_x":26,"sheet_y":44,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F48F-1F3FD","non_qualified":null,"image":"1f48f-1f3fd.png","sheet_x":26,"sheet_y":45,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F48F-1F3FE","non_qualified":null,"image":"1f48f-1f3fe.png","sheet_x":26,"sheet_y":46,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F48F-1F3FF","non_qualified":null,"image":"1f48f-1f3ff.png","sheet_x":26,"sheet_y":47,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FB-1F3FC":{"unified":"1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC","non_qualified":"1F9D1-1F3FB-200D-2764-200D-1F48B-200D-1F9D1-1F3FC","image":"1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png","sheet_x":26,"sheet_y":48,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FD":{"unified":"1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD","non_qualified":"1F9D1-1F3FB-200D-2764-200D-1F48B-200D-1F9D1-1F3FD","image":"1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png","sheet_x":26,"sheet_y":49,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FE":{"unified":"1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE","non_qualified":"1F9D1-1F3FB-200D-2764-200D-1F48B-200D-1F9D1-1F3FE","image":"1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png","sheet_x":26,"sheet_y":50,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FF":{"unified":"1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF","non_qualified":"1F9D1-1F3FB-200D-2764-200D-1F48B-200D-1F9D1-1F3FF","image":"1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png","sheet_x":26,"sheet_y":51,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FB":{"unified":"1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB","non_qualified":"1F9D1-1F3FC-200D-2764-200D-1F48B-200D-1F9D1-1F3FB","image":"1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png","sheet_x":26,"sheet_y":52,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FD":{"unified":"1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD","non_qualified":"1F9D1-1F3FC-200D-2764-200D-1F48B-200D-1F9D1-1F3FD","image":"1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png","sheet_x":26,"sheet_y":53,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FE":{"unified":"1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE","non_qualified":"1F9D1-1F3FC-200D-2764-200D-1F48B-200D-1F9D1-1F3FE","image":"1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png","sheet_x":26,"sheet_y":54,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FF":{"unified":"1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF","non_qualified":"1F9D1-1F3FC-200D-2764-200D-1F48B-200D-1F9D1-1F3FF","image":"1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png","sheet_x":26,"sheet_y":55,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FB":{"unified":"1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB","non_qualified":"1F9D1-1F3FD-200D-2764-200D-1F48B-200D-1F9D1-1F3FB","image":"1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png","sheet_x":26,"sheet_y":56,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FC":{"unified":"1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC","non_qualified":"1F9D1-1F3FD-200D-2764-200D-1F48B-200D-1F9D1-1F3FC","image":"1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png","sheet_x":26,"sheet_y":57,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FE":{"unified":"1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE","non_qualified":"1F9D1-1F3FD-200D-2764-200D-1F48B-200D-1F9D1-1F3FE","image":"1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png","sheet_x":26,"sheet_y":58,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FF":{"unified":"1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF","non_qualified":"1F9D1-1F3FD-200D-2764-200D-1F48B-200D-1F9D1-1F3FF","image":"1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png","sheet_x":26,"sheet_y":59,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FB":{"unified":"1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB","non_qualified":"1F9D1-1F3FE-200D-2764-200D-1F48B-200D-1F9D1-1F3FB","image":"1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png","sheet_x":26,"sheet_y":60,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FC":{"unified":"1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC","non_qualified":"1F9D1-1F3FE-200D-2764-200D-1F48B-200D-1F9D1-1F3FC","image":"1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png","sheet_x":27,"sheet_y":0,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FD":{"unified":"1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD","non_qualified":"1F9D1-1F3FE-200D-2764-200D-1F48B-200D-1F9D1-1F3FD","image":"1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png","sheet_x":27,"sheet_y":1,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FF":{"unified":"1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF","non_qualified":"1F9D1-1F3FE-200D-2764-200D-1F48B-200D-1F9D1-1F3FF","image":"1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png","sheet_x":27,"sheet_y":2,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FB":{"unified":"1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB","non_qualified":"1F9D1-1F3FF-200D-2764-200D-1F48B-200D-1F9D1-1F3FB","image":"1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png","sheet_x":27,"sheet_y":3,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FC":{"unified":"1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC","non_qualified":"1F9D1-1F3FF-200D-2764-200D-1F48B-200D-1F9D1-1F3FC","image":"1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png","sheet_x":27,"sheet_y":4,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FD":{"unified":"1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD","non_qualified":"1F9D1-1F3FF-200D-2764-200D-1F48B-200D-1F9D1-1F3FD","image":"1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png","sheet_x":27,"sheet_y":5,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FE":{"unified":"1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE","non_qualified":"1F9D1-1F3FF-200D-2764-200D-1F48B-200D-1F9D1-1F3FE","image":"1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png","sheet_x":27,"sheet_y":6,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false}}},{"name":"BOUQUET","unified":"1F490","non_qualified":null,"docomo":null,"au":"EA95","softbank":"E306","google":"FE828","image":"1f490.png","sheet_x":27,"sheet_y":7,"short_name":"bouquet","short_names":["bouquet"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-flower","sort_order":659,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"COUPLE WITH HEART","unified":"1F491","non_qualified":null,"docomo":"E6ED","au":"EADA","softbank":"E425","google":"FE829","image":"1f491.png","sheet_x":27,"sheet_y":8,"short_name":"couple_with_heart","short_names":["couple_with_heart"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":495,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false,"skin_variations":{"1F3FB":{"unified":"1F491-1F3FB","non_qualified":null,"image":"1f491-1f3fb.png","sheet_x":27,"sheet_y":9,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F491-1F3FC","non_qualified":null,"image":"1f491-1f3fc.png","sheet_x":27,"sheet_y":10,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F491-1F3FD","non_qualified":null,"image":"1f491-1f3fd.png","sheet_x":27,"sheet_y":11,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F491-1F3FE","non_qualified":null,"image":"1f491-1f3fe.png","sheet_x":27,"sheet_y":12,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F491-1F3FF","non_qualified":null,"image":"1f491-1f3ff.png","sheet_x":27,"sheet_y":13,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FB-1F3FC":{"unified":"1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FC","non_qualified":"1F9D1-1F3FB-200D-2764-200D-1F9D1-1F3FC","image":"1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fc.png","sheet_x":27,"sheet_y":14,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FD":{"unified":"1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FD","non_qualified":"1F9D1-1F3FB-200D-2764-200D-1F9D1-1F3FD","image":"1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fd.png","sheet_x":27,"sheet_y":15,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FE":{"unified":"1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FE","non_qualified":"1F9D1-1F3FB-200D-2764-200D-1F9D1-1F3FE","image":"1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fe.png","sheet_x":27,"sheet_y":16,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FF":{"unified":"1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FF","non_qualified":"1F9D1-1F3FB-200D-2764-200D-1F9D1-1F3FF","image":"1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3ff.png","sheet_x":27,"sheet_y":17,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FB":{"unified":"1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FB","non_qualified":"1F9D1-1F3FC-200D-2764-200D-1F9D1-1F3FB","image":"1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fb.png","sheet_x":27,"sheet_y":18,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FD":{"unified":"1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FD","non_qualified":"1F9D1-1F3FC-200D-2764-200D-1F9D1-1F3FD","image":"1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fd.png","sheet_x":27,"sheet_y":19,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FE":{"unified":"1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FE","non_qualified":"1F9D1-1F3FC-200D-2764-200D-1F9D1-1F3FE","image":"1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fe.png","sheet_x":27,"sheet_y":20,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FF":{"unified":"1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FF","non_qualified":"1F9D1-1F3FC-200D-2764-200D-1F9D1-1F3FF","image":"1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3ff.png","sheet_x":27,"sheet_y":21,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FB":{"unified":"1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FB","non_qualified":"1F9D1-1F3FD-200D-2764-200D-1F9D1-1F3FB","image":"1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fb.png","sheet_x":27,"sheet_y":22,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FC":{"unified":"1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FC","non_qualified":"1F9D1-1F3FD-200D-2764-200D-1F9D1-1F3FC","image":"1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fc.png","sheet_x":27,"sheet_y":23,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FE":{"unified":"1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FE","non_qualified":"1F9D1-1F3FD-200D-2764-200D-1F9D1-1F3FE","image":"1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fe.png","sheet_x":27,"sheet_y":24,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FF":{"unified":"1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FF","non_qualified":"1F9D1-1F3FD-200D-2764-200D-1F9D1-1F3FF","image":"1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3ff.png","sheet_x":27,"sheet_y":25,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FB":{"unified":"1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FB","non_qualified":"1F9D1-1F3FE-200D-2764-200D-1F9D1-1F3FB","image":"1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fb.png","sheet_x":27,"sheet_y":26,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FC":{"unified":"1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FC","non_qualified":"1F9D1-1F3FE-200D-2764-200D-1F9D1-1F3FC","image":"1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fc.png","sheet_x":27,"sheet_y":27,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FD":{"unified":"1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FD","non_qualified":"1F9D1-1F3FE-200D-2764-200D-1F9D1-1F3FD","image":"1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fd.png","sheet_x":27,"sheet_y":28,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FF":{"unified":"1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FF","non_qualified":"1F9D1-1F3FE-200D-2764-200D-1F9D1-1F3FF","image":"1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3ff.png","sheet_x":27,"sheet_y":29,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FB":{"unified":"1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FB","non_qualified":"1F9D1-1F3FF-200D-2764-200D-1F9D1-1F3FB","image":"1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fb.png","sheet_x":27,"sheet_y":30,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FC":{"unified":"1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FC","non_qualified":"1F9D1-1F3FF-200D-2764-200D-1F9D1-1F3FC","image":"1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fc.png","sheet_x":27,"sheet_y":31,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FD":{"unified":"1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FD","non_qualified":"1F9D1-1F3FF-200D-2764-200D-1F9D1-1F3FD","image":"1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fd.png","sheet_x":27,"sheet_y":32,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FE":{"unified":"1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FE","non_qualified":"1F9D1-1F3FF-200D-2764-200D-1F9D1-1F3FE","image":"1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fe.png","sheet_x":27,"sheet_y":33,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false}}},{"name":"WEDDING","unified":"1F492","non_qualified":null,"docomo":null,"au":"E5BB","softbank":"E43D","google":"FE82A","image":"1f492.png","sheet_x":27,"sheet_y":34,"short_name":"wedding","short_names":["wedding"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":860,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BEATING HEART","unified":"1F493","non_qualified":null,"docomo":"E6ED","au":"EB75","softbank":"E327","google":"FEB0D","image":"1f493.png","sheet_x":27,"sheet_y":35,"short_name":"heartbeat","short_names":["heartbeat"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":133,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BROKEN HEART","unified":"1F494","non_qualified":null,"docomo":"E6EE","au":"E477","softbank":"E023","google":"FEB0E","image":"1f494.png","sheet_x":27,"sheet_y":36,"short_name":"broken_heart","short_names":["broken_heart"],"text":"<\/3","texts":["<\/3"],"category":"Smileys & Emotion","subcategory":"heart","sort_order":138,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TWO HEARTS","unified":"1F495","non_qualified":null,"docomo":"E6EF","au":"E478","softbank":null,"google":"FEB0F","image":"1f495.png","sheet_x":27,"sheet_y":37,"short_name":"two_hearts","short_names":["two_hearts"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":135,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SPARKLING HEART","unified":"1F496","non_qualified":null,"docomo":"E6EC","au":"EAA6","softbank":null,"google":"FEB10","image":"1f496.png","sheet_x":27,"sheet_y":38,"short_name":"sparkling_heart","short_names":["sparkling_heart"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":131,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GROWING HEART","unified":"1F497","non_qualified":null,"docomo":"E6ED","au":"EB75","softbank":"E328","google":"FEB11","image":"1f497.png","sheet_x":27,"sheet_y":39,"short_name":"heartpulse","short_names":["heartpulse"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":132,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HEART WITH ARROW","unified":"1F498","non_qualified":null,"docomo":"E6EC","au":"E4EA","softbank":"E329","google":"FEB12","image":"1f498.png","sheet_x":27,"sheet_y":40,"short_name":"cupid","short_names":["cupid"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":129,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLUE HEART","unified":"1F499","non_qualified":null,"docomo":"E6EC","au":"EAA7","softbank":"E32A","google":"FEB13","image":"1f499.png","sheet_x":27,"sheet_y":41,"short_name":"blue_heart","short_names":["blue_heart"],"text":"<3","texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":146,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GREEN HEART","unified":"1F49A","non_qualified":null,"docomo":"E6EC","au":"EAA8","softbank":"E32B","google":"FEB14","image":"1f49a.png","sheet_x":27,"sheet_y":42,"short_name":"green_heart","short_names":["green_heart"],"text":"<3","texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":145,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"YELLOW HEART","unified":"1F49B","non_qualified":null,"docomo":"E6EC","au":"EAA9","softbank":"E32C","google":"FEB15","image":"1f49b.png","sheet_x":27,"sheet_y":43,"short_name":"yellow_heart","short_names":["yellow_heart"],"text":"<3","texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":144,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PURPLE HEART","unified":"1F49C","non_qualified":null,"docomo":"E6EC","au":"EAAA","softbank":"E32D","google":"FEB16","image":"1f49c.png","sheet_x":27,"sheet_y":44,"short_name":"purple_heart","short_names":["purple_heart"],"text":"<3","texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":148,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HEART WITH RIBBON","unified":"1F49D","non_qualified":null,"docomo":"E6EC","au":"EB54","softbank":"E437","google":"FEB17","image":"1f49d.png","sheet_x":27,"sheet_y":45,"short_name":"gift_heart","short_names":["gift_heart"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":130,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"REVOLVING HEARTS","unified":"1F49E","non_qualified":null,"docomo":"E6ED","au":"E5AF","softbank":null,"google":"FEB18","image":"1f49e.png","sheet_x":27,"sheet_y":46,"short_name":"revolving_hearts","short_names":["revolving_hearts"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":134,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HEART DECORATION","unified":"1F49F","non_qualified":null,"docomo":"E6F8","au":"E595","softbank":"E204","google":"FEB19","image":"1f49f.png","sheet_x":27,"sheet_y":47,"short_name":"heart_decoration","short_names":["heart_decoration"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":136,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DIAMOND SHAPE WITH A DOT INSIDE","unified":"1F4A0","non_qualified":null,"docomo":"E6F8","au":null,"softbank":null,"google":"FEB55","image":"1f4a0.png","sheet_x":27,"sheet_y":48,"short_name":"diamond_shape_with_a_dot_inside","short_names":["diamond_shape_with_a_dot_inside"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1603,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ELECTRIC LIGHT BULB","unified":"1F4A1","non_qualified":null,"docomo":"E6FB","au":"E476","softbank":"E10F","google":"FEB56","image":"1f4a1.png","sheet_x":27,"sheet_y":49,"short_name":"bulb","short_names":["bulb"],"text":null,"texts":null,"category":"Objects","subcategory":"light & video","sort_order":1231,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ANGER SYMBOL","unified":"1F4A2","non_qualified":null,"docomo":"E6FC","au":"E4E5","softbank":"E334","google":"FEB57","image":"1f4a2.png","sheet_x":27,"sheet_y":50,"short_name":"anger","short_names":["anger"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"emotion","sort_order":155,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BOMB","unified":"1F4A3","non_qualified":null,"docomo":"E6FE","au":"E47A","softbank":"E311","google":"FEB58","image":"1f4a3.png","sheet_x":27,"sheet_y":51,"short_name":"bomb","short_names":["bomb"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1318,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SLEEPING SYMBOL","unified":"1F4A4","non_qualified":null,"docomo":"E701","au":"E475","softbank":"E13C","google":"FEB59","image":"1f4a4.png","sheet_x":27,"sheet_y":52,"short_name":"zzz","short_names":["zzz"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"emotion","sort_order":166,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"COLLISION SYMBOL","unified":"1F4A5","non_qualified":null,"docomo":"E705","au":"E5B0","softbank":null,"google":"FEB5A","image":"1f4a5.png","sheet_x":27,"sheet_y":53,"short_name":"boom","short_names":["boom","collision"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"emotion","sort_order":156,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SPLASHING SWEAT SYMBOL","unified":"1F4A6","non_qualified":null,"docomo":"E706","au":"E5B1","softbank":"E331","google":"FEB5B","image":"1f4a6.png","sheet_x":27,"sheet_y":54,"short_name":"sweat_drops","short_names":["sweat_drops"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"emotion","sort_order":158,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DROPLET","unified":"1F4A7","non_qualified":null,"docomo":"E707","au":"E4E6","softbank":null,"google":"FEB5C","image":"1f4a7.png","sheet_x":27,"sheet_y":55,"short_name":"droplet","short_names":["droplet"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1036,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DASH SYMBOL","unified":"1F4A8","non_qualified":null,"docomo":"E708","au":"E4F4","softbank":"E330","google":"FEB5D","image":"1f4a8.png","sheet_x":27,"sheet_y":56,"short_name":"dash","short_names":["dash"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"emotion","sort_order":159,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PILE OF POO","unified":"1F4A9","non_qualified":null,"docomo":null,"au":"E4F5","softbank":"E05A","google":"FE4F4","image":"1f4a9.png","sheet_x":27,"sheet_y":57,"short_name":"hankey","short_names":["hankey","poop","shit"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-costume","sort_order":108,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FLEXED BICEPS","unified":"1F4AA","non_qualified":null,"docomo":null,"au":"E4E9","softbank":"E14C","google":"FEB5E","image":"1f4aa.png","sheet_x":27,"sheet_y":58,"short_name":"muscle","short_names":["muscle"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":210,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F4AA-1F3FB","non_qualified":null,"image":"1f4aa-1f3fb.png","sheet_x":27,"sheet_y":59,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F4AA-1F3FC","non_qualified":null,"image":"1f4aa-1f3fc.png","sheet_x":27,"sheet_y":60,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F4AA-1F3FD","non_qualified":null,"image":"1f4aa-1f3fd.png","sheet_x":28,"sheet_y":0,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F4AA-1F3FE","non_qualified":null,"image":"1f4aa-1f3fe.png","sheet_x":28,"sheet_y":1,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F4AA-1F3FF","non_qualified":null,"image":"1f4aa-1f3ff.png","sheet_x":28,"sheet_y":2,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"DIZZY SYMBOL","unified":"1F4AB","non_qualified":null,"docomo":null,"au":"EB5C","softbank":null,"google":"FEB5F","image":"1f4ab.png","sheet_x":28,"sheet_y":3,"short_name":"dizzy","short_names":["dizzy"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"emotion","sort_order":157,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SPEECH BALLOON","unified":"1F4AC","non_qualified":null,"docomo":null,"au":"E4FD","softbank":null,"google":"FE532","image":"1f4ac.png","sheet_x":28,"sheet_y":4,"short_name":"speech_balloon","short_names":["speech_balloon"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"emotion","sort_order":161,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"THOUGHT BALLOON","unified":"1F4AD","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4ad.png","sheet_x":28,"sheet_y":5,"short_name":"thought_balloon","short_names":["thought_balloon"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"emotion","sort_order":165,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WHITE FLOWER","unified":"1F4AE","non_qualified":null,"docomo":null,"au":"E4F0","softbank":null,"google":"FEB7A","image":"1f4ae.png","sheet_x":28,"sheet_y":6,"short_name":"white_flower","short_names":["white_flower"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-flower","sort_order":661,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HUNDRED POINTS SYMBOL","unified":"1F4AF","non_qualified":null,"docomo":null,"au":"E4F2","softbank":null,"google":"FEB7B","image":"1f4af.png","sheet_x":28,"sheet_y":7,"short_name":"100","short_names":["100"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"emotion","sort_order":154,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MONEY BAG","unified":"1F4B0","non_qualified":null,"docomo":"E715","au":"E4C7","softbank":"E12F","google":"FE4DD","image":"1f4b0.png","sheet_x":28,"sheet_y":8,"short_name":"moneybag","short_names":["moneybag"],"text":null,"texts":null,"category":"Objects","subcategory":"money","sort_order":1252,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CURRENCY EXCHANGE","unified":"1F4B1","non_qualified":null,"docomo":null,"au":null,"softbank":"E149","google":"FE4DE","image":"1f4b1.png","sheet_x":28,"sheet_y":9,"short_name":"currency_exchange","short_names":["currency_exchange"],"text":null,"texts":null,"category":"Symbols","subcategory":"currency","sort_order":1498,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HEAVY DOLLAR SIGN","unified":"1F4B2","non_qualified":null,"docomo":"E715","au":"E579","softbank":null,"google":"FE4E0","image":"1f4b2.png","sheet_x":28,"sheet_y":10,"short_name":"heavy_dollar_sign","short_names":["heavy_dollar_sign"],"text":null,"texts":null,"category":"Symbols","subcategory":"currency","sort_order":1499,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CREDIT CARD","unified":"1F4B3","non_qualified":null,"docomo":null,"au":"E57C","softbank":null,"google":"FE4E1","image":"1f4b3.png","sheet_x":28,"sheet_y":11,"short_name":"credit_card","short_names":["credit_card"],"text":null,"texts":null,"category":"Objects","subcategory":"money","sort_order":1259,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BANKNOTE WITH YEN SIGN","unified":"1F4B4","non_qualified":null,"docomo":"E6D6","au":"E57D","softbank":null,"google":"FE4E2","image":"1f4b4.png","sheet_x":28,"sheet_y":12,"short_name":"yen","short_names":["yen"],"text":null,"texts":null,"category":"Objects","subcategory":"money","sort_order":1254,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BANKNOTE WITH DOLLAR SIGN","unified":"1F4B5","non_qualified":null,"docomo":"E715","au":"E585","softbank":null,"google":"FE4E3","image":"1f4b5.png","sheet_x":28,"sheet_y":13,"short_name":"dollar","short_names":["dollar"],"text":null,"texts":null,"category":"Objects","subcategory":"money","sort_order":1255,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BANKNOTE WITH EURO SIGN","unified":"1F4B6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4b6.png","sheet_x":28,"sheet_y":14,"short_name":"euro","short_names":["euro"],"text":null,"texts":null,"category":"Objects","subcategory":"money","sort_order":1256,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BANKNOTE WITH POUND SIGN","unified":"1F4B7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4b7.png","sheet_x":28,"sheet_y":15,"short_name":"pound","short_names":["pound"],"text":null,"texts":null,"category":"Objects","subcategory":"money","sort_order":1257,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MONEY WITH WINGS","unified":"1F4B8","non_qualified":null,"docomo":null,"au":"EB5B","softbank":null,"google":"FE4E4","image":"1f4b8.png","sheet_x":28,"sheet_y":16,"short_name":"money_with_wings","short_names":["money_with_wings"],"text":null,"texts":null,"category":"Objects","subcategory":"money","sort_order":1258,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CHART WITH UPWARDS TREND AND YEN SIGN","unified":"1F4B9","non_qualified":null,"docomo":null,"au":"E5DC","softbank":"E14A","google":"FE4DF","image":"1f4b9.png","sheet_x":28,"sheet_y":17,"short_name":"chart","short_names":["chart"],"text":null,"texts":null,"category":"Objects","subcategory":"money","sort_order":1261,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SEAT","unified":"1F4BA","non_qualified":null,"docomo":"E6B2","au":null,"softbank":"E11F","google":"FE537","image":"1f4ba.png","sheet_x":28,"sheet_y":18,"short_name":"seat","short_names":["seat"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-air","sort_order":950,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PERSONAL COMPUTER","unified":"1F4BB","non_qualified":null,"docomo":"E716","au":"E5B8","softbank":"E00C","google":"FE538","image":"1f4bb.png","sheet_x":28,"sheet_y":19,"short_name":"computer","short_names":["computer"],"text":null,"texts":null,"category":"Objects","subcategory":"computer","sort_order":1208,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BRIEFCASE","unified":"1F4BC","non_qualified":null,"docomo":"E682","au":"E5CE","softbank":"E11E","google":"FE53B","image":"1f4bc.png","sheet_x":28,"sheet_y":20,"short_name":"briefcase","short_names":["briefcase"],"text":null,"texts":null,"category":"Objects","subcategory":"office","sort_order":1282,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MINIDISC","unified":"1F4BD","non_qualified":null,"docomo":null,"au":"E582","softbank":"E316","google":"FE53C","image":"1f4bd.png","sheet_x":28,"sheet_y":21,"short_name":"minidisc","short_names":["minidisc"],"text":null,"texts":null,"category":"Objects","subcategory":"computer","sort_order":1214,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FLOPPY DISK","unified":"1F4BE","non_qualified":null,"docomo":null,"au":"E562","softbank":null,"google":"FE53D","image":"1f4be.png","sheet_x":28,"sheet_y":22,"short_name":"floppy_disk","short_names":["floppy_disk"],"text":null,"texts":null,"category":"Objects","subcategory":"computer","sort_order":1215,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"OPTICAL DISC","unified":"1F4BF","non_qualified":null,"docomo":"E68C","au":"E50C","softbank":"E126","google":"FE81D","image":"1f4bf.png","sheet_x":28,"sheet_y":23,"short_name":"cd","short_names":["cd"],"text":null,"texts":null,"category":"Objects","subcategory":"computer","sort_order":1216,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DVD","unified":"1F4C0","non_qualified":null,"docomo":"E68C","au":"E50C","softbank":"E127","google":"FE81E","image":"1f4c0.png","sheet_x":28,"sheet_y":24,"short_name":"dvd","short_names":["dvd"],"text":null,"texts":null,"category":"Objects","subcategory":"computer","sort_order":1217,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FILE FOLDER","unified":"1F4C1","non_qualified":null,"docomo":null,"au":"E58F","softbank":null,"google":"FE543","image":"1f4c1.png","sheet_x":28,"sheet_y":25,"short_name":"file_folder","short_names":["file_folder"],"text":null,"texts":null,"category":"Objects","subcategory":"office","sort_order":1283,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"OPEN FILE FOLDER","unified":"1F4C2","non_qualified":null,"docomo":null,"au":"E590","softbank":null,"google":"FE544","image":"1f4c2.png","sheet_x":28,"sheet_y":26,"short_name":"open_file_folder","short_names":["open_file_folder"],"text":null,"texts":null,"category":"Objects","subcategory":"office","sort_order":1284,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PAGE WITH CURL","unified":"1F4C3","non_qualified":null,"docomo":"E689","au":"E561","softbank":null,"google":"FE540","image":"1f4c3.png","sheet_x":28,"sheet_y":27,"short_name":"page_with_curl","short_names":["page_with_curl"],"text":null,"texts":null,"category":"Objects","subcategory":"book-paper","sort_order":1244,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PAGE FACING UP","unified":"1F4C4","non_qualified":null,"docomo":"E689","au":"E569","softbank":null,"google":"FE541","image":"1f4c4.png","sheet_x":28,"sheet_y":28,"short_name":"page_facing_up","short_names":["page_facing_up"],"text":null,"texts":null,"category":"Objects","subcategory":"book-paper","sort_order":1246,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CALENDAR","unified":"1F4C5","non_qualified":null,"docomo":null,"au":"E563","softbank":null,"google":"FE542","image":"1f4c5.png","sheet_x":28,"sheet_y":29,"short_name":"date","short_names":["date"],"text":null,"texts":null,"category":"Objects","subcategory":"office","sort_order":1286,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TEAR-OFF CALENDAR","unified":"1F4C6","non_qualified":null,"docomo":null,"au":"E56A","softbank":null,"google":"FE549","image":"1f4c6.png","sheet_x":28,"sheet_y":30,"short_name":"calendar","short_names":["calendar"],"text":null,"texts":null,"category":"Objects","subcategory":"office","sort_order":1287,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CARD INDEX","unified":"1F4C7","non_qualified":null,"docomo":"E683","au":"E56C","softbank":null,"google":"FE54D","image":"1f4c7.png","sheet_x":28,"sheet_y":31,"short_name":"card_index","short_names":["card_index"],"text":null,"texts":null,"category":"Objects","subcategory":"office","sort_order":1290,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CHART WITH UPWARDS TREND","unified":"1F4C8","non_qualified":null,"docomo":null,"au":"E575","softbank":null,"google":"FE54B","image":"1f4c8.png","sheet_x":28,"sheet_y":32,"short_name":"chart_with_upwards_trend","short_names":["chart_with_upwards_trend"],"text":null,"texts":null,"category":"Objects","subcategory":"office","sort_order":1291,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CHART WITH DOWNWARDS TREND","unified":"1F4C9","non_qualified":null,"docomo":null,"au":"E576","softbank":null,"google":"FE54C","image":"1f4c9.png","sheet_x":28,"sheet_y":33,"short_name":"chart_with_downwards_trend","short_names":["chart_with_downwards_trend"],"text":null,"texts":null,"category":"Objects","subcategory":"office","sort_order":1292,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BAR CHART","unified":"1F4CA","non_qualified":null,"docomo":null,"au":"E574","softbank":null,"google":"FE54A","image":"1f4ca.png","sheet_x":28,"sheet_y":34,"short_name":"bar_chart","short_names":["bar_chart"],"text":null,"texts":null,"category":"Objects","subcategory":"office","sort_order":1293,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLIPBOARD","unified":"1F4CB","non_qualified":null,"docomo":"E689","au":"E564","softbank":null,"google":"FE548","image":"1f4cb.png","sheet_x":28,"sheet_y":35,"short_name":"clipboard","short_names":["clipboard"],"text":null,"texts":null,"category":"Objects","subcategory":"office","sort_order":1294,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PUSHPIN","unified":"1F4CC","non_qualified":null,"docomo":null,"au":"E56D","softbank":null,"google":"FE54E","image":"1f4cc.png","sheet_x":28,"sheet_y":36,"short_name":"pushpin","short_names":["pushpin"],"text":null,"texts":null,"category":"Objects","subcategory":"office","sort_order":1295,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ROUND PUSHPIN","unified":"1F4CD","non_qualified":null,"docomo":null,"au":"E560","softbank":null,"google":"FE53F","image":"1f4cd.png","sheet_x":28,"sheet_y":37,"short_name":"round_pushpin","short_names":["round_pushpin"],"text":null,"texts":null,"category":"Objects","subcategory":"office","sort_order":1296,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PAPERCLIP","unified":"1F4CE","non_qualified":null,"docomo":"E730","au":"E4A0","softbank":null,"google":"FE53A","image":"1f4ce.png","sheet_x":28,"sheet_y":38,"short_name":"paperclip","short_names":["paperclip"],"text":null,"texts":null,"category":"Objects","subcategory":"office","sort_order":1297,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},{"name":"STRAIGHT RULER","unified":"1F4CF","non_qualified":null,"docomo":null,"au":"E570","softbank":null,"google":"FE550","image":"1f4cf.png","sheet_x":28,"sheet_y":39,"short_name":"straight_ruler","short_names":["straight_ruler"],"text":null,"texts":null,"category":"Objects","subcategory":"office","sort_order":1299,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TRIANGULAR RULER","unified":"1F4D0","non_qualified":null,"docomo":null,"au":"E4A2","softbank":null,"google":"FE551","image":"1f4d0.png","sheet_x":28,"sheet_y":40,"short_name":"triangular_ruler","short_names":["triangular_ruler"],"text":null,"texts":null,"category":"Objects","subcategory":"office","sort_order":1300,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BOOKMARK TABS","unified":"1F4D1","non_qualified":null,"docomo":"E689","au":"EB0B","softbank":null,"google":"FE552","image":"1f4d1.png","sheet_x":28,"sheet_y":41,"short_name":"bookmark_tabs","short_names":["bookmark_tabs"],"text":null,"texts":null,"category":"Objects","subcategory":"book-paper","sort_order":1249,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LEDGER","unified":"1F4D2","non_qualified":null,"docomo":"E683","au":"E56E","softbank":null,"google":"FE54F","image":"1f4d2.png","sheet_x":28,"sheet_y":42,"short_name":"ledger","short_names":["ledger"],"text":null,"texts":null,"category":"Objects","subcategory":"book-paper","sort_order":1243,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NOTEBOOK","unified":"1F4D3","non_qualified":null,"docomo":"E683","au":"E56B","softbank":null,"google":"FE545","image":"1f4d3.png","sheet_x":28,"sheet_y":43,"short_name":"notebook","short_names":["notebook"],"text":null,"texts":null,"category":"Objects","subcategory":"book-paper","sort_order":1242,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NOTEBOOK WITH DECORATIVE COVER","unified":"1F4D4","non_qualified":null,"docomo":"E683","au":"E49D","softbank":null,"google":"FE547","image":"1f4d4.png","sheet_x":28,"sheet_y":44,"short_name":"notebook_with_decorative_cover","short_names":["notebook_with_decorative_cover"],"text":null,"texts":null,"category":"Objects","subcategory":"book-paper","sort_order":1235,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOSED BOOK","unified":"1F4D5","non_qualified":null,"docomo":"E683","au":"E568","softbank":null,"google":"FE502","image":"1f4d5.png","sheet_x":28,"sheet_y":45,"short_name":"closed_book","short_names":["closed_book"],"text":null,"texts":null,"category":"Objects","subcategory":"book-paper","sort_order":1236,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"OPEN BOOK","unified":"1F4D6","non_qualified":null,"docomo":"E683","au":"E49F","softbank":"E148","google":"FE546","image":"1f4d6.png","sheet_x":28,"sheet_y":46,"short_name":"book","short_names":["book","open_book"],"text":null,"texts":null,"category":"Objects","subcategory":"book-paper","sort_order":1237,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GREEN BOOK","unified":"1F4D7","non_qualified":null,"docomo":"E683","au":"E565","softbank":null,"google":"FE4FF","image":"1f4d7.png","sheet_x":28,"sheet_y":47,"short_name":"green_book","short_names":["green_book"],"text":null,"texts":null,"category":"Objects","subcategory":"book-paper","sort_order":1238,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLUE BOOK","unified":"1F4D8","non_qualified":null,"docomo":"E683","au":"E566","softbank":null,"google":"FE500","image":"1f4d8.png","sheet_x":28,"sheet_y":48,"short_name":"blue_book","short_names":["blue_book"],"text":null,"texts":null,"category":"Objects","subcategory":"book-paper","sort_order":1239,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ORANGE BOOK","unified":"1F4D9","non_qualified":null,"docomo":"E683","au":"E567","softbank":null,"google":"FE501","image":"1f4d9.png","sheet_x":28,"sheet_y":49,"short_name":"orange_book","short_names":["orange_book"],"text":null,"texts":null,"category":"Objects","subcategory":"book-paper","sort_order":1240,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BOOKS","unified":"1F4DA","non_qualified":null,"docomo":"E683","au":"E56F","softbank":null,"google":"FE503","image":"1f4da.png","sheet_x":28,"sheet_y":50,"short_name":"books","short_names":["books"],"text":null,"texts":null,"category":"Objects","subcategory":"book-paper","sort_order":1241,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NAME BADGE","unified":"1F4DB","non_qualified":null,"docomo":null,"au":"E51D","softbank":null,"google":"FE504","image":"1f4db.png","sheet_x":28,"sheet_y":51,"short_name":"name_badge","short_names":["name_badge"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1504,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SCROLL","unified":"1F4DC","non_qualified":null,"docomo":"E70A","au":"E55F","softbank":null,"google":"FE4FD","image":"1f4dc.png","sheet_x":28,"sheet_y":52,"short_name":"scroll","short_names":["scroll"],"text":null,"texts":null,"category":"Objects","subcategory":"book-paper","sort_order":1245,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MEMO","unified":"1F4DD","non_qualified":null,"docomo":"E689","au":"EA92","softbank":"E301","google":"FE527","image":"1f4dd.png","sheet_x":28,"sheet_y":53,"short_name":"memo","short_names":["memo","pencil"],"text":null,"texts":null,"category":"Objects","subcategory":"writing","sort_order":1281,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TELEPHONE RECEIVER","unified":"1F4DE","non_qualified":null,"docomo":"E687","au":"E51E","softbank":null,"google":"FE524","image":"1f4de.png","sheet_x":28,"sheet_y":54,"short_name":"telephone_receiver","short_names":["telephone_receiver"],"text":null,"texts":null,"category":"Objects","subcategory":"phone","sort_order":1202,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PAGER","unified":"1F4DF","non_qualified":null,"docomo":"E65A","au":"E59B","softbank":null,"google":"FE522","image":"1f4df.png","sheet_x":28,"sheet_y":55,"short_name":"pager","short_names":["pager"],"text":null,"texts":null,"category":"Objects","subcategory":"phone","sort_order":1203,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FAX MACHINE","unified":"1F4E0","non_qualified":null,"docomo":"E6D0","au":"E520","softbank":"E00B","google":"FE528","image":"1f4e0.png","sheet_x":28,"sheet_y":56,"short_name":"fax","short_names":["fax"],"text":null,"texts":null,"category":"Objects","subcategory":"phone","sort_order":1204,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SATELLITE ANTENNA","unified":"1F4E1","non_qualified":null,"docomo":null,"au":"E4A8","softbank":"E14B","google":"FE531","image":"1f4e1.png","sheet_x":28,"sheet_y":57,"short_name":"satellite_antenna","short_names":["satellite_antenna"],"text":null,"texts":null,"category":"Objects","subcategory":"science","sort_order":1342,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PUBLIC ADDRESS LOUDSPEAKER","unified":"1F4E2","non_qualified":null,"docomo":null,"au":"E511","softbank":"E142","google":"FE52F","image":"1f4e2.png","sheet_x":28,"sheet_y":58,"short_name":"loudspeaker","short_names":["loudspeaker"],"text":null,"texts":null,"category":"Objects","subcategory":"sound","sort_order":1174,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CHEERING MEGAPHONE","unified":"1F4E3","non_qualified":null,"docomo":null,"au":"E511","softbank":"E317","google":"FE530","image":"1f4e3.png","sheet_x":28,"sheet_y":59,"short_name":"mega","short_names":["mega"],"text":null,"texts":null,"category":"Objects","subcategory":"sound","sort_order":1175,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"OUTBOX TRAY","unified":"1F4E4","non_qualified":null,"docomo":null,"au":"E592","softbank":null,"google":"FE533","image":"1f4e4.png","sheet_x":28,"sheet_y":60,"short_name":"outbox_tray","short_names":["outbox_tray"],"text":null,"texts":null,"category":"Objects","subcategory":"mail","sort_order":1266,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"INBOX TRAY","unified":"1F4E5","non_qualified":null,"docomo":null,"au":"E593","softbank":null,"google":"FE534","image":"1f4e5.png","sheet_x":29,"sheet_y":0,"short_name":"inbox_tray","short_names":["inbox_tray"],"text":null,"texts":null,"category":"Objects","subcategory":"mail","sort_order":1267,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PACKAGE","unified":"1F4E6","non_qualified":null,"docomo":"E685","au":"E51F","softbank":null,"google":"FE535","image":"1f4e6.png","sheet_x":29,"sheet_y":1,"short_name":"package","short_names":["package"],"text":null,"texts":null,"category":"Objects","subcategory":"mail","sort_order":1268,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"E-MAIL SYMBOL","unified":"1F4E7","non_qualified":null,"docomo":"E6D3","au":"EB71","softbank":null,"google":"FEB92","image":"1f4e7.png","sheet_x":29,"sheet_y":2,"short_name":"e-mail","short_names":["e-mail"],"text":null,"texts":null,"category":"Objects","subcategory":"mail","sort_order":1263,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"INCOMING ENVELOPE","unified":"1F4E8","non_qualified":null,"docomo":"E6CF","au":"E591","softbank":null,"google":"FE52A","image":"1f4e8.png","sheet_x":29,"sheet_y":3,"short_name":"incoming_envelope","short_names":["incoming_envelope"],"text":null,"texts":null,"category":"Objects","subcategory":"mail","sort_order":1264,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ENVELOPE WITH DOWNWARDS ARROW ABOVE","unified":"1F4E9","non_qualified":null,"docomo":"E6CF","au":"EB62","softbank":"E103","google":"FE52B","image":"1f4e9.png","sheet_x":29,"sheet_y":4,"short_name":"envelope_with_arrow","short_names":["envelope_with_arrow"],"text":null,"texts":null,"category":"Objects","subcategory":"mail","sort_order":1265,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOSED MAILBOX WITH LOWERED FLAG","unified":"1F4EA","non_qualified":null,"docomo":"E665","au":"E51B","softbank":null,"google":"FE52C","image":"1f4ea.png","sheet_x":29,"sheet_y":5,"short_name":"mailbox_closed","short_names":["mailbox_closed"],"text":null,"texts":null,"category":"Objects","subcategory":"mail","sort_order":1270,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOSED MAILBOX WITH RAISED FLAG","unified":"1F4EB","non_qualified":null,"docomo":"E665","au":"EB0A","softbank":"E101","google":"FE52D","image":"1f4eb.png","sheet_x":29,"sheet_y":6,"short_name":"mailbox","short_names":["mailbox"],"text":null,"texts":null,"category":"Objects","subcategory":"mail","sort_order":1269,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"OPEN MAILBOX WITH RAISED FLAG","unified":"1F4EC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4ec.png","sheet_x":29,"sheet_y":7,"short_name":"mailbox_with_mail","short_names":["mailbox_with_mail"],"text":null,"texts":null,"category":"Objects","subcategory":"mail","sort_order":1271,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"OPEN MAILBOX WITH LOWERED FLAG","unified":"1F4ED","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4ed.png","sheet_x":29,"sheet_y":8,"short_name":"mailbox_with_no_mail","short_names":["mailbox_with_no_mail"],"text":null,"texts":null,"category":"Objects","subcategory":"mail","sort_order":1272,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"POSTBOX","unified":"1F4EE","non_qualified":null,"docomo":"E665","au":"E51B","softbank":"E102","google":"FE52E","image":"1f4ee.png","sheet_x":29,"sheet_y":9,"short_name":"postbox","short_names":["postbox"],"text":null,"texts":null,"category":"Objects","subcategory":"mail","sort_order":1273,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"POSTAL HORN","unified":"1F4EF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4ef.png","sheet_x":29,"sheet_y":10,"short_name":"postal_horn","short_names":["postal_horn"],"text":null,"texts":null,"category":"Objects","subcategory":"sound","sort_order":1176,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NEWSPAPER","unified":"1F4F0","non_qualified":null,"docomo":null,"au":"E58B","softbank":null,"google":"FE822","image":"1f4f0.png","sheet_x":29,"sheet_y":11,"short_name":"newspaper","short_names":["newspaper"],"text":null,"texts":null,"category":"Objects","subcategory":"book-paper","sort_order":1247,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MOBILE PHONE","unified":"1F4F1","non_qualified":null,"docomo":"E688","au":"E588","softbank":"E00A","google":"FE525","image":"1f4f1.png","sheet_x":29,"sheet_y":12,"short_name":"iphone","short_names":["iphone"],"text":null,"texts":null,"category":"Objects","subcategory":"phone","sort_order":1199,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MOBILE PHONE WITH RIGHTWARDS ARROW AT LEFT","unified":"1F4F2","non_qualified":null,"docomo":"E6CE","au":"EB08","softbank":"E104","google":"FE526","image":"1f4f2.png","sheet_x":29,"sheet_y":13,"short_name":"calling","short_names":["calling"],"text":null,"texts":null,"category":"Objects","subcategory":"phone","sort_order":1200,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"VIBRATION MODE","unified":"1F4F3","non_qualified":null,"docomo":null,"au":"EA90","softbank":"E250","google":"FE839","image":"1f4f3.png","sheet_x":29,"sheet_y":14,"short_name":"vibration_mode","short_names":["vibration_mode"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1480,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MOBILE PHONE OFF","unified":"1F4F4","non_qualified":null,"docomo":null,"au":"EA91","softbank":"E251","google":"FE83A","image":"1f4f4.png","sheet_x":29,"sheet_y":15,"short_name":"mobile_phone_off","short_names":["mobile_phone_off"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1481,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NO MOBILE PHONES","unified":"1F4F5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4f5.png","sheet_x":29,"sheet_y":16,"short_name":"no_mobile_phones","short_names":["no_mobile_phones"],"text":null,"texts":null,"category":"Symbols","subcategory":"warning","sort_order":1406,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ANTENNA WITH BARS","unified":"1F4F6","non_qualified":null,"docomo":null,"au":"EA84","softbank":"E20B","google":"FE838","image":"1f4f6.png","sheet_x":29,"sheet_y":17,"short_name":"signal_strength","short_names":["signal_strength"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1478,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CAMERA","unified":"1F4F7","non_qualified":null,"docomo":"E681","au":"E515","softbank":"E008","google":"FE4EF","image":"1f4f7.png","sheet_x":29,"sheet_y":18,"short_name":"camera","short_names":["camera"],"text":null,"texts":null,"category":"Objects","subcategory":"light & video","sort_order":1224,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CAMERA WITH FLASH","unified":"1F4F8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4f8.png","sheet_x":29,"sheet_y":19,"short_name":"camera_with_flash","short_names":["camera_with_flash"],"text":null,"texts":null,"category":"Objects","subcategory":"light & video","sort_order":1225,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"VIDEO CAMERA","unified":"1F4F9","non_qualified":null,"docomo":"E677","au":"E57E","softbank":null,"google":"FE4F9","image":"1f4f9.png","sheet_x":29,"sheet_y":20,"short_name":"video_camera","short_names":["video_camera"],"text":null,"texts":null,"category":"Objects","subcategory":"light & video","sort_order":1226,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TELEVISION","unified":"1F4FA","non_qualified":null,"docomo":"E68A","au":"E502","softbank":"E12A","google":"FE81C","image":"1f4fa.png","sheet_x":29,"sheet_y":21,"short_name":"tv","short_names":["tv"],"text":null,"texts":null,"category":"Objects","subcategory":"light & video","sort_order":1223,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RADIO","unified":"1F4FB","non_qualified":null,"docomo":null,"au":"E5B9","softbank":"E128","google":"FE81F","image":"1f4fb.png","sheet_x":29,"sheet_y":22,"short_name":"radio","short_names":["radio"],"text":null,"texts":null,"category":"Objects","subcategory":"music","sort_order":1187,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"VIDEOCASSETTE","unified":"1F4FC","non_qualified":null,"docomo":null,"au":"E580","softbank":"E129","google":"FE820","image":"1f4fc.png","sheet_x":29,"sheet_y":23,"short_name":"vhs","short_names":["vhs"],"text":null,"texts":null,"category":"Objects","subcategory":"light & video","sort_order":1227,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FILM PROJECTOR","unified":"1F4FD-FE0F","non_qualified":"1F4FD","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4fd-fe0f.png","sheet_x":29,"sheet_y":24,"short_name":"film_projector","short_names":["film_projector"],"text":null,"texts":null,"category":"Objects","subcategory":"light & video","sort_order":1221,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PRAYER BEADS","unified":"1F4FF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4ff.png","sheet_x":29,"sheet_y":25,"short_name":"prayer_beads","short_names":["prayer_beads"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1166,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TWISTED RIGHTWARDS ARROWS","unified":"1F500","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f500.png","sheet_x":29,"sheet_y":26,"short_name":"twisted_rightwards_arrows","short_names":["twisted_rightwards_arrows"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1457,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS","unified":"1F501","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f501.png","sheet_x":29,"sheet_y":27,"short_name":"repeat","short_names":["repeat"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1458,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS WITH CIRCLED ONE OVERLAY","unified":"1F502","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f502.png","sheet_x":29,"sheet_y":28,"short_name":"repeat_one","short_names":["repeat_one"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1459,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS","unified":"1F503","non_qualified":null,"docomo":"E735","au":"EB0D","softbank":null,"google":"FEB91","image":"1f503.png","sheet_x":29,"sheet_y":29,"short_name":"arrows_clockwise","short_names":["arrows_clockwise"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1424,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ANTICLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS","unified":"1F504","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f504.png","sheet_x":29,"sheet_y":30,"short_name":"arrows_counterclockwise","short_names":["arrows_counterclockwise"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1425,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LOW BRIGHTNESS SYMBOL","unified":"1F505","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f505.png","sheet_x":29,"sheet_y":31,"short_name":"low_brightness","short_names":["low_brightness"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1476,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HIGH BRIGHTNESS SYMBOL","unified":"1F506","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f506.png","sheet_x":29,"sheet_y":32,"short_name":"high_brightness","short_names":["high_brightness"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1477,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SPEAKER WITH CANCELLATION STROKE","unified":"1F507","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f507.png","sheet_x":29,"sheet_y":33,"short_name":"mute","short_names":["mute"],"text":null,"texts":null,"category":"Objects","subcategory":"sound","sort_order":1170,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SPEAKER","unified":"1F508","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f508.png","sheet_x":29,"sheet_y":34,"short_name":"speaker","short_names":["speaker"],"text":null,"texts":null,"category":"Objects","subcategory":"sound","sort_order":1171,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SPEAKER WITH ONE SOUND WAVE","unified":"1F509","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f509.png","sheet_x":29,"sheet_y":35,"short_name":"sound","short_names":["sound"],"text":null,"texts":null,"category":"Objects","subcategory":"sound","sort_order":1172,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SPEAKER WITH THREE SOUND WAVES","unified":"1F50A","non_qualified":null,"docomo":null,"au":"E511","softbank":"E141","google":"FE821","image":"1f50a.png","sheet_x":29,"sheet_y":36,"short_name":"loud_sound","short_names":["loud_sound"],"text":null,"texts":null,"category":"Objects","subcategory":"sound","sort_order":1173,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BATTERY","unified":"1F50B","non_qualified":null,"docomo":null,"au":"E584","softbank":null,"google":"FE4FC","image":"1f50b.png","sheet_x":29,"sheet_y":37,"short_name":"battery","short_names":["battery"],"text":null,"texts":null,"category":"Objects","subcategory":"computer","sort_order":1205,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ELECTRIC PLUG","unified":"1F50C","non_qualified":null,"docomo":null,"au":"E589","softbank":null,"google":"FE4FE","image":"1f50c.png","sheet_x":29,"sheet_y":38,"short_name":"electric_plug","short_names":["electric_plug"],"text":null,"texts":null,"category":"Objects","subcategory":"computer","sort_order":1207,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LEFT-POINTING MAGNIFYING GLASS","unified":"1F50D","non_qualified":null,"docomo":"E6DC","au":"E518","softbank":"E114","google":"FEB85","image":"1f50d.png","sheet_x":29,"sheet_y":39,"short_name":"mag","short_names":["mag"],"text":null,"texts":null,"category":"Objects","subcategory":"light & video","sort_order":1228,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RIGHT-POINTING MAGNIFYING GLASS","unified":"1F50E","non_qualified":null,"docomo":"E6DC","au":"EB05","softbank":null,"google":"FEB8D","image":"1f50e.png","sheet_x":29,"sheet_y":40,"short_name":"mag_right","short_names":["mag_right"],"text":null,"texts":null,"category":"Objects","subcategory":"light & video","sort_order":1229,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LOCK WITH INK PEN","unified":"1F50F","non_qualified":null,"docomo":"E6D9","au":"EB0C","softbank":null,"google":"FEB90","image":"1f50f.png","sheet_x":29,"sheet_y":41,"short_name":"lock_with_ink_pen","short_names":["lock_with_ink_pen"],"text":null,"texts":null,"category":"Objects","subcategory":"lock","sort_order":1307,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOSED LOCK WITH KEY","unified":"1F510","non_qualified":null,"docomo":"E6D9","au":"EAFC","softbank":null,"google":"FEB8A","image":"1f510.png","sheet_x":29,"sheet_y":42,"short_name":"closed_lock_with_key","short_names":["closed_lock_with_key"],"text":null,"texts":null,"category":"Objects","subcategory":"lock","sort_order":1308,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"KEY","unified":"1F511","non_qualified":null,"docomo":"E6D9","au":"E519","softbank":"E03F","google":"FEB82","image":"1f511.png","sheet_x":29,"sheet_y":43,"short_name":"key","short_names":["key"],"text":null,"texts":null,"category":"Objects","subcategory":"lock","sort_order":1309,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LOCK","unified":"1F512","non_qualified":null,"docomo":"E6D9","au":"E51C","softbank":"E144","google":"FEB86","image":"1f512.png","sheet_x":29,"sheet_y":44,"short_name":"lock","short_names":["lock"],"text":null,"texts":null,"category":"Objects","subcategory":"lock","sort_order":1305,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"OPEN LOCK","unified":"1F513","non_qualified":null,"docomo":"E6D9","au":"E51C","softbank":"E145","google":"FEB87","image":"1f513.png","sheet_x":29,"sheet_y":45,"short_name":"unlock","short_names":["unlock"],"text":null,"texts":null,"category":"Objects","subcategory":"lock","sort_order":1306,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BELL","unified":"1F514","non_qualified":null,"docomo":"E713","au":"E512","softbank":"E325","google":"FE4F2","image":"1f514.png","sheet_x":29,"sheet_y":46,"short_name":"bell","short_names":["bell"],"text":null,"texts":null,"category":"Objects","subcategory":"sound","sort_order":1177,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BELL WITH CANCELLATION STROKE","unified":"1F515","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f515.png","sheet_x":29,"sheet_y":47,"short_name":"no_bell","short_names":["no_bell"],"text":null,"texts":null,"category":"Objects","subcategory":"sound","sort_order":1178,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BOOKMARK","unified":"1F516","non_qualified":null,"docomo":null,"au":"EB07","softbank":null,"google":"FEB8F","image":"1f516.png","sheet_x":29,"sheet_y":48,"short_name":"bookmark","short_names":["bookmark"],"text":null,"texts":null,"category":"Objects","subcategory":"book-paper","sort_order":1250,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LINK SYMBOL","unified":"1F517","non_qualified":null,"docomo":null,"au":"E58A","softbank":null,"google":"FEB4B","image":"1f517.png","sheet_x":29,"sheet_y":49,"short_name":"link","short_names":["link"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1330,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RADIO BUTTON","unified":"1F518","non_qualified":null,"docomo":null,"au":"EB04","softbank":null,"google":"FEB8C","image":"1f518.png","sheet_x":29,"sheet_y":50,"short_name":"radio_button","short_names":["radio_button"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1604,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BACK WITH LEFTWARDS ARROW ABOVE","unified":"1F519","non_qualified":null,"docomo":null,"au":"EB06","softbank":null,"google":"FEB8E","image":"1f519.png","sheet_x":29,"sheet_y":51,"short_name":"back","short_names":["back"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1426,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"END WITH LEFTWARDS ARROW ABOVE","unified":"1F51A","non_qualified":null,"docomo":"E6B9","au":null,"softbank":null,"google":"FE01A","image":"1f51a.png","sheet_x":29,"sheet_y":52,"short_name":"end","short_names":["end"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1427,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ON WITH EXCLAMATION MARK WITH LEFT RIGHT ARROW ABOVE","unified":"1F51B","non_qualified":null,"docomo":"E6B8","au":null,"softbank":null,"google":"FE019","image":"1f51b.png","sheet_x":29,"sheet_y":53,"short_name":"on","short_names":["on"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1428,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SOON WITH RIGHTWARDS ARROW ABOVE","unified":"1F51C","non_qualified":null,"docomo":"E6B7","au":null,"softbank":null,"google":"FE018","image":"1f51c.png","sheet_x":29,"sheet_y":54,"short_name":"soon","short_names":["soon"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1429,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TOP WITH UPWARDS ARROW ABOVE","unified":"1F51D","non_qualified":null,"docomo":null,"au":null,"softbank":"E24C","google":"FEB42","image":"1f51d.png","sheet_x":29,"sheet_y":55,"short_name":"top","short_names":["top"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1430,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NO ONE UNDER EIGHTEEN SYMBOL","unified":"1F51E","non_qualified":null,"docomo":null,"au":"EA83","softbank":"E207","google":"FEB25","image":"1f51e.png","sheet_x":29,"sheet_y":56,"short_name":"underage","short_names":["underage"],"text":null,"texts":null,"category":"Symbols","subcategory":"warning","sort_order":1407,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"KEYCAP TEN","unified":"1F51F","non_qualified":null,"docomo":null,"au":"E52B","softbank":null,"google":"FE83B","image":"1f51f.png","sheet_x":29,"sheet_y":57,"short_name":"keycap_ten","short_names":["keycap_ten"],"text":null,"texts":null,"category":"Symbols","subcategory":"keycap","sort_order":1533,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"INPUT SYMBOL FOR LATIN CAPITAL LETTERS","unified":"1F520","non_qualified":null,"docomo":null,"au":"EAFD","softbank":null,"google":"FEB7C","image":"1f520.png","sheet_x":29,"sheet_y":58,"short_name":"capital_abcd","short_names":["capital_abcd"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1534,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"INPUT SYMBOL FOR LATIN SMALL LETTERS","unified":"1F521","non_qualified":null,"docomo":null,"au":"EAFE","softbank":null,"google":"FEB7D","image":"1f521.png","sheet_x":29,"sheet_y":59,"short_name":"abcd","short_names":["abcd"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1535,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"INPUT SYMBOL FOR NUMBERS","unified":"1F522","non_qualified":null,"docomo":null,"au":"EAFF","softbank":null,"google":"FEB7E","image":"1f522.png","sheet_x":29,"sheet_y":60,"short_name":"1234","short_names":["1234"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1536,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"INPUT SYMBOL FOR SYMBOLS","unified":"1F523","non_qualified":null,"docomo":null,"au":"EB00","softbank":null,"google":"FEB7F","image":"1f523.png","sheet_x":30,"sheet_y":0,"short_name":"symbols","short_names":["symbols"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1537,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"INPUT SYMBOL FOR LATIN LETTERS","unified":"1F524","non_qualified":null,"docomo":null,"au":"EB55","softbank":null,"google":"FEB80","image":"1f524.png","sheet_x":30,"sheet_y":1,"short_name":"abc","short_names":["abc"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1538,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FIRE","unified":"1F525","non_qualified":null,"docomo":null,"au":"E47B","softbank":"E11D","google":"FE4F6","image":"1f525.png","sheet_x":30,"sheet_y":2,"short_name":"fire","short_names":["fire"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1035,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ELECTRIC TORCH","unified":"1F526","non_qualified":null,"docomo":"E6FB","au":"E583","softbank":null,"google":"FE4FB","image":"1f526.png","sheet_x":30,"sheet_y":3,"short_name":"flashlight","short_names":["flashlight"],"text":null,"texts":null,"category":"Objects","subcategory":"light & video","sort_order":1232,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WRENCH","unified":"1F527","non_qualified":null,"docomo":"E718","au":"E587","softbank":null,"google":"FE4C9","image":"1f527.png","sheet_x":30,"sheet_y":4,"short_name":"wrench","short_names":["wrench"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1323,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HAMMER","unified":"1F528","non_qualified":null,"docomo":null,"au":"E5CB","softbank":"E116","google":"FE4CA","image":"1f528.png","sheet_x":30,"sheet_y":5,"short_name":"hammer","short_names":["hammer"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1311,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NUT AND BOLT","unified":"1F529","non_qualified":null,"docomo":null,"au":"E581","softbank":null,"google":"FE4CB","image":"1f529.png","sheet_x":30,"sheet_y":6,"short_name":"nut_and_bolt","short_names":["nut_and_bolt"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1325,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HOCHO","unified":"1F52A","non_qualified":null,"docomo":null,"au":"E57F","softbank":null,"google":"FE4FA","image":"1f52a.png","sheet_x":30,"sheet_y":7,"short_name":"hocho","short_names":["hocho","knife"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"dishware","sort_order":817,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PISTOL","unified":"1F52B","non_qualified":null,"docomo":null,"au":"E50A","softbank":"E113","google":"FE4F5","image":"1f52b.png","sheet_x":30,"sheet_y":8,"short_name":"gun","short_names":["gun"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1095,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MICROSCOPE","unified":"1F52C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f52c.png","sheet_x":30,"sheet_y":9,"short_name":"microscope","short_names":["microscope"],"text":null,"texts":null,"category":"Objects","subcategory":"science","sort_order":1340,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TELESCOPE","unified":"1F52D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f52d.png","sheet_x":30,"sheet_y":10,"short_name":"telescope","short_names":["telescope"],"text":null,"texts":null,"category":"Objects","subcategory":"science","sort_order":1341,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CRYSTAL BALL","unified":"1F52E","non_qualified":null,"docomo":null,"au":"EA8F","softbank":null,"google":"FE4F7","image":"1f52e.png","sheet_x":30,"sheet_y":11,"short_name":"crystal_ball","short_names":["crystal_ball"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1097,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SIX POINTED STAR WITH MIDDLE DOT","unified":"1F52F","non_qualified":null,"docomo":null,"au":"EA8F","softbank":"E23E","google":"FE4F8","image":"1f52f.png","sheet_x":30,"sheet_y":12,"short_name":"six_pointed_star","short_names":["six_pointed_star"],"text":null,"texts":null,"category":"Symbols","subcategory":"religion","sort_order":1442,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"JAPANESE SYMBOL FOR BEGINNER","unified":"1F530","non_qualified":null,"docomo":null,"au":"E480","softbank":"E209","google":"FE044","image":"1f530.png","sheet_x":30,"sheet_y":13,"short_name":"beginner","short_names":["beginner"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1505,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TRIDENT EMBLEM","unified":"1F531","non_qualified":null,"docomo":"E71A","au":"E5C9","softbank":"E031","google":"FE4D2","image":"1f531.png","sheet_x":30,"sheet_y":14,"short_name":"trident","short_names":["trident"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1503,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLACK SQUARE BUTTON","unified":"1F532","non_qualified":null,"docomo":"E69C","au":"E54B","softbank":"E21A","google":"FEB64","image":"1f532.png","sheet_x":30,"sheet_y":15,"short_name":"black_square_button","short_names":["black_square_button"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1606,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WHITE SQUARE BUTTON","unified":"1F533","non_qualified":null,"docomo":"E69C","au":"E54B","softbank":"E21B","google":"FEB67","image":"1f533.png","sheet_x":30,"sheet_y":16,"short_name":"white_square_button","short_names":["white_square_button"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1605,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LARGE RED CIRCLE","unified":"1F534","non_qualified":null,"docomo":"E69C","au":"E54A","softbank":"E219","google":"FEB63","image":"1f534.png","sheet_x":30,"sheet_y":17,"short_name":"red_circle","short_names":["red_circle"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1573,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LARGE BLUE CIRCLE","unified":"1F535","non_qualified":null,"docomo":"E69C","au":"E54B","softbank":null,"google":"FEB64","image":"1f535.png","sheet_x":30,"sheet_y":18,"short_name":"large_blue_circle","short_names":["large_blue_circle"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1577,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LARGE ORANGE DIAMOND","unified":"1F536","non_qualified":null,"docomo":null,"au":"E546","softbank":null,"google":"FEB73","image":"1f536.png","sheet_x":30,"sheet_y":19,"short_name":"large_orange_diamond","short_names":["large_orange_diamond"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1597,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LARGE BLUE DIAMOND","unified":"1F537","non_qualified":null,"docomo":null,"au":"E547","softbank":null,"google":"FEB74","image":"1f537.png","sheet_x":30,"sheet_y":20,"short_name":"large_blue_diamond","short_names":["large_blue_diamond"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1598,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SMALL ORANGE DIAMOND","unified":"1F538","non_qualified":null,"docomo":null,"au":"E536","softbank":null,"google":"FEB75","image":"1f538.png","sheet_x":30,"sheet_y":21,"short_name":"small_orange_diamond","short_names":["small_orange_diamond"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1599,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SMALL BLUE DIAMOND","unified":"1F539","non_qualified":null,"docomo":null,"au":"E537","softbank":null,"google":"FEB76","image":"1f539.png","sheet_x":30,"sheet_y":22,"short_name":"small_blue_diamond","short_names":["small_blue_diamond"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1600,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"UP-POINTING RED TRIANGLE","unified":"1F53A","non_qualified":null,"docomo":null,"au":"E55A","softbank":null,"google":"FEB78","image":"1f53a.png","sheet_x":30,"sheet_y":23,"short_name":"small_red_triangle","short_names":["small_red_triangle"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1601,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DOWN-POINTING RED TRIANGLE","unified":"1F53B","non_qualified":null,"docomo":null,"au":"E55B","softbank":null,"google":"FEB79","image":"1f53b.png","sheet_x":30,"sheet_y":24,"short_name":"small_red_triangle_down","short_names":["small_red_triangle_down"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1602,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"UP-POINTING SMALL RED TRIANGLE","unified":"1F53C","non_qualified":null,"docomo":null,"au":"E543","softbank":null,"google":"FEB01","image":"1f53c.png","sheet_x":30,"sheet_y":25,"short_name":"arrow_up_small","short_names":["arrow_up_small"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1467,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DOWN-POINTING SMALL RED TRIANGLE","unified":"1F53D","non_qualified":null,"docomo":null,"au":"E542","softbank":null,"google":"FEB00","image":"1f53d.png","sheet_x":30,"sheet_y":26,"short_name":"arrow_down_small","short_names":["arrow_down_small"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1469,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"OM","unified":"1F549-FE0F","non_qualified":"1F549","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f549-fe0f.png","sheet_x":30,"sheet_y":27,"short_name":"om_symbol","short_names":["om_symbol"],"text":null,"texts":null,"category":"Symbols","subcategory":"religion","sort_order":1433,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DOVE","unified":"1F54A-FE0F","non_qualified":"1F54A","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f54a-fe0f.png","sheet_x":30,"sheet_y":28,"short_name":"dove_of_peace","short_names":["dove_of_peace"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":609,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"KAABA","unified":"1F54B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f54b.png","sheet_x":30,"sheet_y":29,"short_name":"kaaba","short_names":["kaaba"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-religious","sort_order":868,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MOSQUE","unified":"1F54C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f54c.png","sheet_x":30,"sheet_y":30,"short_name":"mosque","short_names":["mosque"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-religious","sort_order":864,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SYNAGOGUE","unified":"1F54D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f54d.png","sheet_x":30,"sheet_y":31,"short_name":"synagogue","short_names":["synagogue"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-religious","sort_order":866,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MENORAH WITH NINE BRANCHES","unified":"1F54E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f54e.png","sheet_x":30,"sheet_y":32,"short_name":"menorah_with_nine_branches","short_names":["menorah_with_nine_branches"],"text":null,"texts":null,"category":"Symbols","subcategory":"religion","sort_order":1441,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCK FACE ONE OCLOCK","unified":"1F550","non_qualified":null,"docomo":"E6BA","au":"E594","softbank":"E024","google":"FE01E","image":"1f550.png","sheet_x":30,"sheet_y":33,"short_name":"clock1","short_names":["clock1"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":969,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCK FACE TWO OCLOCK","unified":"1F551","non_qualified":null,"docomo":"E6BA","au":"E594","softbank":"E025","google":"FE01F","image":"1f551.png","sheet_x":30,"sheet_y":34,"short_name":"clock2","short_names":["clock2"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":971,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCK FACE THREE OCLOCK","unified":"1F552","non_qualified":null,"docomo":"E6BA","au":"E594","softbank":"E026","google":"FE020","image":"1f552.png","sheet_x":30,"sheet_y":35,"short_name":"clock3","short_names":["clock3"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":973,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCK FACE FOUR OCLOCK","unified":"1F553","non_qualified":null,"docomo":"E6BA","au":"E594","softbank":"E027","google":"FE021","image":"1f553.png","sheet_x":30,"sheet_y":36,"short_name":"clock4","short_names":["clock4"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":975,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCK FACE FIVE OCLOCK","unified":"1F554","non_qualified":null,"docomo":"E6BA","au":"E594","softbank":"E028","google":"FE022","image":"1f554.png","sheet_x":30,"sheet_y":37,"short_name":"clock5","short_names":["clock5"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":977,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCK FACE SIX OCLOCK","unified":"1F555","non_qualified":null,"docomo":"E6BA","au":"E594","softbank":"E029","google":"FE023","image":"1f555.png","sheet_x":30,"sheet_y":38,"short_name":"clock6","short_names":["clock6"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":979,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCK FACE SEVEN OCLOCK","unified":"1F556","non_qualified":null,"docomo":"E6BA","au":"E594","softbank":"E02A","google":"FE024","image":"1f556.png","sheet_x":30,"sheet_y":39,"short_name":"clock7","short_names":["clock7"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":981,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCK FACE EIGHT OCLOCK","unified":"1F557","non_qualified":null,"docomo":"E6BA","au":"E594","softbank":"E02B","google":"FE025","image":"1f557.png","sheet_x":30,"sheet_y":40,"short_name":"clock8","short_names":["clock8"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":983,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCK FACE NINE OCLOCK","unified":"1F558","non_qualified":null,"docomo":"E6BA","au":"E594","softbank":"E02C","google":"FE026","image":"1f558.png","sheet_x":30,"sheet_y":41,"short_name":"clock9","short_names":["clock9"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":985,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCK FACE TEN OCLOCK","unified":"1F559","non_qualified":null,"docomo":"E6BA","au":"E594","softbank":"E02D","google":"FE027","image":"1f559.png","sheet_x":30,"sheet_y":42,"short_name":"clock10","short_names":["clock10"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":987,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCK FACE ELEVEN OCLOCK","unified":"1F55A","non_qualified":null,"docomo":"E6BA","au":"E594","softbank":"E02E","google":"FE028","image":"1f55a.png","sheet_x":30,"sheet_y":43,"short_name":"clock11","short_names":["clock11"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":989,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCK FACE TWELVE OCLOCK","unified":"1F55B","non_qualified":null,"docomo":"E6BA","au":"E594","softbank":"E02F","google":"FE029","image":"1f55b.png","sheet_x":30,"sheet_y":44,"short_name":"clock12","short_names":["clock12"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":967,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCK FACE ONE-THIRTY","unified":"1F55C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f55c.png","sheet_x":30,"sheet_y":45,"short_name":"clock130","short_names":["clock130"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":970,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCK FACE TWO-THIRTY","unified":"1F55D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f55d.png","sheet_x":30,"sheet_y":46,"short_name":"clock230","short_names":["clock230"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":972,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCK FACE THREE-THIRTY","unified":"1F55E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f55e.png","sheet_x":30,"sheet_y":47,"short_name":"clock330","short_names":["clock330"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":974,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCK FACE FOUR-THIRTY","unified":"1F55F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f55f.png","sheet_x":30,"sheet_y":48,"short_name":"clock430","short_names":["clock430"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":976,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCK FACE FIVE-THIRTY","unified":"1F560","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f560.png","sheet_x":30,"sheet_y":49,"short_name":"clock530","short_names":["clock530"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":978,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCK FACE SIX-THIRTY","unified":"1F561","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f561.png","sheet_x":30,"sheet_y":50,"short_name":"clock630","short_names":["clock630"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":980,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCK FACE SEVEN-THIRTY","unified":"1F562","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f562.png","sheet_x":30,"sheet_y":51,"short_name":"clock730","short_names":["clock730"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":982,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCK FACE EIGHT-THIRTY","unified":"1F563","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f563.png","sheet_x":30,"sheet_y":52,"short_name":"clock830","short_names":["clock830"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":984,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCK FACE NINE-THIRTY","unified":"1F564","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f564.png","sheet_x":30,"sheet_y":53,"short_name":"clock930","short_names":["clock930"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":986,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCK FACE TEN-THIRTY","unified":"1F565","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f565.png","sheet_x":30,"sheet_y":54,"short_name":"clock1030","short_names":["clock1030"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":988,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCK FACE ELEVEN-THIRTY","unified":"1F566","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f566.png","sheet_x":30,"sheet_y":55,"short_name":"clock1130","short_names":["clock1130"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":990,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOCK FACE TWELVE-THIRTY","unified":"1F567","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f567.png","sheet_x":30,"sheet_y":56,"short_name":"clock1230","short_names":["clock1230"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":968,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CANDLE","unified":"1F56F-FE0F","non_qualified":"1F56F","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f56f-fe0f.png","sheet_x":30,"sheet_y":57,"short_name":"candle","short_names":["candle"],"text":null,"texts":null,"category":"Objects","subcategory":"light & video","sort_order":1230,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MANTELPIECE CLOCK","unified":"1F570-FE0F","non_qualified":"1F570","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f570-fe0f.png","sheet_x":30,"sheet_y":58,"short_name":"mantelpiece_clock","short_names":["mantelpiece_clock"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":966,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HOLE","unified":"1F573-FE0F","non_qualified":"1F573","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f573-fe0f.png","sheet_x":30,"sheet_y":59,"short_name":"hole","short_names":["hole"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"emotion","sort_order":160,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PERSON IN SUIT LEVITATING","unified":"1F574-FE0F","non_qualified":"1F574","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f574-fe0f.png","sheet_x":30,"sheet_y":60,"short_name":"man_in_business_suit_levitating","short_names":["man_in_business_suit_levitating"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":429,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F574-1F3FB","non_qualified":null,"image":"1f574-1f3fb.png","sheet_x":31,"sheet_y":0,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F574-1F3FC","non_qualified":null,"image":"1f574-1f3fc.png","sheet_x":31,"sheet_y":1,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F574-1F3FD","non_qualified":null,"image":"1f574-1f3fd.png","sheet_x":31,"sheet_y":2,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F574-1F3FE","non_qualified":null,"image":"1f574-1f3fe.png","sheet_x":31,"sheet_y":3,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F574-1F3FF","non_qualified":null,"image":"1f574-1f3ff.png","sheet_x":31,"sheet_y":4,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN DETECTIVE","unified":"1F575-FE0F-200D-2640-FE0F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f575-fe0f-200d-2640-fe0f.png","sheet_x":31,"sheet_y":5,"short_name":"female-detective","short_names":["female-detective"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":339,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":false,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F575-1F3FB-200D-2640-FE0F","non_qualified":"1F575-1F3FB-200D-2640","image":"1f575-1f3fb-200d-2640-fe0f.png","sheet_x":31,"sheet_y":6,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F575-1F3FC-200D-2640-FE0F","non_qualified":"1F575-1F3FC-200D-2640","image":"1f575-1f3fc-200d-2640-fe0f.png","sheet_x":31,"sheet_y":7,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F575-1F3FD-200D-2640-FE0F","non_qualified":"1F575-1F3FD-200D-2640","image":"1f575-1f3fd-200d-2640-fe0f.png","sheet_x":31,"sheet_y":8,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F575-1F3FE-200D-2640-FE0F","non_qualified":"1F575-1F3FE-200D-2640","image":"1f575-1f3fe-200d-2640-fe0f.png","sheet_x":31,"sheet_y":9,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F575-1F3FF-200D-2640-FE0F","non_qualified":"1F575-1F3FF-200D-2640","image":"1f575-1f3ff-200d-2640-fe0f.png","sheet_x":31,"sheet_y":10,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN DETECTIVE","unified":"1F575-FE0F-200D-2642-FE0F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f575-fe0f-200d-2642-fe0f.png","sheet_x":31,"sheet_y":11,"short_name":"male-detective","short_names":["male-detective"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":338,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":false,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F575-1F3FB-200D-2642-FE0F","non_qualified":"1F575-1F3FB-200D-2642","image":"1f575-1f3fb-200d-2642-fe0f.png","sheet_x":31,"sheet_y":12,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F575-1F3FC-200D-2642-FE0F","non_qualified":"1F575-1F3FC-200D-2642","image":"1f575-1f3fc-200d-2642-fe0f.png","sheet_x":31,"sheet_y":13,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F575-1F3FD-200D-2642-FE0F","non_qualified":"1F575-1F3FD-200D-2642","image":"1f575-1f3fd-200d-2642-fe0f.png","sheet_x":31,"sheet_y":14,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F575-1F3FE-200D-2642-FE0F","non_qualified":"1F575-1F3FE-200D-2642","image":"1f575-1f3fe-200d-2642-fe0f.png","sheet_x":31,"sheet_y":15,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F575-1F3FF-200D-2642-FE0F","non_qualified":"1F575-1F3FF-200D-2642","image":"1f575-1f3ff-200d-2642-fe0f.png","sheet_x":31,"sheet_y":16,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoletes":"1F575-FE0F"},{"name":"DETECTIVE","unified":"1F575-FE0F","non_qualified":"1F575","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f575-fe0f.png","sheet_x":31,"sheet_y":17,"short_name":"sleuth_or_spy","short_names":["sleuth_or_spy"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":337,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F575-1F3FB","non_qualified":null,"image":"1f575-1f3fb.png","sheet_x":31,"sheet_y":18,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F575-1F3FC","non_qualified":null,"image":"1f575-1f3fc.png","sheet_x":31,"sheet_y":19,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F575-1F3FD","non_qualified":null,"image":"1f575-1f3fd.png","sheet_x":31,"sheet_y":20,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F575-1F3FE","non_qualified":null,"image":"1f575-1f3fe.png","sheet_x":31,"sheet_y":21,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F575-1F3FF","non_qualified":null,"image":"1f575-1f3ff.png","sheet_x":31,"sheet_y":22,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoleted_by":"1F575-FE0F-200D-2642-FE0F"},{"name":"SUNGLASSES","unified":"1F576-FE0F","non_qualified":"1F576","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f576-fe0f.png","sheet_x":31,"sheet_y":23,"short_name":"dark_sunglasses","short_names":["dark_sunglasses"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1124,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SPIDER","unified":"1F577-FE0F","non_qualified":"1F577","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f577-fe0f.png","sheet_x":31,"sheet_y":24,"short_name":"spider","short_names":["spider"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bug","sort_order":652,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SPIDER WEB","unified":"1F578-FE0F","non_qualified":"1F578","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f578-fe0f.png","sheet_x":31,"sheet_y":25,"short_name":"spider_web","short_names":["spider_web"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bug","sort_order":653,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"JOYSTICK","unified":"1F579-FE0F","non_qualified":"1F579","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f579-fe0f.png","sheet_x":31,"sheet_y":26,"short_name":"joystick","short_names":["joystick"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1100,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MAN DANCING","unified":"1F57A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f57a.png","sheet_x":31,"sheet_y":27,"short_name":"man_dancing","short_names":["man_dancing"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":428,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F57A-1F3FB","non_qualified":null,"image":"1f57a-1f3fb.png","sheet_x":31,"sheet_y":28,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F57A-1F3FC","non_qualified":null,"image":"1f57a-1f3fc.png","sheet_x":31,"sheet_y":29,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F57A-1F3FD","non_qualified":null,"image":"1f57a-1f3fd.png","sheet_x":31,"sheet_y":30,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F57A-1F3FE","non_qualified":null,"image":"1f57a-1f3fe.png","sheet_x":31,"sheet_y":31,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F57A-1F3FF","non_qualified":null,"image":"1f57a-1f3ff.png","sheet_x":31,"sheet_y":32,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"LINKED PAPERCLIPS","unified":"1F587-FE0F","non_qualified":"1F587","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f587-fe0f.png","sheet_x":31,"sheet_y":33,"short_name":"linked_paperclips","short_names":["linked_paperclips"],"text":null,"texts":null,"category":"Objects","subcategory":"office","sort_order":1298,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PEN","unified":"1F58A-FE0F","non_qualified":"1F58A","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f58a-fe0f.png","sheet_x":31,"sheet_y":34,"short_name":"lower_left_ballpoint_pen","short_names":["lower_left_ballpoint_pen"],"text":null,"texts":null,"category":"Objects","subcategory":"writing","sort_order":1278,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FOUNTAIN PEN","unified":"1F58B-FE0F","non_qualified":"1F58B","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f58b-fe0f.png","sheet_x":31,"sheet_y":35,"short_name":"lower_left_fountain_pen","short_names":["lower_left_fountain_pen"],"text":null,"texts":null,"category":"Objects","subcategory":"writing","sort_order":1277,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PAINTBRUSH","unified":"1F58C-FE0F","non_qualified":"1F58C","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f58c-fe0f.png","sheet_x":31,"sheet_y":36,"short_name":"lower_left_paintbrush","short_names":["lower_left_paintbrush"],"text":null,"texts":null,"category":"Objects","subcategory":"writing","sort_order":1279,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CRAYON","unified":"1F58D-FE0F","non_qualified":"1F58D","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f58d-fe0f.png","sheet_x":31,"sheet_y":37,"short_name":"lower_left_crayon","short_names":["lower_left_crayon"],"text":null,"texts":null,"category":"Objects","subcategory":"writing","sort_order":1280,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HAND WITH FINGERS SPLAYED","unified":"1F590-FE0F","non_qualified":"1F590","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f590-fe0f.png","sheet_x":31,"sheet_y":38,"short_name":"raised_hand_with_fingers_splayed","short_names":["raised_hand_with_fingers_splayed"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-open","sort_order":169,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F590-1F3FB","non_qualified":null,"image":"1f590-1f3fb.png","sheet_x":31,"sheet_y":39,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F590-1F3FC","non_qualified":null,"image":"1f590-1f3fc.png","sheet_x":31,"sheet_y":40,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F590-1F3FD","non_qualified":null,"image":"1f590-1f3fd.png","sheet_x":31,"sheet_y":41,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F590-1F3FE","non_qualified":null,"image":"1f590-1f3fe.png","sheet_x":31,"sheet_y":42,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F590-1F3FF","non_qualified":null,"image":"1f590-1f3ff.png","sheet_x":31,"sheet_y":43,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"REVERSED HAND WITH MIDDLE FINGER EXTENDED","unified":"1F595","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f595.png","sheet_x":31,"sheet_y":44,"short_name":"middle_finger","short_names":["middle_finger","reversed_hand_with_middle_finger_extended"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-single-finger","sort_order":190,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F595-1F3FB","non_qualified":null,"image":"1f595-1f3fb.png","sheet_x":31,"sheet_y":45,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F595-1F3FC","non_qualified":null,"image":"1f595-1f3fc.png","sheet_x":31,"sheet_y":46,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F595-1F3FD","non_qualified":null,"image":"1f595-1f3fd.png","sheet_x":31,"sheet_y":47,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F595-1F3FE","non_qualified":null,"image":"1f595-1f3fe.png","sheet_x":31,"sheet_y":48,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F595-1F3FF","non_qualified":null,"image":"1f595-1f3ff.png","sheet_x":31,"sheet_y":49,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"RAISED HAND WITH PART BETWEEN MIDDLE AND RING FINGERS","unified":"1F596","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f596.png","sheet_x":31,"sheet_y":50,"short_name":"spock-hand","short_names":["spock-hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-open","sort_order":171,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F596-1F3FB","non_qualified":null,"image":"1f596-1f3fb.png","sheet_x":31,"sheet_y":51,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F596-1F3FC","non_qualified":null,"image":"1f596-1f3fc.png","sheet_x":31,"sheet_y":52,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F596-1F3FD","non_qualified":null,"image":"1f596-1f3fd.png","sheet_x":31,"sheet_y":53,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F596-1F3FE","non_qualified":null,"image":"1f596-1f3fe.png","sheet_x":31,"sheet_y":54,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F596-1F3FF","non_qualified":null,"image":"1f596-1f3ff.png","sheet_x":31,"sheet_y":55,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"BLACK HEART","unified":"1F5A4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5a4.png","sheet_x":31,"sheet_y":56,"short_name":"black_heart","short_names":["black_heart"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":150,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DESKTOP COMPUTER","unified":"1F5A5-FE0F","non_qualified":"1F5A5","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5a5-fe0f.png","sheet_x":31,"sheet_y":57,"short_name":"desktop_computer","short_names":["desktop_computer"],"text":null,"texts":null,"category":"Objects","subcategory":"computer","sort_order":1209,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PRINTER","unified":"1F5A8-FE0F","non_qualified":"1F5A8","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5a8-fe0f.png","sheet_x":31,"sheet_y":58,"short_name":"printer","short_names":["printer"],"text":null,"texts":null,"category":"Objects","subcategory":"computer","sort_order":1210,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"COMPUTER MOUSE","unified":"1F5B1-FE0F","non_qualified":"1F5B1","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5b1-fe0f.png","sheet_x":31,"sheet_y":59,"short_name":"three_button_mouse","short_names":["three_button_mouse"],"text":null,"texts":null,"category":"Objects","subcategory":"computer","sort_order":1212,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TRACKBALL","unified":"1F5B2-FE0F","non_qualified":"1F5B2","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5b2-fe0f.png","sheet_x":31,"sheet_y":60,"short_name":"trackball","short_names":["trackball"],"text":null,"texts":null,"category":"Objects","subcategory":"computer","sort_order":1213,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FRAMED PICTURE","unified":"1F5BC-FE0F","non_qualified":"1F5BC","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5bc-fe0f.png","sheet_x":32,"sheet_y":0,"short_name":"frame_with_picture","short_names":["frame_with_picture"],"text":null,"texts":null,"category":"Activities","subcategory":"arts & crafts","sort_order":1117,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CARD INDEX DIVIDERS","unified":"1F5C2-FE0F","non_qualified":"1F5C2","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5c2-fe0f.png","sheet_x":32,"sheet_y":1,"short_name":"card_index_dividers","short_names":["card_index_dividers"],"text":null,"texts":null,"category":"Objects","subcategory":"office","sort_order":1285,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CARD FILE BOX","unified":"1F5C3-FE0F","non_qualified":"1F5C3","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5c3-fe0f.png","sheet_x":32,"sheet_y":2,"short_name":"card_file_box","short_names":["card_file_box"],"text":null,"texts":null,"category":"Objects","subcategory":"office","sort_order":1302,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FILE CABINET","unified":"1F5C4-FE0F","non_qualified":"1F5C4","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5c4-fe0f.png","sheet_x":32,"sheet_y":3,"short_name":"file_cabinet","short_names":["file_cabinet"],"text":null,"texts":null,"category":"Objects","subcategory":"office","sort_order":1303,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WASTEBASKET","unified":"1F5D1-FE0F","non_qualified":"1F5D1","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5d1-fe0f.png","sheet_x":32,"sheet_y":4,"short_name":"wastebasket","short_names":["wastebasket"],"text":null,"texts":null,"category":"Objects","subcategory":"office","sort_order":1304,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SPIRAL NOTEPAD","unified":"1F5D2-FE0F","non_qualified":"1F5D2","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5d2-fe0f.png","sheet_x":32,"sheet_y":5,"short_name":"spiral_note_pad","short_names":["spiral_note_pad"],"text":null,"texts":null,"category":"Objects","subcategory":"office","sort_order":1288,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SPIRAL CALENDAR","unified":"1F5D3-FE0F","non_qualified":"1F5D3","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5d3-fe0f.png","sheet_x":32,"sheet_y":6,"short_name":"spiral_calendar_pad","short_names":["spiral_calendar_pad"],"text":null,"texts":null,"category":"Objects","subcategory":"office","sort_order":1289,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLAMP","unified":"1F5DC-FE0F","non_qualified":"1F5DC","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5dc-fe0f.png","sheet_x":32,"sheet_y":7,"short_name":"compression","short_names":["compression"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1327,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"OLD KEY","unified":"1F5DD-FE0F","non_qualified":"1F5DD","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5dd-fe0f.png","sheet_x":32,"sheet_y":8,"short_name":"old_key","short_names":["old_key"],"text":null,"texts":null,"category":"Objects","subcategory":"lock","sort_order":1310,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ROLLED-UP NEWSPAPER","unified":"1F5DE-FE0F","non_qualified":"1F5DE","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5de-fe0f.png","sheet_x":32,"sheet_y":9,"short_name":"rolled_up_newspaper","short_names":["rolled_up_newspaper"],"text":null,"texts":null,"category":"Objects","subcategory":"book-paper","sort_order":1248,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DAGGER","unified":"1F5E1-FE0F","non_qualified":"1F5E1","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5e1-fe0f.png","sheet_x":32,"sheet_y":10,"short_name":"dagger_knife","short_names":["dagger_knife"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1316,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SPEAKING HEAD","unified":"1F5E3-FE0F","non_qualified":"1F5E3","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5e3-fe0f.png","sheet_x":32,"sheet_y":11,"short_name":"speaking_head_in_silhouette","short_names":["speaking_head_in_silhouette"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-symbol","sort_order":525,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LEFT SPEECH BUBBLE","unified":"1F5E8-FE0F","non_qualified":"1F5E8","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5e8-fe0f.png","sheet_x":32,"sheet_y":12,"short_name":"left_speech_bubble","short_names":["left_speech_bubble"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"emotion","sort_order":163,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RIGHT ANGER BUBBLE","unified":"1F5EF-FE0F","non_qualified":"1F5EF","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5ef-fe0f.png","sheet_x":32,"sheet_y":13,"short_name":"right_anger_bubble","short_names":["right_anger_bubble"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"emotion","sort_order":164,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BALLOT BOX WITH BALLOT","unified":"1F5F3-FE0F","non_qualified":"1F5F3","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5f3-fe0f.png","sheet_x":32,"sheet_y":14,"short_name":"ballot_box_with_ballot","short_names":["ballot_box_with_ballot"],"text":null,"texts":null,"category":"Objects","subcategory":"mail","sort_order":1274,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WORLD MAP","unified":"1F5FA-FE0F","non_qualified":"1F5FA","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5fa-fe0f.png","sheet_x":32,"sheet_y":15,"short_name":"world_map","short_names":["world_map"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-map","sort_order":824,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MOUNT FUJI","unified":"1F5FB","non_qualified":null,"docomo":"E740","au":"E5BD","softbank":"E03B","google":"FE4C3","image":"1f5fb.png","sheet_x":32,"sheet_y":16,"short_name":"mount_fuji","short_names":["mount_fuji"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-geographic","sort_order":830,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TOKYO TOWER","unified":"1F5FC","non_qualified":null,"docomo":null,"au":"E4C0","softbank":"E509","google":"FE4C4","image":"1f5fc.png","sheet_x":32,"sheet_y":17,"short_name":"tokyo_tower","short_names":["tokyo_tower"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":861,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"STATUE OF LIBERTY","unified":"1F5FD","non_qualified":null,"docomo":null,"au":null,"softbank":"E51D","google":"FE4C6","image":"1f5fd.png","sheet_x":32,"sheet_y":18,"short_name":"statue_of_liberty","short_names":["statue_of_liberty"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":862,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SILHOUETTE OF JAPAN","unified":"1F5FE","non_qualified":null,"docomo":null,"au":"E572","softbank":null,"google":"FE4C7","image":"1f5fe.png","sheet_x":32,"sheet_y":19,"short_name":"japan","short_names":["japan"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-map","sort_order":825,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MOYAI","unified":"1F5FF","non_qualified":null,"docomo":null,"au":"EB6C","softbank":null,"google":"FE4C8","image":"1f5ff.png","sheet_x":32,"sheet_y":20,"short_name":"moyai","short_names":["moyai"],"text":null,"texts":null,"category":"Objects","subcategory":"other-object","sort_order":1381,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GRINNING FACE","unified":"1F600","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f600.png","sheet_x":32,"sheet_y":21,"short_name":"grinning","short_names":["grinning"],"text":":D","texts":null,"category":"Smileys & Emotion","subcategory":"face-smiling","sort_order":1,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GRINNING FACE WITH SMILING EYES","unified":"1F601","non_qualified":null,"docomo":"E753","au":"EB80","softbank":"E404","google":"FE333","image":"1f601.png","sheet_x":32,"sheet_y":22,"short_name":"grin","short_names":["grin"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-smiling","sort_order":4,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE WITH TEARS OF JOY","unified":"1F602","non_qualified":null,"docomo":"E72A","au":"EB64","softbank":"E412","google":"FE334","image":"1f602.png","sheet_x":32,"sheet_y":23,"short_name":"joy","short_names":["joy"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-smiling","sort_order":8,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SMILING FACE WITH OPEN MOUTH","unified":"1F603","non_qualified":null,"docomo":"E6F0","au":"E471","softbank":"E057","google":"FE330","image":"1f603.png","sheet_x":32,"sheet_y":24,"short_name":"smiley","short_names":["smiley"],"text":":)","texts":["=)","=-)"],"category":"Smileys & Emotion","subcategory":"face-smiling","sort_order":2,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SMILING FACE WITH OPEN MOUTH AND SMILING EYES","unified":"1F604","non_qualified":null,"docomo":"E6F0","au":"E471","softbank":"E415","google":"FE338","image":"1f604.png","sheet_x":32,"sheet_y":25,"short_name":"smile","short_names":["smile"],"text":":)","texts":["C:","c:",":D",":-D"],"category":"Smileys & Emotion","subcategory":"face-smiling","sort_order":3,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SMILING FACE WITH OPEN MOUTH AND COLD SWEAT","unified":"1F605","non_qualified":null,"docomo":"E722","au":"E471-E5B1","softbank":null,"google":"FE331","image":"1f605.png","sheet_x":32,"sheet_y":26,"short_name":"sweat_smile","short_names":["sweat_smile"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-smiling","sort_order":6,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SMILING FACE WITH OPEN MOUTH AND TIGHTLY-CLOSED EYES","unified":"1F606","non_qualified":null,"docomo":"E72A","au":"EAC5","softbank":null,"google":"FE332","image":"1f606.png","sheet_x":32,"sheet_y":27,"short_name":"laughing","short_names":["laughing","satisfied"],"text":null,"texts":[":>",":->"],"category":"Smileys & Emotion","subcategory":"face-smiling","sort_order":5,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SMILING FACE WITH HALO","unified":"1F607","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f607.png","sheet_x":32,"sheet_y":28,"short_name":"innocent","short_names":["innocent"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-smiling","sort_order":14,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SMILING FACE WITH HORNS","unified":"1F608","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f608.png","sheet_x":32,"sheet_y":29,"short_name":"smiling_imp","short_names":["smiling_imp"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-negative","sort_order":104,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WINKING FACE","unified":"1F609","non_qualified":null,"docomo":"E729","au":"E5C3","softbank":"E405","google":"FE347","image":"1f609.png","sheet_x":32,"sheet_y":30,"short_name":"wink","short_names":["wink"],"text":";)","texts":[";)",";-)"],"category":"Smileys & Emotion","subcategory":"face-smiling","sort_order":12,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SMILING FACE WITH SMILING EYES","unified":"1F60A","non_qualified":null,"docomo":"E6F0","au":"EACD","softbank":"E056","google":"FE335","image":"1f60a.png","sheet_x":32,"sheet_y":31,"short_name":"blush","short_names":["blush"],"text":":)","texts":null,"category":"Smileys & Emotion","subcategory":"face-smiling","sort_order":13,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE SAVOURING DELICIOUS FOOD","unified":"1F60B","non_qualified":null,"docomo":"E752","au":"EACD","softbank":null,"google":"FE32B","image":"1f60b.png","sheet_x":32,"sheet_y":32,"short_name":"yum","short_names":["yum"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-tongue","sort_order":24,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RELIEVED FACE","unified":"1F60C","non_qualified":null,"docomo":"E721","au":"EAC5","softbank":"E40A","google":"FE33E","image":"1f60c.png","sheet_x":32,"sheet_y":33,"short_name":"relieved","short_names":["relieved"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-sleepy","sort_order":51,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SMILING FACE WITH HEART-SHAPED EYES","unified":"1F60D","non_qualified":null,"docomo":"E726","au":"E5C4","softbank":"E106","google":"FE327","image":"1f60d.png","sheet_x":32,"sheet_y":34,"short_name":"heart_eyes","short_names":["heart_eyes"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-affection","sort_order":16,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SMILING FACE WITH SUNGLASSES","unified":"1F60E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f60e.png","sheet_x":32,"sheet_y":35,"short_name":"sunglasses","short_names":["sunglasses"],"text":null,"texts":["8)"],"category":"Smileys & Emotion","subcategory":"face-glasses","sort_order":71,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SMIRKING FACE","unified":"1F60F","non_qualified":null,"docomo":"E72C","au":"EABF","softbank":"E402","google":"FE343","image":"1f60f.png","sheet_x":32,"sheet_y":36,"short_name":"smirk","short_names":["smirk"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":44,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NEUTRAL FACE","unified":"1F610","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f610.png","sheet_x":32,"sheet_y":37,"short_name":"neutral_face","short_names":["neutral_face"],"text":null,"texts":[":|",":-|"],"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":39,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"EXPRESSIONLESS FACE","unified":"1F611","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f611.png","sheet_x":32,"sheet_y":38,"short_name":"expressionless","short_names":["expressionless"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":40,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"UNAMUSED FACE","unified":"1F612","non_qualified":null,"docomo":"E725","au":"EAC9","softbank":"E40E","google":"FE326","image":"1f612.png","sheet_x":32,"sheet_y":39,"short_name":"unamused","short_names":["unamused"],"text":":(","texts":null,"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":45,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE WITH COLD SWEAT","unified":"1F613","non_qualified":null,"docomo":"E723","au":"E5C6","softbank":"E108","google":"FE344","image":"1f613.png","sheet_x":32,"sheet_y":40,"short_name":"sweat","short_names":["sweat"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":96,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PENSIVE FACE","unified":"1F614","non_qualified":null,"docomo":"E720","au":"EAC0","softbank":"E403","google":"FE340","image":"1f614.png","sheet_x":32,"sheet_y":41,"short_name":"pensive","short_names":["pensive"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-sleepy","sort_order":52,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CONFUSED FACE","unified":"1F615","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f615.png","sheet_x":32,"sheet_y":42,"short_name":"confused","short_names":["confused"],"text":null,"texts":[":\\",":-\\",":\/",":-\/"],"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":74,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CONFOUNDED FACE","unified":"1F616","non_qualified":null,"docomo":"E6F3","au":"EAC3","softbank":"E407","google":"FE33F","image":"1f616.png","sheet_x":32,"sheet_y":43,"short_name":"confounded","short_names":["confounded"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":93,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"KISSING FACE","unified":"1F617","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f617.png","sheet_x":32,"sheet_y":44,"short_name":"kissing","short_names":["kissing"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-affection","sort_order":19,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE THROWING A KISS","unified":"1F618","non_qualified":null,"docomo":"E726","au":"EACF","softbank":"E418","google":"FE32C","image":"1f618.png","sheet_x":32,"sheet_y":45,"short_name":"kissing_heart","short_names":["kissing_heart"],"text":null,"texts":[":*",":-*"],"category":"Smileys & Emotion","subcategory":"face-affection","sort_order":18,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"KISSING FACE WITH SMILING EYES","unified":"1F619","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f619.png","sheet_x":32,"sheet_y":46,"short_name":"kissing_smiling_eyes","short_names":["kissing_smiling_eyes"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-affection","sort_order":22,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"KISSING FACE WITH CLOSED EYES","unified":"1F61A","non_qualified":null,"docomo":"E726","au":"EACE","softbank":"E417","google":"FE32D","image":"1f61a.png","sheet_x":32,"sheet_y":47,"short_name":"kissing_closed_eyes","short_names":["kissing_closed_eyes"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-affection","sort_order":21,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE WITH STUCK-OUT TONGUE","unified":"1F61B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f61b.png","sheet_x":32,"sheet_y":48,"short_name":"stuck_out_tongue","short_names":["stuck_out_tongue"],"text":":p","texts":[":p",":-p",":P",":-P",":b",":-b"],"category":"Smileys & Emotion","subcategory":"face-tongue","sort_order":25,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE WITH STUCK-OUT TONGUE AND WINKING EYE","unified":"1F61C","non_qualified":null,"docomo":"E728","au":"E4E7","softbank":"E105","google":"FE329","image":"1f61c.png","sheet_x":32,"sheet_y":49,"short_name":"stuck_out_tongue_winking_eye","short_names":["stuck_out_tongue_winking_eye"],"text":";p","texts":[";p",";-p",";b",";-b",";P",";-P"],"category":"Smileys & Emotion","subcategory":"face-tongue","sort_order":26,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE WITH STUCK-OUT TONGUE AND TIGHTLY-CLOSED EYES","unified":"1F61D","non_qualified":null,"docomo":"E728","au":"E4E7","softbank":"E409","google":"FE32A","image":"1f61d.png","sheet_x":32,"sheet_y":50,"short_name":"stuck_out_tongue_closed_eyes","short_names":["stuck_out_tongue_closed_eyes"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-tongue","sort_order":28,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DISAPPOINTED FACE","unified":"1F61E","non_qualified":null,"docomo":"E6F2","au":"EAC0","softbank":"E058","google":"FE323","image":"1f61e.png","sheet_x":32,"sheet_y":51,"short_name":"disappointed","short_names":["disappointed"],"text":":(","texts":["):",":(",":-("],"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":95,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WORRIED FACE","unified":"1F61F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f61f.png","sheet_x":32,"sheet_y":52,"short_name":"worried","short_names":["worried"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":76,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ANGRY FACE","unified":"1F620","non_qualified":null,"docomo":"E6F1","au":"E472","softbank":"E059","google":"FE320","image":"1f620.png","sheet_x":32,"sheet_y":53,"short_name":"angry","short_names":["angry"],"text":null,"texts":[">:(",">:-("],"category":"Smileys & Emotion","subcategory":"face-negative","sort_order":102,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"POUTING FACE","unified":"1F621","non_qualified":null,"docomo":"E724","au":"EB5D","softbank":"E416","google":"FE33D","image":"1f621.png","sheet_x":32,"sheet_y":54,"short_name":"rage","short_names":["rage"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-negative","sort_order":101,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CRYING FACE","unified":"1F622","non_qualified":null,"docomo":"E72E","au":"EB69","softbank":"E413","google":"FE339","image":"1f622.png","sheet_x":32,"sheet_y":55,"short_name":"cry","short_names":["cry"],"text":":'(","texts":[":'("],"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":90,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PERSEVERING FACE","unified":"1F623","non_qualified":null,"docomo":"E72B","au":"EAC2","softbank":"E406","google":"FE33C","image":"1f623.png","sheet_x":32,"sheet_y":56,"short_name":"persevere","short_names":["persevere"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":94,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE WITH LOOK OF TRIUMPH","unified":"1F624","non_qualified":null,"docomo":"E753","au":"EAC1","softbank":null,"google":"FE328","image":"1f624.png","sheet_x":32,"sheet_y":57,"short_name":"triumph","short_names":["triumph"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-negative","sort_order":100,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DISAPPOINTED BUT RELIEVED FACE","unified":"1F625","non_qualified":null,"docomo":"E723","au":"E5C6","softbank":"E401","google":"FE345","image":"1f625.png","sheet_x":32,"sheet_y":58,"short_name":"disappointed_relieved","short_names":["disappointed_relieved"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":89,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FROWNING FACE WITH OPEN MOUTH","unified":"1F626","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f626.png","sheet_x":32,"sheet_y":59,"short_name":"frowning","short_names":["frowning"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":85,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ANGUISHED FACE","unified":"1F627","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f627.png","sheet_x":32,"sheet_y":60,"short_name":"anguished","short_names":["anguished"],"text":null,"texts":["D:"],"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":86,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FEARFUL FACE","unified":"1F628","non_qualified":null,"docomo":"E757","au":"EAC6","softbank":"E40B","google":"FE33B","image":"1f628.png","sheet_x":33,"sheet_y":0,"short_name":"fearful","short_names":["fearful"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":87,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WEARY FACE","unified":"1F629","non_qualified":null,"docomo":"E6F3","au":"EB67","softbank":null,"google":"FE321","image":"1f629.png","sheet_x":33,"sheet_y":1,"short_name":"weary","short_names":["weary"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":97,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SLEEPY FACE","unified":"1F62A","non_qualified":null,"docomo":"E701","au":"EAC4","softbank":"E408","google":"FE342","image":"1f62a.png","sheet_x":33,"sheet_y":2,"short_name":"sleepy","short_names":["sleepy"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-sleepy","sort_order":53,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TIRED FACE","unified":"1F62B","non_qualified":null,"docomo":"E72B","au":"E474","softbank":null,"google":"FE346","image":"1f62b.png","sheet_x":33,"sheet_y":3,"short_name":"tired_face","short_names":["tired_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":98,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GRIMACING FACE","unified":"1F62C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f62c.png","sheet_x":33,"sheet_y":4,"short_name":"grimacing","short_names":["grimacing"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":47,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LOUDLY CRYING FACE","unified":"1F62D","non_qualified":null,"docomo":"E72D","au":"E473","softbank":"E411","google":"FE33A","image":"1f62d.png","sheet_x":33,"sheet_y":5,"short_name":"sob","short_names":["sob"],"text":":'(","texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":91,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE EXHALING","unified":"1F62E-200D-1F4A8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f62e-200d-1f4a8.png","sheet_x":33,"sheet_y":6,"short_name":"face_exhaling","short_names":["face_exhaling"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":48,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE WITH OPEN MOUTH","unified":"1F62E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f62e.png","sheet_x":33,"sheet_y":7,"short_name":"open_mouth","short_names":["open_mouth"],"text":null,"texts":[":o",":-o",":O",":-O"],"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":79,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HUSHED FACE","unified":"1F62F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f62f.png","sheet_x":33,"sheet_y":8,"short_name":"hushed","short_names":["hushed"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":80,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE WITH OPEN MOUTH AND COLD SWEAT","unified":"1F630","non_qualified":null,"docomo":"E723","au":"EACB","softbank":"E40F","google":"FE325","image":"1f630.png","sheet_x":33,"sheet_y":9,"short_name":"cold_sweat","short_names":["cold_sweat"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":88,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE SCREAMING IN FEAR","unified":"1F631","non_qualified":null,"docomo":"E757","au":"E5C5","softbank":"E107","google":"FE341","image":"1f631.png","sheet_x":33,"sheet_y":10,"short_name":"scream","short_names":["scream"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":92,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ASTONISHED FACE","unified":"1F632","non_qualified":null,"docomo":"E6F4","au":"EACA","softbank":"E410","google":"FE322","image":"1f632.png","sheet_x":33,"sheet_y":11,"short_name":"astonished","short_names":["astonished"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":81,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FLUSHED FACE","unified":"1F633","non_qualified":null,"docomo":"E72A","au":"EAC8","softbank":"E40D","google":"FE32F","image":"1f633.png","sheet_x":33,"sheet_y":12,"short_name":"flushed","short_names":["flushed"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":82,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SLEEPING FACE","unified":"1F634","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f634.png","sheet_x":33,"sheet_y":13,"short_name":"sleeping","short_names":["sleeping"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-sleepy","sort_order":55,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE WITH SPIRAL EYES","unified":"1F635-200D-1F4AB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f635-200d-1f4ab.png","sheet_x":33,"sheet_y":14,"short_name":"face_with_spiral_eyes","short_names":["face_with_spiral_eyes"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-unwell","sort_order":66,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DIZZY FACE","unified":"1F635","non_qualified":null,"docomo":"E6F4","au":"E5AE","softbank":null,"google":"FE324","image":"1f635.png","sheet_x":33,"sheet_y":15,"short_name":"dizzy_face","short_names":["dizzy_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-unwell","sort_order":65,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE IN CLOUDS","unified":"1F636-200D-1F32B-FE0F","non_qualified":"1F636-200D-1F32B","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f636-200d-1f32b-fe0f.png","sheet_x":33,"sheet_y":16,"short_name":"face_in_clouds","short_names":["face_in_clouds"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":43,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE WITHOUT MOUTH","unified":"1F636","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f636.png","sheet_x":33,"sheet_y":17,"short_name":"no_mouth","short_names":["no_mouth"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":41,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE WITH MEDICAL MASK","unified":"1F637","non_qualified":null,"docomo":null,"au":"EAC7","softbank":"E40C","google":"FE32E","image":"1f637.png","sheet_x":33,"sheet_y":18,"short_name":"mask","short_names":["mask"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-unwell","sort_order":56,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GRINNING CAT FACE WITH SMILING EYES","unified":"1F638","non_qualified":null,"docomo":"E753","au":"EB7F","softbank":null,"google":"FE349","image":"1f638.png","sheet_x":33,"sheet_y":19,"short_name":"smile_cat","short_names":["smile_cat"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"cat-face","sort_order":117,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CAT FACE WITH TEARS OF JOY","unified":"1F639","non_qualified":null,"docomo":"E72A","au":"EB63","softbank":null,"google":"FE34A","image":"1f639.png","sheet_x":33,"sheet_y":20,"short_name":"joy_cat","short_names":["joy_cat"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"cat-face","sort_order":118,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SMILING CAT FACE WITH OPEN MOUTH","unified":"1F63A","non_qualified":null,"docomo":"E6F0","au":"EB61","softbank":null,"google":"FE348","image":"1f63a.png","sheet_x":33,"sheet_y":21,"short_name":"smiley_cat","short_names":["smiley_cat"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"cat-face","sort_order":116,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SMILING CAT FACE WITH HEART-SHAPED EYES","unified":"1F63B","non_qualified":null,"docomo":"E726","au":"EB65","softbank":null,"google":"FE34C","image":"1f63b.png","sheet_x":33,"sheet_y":22,"short_name":"heart_eyes_cat","short_names":["heart_eyes_cat"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"cat-face","sort_order":119,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CAT FACE WITH WRY SMILE","unified":"1F63C","non_qualified":null,"docomo":"E753","au":"EB6A","softbank":null,"google":"FE34F","image":"1f63c.png","sheet_x":33,"sheet_y":23,"short_name":"smirk_cat","short_names":["smirk_cat"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"cat-face","sort_order":120,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"KISSING CAT FACE WITH CLOSED EYES","unified":"1F63D","non_qualified":null,"docomo":"E726","au":"EB60","softbank":null,"google":"FE34B","image":"1f63d.png","sheet_x":33,"sheet_y":24,"short_name":"kissing_cat","short_names":["kissing_cat"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"cat-face","sort_order":121,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"POUTING CAT FACE","unified":"1F63E","non_qualified":null,"docomo":"E724","au":"EB5E","softbank":null,"google":"FE34E","image":"1f63e.png","sheet_x":33,"sheet_y":25,"short_name":"pouting_cat","short_names":["pouting_cat"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"cat-face","sort_order":124,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CRYING CAT FACE","unified":"1F63F","non_qualified":null,"docomo":"E72E","au":"EB68","softbank":null,"google":"FE34D","image":"1f63f.png","sheet_x":33,"sheet_y":26,"short_name":"crying_cat_face","short_names":["crying_cat_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"cat-face","sort_order":123,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WEARY CAT FACE","unified":"1F640","non_qualified":null,"docomo":"E6F3","au":"EB66","softbank":null,"google":"FE350","image":"1f640.png","sheet_x":33,"sheet_y":27,"short_name":"scream_cat","short_names":["scream_cat"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"cat-face","sort_order":122,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SLIGHTLY FROWNING FACE","unified":"1F641","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f641.png","sheet_x":33,"sheet_y":28,"short_name":"slightly_frowning_face","short_names":["slightly_frowning_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":77,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SLIGHTLY SMILING FACE","unified":"1F642","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f642.png","sheet_x":33,"sheet_y":29,"short_name":"slightly_smiling_face","short_names":["slightly_smiling_face"],"text":null,"texts":[":)","(:",":-)"],"category":"Smileys & Emotion","subcategory":"face-smiling","sort_order":9,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"UPSIDE-DOWN FACE","unified":"1F643","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f643.png","sheet_x":33,"sheet_y":30,"short_name":"upside_down_face","short_names":["upside_down_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-smiling","sort_order":10,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE WITH ROLLING EYES","unified":"1F644","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f644.png","sheet_x":33,"sheet_y":31,"short_name":"face_with_rolling_eyes","short_names":["face_with_rolling_eyes"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":46,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WOMAN GESTURING NO","unified":"1F645-200D-2640-FE0F","non_qualified":"1F645-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f645-200d-2640-fe0f.png","sheet_x":33,"sheet_y":32,"short_name":"woman-gesturing-no","short_names":["woman-gesturing-no"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":264,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F645-1F3FB-200D-2640-FE0F","non_qualified":"1F645-1F3FB-200D-2640","image":"1f645-1f3fb-200d-2640-fe0f.png","sheet_x":33,"sheet_y":33,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F645-1F3FC-200D-2640-FE0F","non_qualified":"1F645-1F3FC-200D-2640","image":"1f645-1f3fc-200d-2640-fe0f.png","sheet_x":33,"sheet_y":34,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F645-1F3FD-200D-2640-FE0F","non_qualified":"1F645-1F3FD-200D-2640","image":"1f645-1f3fd-200d-2640-fe0f.png","sheet_x":33,"sheet_y":35,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F645-1F3FE-200D-2640-FE0F","non_qualified":"1F645-1F3FE-200D-2640","image":"1f645-1f3fe-200d-2640-fe0f.png","sheet_x":33,"sheet_y":36,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F645-1F3FF-200D-2640-FE0F","non_qualified":"1F645-1F3FF-200D-2640","image":"1f645-1f3ff-200d-2640-fe0f.png","sheet_x":33,"sheet_y":37,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoletes":"1F645"},{"name":"MAN GESTURING NO","unified":"1F645-200D-2642-FE0F","non_qualified":"1F645-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f645-200d-2642-fe0f.png","sheet_x":33,"sheet_y":38,"short_name":"man-gesturing-no","short_names":["man-gesturing-no"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":263,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F645-1F3FB-200D-2642-FE0F","non_qualified":"1F645-1F3FB-200D-2642","image":"1f645-1f3fb-200d-2642-fe0f.png","sheet_x":33,"sheet_y":39,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F645-1F3FC-200D-2642-FE0F","non_qualified":"1F645-1F3FC-200D-2642","image":"1f645-1f3fc-200d-2642-fe0f.png","sheet_x":33,"sheet_y":40,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F645-1F3FD-200D-2642-FE0F","non_qualified":"1F645-1F3FD-200D-2642","image":"1f645-1f3fd-200d-2642-fe0f.png","sheet_x":33,"sheet_y":41,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F645-1F3FE-200D-2642-FE0F","non_qualified":"1F645-1F3FE-200D-2642","image":"1f645-1f3fe-200d-2642-fe0f.png","sheet_x":33,"sheet_y":42,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F645-1F3FF-200D-2642-FE0F","non_qualified":"1F645-1F3FF-200D-2642","image":"1f645-1f3ff-200d-2642-fe0f.png","sheet_x":33,"sheet_y":43,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"FACE WITH NO GOOD GESTURE","unified":"1F645","non_qualified":null,"docomo":"E72F","au":"EAD7","softbank":"E423","google":"FE351","image":"1f645.png","sheet_x":33,"sheet_y":44,"short_name":"no_good","short_names":["no_good"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":262,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F645-1F3FB","non_qualified":null,"image":"1f645-1f3fb.png","sheet_x":33,"sheet_y":45,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F645-1F3FC","non_qualified":null,"image":"1f645-1f3fc.png","sheet_x":33,"sheet_y":46,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F645-1F3FD","non_qualified":null,"image":"1f645-1f3fd.png","sheet_x":33,"sheet_y":47,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F645-1F3FE","non_qualified":null,"image":"1f645-1f3fe.png","sheet_x":33,"sheet_y":48,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F645-1F3FF","non_qualified":null,"image":"1f645-1f3ff.png","sheet_x":33,"sheet_y":49,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoleted_by":"1F645-200D-2640-FE0F"},{"name":"WOMAN GESTURING OK","unified":"1F646-200D-2640-FE0F","non_qualified":"1F646-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f646-200d-2640-fe0f.png","sheet_x":33,"sheet_y":50,"short_name":"woman-gesturing-ok","short_names":["woman-gesturing-ok"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":267,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F646-1F3FB-200D-2640-FE0F","non_qualified":"1F646-1F3FB-200D-2640","image":"1f646-1f3fb-200d-2640-fe0f.png","sheet_x":33,"sheet_y":51,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F646-1F3FC-200D-2640-FE0F","non_qualified":"1F646-1F3FC-200D-2640","image":"1f646-1f3fc-200d-2640-fe0f.png","sheet_x":33,"sheet_y":52,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F646-1F3FD-200D-2640-FE0F","non_qualified":"1F646-1F3FD-200D-2640","image":"1f646-1f3fd-200d-2640-fe0f.png","sheet_x":33,"sheet_y":53,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F646-1F3FE-200D-2640-FE0F","non_qualified":"1F646-1F3FE-200D-2640","image":"1f646-1f3fe-200d-2640-fe0f.png","sheet_x":33,"sheet_y":54,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F646-1F3FF-200D-2640-FE0F","non_qualified":"1F646-1F3FF-200D-2640","image":"1f646-1f3ff-200d-2640-fe0f.png","sheet_x":33,"sheet_y":55,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoletes":"1F646"},{"name":"MAN GESTURING OK","unified":"1F646-200D-2642-FE0F","non_qualified":"1F646-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f646-200d-2642-fe0f.png","sheet_x":33,"sheet_y":56,"short_name":"man-gesturing-ok","short_names":["man-gesturing-ok"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":266,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F646-1F3FB-200D-2642-FE0F","non_qualified":"1F646-1F3FB-200D-2642","image":"1f646-1f3fb-200d-2642-fe0f.png","sheet_x":33,"sheet_y":57,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F646-1F3FC-200D-2642-FE0F","non_qualified":"1F646-1F3FC-200D-2642","image":"1f646-1f3fc-200d-2642-fe0f.png","sheet_x":33,"sheet_y":58,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F646-1F3FD-200D-2642-FE0F","non_qualified":"1F646-1F3FD-200D-2642","image":"1f646-1f3fd-200d-2642-fe0f.png","sheet_x":33,"sheet_y":59,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F646-1F3FE-200D-2642-FE0F","non_qualified":"1F646-1F3FE-200D-2642","image":"1f646-1f3fe-200d-2642-fe0f.png","sheet_x":33,"sheet_y":60,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F646-1F3FF-200D-2642-FE0F","non_qualified":"1F646-1F3FF-200D-2642","image":"1f646-1f3ff-200d-2642-fe0f.png","sheet_x":34,"sheet_y":0,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"FACE WITH OK GESTURE","unified":"1F646","non_qualified":null,"docomo":"E70B","au":"EAD8","softbank":"E424","google":"FE352","image":"1f646.png","sheet_x":34,"sheet_y":1,"short_name":"ok_woman","short_names":["ok_woman"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":265,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F646-1F3FB","non_qualified":null,"image":"1f646-1f3fb.png","sheet_x":34,"sheet_y":2,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F646-1F3FC","non_qualified":null,"image":"1f646-1f3fc.png","sheet_x":34,"sheet_y":3,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F646-1F3FD","non_qualified":null,"image":"1f646-1f3fd.png","sheet_x":34,"sheet_y":4,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F646-1F3FE","non_qualified":null,"image":"1f646-1f3fe.png","sheet_x":34,"sheet_y":5,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F646-1F3FF","non_qualified":null,"image":"1f646-1f3ff.png","sheet_x":34,"sheet_y":6,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoleted_by":"1F646-200D-2640-FE0F"},{"name":"WOMAN BOWING","unified":"1F647-200D-2640-FE0F","non_qualified":"1F647-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f647-200d-2640-fe0f.png","sheet_x":34,"sheet_y":7,"short_name":"woman-bowing","short_names":["woman-bowing"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":279,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F647-1F3FB-200D-2640-FE0F","non_qualified":"1F647-1F3FB-200D-2640","image":"1f647-1f3fb-200d-2640-fe0f.png","sheet_x":34,"sheet_y":8,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F647-1F3FC-200D-2640-FE0F","non_qualified":"1F647-1F3FC-200D-2640","image":"1f647-1f3fc-200d-2640-fe0f.png","sheet_x":34,"sheet_y":9,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F647-1F3FD-200D-2640-FE0F","non_qualified":"1F647-1F3FD-200D-2640","image":"1f647-1f3fd-200d-2640-fe0f.png","sheet_x":34,"sheet_y":10,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F647-1F3FE-200D-2640-FE0F","non_qualified":"1F647-1F3FE-200D-2640","image":"1f647-1f3fe-200d-2640-fe0f.png","sheet_x":34,"sheet_y":11,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F647-1F3FF-200D-2640-FE0F","non_qualified":"1F647-1F3FF-200D-2640","image":"1f647-1f3ff-200d-2640-fe0f.png","sheet_x":34,"sheet_y":12,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN BOWING","unified":"1F647-200D-2642-FE0F","non_qualified":"1F647-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f647-200d-2642-fe0f.png","sheet_x":34,"sheet_y":13,"short_name":"man-bowing","short_names":["man-bowing"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":278,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F647-1F3FB-200D-2642-FE0F","non_qualified":"1F647-1F3FB-200D-2642","image":"1f647-1f3fb-200d-2642-fe0f.png","sheet_x":34,"sheet_y":14,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F647-1F3FC-200D-2642-FE0F","non_qualified":"1F647-1F3FC-200D-2642","image":"1f647-1f3fc-200d-2642-fe0f.png","sheet_x":34,"sheet_y":15,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F647-1F3FD-200D-2642-FE0F","non_qualified":"1F647-1F3FD-200D-2642","image":"1f647-1f3fd-200d-2642-fe0f.png","sheet_x":34,"sheet_y":16,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F647-1F3FE-200D-2642-FE0F","non_qualified":"1F647-1F3FE-200D-2642","image":"1f647-1f3fe-200d-2642-fe0f.png","sheet_x":34,"sheet_y":17,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F647-1F3FF-200D-2642-FE0F","non_qualified":"1F647-1F3FF-200D-2642","image":"1f647-1f3ff-200d-2642-fe0f.png","sheet_x":34,"sheet_y":18,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"PERSON BOWING DEEPLY","unified":"1F647","non_qualified":null,"docomo":null,"au":"EAD9","softbank":"E426","google":"FE353","image":"1f647.png","sheet_x":34,"sheet_y":19,"short_name":"bow","short_names":["bow"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":277,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F647-1F3FB","non_qualified":null,"image":"1f647-1f3fb.png","sheet_x":34,"sheet_y":20,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F647-1F3FC","non_qualified":null,"image":"1f647-1f3fc.png","sheet_x":34,"sheet_y":21,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F647-1F3FD","non_qualified":null,"image":"1f647-1f3fd.png","sheet_x":34,"sheet_y":22,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F647-1F3FE","non_qualified":null,"image":"1f647-1f3fe.png","sheet_x":34,"sheet_y":23,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F647-1F3FF","non_qualified":null,"image":"1f647-1f3ff.png","sheet_x":34,"sheet_y":24,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"SEE-NO-EVIL MONKEY","unified":"1F648","non_qualified":null,"docomo":null,"au":"EB50","softbank":null,"google":"FE354","image":"1f648.png","sheet_x":34,"sheet_y":25,"short_name":"see_no_evil","short_names":["see_no_evil"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"monkey-face","sort_order":125,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HEAR-NO-EVIL MONKEY","unified":"1F649","non_qualified":null,"docomo":null,"au":"EB52","softbank":null,"google":"FE356","image":"1f649.png","sheet_x":34,"sheet_y":26,"short_name":"hear_no_evil","short_names":["hear_no_evil"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"monkey-face","sort_order":126,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SPEAK-NO-EVIL MONKEY","unified":"1F64A","non_qualified":null,"docomo":null,"au":"EB51","softbank":null,"google":"FE355","image":"1f64a.png","sheet_x":34,"sheet_y":27,"short_name":"speak_no_evil","short_names":["speak_no_evil"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"monkey-face","sort_order":127,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WOMAN RAISING HAND","unified":"1F64B-200D-2640-FE0F","non_qualified":"1F64B-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f64b-200d-2640-fe0f.png","sheet_x":34,"sheet_y":28,"short_name":"woman-raising-hand","short_names":["woman-raising-hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":273,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F64B-1F3FB-200D-2640-FE0F","non_qualified":"1F64B-1F3FB-200D-2640","image":"1f64b-1f3fb-200d-2640-fe0f.png","sheet_x":34,"sheet_y":29,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F64B-1F3FC-200D-2640-FE0F","non_qualified":"1F64B-1F3FC-200D-2640","image":"1f64b-1f3fc-200d-2640-fe0f.png","sheet_x":34,"sheet_y":30,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F64B-1F3FD-200D-2640-FE0F","non_qualified":"1F64B-1F3FD-200D-2640","image":"1f64b-1f3fd-200d-2640-fe0f.png","sheet_x":34,"sheet_y":31,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F64B-1F3FE-200D-2640-FE0F","non_qualified":"1F64B-1F3FE-200D-2640","image":"1f64b-1f3fe-200d-2640-fe0f.png","sheet_x":34,"sheet_y":32,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F64B-1F3FF-200D-2640-FE0F","non_qualified":"1F64B-1F3FF-200D-2640","image":"1f64b-1f3ff-200d-2640-fe0f.png","sheet_x":34,"sheet_y":33,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoletes":"1F64B"},{"name":"MAN RAISING HAND","unified":"1F64B-200D-2642-FE0F","non_qualified":"1F64B-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f64b-200d-2642-fe0f.png","sheet_x":34,"sheet_y":34,"short_name":"man-raising-hand","short_names":["man-raising-hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":272,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F64B-1F3FB-200D-2642-FE0F","non_qualified":"1F64B-1F3FB-200D-2642","image":"1f64b-1f3fb-200d-2642-fe0f.png","sheet_x":34,"sheet_y":35,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F64B-1F3FC-200D-2642-FE0F","non_qualified":"1F64B-1F3FC-200D-2642","image":"1f64b-1f3fc-200d-2642-fe0f.png","sheet_x":34,"sheet_y":36,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F64B-1F3FD-200D-2642-FE0F","non_qualified":"1F64B-1F3FD-200D-2642","image":"1f64b-1f3fd-200d-2642-fe0f.png","sheet_x":34,"sheet_y":37,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F64B-1F3FE-200D-2642-FE0F","non_qualified":"1F64B-1F3FE-200D-2642","image":"1f64b-1f3fe-200d-2642-fe0f.png","sheet_x":34,"sheet_y":38,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F64B-1F3FF-200D-2642-FE0F","non_qualified":"1F64B-1F3FF-200D-2642","image":"1f64b-1f3ff-200d-2642-fe0f.png","sheet_x":34,"sheet_y":39,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"HAPPY PERSON RAISING ONE HAND","unified":"1F64B","non_qualified":null,"docomo":null,"au":"EB85","softbank":null,"google":"FE357","image":"1f64b.png","sheet_x":34,"sheet_y":40,"short_name":"raising_hand","short_names":["raising_hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":271,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F64B-1F3FB","non_qualified":null,"image":"1f64b-1f3fb.png","sheet_x":34,"sheet_y":41,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F64B-1F3FC","non_qualified":null,"image":"1f64b-1f3fc.png","sheet_x":34,"sheet_y":42,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F64B-1F3FD","non_qualified":null,"image":"1f64b-1f3fd.png","sheet_x":34,"sheet_y":43,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F64B-1F3FE","non_qualified":null,"image":"1f64b-1f3fe.png","sheet_x":34,"sheet_y":44,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F64B-1F3FF","non_qualified":null,"image":"1f64b-1f3ff.png","sheet_x":34,"sheet_y":45,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoleted_by":"1F64B-200D-2640-FE0F"},{"name":"PERSON RAISING BOTH HANDS IN CELEBRATION","unified":"1F64C","non_qualified":null,"docomo":null,"au":"EB86","softbank":"E427","google":"FE358","image":"1f64c.png","sheet_x":34,"sheet_y":46,"short_name":"raised_hands","short_names":["raised_hands"],"text":null,"texts":null,"category":"People & Body","subcategory":"hands","sort_order":201,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F64C-1F3FB","non_qualified":null,"image":"1f64c-1f3fb.png","sheet_x":34,"sheet_y":47,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F64C-1F3FC","non_qualified":null,"image":"1f64c-1f3fc.png","sheet_x":34,"sheet_y":48,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F64C-1F3FD","non_qualified":null,"image":"1f64c-1f3fd.png","sheet_x":34,"sheet_y":49,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F64C-1F3FE","non_qualified":null,"image":"1f64c-1f3fe.png","sheet_x":34,"sheet_y":50,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F64C-1F3FF","non_qualified":null,"image":"1f64c-1f3ff.png","sheet_x":34,"sheet_y":51,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN FROWNING","unified":"1F64D-200D-2640-FE0F","non_qualified":"1F64D-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f64d-200d-2640-fe0f.png","sheet_x":34,"sheet_y":52,"short_name":"woman-frowning","short_names":["woman-frowning"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":258,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F64D-1F3FB-200D-2640-FE0F","non_qualified":"1F64D-1F3FB-200D-2640","image":"1f64d-1f3fb-200d-2640-fe0f.png","sheet_x":34,"sheet_y":53,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F64D-1F3FC-200D-2640-FE0F","non_qualified":"1F64D-1F3FC-200D-2640","image":"1f64d-1f3fc-200d-2640-fe0f.png","sheet_x":34,"sheet_y":54,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F64D-1F3FD-200D-2640-FE0F","non_qualified":"1F64D-1F3FD-200D-2640","image":"1f64d-1f3fd-200d-2640-fe0f.png","sheet_x":34,"sheet_y":55,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F64D-1F3FE-200D-2640-FE0F","non_qualified":"1F64D-1F3FE-200D-2640","image":"1f64d-1f3fe-200d-2640-fe0f.png","sheet_x":34,"sheet_y":56,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F64D-1F3FF-200D-2640-FE0F","non_qualified":"1F64D-1F3FF-200D-2640","image":"1f64d-1f3ff-200d-2640-fe0f.png","sheet_x":34,"sheet_y":57,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoletes":"1F64D"},{"name":"MAN FROWNING","unified":"1F64D-200D-2642-FE0F","non_qualified":"1F64D-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f64d-200d-2642-fe0f.png","sheet_x":34,"sheet_y":58,"short_name":"man-frowning","short_names":["man-frowning"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":257,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F64D-1F3FB-200D-2642-FE0F","non_qualified":"1F64D-1F3FB-200D-2642","image":"1f64d-1f3fb-200d-2642-fe0f.png","sheet_x":34,"sheet_y":59,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F64D-1F3FC-200D-2642-FE0F","non_qualified":"1F64D-1F3FC-200D-2642","image":"1f64d-1f3fc-200d-2642-fe0f.png","sheet_x":34,"sheet_y":60,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F64D-1F3FD-200D-2642-FE0F","non_qualified":"1F64D-1F3FD-200D-2642","image":"1f64d-1f3fd-200d-2642-fe0f.png","sheet_x":35,"sheet_y":0,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F64D-1F3FE-200D-2642-FE0F","non_qualified":"1F64D-1F3FE-200D-2642","image":"1f64d-1f3fe-200d-2642-fe0f.png","sheet_x":35,"sheet_y":1,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F64D-1F3FF-200D-2642-FE0F","non_qualified":"1F64D-1F3FF-200D-2642","image":"1f64d-1f3ff-200d-2642-fe0f.png","sheet_x":35,"sheet_y":2,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"PERSON FROWNING","unified":"1F64D","non_qualified":null,"docomo":"E6F3","au":"EB87","softbank":null,"google":"FE359","image":"1f64d.png","sheet_x":35,"sheet_y":3,"short_name":"person_frowning","short_names":["person_frowning"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":256,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F64D-1F3FB","non_qualified":null,"image":"1f64d-1f3fb.png","sheet_x":35,"sheet_y":4,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F64D-1F3FC","non_qualified":null,"image":"1f64d-1f3fc.png","sheet_x":35,"sheet_y":5,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F64D-1F3FD","non_qualified":null,"image":"1f64d-1f3fd.png","sheet_x":35,"sheet_y":6,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F64D-1F3FE","non_qualified":null,"image":"1f64d-1f3fe.png","sheet_x":35,"sheet_y":7,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F64D-1F3FF","non_qualified":null,"image":"1f64d-1f3ff.png","sheet_x":35,"sheet_y":8,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoleted_by":"1F64D-200D-2640-FE0F"},{"name":"WOMAN POUTING","unified":"1F64E-200D-2640-FE0F","non_qualified":"1F64E-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f64e-200d-2640-fe0f.png","sheet_x":35,"sheet_y":9,"short_name":"woman-pouting","short_names":["woman-pouting"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":261,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F64E-1F3FB-200D-2640-FE0F","non_qualified":"1F64E-1F3FB-200D-2640","image":"1f64e-1f3fb-200d-2640-fe0f.png","sheet_x":35,"sheet_y":10,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F64E-1F3FC-200D-2640-FE0F","non_qualified":"1F64E-1F3FC-200D-2640","image":"1f64e-1f3fc-200d-2640-fe0f.png","sheet_x":35,"sheet_y":11,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F64E-1F3FD-200D-2640-FE0F","non_qualified":"1F64E-1F3FD-200D-2640","image":"1f64e-1f3fd-200d-2640-fe0f.png","sheet_x":35,"sheet_y":12,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F64E-1F3FE-200D-2640-FE0F","non_qualified":"1F64E-1F3FE-200D-2640","image":"1f64e-1f3fe-200d-2640-fe0f.png","sheet_x":35,"sheet_y":13,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F64E-1F3FF-200D-2640-FE0F","non_qualified":"1F64E-1F3FF-200D-2640","image":"1f64e-1f3ff-200d-2640-fe0f.png","sheet_x":35,"sheet_y":14,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoletes":"1F64E"},{"name":"MAN POUTING","unified":"1F64E-200D-2642-FE0F","non_qualified":"1F64E-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f64e-200d-2642-fe0f.png","sheet_x":35,"sheet_y":15,"short_name":"man-pouting","short_names":["man-pouting"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":260,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F64E-1F3FB-200D-2642-FE0F","non_qualified":"1F64E-1F3FB-200D-2642","image":"1f64e-1f3fb-200d-2642-fe0f.png","sheet_x":35,"sheet_y":16,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F64E-1F3FC-200D-2642-FE0F","non_qualified":"1F64E-1F3FC-200D-2642","image":"1f64e-1f3fc-200d-2642-fe0f.png","sheet_x":35,"sheet_y":17,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F64E-1F3FD-200D-2642-FE0F","non_qualified":"1F64E-1F3FD-200D-2642","image":"1f64e-1f3fd-200d-2642-fe0f.png","sheet_x":35,"sheet_y":18,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F64E-1F3FE-200D-2642-FE0F","non_qualified":"1F64E-1F3FE-200D-2642","image":"1f64e-1f3fe-200d-2642-fe0f.png","sheet_x":35,"sheet_y":19,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F64E-1F3FF-200D-2642-FE0F","non_qualified":"1F64E-1F3FF-200D-2642","image":"1f64e-1f3ff-200d-2642-fe0f.png","sheet_x":35,"sheet_y":20,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"PERSON WITH POUTING FACE","unified":"1F64E","non_qualified":null,"docomo":"E6F1","au":"EB88","softbank":null,"google":"FE35A","image":"1f64e.png","sheet_x":35,"sheet_y":21,"short_name":"person_with_pouting_face","short_names":["person_with_pouting_face"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":259,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F64E-1F3FB","non_qualified":null,"image":"1f64e-1f3fb.png","sheet_x":35,"sheet_y":22,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F64E-1F3FC","non_qualified":null,"image":"1f64e-1f3fc.png","sheet_x":35,"sheet_y":23,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F64E-1F3FD","non_qualified":null,"image":"1f64e-1f3fd.png","sheet_x":35,"sheet_y":24,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F64E-1F3FE","non_qualified":null,"image":"1f64e-1f3fe.png","sheet_x":35,"sheet_y":25,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F64E-1F3FF","non_qualified":null,"image":"1f64e-1f3ff.png","sheet_x":35,"sheet_y":26,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoleted_by":"1F64E-200D-2640-FE0F"},{"name":"PERSON WITH FOLDED HANDS","unified":"1F64F","non_qualified":null,"docomo":null,"au":"EAD2","softbank":"E41D","google":"FE35B","image":"1f64f.png","sheet_x":35,"sheet_y":27,"short_name":"pray","short_names":["pray"],"text":null,"texts":null,"category":"People & Body","subcategory":"hands","sort_order":206,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F64F-1F3FB","non_qualified":null,"image":"1f64f-1f3fb.png","sheet_x":35,"sheet_y":28,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F64F-1F3FC","non_qualified":null,"image":"1f64f-1f3fc.png","sheet_x":35,"sheet_y":29,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F64F-1F3FD","non_qualified":null,"image":"1f64f-1f3fd.png","sheet_x":35,"sheet_y":30,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F64F-1F3FE","non_qualified":null,"image":"1f64f-1f3fe.png","sheet_x":35,"sheet_y":31,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F64F-1F3FF","non_qualified":null,"image":"1f64f-1f3ff.png","sheet_x":35,"sheet_y":32,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"ROCKET","unified":"1F680","non_qualified":null,"docomo":null,"au":"E5C8","softbank":"E10D","google":"FE7ED","image":"1f680.png","sheet_x":35,"sheet_y":33,"short_name":"rocket","short_names":["rocket"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-air","sort_order":956,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HELICOPTER","unified":"1F681","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f681.png","sheet_x":35,"sheet_y":34,"short_name":"helicopter","short_names":["helicopter"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-air","sort_order":951,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"STEAM LOCOMOTIVE","unified":"1F682","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f682.png","sheet_x":35,"sheet_y":35,"short_name":"steam_locomotive","short_names":["steam_locomotive"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":886,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RAILWAY CAR","unified":"1F683","non_qualified":null,"docomo":"E65B","au":"E4B5","softbank":"E01E","google":"FE7DF","image":"1f683.png","sheet_x":35,"sheet_y":36,"short_name":"railway_car","short_names":["railway_car"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":887,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HIGH-SPEED TRAIN","unified":"1F684","non_qualified":null,"docomo":"E65D","au":"E4B0","softbank":"E435","google":"FE7E2","image":"1f684.png","sheet_x":35,"sheet_y":37,"short_name":"bullettrain_side","short_names":["bullettrain_side"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":888,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HIGH-SPEED TRAIN WITH BULLET NOSE","unified":"1F685","non_qualified":null,"docomo":"E65D","au":"E4B0","softbank":"E01F","google":"FE7E3","image":"1f685.png","sheet_x":35,"sheet_y":38,"short_name":"bullettrain_front","short_names":["bullettrain_front"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":889,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TRAIN","unified":"1F686","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f686.png","sheet_x":35,"sheet_y":39,"short_name":"train2","short_names":["train2"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":890,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"METRO","unified":"1F687","non_qualified":null,"docomo":"E65C","au":"E5BC","softbank":"E434","google":"FE7E0","image":"1f687.png","sheet_x":35,"sheet_y":40,"short_name":"metro","short_names":["metro"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":891,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LIGHT RAIL","unified":"1F688","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f688.png","sheet_x":35,"sheet_y":41,"short_name":"light_rail","short_names":["light_rail"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":892,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"STATION","unified":"1F689","non_qualified":null,"docomo":null,"au":"EB6D","softbank":"E039","google":"FE7EC","image":"1f689.png","sheet_x":35,"sheet_y":42,"short_name":"station","short_names":["station"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":893,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TRAM","unified":"1F68A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f68a.png","sheet_x":35,"sheet_y":43,"short_name":"tram","short_names":["tram"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":894,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TRAM CAR","unified":"1F68B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f68b.png","sheet_x":35,"sheet_y":44,"short_name":"train","short_names":["train"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":897,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BUS","unified":"1F68C","non_qualified":null,"docomo":"E660","au":"E4AF","softbank":"E159","google":"FE7E6","image":"1f68c.png","sheet_x":35,"sheet_y":45,"short_name":"bus","short_names":["bus"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":898,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ONCOMING BUS","unified":"1F68D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f68d.png","sheet_x":35,"sheet_y":46,"short_name":"oncoming_bus","short_names":["oncoming_bus"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":899,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TROLLEYBUS","unified":"1F68E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f68e.png","sheet_x":35,"sheet_y":47,"short_name":"trolleybus","short_names":["trolleybus"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":900,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BUS STOP","unified":"1F68F","non_qualified":null,"docomo":null,"au":"E4A7","softbank":"E150","google":"FE7E7","image":"1f68f.png","sheet_x":35,"sheet_y":48,"short_name":"busstop","short_names":["busstop"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":925,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MINIBUS","unified":"1F690","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f690.png","sheet_x":35,"sheet_y":49,"short_name":"minibus","short_names":["minibus"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":901,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"AMBULANCE","unified":"1F691","non_qualified":null,"docomo":null,"au":"EAE0","softbank":"E431","google":"FE7F3","image":"1f691.png","sheet_x":35,"sheet_y":50,"short_name":"ambulance","short_names":["ambulance"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":902,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FIRE ENGINE","unified":"1F692","non_qualified":null,"docomo":null,"au":"EADF","softbank":"E430","google":"FE7F2","image":"1f692.png","sheet_x":35,"sheet_y":51,"short_name":"fire_engine","short_names":["fire_engine"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":903,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"POLICE CAR","unified":"1F693","non_qualified":null,"docomo":null,"au":"EAE1","softbank":"E432","google":"FE7F4","image":"1f693.png","sheet_x":35,"sheet_y":52,"short_name":"police_car","short_names":["police_car"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":904,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ONCOMING POLICE CAR","unified":"1F694","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f694.png","sheet_x":35,"sheet_y":53,"short_name":"oncoming_police_car","short_names":["oncoming_police_car"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":905,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TAXI","unified":"1F695","non_qualified":null,"docomo":"E65E","au":"E4B1","softbank":"E15A","google":"FE7EF","image":"1f695.png","sheet_x":35,"sheet_y":54,"short_name":"taxi","short_names":["taxi"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":906,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ONCOMING TAXI","unified":"1F696","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f696.png","sheet_x":35,"sheet_y":55,"short_name":"oncoming_taxi","short_names":["oncoming_taxi"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":907,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"AUTOMOBILE","unified":"1F697","non_qualified":null,"docomo":"E65E","au":"E4B1","softbank":"E01B","google":"FE7E4","image":"1f697.png","sheet_x":35,"sheet_y":56,"short_name":"car","short_names":["car","red_car"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":908,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ONCOMING AUTOMOBILE","unified":"1F698","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f698.png","sheet_x":35,"sheet_y":57,"short_name":"oncoming_automobile","short_names":["oncoming_automobile"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":909,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RECREATIONAL VEHICLE","unified":"1F699","non_qualified":null,"docomo":"E65F","au":"E4B1","softbank":"E42E","google":"FE7E5","image":"1f699.png","sheet_x":35,"sheet_y":58,"short_name":"blue_car","short_names":["blue_car"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":910,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DELIVERY TRUCK","unified":"1F69A","non_qualified":null,"docomo":null,"au":"E4B2","softbank":"E42F","google":"FE7F1","image":"1f69a.png","sheet_x":35,"sheet_y":59,"short_name":"truck","short_names":["truck"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":912,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ARTICULATED LORRY","unified":"1F69B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f69b.png","sheet_x":35,"sheet_y":60,"short_name":"articulated_lorry","short_names":["articulated_lorry"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":913,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TRACTOR","unified":"1F69C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f69c.png","sheet_x":36,"sheet_y":0,"short_name":"tractor","short_names":["tractor"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":914,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MONORAIL","unified":"1F69D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f69d.png","sheet_x":36,"sheet_y":1,"short_name":"monorail","short_names":["monorail"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":895,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MOUNTAIN RAILWAY","unified":"1F69E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f69e.png","sheet_x":36,"sheet_y":2,"short_name":"mountain_railway","short_names":["mountain_railway"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":896,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SUSPENSION RAILWAY","unified":"1F69F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f69f.png","sheet_x":36,"sheet_y":3,"short_name":"suspension_railway","short_names":["suspension_railway"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-air","sort_order":952,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MOUNTAIN CABLEWAY","unified":"1F6A0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6a0.png","sheet_x":36,"sheet_y":4,"short_name":"mountain_cableway","short_names":["mountain_cableway"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-air","sort_order":953,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"AERIAL TRAMWAY","unified":"1F6A1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6a1.png","sheet_x":36,"sheet_y":5,"short_name":"aerial_tramway","short_names":["aerial_tramway"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-air","sort_order":954,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SHIP","unified":"1F6A2","non_qualified":null,"docomo":"E661","au":"EA82","softbank":"E202","google":"FE7E8","image":"1f6a2.png","sheet_x":36,"sheet_y":6,"short_name":"ship","short_names":["ship"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-water","sort_order":944,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WOMAN ROWING BOAT","unified":"1F6A3-200D-2640-FE0F","non_qualified":"1F6A3-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6a3-200d-2640-fe0f.png","sheet_x":36,"sheet_y":7,"short_name":"woman-rowing-boat","short_names":["woman-rowing-boat"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":451,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F6A3-1F3FB-200D-2640-FE0F","non_qualified":"1F6A3-1F3FB-200D-2640","image":"1f6a3-1f3fb-200d-2640-fe0f.png","sheet_x":36,"sheet_y":8,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F6A3-1F3FC-200D-2640-FE0F","non_qualified":"1F6A3-1F3FC-200D-2640","image":"1f6a3-1f3fc-200d-2640-fe0f.png","sheet_x":36,"sheet_y":9,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F6A3-1F3FD-200D-2640-FE0F","non_qualified":"1F6A3-1F3FD-200D-2640","image":"1f6a3-1f3fd-200d-2640-fe0f.png","sheet_x":36,"sheet_y":10,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F6A3-1F3FE-200D-2640-FE0F","non_qualified":"1F6A3-1F3FE-200D-2640","image":"1f6a3-1f3fe-200d-2640-fe0f.png","sheet_x":36,"sheet_y":11,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F6A3-1F3FF-200D-2640-FE0F","non_qualified":"1F6A3-1F3FF-200D-2640","image":"1f6a3-1f3ff-200d-2640-fe0f.png","sheet_x":36,"sheet_y":12,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN ROWING BOAT","unified":"1F6A3-200D-2642-FE0F","non_qualified":"1F6A3-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6a3-200d-2642-fe0f.png","sheet_x":36,"sheet_y":13,"short_name":"man-rowing-boat","short_names":["man-rowing-boat"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":450,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F6A3-1F3FB-200D-2642-FE0F","non_qualified":"1F6A3-1F3FB-200D-2642","image":"1f6a3-1f3fb-200d-2642-fe0f.png","sheet_x":36,"sheet_y":14,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F6A3-1F3FC-200D-2642-FE0F","non_qualified":"1F6A3-1F3FC-200D-2642","image":"1f6a3-1f3fc-200d-2642-fe0f.png","sheet_x":36,"sheet_y":15,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F6A3-1F3FD-200D-2642-FE0F","non_qualified":"1F6A3-1F3FD-200D-2642","image":"1f6a3-1f3fd-200d-2642-fe0f.png","sheet_x":36,"sheet_y":16,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F6A3-1F3FE-200D-2642-FE0F","non_qualified":"1F6A3-1F3FE-200D-2642","image":"1f6a3-1f3fe-200d-2642-fe0f.png","sheet_x":36,"sheet_y":17,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F6A3-1F3FF-200D-2642-FE0F","non_qualified":"1F6A3-1F3FF-200D-2642","image":"1f6a3-1f3ff-200d-2642-fe0f.png","sheet_x":36,"sheet_y":18,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoletes":"1F6A3"},{"name":"ROWBOAT","unified":"1F6A3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6a3.png","sheet_x":36,"sheet_y":19,"short_name":"rowboat","short_names":["rowboat"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":449,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F6A3-1F3FB","non_qualified":null,"image":"1f6a3-1f3fb.png","sheet_x":36,"sheet_y":20,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F6A3-1F3FC","non_qualified":null,"image":"1f6a3-1f3fc.png","sheet_x":36,"sheet_y":21,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F6A3-1F3FD","non_qualified":null,"image":"1f6a3-1f3fd.png","sheet_x":36,"sheet_y":22,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F6A3-1F3FE","non_qualified":null,"image":"1f6a3-1f3fe.png","sheet_x":36,"sheet_y":23,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F6A3-1F3FF","non_qualified":null,"image":"1f6a3-1f3ff.png","sheet_x":36,"sheet_y":24,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoleted_by":"1F6A3-200D-2642-FE0F"},{"name":"SPEEDBOAT","unified":"1F6A4","non_qualified":null,"docomo":"E6A3","au":"E4B4","softbank":"E135","google":"FE7EE","image":"1f6a4.png","sheet_x":36,"sheet_y":25,"short_name":"speedboat","short_names":["speedboat"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-water","sort_order":940,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HORIZONTAL TRAFFIC LIGHT","unified":"1F6A5","non_qualified":null,"docomo":"E66D","au":"E46A","softbank":"E14E","google":"FE7F7","image":"1f6a5.png","sheet_x":36,"sheet_y":26,"short_name":"traffic_light","short_names":["traffic_light"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":932,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"VERTICAL TRAFFIC LIGHT","unified":"1F6A6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6a6.png","sheet_x":36,"sheet_y":27,"short_name":"vertical_traffic_light","short_names":["vertical_traffic_light"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":933,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CONSTRUCTION SIGN","unified":"1F6A7","non_qualified":null,"docomo":null,"au":"E5D7","softbank":"E137","google":"FE7F8","image":"1f6a7.png","sheet_x":36,"sheet_y":28,"short_name":"construction","short_names":["construction"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":935,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"POLICE CARS REVOLVING LIGHT","unified":"1F6A8","non_qualified":null,"docomo":null,"au":"EB73","softbank":null,"google":"FE7F9","image":"1f6a8.png","sheet_x":36,"sheet_y":29,"short_name":"rotating_light","short_names":["rotating_light"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":931,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TRIANGULAR FLAG ON POST","unified":"1F6A9","non_qualified":null,"docomo":"E6DE","au":"EB2C","softbank":null,"google":"FEB22","image":"1f6a9.png","sheet_x":36,"sheet_y":30,"short_name":"triangular_flag_on_post","short_names":["triangular_flag_on_post"],"text":null,"texts":null,"category":"Flags","subcategory":"flag","sort_order":1608,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DOOR","unified":"1F6AA","non_qualified":null,"docomo":"E714","au":null,"softbank":null,"google":"FE4F3","image":"1f6aa.png","sheet_x":36,"sheet_y":31,"short_name":"door","short_names":["door"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1350,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NO ENTRY SIGN","unified":"1F6AB","non_qualified":null,"docomo":"E738","au":"E541","softbank":null,"google":"FEB48","image":"1f6ab.png","sheet_x":36,"sheet_y":32,"short_name":"no_entry_sign","short_names":["no_entry_sign"],"text":null,"texts":null,"category":"Symbols","subcategory":"warning","sort_order":1400,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SMOKING SYMBOL","unified":"1F6AC","non_qualified":null,"docomo":"E67F","au":"E47D","softbank":"E30E","google":"FEB1E","image":"1f6ac.png","sheet_x":36,"sheet_y":33,"short_name":"smoking","short_names":["smoking"],"text":null,"texts":null,"category":"Objects","subcategory":"other-object","sort_order":1375,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NO SMOKING SYMBOL","unified":"1F6AD","non_qualified":null,"docomo":"E680","au":"E47E","softbank":"E208","google":"FEB1F","image":"1f6ad.png","sheet_x":36,"sheet_y":34,"short_name":"no_smoking","short_names":["no_smoking"],"text":null,"texts":null,"category":"Symbols","subcategory":"warning","sort_order":1402,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PUT LITTER IN ITS PLACE SYMBOL","unified":"1F6AE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6ae.png","sheet_x":36,"sheet_y":35,"short_name":"put_litter_in_its_place","short_names":["put_litter_in_its_place"],"text":null,"texts":null,"category":"Symbols","subcategory":"transport-sign","sort_order":1385,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DO NOT LITTER SYMBOL","unified":"1F6AF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6af.png","sheet_x":36,"sheet_y":36,"short_name":"do_not_litter","short_names":["do_not_litter"],"text":null,"texts":null,"category":"Symbols","subcategory":"warning","sort_order":1403,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"POTABLE WATER SYMBOL","unified":"1F6B0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b0.png","sheet_x":36,"sheet_y":37,"short_name":"potable_water","short_names":["potable_water"],"text":null,"texts":null,"category":"Symbols","subcategory":"transport-sign","sort_order":1386,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NON-POTABLE WATER SYMBOL","unified":"1F6B1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b1.png","sheet_x":36,"sheet_y":38,"short_name":"non-potable_water","short_names":["non-potable_water"],"text":null,"texts":null,"category":"Symbols","subcategory":"warning","sort_order":1404,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BICYCLE","unified":"1F6B2","non_qualified":null,"docomo":"E71D","au":"E4AE","softbank":"E136","google":"FE7EB","image":"1f6b2.png","sheet_x":36,"sheet_y":39,"short_name":"bike","short_names":["bike"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":921,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NO BICYCLES","unified":"1F6B3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b3.png","sheet_x":36,"sheet_y":40,"short_name":"no_bicycles","short_names":["no_bicycles"],"text":null,"texts":null,"category":"Symbols","subcategory":"warning","sort_order":1401,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WOMAN BIKING","unified":"1F6B4-200D-2640-FE0F","non_qualified":"1F6B4-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b4-200d-2640-fe0f.png","sheet_x":36,"sheet_y":41,"short_name":"woman-biking","short_names":["woman-biking"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":463,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F6B4-1F3FB-200D-2640-FE0F","non_qualified":"1F6B4-1F3FB-200D-2640","image":"1f6b4-1f3fb-200d-2640-fe0f.png","sheet_x":36,"sheet_y":42,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F6B4-1F3FC-200D-2640-FE0F","non_qualified":"1F6B4-1F3FC-200D-2640","image":"1f6b4-1f3fc-200d-2640-fe0f.png","sheet_x":36,"sheet_y":43,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F6B4-1F3FD-200D-2640-FE0F","non_qualified":"1F6B4-1F3FD-200D-2640","image":"1f6b4-1f3fd-200d-2640-fe0f.png","sheet_x":36,"sheet_y":44,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F6B4-1F3FE-200D-2640-FE0F","non_qualified":"1F6B4-1F3FE-200D-2640","image":"1f6b4-1f3fe-200d-2640-fe0f.png","sheet_x":36,"sheet_y":45,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F6B4-1F3FF-200D-2640-FE0F","non_qualified":"1F6B4-1F3FF-200D-2640","image":"1f6b4-1f3ff-200d-2640-fe0f.png","sheet_x":36,"sheet_y":46,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN BIKING","unified":"1F6B4-200D-2642-FE0F","non_qualified":"1F6B4-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b4-200d-2642-fe0f.png","sheet_x":36,"sheet_y":47,"short_name":"man-biking","short_names":["man-biking"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":462,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F6B4-1F3FB-200D-2642-FE0F","non_qualified":"1F6B4-1F3FB-200D-2642","image":"1f6b4-1f3fb-200d-2642-fe0f.png","sheet_x":36,"sheet_y":48,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F6B4-1F3FC-200D-2642-FE0F","non_qualified":"1F6B4-1F3FC-200D-2642","image":"1f6b4-1f3fc-200d-2642-fe0f.png","sheet_x":36,"sheet_y":49,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F6B4-1F3FD-200D-2642-FE0F","non_qualified":"1F6B4-1F3FD-200D-2642","image":"1f6b4-1f3fd-200d-2642-fe0f.png","sheet_x":36,"sheet_y":50,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F6B4-1F3FE-200D-2642-FE0F","non_qualified":"1F6B4-1F3FE-200D-2642","image":"1f6b4-1f3fe-200d-2642-fe0f.png","sheet_x":36,"sheet_y":51,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F6B4-1F3FF-200D-2642-FE0F","non_qualified":"1F6B4-1F3FF-200D-2642","image":"1f6b4-1f3ff-200d-2642-fe0f.png","sheet_x":36,"sheet_y":52,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoletes":"1F6B4"},{"name":"BICYCLIST","unified":"1F6B4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b4.png","sheet_x":36,"sheet_y":53,"short_name":"bicyclist","short_names":["bicyclist"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":461,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F6B4-1F3FB","non_qualified":null,"image":"1f6b4-1f3fb.png","sheet_x":36,"sheet_y":54,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F6B4-1F3FC","non_qualified":null,"image":"1f6b4-1f3fc.png","sheet_x":36,"sheet_y":55,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F6B4-1F3FD","non_qualified":null,"image":"1f6b4-1f3fd.png","sheet_x":36,"sheet_y":56,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F6B4-1F3FE","non_qualified":null,"image":"1f6b4-1f3fe.png","sheet_x":36,"sheet_y":57,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F6B4-1F3FF","non_qualified":null,"image":"1f6b4-1f3ff.png","sheet_x":36,"sheet_y":58,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoleted_by":"1F6B4-200D-2642-FE0F"},{"name":"WOMAN MOUNTAIN BIKING","unified":"1F6B5-200D-2640-FE0F","non_qualified":"1F6B5-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b5-200d-2640-fe0f.png","sheet_x":36,"sheet_y":59,"short_name":"woman-mountain-biking","short_names":["woman-mountain-biking"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":466,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F6B5-1F3FB-200D-2640-FE0F","non_qualified":"1F6B5-1F3FB-200D-2640","image":"1f6b5-1f3fb-200d-2640-fe0f.png","sheet_x":36,"sheet_y":60,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F6B5-1F3FC-200D-2640-FE0F","non_qualified":"1F6B5-1F3FC-200D-2640","image":"1f6b5-1f3fc-200d-2640-fe0f.png","sheet_x":37,"sheet_y":0,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F6B5-1F3FD-200D-2640-FE0F","non_qualified":"1F6B5-1F3FD-200D-2640","image":"1f6b5-1f3fd-200d-2640-fe0f.png","sheet_x":37,"sheet_y":1,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F6B5-1F3FE-200D-2640-FE0F","non_qualified":"1F6B5-1F3FE-200D-2640","image":"1f6b5-1f3fe-200d-2640-fe0f.png","sheet_x":37,"sheet_y":2,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F6B5-1F3FF-200D-2640-FE0F","non_qualified":"1F6B5-1F3FF-200D-2640","image":"1f6b5-1f3ff-200d-2640-fe0f.png","sheet_x":37,"sheet_y":3,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN MOUNTAIN BIKING","unified":"1F6B5-200D-2642-FE0F","non_qualified":"1F6B5-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b5-200d-2642-fe0f.png","sheet_x":37,"sheet_y":4,"short_name":"man-mountain-biking","short_names":["man-mountain-biking"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":465,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F6B5-1F3FB-200D-2642-FE0F","non_qualified":"1F6B5-1F3FB-200D-2642","image":"1f6b5-1f3fb-200d-2642-fe0f.png","sheet_x":37,"sheet_y":5,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F6B5-1F3FC-200D-2642-FE0F","non_qualified":"1F6B5-1F3FC-200D-2642","image":"1f6b5-1f3fc-200d-2642-fe0f.png","sheet_x":37,"sheet_y":6,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F6B5-1F3FD-200D-2642-FE0F","non_qualified":"1F6B5-1F3FD-200D-2642","image":"1f6b5-1f3fd-200d-2642-fe0f.png","sheet_x":37,"sheet_y":7,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F6B5-1F3FE-200D-2642-FE0F","non_qualified":"1F6B5-1F3FE-200D-2642","image":"1f6b5-1f3fe-200d-2642-fe0f.png","sheet_x":37,"sheet_y":8,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F6B5-1F3FF-200D-2642-FE0F","non_qualified":"1F6B5-1F3FF-200D-2642","image":"1f6b5-1f3ff-200d-2642-fe0f.png","sheet_x":37,"sheet_y":9,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoletes":"1F6B5"},{"name":"MOUNTAIN BICYCLIST","unified":"1F6B5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b5.png","sheet_x":37,"sheet_y":10,"short_name":"mountain_bicyclist","short_names":["mountain_bicyclist"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":464,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F6B5-1F3FB","non_qualified":null,"image":"1f6b5-1f3fb.png","sheet_x":37,"sheet_y":11,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F6B5-1F3FC","non_qualified":null,"image":"1f6b5-1f3fc.png","sheet_x":37,"sheet_y":12,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F6B5-1F3FD","non_qualified":null,"image":"1f6b5-1f3fd.png","sheet_x":37,"sheet_y":13,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F6B5-1F3FE","non_qualified":null,"image":"1f6b5-1f3fe.png","sheet_x":37,"sheet_y":14,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F6B5-1F3FF","non_qualified":null,"image":"1f6b5-1f3ff.png","sheet_x":37,"sheet_y":15,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoleted_by":"1F6B5-200D-2642-FE0F"},{"name":"WOMAN WALKING","unified":"1F6B6-200D-2640-FE0F","non_qualified":"1F6B6-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b6-200d-2640-fe0f.png","sheet_x":37,"sheet_y":16,"short_name":"woman-walking","short_names":["woman-walking"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":408,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F6B6-1F3FB-200D-2640-FE0F","non_qualified":"1F6B6-1F3FB-200D-2640","image":"1f6b6-1f3fb-200d-2640-fe0f.png","sheet_x":37,"sheet_y":17,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F6B6-1F3FC-200D-2640-FE0F","non_qualified":"1F6B6-1F3FC-200D-2640","image":"1f6b6-1f3fc-200d-2640-fe0f.png","sheet_x":37,"sheet_y":18,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F6B6-1F3FD-200D-2640-FE0F","non_qualified":"1F6B6-1F3FD-200D-2640","image":"1f6b6-1f3fd-200d-2640-fe0f.png","sheet_x":37,"sheet_y":19,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F6B6-1F3FE-200D-2640-FE0F","non_qualified":"1F6B6-1F3FE-200D-2640","image":"1f6b6-1f3fe-200d-2640-fe0f.png","sheet_x":37,"sheet_y":20,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F6B6-1F3FF-200D-2640-FE0F","non_qualified":"1F6B6-1F3FF-200D-2640","image":"1f6b6-1f3ff-200d-2640-fe0f.png","sheet_x":37,"sheet_y":21,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN WALKING","unified":"1F6B6-200D-2642-FE0F","non_qualified":"1F6B6-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b6-200d-2642-fe0f.png","sheet_x":37,"sheet_y":22,"short_name":"man-walking","short_names":["man-walking"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":407,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F6B6-1F3FB-200D-2642-FE0F","non_qualified":"1F6B6-1F3FB-200D-2642","image":"1f6b6-1f3fb-200d-2642-fe0f.png","sheet_x":37,"sheet_y":23,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F6B6-1F3FC-200D-2642-FE0F","non_qualified":"1F6B6-1F3FC-200D-2642","image":"1f6b6-1f3fc-200d-2642-fe0f.png","sheet_x":37,"sheet_y":24,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F6B6-1F3FD-200D-2642-FE0F","non_qualified":"1F6B6-1F3FD-200D-2642","image":"1f6b6-1f3fd-200d-2642-fe0f.png","sheet_x":37,"sheet_y":25,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F6B6-1F3FE-200D-2642-FE0F","non_qualified":"1F6B6-1F3FE-200D-2642","image":"1f6b6-1f3fe-200d-2642-fe0f.png","sheet_x":37,"sheet_y":26,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F6B6-1F3FF-200D-2642-FE0F","non_qualified":"1F6B6-1F3FF-200D-2642","image":"1f6b6-1f3ff-200d-2642-fe0f.png","sheet_x":37,"sheet_y":27,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoletes":"1F6B6"},{"name":"PEDESTRIAN","unified":"1F6B6","non_qualified":null,"docomo":"E733","au":"EB72","softbank":"E201","google":"FE7F0","image":"1f6b6.png","sheet_x":37,"sheet_y":28,"short_name":"walking","short_names":["walking"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":406,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F6B6-1F3FB","non_qualified":null,"image":"1f6b6-1f3fb.png","sheet_x":37,"sheet_y":29,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F6B6-1F3FC","non_qualified":null,"image":"1f6b6-1f3fc.png","sheet_x":37,"sheet_y":30,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F6B6-1F3FD","non_qualified":null,"image":"1f6b6-1f3fd.png","sheet_x":37,"sheet_y":31,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F6B6-1F3FE","non_qualified":null,"image":"1f6b6-1f3fe.png","sheet_x":37,"sheet_y":32,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F6B6-1F3FF","non_qualified":null,"image":"1f6b6-1f3ff.png","sheet_x":37,"sheet_y":33,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoleted_by":"1F6B6-200D-2642-FE0F"},{"name":"NO PEDESTRIANS","unified":"1F6B7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b7.png","sheet_x":37,"sheet_y":34,"short_name":"no_pedestrians","short_names":["no_pedestrians"],"text":null,"texts":null,"category":"Symbols","subcategory":"warning","sort_order":1405,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CHILDREN CROSSING","unified":"1F6B8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b8.png","sheet_x":37,"sheet_y":35,"short_name":"children_crossing","short_names":["children_crossing"],"text":null,"texts":null,"category":"Symbols","subcategory":"warning","sort_order":1398,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MENS SYMBOL","unified":"1F6B9","non_qualified":null,"docomo":null,"au":null,"softbank":"E138","google":"FEB33","image":"1f6b9.png","sheet_x":37,"sheet_y":36,"short_name":"mens","short_names":["mens"],"text":null,"texts":null,"category":"Symbols","subcategory":"transport-sign","sort_order":1388,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WOMENS SYMBOL","unified":"1F6BA","non_qualified":null,"docomo":null,"au":null,"softbank":"E139","google":"FEB34","image":"1f6ba.png","sheet_x":37,"sheet_y":37,"short_name":"womens","short_names":["womens"],"text":null,"texts":null,"category":"Symbols","subcategory":"transport-sign","sort_order":1389,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RESTROOM","unified":"1F6BB","non_qualified":null,"docomo":"E66E","au":"E4A5","softbank":"E151","google":"FE506","image":"1f6bb.png","sheet_x":37,"sheet_y":38,"short_name":"restroom","short_names":["restroom"],"text":null,"texts":null,"category":"Symbols","subcategory":"transport-sign","sort_order":1390,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BABY SYMBOL","unified":"1F6BC","non_qualified":null,"docomo":null,"au":"EB18","softbank":"E13A","google":"FEB35","image":"1f6bc.png","sheet_x":37,"sheet_y":39,"short_name":"baby_symbol","short_names":["baby_symbol"],"text":null,"texts":null,"category":"Symbols","subcategory":"transport-sign","sort_order":1391,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TOILET","unified":"1F6BD","non_qualified":null,"docomo":"E66E","au":"E4A5","softbank":"E140","google":"FE507","image":"1f6bd.png","sheet_x":37,"sheet_y":40,"short_name":"toilet","short_names":["toilet"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1357,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WATER CLOSET","unified":"1F6BE","non_qualified":null,"docomo":"E66E","au":"E4A5","softbank":"E309","google":"FE508","image":"1f6be.png","sheet_x":37,"sheet_y":41,"short_name":"wc","short_names":["wc"],"text":null,"texts":null,"category":"Symbols","subcategory":"transport-sign","sort_order":1392,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SHOWER","unified":"1F6BF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6bf.png","sheet_x":37,"sheet_y":42,"short_name":"shower","short_names":["shower"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1359,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BATH","unified":"1F6C0","non_qualified":null,"docomo":"E6F7","au":"E5D8","softbank":"E13F","google":"FE505","image":"1f6c0.png","sheet_x":37,"sheet_y":43,"short_name":"bath","short_names":["bath"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-resting","sort_order":485,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F6C0-1F3FB","non_qualified":null,"image":"1f6c0-1f3fb.png","sheet_x":37,"sheet_y":44,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F6C0-1F3FC","non_qualified":null,"image":"1f6c0-1f3fc.png","sheet_x":37,"sheet_y":45,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F6C0-1F3FD","non_qualified":null,"image":"1f6c0-1f3fd.png","sheet_x":37,"sheet_y":46,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F6C0-1F3FE","non_qualified":null,"image":"1f6c0-1f3fe.png","sheet_x":37,"sheet_y":47,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F6C0-1F3FF","non_qualified":null,"image":"1f6c0-1f3ff.png","sheet_x":37,"sheet_y":48,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"BATHTUB","unified":"1F6C1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6c1.png","sheet_x":37,"sheet_y":49,"short_name":"bathtub","short_names":["bathtub"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1360,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PASSPORT CONTROL","unified":"1F6C2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6c2.png","sheet_x":37,"sheet_y":50,"short_name":"passport_control","short_names":["passport_control"],"text":null,"texts":null,"category":"Symbols","subcategory":"transport-sign","sort_order":1393,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CUSTOMS","unified":"1F6C3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6c3.png","sheet_x":37,"sheet_y":51,"short_name":"customs","short_names":["customs"],"text":null,"texts":null,"category":"Symbols","subcategory":"transport-sign","sort_order":1394,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BAGGAGE CLAIM","unified":"1F6C4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6c4.png","sheet_x":37,"sheet_y":52,"short_name":"baggage_claim","short_names":["baggage_claim"],"text":null,"texts":null,"category":"Symbols","subcategory":"transport-sign","sort_order":1395,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LEFT LUGGAGE","unified":"1F6C5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6c5.png","sheet_x":37,"sheet_y":53,"short_name":"left_luggage","short_names":["left_luggage"],"text":null,"texts":null,"category":"Symbols","subcategory":"transport-sign","sort_order":1396,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"COUCH AND LAMP","unified":"1F6CB-FE0F","non_qualified":"1F6CB","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6cb-fe0f.png","sheet_x":37,"sheet_y":54,"short_name":"couch_and_lamp","short_names":["couch_and_lamp"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1355,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SLEEPING ACCOMMODATION","unified":"1F6CC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6cc.png","sheet_x":37,"sheet_y":55,"short_name":"sleeping_accommodation","short_names":["sleeping_accommodation"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-resting","sort_order":486,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F6CC-1F3FB","non_qualified":null,"image":"1f6cc-1f3fb.png","sheet_x":37,"sheet_y":56,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F6CC-1F3FC","non_qualified":null,"image":"1f6cc-1f3fc.png","sheet_x":37,"sheet_y":57,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F6CC-1F3FD","non_qualified":null,"image":"1f6cc-1f3fd.png","sheet_x":37,"sheet_y":58,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F6CC-1F3FE","non_qualified":null,"image":"1f6cc-1f3fe.png","sheet_x":37,"sheet_y":59,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F6CC-1F3FF","non_qualified":null,"image":"1f6cc-1f3ff.png","sheet_x":37,"sheet_y":60,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"SHOPPING BAGS","unified":"1F6CD-FE0F","non_qualified":"1F6CD","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6cd-fe0f.png","sheet_x":38,"sheet_y":0,"short_name":"shopping_bags","short_names":["shopping_bags"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1147,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BELLHOP BELL","unified":"1F6CE-FE0F","non_qualified":"1F6CE","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6ce-fe0f.png","sheet_x":38,"sheet_y":1,"short_name":"bellhop_bell","short_names":["bellhop_bell"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"hotel","sort_order":958,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BED","unified":"1F6CF-FE0F","non_qualified":"1F6CF","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6cf-fe0f.png","sheet_x":38,"sheet_y":2,"short_name":"bed","short_names":["bed"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1354,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PLACE OF WORSHIP","unified":"1F6D0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6d0.png","sheet_x":38,"sheet_y":3,"short_name":"place_of_worship","short_names":["place_of_worship"],"text":null,"texts":null,"category":"Symbols","subcategory":"religion","sort_order":1431,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"OCTAGONAL SIGN","unified":"1F6D1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6d1.png","sheet_x":38,"sheet_y":4,"short_name":"octagonal_sign","short_names":["octagonal_sign"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":934,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SHOPPING TROLLEY","unified":"1F6D2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6d2.png","sheet_x":38,"sheet_y":5,"short_name":"shopping_trolley","short_names":["shopping_trolley"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1374,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HINDU TEMPLE","unified":"1F6D5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6d5.png","sheet_x":38,"sheet_y":6,"short_name":"hindu_temple","short_names":["hindu_temple"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-religious","sort_order":865,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HUT","unified":"1F6D6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6d6.png","sheet_x":38,"sheet_y":7,"short_name":"hut","short_names":["hut"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":842,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ELEVATOR","unified":"1F6D7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6d7.png","sheet_x":38,"sheet_y":8,"short_name":"elevator","short_names":["elevator"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1351,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WIRELESS","unified":"1F6DC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6dc.png","sheet_x":38,"sheet_y":9,"short_name":"wireless","short_names":["wireless"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1479,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},{"name":"PLAYGROUND SLIDE","unified":"1F6DD","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6dd.png","sheet_x":38,"sheet_y":10,"short_name":"playground_slide","short_names":["playground_slide"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-other","sort_order":881,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WHEEL","unified":"1F6DE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6de.png","sheet_x":38,"sheet_y":11,"short_name":"wheel","short_names":["wheel"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":930,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RING BUOY","unified":"1F6DF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6df.png","sheet_x":38,"sheet_y":12,"short_name":"ring_buoy","short_names":["ring_buoy"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-water","sort_order":937,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HAMMER AND WRENCH","unified":"1F6E0-FE0F","non_qualified":"1F6E0","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e0-fe0f.png","sheet_x":38,"sheet_y":13,"short_name":"hammer_and_wrench","short_names":["hammer_and_wrench"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1315,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SHIELD","unified":"1F6E1-FE0F","non_qualified":"1F6E1","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e1-fe0f.png","sheet_x":38,"sheet_y":14,"short_name":"shield","short_names":["shield"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1321,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"OIL DRUM","unified":"1F6E2-FE0F","non_qualified":"1F6E2","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e2-fe0f.png","sheet_x":38,"sheet_y":15,"short_name":"oil_drum","short_names":["oil_drum"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":928,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MOTORWAY","unified":"1F6E3-FE0F","non_qualified":"1F6E3","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e3-fe0f.png","sheet_x":38,"sheet_y":16,"short_name":"motorway","short_names":["motorway"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":926,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RAILWAY TRACK","unified":"1F6E4-FE0F","non_qualified":"1F6E4","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e4-fe0f.png","sheet_x":38,"sheet_y":17,"short_name":"railway_track","short_names":["railway_track"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":927,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MOTOR BOAT","unified":"1F6E5-FE0F","non_qualified":"1F6E5","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e5-fe0f.png","sheet_x":38,"sheet_y":18,"short_name":"motor_boat","short_names":["motor_boat"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-water","sort_order":943,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SMALL AIRPLANE","unified":"1F6E9-FE0F","non_qualified":"1F6E9","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e9-fe0f.png","sheet_x":38,"sheet_y":19,"short_name":"small_airplane","short_names":["small_airplane"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-air","sort_order":946,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"AIRPLANE DEPARTURE","unified":"1F6EB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6eb.png","sheet_x":38,"sheet_y":20,"short_name":"airplane_departure","short_names":["airplane_departure"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-air","sort_order":947,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"AIRPLANE ARRIVING","unified":"1F6EC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6ec.png","sheet_x":38,"sheet_y":21,"short_name":"airplane_arriving","short_names":["airplane_arriving"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-air","sort_order":948,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SATELLITE","unified":"1F6F0-FE0F","non_qualified":"1F6F0","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6f0-fe0f.png","sheet_x":38,"sheet_y":22,"short_name":"satellite","short_names":["satellite"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-air","sort_order":955,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PASSENGER SHIP","unified":"1F6F3-FE0F","non_qualified":"1F6F3","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6f3-fe0f.png","sheet_x":38,"sheet_y":23,"short_name":"passenger_ship","short_names":["passenger_ship"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-water","sort_order":941,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SCOOTER","unified":"1F6F4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6f4.png","sheet_x":38,"sheet_y":24,"short_name":"scooter","short_names":["scooter"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":922,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MOTOR SCOOTER","unified":"1F6F5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6f5.png","sheet_x":38,"sheet_y":25,"short_name":"motor_scooter","short_names":["motor_scooter"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":917,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CANOE","unified":"1F6F6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6f6.png","sheet_x":38,"sheet_y":26,"short_name":"canoe","short_names":["canoe"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-water","sort_order":939,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SLED","unified":"1F6F7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6f7.png","sheet_x":38,"sheet_y":27,"short_name":"sled","short_names":["sled"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1090,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FLYING SAUCER","unified":"1F6F8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6f8.png","sheet_x":38,"sheet_y":28,"short_name":"flying_saucer","short_names":["flying_saucer"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-air","sort_order":957,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SKATEBOARD","unified":"1F6F9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6f9.png","sheet_x":38,"sheet_y":29,"short_name":"skateboard","short_names":["skateboard"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":923,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"AUTO RICKSHAW","unified":"1F6FA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6fa.png","sheet_x":38,"sheet_y":30,"short_name":"auto_rickshaw","short_names":["auto_rickshaw"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":920,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PICKUP TRUCK","unified":"1F6FB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6fb.png","sheet_x":38,"sheet_y":31,"short_name":"pickup_truck","short_names":["pickup_truck"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":911,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ROLLER SKATE","unified":"1F6FC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6fc.png","sheet_x":38,"sheet_y":32,"short_name":"roller_skate","short_names":["roller_skate"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":924,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LARGE ORANGE CIRCLE","unified":"1F7E0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f7e0.png","sheet_x":38,"sheet_y":33,"short_name":"large_orange_circle","short_names":["large_orange_circle"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1574,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LARGE YELLOW CIRCLE","unified":"1F7E1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f7e1.png","sheet_x":38,"sheet_y":34,"short_name":"large_yellow_circle","short_names":["large_yellow_circle"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1575,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LARGE GREEN CIRCLE","unified":"1F7E2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f7e2.png","sheet_x":38,"sheet_y":35,"short_name":"large_green_circle","short_names":["large_green_circle"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1576,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LARGE PURPLE CIRCLE","unified":"1F7E3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f7e3.png","sheet_x":38,"sheet_y":36,"short_name":"large_purple_circle","short_names":["large_purple_circle"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1578,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LARGE BROWN CIRCLE","unified":"1F7E4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f7e4.png","sheet_x":38,"sheet_y":37,"short_name":"large_brown_circle","short_names":["large_brown_circle"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1579,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LARGE RED SQUARE","unified":"1F7E5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f7e5.png","sheet_x":38,"sheet_y":38,"short_name":"large_red_square","short_names":["large_red_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1582,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LARGE BLUE SQUARE","unified":"1F7E6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f7e6.png","sheet_x":38,"sheet_y":39,"short_name":"large_blue_square","short_names":["large_blue_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1586,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LARGE ORANGE SQUARE","unified":"1F7E7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f7e7.png","sheet_x":38,"sheet_y":40,"short_name":"large_orange_square","short_names":["large_orange_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1583,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LARGE YELLOW SQUARE","unified":"1F7E8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f7e8.png","sheet_x":38,"sheet_y":41,"short_name":"large_yellow_square","short_names":["large_yellow_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1584,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LARGE GREEN SQUARE","unified":"1F7E9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f7e9.png","sheet_x":38,"sheet_y":42,"short_name":"large_green_square","short_names":["large_green_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1585,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LARGE PURPLE SQUARE","unified":"1F7EA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f7ea.png","sheet_x":38,"sheet_y":43,"short_name":"large_purple_square","short_names":["large_purple_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1587,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LARGE BROWN SQUARE","unified":"1F7EB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f7eb.png","sheet_x":38,"sheet_y":44,"short_name":"large_brown_square","short_names":["large_brown_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1588,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HEAVY EQUALS SIGN","unified":"1F7F0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f7f0.png","sheet_x":38,"sheet_y":45,"short_name":"heavy_equals_sign","short_names":["heavy_equals_sign"],"text":null,"texts":null,"category":"Symbols","subcategory":"math","sort_order":1489,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PINCHED FINGERS","unified":"1F90C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f90c.png","sheet_x":38,"sheet_y":46,"short_name":"pinched_fingers","short_names":["pinched_fingers"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-partial","sort_order":179,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F90C-1F3FB","non_qualified":null,"image":"1f90c-1f3fb.png","sheet_x":38,"sheet_y":47,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F90C-1F3FC","non_qualified":null,"image":"1f90c-1f3fc.png","sheet_x":38,"sheet_y":48,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F90C-1F3FD","non_qualified":null,"image":"1f90c-1f3fd.png","sheet_x":38,"sheet_y":49,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F90C-1F3FE","non_qualified":null,"image":"1f90c-1f3fe.png","sheet_x":38,"sheet_y":50,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F90C-1F3FF","non_qualified":null,"image":"1f90c-1f3ff.png","sheet_x":38,"sheet_y":51,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WHITE HEART","unified":"1F90D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f90d.png","sheet_x":38,"sheet_y":52,"short_name":"white_heart","short_names":["white_heart"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":152,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BROWN HEART","unified":"1F90E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f90e.png","sheet_x":38,"sheet_y":53,"short_name":"brown_heart","short_names":["brown_heart"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":149,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PINCHING HAND","unified":"1F90F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f90f.png","sheet_x":38,"sheet_y":54,"short_name":"pinching_hand","short_names":["pinching_hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-partial","sort_order":180,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F90F-1F3FB","non_qualified":null,"image":"1f90f-1f3fb.png","sheet_x":38,"sheet_y":55,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F90F-1F3FC","non_qualified":null,"image":"1f90f-1f3fc.png","sheet_x":38,"sheet_y":56,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F90F-1F3FD","non_qualified":null,"image":"1f90f-1f3fd.png","sheet_x":38,"sheet_y":57,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F90F-1F3FE","non_qualified":null,"image":"1f90f-1f3fe.png","sheet_x":38,"sheet_y":58,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F90F-1F3FF","non_qualified":null,"image":"1f90f-1f3ff.png","sheet_x":38,"sheet_y":59,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"ZIPPER-MOUTH FACE","unified":"1F910","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f910.png","sheet_x":38,"sheet_y":60,"short_name":"zipper_mouth_face","short_names":["zipper_mouth_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":37,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MONEY-MOUTH FACE","unified":"1F911","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f911.png","sheet_x":39,"sheet_y":0,"short_name":"money_mouth_face","short_names":["money_mouth_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-tongue","sort_order":29,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE WITH THERMOMETER","unified":"1F912","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f912.png","sheet_x":39,"sheet_y":1,"short_name":"face_with_thermometer","short_names":["face_with_thermometer"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-unwell","sort_order":57,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NERD FACE","unified":"1F913","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f913.png","sheet_x":39,"sheet_y":2,"short_name":"nerd_face","short_names":["nerd_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-glasses","sort_order":72,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"THINKING FACE","unified":"1F914","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f914.png","sheet_x":39,"sheet_y":3,"short_name":"thinking_face","short_names":["thinking_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-hand","sort_order":35,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE WITH HEAD-BANDAGE","unified":"1F915","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f915.png","sheet_x":39,"sheet_y":4,"short_name":"face_with_head_bandage","short_names":["face_with_head_bandage"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-unwell","sort_order":58,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ROBOT FACE","unified":"1F916","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f916.png","sheet_x":39,"sheet_y":5,"short_name":"robot_face","short_names":["robot_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-costume","sort_order":115,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HUGGING FACE","unified":"1F917","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f917.png","sheet_x":39,"sheet_y":6,"short_name":"hugging_face","short_names":["hugging_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-hand","sort_order":30,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SIGN OF THE HORNS","unified":"1F918","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f918.png","sheet_x":39,"sheet_y":7,"short_name":"the_horns","short_names":["the_horns","sign_of_the_horns"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-partial","sort_order":185,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F918-1F3FB","non_qualified":null,"image":"1f918-1f3fb.png","sheet_x":39,"sheet_y":8,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F918-1F3FC","non_qualified":null,"image":"1f918-1f3fc.png","sheet_x":39,"sheet_y":9,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F918-1F3FD","non_qualified":null,"image":"1f918-1f3fd.png","sheet_x":39,"sheet_y":10,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F918-1F3FE","non_qualified":null,"image":"1f918-1f3fe.png","sheet_x":39,"sheet_y":11,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F918-1F3FF","non_qualified":null,"image":"1f918-1f3ff.png","sheet_x":39,"sheet_y":12,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"CALL ME HAND","unified":"1F919","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f919.png","sheet_x":39,"sheet_y":13,"short_name":"call_me_hand","short_names":["call_me_hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-partial","sort_order":186,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F919-1F3FB","non_qualified":null,"image":"1f919-1f3fb.png","sheet_x":39,"sheet_y":14,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F919-1F3FC","non_qualified":null,"image":"1f919-1f3fc.png","sheet_x":39,"sheet_y":15,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F919-1F3FD","non_qualified":null,"image":"1f919-1f3fd.png","sheet_x":39,"sheet_y":16,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F919-1F3FE","non_qualified":null,"image":"1f919-1f3fe.png","sheet_x":39,"sheet_y":17,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F919-1F3FF","non_qualified":null,"image":"1f919-1f3ff.png","sheet_x":39,"sheet_y":18,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"RAISED BACK OF HAND","unified":"1F91A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f91a.png","sheet_x":39,"sheet_y":19,"short_name":"raised_back_of_hand","short_names":["raised_back_of_hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-open","sort_order":168,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F91A-1F3FB","non_qualified":null,"image":"1f91a-1f3fb.png","sheet_x":39,"sheet_y":20,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F91A-1F3FC","non_qualified":null,"image":"1f91a-1f3fc.png","sheet_x":39,"sheet_y":21,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F91A-1F3FD","non_qualified":null,"image":"1f91a-1f3fd.png","sheet_x":39,"sheet_y":22,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F91A-1F3FE","non_qualified":null,"image":"1f91a-1f3fe.png","sheet_x":39,"sheet_y":23,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F91A-1F3FF","non_qualified":null,"image":"1f91a-1f3ff.png","sheet_x":39,"sheet_y":24,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"LEFT-FACING FIST","unified":"1F91B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f91b.png","sheet_x":39,"sheet_y":25,"short_name":"left-facing_fist","short_names":["left-facing_fist"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-closed","sort_order":198,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F91B-1F3FB","non_qualified":null,"image":"1f91b-1f3fb.png","sheet_x":39,"sheet_y":26,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F91B-1F3FC","non_qualified":null,"image":"1f91b-1f3fc.png","sheet_x":39,"sheet_y":27,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F91B-1F3FD","non_qualified":null,"image":"1f91b-1f3fd.png","sheet_x":39,"sheet_y":28,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F91B-1F3FE","non_qualified":null,"image":"1f91b-1f3fe.png","sheet_x":39,"sheet_y":29,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F91B-1F3FF","non_qualified":null,"image":"1f91b-1f3ff.png","sheet_x":39,"sheet_y":30,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"RIGHT-FACING FIST","unified":"1F91C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f91c.png","sheet_x":39,"sheet_y":31,"short_name":"right-facing_fist","short_names":["right-facing_fist"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-closed","sort_order":199,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F91C-1F3FB","non_qualified":null,"image":"1f91c-1f3fb.png","sheet_x":39,"sheet_y":32,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F91C-1F3FC","non_qualified":null,"image":"1f91c-1f3fc.png","sheet_x":39,"sheet_y":33,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F91C-1F3FD","non_qualified":null,"image":"1f91c-1f3fd.png","sheet_x":39,"sheet_y":34,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F91C-1F3FE","non_qualified":null,"image":"1f91c-1f3fe.png","sheet_x":39,"sheet_y":35,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F91C-1F3FF","non_qualified":null,"image":"1f91c-1f3ff.png","sheet_x":39,"sheet_y":36,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"HANDSHAKE","unified":"1F91D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f91d.png","sheet_x":39,"sheet_y":37,"short_name":"handshake","short_names":["handshake"],"text":null,"texts":null,"category":"People & Body","subcategory":"hands","sort_order":205,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F91D-1F3FB","non_qualified":null,"image":"1f91d-1f3fb.png","sheet_x":39,"sheet_y":38,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F91D-1F3FC","non_qualified":null,"image":"1f91d-1f3fc.png","sheet_x":39,"sheet_y":39,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F91D-1F3FD","non_qualified":null,"image":"1f91d-1f3fd.png","sheet_x":39,"sheet_y":40,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F91D-1F3FE","non_qualified":null,"image":"1f91d-1f3fe.png","sheet_x":39,"sheet_y":41,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F91D-1F3FF","non_qualified":null,"image":"1f91d-1f3ff.png","sheet_x":39,"sheet_y":42,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FB-1F3FC":{"unified":"1FAF1-1F3FB-200D-1FAF2-1F3FC","non_qualified":null,"image":"1faf1-1f3fb-200d-1faf2-1f3fc.png","sheet_x":39,"sheet_y":43,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FD":{"unified":"1FAF1-1F3FB-200D-1FAF2-1F3FD","non_qualified":null,"image":"1faf1-1f3fb-200d-1faf2-1f3fd.png","sheet_x":39,"sheet_y":44,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FE":{"unified":"1FAF1-1F3FB-200D-1FAF2-1F3FE","non_qualified":null,"image":"1faf1-1f3fb-200d-1faf2-1f3fe.png","sheet_x":39,"sheet_y":45,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FF":{"unified":"1FAF1-1F3FB-200D-1FAF2-1F3FF","non_qualified":null,"image":"1faf1-1f3fb-200d-1faf2-1f3ff.png","sheet_x":39,"sheet_y":46,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FB":{"unified":"1FAF1-1F3FC-200D-1FAF2-1F3FB","non_qualified":null,"image":"1faf1-1f3fc-200d-1faf2-1f3fb.png","sheet_x":39,"sheet_y":47,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FD":{"unified":"1FAF1-1F3FC-200D-1FAF2-1F3FD","non_qualified":null,"image":"1faf1-1f3fc-200d-1faf2-1f3fd.png","sheet_x":39,"sheet_y":48,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FE":{"unified":"1FAF1-1F3FC-200D-1FAF2-1F3FE","non_qualified":null,"image":"1faf1-1f3fc-200d-1faf2-1f3fe.png","sheet_x":39,"sheet_y":49,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FF":{"unified":"1FAF1-1F3FC-200D-1FAF2-1F3FF","non_qualified":null,"image":"1faf1-1f3fc-200d-1faf2-1f3ff.png","sheet_x":39,"sheet_y":50,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FB":{"unified":"1FAF1-1F3FD-200D-1FAF2-1F3FB","non_qualified":null,"image":"1faf1-1f3fd-200d-1faf2-1f3fb.png","sheet_x":39,"sheet_y":51,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FC":{"unified":"1FAF1-1F3FD-200D-1FAF2-1F3FC","non_qualified":null,"image":"1faf1-1f3fd-200d-1faf2-1f3fc.png","sheet_x":39,"sheet_y":52,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FE":{"unified":"1FAF1-1F3FD-200D-1FAF2-1F3FE","non_qualified":null,"image":"1faf1-1f3fd-200d-1faf2-1f3fe.png","sheet_x":39,"sheet_y":53,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FF":{"unified":"1FAF1-1F3FD-200D-1FAF2-1F3FF","non_qualified":null,"image":"1faf1-1f3fd-200d-1faf2-1f3ff.png","sheet_x":39,"sheet_y":54,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FB":{"unified":"1FAF1-1F3FE-200D-1FAF2-1F3FB","non_qualified":null,"image":"1faf1-1f3fe-200d-1faf2-1f3fb.png","sheet_x":39,"sheet_y":55,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FC":{"unified":"1FAF1-1F3FE-200D-1FAF2-1F3FC","non_qualified":null,"image":"1faf1-1f3fe-200d-1faf2-1f3fc.png","sheet_x":39,"sheet_y":56,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FD":{"unified":"1FAF1-1F3FE-200D-1FAF2-1F3FD","non_qualified":null,"image":"1faf1-1f3fe-200d-1faf2-1f3fd.png","sheet_x":39,"sheet_y":57,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FF":{"unified":"1FAF1-1F3FE-200D-1FAF2-1F3FF","non_qualified":null,"image":"1faf1-1f3fe-200d-1faf2-1f3ff.png","sheet_x":39,"sheet_y":58,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FB":{"unified":"1FAF1-1F3FF-200D-1FAF2-1F3FB","non_qualified":null,"image":"1faf1-1f3ff-200d-1faf2-1f3fb.png","sheet_x":39,"sheet_y":59,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FC":{"unified":"1FAF1-1F3FF-200D-1FAF2-1F3FC","non_qualified":null,"image":"1faf1-1f3ff-200d-1faf2-1f3fc.png","sheet_x":39,"sheet_y":60,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FD":{"unified":"1FAF1-1F3FF-200D-1FAF2-1F3FD","non_qualified":null,"image":"1faf1-1f3ff-200d-1faf2-1f3fd.png","sheet_x":40,"sheet_y":0,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FE":{"unified":"1FAF1-1F3FF-200D-1FAF2-1F3FE","non_qualified":null,"image":"1faf1-1f3ff-200d-1faf2-1f3fe.png","sheet_x":40,"sheet_y":1,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false}}},{"name":"HAND WITH INDEX AND MIDDLE FINGERS CROSSED","unified":"1F91E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f91e.png","sheet_x":40,"sheet_y":2,"short_name":"crossed_fingers","short_names":["crossed_fingers","hand_with_index_and_middle_fingers_crossed"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-partial","sort_order":182,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F91E-1F3FB","non_qualified":null,"image":"1f91e-1f3fb.png","sheet_x":40,"sheet_y":3,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F91E-1F3FC","non_qualified":null,"image":"1f91e-1f3fc.png","sheet_x":40,"sheet_y":4,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F91E-1F3FD","non_qualified":null,"image":"1f91e-1f3fd.png","sheet_x":40,"sheet_y":5,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F91E-1F3FE","non_qualified":null,"image":"1f91e-1f3fe.png","sheet_x":40,"sheet_y":6,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F91E-1F3FF","non_qualified":null,"image":"1f91e-1f3ff.png","sheet_x":40,"sheet_y":7,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"I LOVE YOU HAND SIGN","unified":"1F91F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f91f.png","sheet_x":40,"sheet_y":8,"short_name":"i_love_you_hand_sign","short_names":["i_love_you_hand_sign"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-partial","sort_order":184,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F91F-1F3FB","non_qualified":null,"image":"1f91f-1f3fb.png","sheet_x":40,"sheet_y":9,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F91F-1F3FC","non_qualified":null,"image":"1f91f-1f3fc.png","sheet_x":40,"sheet_y":10,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F91F-1F3FD","non_qualified":null,"image":"1f91f-1f3fd.png","sheet_x":40,"sheet_y":11,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F91F-1F3FE","non_qualified":null,"image":"1f91f-1f3fe.png","sheet_x":40,"sheet_y":12,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F91F-1F3FF","non_qualified":null,"image":"1f91f-1f3ff.png","sheet_x":40,"sheet_y":13,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"FACE WITH COWBOY HAT","unified":"1F920","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f920.png","sheet_x":40,"sheet_y":14,"short_name":"face_with_cowboy_hat","short_names":["face_with_cowboy_hat"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-hat","sort_order":68,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOWN FACE","unified":"1F921","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f921.png","sheet_x":40,"sheet_y":15,"short_name":"clown_face","short_names":["clown_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-costume","sort_order":109,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NAUSEATED FACE","unified":"1F922","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f922.png","sheet_x":40,"sheet_y":16,"short_name":"nauseated_face","short_names":["nauseated_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-unwell","sort_order":59,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ROLLING ON THE FLOOR LAUGHING","unified":"1F923","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f923.png","sheet_x":40,"sheet_y":17,"short_name":"rolling_on_the_floor_laughing","short_names":["rolling_on_the_floor_laughing"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-smiling","sort_order":7,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DROOLING FACE","unified":"1F924","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f924.png","sheet_x":40,"sheet_y":18,"short_name":"drooling_face","short_names":["drooling_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-sleepy","sort_order":54,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LYING FACE","unified":"1F925","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f925.png","sheet_x":40,"sheet_y":19,"short_name":"lying_face","short_names":["lying_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":49,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WOMAN FACEPALMING","unified":"1F926-200D-2640-FE0F","non_qualified":"1F926-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f926-200d-2640-fe0f.png","sheet_x":40,"sheet_y":20,"short_name":"woman-facepalming","short_names":["woman-facepalming"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":282,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F926-1F3FB-200D-2640-FE0F","non_qualified":"1F926-1F3FB-200D-2640","image":"1f926-1f3fb-200d-2640-fe0f.png","sheet_x":40,"sheet_y":21,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F926-1F3FC-200D-2640-FE0F","non_qualified":"1F926-1F3FC-200D-2640","image":"1f926-1f3fc-200d-2640-fe0f.png","sheet_x":40,"sheet_y":22,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F926-1F3FD-200D-2640-FE0F","non_qualified":"1F926-1F3FD-200D-2640","image":"1f926-1f3fd-200d-2640-fe0f.png","sheet_x":40,"sheet_y":23,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F926-1F3FE-200D-2640-FE0F","non_qualified":"1F926-1F3FE-200D-2640","image":"1f926-1f3fe-200d-2640-fe0f.png","sheet_x":40,"sheet_y":24,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F926-1F3FF-200D-2640-FE0F","non_qualified":"1F926-1F3FF-200D-2640","image":"1f926-1f3ff-200d-2640-fe0f.png","sheet_x":40,"sheet_y":25,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN FACEPALMING","unified":"1F926-200D-2642-FE0F","non_qualified":"1F926-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f926-200d-2642-fe0f.png","sheet_x":40,"sheet_y":26,"short_name":"man-facepalming","short_names":["man-facepalming"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":281,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F926-1F3FB-200D-2642-FE0F","non_qualified":"1F926-1F3FB-200D-2642","image":"1f926-1f3fb-200d-2642-fe0f.png","sheet_x":40,"sheet_y":27,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F926-1F3FC-200D-2642-FE0F","non_qualified":"1F926-1F3FC-200D-2642","image":"1f926-1f3fc-200d-2642-fe0f.png","sheet_x":40,"sheet_y":28,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F926-1F3FD-200D-2642-FE0F","non_qualified":"1F926-1F3FD-200D-2642","image":"1f926-1f3fd-200d-2642-fe0f.png","sheet_x":40,"sheet_y":29,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F926-1F3FE-200D-2642-FE0F","non_qualified":"1F926-1F3FE-200D-2642","image":"1f926-1f3fe-200d-2642-fe0f.png","sheet_x":40,"sheet_y":30,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F926-1F3FF-200D-2642-FE0F","non_qualified":"1F926-1F3FF-200D-2642","image":"1f926-1f3ff-200d-2642-fe0f.png","sheet_x":40,"sheet_y":31,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"FACE PALM","unified":"1F926","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f926.png","sheet_x":40,"sheet_y":32,"short_name":"face_palm","short_names":["face_palm"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":280,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F926-1F3FB","non_qualified":null,"image":"1f926-1f3fb.png","sheet_x":40,"sheet_y":33,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F926-1F3FC","non_qualified":null,"image":"1f926-1f3fc.png","sheet_x":40,"sheet_y":34,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F926-1F3FD","non_qualified":null,"image":"1f926-1f3fd.png","sheet_x":40,"sheet_y":35,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F926-1F3FE","non_qualified":null,"image":"1f926-1f3fe.png","sheet_x":40,"sheet_y":36,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F926-1F3FF","non_qualified":null,"image":"1f926-1f3ff.png","sheet_x":40,"sheet_y":37,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"SNEEZING FACE","unified":"1F927","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f927.png","sheet_x":40,"sheet_y":38,"short_name":"sneezing_face","short_names":["sneezing_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-unwell","sort_order":61,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE WITH ONE EYEBROW RAISED","unified":"1F928","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f928.png","sheet_x":40,"sheet_y":39,"short_name":"face_with_raised_eyebrow","short_names":["face_with_raised_eyebrow","face_with_one_eyebrow_raised"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":38,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GRINNING FACE WITH STAR EYES","unified":"1F929","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f929.png","sheet_x":40,"sheet_y":40,"short_name":"star-struck","short_names":["star-struck","grinning_face_with_star_eyes"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-affection","sort_order":17,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GRINNING FACE WITH ONE LARGE AND ONE SMALL EYE","unified":"1F92A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f92a.png","sheet_x":40,"sheet_y":41,"short_name":"zany_face","short_names":["zany_face","grinning_face_with_one_large_and_one_small_eye"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-tongue","sort_order":27,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE WITH FINGER COVERING CLOSED LIPS","unified":"1F92B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f92b.png","sheet_x":40,"sheet_y":42,"short_name":"shushing_face","short_names":["shushing_face","face_with_finger_covering_closed_lips"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-hand","sort_order":34,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SERIOUS FACE WITH SYMBOLS COVERING MOUTH","unified":"1F92C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f92c.png","sheet_x":40,"sheet_y":43,"short_name":"face_with_symbols_on_mouth","short_names":["face_with_symbols_on_mouth","serious_face_with_symbols_covering_mouth"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-negative","sort_order":103,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SMILING FACE WITH SMILING EYES AND HAND COVERING MOUTH","unified":"1F92D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f92d.png","sheet_x":40,"sheet_y":44,"short_name":"face_with_hand_over_mouth","short_names":["face_with_hand_over_mouth","smiling_face_with_smiling_eyes_and_hand_covering_mouth"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-hand","sort_order":31,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE WITH OPEN MOUTH VOMITING","unified":"1F92E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f92e.png","sheet_x":40,"sheet_y":45,"short_name":"face_vomiting","short_names":["face_vomiting","face_with_open_mouth_vomiting"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-unwell","sort_order":60,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SHOCKED FACE WITH EXPLODING HEAD","unified":"1F92F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f92f.png","sheet_x":40,"sheet_y":46,"short_name":"exploding_head","short_names":["exploding_head","shocked_face_with_exploding_head"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-unwell","sort_order":67,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PREGNANT WOMAN","unified":"1F930","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f930.png","sheet_x":40,"sheet_y":47,"short_name":"pregnant_woman","short_names":["pregnant_woman"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":361,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F930-1F3FB","non_qualified":null,"image":"1f930-1f3fb.png","sheet_x":40,"sheet_y":48,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F930-1F3FC","non_qualified":null,"image":"1f930-1f3fc.png","sheet_x":40,"sheet_y":49,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F930-1F3FD","non_qualified":null,"image":"1f930-1f3fd.png","sheet_x":40,"sheet_y":50,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F930-1F3FE","non_qualified":null,"image":"1f930-1f3fe.png","sheet_x":40,"sheet_y":51,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F930-1F3FF","non_qualified":null,"image":"1f930-1f3ff.png","sheet_x":40,"sheet_y":52,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"BREAST-FEEDING","unified":"1F931","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f931.png","sheet_x":40,"sheet_y":53,"short_name":"breast-feeding","short_names":["breast-feeding"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":364,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F931-1F3FB","non_qualified":null,"image":"1f931-1f3fb.png","sheet_x":40,"sheet_y":54,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F931-1F3FC","non_qualified":null,"image":"1f931-1f3fc.png","sheet_x":40,"sheet_y":55,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F931-1F3FD","non_qualified":null,"image":"1f931-1f3fd.png","sheet_x":40,"sheet_y":56,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F931-1F3FE","non_qualified":null,"image":"1f931-1f3fe.png","sheet_x":40,"sheet_y":57,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F931-1F3FF","non_qualified":null,"image":"1f931-1f3ff.png","sheet_x":40,"sheet_y":58,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"PALMS UP TOGETHER","unified":"1F932","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f932.png","sheet_x":40,"sheet_y":59,"short_name":"palms_up_together","short_names":["palms_up_together"],"text":null,"texts":null,"category":"People & Body","subcategory":"hands","sort_order":204,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F932-1F3FB","non_qualified":null,"image":"1f932-1f3fb.png","sheet_x":40,"sheet_y":60,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F932-1F3FC","non_qualified":null,"image":"1f932-1f3fc.png","sheet_x":41,"sheet_y":0,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F932-1F3FD","non_qualified":null,"image":"1f932-1f3fd.png","sheet_x":41,"sheet_y":1,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F932-1F3FE","non_qualified":null,"image":"1f932-1f3fe.png","sheet_x":41,"sheet_y":2,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F932-1F3FF","non_qualified":null,"image":"1f932-1f3ff.png","sheet_x":41,"sheet_y":3,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"SELFIE","unified":"1F933","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f933.png","sheet_x":41,"sheet_y":4,"short_name":"selfie","short_names":["selfie"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-prop","sort_order":209,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F933-1F3FB","non_qualified":null,"image":"1f933-1f3fb.png","sheet_x":41,"sheet_y":5,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F933-1F3FC","non_qualified":null,"image":"1f933-1f3fc.png","sheet_x":41,"sheet_y":6,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F933-1F3FD","non_qualified":null,"image":"1f933-1f3fd.png","sheet_x":41,"sheet_y":7,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F933-1F3FE","non_qualified":null,"image":"1f933-1f3fe.png","sheet_x":41,"sheet_y":8,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F933-1F3FF","non_qualified":null,"image":"1f933-1f3ff.png","sheet_x":41,"sheet_y":9,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"PRINCE","unified":"1F934","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f934.png","sheet_x":41,"sheet_y":10,"short_name":"prince","short_names":["prince"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":348,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F934-1F3FB","non_qualified":null,"image":"1f934-1f3fb.png","sheet_x":41,"sheet_y":11,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F934-1F3FC","non_qualified":null,"image":"1f934-1f3fc.png","sheet_x":41,"sheet_y":12,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F934-1F3FD","non_qualified":null,"image":"1f934-1f3fd.png","sheet_x":41,"sheet_y":13,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F934-1F3FE","non_qualified":null,"image":"1f934-1f3fe.png","sheet_x":41,"sheet_y":14,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F934-1F3FF","non_qualified":null,"image":"1f934-1f3ff.png","sheet_x":41,"sheet_y":15,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN IN TUXEDO","unified":"1F935-200D-2640-FE0F","non_qualified":"1F935-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f935-200d-2640-fe0f.png","sheet_x":41,"sheet_y":16,"short_name":"woman_in_tuxedo","short_names":["woman_in_tuxedo"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":357,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F935-1F3FB-200D-2640-FE0F","non_qualified":"1F935-1F3FB-200D-2640","image":"1f935-1f3fb-200d-2640-fe0f.png","sheet_x":41,"sheet_y":17,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F935-1F3FC-200D-2640-FE0F","non_qualified":"1F935-1F3FC-200D-2640","image":"1f935-1f3fc-200d-2640-fe0f.png","sheet_x":41,"sheet_y":18,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F935-1F3FD-200D-2640-FE0F","non_qualified":"1F935-1F3FD-200D-2640","image":"1f935-1f3fd-200d-2640-fe0f.png","sheet_x":41,"sheet_y":19,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F935-1F3FE-200D-2640-FE0F","non_qualified":"1F935-1F3FE-200D-2640","image":"1f935-1f3fe-200d-2640-fe0f.png","sheet_x":41,"sheet_y":20,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F935-1F3FF-200D-2640-FE0F","non_qualified":"1F935-1F3FF-200D-2640","image":"1f935-1f3ff-200d-2640-fe0f.png","sheet_x":41,"sheet_y":21,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN IN TUXEDO","unified":"1F935-200D-2642-FE0F","non_qualified":"1F935-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f935-200d-2642-fe0f.png","sheet_x":41,"sheet_y":22,"short_name":"man_in_tuxedo","short_names":["man_in_tuxedo"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":356,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F935-1F3FB-200D-2642-FE0F","non_qualified":"1F935-1F3FB-200D-2642","image":"1f935-1f3fb-200d-2642-fe0f.png","sheet_x":41,"sheet_y":23,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F935-1F3FC-200D-2642-FE0F","non_qualified":"1F935-1F3FC-200D-2642","image":"1f935-1f3fc-200d-2642-fe0f.png","sheet_x":41,"sheet_y":24,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F935-1F3FD-200D-2642-FE0F","non_qualified":"1F935-1F3FD-200D-2642","image":"1f935-1f3fd-200d-2642-fe0f.png","sheet_x":41,"sheet_y":25,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F935-1F3FE-200D-2642-FE0F","non_qualified":"1F935-1F3FE-200D-2642","image":"1f935-1f3fe-200d-2642-fe0f.png","sheet_x":41,"sheet_y":26,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F935-1F3FF-200D-2642-FE0F","non_qualified":"1F935-1F3FF-200D-2642","image":"1f935-1f3ff-200d-2642-fe0f.png","sheet_x":41,"sheet_y":27,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN IN TUXEDO","unified":"1F935","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f935.png","sheet_x":41,"sheet_y":28,"short_name":"person_in_tuxedo","short_names":["person_in_tuxedo"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":355,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F935-1F3FB","non_qualified":null,"image":"1f935-1f3fb.png","sheet_x":41,"sheet_y":29,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F935-1F3FC","non_qualified":null,"image":"1f935-1f3fc.png","sheet_x":41,"sheet_y":30,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F935-1F3FD","non_qualified":null,"image":"1f935-1f3fd.png","sheet_x":41,"sheet_y":31,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F935-1F3FE","non_qualified":null,"image":"1f935-1f3fe.png","sheet_x":41,"sheet_y":32,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F935-1F3FF","non_qualified":null,"image":"1f935-1f3ff.png","sheet_x":41,"sheet_y":33,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MOTHER CHRISTMAS","unified":"1F936","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f936.png","sheet_x":41,"sheet_y":34,"short_name":"mrs_claus","short_names":["mrs_claus","mother_christmas"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":370,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F936-1F3FB","non_qualified":null,"image":"1f936-1f3fb.png","sheet_x":41,"sheet_y":35,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F936-1F3FC","non_qualified":null,"image":"1f936-1f3fc.png","sheet_x":41,"sheet_y":36,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F936-1F3FD","non_qualified":null,"image":"1f936-1f3fd.png","sheet_x":41,"sheet_y":37,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F936-1F3FE","non_qualified":null,"image":"1f936-1f3fe.png","sheet_x":41,"sheet_y":38,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F936-1F3FF","non_qualified":null,"image":"1f936-1f3ff.png","sheet_x":41,"sheet_y":39,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN SHRUGGING","unified":"1F937-200D-2640-FE0F","non_qualified":"1F937-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f937-200d-2640-fe0f.png","sheet_x":41,"sheet_y":40,"short_name":"woman-shrugging","short_names":["woman-shrugging"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":285,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F937-1F3FB-200D-2640-FE0F","non_qualified":"1F937-1F3FB-200D-2640","image":"1f937-1f3fb-200d-2640-fe0f.png","sheet_x":41,"sheet_y":41,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F937-1F3FC-200D-2640-FE0F","non_qualified":"1F937-1F3FC-200D-2640","image":"1f937-1f3fc-200d-2640-fe0f.png","sheet_x":41,"sheet_y":42,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F937-1F3FD-200D-2640-FE0F","non_qualified":"1F937-1F3FD-200D-2640","image":"1f937-1f3fd-200d-2640-fe0f.png","sheet_x":41,"sheet_y":43,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F937-1F3FE-200D-2640-FE0F","non_qualified":"1F937-1F3FE-200D-2640","image":"1f937-1f3fe-200d-2640-fe0f.png","sheet_x":41,"sheet_y":44,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F937-1F3FF-200D-2640-FE0F","non_qualified":"1F937-1F3FF-200D-2640","image":"1f937-1f3ff-200d-2640-fe0f.png","sheet_x":41,"sheet_y":45,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN SHRUGGING","unified":"1F937-200D-2642-FE0F","non_qualified":"1F937-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f937-200d-2642-fe0f.png","sheet_x":41,"sheet_y":46,"short_name":"man-shrugging","short_names":["man-shrugging"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":284,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F937-1F3FB-200D-2642-FE0F","non_qualified":"1F937-1F3FB-200D-2642","image":"1f937-1f3fb-200d-2642-fe0f.png","sheet_x":41,"sheet_y":47,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F937-1F3FC-200D-2642-FE0F","non_qualified":"1F937-1F3FC-200D-2642","image":"1f937-1f3fc-200d-2642-fe0f.png","sheet_x":41,"sheet_y":48,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F937-1F3FD-200D-2642-FE0F","non_qualified":"1F937-1F3FD-200D-2642","image":"1f937-1f3fd-200d-2642-fe0f.png","sheet_x":41,"sheet_y":49,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F937-1F3FE-200D-2642-FE0F","non_qualified":"1F937-1F3FE-200D-2642","image":"1f937-1f3fe-200d-2642-fe0f.png","sheet_x":41,"sheet_y":50,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F937-1F3FF-200D-2642-FE0F","non_qualified":"1F937-1F3FF-200D-2642","image":"1f937-1f3ff-200d-2642-fe0f.png","sheet_x":41,"sheet_y":51,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"SHRUG","unified":"1F937","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f937.png","sheet_x":41,"sheet_y":52,"short_name":"shrug","short_names":["shrug"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":283,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F937-1F3FB","non_qualified":null,"image":"1f937-1f3fb.png","sheet_x":41,"sheet_y":53,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F937-1F3FC","non_qualified":null,"image":"1f937-1f3fc.png","sheet_x":41,"sheet_y":54,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F937-1F3FD","non_qualified":null,"image":"1f937-1f3fd.png","sheet_x":41,"sheet_y":55,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F937-1F3FE","non_qualified":null,"image":"1f937-1f3fe.png","sheet_x":41,"sheet_y":56,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F937-1F3FF","non_qualified":null,"image":"1f937-1f3ff.png","sheet_x":41,"sheet_y":57,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN CARTWHEELING","unified":"1F938-200D-2640-FE0F","non_qualified":"1F938-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f938-200d-2640-fe0f.png","sheet_x":41,"sheet_y":58,"short_name":"woman-cartwheeling","short_names":["woman-cartwheeling"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":469,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F938-1F3FB-200D-2640-FE0F","non_qualified":"1F938-1F3FB-200D-2640","image":"1f938-1f3fb-200d-2640-fe0f.png","sheet_x":41,"sheet_y":59,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F938-1F3FC-200D-2640-FE0F","non_qualified":"1F938-1F3FC-200D-2640","image":"1f938-1f3fc-200d-2640-fe0f.png","sheet_x":41,"sheet_y":60,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F938-1F3FD-200D-2640-FE0F","non_qualified":"1F938-1F3FD-200D-2640","image":"1f938-1f3fd-200d-2640-fe0f.png","sheet_x":42,"sheet_y":0,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F938-1F3FE-200D-2640-FE0F","non_qualified":"1F938-1F3FE-200D-2640","image":"1f938-1f3fe-200d-2640-fe0f.png","sheet_x":42,"sheet_y":1,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F938-1F3FF-200D-2640-FE0F","non_qualified":"1F938-1F3FF-200D-2640","image":"1f938-1f3ff-200d-2640-fe0f.png","sheet_x":42,"sheet_y":2,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN CARTWHEELING","unified":"1F938-200D-2642-FE0F","non_qualified":"1F938-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f938-200d-2642-fe0f.png","sheet_x":42,"sheet_y":3,"short_name":"man-cartwheeling","short_names":["man-cartwheeling"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":468,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F938-1F3FB-200D-2642-FE0F","non_qualified":"1F938-1F3FB-200D-2642","image":"1f938-1f3fb-200d-2642-fe0f.png","sheet_x":42,"sheet_y":4,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F938-1F3FC-200D-2642-FE0F","non_qualified":"1F938-1F3FC-200D-2642","image":"1f938-1f3fc-200d-2642-fe0f.png","sheet_x":42,"sheet_y":5,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F938-1F3FD-200D-2642-FE0F","non_qualified":"1F938-1F3FD-200D-2642","image":"1f938-1f3fd-200d-2642-fe0f.png","sheet_x":42,"sheet_y":6,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F938-1F3FE-200D-2642-FE0F","non_qualified":"1F938-1F3FE-200D-2642","image":"1f938-1f3fe-200d-2642-fe0f.png","sheet_x":42,"sheet_y":7,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F938-1F3FF-200D-2642-FE0F","non_qualified":"1F938-1F3FF-200D-2642","image":"1f938-1f3ff-200d-2642-fe0f.png","sheet_x":42,"sheet_y":8,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"PERSON DOING CARTWHEEL","unified":"1F938","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f938.png","sheet_x":42,"sheet_y":9,"short_name":"person_doing_cartwheel","short_names":["person_doing_cartwheel"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":467,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F938-1F3FB","non_qualified":null,"image":"1f938-1f3fb.png","sheet_x":42,"sheet_y":10,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F938-1F3FC","non_qualified":null,"image":"1f938-1f3fc.png","sheet_x":42,"sheet_y":11,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F938-1F3FD","non_qualified":null,"image":"1f938-1f3fd.png","sheet_x":42,"sheet_y":12,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F938-1F3FE","non_qualified":null,"image":"1f938-1f3fe.png","sheet_x":42,"sheet_y":13,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F938-1F3FF","non_qualified":null,"image":"1f938-1f3ff.png","sheet_x":42,"sheet_y":14,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN JUGGLING","unified":"1F939-200D-2640-FE0F","non_qualified":"1F939-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f939-200d-2640-fe0f.png","sheet_x":42,"sheet_y":15,"short_name":"woman-juggling","short_names":["woman-juggling"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":481,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F939-1F3FB-200D-2640-FE0F","non_qualified":"1F939-1F3FB-200D-2640","image":"1f939-1f3fb-200d-2640-fe0f.png","sheet_x":42,"sheet_y":16,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F939-1F3FC-200D-2640-FE0F","non_qualified":"1F939-1F3FC-200D-2640","image":"1f939-1f3fc-200d-2640-fe0f.png","sheet_x":42,"sheet_y":17,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F939-1F3FD-200D-2640-FE0F","non_qualified":"1F939-1F3FD-200D-2640","image":"1f939-1f3fd-200d-2640-fe0f.png","sheet_x":42,"sheet_y":18,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F939-1F3FE-200D-2640-FE0F","non_qualified":"1F939-1F3FE-200D-2640","image":"1f939-1f3fe-200d-2640-fe0f.png","sheet_x":42,"sheet_y":19,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F939-1F3FF-200D-2640-FE0F","non_qualified":"1F939-1F3FF-200D-2640","image":"1f939-1f3ff-200d-2640-fe0f.png","sheet_x":42,"sheet_y":20,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN JUGGLING","unified":"1F939-200D-2642-FE0F","non_qualified":"1F939-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f939-200d-2642-fe0f.png","sheet_x":42,"sheet_y":21,"short_name":"man-juggling","short_names":["man-juggling"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":480,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F939-1F3FB-200D-2642-FE0F","non_qualified":"1F939-1F3FB-200D-2642","image":"1f939-1f3fb-200d-2642-fe0f.png","sheet_x":42,"sheet_y":22,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F939-1F3FC-200D-2642-FE0F","non_qualified":"1F939-1F3FC-200D-2642","image":"1f939-1f3fc-200d-2642-fe0f.png","sheet_x":42,"sheet_y":23,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F939-1F3FD-200D-2642-FE0F","non_qualified":"1F939-1F3FD-200D-2642","image":"1f939-1f3fd-200d-2642-fe0f.png","sheet_x":42,"sheet_y":24,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F939-1F3FE-200D-2642-FE0F","non_qualified":"1F939-1F3FE-200D-2642","image":"1f939-1f3fe-200d-2642-fe0f.png","sheet_x":42,"sheet_y":25,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F939-1F3FF-200D-2642-FE0F","non_qualified":"1F939-1F3FF-200D-2642","image":"1f939-1f3ff-200d-2642-fe0f.png","sheet_x":42,"sheet_y":26,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"JUGGLING","unified":"1F939","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f939.png","sheet_x":42,"sheet_y":27,"short_name":"juggling","short_names":["juggling"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":479,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F939-1F3FB","non_qualified":null,"image":"1f939-1f3fb.png","sheet_x":42,"sheet_y":28,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F939-1F3FC","non_qualified":null,"image":"1f939-1f3fc.png","sheet_x":42,"sheet_y":29,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F939-1F3FD","non_qualified":null,"image":"1f939-1f3fd.png","sheet_x":42,"sheet_y":30,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F939-1F3FE","non_qualified":null,"image":"1f939-1f3fe.png","sheet_x":42,"sheet_y":31,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F939-1F3FF","non_qualified":null,"image":"1f939-1f3ff.png","sheet_x":42,"sheet_y":32,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"FENCER","unified":"1F93A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f93a.png","sheet_x":42,"sheet_y":33,"short_name":"fencer","short_names":["fencer"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":439,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WOMEN WRESTLING","unified":"1F93C-200D-2640-FE0F","non_qualified":"1F93C-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f93c-200d-2640-fe0f.png","sheet_x":42,"sheet_y":34,"short_name":"woman-wrestling","short_names":["woman-wrestling"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":472,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MEN WRESTLING","unified":"1F93C-200D-2642-FE0F","non_qualified":"1F93C-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f93c-200d-2642-fe0f.png","sheet_x":42,"sheet_y":35,"short_name":"man-wrestling","short_names":["man-wrestling"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":471,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WRESTLERS","unified":"1F93C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f93c.png","sheet_x":42,"sheet_y":36,"short_name":"wrestlers","short_names":["wrestlers"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":470,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WOMAN PLAYING WATER POLO","unified":"1F93D-200D-2640-FE0F","non_qualified":"1F93D-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f93d-200d-2640-fe0f.png","sheet_x":42,"sheet_y":37,"short_name":"woman-playing-water-polo","short_names":["woman-playing-water-polo"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":475,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F93D-1F3FB-200D-2640-FE0F","non_qualified":"1F93D-1F3FB-200D-2640","image":"1f93d-1f3fb-200d-2640-fe0f.png","sheet_x":42,"sheet_y":38,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F93D-1F3FC-200D-2640-FE0F","non_qualified":"1F93D-1F3FC-200D-2640","image":"1f93d-1f3fc-200d-2640-fe0f.png","sheet_x":42,"sheet_y":39,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F93D-1F3FD-200D-2640-FE0F","non_qualified":"1F93D-1F3FD-200D-2640","image":"1f93d-1f3fd-200d-2640-fe0f.png","sheet_x":42,"sheet_y":40,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F93D-1F3FE-200D-2640-FE0F","non_qualified":"1F93D-1F3FE-200D-2640","image":"1f93d-1f3fe-200d-2640-fe0f.png","sheet_x":42,"sheet_y":41,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F93D-1F3FF-200D-2640-FE0F","non_qualified":"1F93D-1F3FF-200D-2640","image":"1f93d-1f3ff-200d-2640-fe0f.png","sheet_x":42,"sheet_y":42,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN PLAYING WATER POLO","unified":"1F93D-200D-2642-FE0F","non_qualified":"1F93D-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f93d-200d-2642-fe0f.png","sheet_x":42,"sheet_y":43,"short_name":"man-playing-water-polo","short_names":["man-playing-water-polo"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":474,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F93D-1F3FB-200D-2642-FE0F","non_qualified":"1F93D-1F3FB-200D-2642","image":"1f93d-1f3fb-200d-2642-fe0f.png","sheet_x":42,"sheet_y":44,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F93D-1F3FC-200D-2642-FE0F","non_qualified":"1F93D-1F3FC-200D-2642","image":"1f93d-1f3fc-200d-2642-fe0f.png","sheet_x":42,"sheet_y":45,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F93D-1F3FD-200D-2642-FE0F","non_qualified":"1F93D-1F3FD-200D-2642","image":"1f93d-1f3fd-200d-2642-fe0f.png","sheet_x":42,"sheet_y":46,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F93D-1F3FE-200D-2642-FE0F","non_qualified":"1F93D-1F3FE-200D-2642","image":"1f93d-1f3fe-200d-2642-fe0f.png","sheet_x":42,"sheet_y":47,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F93D-1F3FF-200D-2642-FE0F","non_qualified":"1F93D-1F3FF-200D-2642","image":"1f93d-1f3ff-200d-2642-fe0f.png","sheet_x":42,"sheet_y":48,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WATER POLO","unified":"1F93D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f93d.png","sheet_x":42,"sheet_y":49,"short_name":"water_polo","short_names":["water_polo"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":473,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F93D-1F3FB","non_qualified":null,"image":"1f93d-1f3fb.png","sheet_x":42,"sheet_y":50,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F93D-1F3FC","non_qualified":null,"image":"1f93d-1f3fc.png","sheet_x":42,"sheet_y":51,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F93D-1F3FD","non_qualified":null,"image":"1f93d-1f3fd.png","sheet_x":42,"sheet_y":52,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F93D-1F3FE","non_qualified":null,"image":"1f93d-1f3fe.png","sheet_x":42,"sheet_y":53,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F93D-1F3FF","non_qualified":null,"image":"1f93d-1f3ff.png","sheet_x":42,"sheet_y":54,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN PLAYING HANDBALL","unified":"1F93E-200D-2640-FE0F","non_qualified":"1F93E-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f93e-200d-2640-fe0f.png","sheet_x":42,"sheet_y":55,"short_name":"woman-playing-handball","short_names":["woman-playing-handball"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":478,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F93E-1F3FB-200D-2640-FE0F","non_qualified":"1F93E-1F3FB-200D-2640","image":"1f93e-1f3fb-200d-2640-fe0f.png","sheet_x":42,"sheet_y":56,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F93E-1F3FC-200D-2640-FE0F","non_qualified":"1F93E-1F3FC-200D-2640","image":"1f93e-1f3fc-200d-2640-fe0f.png","sheet_x":42,"sheet_y":57,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F93E-1F3FD-200D-2640-FE0F","non_qualified":"1F93E-1F3FD-200D-2640","image":"1f93e-1f3fd-200d-2640-fe0f.png","sheet_x":42,"sheet_y":58,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F93E-1F3FE-200D-2640-FE0F","non_qualified":"1F93E-1F3FE-200D-2640","image":"1f93e-1f3fe-200d-2640-fe0f.png","sheet_x":42,"sheet_y":59,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F93E-1F3FF-200D-2640-FE0F","non_qualified":"1F93E-1F3FF-200D-2640","image":"1f93e-1f3ff-200d-2640-fe0f.png","sheet_x":42,"sheet_y":60,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN PLAYING HANDBALL","unified":"1F93E-200D-2642-FE0F","non_qualified":"1F93E-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f93e-200d-2642-fe0f.png","sheet_x":43,"sheet_y":0,"short_name":"man-playing-handball","short_names":["man-playing-handball"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":477,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F93E-1F3FB-200D-2642-FE0F","non_qualified":"1F93E-1F3FB-200D-2642","image":"1f93e-1f3fb-200d-2642-fe0f.png","sheet_x":43,"sheet_y":1,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F93E-1F3FC-200D-2642-FE0F","non_qualified":"1F93E-1F3FC-200D-2642","image":"1f93e-1f3fc-200d-2642-fe0f.png","sheet_x":43,"sheet_y":2,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F93E-1F3FD-200D-2642-FE0F","non_qualified":"1F93E-1F3FD-200D-2642","image":"1f93e-1f3fd-200d-2642-fe0f.png","sheet_x":43,"sheet_y":3,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F93E-1F3FE-200D-2642-FE0F","non_qualified":"1F93E-1F3FE-200D-2642","image":"1f93e-1f3fe-200d-2642-fe0f.png","sheet_x":43,"sheet_y":4,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F93E-1F3FF-200D-2642-FE0F","non_qualified":"1F93E-1F3FF-200D-2642","image":"1f93e-1f3ff-200d-2642-fe0f.png","sheet_x":43,"sheet_y":5,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"HANDBALL","unified":"1F93E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f93e.png","sheet_x":43,"sheet_y":6,"short_name":"handball","short_names":["handball"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":476,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F93E-1F3FB","non_qualified":null,"image":"1f93e-1f3fb.png","sheet_x":43,"sheet_y":7,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F93E-1F3FC","non_qualified":null,"image":"1f93e-1f3fc.png","sheet_x":43,"sheet_y":8,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F93E-1F3FD","non_qualified":null,"image":"1f93e-1f3fd.png","sheet_x":43,"sheet_y":9,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F93E-1F3FE","non_qualified":null,"image":"1f93e-1f3fe.png","sheet_x":43,"sheet_y":10,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F93E-1F3FF","non_qualified":null,"image":"1f93e-1f3ff.png","sheet_x":43,"sheet_y":11,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"DIVING MASK","unified":"1F93F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f93f.png","sheet_x":43,"sheet_y":12,"short_name":"diving_mask","short_names":["diving_mask"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1087,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WILTED FLOWER","unified":"1F940","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f940.png","sheet_x":43,"sheet_y":13,"short_name":"wilted_flower","short_names":["wilted_flower"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-flower","sort_order":665,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DRUM WITH DRUMSTICKS","unified":"1F941","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f941.png","sheet_x":43,"sheet_y":14,"short_name":"drum_with_drumsticks","short_names":["drum_with_drumsticks"],"text":null,"texts":null,"category":"Objects","subcategory":"musical-instrument","sort_order":1195,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLINKING GLASSES","unified":"1F942","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f942.png","sheet_x":43,"sheet_y":15,"short_name":"clinking_glasses","short_names":["clinking_glasses"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":805,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TUMBLER GLASS","unified":"1F943","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f943.png","sheet_x":43,"sheet_y":16,"short_name":"tumbler_glass","short_names":["tumbler_glass"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":806,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SPOON","unified":"1F944","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f944.png","sheet_x":43,"sheet_y":17,"short_name":"spoon","short_names":["spoon"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"dishware","sort_order":816,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GOAL NET","unified":"1F945","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f945.png","sheet_x":43,"sheet_y":18,"short_name":"goal_net","short_names":["goal_net"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1083,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FIRST PLACE MEDAL","unified":"1F947","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f947.png","sheet_x":43,"sheet_y":19,"short_name":"first_place_medal","short_names":["first_place_medal"],"text":null,"texts":null,"category":"Activities","subcategory":"award-medal","sort_order":1062,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SECOND PLACE MEDAL","unified":"1F948","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f948.png","sheet_x":43,"sheet_y":20,"short_name":"second_place_medal","short_names":["second_place_medal"],"text":null,"texts":null,"category":"Activities","subcategory":"award-medal","sort_order":1063,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"THIRD PLACE MEDAL","unified":"1F949","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f949.png","sheet_x":43,"sheet_y":21,"short_name":"third_place_medal","short_names":["third_place_medal"],"text":null,"texts":null,"category":"Activities","subcategory":"award-medal","sort_order":1064,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BOXING GLOVE","unified":"1F94A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f94a.png","sheet_x":43,"sheet_y":22,"short_name":"boxing_glove","short_names":["boxing_glove"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1081,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MARTIAL ARTS UNIFORM","unified":"1F94B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f94b.png","sheet_x":43,"sheet_y":23,"short_name":"martial_arts_uniform","short_names":["martial_arts_uniform"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1082,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CURLING STONE","unified":"1F94C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f94c.png","sheet_x":43,"sheet_y":24,"short_name":"curling_stone","short_names":["curling_stone"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1091,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LACROSSE STICK AND BALL","unified":"1F94D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f94d.png","sheet_x":43,"sheet_y":25,"short_name":"lacrosse","short_names":["lacrosse"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1078,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SOFTBALL","unified":"1F94E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f94e.png","sheet_x":43,"sheet_y":26,"short_name":"softball","short_names":["softball"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1067,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FLYING DISC","unified":"1F94F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f94f.png","sheet_x":43,"sheet_y":27,"short_name":"flying_disc","short_names":["flying_disc"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1073,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CROISSANT","unified":"1F950","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f950.png","sheet_x":43,"sheet_y":28,"short_name":"croissant","short_names":["croissant"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":724,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"AVOCADO","unified":"1F951","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f951.png","sheet_x":43,"sheet_y":29,"short_name":"avocado","short_names":["avocado"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":706,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CUCUMBER","unified":"1F952","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f952.png","sheet_x":43,"sheet_y":30,"short_name":"cucumber","short_names":["cucumber"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":713,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BACON","unified":"1F953","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f953.png","sheet_x":43,"sheet_y":31,"short_name":"bacon","short_names":["bacon"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":735,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"POTATO","unified":"1F954","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f954.png","sheet_x":43,"sheet_y":32,"short_name":"potato","short_names":["potato"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":708,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CARROT","unified":"1F955","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f955.png","sheet_x":43,"sheet_y":33,"short_name":"carrot","short_names":["carrot"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":709,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BAGUETTE BREAD","unified":"1F956","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f956.png","sheet_x":43,"sheet_y":34,"short_name":"baguette_bread","short_names":["baguette_bread"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":725,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GREEN SALAD","unified":"1F957","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f957.png","sheet_x":43,"sheet_y":35,"short_name":"green_salad","short_names":["green_salad"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":752,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SHALLOW PAN OF FOOD","unified":"1F958","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f958.png","sheet_x":43,"sheet_y":36,"short_name":"shallow_pan_of_food","short_names":["shallow_pan_of_food"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":748,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"STUFFED FLATBREAD","unified":"1F959","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f959.png","sheet_x":43,"sheet_y":37,"short_name":"stuffed_flatbread","short_names":["stuffed_flatbread"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":744,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"EGG","unified":"1F95A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f95a.png","sheet_x":43,"sheet_y":38,"short_name":"egg","short_names":["egg"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":746,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GLASS OF MILK","unified":"1F95B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f95b.png","sheet_x":43,"sheet_y":39,"short_name":"glass_of_milk","short_names":["glass_of_milk"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":794,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PEANUTS","unified":"1F95C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f95c.png","sheet_x":43,"sheet_y":40,"short_name":"peanuts","short_names":["peanuts"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":718,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"KIWIFRUIT","unified":"1F95D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f95d.png","sheet_x":43,"sheet_y":41,"short_name":"kiwifruit","short_names":["kiwifruit"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-fruit","sort_order":702,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PANCAKES","unified":"1F95E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f95e.png","sheet_x":43,"sheet_y":42,"short_name":"pancakes","short_names":["pancakes"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":729,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DUMPLING","unified":"1F95F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f95f.png","sheet_x":43,"sheet_y":43,"short_name":"dumpling","short_names":["dumpling"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-asian","sort_order":771,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FORTUNE COOKIE","unified":"1F960","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f960.png","sheet_x":43,"sheet_y":44,"short_name":"fortune_cookie","short_names":["fortune_cookie"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-asian","sort_order":772,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TAKEOUT BOX","unified":"1F961","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f961.png","sheet_x":43,"sheet_y":45,"short_name":"takeout_box","short_names":["takeout_box"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-asian","sort_order":773,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CHOPSTICKS","unified":"1F962","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f962.png","sheet_x":43,"sheet_y":46,"short_name":"chopsticks","short_names":["chopsticks"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"dishware","sort_order":813,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BOWL WITH SPOON","unified":"1F963","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f963.png","sheet_x":43,"sheet_y":47,"short_name":"bowl_with_spoon","short_names":["bowl_with_spoon"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":751,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CUP WITH STRAW","unified":"1F964","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f964.png","sheet_x":43,"sheet_y":48,"short_name":"cup_with_straw","short_names":["cup_with_straw"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":808,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"COCONUT","unified":"1F965","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f965.png","sheet_x":43,"sheet_y":49,"short_name":"coconut","short_names":["coconut"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-fruit","sort_order":705,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BROCCOLI","unified":"1F966","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f966.png","sheet_x":43,"sheet_y":50,"short_name":"broccoli","short_names":["broccoli"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":715,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PIE","unified":"1F967","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f967.png","sheet_x":43,"sheet_y":51,"short_name":"pie","short_names":["pie"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-sweet","sort_order":787,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PRETZEL","unified":"1F968","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f968.png","sheet_x":43,"sheet_y":52,"short_name":"pretzel","short_names":["pretzel"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":727,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CUT OF MEAT","unified":"1F969","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f969.png","sheet_x":43,"sheet_y":53,"short_name":"cut_of_meat","short_names":["cut_of_meat"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":734,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SANDWICH","unified":"1F96A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f96a.png","sheet_x":43,"sheet_y":54,"short_name":"sandwich","short_names":["sandwich"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":740,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CANNED FOOD","unified":"1F96B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f96b.png","sheet_x":43,"sheet_y":55,"short_name":"canned_food","short_names":["canned_food"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":756,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LEAFY GREEN","unified":"1F96C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f96c.png","sheet_x":43,"sheet_y":56,"short_name":"leafy_green","short_names":["leafy_green"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":714,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MANGO","unified":"1F96D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f96d.png","sheet_x":43,"sheet_y":57,"short_name":"mango","short_names":["mango"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-fruit","sort_order":694,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MOON CAKE","unified":"1F96E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f96e.png","sheet_x":43,"sheet_y":58,"short_name":"moon_cake","short_names":["moon_cake"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-asian","sort_order":769,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BAGEL","unified":"1F96F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f96f.png","sheet_x":43,"sheet_y":59,"short_name":"bagel","short_names":["bagel"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":728,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SMILING FACE WITH SMILING EYES AND THREE HEARTS","unified":"1F970","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f970.png","sheet_x":43,"sheet_y":60,"short_name":"smiling_face_with_3_hearts","short_names":["smiling_face_with_3_hearts"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-affection","sort_order":15,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"YAWNING FACE","unified":"1F971","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f971.png","sheet_x":44,"sheet_y":0,"short_name":"yawning_face","short_names":["yawning_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":99,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SMILING FACE WITH TEAR","unified":"1F972","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f972.png","sheet_x":44,"sheet_y":1,"short_name":"smiling_face_with_tear","short_names":["smiling_face_with_tear"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-affection","sort_order":23,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE WITH PARTY HORN AND PARTY HAT","unified":"1F973","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f973.png","sheet_x":44,"sheet_y":2,"short_name":"partying_face","short_names":["partying_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-hat","sort_order":69,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE WITH UNEVEN EYES AND WAVY MOUTH","unified":"1F974","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f974.png","sheet_x":44,"sheet_y":3,"short_name":"woozy_face","short_names":["woozy_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-unwell","sort_order":64,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"OVERHEATED FACE","unified":"1F975","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f975.png","sheet_x":44,"sheet_y":4,"short_name":"hot_face","short_names":["hot_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-unwell","sort_order":62,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FREEZING FACE","unified":"1F976","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f976.png","sheet_x":44,"sheet_y":5,"short_name":"cold_face","short_names":["cold_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-unwell","sort_order":63,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NINJA","unified":"1F977","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f977.png","sheet_x":44,"sheet_y":6,"short_name":"ninja","short_names":["ninja"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":343,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F977-1F3FB","non_qualified":null,"image":"1f977-1f3fb.png","sheet_x":44,"sheet_y":7,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F977-1F3FC","non_qualified":null,"image":"1f977-1f3fc.png","sheet_x":44,"sheet_y":8,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F977-1F3FD","non_qualified":null,"image":"1f977-1f3fd.png","sheet_x":44,"sheet_y":9,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F977-1F3FE","non_qualified":null,"image":"1f977-1f3fe.png","sheet_x":44,"sheet_y":10,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F977-1F3FF","non_qualified":null,"image":"1f977-1f3ff.png","sheet_x":44,"sheet_y":11,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"DISGUISED FACE","unified":"1F978","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f978.png","sheet_x":44,"sheet_y":12,"short_name":"disguised_face","short_names":["disguised_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-hat","sort_order":70,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE HOLDING BACK TEARS","unified":"1F979","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f979.png","sheet_x":44,"sheet_y":13,"short_name":"face_holding_back_tears","short_names":["face_holding_back_tears"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":84,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE WITH PLEADING EYES","unified":"1F97A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f97a.png","sheet_x":44,"sheet_y":14,"short_name":"pleading_face","short_names":["pleading_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":83,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SARI","unified":"1F97B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f97b.png","sheet_x":44,"sheet_y":15,"short_name":"sari","short_names":["sari"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1137,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LAB COAT","unified":"1F97C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f97c.png","sheet_x":44,"sheet_y":16,"short_name":"lab_coat","short_names":["lab_coat"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1126,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GOGGLES","unified":"1F97D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f97d.png","sheet_x":44,"sheet_y":17,"short_name":"goggles","short_names":["goggles"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1125,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HIKING BOOT","unified":"1F97E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f97e.png","sheet_x":44,"sheet_y":18,"short_name":"hiking_boot","short_names":["hiking_boot"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1152,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FLAT SHOE","unified":"1F97F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f97f.png","sheet_x":44,"sheet_y":19,"short_name":"womans_flat_shoe","short_names":["womans_flat_shoe"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1153,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CRAB","unified":"1F980","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f980.png","sheet_x":44,"sheet_y":20,"short_name":"crab","short_names":["crab"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-marine","sort_order":774,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LION FACE","unified":"1F981","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f981.png","sheet_x":44,"sheet_y":21,"short_name":"lion_face","short_names":["lion_face"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":550,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SCORPION","unified":"1F982","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f982.png","sheet_x":44,"sheet_y":22,"short_name":"scorpion","short_names":["scorpion"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bug","sort_order":654,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TURKEY","unified":"1F983","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f983.png","sheet_x":44,"sheet_y":23,"short_name":"turkey","short_names":["turkey"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":601,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"UNICORN FACE","unified":"1F984","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f984.png","sheet_x":44,"sheet_y":24,"short_name":"unicorn_face","short_names":["unicorn_face"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":558,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"EAGLE","unified":"1F985","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f985.png","sheet_x":44,"sheet_y":25,"short_name":"eagle","short_names":["eagle"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":610,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DUCK","unified":"1F986","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f986.png","sheet_x":44,"sheet_y":26,"short_name":"duck","short_names":["duck"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":611,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BAT","unified":"1F987","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f987.png","sheet_x":44,"sheet_y":27,"short_name":"bat","short_names":["bat"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":590,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SHARK","unified":"1F988","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f988.png","sheet_x":44,"sheet_y":28,"short_name":"shark","short_names":["shark"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-marine","sort_order":638,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"OWL","unified":"1F989","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f989.png","sheet_x":44,"sheet_y":29,"short_name":"owl","short_names":["owl"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":613,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FOX FACE","unified":"1F98A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f98a.png","sheet_x":44,"sheet_y":30,"short_name":"fox_face","short_names":["fox_face"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":545,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BUTTERFLY","unified":"1F98B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f98b.png","sheet_x":44,"sheet_y":31,"short_name":"butterfly","short_names":["butterfly"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bug","sort_order":644,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DEER","unified":"1F98C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f98c.png","sheet_x":44,"sheet_y":32,"short_name":"deer","short_names":["deer"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":560,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GORILLA","unified":"1F98D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f98d.png","sheet_x":44,"sheet_y":33,"short_name":"gorilla","short_names":["gorilla"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":537,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LIZARD","unified":"1F98E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f98e.png","sheet_x":44,"sheet_y":34,"short_name":"lizard","short_names":["lizard"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-reptile","sort_order":625,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RHINOCEROS","unified":"1F98F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f98f.png","sheet_x":44,"sheet_y":35,"short_name":"rhinoceros","short_names":["rhinoceros"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":579,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SHRIMP","unified":"1F990","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f990.png","sheet_x":44,"sheet_y":36,"short_name":"shrimp","short_names":["shrimp"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-marine","sort_order":776,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SQUID","unified":"1F991","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f991.png","sheet_x":44,"sheet_y":37,"short_name":"squid","short_names":["squid"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-marine","sort_order":777,"added_in":"3.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GIRAFFE FACE","unified":"1F992","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f992.png","sheet_x":44,"sheet_y":38,"short_name":"giraffe_face","short_names":["giraffe_face"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":576,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ZEBRA FACE","unified":"1F993","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f993.png","sheet_x":44,"sheet_y":39,"short_name":"zebra_face","short_names":["zebra_face"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":559,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HEDGEHOG","unified":"1F994","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f994.png","sheet_x":44,"sheet_y":40,"short_name":"hedgehog","short_names":["hedgehog"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":589,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SAUROPOD","unified":"1F995","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f995.png","sheet_x":44,"sheet_y":41,"short_name":"sauropod","short_names":["sauropod"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-reptile","sort_order":629,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"T-REX","unified":"1F996","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f996.png","sheet_x":44,"sheet_y":42,"short_name":"t-rex","short_names":["t-rex"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-reptile","sort_order":630,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CRICKET","unified":"1F997","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f997.png","sheet_x":44,"sheet_y":43,"short_name":"cricket","short_names":["cricket"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bug","sort_order":650,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"KANGAROO","unified":"1F998","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f998.png","sheet_x":44,"sheet_y":44,"short_name":"kangaroo","short_names":["kangaroo"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":598,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LLAMA","unified":"1F999","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f999.png","sheet_x":44,"sheet_y":45,"short_name":"llama","short_names":["llama"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":575,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PEACOCK","unified":"1F99A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f99a.png","sheet_x":44,"sheet_y":46,"short_name":"peacock","short_names":["peacock"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":617,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HIPPOPOTAMUS","unified":"1F99B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f99b.png","sheet_x":44,"sheet_y":47,"short_name":"hippopotamus","short_names":["hippopotamus"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":580,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PARROT","unified":"1F99C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f99c.png","sheet_x":44,"sheet_y":48,"short_name":"parrot","short_names":["parrot"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":618,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RACCOON","unified":"1F99D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f99d.png","sheet_x":44,"sheet_y":49,"short_name":"raccoon","short_names":["raccoon"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":546,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LOBSTER","unified":"1F99E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f99e.png","sheet_x":44,"sheet_y":50,"short_name":"lobster","short_names":["lobster"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-marine","sort_order":775,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MOSQUITO","unified":"1F99F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f99f.png","sheet_x":44,"sheet_y":51,"short_name":"mosquito","short_names":["mosquito"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bug","sort_order":655,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MICROBE","unified":"1F9A0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9a0.png","sheet_x":44,"sheet_y":52,"short_name":"microbe","short_names":["microbe"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bug","sort_order":658,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BADGER","unified":"1F9A1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9a1.png","sheet_x":44,"sheet_y":53,"short_name":"badger","short_names":["badger"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":599,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SWAN","unified":"1F9A2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9a2.png","sheet_x":44,"sheet_y":54,"short_name":"swan","short_names":["swan"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":612,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MAMMOTH","unified":"1F9A3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9a3.png","sheet_x":44,"sheet_y":55,"short_name":"mammoth","short_names":["mammoth"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":578,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DODO","unified":"1F9A4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9a4.png","sheet_x":44,"sheet_y":56,"short_name":"dodo","short_names":["dodo"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":614,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SLOTH","unified":"1F9A5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9a5.png","sheet_x":44,"sheet_y":57,"short_name":"sloth","short_names":["sloth"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":595,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"OTTER","unified":"1F9A6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9a6.png","sheet_x":44,"sheet_y":58,"short_name":"otter","short_names":["otter"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":596,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ORANGUTAN","unified":"1F9A7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9a7.png","sheet_x":44,"sheet_y":59,"short_name":"orangutan","short_names":["orangutan"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":538,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SKUNK","unified":"1F9A8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9a8.png","sheet_x":44,"sheet_y":60,"short_name":"skunk","short_names":["skunk"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":597,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FLAMINGO","unified":"1F9A9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9a9.png","sheet_x":45,"sheet_y":0,"short_name":"flamingo","short_names":["flamingo"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":616,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"OYSTER","unified":"1F9AA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9aa.png","sheet_x":45,"sheet_y":1,"short_name":"oyster","short_names":["oyster"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-marine","sort_order":778,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BEAVER","unified":"1F9AB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ab.png","sheet_x":45,"sheet_y":2,"short_name":"beaver","short_names":["beaver"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":588,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BISON","unified":"1F9AC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ac.png","sheet_x":45,"sheet_y":3,"short_name":"bison","short_names":["bison"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":561,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SEAL","unified":"1F9AD","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ad.png","sheet_x":45,"sheet_y":4,"short_name":"seal","short_names":["seal"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-marine","sort_order":634,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GUIDE DOG","unified":"1F9AE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ae.png","sheet_x":45,"sheet_y":5,"short_name":"guide_dog","short_names":["guide_dog"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":541,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PROBING CANE","unified":"1F9AF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9af.png","sheet_x":45,"sheet_y":6,"short_name":"probing_cane","short_names":["probing_cane"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1329,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BONE","unified":"1F9B4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9b4.png","sheet_x":45,"sheet_y":7,"short_name":"bone","short_names":["bone"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":222,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LEG","unified":"1F9B5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9b5.png","sheet_x":45,"sheet_y":8,"short_name":"leg","short_names":["leg"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":213,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9B5-1F3FB","non_qualified":null,"image":"1f9b5-1f3fb.png","sheet_x":45,"sheet_y":9,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9B5-1F3FC","non_qualified":null,"image":"1f9b5-1f3fc.png","sheet_x":45,"sheet_y":10,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9B5-1F3FD","non_qualified":null,"image":"1f9b5-1f3fd.png","sheet_x":45,"sheet_y":11,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9B5-1F3FE","non_qualified":null,"image":"1f9b5-1f3fe.png","sheet_x":45,"sheet_y":12,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9B5-1F3FF","non_qualified":null,"image":"1f9b5-1f3ff.png","sheet_x":45,"sheet_y":13,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"FOOT","unified":"1F9B6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9b6.png","sheet_x":45,"sheet_y":14,"short_name":"foot","short_names":["foot"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":214,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9B6-1F3FB","non_qualified":null,"image":"1f9b6-1f3fb.png","sheet_x":45,"sheet_y":15,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9B6-1F3FC","non_qualified":null,"image":"1f9b6-1f3fc.png","sheet_x":45,"sheet_y":16,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9B6-1F3FD","non_qualified":null,"image":"1f9b6-1f3fd.png","sheet_x":45,"sheet_y":17,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9B6-1F3FE","non_qualified":null,"image":"1f9b6-1f3fe.png","sheet_x":45,"sheet_y":18,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9B6-1F3FF","non_qualified":null,"image":"1f9b6-1f3ff.png","sheet_x":45,"sheet_y":19,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"TOOTH","unified":"1F9B7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9b7.png","sheet_x":45,"sheet_y":20,"short_name":"tooth","short_names":["tooth"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":221,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WOMAN SUPERHERO","unified":"1F9B8-200D-2640-FE0F","non_qualified":"1F9B8-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9b8-200d-2640-fe0f.png","sheet_x":45,"sheet_y":21,"short_name":"female_superhero","short_names":["female_superhero"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":374,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9B8-1F3FB-200D-2640-FE0F","non_qualified":"1F9B8-1F3FB-200D-2640","image":"1f9b8-1f3fb-200d-2640-fe0f.png","sheet_x":45,"sheet_y":22,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9B8-1F3FC-200D-2640-FE0F","non_qualified":"1F9B8-1F3FC-200D-2640","image":"1f9b8-1f3fc-200d-2640-fe0f.png","sheet_x":45,"sheet_y":23,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9B8-1F3FD-200D-2640-FE0F","non_qualified":"1F9B8-1F3FD-200D-2640","image":"1f9b8-1f3fd-200d-2640-fe0f.png","sheet_x":45,"sheet_y":24,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9B8-1F3FE-200D-2640-FE0F","non_qualified":"1F9B8-1F3FE-200D-2640","image":"1f9b8-1f3fe-200d-2640-fe0f.png","sheet_x":45,"sheet_y":25,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9B8-1F3FF-200D-2640-FE0F","non_qualified":"1F9B8-1F3FF-200D-2640","image":"1f9b8-1f3ff-200d-2640-fe0f.png","sheet_x":45,"sheet_y":26,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN SUPERHERO","unified":"1F9B8-200D-2642-FE0F","non_qualified":"1F9B8-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9b8-200d-2642-fe0f.png","sheet_x":45,"sheet_y":27,"short_name":"male_superhero","short_names":["male_superhero"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":373,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9B8-1F3FB-200D-2642-FE0F","non_qualified":"1F9B8-1F3FB-200D-2642","image":"1f9b8-1f3fb-200d-2642-fe0f.png","sheet_x":45,"sheet_y":28,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9B8-1F3FC-200D-2642-FE0F","non_qualified":"1F9B8-1F3FC-200D-2642","image":"1f9b8-1f3fc-200d-2642-fe0f.png","sheet_x":45,"sheet_y":29,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9B8-1F3FD-200D-2642-FE0F","non_qualified":"1F9B8-1F3FD-200D-2642","image":"1f9b8-1f3fd-200d-2642-fe0f.png","sheet_x":45,"sheet_y":30,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9B8-1F3FE-200D-2642-FE0F","non_qualified":"1F9B8-1F3FE-200D-2642","image":"1f9b8-1f3fe-200d-2642-fe0f.png","sheet_x":45,"sheet_y":31,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9B8-1F3FF-200D-2642-FE0F","non_qualified":"1F9B8-1F3FF-200D-2642","image":"1f9b8-1f3ff-200d-2642-fe0f.png","sheet_x":45,"sheet_y":32,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"SUPERHERO","unified":"1F9B8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9b8.png","sheet_x":45,"sheet_y":33,"short_name":"superhero","short_names":["superhero"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":372,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9B8-1F3FB","non_qualified":null,"image":"1f9b8-1f3fb.png","sheet_x":45,"sheet_y":34,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9B8-1F3FC","non_qualified":null,"image":"1f9b8-1f3fc.png","sheet_x":45,"sheet_y":35,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9B8-1F3FD","non_qualified":null,"image":"1f9b8-1f3fd.png","sheet_x":45,"sheet_y":36,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9B8-1F3FE","non_qualified":null,"image":"1f9b8-1f3fe.png","sheet_x":45,"sheet_y":37,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9B8-1F3FF","non_qualified":null,"image":"1f9b8-1f3ff.png","sheet_x":45,"sheet_y":38,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN SUPERVILLAIN","unified":"1F9B9-200D-2640-FE0F","non_qualified":"1F9B9-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9b9-200d-2640-fe0f.png","sheet_x":45,"sheet_y":39,"short_name":"female_supervillain","short_names":["female_supervillain"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":377,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9B9-1F3FB-200D-2640-FE0F","non_qualified":"1F9B9-1F3FB-200D-2640","image":"1f9b9-1f3fb-200d-2640-fe0f.png","sheet_x":45,"sheet_y":40,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9B9-1F3FC-200D-2640-FE0F","non_qualified":"1F9B9-1F3FC-200D-2640","image":"1f9b9-1f3fc-200d-2640-fe0f.png","sheet_x":45,"sheet_y":41,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9B9-1F3FD-200D-2640-FE0F","non_qualified":"1F9B9-1F3FD-200D-2640","image":"1f9b9-1f3fd-200d-2640-fe0f.png","sheet_x":45,"sheet_y":42,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9B9-1F3FE-200D-2640-FE0F","non_qualified":"1F9B9-1F3FE-200D-2640","image":"1f9b9-1f3fe-200d-2640-fe0f.png","sheet_x":45,"sheet_y":43,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9B9-1F3FF-200D-2640-FE0F","non_qualified":"1F9B9-1F3FF-200D-2640","image":"1f9b9-1f3ff-200d-2640-fe0f.png","sheet_x":45,"sheet_y":44,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN SUPERVILLAIN","unified":"1F9B9-200D-2642-FE0F","non_qualified":"1F9B9-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9b9-200d-2642-fe0f.png","sheet_x":45,"sheet_y":45,"short_name":"male_supervillain","short_names":["male_supervillain"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":376,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9B9-1F3FB-200D-2642-FE0F","non_qualified":"1F9B9-1F3FB-200D-2642","image":"1f9b9-1f3fb-200d-2642-fe0f.png","sheet_x":45,"sheet_y":46,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9B9-1F3FC-200D-2642-FE0F","non_qualified":"1F9B9-1F3FC-200D-2642","image":"1f9b9-1f3fc-200d-2642-fe0f.png","sheet_x":45,"sheet_y":47,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9B9-1F3FD-200D-2642-FE0F","non_qualified":"1F9B9-1F3FD-200D-2642","image":"1f9b9-1f3fd-200d-2642-fe0f.png","sheet_x":45,"sheet_y":48,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9B9-1F3FE-200D-2642-FE0F","non_qualified":"1F9B9-1F3FE-200D-2642","image":"1f9b9-1f3fe-200d-2642-fe0f.png","sheet_x":45,"sheet_y":49,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9B9-1F3FF-200D-2642-FE0F","non_qualified":"1F9B9-1F3FF-200D-2642","image":"1f9b9-1f3ff-200d-2642-fe0f.png","sheet_x":45,"sheet_y":50,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"SUPERVILLAIN","unified":"1F9B9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9b9.png","sheet_x":45,"sheet_y":51,"short_name":"supervillain","short_names":["supervillain"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":375,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9B9-1F3FB","non_qualified":null,"image":"1f9b9-1f3fb.png","sheet_x":45,"sheet_y":52,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9B9-1F3FC","non_qualified":null,"image":"1f9b9-1f3fc.png","sheet_x":45,"sheet_y":53,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9B9-1F3FD","non_qualified":null,"image":"1f9b9-1f3fd.png","sheet_x":45,"sheet_y":54,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9B9-1F3FE","non_qualified":null,"image":"1f9b9-1f3fe.png","sheet_x":45,"sheet_y":55,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9B9-1F3FF","non_qualified":null,"image":"1f9b9-1f3ff.png","sheet_x":45,"sheet_y":56,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"SAFETY VEST","unified":"1F9BA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ba.png","sheet_x":45,"sheet_y":57,"short_name":"safety_vest","short_names":["safety_vest"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1127,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"EAR WITH HEARING AID","unified":"1F9BB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9bb.png","sheet_x":45,"sheet_y":58,"short_name":"ear_with_hearing_aid","short_names":["ear_with_hearing_aid"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":216,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9BB-1F3FB","non_qualified":null,"image":"1f9bb-1f3fb.png","sheet_x":45,"sheet_y":59,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9BB-1F3FC","non_qualified":null,"image":"1f9bb-1f3fc.png","sheet_x":45,"sheet_y":60,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9BB-1F3FD","non_qualified":null,"image":"1f9bb-1f3fd.png","sheet_x":46,"sheet_y":0,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9BB-1F3FE","non_qualified":null,"image":"1f9bb-1f3fe.png","sheet_x":46,"sheet_y":1,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9BB-1F3FF","non_qualified":null,"image":"1f9bb-1f3ff.png","sheet_x":46,"sheet_y":2,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MOTORIZED WHEELCHAIR","unified":"1F9BC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9bc.png","sheet_x":46,"sheet_y":3,"short_name":"motorized_wheelchair","short_names":["motorized_wheelchair"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":919,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MANUAL WHEELCHAIR","unified":"1F9BD","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9bd.png","sheet_x":46,"sheet_y":4,"short_name":"manual_wheelchair","short_names":["manual_wheelchair"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":918,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MECHANICAL ARM","unified":"1F9BE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9be.png","sheet_x":46,"sheet_y":5,"short_name":"mechanical_arm","short_names":["mechanical_arm"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":211,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MECHANICAL LEG","unified":"1F9BF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9bf.png","sheet_x":46,"sheet_y":6,"short_name":"mechanical_leg","short_names":["mechanical_leg"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":212,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CHEESE WEDGE","unified":"1F9C0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9c0.png","sheet_x":46,"sheet_y":7,"short_name":"cheese_wedge","short_names":["cheese_wedge"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":731,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CUPCAKE","unified":"1F9C1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9c1.png","sheet_x":46,"sheet_y":8,"short_name":"cupcake","short_names":["cupcake"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-sweet","sort_order":786,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SALT SHAKER","unified":"1F9C2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9c2.png","sheet_x":46,"sheet_y":9,"short_name":"salt","short_names":["salt"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":755,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BEVERAGE BOX","unified":"1F9C3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9c3.png","sheet_x":46,"sheet_y":10,"short_name":"beverage_box","short_names":["beverage_box"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":810,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GARLIC","unified":"1F9C4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9c4.png","sheet_x":46,"sheet_y":11,"short_name":"garlic","short_names":["garlic"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":716,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ONION","unified":"1F9C5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9c5.png","sheet_x":46,"sheet_y":12,"short_name":"onion","short_names":["onion"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":717,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FALAFEL","unified":"1F9C6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9c6.png","sheet_x":46,"sheet_y":13,"short_name":"falafel","short_names":["falafel"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":745,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WAFFLE","unified":"1F9C7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9c7.png","sheet_x":46,"sheet_y":14,"short_name":"waffle","short_names":["waffle"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":730,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BUTTER","unified":"1F9C8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9c8.png","sheet_x":46,"sheet_y":15,"short_name":"butter","short_names":["butter"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":754,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MATE DRINK","unified":"1F9C9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9c9.png","sheet_x":46,"sheet_y":16,"short_name":"mate_drink","short_names":["mate_drink"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":811,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ICE CUBE","unified":"1F9CA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ca.png","sheet_x":46,"sheet_y":17,"short_name":"ice_cube","short_names":["ice_cube"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":812,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BUBBLE TEA","unified":"1F9CB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9cb.png","sheet_x":46,"sheet_y":18,"short_name":"bubble_tea","short_names":["bubble_tea"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":809,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TROLL","unified":"1F9CC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9cc.png","sheet_x":46,"sheet_y":19,"short_name":"troll","short_names":["troll"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":399,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WOMAN STANDING","unified":"1F9CD-200D-2640-FE0F","non_qualified":"1F9CD-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9cd-200d-2640-fe0f.png","sheet_x":46,"sheet_y":20,"short_name":"woman_standing","short_names":["woman_standing"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":411,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9CD-1F3FB-200D-2640-FE0F","non_qualified":"1F9CD-1F3FB-200D-2640","image":"1f9cd-1f3fb-200d-2640-fe0f.png","sheet_x":46,"sheet_y":21,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9CD-1F3FC-200D-2640-FE0F","non_qualified":"1F9CD-1F3FC-200D-2640","image":"1f9cd-1f3fc-200d-2640-fe0f.png","sheet_x":46,"sheet_y":22,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9CD-1F3FD-200D-2640-FE0F","non_qualified":"1F9CD-1F3FD-200D-2640","image":"1f9cd-1f3fd-200d-2640-fe0f.png","sheet_x":46,"sheet_y":23,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9CD-1F3FE-200D-2640-FE0F","non_qualified":"1F9CD-1F3FE-200D-2640","image":"1f9cd-1f3fe-200d-2640-fe0f.png","sheet_x":46,"sheet_y":24,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9CD-1F3FF-200D-2640-FE0F","non_qualified":"1F9CD-1F3FF-200D-2640","image":"1f9cd-1f3ff-200d-2640-fe0f.png","sheet_x":46,"sheet_y":25,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN STANDING","unified":"1F9CD-200D-2642-FE0F","non_qualified":"1F9CD-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9cd-200d-2642-fe0f.png","sheet_x":46,"sheet_y":26,"short_name":"man_standing","short_names":["man_standing"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":410,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9CD-1F3FB-200D-2642-FE0F","non_qualified":"1F9CD-1F3FB-200D-2642","image":"1f9cd-1f3fb-200d-2642-fe0f.png","sheet_x":46,"sheet_y":27,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9CD-1F3FC-200D-2642-FE0F","non_qualified":"1F9CD-1F3FC-200D-2642","image":"1f9cd-1f3fc-200d-2642-fe0f.png","sheet_x":46,"sheet_y":28,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9CD-1F3FD-200D-2642-FE0F","non_qualified":"1F9CD-1F3FD-200D-2642","image":"1f9cd-1f3fd-200d-2642-fe0f.png","sheet_x":46,"sheet_y":29,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9CD-1F3FE-200D-2642-FE0F","non_qualified":"1F9CD-1F3FE-200D-2642","image":"1f9cd-1f3fe-200d-2642-fe0f.png","sheet_x":46,"sheet_y":30,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9CD-1F3FF-200D-2642-FE0F","non_qualified":"1F9CD-1F3FF-200D-2642","image":"1f9cd-1f3ff-200d-2642-fe0f.png","sheet_x":46,"sheet_y":31,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"STANDING PERSON","unified":"1F9CD","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9cd.png","sheet_x":46,"sheet_y":32,"short_name":"standing_person","short_names":["standing_person"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":409,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9CD-1F3FB","non_qualified":null,"image":"1f9cd-1f3fb.png","sheet_x":46,"sheet_y":33,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9CD-1F3FC","non_qualified":null,"image":"1f9cd-1f3fc.png","sheet_x":46,"sheet_y":34,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9CD-1F3FD","non_qualified":null,"image":"1f9cd-1f3fd.png","sheet_x":46,"sheet_y":35,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9CD-1F3FE","non_qualified":null,"image":"1f9cd-1f3fe.png","sheet_x":46,"sheet_y":36,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9CD-1F3FF","non_qualified":null,"image":"1f9cd-1f3ff.png","sheet_x":46,"sheet_y":37,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN KNEELING","unified":"1F9CE-200D-2640-FE0F","non_qualified":"1F9CE-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ce-200d-2640-fe0f.png","sheet_x":46,"sheet_y":38,"short_name":"woman_kneeling","short_names":["woman_kneeling"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":414,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9CE-1F3FB-200D-2640-FE0F","non_qualified":"1F9CE-1F3FB-200D-2640","image":"1f9ce-1f3fb-200d-2640-fe0f.png","sheet_x":46,"sheet_y":39,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9CE-1F3FC-200D-2640-FE0F","non_qualified":"1F9CE-1F3FC-200D-2640","image":"1f9ce-1f3fc-200d-2640-fe0f.png","sheet_x":46,"sheet_y":40,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9CE-1F3FD-200D-2640-FE0F","non_qualified":"1F9CE-1F3FD-200D-2640","image":"1f9ce-1f3fd-200d-2640-fe0f.png","sheet_x":46,"sheet_y":41,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9CE-1F3FE-200D-2640-FE0F","non_qualified":"1F9CE-1F3FE-200D-2640","image":"1f9ce-1f3fe-200d-2640-fe0f.png","sheet_x":46,"sheet_y":42,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9CE-1F3FF-200D-2640-FE0F","non_qualified":"1F9CE-1F3FF-200D-2640","image":"1f9ce-1f3ff-200d-2640-fe0f.png","sheet_x":46,"sheet_y":43,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN KNEELING","unified":"1F9CE-200D-2642-FE0F","non_qualified":"1F9CE-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ce-200d-2642-fe0f.png","sheet_x":46,"sheet_y":44,"short_name":"man_kneeling","short_names":["man_kneeling"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":413,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9CE-1F3FB-200D-2642-FE0F","non_qualified":"1F9CE-1F3FB-200D-2642","image":"1f9ce-1f3fb-200d-2642-fe0f.png","sheet_x":46,"sheet_y":45,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9CE-1F3FC-200D-2642-FE0F","non_qualified":"1F9CE-1F3FC-200D-2642","image":"1f9ce-1f3fc-200d-2642-fe0f.png","sheet_x":46,"sheet_y":46,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9CE-1F3FD-200D-2642-FE0F","non_qualified":"1F9CE-1F3FD-200D-2642","image":"1f9ce-1f3fd-200d-2642-fe0f.png","sheet_x":46,"sheet_y":47,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9CE-1F3FE-200D-2642-FE0F","non_qualified":"1F9CE-1F3FE-200D-2642","image":"1f9ce-1f3fe-200d-2642-fe0f.png","sheet_x":46,"sheet_y":48,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9CE-1F3FF-200D-2642-FE0F","non_qualified":"1F9CE-1F3FF-200D-2642","image":"1f9ce-1f3ff-200d-2642-fe0f.png","sheet_x":46,"sheet_y":49,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"KNEELING PERSON","unified":"1F9CE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ce.png","sheet_x":46,"sheet_y":50,"short_name":"kneeling_person","short_names":["kneeling_person"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":412,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9CE-1F3FB","non_qualified":null,"image":"1f9ce-1f3fb.png","sheet_x":46,"sheet_y":51,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9CE-1F3FC","non_qualified":null,"image":"1f9ce-1f3fc.png","sheet_x":46,"sheet_y":52,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9CE-1F3FD","non_qualified":null,"image":"1f9ce-1f3fd.png","sheet_x":46,"sheet_y":53,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9CE-1F3FE","non_qualified":null,"image":"1f9ce-1f3fe.png","sheet_x":46,"sheet_y":54,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9CE-1F3FF","non_qualified":null,"image":"1f9ce-1f3ff.png","sheet_x":46,"sheet_y":55,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"DEAF WOMAN","unified":"1F9CF-200D-2640-FE0F","non_qualified":"1F9CF-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9cf-200d-2640-fe0f.png","sheet_x":46,"sheet_y":56,"short_name":"deaf_woman","short_names":["deaf_woman"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":276,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9CF-1F3FB-200D-2640-FE0F","non_qualified":"1F9CF-1F3FB-200D-2640","image":"1f9cf-1f3fb-200d-2640-fe0f.png","sheet_x":46,"sheet_y":57,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9CF-1F3FC-200D-2640-FE0F","non_qualified":"1F9CF-1F3FC-200D-2640","image":"1f9cf-1f3fc-200d-2640-fe0f.png","sheet_x":46,"sheet_y":58,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9CF-1F3FD-200D-2640-FE0F","non_qualified":"1F9CF-1F3FD-200D-2640","image":"1f9cf-1f3fd-200d-2640-fe0f.png","sheet_x":46,"sheet_y":59,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9CF-1F3FE-200D-2640-FE0F","non_qualified":"1F9CF-1F3FE-200D-2640","image":"1f9cf-1f3fe-200d-2640-fe0f.png","sheet_x":46,"sheet_y":60,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9CF-1F3FF-200D-2640-FE0F","non_qualified":"1F9CF-1F3FF-200D-2640","image":"1f9cf-1f3ff-200d-2640-fe0f.png","sheet_x":47,"sheet_y":0,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"DEAF MAN","unified":"1F9CF-200D-2642-FE0F","non_qualified":"1F9CF-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9cf-200d-2642-fe0f.png","sheet_x":47,"sheet_y":1,"short_name":"deaf_man","short_names":["deaf_man"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":275,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9CF-1F3FB-200D-2642-FE0F","non_qualified":"1F9CF-1F3FB-200D-2642","image":"1f9cf-1f3fb-200d-2642-fe0f.png","sheet_x":47,"sheet_y":2,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9CF-1F3FC-200D-2642-FE0F","non_qualified":"1F9CF-1F3FC-200D-2642","image":"1f9cf-1f3fc-200d-2642-fe0f.png","sheet_x":47,"sheet_y":3,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9CF-1F3FD-200D-2642-FE0F","non_qualified":"1F9CF-1F3FD-200D-2642","image":"1f9cf-1f3fd-200d-2642-fe0f.png","sheet_x":47,"sheet_y":4,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9CF-1F3FE-200D-2642-FE0F","non_qualified":"1F9CF-1F3FE-200D-2642","image":"1f9cf-1f3fe-200d-2642-fe0f.png","sheet_x":47,"sheet_y":5,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9CF-1F3FF-200D-2642-FE0F","non_qualified":"1F9CF-1F3FF-200D-2642","image":"1f9cf-1f3ff-200d-2642-fe0f.png","sheet_x":47,"sheet_y":6,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"DEAF PERSON","unified":"1F9CF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9cf.png","sheet_x":47,"sheet_y":7,"short_name":"deaf_person","short_names":["deaf_person"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-gesture","sort_order":274,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9CF-1F3FB","non_qualified":null,"image":"1f9cf-1f3fb.png","sheet_x":47,"sheet_y":8,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9CF-1F3FC","non_qualified":null,"image":"1f9cf-1f3fc.png","sheet_x":47,"sheet_y":9,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9CF-1F3FD","non_qualified":null,"image":"1f9cf-1f3fd.png","sheet_x":47,"sheet_y":10,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9CF-1F3FE","non_qualified":null,"image":"1f9cf-1f3fe.png","sheet_x":47,"sheet_y":11,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9CF-1F3FF","non_qualified":null,"image":"1f9cf-1f3ff.png","sheet_x":47,"sheet_y":12,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"FACE WITH MONOCLE","unified":"1F9D0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d0.png","sheet_x":47,"sheet_y":13,"short_name":"face_with_monocle","short_names":["face_with_monocle"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-glasses","sort_order":73,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FARMER","unified":"1F9D1-200D-1F33E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f33e.png","sheet_x":47,"sheet_y":14,"short_name":"farmer","short_names":["farmer"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":298,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F33E","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f33e.png","sheet_x":47,"sheet_y":15,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F33E","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f33e.png","sheet_x":47,"sheet_y":16,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F33E","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f33e.png","sheet_x":47,"sheet_y":17,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F33E","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f33e.png","sheet_x":47,"sheet_y":18,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F33E","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f33e.png","sheet_x":47,"sheet_y":19,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"COOK","unified":"1F9D1-200D-1F373","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f373.png","sheet_x":47,"sheet_y":20,"short_name":"cook","short_names":["cook"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":301,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F373","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f373.png","sheet_x":47,"sheet_y":21,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F373","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f373.png","sheet_x":47,"sheet_y":22,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F373","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f373.png","sheet_x":47,"sheet_y":23,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F373","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f373.png","sheet_x":47,"sheet_y":24,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F373","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f373.png","sheet_x":47,"sheet_y":25,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"PERSON FEEDING BABY","unified":"1F9D1-200D-1F37C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f37c.png","sheet_x":47,"sheet_y":26,"short_name":"person_feeding_baby","short_names":["person_feeding_baby"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":367,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F37C","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f37c.png","sheet_x":47,"sheet_y":27,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F37C","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f37c.png","sheet_x":47,"sheet_y":28,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F37C","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f37c.png","sheet_x":47,"sheet_y":29,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F37C","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f37c.png","sheet_x":47,"sheet_y":30,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F37C","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f37c.png","sheet_x":47,"sheet_y":31,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MX CLAUS","unified":"1F9D1-200D-1F384","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f384.png","sheet_x":47,"sheet_y":32,"short_name":"mx_claus","short_names":["mx_claus"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":371,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F384","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f384.png","sheet_x":47,"sheet_y":33,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F384","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f384.png","sheet_x":47,"sheet_y":34,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F384","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f384.png","sheet_x":47,"sheet_y":35,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F384","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f384.png","sheet_x":47,"sheet_y":36,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F384","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f384.png","sheet_x":47,"sheet_y":37,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"STUDENT","unified":"1F9D1-200D-1F393","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f393.png","sheet_x":47,"sheet_y":38,"short_name":"student","short_names":["student"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":289,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F393","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f393.png","sheet_x":47,"sheet_y":39,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F393","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f393.png","sheet_x":47,"sheet_y":40,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F393","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f393.png","sheet_x":47,"sheet_y":41,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F393","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f393.png","sheet_x":47,"sheet_y":42,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F393","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f393.png","sheet_x":47,"sheet_y":43,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"SINGER","unified":"1F9D1-200D-1F3A4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f3a4.png","sheet_x":47,"sheet_y":44,"short_name":"singer","short_names":["singer"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":319,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F3A4","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f3a4.png","sheet_x":47,"sheet_y":45,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F3A4","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f3a4.png","sheet_x":47,"sheet_y":46,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F3A4","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f3a4.png","sheet_x":47,"sheet_y":47,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F3A4","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f3a4.png","sheet_x":47,"sheet_y":48,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F3A4","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f3a4.png","sheet_x":47,"sheet_y":49,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"ARTIST","unified":"1F9D1-200D-1F3A8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f3a8.png","sheet_x":47,"sheet_y":50,"short_name":"artist","short_names":["artist"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":322,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F3A8","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f3a8.png","sheet_x":47,"sheet_y":51,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F3A8","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f3a8.png","sheet_x":47,"sheet_y":52,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F3A8","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f3a8.png","sheet_x":47,"sheet_y":53,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F3A8","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f3a8.png","sheet_x":47,"sheet_y":54,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F3A8","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f3a8.png","sheet_x":47,"sheet_y":55,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"TEACHER","unified":"1F9D1-200D-1F3EB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f3eb.png","sheet_x":47,"sheet_y":56,"short_name":"teacher","short_names":["teacher"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":292,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F3EB","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f3eb.png","sheet_x":47,"sheet_y":57,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F3EB","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f3eb.png","sheet_x":47,"sheet_y":58,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F3EB","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f3eb.png","sheet_x":47,"sheet_y":59,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F3EB","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f3eb.png","sheet_x":47,"sheet_y":60,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F3EB","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f3eb.png","sheet_x":48,"sheet_y":0,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"FACTORY WORKER","unified":"1F9D1-200D-1F3ED","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f3ed.png","sheet_x":48,"sheet_y":1,"short_name":"factory_worker","short_names":["factory_worker"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":307,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F3ED","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f3ed.png","sheet_x":48,"sheet_y":2,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F3ED","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f3ed.png","sheet_x":48,"sheet_y":3,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F3ED","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f3ed.png","sheet_x":48,"sheet_y":4,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F3ED","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f3ed.png","sheet_x":48,"sheet_y":5,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F3ED","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f3ed.png","sheet_x":48,"sheet_y":6,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"TECHNOLOGIST","unified":"1F9D1-200D-1F4BB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f4bb.png","sheet_x":48,"sheet_y":7,"short_name":"technologist","short_names":["technologist"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":316,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F4BB","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f4bb.png","sheet_x":48,"sheet_y":8,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F4BB","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f4bb.png","sheet_x":48,"sheet_y":9,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F4BB","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f4bb.png","sheet_x":48,"sheet_y":10,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F4BB","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f4bb.png","sheet_x":48,"sheet_y":11,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F4BB","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f4bb.png","sheet_x":48,"sheet_y":12,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false}}},{"name":"OFFICE WORKER","unified":"1F9D1-200D-1F4BC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f4bc.png","sheet_x":48,"sheet_y":13,"short_name":"office_worker","short_names":["office_worker"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":310,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F4BC","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f4bc.png","sheet_x":48,"sheet_y":14,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F4BC","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f4bc.png","sheet_x":48,"sheet_y":15,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F4BC","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f4bc.png","sheet_x":48,"sheet_y":16,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F4BC","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f4bc.png","sheet_x":48,"sheet_y":17,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F4BC","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f4bc.png","sheet_x":48,"sheet_y":18,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MECHANIC","unified":"1F9D1-200D-1F527","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f527.png","sheet_x":48,"sheet_y":19,"short_name":"mechanic","short_names":["mechanic"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":304,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F527","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f527.png","sheet_x":48,"sheet_y":20,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F527","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f527.png","sheet_x":48,"sheet_y":21,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F527","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f527.png","sheet_x":48,"sheet_y":22,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F527","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f527.png","sheet_x":48,"sheet_y":23,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F527","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f527.png","sheet_x":48,"sheet_y":24,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"SCIENTIST","unified":"1F9D1-200D-1F52C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f52c.png","sheet_x":48,"sheet_y":25,"short_name":"scientist","short_names":["scientist"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":313,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F52C","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f52c.png","sheet_x":48,"sheet_y":26,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F52C","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f52c.png","sheet_x":48,"sheet_y":27,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F52C","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f52c.png","sheet_x":48,"sheet_y":28,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F52C","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f52c.png","sheet_x":48,"sheet_y":29,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F52C","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f52c.png","sheet_x":48,"sheet_y":30,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"ASTRONAUT","unified":"1F9D1-200D-1F680","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f680.png","sheet_x":48,"sheet_y":31,"short_name":"astronaut","short_names":["astronaut"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":328,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F680","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f680.png","sheet_x":48,"sheet_y":32,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F680","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f680.png","sheet_x":48,"sheet_y":33,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F680","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f680.png","sheet_x":48,"sheet_y":34,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F680","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f680.png","sheet_x":48,"sheet_y":35,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F680","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f680.png","sheet_x":48,"sheet_y":36,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"FIREFIGHTER","unified":"1F9D1-200D-1F692","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f692.png","sheet_x":48,"sheet_y":37,"short_name":"firefighter","short_names":["firefighter"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":331,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F692","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f692.png","sheet_x":48,"sheet_y":38,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F692","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f692.png","sheet_x":48,"sheet_y":39,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F692","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f692.png","sheet_x":48,"sheet_y":40,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F692","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f692.png","sheet_x":48,"sheet_y":41,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F692","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f692.png","sheet_x":48,"sheet_y":42,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"PEOPLE HOLDING HANDS","unified":"1F9D1-200D-1F91D-200D-1F9D1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f91d-200d-1f9d1.png","sheet_x":48,"sheet_y":43,"short_name":"people_holding_hands","short_names":["people_holding_hands"],"text":null,"texts":null,"category":"People & Body","subcategory":"family","sort_order":487,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false,"skin_variations":{"1F3FB-1F3FB":{"unified":"1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FB","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb.png","sheet_x":48,"sheet_y":44,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FC":{"unified":"1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FC","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fc.png","sheet_x":48,"sheet_y":45,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FD":{"unified":"1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FD","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fd.png","sheet_x":48,"sheet_y":46,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FE":{"unified":"1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FE","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fe.png","sheet_x":48,"sheet_y":47,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FB-1F3FF":{"unified":"1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FF","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3ff.png","sheet_x":48,"sheet_y":48,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FB":{"unified":"1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FB","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb.png","sheet_x":48,"sheet_y":49,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FC":{"unified":"1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FC","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc.png","sheet_x":48,"sheet_y":50,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FD":{"unified":"1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FD","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fd.png","sheet_x":48,"sheet_y":51,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FE":{"unified":"1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FE","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fe.png","sheet_x":48,"sheet_y":52,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FC-1F3FF":{"unified":"1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FF","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3ff.png","sheet_x":48,"sheet_y":53,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FB":{"unified":"1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FB","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb.png","sheet_x":48,"sheet_y":54,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FC":{"unified":"1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FC","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc.png","sheet_x":48,"sheet_y":55,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FD":{"unified":"1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FD","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd.png","sheet_x":48,"sheet_y":56,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FE":{"unified":"1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FE","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fe.png","sheet_x":48,"sheet_y":57,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FD-1F3FF":{"unified":"1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FF","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3ff.png","sheet_x":48,"sheet_y":58,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FB":{"unified":"1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FB","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb.png","sheet_x":48,"sheet_y":59,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FC":{"unified":"1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FC","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc.png","sheet_x":48,"sheet_y":60,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FD":{"unified":"1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FD","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd.png","sheet_x":49,"sheet_y":0,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FE":{"unified":"1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FE","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe.png","sheet_x":49,"sheet_y":1,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FE-1F3FF":{"unified":"1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FF","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3ff.png","sheet_x":49,"sheet_y":2,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FB":{"unified":"1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FB","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb.png","sheet_x":49,"sheet_y":3,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FC":{"unified":"1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FC","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc.png","sheet_x":49,"sheet_y":4,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FD":{"unified":"1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FD","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd.png","sheet_x":49,"sheet_y":5,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FE":{"unified":"1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FE","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe.png","sheet_x":49,"sheet_y":6,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false},"1F3FF-1F3FF":{"unified":"1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FF","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff.png","sheet_x":49,"sheet_y":7,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":false}}},{"name":"PERSON WITH WHITE CANE","unified":"1F9D1-200D-1F9AF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f9af.png","sheet_x":49,"sheet_y":8,"short_name":"person_with_probing_cane","short_names":["person_with_probing_cane"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":415,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F9AF","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f9af.png","sheet_x":49,"sheet_y":9,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F9AF","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f9af.png","sheet_x":49,"sheet_y":10,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F9AF","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f9af.png","sheet_x":49,"sheet_y":11,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F9AF","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f9af.png","sheet_x":49,"sheet_y":12,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F9AF","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f9af.png","sheet_x":49,"sheet_y":13,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"PERSON: RED HAIR","unified":"1F9D1-200D-1F9B0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f9b0.png","sheet_x":49,"sheet_y":14,"short_name":"red_haired_person","short_names":["red_haired_person"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":244,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F9B0","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f9b0.png","sheet_x":49,"sheet_y":15,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F9B0","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f9b0.png","sheet_x":49,"sheet_y":16,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F9B0","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f9b0.png","sheet_x":49,"sheet_y":17,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F9B0","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f9b0.png","sheet_x":49,"sheet_y":18,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F9B0","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f9b0.png","sheet_x":49,"sheet_y":19,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"PERSON: CURLY HAIR","unified":"1F9D1-200D-1F9B1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f9b1.png","sheet_x":49,"sheet_y":20,"short_name":"curly_haired_person","short_names":["curly_haired_person"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":246,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F9B1","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f9b1.png","sheet_x":49,"sheet_y":21,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F9B1","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f9b1.png","sheet_x":49,"sheet_y":22,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F9B1","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f9b1.png","sheet_x":49,"sheet_y":23,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F9B1","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f9b1.png","sheet_x":49,"sheet_y":24,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F9B1","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f9b1.png","sheet_x":49,"sheet_y":25,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"PERSON: BALD","unified":"1F9D1-200D-1F9B2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f9b2.png","sheet_x":49,"sheet_y":26,"short_name":"bald_person","short_names":["bald_person"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":250,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F9B2","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f9b2.png","sheet_x":49,"sheet_y":27,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F9B2","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f9b2.png","sheet_x":49,"sheet_y":28,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F9B2","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f9b2.png","sheet_x":49,"sheet_y":29,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F9B2","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f9b2.png","sheet_x":49,"sheet_y":30,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F9B2","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f9b2.png","sheet_x":49,"sheet_y":31,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"PERSON: WHITE HAIR","unified":"1F9D1-200D-1F9B3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f9b3.png","sheet_x":49,"sheet_y":32,"short_name":"white_haired_person","short_names":["white_haired_person"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":248,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F9B3","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f9b3.png","sheet_x":49,"sheet_y":33,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F9B3","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f9b3.png","sheet_x":49,"sheet_y":34,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F9B3","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f9b3.png","sheet_x":49,"sheet_y":35,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F9B3","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f9b3.png","sheet_x":49,"sheet_y":36,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F9B3","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f9b3.png","sheet_x":49,"sheet_y":37,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"PERSON IN MOTORIZED WHEELCHAIR","unified":"1F9D1-200D-1F9BC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f9bc.png","sheet_x":49,"sheet_y":38,"short_name":"person_in_motorized_wheelchair","short_names":["person_in_motorized_wheelchair"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":418,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F9BC","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f9bc.png","sheet_x":49,"sheet_y":39,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F9BC","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f9bc.png","sheet_x":49,"sheet_y":40,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F9BC","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f9bc.png","sheet_x":49,"sheet_y":41,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F9BC","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f9bc.png","sheet_x":49,"sheet_y":42,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F9BC","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f9bc.png","sheet_x":49,"sheet_y":43,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"PERSON IN MANUAL WHEELCHAIR","unified":"1F9D1-200D-1F9BD","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-1f9bd.png","sheet_x":49,"sheet_y":44,"short_name":"person_in_manual_wheelchair","short_names":["person_in_manual_wheelchair"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":421,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-1F9BD","non_qualified":null,"image":"1f9d1-1f3fb-200d-1f9bd.png","sheet_x":49,"sheet_y":45,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-1F9BD","non_qualified":null,"image":"1f9d1-1f3fc-200d-1f9bd.png","sheet_x":49,"sheet_y":46,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-1F9BD","non_qualified":null,"image":"1f9d1-1f3fd-200d-1f9bd.png","sheet_x":49,"sheet_y":47,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-1F9BD","non_qualified":null,"image":"1f9d1-1f3fe-200d-1f9bd.png","sheet_x":49,"sheet_y":48,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-1F9BD","non_qualified":null,"image":"1f9d1-1f3ff-200d-1f9bd.png","sheet_x":49,"sheet_y":49,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"HEALTH WORKER","unified":"1F9D1-200D-2695-FE0F","non_qualified":"1F9D1-200D-2695","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-2695-fe0f.png","sheet_x":49,"sheet_y":50,"short_name":"health_worker","short_names":["health_worker"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":286,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-2695-FE0F","non_qualified":"1F9D1-1F3FB-200D-2695","image":"1f9d1-1f3fb-200d-2695-fe0f.png","sheet_x":49,"sheet_y":51,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-2695-FE0F","non_qualified":"1F9D1-1F3FC-200D-2695","image":"1f9d1-1f3fc-200d-2695-fe0f.png","sheet_x":49,"sheet_y":52,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-2695-FE0F","non_qualified":"1F9D1-1F3FD-200D-2695","image":"1f9d1-1f3fd-200d-2695-fe0f.png","sheet_x":49,"sheet_y":53,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-2695-FE0F","non_qualified":"1F9D1-1F3FE-200D-2695","image":"1f9d1-1f3fe-200d-2695-fe0f.png","sheet_x":49,"sheet_y":54,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-2695-FE0F","non_qualified":"1F9D1-1F3FF-200D-2695","image":"1f9d1-1f3ff-200d-2695-fe0f.png","sheet_x":49,"sheet_y":55,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"JUDGE","unified":"1F9D1-200D-2696-FE0F","non_qualified":"1F9D1-200D-2696","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-2696-fe0f.png","sheet_x":49,"sheet_y":56,"short_name":"judge","short_names":["judge"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":295,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-2696-FE0F","non_qualified":"1F9D1-1F3FB-200D-2696","image":"1f9d1-1f3fb-200d-2696-fe0f.png","sheet_x":49,"sheet_y":57,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-2696-FE0F","non_qualified":"1F9D1-1F3FC-200D-2696","image":"1f9d1-1f3fc-200d-2696-fe0f.png","sheet_x":49,"sheet_y":58,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-2696-FE0F","non_qualified":"1F9D1-1F3FD-200D-2696","image":"1f9d1-1f3fd-200d-2696-fe0f.png","sheet_x":49,"sheet_y":59,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-2696-FE0F","non_qualified":"1F9D1-1F3FE-200D-2696","image":"1f9d1-1f3fe-200d-2696-fe0f.png","sheet_x":49,"sheet_y":60,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-2696-FE0F","non_qualified":"1F9D1-1F3FF-200D-2696","image":"1f9d1-1f3ff-200d-2696-fe0f.png","sheet_x":50,"sheet_y":0,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"PILOT","unified":"1F9D1-200D-2708-FE0F","non_qualified":"1F9D1-200D-2708","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1-200d-2708-fe0f.png","sheet_x":50,"sheet_y":1,"short_name":"pilot","short_names":["pilot"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":325,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB-200D-2708-FE0F","non_qualified":"1F9D1-1F3FB-200D-2708","image":"1f9d1-1f3fb-200d-2708-fe0f.png","sheet_x":50,"sheet_y":2,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D1-1F3FC-200D-2708-FE0F","non_qualified":"1F9D1-1F3FC-200D-2708","image":"1f9d1-1f3fc-200d-2708-fe0f.png","sheet_x":50,"sheet_y":3,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D1-1F3FD-200D-2708-FE0F","non_qualified":"1F9D1-1F3FD-200D-2708","image":"1f9d1-1f3fd-200d-2708-fe0f.png","sheet_x":50,"sheet_y":4,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D1-1F3FE-200D-2708-FE0F","non_qualified":"1F9D1-1F3FE-200D-2708","image":"1f9d1-1f3fe-200d-2708-fe0f.png","sheet_x":50,"sheet_y":5,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D1-1F3FF-200D-2708-FE0F","non_qualified":"1F9D1-1F3FF-200D-2708","image":"1f9d1-1f3ff-200d-2708-fe0f.png","sheet_x":50,"sheet_y":6,"added_in":"12.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"ADULT","unified":"1F9D1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d1.png","sheet_x":50,"sheet_y":7,"short_name":"adult","short_names":["adult"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":232,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D1-1F3FB","non_qualified":null,"image":"1f9d1-1f3fb.png","sheet_x":50,"sheet_y":8,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D1-1F3FC","non_qualified":null,"image":"1f9d1-1f3fc.png","sheet_x":50,"sheet_y":9,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D1-1F3FD","non_qualified":null,"image":"1f9d1-1f3fd.png","sheet_x":50,"sheet_y":10,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D1-1F3FE","non_qualified":null,"image":"1f9d1-1f3fe.png","sheet_x":50,"sheet_y":11,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D1-1F3FF","non_qualified":null,"image":"1f9d1-1f3ff.png","sheet_x":50,"sheet_y":12,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"CHILD","unified":"1F9D2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d2.png","sheet_x":50,"sheet_y":13,"short_name":"child","short_names":["child"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":229,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D2-1F3FB","non_qualified":null,"image":"1f9d2-1f3fb.png","sheet_x":50,"sheet_y":14,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D2-1F3FC","non_qualified":null,"image":"1f9d2-1f3fc.png","sheet_x":50,"sheet_y":15,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D2-1F3FD","non_qualified":null,"image":"1f9d2-1f3fd.png","sheet_x":50,"sheet_y":16,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D2-1F3FE","non_qualified":null,"image":"1f9d2-1f3fe.png","sheet_x":50,"sheet_y":17,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D2-1F3FF","non_qualified":null,"image":"1f9d2-1f3ff.png","sheet_x":50,"sheet_y":18,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"OLDER ADULT","unified":"1F9D3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d3.png","sheet_x":50,"sheet_y":19,"short_name":"older_adult","short_names":["older_adult"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":253,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D3-1F3FB","non_qualified":null,"image":"1f9d3-1f3fb.png","sheet_x":50,"sheet_y":20,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D3-1F3FC","non_qualified":null,"image":"1f9d3-1f3fc.png","sheet_x":50,"sheet_y":21,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D3-1F3FD","non_qualified":null,"image":"1f9d3-1f3fd.png","sheet_x":50,"sheet_y":22,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D3-1F3FE","non_qualified":null,"image":"1f9d3-1f3fe.png","sheet_x":50,"sheet_y":23,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D3-1F3FF","non_qualified":null,"image":"1f9d3-1f3ff.png","sheet_x":50,"sheet_y":24,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN: BEARD","unified":"1F9D4-200D-2640-FE0F","non_qualified":"1F9D4-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d4-200d-2640-fe0f.png","sheet_x":50,"sheet_y":25,"short_name":"woman_with_beard","short_names":["woman_with_beard"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":237,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D4-1F3FB-200D-2640-FE0F","non_qualified":"1F9D4-1F3FB-200D-2640","image":"1f9d4-1f3fb-200d-2640-fe0f.png","sheet_x":50,"sheet_y":26,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D4-1F3FC-200D-2640-FE0F","non_qualified":"1F9D4-1F3FC-200D-2640","image":"1f9d4-1f3fc-200d-2640-fe0f.png","sheet_x":50,"sheet_y":27,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D4-1F3FD-200D-2640-FE0F","non_qualified":"1F9D4-1F3FD-200D-2640","image":"1f9d4-1f3fd-200d-2640-fe0f.png","sheet_x":50,"sheet_y":28,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D4-1F3FE-200D-2640-FE0F","non_qualified":"1F9D4-1F3FE-200D-2640","image":"1f9d4-1f3fe-200d-2640-fe0f.png","sheet_x":50,"sheet_y":29,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D4-1F3FF-200D-2640-FE0F","non_qualified":"1F9D4-1F3FF-200D-2640","image":"1f9d4-1f3ff-200d-2640-fe0f.png","sheet_x":50,"sheet_y":30,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN: BEARD","unified":"1F9D4-200D-2642-FE0F","non_qualified":"1F9D4-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d4-200d-2642-fe0f.png","sheet_x":50,"sheet_y":31,"short_name":"man_with_beard","short_names":["man_with_beard"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":236,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D4-1F3FB-200D-2642-FE0F","non_qualified":"1F9D4-1F3FB-200D-2642","image":"1f9d4-1f3fb-200d-2642-fe0f.png","sheet_x":50,"sheet_y":32,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D4-1F3FC-200D-2642-FE0F","non_qualified":"1F9D4-1F3FC-200D-2642","image":"1f9d4-1f3fc-200d-2642-fe0f.png","sheet_x":50,"sheet_y":33,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D4-1F3FD-200D-2642-FE0F","non_qualified":"1F9D4-1F3FD-200D-2642","image":"1f9d4-1f3fd-200d-2642-fe0f.png","sheet_x":50,"sheet_y":34,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D4-1F3FE-200D-2642-FE0F","non_qualified":"1F9D4-1F3FE-200D-2642","image":"1f9d4-1f3fe-200d-2642-fe0f.png","sheet_x":50,"sheet_y":35,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D4-1F3FF-200D-2642-FE0F","non_qualified":"1F9D4-1F3FF-200D-2642","image":"1f9d4-1f3ff-200d-2642-fe0f.png","sheet_x":50,"sheet_y":36,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"BEARDED PERSON","unified":"1F9D4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d4.png","sheet_x":50,"sheet_y":37,"short_name":"bearded_person","short_names":["bearded_person"],"text":null,"texts":null,"category":"People & Body","subcategory":"person","sort_order":235,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D4-1F3FB","non_qualified":null,"image":"1f9d4-1f3fb.png","sheet_x":50,"sheet_y":38,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D4-1F3FC","non_qualified":null,"image":"1f9d4-1f3fc.png","sheet_x":50,"sheet_y":39,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D4-1F3FD","non_qualified":null,"image":"1f9d4-1f3fd.png","sheet_x":50,"sheet_y":40,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D4-1F3FE","non_qualified":null,"image":"1f9d4-1f3fe.png","sheet_x":50,"sheet_y":41,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D4-1F3FF","non_qualified":null,"image":"1f9d4-1f3ff.png","sheet_x":50,"sheet_y":42,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"PERSON WITH HEADSCARF","unified":"1F9D5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d5.png","sheet_x":50,"sheet_y":43,"short_name":"person_with_headscarf","short_names":["person_with_headscarf"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":354,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D5-1F3FB","non_qualified":null,"image":"1f9d5-1f3fb.png","sheet_x":50,"sheet_y":44,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D5-1F3FC","non_qualified":null,"image":"1f9d5-1f3fc.png","sheet_x":50,"sheet_y":45,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D5-1F3FD","non_qualified":null,"image":"1f9d5-1f3fd.png","sheet_x":50,"sheet_y":46,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D5-1F3FE","non_qualified":null,"image":"1f9d5-1f3fe.png","sheet_x":50,"sheet_y":47,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D5-1F3FF","non_qualified":null,"image":"1f9d5-1f3ff.png","sheet_x":50,"sheet_y":48,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WOMAN IN STEAMY ROOM","unified":"1F9D6-200D-2640-FE0F","non_qualified":"1F9D6-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d6-200d-2640-fe0f.png","sheet_x":50,"sheet_y":49,"short_name":"woman_in_steamy_room","short_names":["woman_in_steamy_room"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":435,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D6-1F3FB-200D-2640-FE0F","non_qualified":"1F9D6-1F3FB-200D-2640","image":"1f9d6-1f3fb-200d-2640-fe0f.png","sheet_x":50,"sheet_y":50,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D6-1F3FC-200D-2640-FE0F","non_qualified":"1F9D6-1F3FC-200D-2640","image":"1f9d6-1f3fc-200d-2640-fe0f.png","sheet_x":50,"sheet_y":51,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D6-1F3FD-200D-2640-FE0F","non_qualified":"1F9D6-1F3FD-200D-2640","image":"1f9d6-1f3fd-200d-2640-fe0f.png","sheet_x":50,"sheet_y":52,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D6-1F3FE-200D-2640-FE0F","non_qualified":"1F9D6-1F3FE-200D-2640","image":"1f9d6-1f3fe-200d-2640-fe0f.png","sheet_x":50,"sheet_y":53,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D6-1F3FF-200D-2640-FE0F","non_qualified":"1F9D6-1F3FF-200D-2640","image":"1f9d6-1f3ff-200d-2640-fe0f.png","sheet_x":50,"sheet_y":54,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN IN STEAMY ROOM","unified":"1F9D6-200D-2642-FE0F","non_qualified":"1F9D6-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d6-200d-2642-fe0f.png","sheet_x":50,"sheet_y":55,"short_name":"man_in_steamy_room","short_names":["man_in_steamy_room"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":434,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D6-1F3FB-200D-2642-FE0F","non_qualified":"1F9D6-1F3FB-200D-2642","image":"1f9d6-1f3fb-200d-2642-fe0f.png","sheet_x":50,"sheet_y":56,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9D6-1F3FB"},"1F3FC":{"unified":"1F9D6-1F3FC-200D-2642-FE0F","non_qualified":"1F9D6-1F3FC-200D-2642","image":"1f9d6-1f3fc-200d-2642-fe0f.png","sheet_x":50,"sheet_y":57,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9D6-1F3FC"},"1F3FD":{"unified":"1F9D6-1F3FD-200D-2642-FE0F","non_qualified":"1F9D6-1F3FD-200D-2642","image":"1f9d6-1f3fd-200d-2642-fe0f.png","sheet_x":50,"sheet_y":58,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9D6-1F3FD"},"1F3FE":{"unified":"1F9D6-1F3FE-200D-2642-FE0F","non_qualified":"1F9D6-1F3FE-200D-2642","image":"1f9d6-1f3fe-200d-2642-fe0f.png","sheet_x":50,"sheet_y":59,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9D6-1F3FE"},"1F3FF":{"unified":"1F9D6-1F3FF-200D-2642-FE0F","non_qualified":"1F9D6-1F3FF-200D-2642","image":"1f9d6-1f3ff-200d-2642-fe0f.png","sheet_x":50,"sheet_y":60,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9D6-1F3FF"}},"obsoletes":"1F9D6"},{"name":"PERSON IN STEAMY ROOM","unified":"1F9D6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d6.png","sheet_x":51,"sheet_y":0,"short_name":"person_in_steamy_room","short_names":["person_in_steamy_room"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":433,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D6-1F3FB","non_qualified":null,"image":"1f9d6-1f3fb.png","sheet_x":51,"sheet_y":1,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9D6-1F3FB-200D-2642-FE0F"},"1F3FC":{"unified":"1F9D6-1F3FC","non_qualified":null,"image":"1f9d6-1f3fc.png","sheet_x":51,"sheet_y":2,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9D6-1F3FC-200D-2642-FE0F"},"1F3FD":{"unified":"1F9D6-1F3FD","non_qualified":null,"image":"1f9d6-1f3fd.png","sheet_x":51,"sheet_y":3,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9D6-1F3FD-200D-2642-FE0F"},"1F3FE":{"unified":"1F9D6-1F3FE","non_qualified":null,"image":"1f9d6-1f3fe.png","sheet_x":51,"sheet_y":4,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9D6-1F3FE-200D-2642-FE0F"},"1F3FF":{"unified":"1F9D6-1F3FF","non_qualified":null,"image":"1f9d6-1f3ff.png","sheet_x":51,"sheet_y":5,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9D6-1F3FF-200D-2642-FE0F"}},"obsoleted_by":"1F9D6-200D-2642-FE0F"},{"name":"WOMAN CLIMBING","unified":"1F9D7-200D-2640-FE0F","non_qualified":"1F9D7-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d7-200d-2640-fe0f.png","sheet_x":51,"sheet_y":6,"short_name":"woman_climbing","short_names":["woman_climbing"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":438,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D7-1F3FB-200D-2640-FE0F","non_qualified":"1F9D7-1F3FB-200D-2640","image":"1f9d7-1f3fb-200d-2640-fe0f.png","sheet_x":51,"sheet_y":7,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9D7-1F3FB"},"1F3FC":{"unified":"1F9D7-1F3FC-200D-2640-FE0F","non_qualified":"1F9D7-1F3FC-200D-2640","image":"1f9d7-1f3fc-200d-2640-fe0f.png","sheet_x":51,"sheet_y":8,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9D7-1F3FC"},"1F3FD":{"unified":"1F9D7-1F3FD-200D-2640-FE0F","non_qualified":"1F9D7-1F3FD-200D-2640","image":"1f9d7-1f3fd-200d-2640-fe0f.png","sheet_x":51,"sheet_y":9,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9D7-1F3FD"},"1F3FE":{"unified":"1F9D7-1F3FE-200D-2640-FE0F","non_qualified":"1F9D7-1F3FE-200D-2640","image":"1f9d7-1f3fe-200d-2640-fe0f.png","sheet_x":51,"sheet_y":10,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9D7-1F3FE"},"1F3FF":{"unified":"1F9D7-1F3FF-200D-2640-FE0F","non_qualified":"1F9D7-1F3FF-200D-2640","image":"1f9d7-1f3ff-200d-2640-fe0f.png","sheet_x":51,"sheet_y":11,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9D7-1F3FF"}},"obsoletes":"1F9D7"},{"name":"MAN CLIMBING","unified":"1F9D7-200D-2642-FE0F","non_qualified":"1F9D7-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d7-200d-2642-fe0f.png","sheet_x":51,"sheet_y":12,"short_name":"man_climbing","short_names":["man_climbing"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":437,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D7-1F3FB-200D-2642-FE0F","non_qualified":"1F9D7-1F3FB-200D-2642","image":"1f9d7-1f3fb-200d-2642-fe0f.png","sheet_x":51,"sheet_y":13,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D7-1F3FC-200D-2642-FE0F","non_qualified":"1F9D7-1F3FC-200D-2642","image":"1f9d7-1f3fc-200d-2642-fe0f.png","sheet_x":51,"sheet_y":14,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D7-1F3FD-200D-2642-FE0F","non_qualified":"1F9D7-1F3FD-200D-2642","image":"1f9d7-1f3fd-200d-2642-fe0f.png","sheet_x":51,"sheet_y":15,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D7-1F3FE-200D-2642-FE0F","non_qualified":"1F9D7-1F3FE-200D-2642","image":"1f9d7-1f3fe-200d-2642-fe0f.png","sheet_x":51,"sheet_y":16,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D7-1F3FF-200D-2642-FE0F","non_qualified":"1F9D7-1F3FF-200D-2642","image":"1f9d7-1f3ff-200d-2642-fe0f.png","sheet_x":51,"sheet_y":17,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"PERSON CLIMBING","unified":"1F9D7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d7.png","sheet_x":51,"sheet_y":18,"short_name":"person_climbing","short_names":["person_climbing"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-activity","sort_order":436,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D7-1F3FB","non_qualified":null,"image":"1f9d7-1f3fb.png","sheet_x":51,"sheet_y":19,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9D7-1F3FB-200D-2640-FE0F"},"1F3FC":{"unified":"1F9D7-1F3FC","non_qualified":null,"image":"1f9d7-1f3fc.png","sheet_x":51,"sheet_y":20,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9D7-1F3FC-200D-2640-FE0F"},"1F3FD":{"unified":"1F9D7-1F3FD","non_qualified":null,"image":"1f9d7-1f3fd.png","sheet_x":51,"sheet_y":21,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9D7-1F3FD-200D-2640-FE0F"},"1F3FE":{"unified":"1F9D7-1F3FE","non_qualified":null,"image":"1f9d7-1f3fe.png","sheet_x":51,"sheet_y":22,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9D7-1F3FE-200D-2640-FE0F"},"1F3FF":{"unified":"1F9D7-1F3FF","non_qualified":null,"image":"1f9d7-1f3ff.png","sheet_x":51,"sheet_y":23,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9D7-1F3FF-200D-2640-FE0F"}},"obsoleted_by":"1F9D7-200D-2640-FE0F"},{"name":"WOMAN IN LOTUS POSITION","unified":"1F9D8-200D-2640-FE0F","non_qualified":"1F9D8-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d8-200d-2640-fe0f.png","sheet_x":51,"sheet_y":24,"short_name":"woman_in_lotus_position","short_names":["woman_in_lotus_position"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-resting","sort_order":484,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D8-1F3FB-200D-2640-FE0F","non_qualified":"1F9D8-1F3FB-200D-2640","image":"1f9d8-1f3fb-200d-2640-fe0f.png","sheet_x":51,"sheet_y":25,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9D8-1F3FB"},"1F3FC":{"unified":"1F9D8-1F3FC-200D-2640-FE0F","non_qualified":"1F9D8-1F3FC-200D-2640","image":"1f9d8-1f3fc-200d-2640-fe0f.png","sheet_x":51,"sheet_y":26,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9D8-1F3FC"},"1F3FD":{"unified":"1F9D8-1F3FD-200D-2640-FE0F","non_qualified":"1F9D8-1F3FD-200D-2640","image":"1f9d8-1f3fd-200d-2640-fe0f.png","sheet_x":51,"sheet_y":27,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9D8-1F3FD"},"1F3FE":{"unified":"1F9D8-1F3FE-200D-2640-FE0F","non_qualified":"1F9D8-1F3FE-200D-2640","image":"1f9d8-1f3fe-200d-2640-fe0f.png","sheet_x":51,"sheet_y":28,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9D8-1F3FE"},"1F3FF":{"unified":"1F9D8-1F3FF-200D-2640-FE0F","non_qualified":"1F9D8-1F3FF-200D-2640","image":"1f9d8-1f3ff-200d-2640-fe0f.png","sheet_x":51,"sheet_y":29,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9D8-1F3FF"}},"obsoletes":"1F9D8"},{"name":"MAN IN LOTUS POSITION","unified":"1F9D8-200D-2642-FE0F","non_qualified":"1F9D8-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d8-200d-2642-fe0f.png","sheet_x":51,"sheet_y":30,"short_name":"man_in_lotus_position","short_names":["man_in_lotus_position"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-resting","sort_order":483,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D8-1F3FB-200D-2642-FE0F","non_qualified":"1F9D8-1F3FB-200D-2642","image":"1f9d8-1f3fb-200d-2642-fe0f.png","sheet_x":51,"sheet_y":31,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D8-1F3FC-200D-2642-FE0F","non_qualified":"1F9D8-1F3FC-200D-2642","image":"1f9d8-1f3fc-200d-2642-fe0f.png","sheet_x":51,"sheet_y":32,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D8-1F3FD-200D-2642-FE0F","non_qualified":"1F9D8-1F3FD-200D-2642","image":"1f9d8-1f3fd-200d-2642-fe0f.png","sheet_x":51,"sheet_y":33,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D8-1F3FE-200D-2642-FE0F","non_qualified":"1F9D8-1F3FE-200D-2642","image":"1f9d8-1f3fe-200d-2642-fe0f.png","sheet_x":51,"sheet_y":34,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D8-1F3FF-200D-2642-FE0F","non_qualified":"1F9D8-1F3FF-200D-2642","image":"1f9d8-1f3ff-200d-2642-fe0f.png","sheet_x":51,"sheet_y":35,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"PERSON IN LOTUS POSITION","unified":"1F9D8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d8.png","sheet_x":51,"sheet_y":36,"short_name":"person_in_lotus_position","short_names":["person_in_lotus_position"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-resting","sort_order":482,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D8-1F3FB","non_qualified":null,"image":"1f9d8-1f3fb.png","sheet_x":51,"sheet_y":37,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9D8-1F3FB-200D-2640-FE0F"},"1F3FC":{"unified":"1F9D8-1F3FC","non_qualified":null,"image":"1f9d8-1f3fc.png","sheet_x":51,"sheet_y":38,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9D8-1F3FC-200D-2640-FE0F"},"1F3FD":{"unified":"1F9D8-1F3FD","non_qualified":null,"image":"1f9d8-1f3fd.png","sheet_x":51,"sheet_y":39,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9D8-1F3FD-200D-2640-FE0F"},"1F3FE":{"unified":"1F9D8-1F3FE","non_qualified":null,"image":"1f9d8-1f3fe.png","sheet_x":51,"sheet_y":40,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9D8-1F3FE-200D-2640-FE0F"},"1F3FF":{"unified":"1F9D8-1F3FF","non_qualified":null,"image":"1f9d8-1f3ff.png","sheet_x":51,"sheet_y":41,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9D8-1F3FF-200D-2640-FE0F"}},"obsoleted_by":"1F9D8-200D-2640-FE0F"},{"name":"WOMAN MAGE","unified":"1F9D9-200D-2640-FE0F","non_qualified":"1F9D9-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d9-200d-2640-fe0f.png","sheet_x":51,"sheet_y":42,"short_name":"female_mage","short_names":["female_mage"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":380,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D9-1F3FB-200D-2640-FE0F","non_qualified":"1F9D9-1F3FB-200D-2640","image":"1f9d9-1f3fb-200d-2640-fe0f.png","sheet_x":51,"sheet_y":43,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9D9-1F3FB"},"1F3FC":{"unified":"1F9D9-1F3FC-200D-2640-FE0F","non_qualified":"1F9D9-1F3FC-200D-2640","image":"1f9d9-1f3fc-200d-2640-fe0f.png","sheet_x":51,"sheet_y":44,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9D9-1F3FC"},"1F3FD":{"unified":"1F9D9-1F3FD-200D-2640-FE0F","non_qualified":"1F9D9-1F3FD-200D-2640","image":"1f9d9-1f3fd-200d-2640-fe0f.png","sheet_x":51,"sheet_y":45,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9D9-1F3FD"},"1F3FE":{"unified":"1F9D9-1F3FE-200D-2640-FE0F","non_qualified":"1F9D9-1F3FE-200D-2640","image":"1f9d9-1f3fe-200d-2640-fe0f.png","sheet_x":51,"sheet_y":46,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9D9-1F3FE"},"1F3FF":{"unified":"1F9D9-1F3FF-200D-2640-FE0F","non_qualified":"1F9D9-1F3FF-200D-2640","image":"1f9d9-1f3ff-200d-2640-fe0f.png","sheet_x":51,"sheet_y":47,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9D9-1F3FF"}},"obsoletes":"1F9D9"},{"name":"MAN MAGE","unified":"1F9D9-200D-2642-FE0F","non_qualified":"1F9D9-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d9-200d-2642-fe0f.png","sheet_x":51,"sheet_y":48,"short_name":"male_mage","short_names":["male_mage"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":379,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D9-1F3FB-200D-2642-FE0F","non_qualified":"1F9D9-1F3FB-200D-2642","image":"1f9d9-1f3fb-200d-2642-fe0f.png","sheet_x":51,"sheet_y":49,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9D9-1F3FC-200D-2642-FE0F","non_qualified":"1F9D9-1F3FC-200D-2642","image":"1f9d9-1f3fc-200d-2642-fe0f.png","sheet_x":51,"sheet_y":50,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9D9-1F3FD-200D-2642-FE0F","non_qualified":"1F9D9-1F3FD-200D-2642","image":"1f9d9-1f3fd-200d-2642-fe0f.png","sheet_x":51,"sheet_y":51,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9D9-1F3FE-200D-2642-FE0F","non_qualified":"1F9D9-1F3FE-200D-2642","image":"1f9d9-1f3fe-200d-2642-fe0f.png","sheet_x":51,"sheet_y":52,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9D9-1F3FF-200D-2642-FE0F","non_qualified":"1F9D9-1F3FF-200D-2642","image":"1f9d9-1f3ff-200d-2642-fe0f.png","sheet_x":51,"sheet_y":53,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAGE","unified":"1F9D9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9d9.png","sheet_x":51,"sheet_y":54,"short_name":"mage","short_names":["mage"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":378,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9D9-1F3FB","non_qualified":null,"image":"1f9d9-1f3fb.png","sheet_x":51,"sheet_y":55,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9D9-1F3FB-200D-2640-FE0F"},"1F3FC":{"unified":"1F9D9-1F3FC","non_qualified":null,"image":"1f9d9-1f3fc.png","sheet_x":51,"sheet_y":56,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9D9-1F3FC-200D-2640-FE0F"},"1F3FD":{"unified":"1F9D9-1F3FD","non_qualified":null,"image":"1f9d9-1f3fd.png","sheet_x":51,"sheet_y":57,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9D9-1F3FD-200D-2640-FE0F"},"1F3FE":{"unified":"1F9D9-1F3FE","non_qualified":null,"image":"1f9d9-1f3fe.png","sheet_x":51,"sheet_y":58,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9D9-1F3FE-200D-2640-FE0F"},"1F3FF":{"unified":"1F9D9-1F3FF","non_qualified":null,"image":"1f9d9-1f3ff.png","sheet_x":51,"sheet_y":59,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9D9-1F3FF-200D-2640-FE0F"}},"obsoleted_by":"1F9D9-200D-2640-FE0F"},{"name":"WOMAN FAIRY","unified":"1F9DA-200D-2640-FE0F","non_qualified":"1F9DA-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9da-200d-2640-fe0f.png","sheet_x":51,"sheet_y":60,"short_name":"female_fairy","short_names":["female_fairy"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":383,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9DA-1F3FB-200D-2640-FE0F","non_qualified":"1F9DA-1F3FB-200D-2640","image":"1f9da-1f3fb-200d-2640-fe0f.png","sheet_x":52,"sheet_y":0,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9DA-1F3FB"},"1F3FC":{"unified":"1F9DA-1F3FC-200D-2640-FE0F","non_qualified":"1F9DA-1F3FC-200D-2640","image":"1f9da-1f3fc-200d-2640-fe0f.png","sheet_x":52,"sheet_y":1,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9DA-1F3FC"},"1F3FD":{"unified":"1F9DA-1F3FD-200D-2640-FE0F","non_qualified":"1F9DA-1F3FD-200D-2640","image":"1f9da-1f3fd-200d-2640-fe0f.png","sheet_x":52,"sheet_y":2,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9DA-1F3FD"},"1F3FE":{"unified":"1F9DA-1F3FE-200D-2640-FE0F","non_qualified":"1F9DA-1F3FE-200D-2640","image":"1f9da-1f3fe-200d-2640-fe0f.png","sheet_x":52,"sheet_y":3,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9DA-1F3FE"},"1F3FF":{"unified":"1F9DA-1F3FF-200D-2640-FE0F","non_qualified":"1F9DA-1F3FF-200D-2640","image":"1f9da-1f3ff-200d-2640-fe0f.png","sheet_x":52,"sheet_y":4,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9DA-1F3FF"}},"obsoletes":"1F9DA"},{"name":"MAN FAIRY","unified":"1F9DA-200D-2642-FE0F","non_qualified":"1F9DA-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9da-200d-2642-fe0f.png","sheet_x":52,"sheet_y":5,"short_name":"male_fairy","short_names":["male_fairy"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":382,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9DA-1F3FB-200D-2642-FE0F","non_qualified":"1F9DA-1F3FB-200D-2642","image":"1f9da-1f3fb-200d-2642-fe0f.png","sheet_x":52,"sheet_y":6,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9DA-1F3FC-200D-2642-FE0F","non_qualified":"1F9DA-1F3FC-200D-2642","image":"1f9da-1f3fc-200d-2642-fe0f.png","sheet_x":52,"sheet_y":7,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9DA-1F3FD-200D-2642-FE0F","non_qualified":"1F9DA-1F3FD-200D-2642","image":"1f9da-1f3fd-200d-2642-fe0f.png","sheet_x":52,"sheet_y":8,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9DA-1F3FE-200D-2642-FE0F","non_qualified":"1F9DA-1F3FE-200D-2642","image":"1f9da-1f3fe-200d-2642-fe0f.png","sheet_x":52,"sheet_y":9,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9DA-1F3FF-200D-2642-FE0F","non_qualified":"1F9DA-1F3FF-200D-2642","image":"1f9da-1f3ff-200d-2642-fe0f.png","sheet_x":52,"sheet_y":10,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"FAIRY","unified":"1F9DA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9da.png","sheet_x":52,"sheet_y":11,"short_name":"fairy","short_names":["fairy"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":381,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9DA-1F3FB","non_qualified":null,"image":"1f9da-1f3fb.png","sheet_x":52,"sheet_y":12,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9DA-1F3FB-200D-2640-FE0F"},"1F3FC":{"unified":"1F9DA-1F3FC","non_qualified":null,"image":"1f9da-1f3fc.png","sheet_x":52,"sheet_y":13,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9DA-1F3FC-200D-2640-FE0F"},"1F3FD":{"unified":"1F9DA-1F3FD","non_qualified":null,"image":"1f9da-1f3fd.png","sheet_x":52,"sheet_y":14,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9DA-1F3FD-200D-2640-FE0F"},"1F3FE":{"unified":"1F9DA-1F3FE","non_qualified":null,"image":"1f9da-1f3fe.png","sheet_x":52,"sheet_y":15,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9DA-1F3FE-200D-2640-FE0F"},"1F3FF":{"unified":"1F9DA-1F3FF","non_qualified":null,"image":"1f9da-1f3ff.png","sheet_x":52,"sheet_y":16,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9DA-1F3FF-200D-2640-FE0F"}},"obsoleted_by":"1F9DA-200D-2640-FE0F"},{"name":"WOMAN VAMPIRE","unified":"1F9DB-200D-2640-FE0F","non_qualified":"1F9DB-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9db-200d-2640-fe0f.png","sheet_x":52,"sheet_y":17,"short_name":"female_vampire","short_names":["female_vampire"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":386,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9DB-1F3FB-200D-2640-FE0F","non_qualified":"1F9DB-1F3FB-200D-2640","image":"1f9db-1f3fb-200d-2640-fe0f.png","sheet_x":52,"sheet_y":18,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9DB-1F3FB"},"1F3FC":{"unified":"1F9DB-1F3FC-200D-2640-FE0F","non_qualified":"1F9DB-1F3FC-200D-2640","image":"1f9db-1f3fc-200d-2640-fe0f.png","sheet_x":52,"sheet_y":19,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9DB-1F3FC"},"1F3FD":{"unified":"1F9DB-1F3FD-200D-2640-FE0F","non_qualified":"1F9DB-1F3FD-200D-2640","image":"1f9db-1f3fd-200d-2640-fe0f.png","sheet_x":52,"sheet_y":20,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9DB-1F3FD"},"1F3FE":{"unified":"1F9DB-1F3FE-200D-2640-FE0F","non_qualified":"1F9DB-1F3FE-200D-2640","image":"1f9db-1f3fe-200d-2640-fe0f.png","sheet_x":52,"sheet_y":21,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9DB-1F3FE"},"1F3FF":{"unified":"1F9DB-1F3FF-200D-2640-FE0F","non_qualified":"1F9DB-1F3FF-200D-2640","image":"1f9db-1f3ff-200d-2640-fe0f.png","sheet_x":52,"sheet_y":22,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9DB-1F3FF"}},"obsoletes":"1F9DB"},{"name":"MAN VAMPIRE","unified":"1F9DB-200D-2642-FE0F","non_qualified":"1F9DB-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9db-200d-2642-fe0f.png","sheet_x":52,"sheet_y":23,"short_name":"male_vampire","short_names":["male_vampire"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":385,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9DB-1F3FB-200D-2642-FE0F","non_qualified":"1F9DB-1F3FB-200D-2642","image":"1f9db-1f3fb-200d-2642-fe0f.png","sheet_x":52,"sheet_y":24,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9DB-1F3FC-200D-2642-FE0F","non_qualified":"1F9DB-1F3FC-200D-2642","image":"1f9db-1f3fc-200d-2642-fe0f.png","sheet_x":52,"sheet_y":25,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9DB-1F3FD-200D-2642-FE0F","non_qualified":"1F9DB-1F3FD-200D-2642","image":"1f9db-1f3fd-200d-2642-fe0f.png","sheet_x":52,"sheet_y":26,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9DB-1F3FE-200D-2642-FE0F","non_qualified":"1F9DB-1F3FE-200D-2642","image":"1f9db-1f3fe-200d-2642-fe0f.png","sheet_x":52,"sheet_y":27,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9DB-1F3FF-200D-2642-FE0F","non_qualified":"1F9DB-1F3FF-200D-2642","image":"1f9db-1f3ff-200d-2642-fe0f.png","sheet_x":52,"sheet_y":28,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"VAMPIRE","unified":"1F9DB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9db.png","sheet_x":52,"sheet_y":29,"short_name":"vampire","short_names":["vampire"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":384,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9DB-1F3FB","non_qualified":null,"image":"1f9db-1f3fb.png","sheet_x":52,"sheet_y":30,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9DB-1F3FB-200D-2640-FE0F"},"1F3FC":{"unified":"1F9DB-1F3FC","non_qualified":null,"image":"1f9db-1f3fc.png","sheet_x":52,"sheet_y":31,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9DB-1F3FC-200D-2640-FE0F"},"1F3FD":{"unified":"1F9DB-1F3FD","non_qualified":null,"image":"1f9db-1f3fd.png","sheet_x":52,"sheet_y":32,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9DB-1F3FD-200D-2640-FE0F"},"1F3FE":{"unified":"1F9DB-1F3FE","non_qualified":null,"image":"1f9db-1f3fe.png","sheet_x":52,"sheet_y":33,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9DB-1F3FE-200D-2640-FE0F"},"1F3FF":{"unified":"1F9DB-1F3FF","non_qualified":null,"image":"1f9db-1f3ff.png","sheet_x":52,"sheet_y":34,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9DB-1F3FF-200D-2640-FE0F"}},"obsoleted_by":"1F9DB-200D-2640-FE0F"},{"name":"MERMAID","unified":"1F9DC-200D-2640-FE0F","non_qualified":"1F9DC-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9dc-200d-2640-fe0f.png","sheet_x":52,"sheet_y":35,"short_name":"mermaid","short_names":["mermaid"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":389,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9DC-1F3FB-200D-2640-FE0F","non_qualified":"1F9DC-1F3FB-200D-2640","image":"1f9dc-1f3fb-200d-2640-fe0f.png","sheet_x":52,"sheet_y":36,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9DC-1F3FC-200D-2640-FE0F","non_qualified":"1F9DC-1F3FC-200D-2640","image":"1f9dc-1f3fc-200d-2640-fe0f.png","sheet_x":52,"sheet_y":37,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9DC-1F3FD-200D-2640-FE0F","non_qualified":"1F9DC-1F3FD-200D-2640","image":"1f9dc-1f3fd-200d-2640-fe0f.png","sheet_x":52,"sheet_y":38,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9DC-1F3FE-200D-2640-FE0F","non_qualified":"1F9DC-1F3FE-200D-2640","image":"1f9dc-1f3fe-200d-2640-fe0f.png","sheet_x":52,"sheet_y":39,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9DC-1F3FF-200D-2640-FE0F","non_qualified":"1F9DC-1F3FF-200D-2640","image":"1f9dc-1f3ff-200d-2640-fe0f.png","sheet_x":52,"sheet_y":40,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MERMAN","unified":"1F9DC-200D-2642-FE0F","non_qualified":"1F9DC-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9dc-200d-2642-fe0f.png","sheet_x":52,"sheet_y":41,"short_name":"merman","short_names":["merman"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":388,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9DC-1F3FB-200D-2642-FE0F","non_qualified":"1F9DC-1F3FB-200D-2642","image":"1f9dc-1f3fb-200d-2642-fe0f.png","sheet_x":52,"sheet_y":42,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9DC-1F3FB"},"1F3FC":{"unified":"1F9DC-1F3FC-200D-2642-FE0F","non_qualified":"1F9DC-1F3FC-200D-2642","image":"1f9dc-1f3fc-200d-2642-fe0f.png","sheet_x":52,"sheet_y":43,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9DC-1F3FC"},"1F3FD":{"unified":"1F9DC-1F3FD-200D-2642-FE0F","non_qualified":"1F9DC-1F3FD-200D-2642","image":"1f9dc-1f3fd-200d-2642-fe0f.png","sheet_x":52,"sheet_y":44,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9DC-1F3FD"},"1F3FE":{"unified":"1F9DC-1F3FE-200D-2642-FE0F","non_qualified":"1F9DC-1F3FE-200D-2642","image":"1f9dc-1f3fe-200d-2642-fe0f.png","sheet_x":52,"sheet_y":45,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9DC-1F3FE"},"1F3FF":{"unified":"1F9DC-1F3FF-200D-2642-FE0F","non_qualified":"1F9DC-1F3FF-200D-2642","image":"1f9dc-1f3ff-200d-2642-fe0f.png","sheet_x":52,"sheet_y":46,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9DC-1F3FF"}},"obsoletes":"1F9DC"},{"name":"MERPERSON","unified":"1F9DC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9dc.png","sheet_x":52,"sheet_y":47,"short_name":"merperson","short_names":["merperson"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":387,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9DC-1F3FB","non_qualified":null,"image":"1f9dc-1f3fb.png","sheet_x":52,"sheet_y":48,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9DC-1F3FB-200D-2642-FE0F"},"1F3FC":{"unified":"1F9DC-1F3FC","non_qualified":null,"image":"1f9dc-1f3fc.png","sheet_x":52,"sheet_y":49,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9DC-1F3FC-200D-2642-FE0F"},"1F3FD":{"unified":"1F9DC-1F3FD","non_qualified":null,"image":"1f9dc-1f3fd.png","sheet_x":52,"sheet_y":50,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9DC-1F3FD-200D-2642-FE0F"},"1F3FE":{"unified":"1F9DC-1F3FE","non_qualified":null,"image":"1f9dc-1f3fe.png","sheet_x":52,"sheet_y":51,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9DC-1F3FE-200D-2642-FE0F"},"1F3FF":{"unified":"1F9DC-1F3FF","non_qualified":null,"image":"1f9dc-1f3ff.png","sheet_x":52,"sheet_y":52,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9DC-1F3FF-200D-2642-FE0F"}},"obsoleted_by":"1F9DC-200D-2642-FE0F"},{"name":"WOMAN ELF","unified":"1F9DD-200D-2640-FE0F","non_qualified":"1F9DD-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9dd-200d-2640-fe0f.png","sheet_x":52,"sheet_y":53,"short_name":"female_elf","short_names":["female_elf"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":392,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9DD-1F3FB-200D-2640-FE0F","non_qualified":"1F9DD-1F3FB-200D-2640","image":"1f9dd-1f3fb-200d-2640-fe0f.png","sheet_x":52,"sheet_y":54,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1F9DD-1F3FC-200D-2640-FE0F","non_qualified":"1F9DD-1F3FC-200D-2640","image":"1f9dd-1f3fc-200d-2640-fe0f.png","sheet_x":52,"sheet_y":55,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1F9DD-1F3FD-200D-2640-FE0F","non_qualified":"1F9DD-1F3FD-200D-2640","image":"1f9dd-1f3fd-200d-2640-fe0f.png","sheet_x":52,"sheet_y":56,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1F9DD-1F3FE-200D-2640-FE0F","non_qualified":"1F9DD-1F3FE-200D-2640","image":"1f9dd-1f3fe-200d-2640-fe0f.png","sheet_x":52,"sheet_y":57,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1F9DD-1F3FF-200D-2640-FE0F","non_qualified":"1F9DD-1F3FF-200D-2640","image":"1f9dd-1f3ff-200d-2640-fe0f.png","sheet_x":52,"sheet_y":58,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN ELF","unified":"1F9DD-200D-2642-FE0F","non_qualified":"1F9DD-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9dd-200d-2642-fe0f.png","sheet_x":52,"sheet_y":59,"short_name":"male_elf","short_names":["male_elf"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":391,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9DD-1F3FB-200D-2642-FE0F","non_qualified":"1F9DD-1F3FB-200D-2642","image":"1f9dd-1f3fb-200d-2642-fe0f.png","sheet_x":52,"sheet_y":60,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9DD-1F3FB"},"1F3FC":{"unified":"1F9DD-1F3FC-200D-2642-FE0F","non_qualified":"1F9DD-1F3FC-200D-2642","image":"1f9dd-1f3fc-200d-2642-fe0f.png","sheet_x":53,"sheet_y":0,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9DD-1F3FC"},"1F3FD":{"unified":"1F9DD-1F3FD-200D-2642-FE0F","non_qualified":"1F9DD-1F3FD-200D-2642","image":"1f9dd-1f3fd-200d-2642-fe0f.png","sheet_x":53,"sheet_y":1,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9DD-1F3FD"},"1F3FE":{"unified":"1F9DD-1F3FE-200D-2642-FE0F","non_qualified":"1F9DD-1F3FE-200D-2642","image":"1f9dd-1f3fe-200d-2642-fe0f.png","sheet_x":53,"sheet_y":2,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9DD-1F3FE"},"1F3FF":{"unified":"1F9DD-1F3FF-200D-2642-FE0F","non_qualified":"1F9DD-1F3FF-200D-2642","image":"1f9dd-1f3ff-200d-2642-fe0f.png","sheet_x":53,"sheet_y":3,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9DD-1F3FF"}},"obsoletes":"1F9DD"},{"name":"ELF","unified":"1F9DD","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9dd.png","sheet_x":53,"sheet_y":4,"short_name":"elf","short_names":["elf"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":390,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1F9DD-1F3FB","non_qualified":null,"image":"1f9dd-1f3fb.png","sheet_x":53,"sheet_y":5,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9DD-1F3FB-200D-2642-FE0F"},"1F3FC":{"unified":"1F9DD-1F3FC","non_qualified":null,"image":"1f9dd-1f3fc.png","sheet_x":53,"sheet_y":6,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9DD-1F3FC-200D-2642-FE0F"},"1F3FD":{"unified":"1F9DD-1F3FD","non_qualified":null,"image":"1f9dd-1f3fd.png","sheet_x":53,"sheet_y":7,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9DD-1F3FD-200D-2642-FE0F"},"1F3FE":{"unified":"1F9DD-1F3FE","non_qualified":null,"image":"1f9dd-1f3fe.png","sheet_x":53,"sheet_y":8,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9DD-1F3FE-200D-2642-FE0F"},"1F3FF":{"unified":"1F9DD-1F3FF","non_qualified":null,"image":"1f9dd-1f3ff.png","sheet_x":53,"sheet_y":9,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9DD-1F3FF-200D-2642-FE0F"}},"obsoleted_by":"1F9DD-200D-2642-FE0F"},{"name":"WOMAN GENIE","unified":"1F9DE-200D-2640-FE0F","non_qualified":"1F9DE-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9de-200d-2640-fe0f.png","sheet_x":53,"sheet_y":10,"short_name":"female_genie","short_names":["female_genie"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":395,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MAN GENIE","unified":"1F9DE-200D-2642-FE0F","non_qualified":"1F9DE-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9de-200d-2642-fe0f.png","sheet_x":53,"sheet_y":11,"short_name":"male_genie","short_names":["male_genie"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":394,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9DE"},{"name":"GENIE","unified":"1F9DE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9de.png","sheet_x":53,"sheet_y":12,"short_name":"genie","short_names":["genie"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":393,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9DE-200D-2642-FE0F"},{"name":"WOMAN ZOMBIE","unified":"1F9DF-200D-2640-FE0F","non_qualified":"1F9DF-200D-2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9df-200d-2640-fe0f.png","sheet_x":53,"sheet_y":13,"short_name":"female_zombie","short_names":["female_zombie"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":398,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MAN ZOMBIE","unified":"1F9DF-200D-2642-FE0F","non_qualified":"1F9DF-200D-2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9df-200d-2642-fe0f.png","sheet_x":53,"sheet_y":14,"short_name":"male_zombie","short_names":["male_zombie"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":397,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoletes":"1F9DF"},{"name":"ZOMBIE","unified":"1F9DF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9df.png","sheet_x":53,"sheet_y":15,"short_name":"zombie","short_names":["zombie"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-fantasy","sort_order":396,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"obsoleted_by":"1F9DF-200D-2642-FE0F"},{"name":"BRAIN","unified":"1F9E0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9e0.png","sheet_x":53,"sheet_y":16,"short_name":"brain","short_names":["brain"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":218,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ORANGE HEART","unified":"1F9E1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9e1.png","sheet_x":53,"sheet_y":17,"short_name":"orange_heart","short_names":["orange_heart"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":143,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BILLED CAP","unified":"1F9E2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9e2.png","sheet_x":53,"sheet_y":18,"short_name":"billed_cap","short_names":["billed_cap"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1163,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SCARF","unified":"1F9E3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9e3.png","sheet_x":53,"sheet_y":19,"short_name":"scarf","short_names":["scarf"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1131,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GLOVES","unified":"1F9E4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9e4.png","sheet_x":53,"sheet_y":20,"short_name":"gloves","short_names":["gloves"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1132,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"COAT","unified":"1F9E5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9e5.png","sheet_x":53,"sheet_y":21,"short_name":"coat","short_names":["coat"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1133,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SOCKS","unified":"1F9E6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9e6.png","sheet_x":53,"sheet_y":22,"short_name":"socks","short_names":["socks"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1134,"added_in":"5.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RED GIFT ENVELOPE","unified":"1F9E7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9e7.png","sheet_x":53,"sheet_y":23,"short_name":"red_envelope","short_names":["red_envelope"],"text":null,"texts":null,"category":"Activities","subcategory":"event","sort_order":1053,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FIRECRACKER","unified":"1F9E8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9e8.png","sheet_x":53,"sheet_y":24,"short_name":"firecracker","short_names":["firecracker"],"text":null,"texts":null,"category":"Activities","subcategory":"event","sort_order":1042,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"JIGSAW PUZZLE PIECE","unified":"1F9E9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9e9.png","sheet_x":53,"sheet_y":25,"short_name":"jigsaw","short_names":["jigsaw"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1103,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TEST TUBE","unified":"1F9EA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ea.png","sheet_x":53,"sheet_y":26,"short_name":"test_tube","short_names":["test_tube"],"text":null,"texts":null,"category":"Objects","subcategory":"science","sort_order":1337,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PETRI DISH","unified":"1F9EB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9eb.png","sheet_x":53,"sheet_y":27,"short_name":"petri_dish","short_names":["petri_dish"],"text":null,"texts":null,"category":"Objects","subcategory":"science","sort_order":1338,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DNA DOUBLE HELIX","unified":"1F9EC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ec.png","sheet_x":53,"sheet_y":28,"short_name":"dna","short_names":["dna"],"text":null,"texts":null,"category":"Objects","subcategory":"science","sort_order":1339,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"COMPASS","unified":"1F9ED","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ed.png","sheet_x":53,"sheet_y":29,"short_name":"compass","short_names":["compass"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-map","sort_order":826,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ABACUS","unified":"1F9EE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ee.png","sheet_x":53,"sheet_y":30,"short_name":"abacus","short_names":["abacus"],"text":null,"texts":null,"category":"Objects","subcategory":"computer","sort_order":1218,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FIRE EXTINGUISHER","unified":"1F9EF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ef.png","sheet_x":53,"sheet_y":31,"short_name":"fire_extinguisher","short_names":["fire_extinguisher"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1373,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TOOLBOX","unified":"1F9F0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9f0.png","sheet_x":53,"sheet_y":32,"short_name":"toolbox","short_names":["toolbox"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1333,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BRICK","unified":"1F9F1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9f1.png","sheet_x":53,"sheet_y":33,"short_name":"bricks","short_names":["bricks"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":839,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MAGNET","unified":"1F9F2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9f2.png","sheet_x":53,"sheet_y":34,"short_name":"magnet","short_names":["magnet"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1334,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LUGGAGE","unified":"1F9F3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9f3.png","sheet_x":53,"sheet_y":35,"short_name":"luggage","short_names":["luggage"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"hotel","sort_order":959,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LOTION BOTTLE","unified":"1F9F4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9f4.png","sheet_x":53,"sheet_y":36,"short_name":"lotion_bottle","short_names":["lotion_bottle"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1363,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SPOOL OF THREAD","unified":"1F9F5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9f5.png","sheet_x":53,"sheet_y":37,"short_name":"thread","short_names":["thread"],"text":null,"texts":null,"category":"Activities","subcategory":"arts & crafts","sort_order":1119,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BALL OF YARN","unified":"1F9F6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9f6.png","sheet_x":53,"sheet_y":38,"short_name":"yarn","short_names":["yarn"],"text":null,"texts":null,"category":"Activities","subcategory":"arts & crafts","sort_order":1121,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SAFETY PIN","unified":"1F9F7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9f7.png","sheet_x":53,"sheet_y":39,"short_name":"safety_pin","short_names":["safety_pin"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1364,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TEDDY BEAR","unified":"1F9F8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9f8.png","sheet_x":53,"sheet_y":40,"short_name":"teddy_bear","short_names":["teddy_bear"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1104,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BROOM","unified":"1F9F9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9f9.png","sheet_x":53,"sheet_y":41,"short_name":"broom","short_names":["broom"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1365,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BASKET","unified":"1F9FA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9fa.png","sheet_x":53,"sheet_y":42,"short_name":"basket","short_names":["basket"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1366,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ROLL OF PAPER","unified":"1F9FB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9fb.png","sheet_x":53,"sheet_y":43,"short_name":"roll_of_paper","short_names":["roll_of_paper"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1367,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BAR OF SOAP","unified":"1F9FC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9fc.png","sheet_x":53,"sheet_y":44,"short_name":"soap","short_names":["soap"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1369,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SPONGE","unified":"1F9FD","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9fd.png","sheet_x":53,"sheet_y":45,"short_name":"sponge","short_names":["sponge"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1372,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RECEIPT","unified":"1F9FE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9fe.png","sheet_x":53,"sheet_y":46,"short_name":"receipt","short_names":["receipt"],"text":null,"texts":null,"category":"Objects","subcategory":"money","sort_order":1260,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NAZAR AMULET","unified":"1F9FF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9ff.png","sheet_x":53,"sheet_y":47,"short_name":"nazar_amulet","short_names":["nazar_amulet"],"text":null,"texts":null,"category":"Objects","subcategory":"other-object","sort_order":1379,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BALLET SHOES","unified":"1FA70","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa70.png","sheet_x":53,"sheet_y":48,"short_name":"ballet_shoes","short_names":["ballet_shoes"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1156,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ONE-PIECE SWIMSUIT","unified":"1FA71","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa71.png","sheet_x":53,"sheet_y":49,"short_name":"one-piece_swimsuit","short_names":["one-piece_swimsuit"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1138,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BRIEFS","unified":"1FA72","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa72.png","sheet_x":53,"sheet_y":50,"short_name":"briefs","short_names":["briefs"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1139,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SHORTS","unified":"1FA73","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa73.png","sheet_x":53,"sheet_y":51,"short_name":"shorts","short_names":["shorts"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1140,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"THONG SANDAL","unified":"1FA74","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa74.png","sheet_x":53,"sheet_y":52,"short_name":"thong_sandal","short_names":["thong_sandal"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1149,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LIGHT BLUE HEART","unified":"1FA75","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa75.png","sheet_x":53,"sheet_y":53,"short_name":"light_blue_heart","short_names":["light_blue_heart"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":147,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},{"name":"GREY HEART","unified":"1FA76","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa76.png","sheet_x":53,"sheet_y":54,"short_name":"grey_heart","short_names":["grey_heart"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":151,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},{"name":"PINK HEART","unified":"1FA77","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa77.png","sheet_x":53,"sheet_y":55,"short_name":"pink_heart","short_names":["pink_heart"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":142,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},{"name":"DROP OF BLOOD","unified":"1FA78","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa78.png","sheet_x":53,"sheet_y":56,"short_name":"drop_of_blood","short_names":["drop_of_blood"],"text":null,"texts":null,"category":"Objects","subcategory":"medical","sort_order":1344,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ADHESIVE BANDAGE","unified":"1FA79","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa79.png","sheet_x":53,"sheet_y":57,"short_name":"adhesive_bandage","short_names":["adhesive_bandage"],"text":null,"texts":null,"category":"Objects","subcategory":"medical","sort_order":1346,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"STETHOSCOPE","unified":"1FA7A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa7a.png","sheet_x":53,"sheet_y":58,"short_name":"stethoscope","short_names":["stethoscope"],"text":null,"texts":null,"category":"Objects","subcategory":"medical","sort_order":1348,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"X-RAY","unified":"1FA7B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa7b.png","sheet_x":53,"sheet_y":59,"short_name":"x-ray","short_names":["x-ray"],"text":null,"texts":null,"category":"Objects","subcategory":"medical","sort_order":1349,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CRUTCH","unified":"1FA7C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa7c.png","sheet_x":53,"sheet_y":60,"short_name":"crutch","short_names":["crutch"],"text":null,"texts":null,"category":"Objects","subcategory":"medical","sort_order":1347,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"YO-YO","unified":"1FA80","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa80.png","sheet_x":54,"sheet_y":0,"short_name":"yo-yo","short_names":["yo-yo"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1093,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"KITE","unified":"1FA81","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa81.png","sheet_x":54,"sheet_y":1,"short_name":"kite","short_names":["kite"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1094,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PARACHUTE","unified":"1FA82","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa82.png","sheet_x":54,"sheet_y":2,"short_name":"parachute","short_names":["parachute"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-air","sort_order":949,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BOOMERANG","unified":"1FA83","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa83.png","sheet_x":54,"sheet_y":3,"short_name":"boomerang","short_names":["boomerang"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1319,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MAGIC WAND","unified":"1FA84","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa84.png","sheet_x":54,"sheet_y":4,"short_name":"magic_wand","short_names":["magic_wand"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1098,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PINATA","unified":"1FA85","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa85.png","sheet_x":54,"sheet_y":5,"short_name":"pinata","short_names":["pinata"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1105,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NESTING DOLLS","unified":"1FA86","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa86.png","sheet_x":54,"sheet_y":6,"short_name":"nesting_dolls","short_names":["nesting_dolls"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1107,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MARACAS","unified":"1FA87","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa87.png","sheet_x":54,"sheet_y":7,"short_name":"maracas","short_names":["maracas"],"text":null,"texts":null,"category":"Objects","subcategory":"musical-instrument","sort_order":1197,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},{"name":"FLUTE","unified":"1FA88","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa88.png","sheet_x":54,"sheet_y":8,"short_name":"flute","short_names":["flute"],"text":null,"texts":null,"category":"Objects","subcategory":"musical-instrument","sort_order":1198,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},{"name":"RINGED PLANET","unified":"1FA90","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa90.png","sheet_x":54,"sheet_y":9,"short_name":"ringed_planet","short_names":["ringed_planet"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1007,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CHAIR","unified":"1FA91","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa91.png","sheet_x":54,"sheet_y":10,"short_name":"chair","short_names":["chair"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1356,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RAZOR","unified":"1FA92","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa92.png","sheet_x":54,"sheet_y":11,"short_name":"razor","short_names":["razor"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1362,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"AXE","unified":"1FA93","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa93.png","sheet_x":54,"sheet_y":12,"short_name":"axe","short_names":["axe"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1312,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DIYA LAMP","unified":"1FA94","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa94.png","sheet_x":54,"sheet_y":13,"short_name":"diya_lamp","short_names":["diya_lamp"],"text":null,"texts":null,"category":"Objects","subcategory":"light & video","sort_order":1234,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BANJO","unified":"1FA95","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa95.png","sheet_x":54,"sheet_y":14,"short_name":"banjo","short_names":["banjo"],"text":null,"texts":null,"category":"Objects","subcategory":"musical-instrument","sort_order":1194,"added_in":"12.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MILITARY HELMET","unified":"1FA96","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa96.png","sheet_x":54,"sheet_y":15,"short_name":"military_helmet","short_names":["military_helmet"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1164,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ACCORDION","unified":"1FA97","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa97.png","sheet_x":54,"sheet_y":16,"short_name":"accordion","short_names":["accordion"],"text":null,"texts":null,"category":"Objects","subcategory":"musical-instrument","sort_order":1189,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LONG DRUM","unified":"1FA98","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa98.png","sheet_x":54,"sheet_y":17,"short_name":"long_drum","short_names":["long_drum"],"text":null,"texts":null,"category":"Objects","subcategory":"musical-instrument","sort_order":1196,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"COIN","unified":"1FA99","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa99.png","sheet_x":54,"sheet_y":18,"short_name":"coin","short_names":["coin"],"text":null,"texts":null,"category":"Objects","subcategory":"money","sort_order":1253,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CARPENTRY SAW","unified":"1FA9A","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa9a.png","sheet_x":54,"sheet_y":19,"short_name":"carpentry_saw","short_names":["carpentry_saw"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1322,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SCREWDRIVER","unified":"1FA9B","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa9b.png","sheet_x":54,"sheet_y":20,"short_name":"screwdriver","short_names":["screwdriver"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1324,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LADDER","unified":"1FA9C","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa9c.png","sheet_x":54,"sheet_y":21,"short_name":"ladder","short_names":["ladder"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1335,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HOOK","unified":"1FA9D","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa9d.png","sheet_x":54,"sheet_y":22,"short_name":"hook","short_names":["hook"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1332,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MIRROR","unified":"1FA9E","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa9e.png","sheet_x":54,"sheet_y":23,"short_name":"mirror","short_names":["mirror"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1352,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WINDOW","unified":"1FA9F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fa9f.png","sheet_x":54,"sheet_y":24,"short_name":"window","short_names":["window"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1353,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PLUNGER","unified":"1FAA0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faa0.png","sheet_x":54,"sheet_y":25,"short_name":"plunger","short_names":["plunger"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1358,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SEWING NEEDLE","unified":"1FAA1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faa1.png","sheet_x":54,"sheet_y":26,"short_name":"sewing_needle","short_names":["sewing_needle"],"text":null,"texts":null,"category":"Activities","subcategory":"arts & crafts","sort_order":1120,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"KNOT","unified":"1FAA2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faa2.png","sheet_x":54,"sheet_y":27,"short_name":"knot","short_names":["knot"],"text":null,"texts":null,"category":"Activities","subcategory":"arts & crafts","sort_order":1122,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BUCKET","unified":"1FAA3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faa3.png","sheet_x":54,"sheet_y":28,"short_name":"bucket","short_names":["bucket"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1368,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MOUSE TRAP","unified":"1FAA4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faa4.png","sheet_x":54,"sheet_y":29,"short_name":"mouse_trap","short_names":["mouse_trap"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1361,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TOOTHBRUSH","unified":"1FAA5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faa5.png","sheet_x":54,"sheet_y":30,"short_name":"toothbrush","short_names":["toothbrush"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1371,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HEADSTONE","unified":"1FAA6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faa6.png","sheet_x":54,"sheet_y":31,"short_name":"headstone","short_names":["headstone"],"text":null,"texts":null,"category":"Objects","subcategory":"other-object","sort_order":1377,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PLACARD","unified":"1FAA7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faa7.png","sheet_x":54,"sheet_y":32,"short_name":"placard","short_names":["placard"],"text":null,"texts":null,"category":"Objects","subcategory":"other-object","sort_order":1382,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ROCK","unified":"1FAA8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faa8.png","sheet_x":54,"sheet_y":33,"short_name":"rock","short_names":["rock"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":840,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MIRROR BALL","unified":"1FAA9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faa9.png","sheet_x":54,"sheet_y":34,"short_name":"mirror_ball","short_names":["mirror_ball"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1106,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"IDENTIFICATION CARD","unified":"1FAAA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faaa.png","sheet_x":54,"sheet_y":35,"short_name":"identification_card","short_names":["identification_card"],"text":null,"texts":null,"category":"Objects","subcategory":"other-object","sort_order":1383,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LOW BATTERY","unified":"1FAAB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faab.png","sheet_x":54,"sheet_y":36,"short_name":"low_battery","short_names":["low_battery"],"text":null,"texts":null,"category":"Objects","subcategory":"computer","sort_order":1206,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HAMSA","unified":"1FAAC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faac.png","sheet_x":54,"sheet_y":37,"short_name":"hamsa","short_names":["hamsa"],"text":null,"texts":null,"category":"Objects","subcategory":"other-object","sort_order":1380,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FOLDING HAND FAN","unified":"1FAAD","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faad.png","sheet_x":54,"sheet_y":38,"short_name":"folding_hand_fan","short_names":["folding_hand_fan"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1143,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},{"name":"HAIR PICK","unified":"1FAAE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faae.png","sheet_x":54,"sheet_y":39,"short_name":"hair_pick","short_names":["hair_pick"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1158,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},{"name":"KHANDA","unified":"1FAAF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faaf.png","sheet_x":54,"sheet_y":40,"short_name":"khanda","short_names":["khanda"],"text":null,"texts":null,"category":"Symbols","subcategory":"religion","sort_order":1443,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},{"name":"FLY","unified":"1FAB0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fab0.png","sheet_x":54,"sheet_y":41,"short_name":"fly","short_names":["fly"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bug","sort_order":656,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WORM","unified":"1FAB1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fab1.png","sheet_x":54,"sheet_y":42,"short_name":"worm","short_names":["worm"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bug","sort_order":657,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BEETLE","unified":"1FAB2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fab2.png","sheet_x":54,"sheet_y":43,"short_name":"beetle","short_names":["beetle"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bug","sort_order":648,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"COCKROACH","unified":"1FAB3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fab3.png","sheet_x":54,"sheet_y":44,"short_name":"cockroach","short_names":["cockroach"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bug","sort_order":651,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"POTTED PLANT","unified":"1FAB4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fab4.png","sheet_x":54,"sheet_y":45,"short_name":"potted_plant","short_names":["potted_plant"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-other","sort_order":672,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WOOD","unified":"1FAB5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fab5.png","sheet_x":54,"sheet_y":46,"short_name":"wood","short_names":["wood"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-building","sort_order":841,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FEATHER","unified":"1FAB6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fab6.png","sheet_x":54,"sheet_y":47,"short_name":"feather","short_names":["feather"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":615,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LOTUS","unified":"1FAB7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fab7.png","sheet_x":54,"sheet_y":48,"short_name":"lotus","short_names":["lotus"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-flower","sort_order":662,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CORAL","unified":"1FAB8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fab8.png","sheet_x":54,"sheet_y":49,"short_name":"coral","short_names":["coral"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-marine","sort_order":641,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"EMPTY NEST","unified":"1FAB9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fab9.png","sheet_x":54,"sheet_y":50,"short_name":"empty_nest","short_names":["empty_nest"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-other","sort_order":684,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NEST WITH EGGS","unified":"1FABA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faba.png","sheet_x":54,"sheet_y":51,"short_name":"nest_with_eggs","short_names":["nest_with_eggs"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-other","sort_order":685,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HYACINTH","unified":"1FABB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fabb.png","sheet_x":54,"sheet_y":52,"short_name":"hyacinth","short_names":["hyacinth"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-flower","sort_order":670,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},{"name":"JELLYFISH","unified":"1FABC","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fabc.png","sheet_x":54,"sheet_y":53,"short_name":"jellyfish","short_names":["jellyfish"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-marine","sort_order":642,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},{"name":"WING","unified":"1FABD","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fabd.png","sheet_x":54,"sheet_y":54,"short_name":"wing","short_names":["wing"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":619,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},{"name":"GOOSE","unified":"1FABF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fabf.png","sheet_x":54,"sheet_y":55,"short_name":"goose","short_names":["goose"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-bird","sort_order":621,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},{"name":"ANATOMICAL HEART","unified":"1FAC0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fac0.png","sheet_x":54,"sheet_y":56,"short_name":"anatomical_heart","short_names":["anatomical_heart"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":219,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LUNGS","unified":"1FAC1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fac1.png","sheet_x":54,"sheet_y":57,"short_name":"lungs","short_names":["lungs"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":220,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PEOPLE HUGGING","unified":"1FAC2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fac2.png","sheet_x":54,"sheet_y":58,"short_name":"people_hugging","short_names":["people_hugging"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-symbol","sort_order":528,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PREGNANT MAN","unified":"1FAC3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fac3.png","sheet_x":54,"sheet_y":59,"short_name":"pregnant_man","short_names":["pregnant_man"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":362,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1FAC3-1F3FB","non_qualified":null,"image":"1fac3-1f3fb.png","sheet_x":54,"sheet_y":60,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1FAC3-1F3FC","non_qualified":null,"image":"1fac3-1f3fc.png","sheet_x":55,"sheet_y":0,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1FAC3-1F3FD","non_qualified":null,"image":"1fac3-1f3fd.png","sheet_x":55,"sheet_y":1,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1FAC3-1F3FE","non_qualified":null,"image":"1fac3-1f3fe.png","sheet_x":55,"sheet_y":2,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1FAC3-1F3FF","non_qualified":null,"image":"1fac3-1f3ff.png","sheet_x":55,"sheet_y":3,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"PREGNANT PERSON","unified":"1FAC4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fac4.png","sheet_x":55,"sheet_y":4,"short_name":"pregnant_person","short_names":["pregnant_person"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":363,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1FAC4-1F3FB","non_qualified":null,"image":"1fac4-1f3fb.png","sheet_x":55,"sheet_y":5,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1FAC4-1F3FC","non_qualified":null,"image":"1fac4-1f3fc.png","sheet_x":55,"sheet_y":6,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1FAC4-1F3FD","non_qualified":null,"image":"1fac4-1f3fd.png","sheet_x":55,"sheet_y":7,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1FAC4-1F3FE","non_qualified":null,"image":"1fac4-1f3fe.png","sheet_x":55,"sheet_y":8,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1FAC4-1F3FF","non_qualified":null,"image":"1fac4-1f3ff.png","sheet_x":55,"sheet_y":9,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"PERSON WITH CROWN","unified":"1FAC5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fac5.png","sheet_x":55,"sheet_y":10,"short_name":"person_with_crown","short_names":["person_with_crown"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-role","sort_order":347,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1FAC5-1F3FB","non_qualified":null,"image":"1fac5-1f3fb.png","sheet_x":55,"sheet_y":11,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1FAC5-1F3FC","non_qualified":null,"image":"1fac5-1f3fc.png","sheet_x":55,"sheet_y":12,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1FAC5-1F3FD","non_qualified":null,"image":"1fac5-1f3fd.png","sheet_x":55,"sheet_y":13,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1FAC5-1F3FE","non_qualified":null,"image":"1fac5-1f3fe.png","sheet_x":55,"sheet_y":14,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1FAC5-1F3FF","non_qualified":null,"image":"1fac5-1f3ff.png","sheet_x":55,"sheet_y":15,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MOOSE","unified":"1FACE","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1face.png","sheet_x":55,"sheet_y":16,"short_name":"moose","short_names":["moose"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":555,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},{"name":"DONKEY","unified":"1FACF","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1facf.png","sheet_x":55,"sheet_y":17,"short_name":"donkey","short_names":["donkey"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"animal-mammal","sort_order":556,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},{"name":"BLUEBERRIES","unified":"1FAD0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fad0.png","sheet_x":55,"sheet_y":18,"short_name":"blueberries","short_names":["blueberries"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-fruit","sort_order":701,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BELL PEPPER","unified":"1FAD1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fad1.png","sheet_x":55,"sheet_y":19,"short_name":"bell_pepper","short_names":["bell_pepper"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":712,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"OLIVE","unified":"1FAD2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fad2.png","sheet_x":55,"sheet_y":20,"short_name":"olive","short_names":["olive"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-fruit","sort_order":704,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FLATBREAD","unified":"1FAD3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fad3.png","sheet_x":55,"sheet_y":21,"short_name":"flatbread","short_names":["flatbread"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":726,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TAMALE","unified":"1FAD4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fad4.png","sheet_x":55,"sheet_y":22,"short_name":"tamale","short_names":["tamale"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":743,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FONDUE","unified":"1FAD5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fad5.png","sheet_x":55,"sheet_y":23,"short_name":"fondue","short_names":["fondue"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-prepared","sort_order":750,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TEAPOT","unified":"1FAD6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fad6.png","sheet_x":55,"sheet_y":24,"short_name":"teapot","short_names":["teapot"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":796,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"POURING LIQUID","unified":"1FAD7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fad7.png","sheet_x":55,"sheet_y":25,"short_name":"pouring_liquid","short_names":["pouring_liquid"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":807,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BEANS","unified":"1FAD8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fad8.png","sheet_x":55,"sheet_y":26,"short_name":"beans","short_names":["beans"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":719,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"JAR","unified":"1FAD9","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fad9.png","sheet_x":55,"sheet_y":27,"short_name":"jar","short_names":["jar"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"dishware","sort_order":818,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GINGER ROOT","unified":"1FADA","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fada.png","sheet_x":55,"sheet_y":28,"short_name":"ginger_root","short_names":["ginger_root"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":721,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},{"name":"PEA POD","unified":"1FADB","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fadb.png","sheet_x":55,"sheet_y":29,"short_name":"pea_pod","short_names":["pea_pod"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"food-vegetable","sort_order":722,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},{"name":"MELTING FACE","unified":"1FAE0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fae0.png","sheet_x":55,"sheet_y":30,"short_name":"melting_face","short_names":["melting_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-smiling","sort_order":11,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SALUTING FACE","unified":"1FAE1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fae1.png","sheet_x":55,"sheet_y":31,"short_name":"saluting_face","short_names":["saluting_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-hand","sort_order":36,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE WITH OPEN EYES AND HAND OVER MOUTH","unified":"1FAE2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fae2.png","sheet_x":55,"sheet_y":32,"short_name":"face_with_open_eyes_and_hand_over_mouth","short_names":["face_with_open_eyes_and_hand_over_mouth"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-hand","sort_order":32,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE WITH PEEKING EYE","unified":"1FAE3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fae3.png","sheet_x":55,"sheet_y":33,"short_name":"face_with_peeking_eye","short_names":["face_with_peeking_eye"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-hand","sort_order":33,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FACE WITH DIAGONAL MOUTH","unified":"1FAE4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fae4.png","sheet_x":55,"sheet_y":34,"short_name":"face_with_diagonal_mouth","short_names":["face_with_diagonal_mouth"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":75,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DOTTED LINE FACE","unified":"1FAE5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fae5.png","sheet_x":55,"sheet_y":35,"short_name":"dotted_line_face","short_names":["dotted_line_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":42,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BITING LIP","unified":"1FAE6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fae6.png","sheet_x":55,"sheet_y":36,"short_name":"biting_lip","short_names":["biting_lip"],"text":null,"texts":null,"category":"People & Body","subcategory":"body-parts","sort_order":227,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BUBBLES","unified":"1FAE7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fae7.png","sheet_x":55,"sheet_y":37,"short_name":"bubbles","short_names":["bubbles"],"text":null,"texts":null,"category":"Objects","subcategory":"household","sort_order":1370,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SHAKING FACE","unified":"1FAE8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1fae8.png","sheet_x":55,"sheet_y":38,"short_name":"shaking_face","short_names":["shaking_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-neutral-skeptical","sort_order":50,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},{"name":"HAND WITH INDEX FINGER AND THUMB CROSSED","unified":"1FAF0","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faf0.png","sheet_x":55,"sheet_y":39,"short_name":"hand_with_index_finger_and_thumb_crossed","short_names":["hand_with_index_finger_and_thumb_crossed"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-partial","sort_order":183,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1FAF0-1F3FB","non_qualified":null,"image":"1faf0-1f3fb.png","sheet_x":55,"sheet_y":40,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1FAF0-1F3FC","non_qualified":null,"image":"1faf0-1f3fc.png","sheet_x":55,"sheet_y":41,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1FAF0-1F3FD","non_qualified":null,"image":"1faf0-1f3fd.png","sheet_x":55,"sheet_y":42,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1FAF0-1F3FE","non_qualified":null,"image":"1faf0-1f3fe.png","sheet_x":55,"sheet_y":43,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1FAF0-1F3FF","non_qualified":null,"image":"1faf0-1f3ff.png","sheet_x":55,"sheet_y":44,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"RIGHTWARDS HAND","unified":"1FAF1","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faf1.png","sheet_x":55,"sheet_y":45,"short_name":"rightwards_hand","short_names":["rightwards_hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-open","sort_order":172,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1FAF1-1F3FB","non_qualified":null,"image":"1faf1-1f3fb.png","sheet_x":55,"sheet_y":46,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1FAF1-1F3FC","non_qualified":null,"image":"1faf1-1f3fc.png","sheet_x":55,"sheet_y":47,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1FAF1-1F3FD","non_qualified":null,"image":"1faf1-1f3fd.png","sheet_x":55,"sheet_y":48,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1FAF1-1F3FE","non_qualified":null,"image":"1faf1-1f3fe.png","sheet_x":55,"sheet_y":49,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1FAF1-1F3FF","non_qualified":null,"image":"1faf1-1f3ff.png","sheet_x":55,"sheet_y":50,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"LEFTWARDS HAND","unified":"1FAF2","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faf2.png","sheet_x":55,"sheet_y":51,"short_name":"leftwards_hand","short_names":["leftwards_hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-open","sort_order":173,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1FAF2-1F3FB","non_qualified":null,"image":"1faf2-1f3fb.png","sheet_x":55,"sheet_y":52,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1FAF2-1F3FC","non_qualified":null,"image":"1faf2-1f3fc.png","sheet_x":55,"sheet_y":53,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1FAF2-1F3FD","non_qualified":null,"image":"1faf2-1f3fd.png","sheet_x":55,"sheet_y":54,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1FAF2-1F3FE","non_qualified":null,"image":"1faf2-1f3fe.png","sheet_x":55,"sheet_y":55,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1FAF2-1F3FF","non_qualified":null,"image":"1faf2-1f3ff.png","sheet_x":55,"sheet_y":56,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"PALM DOWN HAND","unified":"1FAF3","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faf3.png","sheet_x":55,"sheet_y":57,"short_name":"palm_down_hand","short_names":["palm_down_hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-open","sort_order":174,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1FAF3-1F3FB","non_qualified":null,"image":"1faf3-1f3fb.png","sheet_x":55,"sheet_y":58,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1FAF3-1F3FC","non_qualified":null,"image":"1faf3-1f3fc.png","sheet_x":55,"sheet_y":59,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1FAF3-1F3FD","non_qualified":null,"image":"1faf3-1f3fd.png","sheet_x":55,"sheet_y":60,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1FAF3-1F3FE","non_qualified":null,"image":"1faf3-1f3fe.png","sheet_x":56,"sheet_y":0,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1FAF3-1F3FF","non_qualified":null,"image":"1faf3-1f3ff.png","sheet_x":56,"sheet_y":1,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"PALM UP HAND","unified":"1FAF4","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faf4.png","sheet_x":56,"sheet_y":2,"short_name":"palm_up_hand","short_names":["palm_up_hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-open","sort_order":175,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1FAF4-1F3FB","non_qualified":null,"image":"1faf4-1f3fb.png","sheet_x":56,"sheet_y":3,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1FAF4-1F3FC","non_qualified":null,"image":"1faf4-1f3fc.png","sheet_x":56,"sheet_y":4,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1FAF4-1F3FD","non_qualified":null,"image":"1faf4-1f3fd.png","sheet_x":56,"sheet_y":5,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1FAF4-1F3FE","non_qualified":null,"image":"1faf4-1f3fe.png","sheet_x":56,"sheet_y":6,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1FAF4-1F3FF","non_qualified":null,"image":"1faf4-1f3ff.png","sheet_x":56,"sheet_y":7,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"INDEX POINTING AT THE VIEWER","unified":"1FAF5","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faf5.png","sheet_x":56,"sheet_y":8,"short_name":"index_pointing_at_the_viewer","short_names":["index_pointing_at_the_viewer"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-single-finger","sort_order":193,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1FAF5-1F3FB","non_qualified":null,"image":"1faf5-1f3fb.png","sheet_x":56,"sheet_y":9,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1FAF5-1F3FC","non_qualified":null,"image":"1faf5-1f3fc.png","sheet_x":56,"sheet_y":10,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1FAF5-1F3FD","non_qualified":null,"image":"1faf5-1f3fd.png","sheet_x":56,"sheet_y":11,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1FAF5-1F3FE","non_qualified":null,"image":"1faf5-1f3fe.png","sheet_x":56,"sheet_y":12,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1FAF5-1F3FF","non_qualified":null,"image":"1faf5-1f3ff.png","sheet_x":56,"sheet_y":13,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"HEART HANDS","unified":"1FAF6","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faf6.png","sheet_x":56,"sheet_y":14,"short_name":"heart_hands","short_names":["heart_hands"],"text":null,"texts":null,"category":"People & Body","subcategory":"hands","sort_order":202,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"1FAF6-1F3FB","non_qualified":null,"image":"1faf6-1f3fb.png","sheet_x":56,"sheet_y":15,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"1FAF6-1F3FC","non_qualified":null,"image":"1faf6-1f3fc.png","sheet_x":56,"sheet_y":16,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"1FAF6-1F3FD","non_qualified":null,"image":"1faf6-1f3fd.png","sheet_x":56,"sheet_y":17,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"1FAF6-1F3FE","non_qualified":null,"image":"1faf6-1f3fe.png","sheet_x":56,"sheet_y":18,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"1FAF6-1F3FF","non_qualified":null,"image":"1faf6-1f3ff.png","sheet_x":56,"sheet_y":19,"added_in":"14.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"LEFTWARDS PUSHING HAND","unified":"1FAF7","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faf7.png","sheet_x":56,"sheet_y":20,"short_name":"leftwards_pushing_hand","short_names":["leftwards_pushing_hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-open","sort_order":176,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false,"skin_variations":{"1F3FB":{"unified":"1FAF7-1F3FB","non_qualified":null,"image":"1faf7-1f3fb.png","sheet_x":56,"sheet_y":21,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},"1F3FC":{"unified":"1FAF7-1F3FC","non_qualified":null,"image":"1faf7-1f3fc.png","sheet_x":56,"sheet_y":22,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},"1F3FD":{"unified":"1FAF7-1F3FD","non_qualified":null,"image":"1faf7-1f3fd.png","sheet_x":56,"sheet_y":23,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},"1F3FE":{"unified":"1FAF7-1F3FE","non_qualified":null,"image":"1faf7-1f3fe.png","sheet_x":56,"sheet_y":24,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},"1F3FF":{"unified":"1FAF7-1F3FF","non_qualified":null,"image":"1faf7-1f3ff.png","sheet_x":56,"sheet_y":25,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false}}},{"name":"RIGHTWARDS PUSHING HAND","unified":"1FAF8","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"1faf8.png","sheet_x":56,"sheet_y":26,"short_name":"rightwards_pushing_hand","short_names":["rightwards_pushing_hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-open","sort_order":177,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false,"skin_variations":{"1F3FB":{"unified":"1FAF8-1F3FB","non_qualified":null,"image":"1faf8-1f3fb.png","sheet_x":56,"sheet_y":27,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},"1F3FC":{"unified":"1FAF8-1F3FC","non_qualified":null,"image":"1faf8-1f3fc.png","sheet_x":56,"sheet_y":28,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},"1F3FD":{"unified":"1FAF8-1F3FD","non_qualified":null,"image":"1faf8-1f3fd.png","sheet_x":56,"sheet_y":29,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},"1F3FE":{"unified":"1FAF8-1F3FE","non_qualified":null,"image":"1faf8-1f3fe.png","sheet_x":56,"sheet_y":30,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false},"1F3FF":{"unified":"1FAF8-1F3FF","non_qualified":null,"image":"1faf8-1f3ff.png","sheet_x":56,"sheet_y":31,"added_in":"15.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_facebook":false,"has_img_microsoft":false}}},{"name":"DOUBLE EXCLAMATION MARK","unified":"203C-FE0F","non_qualified":"203C","docomo":"E704","au":"EB30","softbank":null,"google":"FEB06","image":"203c-fe0f.png","sheet_x":56,"sheet_y":32,"short_name":"bangbang","short_names":["bangbang"],"text":null,"texts":null,"category":"Symbols","subcategory":"punctuation","sort_order":1491,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"EXCLAMATION QUESTION MARK","unified":"2049-FE0F","non_qualified":"2049","docomo":"E703","au":"EB2F","softbank":null,"google":"FEB05","image":"2049-fe0f.png","sheet_x":56,"sheet_y":33,"short_name":"interrobang","short_names":["interrobang"],"text":null,"texts":null,"category":"Symbols","subcategory":"punctuation","sort_order":1492,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TRADE MARK SIGN","unified":"2122-FE0F","non_qualified":"2122","docomo":"E732","au":"E54E","softbank":"E537","google":"FEB2A","image":"2122-fe0f.png","sheet_x":56,"sheet_y":34,"short_name":"tm","short_names":["tm"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1520,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"INFORMATION SOURCE","unified":"2139-FE0F","non_qualified":"2139","docomo":null,"au":"E533","softbank":null,"google":"FEB47","image":"2139-fe0f.png","sheet_x":56,"sheet_y":35,"short_name":"information_source","short_names":["information_source"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1545,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LEFT RIGHT ARROW","unified":"2194-FE0F","non_qualified":"2194","docomo":"E73C","au":"EB7A","softbank":null,"google":"FEAF6","image":"2194-fe0f.png","sheet_x":56,"sheet_y":36,"short_name":"left_right_arrow","short_names":["left_right_arrow"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1419,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"UP DOWN ARROW","unified":"2195-FE0F","non_qualified":"2195","docomo":"E73D","au":"EB7B","softbank":null,"google":"FEAF7","image":"2195-fe0f.png","sheet_x":56,"sheet_y":37,"short_name":"arrow_up_down","short_names":["arrow_up_down"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1418,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NORTH WEST ARROW","unified":"2196-FE0F","non_qualified":"2196","docomo":"E697","au":"E54C","softbank":"E237","google":"FEAF2","image":"2196-fe0f.png","sheet_x":56,"sheet_y":38,"short_name":"arrow_upper_left","short_names":["arrow_upper_left"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1417,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NORTH EAST ARROW","unified":"2197-FE0F","non_qualified":"2197","docomo":"E678","au":"E555","softbank":"E236","google":"FEAF0","image":"2197-fe0f.png","sheet_x":56,"sheet_y":39,"short_name":"arrow_upper_right","short_names":["arrow_upper_right"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1411,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SOUTH EAST ARROW","unified":"2198-FE0F","non_qualified":"2198","docomo":"E696","au":"E54D","softbank":"E238","google":"FEAF1","image":"2198-fe0f.png","sheet_x":56,"sheet_y":40,"short_name":"arrow_lower_right","short_names":["arrow_lower_right"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1413,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SOUTH WEST ARROW","unified":"2199-FE0F","non_qualified":"2199","docomo":"E6A5","au":"E556","softbank":"E239","google":"FEAF3","image":"2199-fe0f.png","sheet_x":56,"sheet_y":41,"short_name":"arrow_lower_left","short_names":["arrow_lower_left"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1415,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LEFTWARDS ARROW WITH HOOK","unified":"21A9-FE0F","non_qualified":"21A9","docomo":"E6DA","au":"E55D","softbank":null,"google":"FEB83","image":"21a9-fe0f.png","sheet_x":56,"sheet_y":42,"short_name":"leftwards_arrow_with_hook","short_names":["leftwards_arrow_with_hook"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1420,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RIGHTWARDS ARROW WITH HOOK","unified":"21AA-FE0F","non_qualified":"21AA","docomo":null,"au":"E55C","softbank":null,"google":"FEB88","image":"21aa-fe0f.png","sheet_x":56,"sheet_y":43,"short_name":"arrow_right_hook","short_names":["arrow_right_hook"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1421,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WATCH","unified":"231A","non_qualified":null,"docomo":"E71F","au":"E57A","softbank":null,"google":"FE01D","image":"231a.png","sheet_x":56,"sheet_y":44,"short_name":"watch","short_names":["watch"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":962,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HOURGLASS","unified":"231B","non_qualified":null,"docomo":"E71C","au":"E57B","softbank":null,"google":"FE01C","image":"231b.png","sheet_x":56,"sheet_y":45,"short_name":"hourglass","short_names":["hourglass"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":960,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"KEYBOARD","unified":"2328-FE0F","non_qualified":"2328","docomo":null,"au":null,"softbank":null,"google":null,"image":"2328-fe0f.png","sheet_x":56,"sheet_y":46,"short_name":"keyboard","short_names":["keyboard"],"text":null,"texts":null,"category":"Objects","subcategory":"computer","sort_order":1211,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"EJECT BUTTON","unified":"23CF-FE0F","non_qualified":"23CF","docomo":null,"au":null,"softbank":null,"google":null,"image":"23cf-fe0f.png","sheet_x":56,"sheet_y":47,"short_name":"eject","short_names":["eject"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1474,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLACK RIGHT-POINTING DOUBLE TRIANGLE","unified":"23E9","non_qualified":null,"docomo":null,"au":"E530","softbank":"E23C","google":"FEAFE","image":"23e9.png","sheet_x":56,"sheet_y":48,"short_name":"fast_forward","short_names":["fast_forward"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1461,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLACK LEFT-POINTING DOUBLE TRIANGLE","unified":"23EA","non_qualified":null,"docomo":null,"au":"E52F","softbank":"E23D","google":"FEAFF","image":"23ea.png","sheet_x":56,"sheet_y":49,"short_name":"rewind","short_names":["rewind"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1465,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLACK UP-POINTING DOUBLE TRIANGLE","unified":"23EB","non_qualified":null,"docomo":null,"au":"E545","softbank":null,"google":"FEB03","image":"23eb.png","sheet_x":56,"sheet_y":50,"short_name":"arrow_double_up","short_names":["arrow_double_up"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1468,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLACK DOWN-POINTING DOUBLE TRIANGLE","unified":"23EC","non_qualified":null,"docomo":null,"au":"E544","softbank":null,"google":"FEB02","image":"23ec.png","sheet_x":56,"sheet_y":51,"short_name":"arrow_double_down","short_names":["arrow_double_down"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1470,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NEXT TRACK BUTTON","unified":"23ED-FE0F","non_qualified":"23ED","docomo":null,"au":null,"softbank":null,"google":null,"image":"23ed-fe0f.png","sheet_x":56,"sheet_y":52,"short_name":"black_right_pointing_double_triangle_with_vertical_bar","short_names":["black_right_pointing_double_triangle_with_vertical_bar"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1462,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LAST TRACK BUTTON","unified":"23EE-FE0F","non_qualified":"23EE","docomo":null,"au":null,"softbank":null,"google":null,"image":"23ee-fe0f.png","sheet_x":56,"sheet_y":53,"short_name":"black_left_pointing_double_triangle_with_vertical_bar","short_names":["black_left_pointing_double_triangle_with_vertical_bar"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1466,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PLAY OR PAUSE BUTTON","unified":"23EF-FE0F","non_qualified":"23EF","docomo":null,"au":null,"softbank":null,"google":null,"image":"23ef-fe0f.png","sheet_x":56,"sheet_y":54,"short_name":"black_right_pointing_triangle_with_double_vertical_bar","short_names":["black_right_pointing_triangle_with_double_vertical_bar"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1463,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ALARM CLOCK","unified":"23F0","non_qualified":null,"docomo":"E6BA","au":"E594","softbank":null,"google":"FE02A","image":"23f0.png","sheet_x":56,"sheet_y":55,"short_name":"alarm_clock","short_names":["alarm_clock"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":963,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"STOPWATCH","unified":"23F1-FE0F","non_qualified":"23F1","docomo":null,"au":null,"softbank":null,"google":null,"image":"23f1-fe0f.png","sheet_x":56,"sheet_y":56,"short_name":"stopwatch","short_names":["stopwatch"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":964,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TIMER CLOCK","unified":"23F2-FE0F","non_qualified":"23F2","docomo":null,"au":null,"softbank":null,"google":null,"image":"23f2-fe0f.png","sheet_x":56,"sheet_y":57,"short_name":"timer_clock","short_names":["timer_clock"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":965,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HOURGLASS WITH FLOWING SAND","unified":"23F3","non_qualified":null,"docomo":"E71C","au":"E47C","softbank":null,"google":"FE01B","image":"23f3.png","sheet_x":56,"sheet_y":58,"short_name":"hourglass_flowing_sand","short_names":["hourglass_flowing_sand"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"time","sort_order":961,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PAUSE BUTTON","unified":"23F8-FE0F","non_qualified":"23F8","docomo":null,"au":null,"softbank":null,"google":null,"image":"23f8-fe0f.png","sheet_x":56,"sheet_y":59,"short_name":"double_vertical_bar","short_names":["double_vertical_bar"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1471,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"STOP BUTTON","unified":"23F9-FE0F","non_qualified":"23F9","docomo":null,"au":null,"softbank":null,"google":null,"image":"23f9-fe0f.png","sheet_x":56,"sheet_y":60,"short_name":"black_square_for_stop","short_names":["black_square_for_stop"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1472,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RECORD BUTTON","unified":"23FA-FE0F","non_qualified":"23FA","docomo":null,"au":null,"softbank":null,"google":null,"image":"23fa-fe0f.png","sheet_x":57,"sheet_y":0,"short_name":"black_circle_for_record","short_names":["black_circle_for_record"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1473,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CIRCLED LATIN CAPITAL LETTER M","unified":"24C2-FE0F","non_qualified":"24C2","docomo":"E65C","au":"E5BC","softbank":null,"google":"FE7E1","image":"24c2-fe0f.png","sheet_x":57,"sheet_y":1,"short_name":"m","short_names":["m"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1547,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLACK SMALL SQUARE","unified":"25AA-FE0F","non_qualified":"25AA","docomo":null,"au":"E532","softbank":null,"google":"FEB6E","image":"25aa-fe0f.png","sheet_x":57,"sheet_y":2,"short_name":"black_small_square","short_names":["black_small_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1595,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WHITE SMALL SQUARE","unified":"25AB-FE0F","non_qualified":"25AB","docomo":null,"au":"E531","softbank":null,"google":"FEB6D","image":"25ab-fe0f.png","sheet_x":57,"sheet_y":3,"short_name":"white_small_square","short_names":["white_small_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1596,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLACK RIGHT-POINTING TRIANGLE","unified":"25B6-FE0F","non_qualified":"25B6","docomo":null,"au":"E52E","softbank":"E23A","google":"FEAFC","image":"25b6-fe0f.png","sheet_x":57,"sheet_y":4,"short_name":"arrow_forward","short_names":["arrow_forward"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1460,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLACK LEFT-POINTING TRIANGLE","unified":"25C0-FE0F","non_qualified":"25C0","docomo":null,"au":"E52D","softbank":"E23B","google":"FEAFD","image":"25c0-fe0f.png","sheet_x":57,"sheet_y":5,"short_name":"arrow_backward","short_names":["arrow_backward"],"text":null,"texts":null,"category":"Symbols","subcategory":"av-symbol","sort_order":1464,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WHITE MEDIUM SQUARE","unified":"25FB-FE0F","non_qualified":"25FB","docomo":null,"au":"E538","softbank":null,"google":"FEB71","image":"25fb-fe0f.png","sheet_x":57,"sheet_y":6,"short_name":"white_medium_square","short_names":["white_medium_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1592,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLACK MEDIUM SQUARE","unified":"25FC-FE0F","non_qualified":"25FC","docomo":null,"au":"E539","softbank":null,"google":"FEB72","image":"25fc-fe0f.png","sheet_x":57,"sheet_y":7,"short_name":"black_medium_square","short_names":["black_medium_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1591,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WHITE MEDIUM SMALL SQUARE","unified":"25FD","non_qualified":null,"docomo":null,"au":"E534","softbank":null,"google":"FEB6F","image":"25fd.png","sheet_x":57,"sheet_y":8,"short_name":"white_medium_small_square","short_names":["white_medium_small_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1594,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLACK MEDIUM SMALL SQUARE","unified":"25FE","non_qualified":null,"docomo":null,"au":"E535","softbank":null,"google":"FEB70","image":"25fe.png","sheet_x":57,"sheet_y":9,"short_name":"black_medium_small_square","short_names":["black_medium_small_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1593,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLACK SUN WITH RAYS","unified":"2600-FE0F","non_qualified":"2600","docomo":"E63E","au":"E488","softbank":"E04A","google":"FE000","image":"2600-fe0f.png","sheet_x":57,"sheet_y":10,"short_name":"sunny","short_names":["sunny"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1004,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOUD","unified":"2601-FE0F","non_qualified":"2601","docomo":"E63F","au":"E48D","softbank":"E049","google":"FE001","image":"2601-fe0f.png","sheet_x":57,"sheet_y":11,"short_name":"cloud","short_names":["cloud"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1012,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"UMBRELLA","unified":"2602-FE0F","non_qualified":"2602","docomo":null,"au":null,"softbank":null,"google":null,"image":"2602-fe0f.png","sheet_x":57,"sheet_y":12,"short_name":"umbrella","short_names":["umbrella"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1027,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SNOWMAN","unified":"2603-FE0F","non_qualified":"2603","docomo":null,"au":null,"softbank":null,"google":null,"image":"2603-fe0f.png","sheet_x":57,"sheet_y":13,"short_name":"snowman","short_names":["snowman"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1032,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"COMET","unified":"2604-FE0F","non_qualified":"2604","docomo":null,"au":null,"softbank":null,"google":null,"image":"2604-fe0f.png","sheet_x":57,"sheet_y":14,"short_name":"comet","short_names":["comet"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1034,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLACK TELEPHONE","unified":"260E-FE0F","non_qualified":"260E","docomo":"E687","au":"E596","softbank":"E009","google":"FE523","image":"260e-fe0f.png","sheet_x":57,"sheet_y":15,"short_name":"phone","short_names":["phone","telephone"],"text":null,"texts":null,"category":"Objects","subcategory":"phone","sort_order":1201,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BALLOT BOX WITH CHECK","unified":"2611-FE0F","non_qualified":"2611","docomo":null,"au":"EB02","softbank":null,"google":"FEB8B","image":"2611-fe0f.png","sheet_x":57,"sheet_y":16,"short_name":"ballot_box_with_check","short_names":["ballot_box_with_check"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1508,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"UMBRELLA WITH RAIN DROPS","unified":"2614","non_qualified":null,"docomo":"E640","au":"E48C","softbank":"E04B","google":"FE002","image":"2614.png","sheet_x":57,"sheet_y":17,"short_name":"umbrella_with_rain_drops","short_names":["umbrella_with_rain_drops"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1028,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HOT BEVERAGE","unified":"2615","non_qualified":null,"docomo":"E670","au":"E597","softbank":"E045","google":"FE981","image":"2615.png","sheet_x":57,"sheet_y":18,"short_name":"coffee","short_names":["coffee"],"text":null,"texts":null,"category":"Food & Drink","subcategory":"drink","sort_order":795,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SHAMROCK","unified":"2618-FE0F","non_qualified":"2618","docomo":null,"au":null,"softbank":null,"google":null,"image":"2618-fe0f.png","sheet_x":57,"sheet_y":19,"short_name":"shamrock","short_names":["shamrock"],"text":null,"texts":null,"category":"Animals & Nature","subcategory":"plant-other","sort_order":679,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WHITE UP POINTING INDEX","unified":"261D-FE0F","non_qualified":"261D","docomo":null,"au":"E4F6","softbank":"E00F","google":"FEB98","image":"261d-fe0f.png","sheet_x":57,"sheet_y":20,"short_name":"point_up","short_names":["point_up"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-single-finger","sort_order":192,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"261D-1F3FB","non_qualified":null,"image":"261d-1f3fb.png","sheet_x":57,"sheet_y":21,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"261D-1F3FC","non_qualified":null,"image":"261d-1f3fc.png","sheet_x":57,"sheet_y":22,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"261D-1F3FD","non_qualified":null,"image":"261d-1f3fd.png","sheet_x":57,"sheet_y":23,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"261D-1F3FE","non_qualified":null,"image":"261d-1f3fe.png","sheet_x":57,"sheet_y":24,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"261D-1F3FF","non_qualified":null,"image":"261d-1f3ff.png","sheet_x":57,"sheet_y":25,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"SKULL AND CROSSBONES","unified":"2620-FE0F","non_qualified":"2620","docomo":null,"au":null,"softbank":null,"google":null,"image":"2620-fe0f.png","sheet_x":57,"sheet_y":26,"short_name":"skull_and_crossbones","short_names":["skull_and_crossbones"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-negative","sort_order":107,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RADIOACTIVE","unified":"2622-FE0F","non_qualified":"2622","docomo":null,"au":null,"softbank":null,"google":null,"image":"2622-fe0f.png","sheet_x":57,"sheet_y":27,"short_name":"radioactive_sign","short_names":["radioactive_sign"],"text":null,"texts":null,"category":"Symbols","subcategory":"warning","sort_order":1408,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BIOHAZARD","unified":"2623-FE0F","non_qualified":"2623","docomo":null,"au":null,"softbank":null,"google":null,"image":"2623-fe0f.png","sheet_x":57,"sheet_y":28,"short_name":"biohazard_sign","short_names":["biohazard_sign"],"text":null,"texts":null,"category":"Symbols","subcategory":"warning","sort_order":1409,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ORTHODOX CROSS","unified":"2626-FE0F","non_qualified":"2626","docomo":null,"au":null,"softbank":null,"google":null,"image":"2626-fe0f.png","sheet_x":57,"sheet_y":29,"short_name":"orthodox_cross","short_names":["orthodox_cross"],"text":null,"texts":null,"category":"Symbols","subcategory":"religion","sort_order":1438,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"STAR AND CRESCENT","unified":"262A-FE0F","non_qualified":"262A","docomo":null,"au":null,"softbank":null,"google":null,"image":"262a-fe0f.png","sheet_x":57,"sheet_y":30,"short_name":"star_and_crescent","short_names":["star_and_crescent"],"text":null,"texts":null,"category":"Symbols","subcategory":"religion","sort_order":1439,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PEACE SYMBOL","unified":"262E-FE0F","non_qualified":"262E","docomo":null,"au":null,"softbank":null,"google":null,"image":"262e-fe0f.png","sheet_x":57,"sheet_y":31,"short_name":"peace_symbol","short_names":["peace_symbol"],"text":null,"texts":null,"category":"Symbols","subcategory":"religion","sort_order":1440,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"YIN YANG","unified":"262F-FE0F","non_qualified":"262F","docomo":null,"au":null,"softbank":null,"google":null,"image":"262f-fe0f.png","sheet_x":57,"sheet_y":32,"short_name":"yin_yang","short_names":["yin_yang"],"text":null,"texts":null,"category":"Symbols","subcategory":"religion","sort_order":1436,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WHEEL OF DHARMA","unified":"2638-FE0F","non_qualified":"2638","docomo":null,"au":null,"softbank":null,"google":null,"image":"2638-fe0f.png","sheet_x":57,"sheet_y":33,"short_name":"wheel_of_dharma","short_names":["wheel_of_dharma"],"text":null,"texts":null,"category":"Symbols","subcategory":"religion","sort_order":1435,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FROWNING FACE","unified":"2639-FE0F","non_qualified":"2639","docomo":null,"au":null,"softbank":null,"google":null,"image":"2639-fe0f.png","sheet_x":57,"sheet_y":34,"short_name":"white_frowning_face","short_names":["white_frowning_face"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-concerned","sort_order":78,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WHITE SMILING FACE","unified":"263A-FE0F","non_qualified":"263A","docomo":"E6F0","au":"E4FB","softbank":"E414","google":"FE336","image":"263a-fe0f.png","sheet_x":57,"sheet_y":35,"short_name":"relaxed","short_names":["relaxed"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"face-affection","sort_order":20,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FEMALE SIGN","unified":"2640-FE0F","non_qualified":"2640","docomo":null,"au":null,"softbank":null,"google":null,"image":"2640-fe0f.png","sheet_x":57,"sheet_y":36,"short_name":"female_sign","short_names":["female_sign"],"text":null,"texts":null,"category":"Symbols","subcategory":"gender","sort_order":1482,"added_in":"4.0","has_img_apple":false,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MALE SIGN","unified":"2642-FE0F","non_qualified":"2642","docomo":null,"au":null,"softbank":null,"google":null,"image":"2642-fe0f.png","sheet_x":57,"sheet_y":37,"short_name":"male_sign","short_names":["male_sign"],"text":null,"texts":null,"category":"Symbols","subcategory":"gender","sort_order":1483,"added_in":"4.0","has_img_apple":false,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ARIES","unified":"2648","non_qualified":null,"docomo":"E646","au":"E48F","softbank":"E23F","google":"FE02B","image":"2648.png","sheet_x":57,"sheet_y":38,"short_name":"aries","short_names":["aries"],"text":null,"texts":null,"category":"Symbols","subcategory":"zodiac","sort_order":1444,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TAURUS","unified":"2649","non_qualified":null,"docomo":"E647","au":"E490","softbank":"E240","google":"FE02C","image":"2649.png","sheet_x":57,"sheet_y":39,"short_name":"taurus","short_names":["taurus"],"text":null,"texts":null,"category":"Symbols","subcategory":"zodiac","sort_order":1445,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GEMINI","unified":"264A","non_qualified":null,"docomo":"E648","au":"E491","softbank":"E241","google":"FE02D","image":"264a.png","sheet_x":57,"sheet_y":40,"short_name":"gemini","short_names":["gemini"],"text":null,"texts":null,"category":"Symbols","subcategory":"zodiac","sort_order":1446,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CANCER","unified":"264B","non_qualified":null,"docomo":"E649","au":"E492","softbank":"E242","google":"FE02E","image":"264b.png","sheet_x":57,"sheet_y":41,"short_name":"cancer","short_names":["cancer"],"text":null,"texts":null,"category":"Symbols","subcategory":"zodiac","sort_order":1447,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LEO","unified":"264C","non_qualified":null,"docomo":"E64A","au":"E493","softbank":"E243","google":"FE02F","image":"264c.png","sheet_x":57,"sheet_y":42,"short_name":"leo","short_names":["leo"],"text":null,"texts":null,"category":"Symbols","subcategory":"zodiac","sort_order":1448,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"VIRGO","unified":"264D","non_qualified":null,"docomo":"E64B","au":"E494","softbank":"E244","google":"FE030","image":"264d.png","sheet_x":57,"sheet_y":43,"short_name":"virgo","short_names":["virgo"],"text":null,"texts":null,"category":"Symbols","subcategory":"zodiac","sort_order":1449,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LIBRA","unified":"264E","non_qualified":null,"docomo":"E64C","au":"E495","softbank":"E245","google":"FE031","image":"264e.png","sheet_x":57,"sheet_y":44,"short_name":"libra","short_names":["libra"],"text":null,"texts":null,"category":"Symbols","subcategory":"zodiac","sort_order":1450,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SCORPIUS","unified":"264F","non_qualified":null,"docomo":"E64D","au":"E496","softbank":"E246","google":"FE032","image":"264f.png","sheet_x":57,"sheet_y":45,"short_name":"scorpius","short_names":["scorpius"],"text":null,"texts":null,"category":"Symbols","subcategory":"zodiac","sort_order":1451,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SAGITTARIUS","unified":"2650","non_qualified":null,"docomo":"E64E","au":"E497","softbank":"E247","google":"FE033","image":"2650.png","sheet_x":57,"sheet_y":46,"short_name":"sagittarius","short_names":["sagittarius"],"text":null,"texts":null,"category":"Symbols","subcategory":"zodiac","sort_order":1452,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CAPRICORN","unified":"2651","non_qualified":null,"docomo":"E64F","au":"E498","softbank":"E248","google":"FE034","image":"2651.png","sheet_x":57,"sheet_y":47,"short_name":"capricorn","short_names":["capricorn"],"text":null,"texts":null,"category":"Symbols","subcategory":"zodiac","sort_order":1453,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"AQUARIUS","unified":"2652","non_qualified":null,"docomo":"E650","au":"E499","softbank":"E249","google":"FE035","image":"2652.png","sheet_x":57,"sheet_y":48,"short_name":"aquarius","short_names":["aquarius"],"text":null,"texts":null,"category":"Symbols","subcategory":"zodiac","sort_order":1454,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PISCES","unified":"2653","non_qualified":null,"docomo":"E651","au":"E49A","softbank":"E24A","google":"FE036","image":"2653.png","sheet_x":57,"sheet_y":49,"short_name":"pisces","short_names":["pisces"],"text":null,"texts":null,"category":"Symbols","subcategory":"zodiac","sort_order":1455,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CHESS PAWN","unified":"265F-FE0F","non_qualified":"265F","docomo":null,"au":null,"softbank":null,"google":null,"image":"265f-fe0f.png","sheet_x":57,"sheet_y":50,"short_name":"chess_pawn","short_names":["chess_pawn"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1112,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLACK SPADE SUIT","unified":"2660-FE0F","non_qualified":"2660","docomo":"E68E","au":"E5A1","softbank":"E20E","google":"FEB1B","image":"2660-fe0f.png","sheet_x":57,"sheet_y":51,"short_name":"spades","short_names":["spades"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1108,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLACK CLUB SUIT","unified":"2663-FE0F","non_qualified":"2663","docomo":"E690","au":"E5A3","softbank":"E20F","google":"FEB1D","image":"2663-fe0f.png","sheet_x":57,"sheet_y":52,"short_name":"clubs","short_names":["clubs"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1111,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLACK HEART SUIT","unified":"2665-FE0F","non_qualified":"2665","docomo":"E68D","au":"EAA5","softbank":"E20C","google":"FEB1A","image":"2665-fe0f.png","sheet_x":57,"sheet_y":53,"short_name":"hearts","short_names":["hearts"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1109,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLACK DIAMOND SUIT","unified":"2666-FE0F","non_qualified":"2666","docomo":"E68F","au":"E5A2","softbank":"E20D","google":"FEB1C","image":"2666-fe0f.png","sheet_x":57,"sheet_y":54,"short_name":"diamonds","short_names":["diamonds"],"text":null,"texts":null,"category":"Activities","subcategory":"game","sort_order":1110,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HOT SPRINGS","unified":"2668-FE0F","non_qualified":"2668","docomo":"E6F7","au":"E4BC","softbank":"E123","google":"FE7FA","image":"2668-fe0f.png","sheet_x":57,"sheet_y":55,"short_name":"hotsprings","short_names":["hotsprings"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-other","sort_order":879,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLACK UNIVERSAL RECYCLING SYMBOL","unified":"267B-FE0F","non_qualified":"267B","docomo":"E735","au":"EB79","softbank":null,"google":"FEB2C","image":"267b-fe0f.png","sheet_x":57,"sheet_y":56,"short_name":"recycle","short_names":["recycle"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1501,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"INFINITY","unified":"267E-FE0F","non_qualified":"267E","docomo":null,"au":null,"softbank":null,"google":null,"image":"267e-fe0f.png","sheet_x":57,"sheet_y":57,"short_name":"infinity","short_names":["infinity"],"text":null,"texts":null,"category":"Symbols","subcategory":"math","sort_order":1490,"added_in":"11.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WHEELCHAIR SYMBOL","unified":"267F","non_qualified":null,"docomo":"E69B","au":"E47F","softbank":"E20A","google":"FEB20","image":"267f.png","sheet_x":57,"sheet_y":58,"short_name":"wheelchair","short_names":["wheelchair"],"text":null,"texts":null,"category":"Symbols","subcategory":"transport-sign","sort_order":1387,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HAMMER AND PICK","unified":"2692-FE0F","non_qualified":"2692","docomo":null,"au":null,"softbank":null,"google":null,"image":"2692-fe0f.png","sheet_x":57,"sheet_y":59,"short_name":"hammer_and_pick","short_names":["hammer_and_pick"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1314,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ANCHOR","unified":"2693","non_qualified":null,"docomo":"E661","au":"E4A9","softbank":null,"google":"FE4C1","image":"2693.png","sheet_x":57,"sheet_y":60,"short_name":"anchor","short_names":["anchor"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-water","sort_order":936,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CROSSED SWORDS","unified":"2694-FE0F","non_qualified":"2694","docomo":null,"au":null,"softbank":null,"google":null,"image":"2694-fe0f.png","sheet_x":58,"sheet_y":0,"short_name":"crossed_swords","short_names":["crossed_swords"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1317,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MEDICAL SYMBOL","unified":"2695-FE0F","non_qualified":"2695","docomo":null,"au":null,"softbank":null,"google":null,"image":"2695-fe0f.png","sheet_x":58,"sheet_y":1,"short_name":"medical_symbol","short_names":["medical_symbol","staff_of_aesculapius"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1500,"added_in":"4.0","has_img_apple":false,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BALANCE SCALE","unified":"2696-FE0F","non_qualified":"2696","docomo":null,"au":null,"softbank":null,"google":null,"image":"2696-fe0f.png","sheet_x":58,"sheet_y":2,"short_name":"scales","short_names":["scales"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1328,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ALEMBIC","unified":"2697-FE0F","non_qualified":"2697","docomo":null,"au":null,"softbank":null,"google":null,"image":"2697-fe0f.png","sheet_x":58,"sheet_y":3,"short_name":"alembic","short_names":["alembic"],"text":null,"texts":null,"category":"Objects","subcategory":"science","sort_order":1336,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"GEAR","unified":"2699-FE0F","non_qualified":"2699","docomo":null,"au":null,"softbank":null,"google":null,"image":"2699-fe0f.png","sheet_x":58,"sheet_y":4,"short_name":"gear","short_names":["gear"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1326,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ATOM SYMBOL","unified":"269B-FE0F","non_qualified":"269B","docomo":null,"au":null,"softbank":null,"google":null,"image":"269b-fe0f.png","sheet_x":58,"sheet_y":5,"short_name":"atom_symbol","short_names":["atom_symbol"],"text":null,"texts":null,"category":"Symbols","subcategory":"religion","sort_order":1432,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FLEUR-DE-LIS","unified":"269C-FE0F","non_qualified":"269C","docomo":null,"au":null,"softbank":null,"google":null,"image":"269c-fe0f.png","sheet_x":58,"sheet_y":6,"short_name":"fleur_de_lis","short_names":["fleur_de_lis"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1502,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WARNING SIGN","unified":"26A0-FE0F","non_qualified":"26A0","docomo":"E737","au":"E481","softbank":"E252","google":"FEB23","image":"26a0-fe0f.png","sheet_x":58,"sheet_y":7,"short_name":"warning","short_names":["warning"],"text":null,"texts":null,"category":"Symbols","subcategory":"warning","sort_order":1397,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HIGH VOLTAGE SIGN","unified":"26A1","non_qualified":null,"docomo":"E642","au":"E487","softbank":"E13D","google":"FE004","image":"26a1.png","sheet_x":58,"sheet_y":8,"short_name":"zap","short_names":["zap"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1030,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"TRANSGENDER SYMBOL","unified":"26A7-FE0F","non_qualified":"26A7","docomo":null,"au":null,"softbank":null,"google":null,"image":"26a7-fe0f.png","sheet_x":58,"sheet_y":9,"short_name":"transgender_symbol","short_names":["transgender_symbol"],"text":null,"texts":null,"category":"Symbols","subcategory":"gender","sort_order":1484,"added_in":"13.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MEDIUM WHITE CIRCLE","unified":"26AA","non_qualified":null,"docomo":"E69C","au":"E53A","softbank":null,"google":"FEB65","image":"26aa.png","sheet_x":58,"sheet_y":10,"short_name":"white_circle","short_names":["white_circle"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1581,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MEDIUM BLACK CIRCLE","unified":"26AB","non_qualified":null,"docomo":"E69C","au":"E53B","softbank":null,"google":"FEB66","image":"26ab.png","sheet_x":58,"sheet_y":11,"short_name":"black_circle","short_names":["black_circle"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1580,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"COFFIN","unified":"26B0-FE0F","non_qualified":"26B0","docomo":null,"au":null,"softbank":null,"google":null,"image":"26b0-fe0f.png","sheet_x":58,"sheet_y":12,"short_name":"coffin","short_names":["coffin"],"text":null,"texts":null,"category":"Objects","subcategory":"other-object","sort_order":1376,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FUNERAL URN","unified":"26B1-FE0F","non_qualified":"26B1","docomo":null,"au":null,"softbank":null,"google":null,"image":"26b1-fe0f.png","sheet_x":58,"sheet_y":13,"short_name":"funeral_urn","short_names":["funeral_urn"],"text":null,"texts":null,"category":"Objects","subcategory":"other-object","sort_order":1378,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SOCCER BALL","unified":"26BD","non_qualified":null,"docomo":"E656","au":"E4B6","softbank":"E018","google":"FE7D4","image":"26bd.png","sheet_x":58,"sheet_y":14,"short_name":"soccer","short_names":["soccer"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1065,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BASEBALL","unified":"26BE","non_qualified":null,"docomo":"E653","au":"E4BA","softbank":"E016","google":"FE7D1","image":"26be.png","sheet_x":58,"sheet_y":15,"short_name":"baseball","short_names":["baseball"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1066,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SNOWMAN WITHOUT SNOW","unified":"26C4","non_qualified":null,"docomo":"E641","au":"E485","softbank":"E048","google":"FE003","image":"26c4.png","sheet_x":58,"sheet_y":16,"short_name":"snowman_without_snow","short_names":["snowman_without_snow"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1033,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SUN BEHIND CLOUD","unified":"26C5","non_qualified":null,"docomo":"E63E-E63F","au":"E48E","softbank":null,"google":"FE00F","image":"26c5.png","sheet_x":58,"sheet_y":17,"short_name":"partly_sunny","short_names":["partly_sunny"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1013,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CLOUD WITH LIGHTNING AND RAIN","unified":"26C8-FE0F","non_qualified":"26C8","docomo":null,"au":null,"softbank":null,"google":null,"image":"26c8-fe0f.png","sheet_x":58,"sheet_y":18,"short_name":"thunder_cloud_and_rain","short_names":["thunder_cloud_and_rain"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1014,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"OPHIUCHUS","unified":"26CE","non_qualified":null,"docomo":null,"au":"E49B","softbank":"E24B","google":"FE037","image":"26ce.png","sheet_x":58,"sheet_y":19,"short_name":"ophiuchus","short_names":["ophiuchus"],"text":null,"texts":null,"category":"Symbols","subcategory":"zodiac","sort_order":1456,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PICK","unified":"26CF-FE0F","non_qualified":"26CF","docomo":null,"au":null,"softbank":null,"google":null,"image":"26cf-fe0f.png","sheet_x":58,"sheet_y":20,"short_name":"pick","short_names":["pick"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1313,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RESCUE WORKER\u2019S HELMET","unified":"26D1-FE0F","non_qualified":"26D1","docomo":null,"au":null,"softbank":null,"google":null,"image":"26d1-fe0f.png","sheet_x":58,"sheet_y":21,"short_name":"helmet_with_white_cross","short_names":["helmet_with_white_cross"],"text":null,"texts":null,"category":"Objects","subcategory":"clothing","sort_order":1165,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CHAINS","unified":"26D3-FE0F","non_qualified":"26D3","docomo":null,"au":null,"softbank":null,"google":null,"image":"26d3-fe0f.png","sheet_x":58,"sheet_y":22,"short_name":"chains","short_names":["chains"],"text":null,"texts":null,"category":"Objects","subcategory":"tool","sort_order":1331,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NO ENTRY","unified":"26D4","non_qualified":null,"docomo":"E72F","au":"E484","softbank":null,"google":"FEB26","image":"26d4.png","sheet_x":58,"sheet_y":23,"short_name":"no_entry","short_names":["no_entry"],"text":null,"texts":null,"category":"Symbols","subcategory":"warning","sort_order":1399,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SHINTO SHRINE","unified":"26E9-FE0F","non_qualified":"26E9","docomo":null,"au":null,"softbank":null,"google":null,"image":"26e9-fe0f.png","sheet_x":58,"sheet_y":24,"short_name":"shinto_shrine","short_names":["shinto_shrine"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-religious","sort_order":867,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CHURCH","unified":"26EA","non_qualified":null,"docomo":null,"au":"E5BB","softbank":"E037","google":"FE4BB","image":"26ea.png","sheet_x":58,"sheet_y":25,"short_name":"church","short_names":["church"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-religious","sort_order":863,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MOUNTAIN","unified":"26F0-FE0F","non_qualified":"26F0","docomo":null,"au":null,"softbank":null,"google":null,"image":"26f0-fe0f.png","sheet_x":58,"sheet_y":26,"short_name":"mountain","short_names":["mountain"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-geographic","sort_order":828,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"UMBRELLA ON GROUND","unified":"26F1-FE0F","non_qualified":"26F1","docomo":null,"au":null,"softbank":null,"google":null,"image":"26f1-fe0f.png","sheet_x":58,"sheet_y":27,"short_name":"umbrella_on_ground","short_names":["umbrella_on_ground"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1029,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FOUNTAIN","unified":"26F2","non_qualified":null,"docomo":null,"au":"E5CF","softbank":"E121","google":"FE4BC","image":"26f2.png","sheet_x":58,"sheet_y":28,"short_name":"fountain","short_names":["fountain"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-other","sort_order":869,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FLAG IN HOLE","unified":"26F3","non_qualified":null,"docomo":"E654","au":"E599","softbank":"E014","google":"FE7D2","image":"26f3.png","sheet_x":58,"sheet_y":29,"short_name":"golf","short_names":["golf"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1084,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FERRY","unified":"26F4-FE0F","non_qualified":"26F4","docomo":null,"au":null,"softbank":null,"google":null,"image":"26f4-fe0f.png","sheet_x":58,"sheet_y":30,"short_name":"ferry","short_names":["ferry"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-water","sort_order":942,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SAILBOAT","unified":"26F5","non_qualified":null,"docomo":"E6A3","au":"E4B4","softbank":"E01C","google":"FE7EA","image":"26f5.png","sheet_x":58,"sheet_y":31,"short_name":"boat","short_names":["boat","sailboat"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-water","sort_order":938,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SKIER","unified":"26F7-FE0F","non_qualified":"26F7","docomo":null,"au":null,"softbank":null,"google":null,"image":"26f7-fe0f.png","sheet_x":58,"sheet_y":32,"short_name":"skier","short_names":["skier"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":441,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ICE SKATE","unified":"26F8-FE0F","non_qualified":"26F8","docomo":null,"au":null,"softbank":null,"google":null,"image":"26f8-fe0f.png","sheet_x":58,"sheet_y":33,"short_name":"ice_skate","short_names":["ice_skate"],"text":null,"texts":null,"category":"Activities","subcategory":"sport","sort_order":1085,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WOMAN BOUNCING BALL","unified":"26F9-FE0F-200D-2640-FE0F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"26f9-fe0f-200d-2640-fe0f.png","sheet_x":58,"sheet_y":34,"short_name":"woman-bouncing-ball","short_names":["woman-bouncing-ball"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":457,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":false,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"26F9-1F3FB-200D-2640-FE0F","non_qualified":"26F9-1F3FB-200D-2640","image":"26f9-1f3fb-200d-2640-fe0f.png","sheet_x":58,"sheet_y":35,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"26F9-1F3FC-200D-2640-FE0F","non_qualified":"26F9-1F3FC-200D-2640","image":"26f9-1f3fc-200d-2640-fe0f.png","sheet_x":58,"sheet_y":36,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"26F9-1F3FD-200D-2640-FE0F","non_qualified":"26F9-1F3FD-200D-2640","image":"26f9-1f3fd-200d-2640-fe0f.png","sheet_x":58,"sheet_y":37,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"26F9-1F3FE-200D-2640-FE0F","non_qualified":"26F9-1F3FE-200D-2640","image":"26f9-1f3fe-200d-2640-fe0f.png","sheet_x":58,"sheet_y":38,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"26F9-1F3FF-200D-2640-FE0F","non_qualified":"26F9-1F3FF-200D-2640","image":"26f9-1f3ff-200d-2640-fe0f.png","sheet_x":58,"sheet_y":39,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"MAN BOUNCING BALL","unified":"26F9-FE0F-200D-2642-FE0F","non_qualified":null,"docomo":null,"au":null,"softbank":null,"google":null,"image":"26f9-fe0f-200d-2642-fe0f.png","sheet_x":58,"sheet_y":40,"short_name":"man-bouncing-ball","short_names":["man-bouncing-ball"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":456,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":false,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"26F9-1F3FB-200D-2642-FE0F","non_qualified":"26F9-1F3FB-200D-2642","image":"26f9-1f3fb-200d-2642-fe0f.png","sheet_x":58,"sheet_y":41,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"26F9-1F3FC-200D-2642-FE0F","non_qualified":"26F9-1F3FC-200D-2642","image":"26f9-1f3fc-200d-2642-fe0f.png","sheet_x":58,"sheet_y":42,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"26F9-1F3FD-200D-2642-FE0F","non_qualified":"26F9-1F3FD-200D-2642","image":"26f9-1f3fd-200d-2642-fe0f.png","sheet_x":58,"sheet_y":43,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"26F9-1F3FE-200D-2642-FE0F","non_qualified":"26F9-1F3FE-200D-2642","image":"26f9-1f3fe-200d-2642-fe0f.png","sheet_x":58,"sheet_y":44,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"26F9-1F3FF-200D-2642-FE0F","non_qualified":"26F9-1F3FF-200D-2642","image":"26f9-1f3ff-200d-2642-fe0f.png","sheet_x":58,"sheet_y":45,"added_in":"4.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoletes":"26F9-FE0F"},{"name":"PERSON BOUNCING BALL","unified":"26F9-FE0F","non_qualified":"26F9","docomo":null,"au":null,"softbank":null,"google":null,"image":"26f9-fe0f.png","sheet_x":58,"sheet_y":46,"short_name":"person_with_ball","short_names":["person_with_ball"],"text":null,"texts":null,"category":"People & Body","subcategory":"person-sport","sort_order":455,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"26F9-1F3FB","non_qualified":null,"image":"26f9-1f3fb.png","sheet_x":58,"sheet_y":47,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"26F9-1F3FC","non_qualified":null,"image":"26f9-1f3fc.png","sheet_x":58,"sheet_y":48,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"26F9-1F3FD","non_qualified":null,"image":"26f9-1f3fd.png","sheet_x":58,"sheet_y":49,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"26F9-1F3FE","non_qualified":null,"image":"26f9-1f3fe.png","sheet_x":58,"sheet_y":50,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"26F9-1F3FF","non_qualified":null,"image":"26f9-1f3ff.png","sheet_x":58,"sheet_y":51,"added_in":"2.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}},"obsoleted_by":"26F9-FE0F-200D-2642-FE0F"},{"name":"TENT","unified":"26FA","non_qualified":null,"docomo":null,"au":"E5D0","softbank":"E122","google":"FE7FB","image":"26fa.png","sheet_x":58,"sheet_y":52,"short_name":"tent","short_names":["tent"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"place-other","sort_order":870,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"FUEL PUMP","unified":"26FD","non_qualified":null,"docomo":"E66B","au":"E571","softbank":"E03A","google":"FE7F5","image":"26fd.png","sheet_x":58,"sheet_y":53,"short_name":"fuelpump","short_names":["fuelpump"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-ground","sort_order":929,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLACK SCISSORS","unified":"2702-FE0F","non_qualified":"2702","docomo":"E675","au":"E516","softbank":"E313","google":"FE53E","image":"2702-fe0f.png","sheet_x":58,"sheet_y":54,"short_name":"scissors","short_names":["scissors"],"text":null,"texts":null,"category":"Objects","subcategory":"office","sort_order":1301,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WHITE HEAVY CHECK MARK","unified":"2705","non_qualified":null,"docomo":null,"au":"E55E","softbank":null,"google":"FEB4A","image":"2705.png","sheet_x":58,"sheet_y":55,"short_name":"white_check_mark","short_names":["white_check_mark"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1507,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"AIRPLANE","unified":"2708-FE0F","non_qualified":"2708","docomo":"E662","au":"E4B3","softbank":"E01D","google":"FE7E9","image":"2708-fe0f.png","sheet_x":58,"sheet_y":56,"short_name":"airplane","short_names":["airplane"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"transport-air","sort_order":945,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ENVELOPE","unified":"2709-FE0F","non_qualified":"2709","docomo":"E6D3","au":"E521","softbank":null,"google":"FE529","image":"2709-fe0f.png","sheet_x":58,"sheet_y":57,"short_name":"email","short_names":["email","envelope"],"text":null,"texts":null,"category":"Objects","subcategory":"mail","sort_order":1262,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"RAISED FIST","unified":"270A","non_qualified":null,"docomo":"E693","au":"EB83","softbank":"E010","google":"FEB93","image":"270a.png","sheet_x":58,"sheet_y":58,"short_name":"fist","short_names":["fist"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-closed","sort_order":196,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"270A-1F3FB","non_qualified":null,"image":"270a-1f3fb.png","sheet_x":58,"sheet_y":59,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"270A-1F3FC","non_qualified":null,"image":"270a-1f3fc.png","sheet_x":58,"sheet_y":60,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"270A-1F3FD","non_qualified":null,"image":"270a-1f3fd.png","sheet_x":59,"sheet_y":0,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"270A-1F3FE","non_qualified":null,"image":"270a-1f3fe.png","sheet_x":59,"sheet_y":1,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"270A-1F3FF","non_qualified":null,"image":"270a-1f3ff.png","sheet_x":59,"sheet_y":2,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"RAISED HAND","unified":"270B","non_qualified":null,"docomo":"E695","au":"E5A7","softbank":"E012","google":"FEB95","image":"270b.png","sheet_x":59,"sheet_y":3,"short_name":"hand","short_names":["hand","raised_hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-open","sort_order":170,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"270B-1F3FB","non_qualified":null,"image":"270b-1f3fb.png","sheet_x":59,"sheet_y":4,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"270B-1F3FC","non_qualified":null,"image":"270b-1f3fc.png","sheet_x":59,"sheet_y":5,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"270B-1F3FD","non_qualified":null,"image":"270b-1f3fd.png","sheet_x":59,"sheet_y":6,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"270B-1F3FE","non_qualified":null,"image":"270b-1f3fe.png","sheet_x":59,"sheet_y":7,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"270B-1F3FF","non_qualified":null,"image":"270b-1f3ff.png","sheet_x":59,"sheet_y":8,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"VICTORY HAND","unified":"270C-FE0F","non_qualified":"270C","docomo":"E694","au":"E5A6","softbank":"E011","google":"FEB94","image":"270c-fe0f.png","sheet_x":59,"sheet_y":9,"short_name":"v","short_names":["v"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-fingers-partial","sort_order":181,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"270C-1F3FB","non_qualified":null,"image":"270c-1f3fb.png","sheet_x":59,"sheet_y":10,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"270C-1F3FC","non_qualified":null,"image":"270c-1f3fc.png","sheet_x":59,"sheet_y":11,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"270C-1F3FD","non_qualified":null,"image":"270c-1f3fd.png","sheet_x":59,"sheet_y":12,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"270C-1F3FE","non_qualified":null,"image":"270c-1f3fe.png","sheet_x":59,"sheet_y":13,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"270C-1F3FF","non_qualified":null,"image":"270c-1f3ff.png","sheet_x":59,"sheet_y":14,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"WRITING HAND","unified":"270D-FE0F","non_qualified":"270D","docomo":null,"au":null,"softbank":null,"google":null,"image":"270d-fe0f.png","sheet_x":59,"sheet_y":15,"short_name":"writing_hand","short_names":["writing_hand"],"text":null,"texts":null,"category":"People & Body","subcategory":"hand-prop","sort_order":207,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true,"skin_variations":{"1F3FB":{"unified":"270D-1F3FB","non_qualified":null,"image":"270d-1f3fb.png","sheet_x":59,"sheet_y":16,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FC":{"unified":"270D-1F3FC","non_qualified":null,"image":"270d-1f3fc.png","sheet_x":59,"sheet_y":17,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FD":{"unified":"270D-1F3FD","non_qualified":null,"image":"270d-1f3fd.png","sheet_x":59,"sheet_y":18,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FE":{"unified":"270D-1F3FE","non_qualified":null,"image":"270d-1f3fe.png","sheet_x":59,"sheet_y":19,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},"1F3FF":{"unified":"270D-1F3FF","non_qualified":null,"image":"270d-1f3ff.png","sheet_x":59,"sheet_y":20,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}}},{"name":"PENCIL","unified":"270F-FE0F","non_qualified":"270F","docomo":"E719","au":"E4A1","softbank":null,"google":"FE539","image":"270f-fe0f.png","sheet_x":59,"sheet_y":21,"short_name":"pencil2","short_names":["pencil2"],"text":null,"texts":null,"category":"Objects","subcategory":"writing","sort_order":1275,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLACK NIB","unified":"2712-FE0F","non_qualified":"2712","docomo":"E6AE","au":"EB03","softbank":null,"google":"FE536","image":"2712-fe0f.png","sheet_x":59,"sheet_y":22,"short_name":"black_nib","short_names":["black_nib"],"text":null,"texts":null,"category":"Objects","subcategory":"writing","sort_order":1276,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HEAVY CHECK MARK","unified":"2714-FE0F","non_qualified":"2714","docomo":null,"au":"E557","softbank":null,"google":"FEB49","image":"2714-fe0f.png","sheet_x":59,"sheet_y":23,"short_name":"heavy_check_mark","short_names":["heavy_check_mark"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1509,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HEAVY MULTIPLICATION X","unified":"2716-FE0F","non_qualified":"2716","docomo":null,"au":"E54F","softbank":null,"google":"FEB53","image":"2716-fe0f.png","sheet_x":59,"sheet_y":24,"short_name":"heavy_multiplication_x","short_names":["heavy_multiplication_x"],"text":null,"texts":null,"category":"Symbols","subcategory":"math","sort_order":1485,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LATIN CROSS","unified":"271D-FE0F","non_qualified":"271D","docomo":null,"au":null,"softbank":null,"google":null,"image":"271d-fe0f.png","sheet_x":59,"sheet_y":25,"short_name":"latin_cross","short_names":["latin_cross"],"text":null,"texts":null,"category":"Symbols","subcategory":"religion","sort_order":1437,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"STAR OF DAVID","unified":"2721-FE0F","non_qualified":"2721","docomo":null,"au":null,"softbank":null,"google":null,"image":"2721-fe0f.png","sheet_x":59,"sheet_y":26,"short_name":"star_of_david","short_names":["star_of_david"],"text":null,"texts":null,"category":"Symbols","subcategory":"religion","sort_order":1434,"added_in":"0.7","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SPARKLES","unified":"2728","non_qualified":null,"docomo":"E6FA","au":"EAAB","softbank":"E32E","google":"FEB60","image":"2728.png","sheet_x":59,"sheet_y":27,"short_name":"sparkles","short_names":["sparkles"],"text":null,"texts":null,"category":"Activities","subcategory":"event","sort_order":1043,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"EIGHT SPOKED ASTERISK","unified":"2733-FE0F","non_qualified":"2733","docomo":"E6F8","au":"E53E","softbank":"E206","google":"FEB62","image":"2733-fe0f.png","sheet_x":59,"sheet_y":28,"short_name":"eight_spoked_asterisk","short_names":["eight_spoked_asterisk"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1515,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"EIGHT POINTED BLACK STAR","unified":"2734-FE0F","non_qualified":"2734","docomo":"E6F8","au":"E479","softbank":"E205","google":"FEB61","image":"2734-fe0f.png","sheet_x":59,"sheet_y":29,"short_name":"eight_pointed_black_star","short_names":["eight_pointed_black_star"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1516,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SNOWFLAKE","unified":"2744-FE0F","non_qualified":"2744","docomo":null,"au":"E48A","softbank":null,"google":"FE00E","image":"2744-fe0f.png","sheet_x":59,"sheet_y":30,"short_name":"snowflake","short_names":["snowflake"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1031,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"SPARKLE","unified":"2747-FE0F","non_qualified":"2747","docomo":"E6FA","au":"E46C","softbank":null,"google":"FEB77","image":"2747-fe0f.png","sheet_x":59,"sheet_y":31,"short_name":"sparkle","short_names":["sparkle"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1517,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CROSS MARK","unified":"274C","non_qualified":null,"docomo":null,"au":"E550","softbank":"E333","google":"FEB45","image":"274c.png","sheet_x":59,"sheet_y":32,"short_name":"x","short_names":["x"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1510,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"NEGATIVE SQUARED CROSS MARK","unified":"274E","non_qualified":null,"docomo":null,"au":"E551","softbank":null,"google":"FEB46","image":"274e.png","sheet_x":59,"sheet_y":33,"short_name":"negative_squared_cross_mark","short_names":["negative_squared_cross_mark"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1511,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLACK QUESTION MARK ORNAMENT","unified":"2753","non_qualified":null,"docomo":null,"au":"E483","softbank":"E020","google":"FEB09","image":"2753.png","sheet_x":59,"sheet_y":34,"short_name":"question","short_names":["question"],"text":null,"texts":null,"category":"Symbols","subcategory":"punctuation","sort_order":1493,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WHITE QUESTION MARK ORNAMENT","unified":"2754","non_qualified":null,"docomo":null,"au":"E483","softbank":"E336","google":"FEB0A","image":"2754.png","sheet_x":59,"sheet_y":35,"short_name":"grey_question","short_names":["grey_question"],"text":null,"texts":null,"category":"Symbols","subcategory":"punctuation","sort_order":1494,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WHITE EXCLAMATION MARK ORNAMENT","unified":"2755","non_qualified":null,"docomo":"E702","au":"E482","softbank":"E337","google":"FEB0B","image":"2755.png","sheet_x":59,"sheet_y":36,"short_name":"grey_exclamation","short_names":["grey_exclamation"],"text":null,"texts":null,"category":"Symbols","subcategory":"punctuation","sort_order":1495,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HEAVY EXCLAMATION MARK SYMBOL","unified":"2757","non_qualified":null,"docomo":"E702","au":"E482","softbank":"E021","google":"FEB04","image":"2757.png","sheet_x":59,"sheet_y":37,"short_name":"exclamation","short_names":["exclamation","heavy_exclamation_mark"],"text":null,"texts":null,"category":"Symbols","subcategory":"punctuation","sort_order":1496,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HEART EXCLAMATION","unified":"2763-FE0F","non_qualified":"2763","docomo":null,"au":null,"softbank":null,"google":null,"image":"2763-fe0f.png","sheet_x":59,"sheet_y":38,"short_name":"heavy_heart_exclamation_mark_ornament","short_names":["heavy_heart_exclamation_mark_ornament"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":137,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HEART ON FIRE","unified":"2764-FE0F-200D-1F525","non_qualified":"2764-200D-1F525","docomo":null,"au":null,"softbank":null,"google":null,"image":"2764-fe0f-200d-1f525.png","sheet_x":59,"sheet_y":39,"short_name":"heart_on_fire","short_names":["heart_on_fire"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":139,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"MENDING HEART","unified":"2764-FE0F-200D-1FA79","non_qualified":"2764-200D-1FA79","docomo":null,"au":null,"softbank":null,"google":null,"image":"2764-fe0f-200d-1fa79.png","sheet_x":59,"sheet_y":40,"short_name":"mending_heart","short_names":["mending_heart"],"text":null,"texts":null,"category":"Smileys & Emotion","subcategory":"heart","sort_order":140,"added_in":"13.1","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HEAVY BLACK HEART","unified":"2764-FE0F","non_qualified":"2764","docomo":"E6EC","au":"E595","softbank":"E022","google":"FEB0C","image":"2764-fe0f.png","sheet_x":59,"sheet_y":41,"short_name":"heart","short_names":["heart"],"text":"<3","texts":["<3"],"category":"Smileys & Emotion","subcategory":"heart","sort_order":141,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HEAVY PLUS SIGN","unified":"2795","non_qualified":null,"docomo":null,"au":"E53C","softbank":null,"google":"FEB51","image":"2795.png","sheet_x":59,"sheet_y":42,"short_name":"heavy_plus_sign","short_names":["heavy_plus_sign"],"text":null,"texts":null,"category":"Symbols","subcategory":"math","sort_order":1486,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HEAVY MINUS SIGN","unified":"2796","non_qualified":null,"docomo":null,"au":"E53D","softbank":null,"google":"FEB52","image":"2796.png","sheet_x":59,"sheet_y":43,"short_name":"heavy_minus_sign","short_names":["heavy_minus_sign"],"text":null,"texts":null,"category":"Symbols","subcategory":"math","sort_order":1487,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HEAVY DIVISION SIGN","unified":"2797","non_qualified":null,"docomo":null,"au":"E554","softbank":null,"google":"FEB54","image":"2797.png","sheet_x":59,"sheet_y":44,"short_name":"heavy_division_sign","short_names":["heavy_division_sign"],"text":null,"texts":null,"category":"Symbols","subcategory":"math","sort_order":1488,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLACK RIGHTWARDS ARROW","unified":"27A1-FE0F","non_qualified":"27A1","docomo":null,"au":"E552","softbank":"E234","google":"FEAFA","image":"27a1-fe0f.png","sheet_x":59,"sheet_y":45,"short_name":"arrow_right","short_names":["arrow_right"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1412,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CURLY LOOP","unified":"27B0","non_qualified":null,"docomo":"E70A","au":"EB31","softbank":null,"google":"FEB08","image":"27b0.png","sheet_x":59,"sheet_y":46,"short_name":"curly_loop","short_names":["curly_loop"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1512,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DOUBLE CURLY LOOP","unified":"27BF","non_qualified":null,"docomo":"E6DF","au":null,"softbank":"E211","google":"FE82B","image":"27bf.png","sheet_x":59,"sheet_y":47,"short_name":"loop","short_names":["loop"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1513,"added_in":"1.0","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS","unified":"2934-FE0F","non_qualified":"2934","docomo":"E6F5","au":"EB2D","softbank":null,"google":"FEAF4","image":"2934-fe0f.png","sheet_x":59,"sheet_y":48,"short_name":"arrow_heading_up","short_names":["arrow_heading_up"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1422,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS","unified":"2935-FE0F","non_qualified":"2935","docomo":"E700","au":"EB2E","softbank":null,"google":"FEAF5","image":"2935-fe0f.png","sheet_x":59,"sheet_y":49,"short_name":"arrow_heading_down","short_names":["arrow_heading_down"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1423,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"LEFTWARDS BLACK ARROW","unified":"2B05-FE0F","non_qualified":"2B05","docomo":null,"au":"E553","softbank":"E235","google":"FEAFB","image":"2b05-fe0f.png","sheet_x":59,"sheet_y":50,"short_name":"arrow_left","short_names":["arrow_left"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1416,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"UPWARDS BLACK ARROW","unified":"2B06-FE0F","non_qualified":"2B06","docomo":null,"au":"E53F","softbank":"E232","google":"FEAF8","image":"2b06-fe0f.png","sheet_x":59,"sheet_y":51,"short_name":"arrow_up","short_names":["arrow_up"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1410,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"DOWNWARDS BLACK ARROW","unified":"2B07-FE0F","non_qualified":"2B07","docomo":null,"au":"E540","softbank":"E233","google":"FEAF9","image":"2b07-fe0f.png","sheet_x":59,"sheet_y":52,"short_name":"arrow_down","short_names":["arrow_down"],"text":null,"texts":null,"category":"Symbols","subcategory":"arrow","sort_order":1414,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"BLACK LARGE SQUARE","unified":"2B1B","non_qualified":null,"docomo":null,"au":"E549","softbank":null,"google":"FEB6C","image":"2b1b.png","sheet_x":59,"sheet_y":53,"short_name":"black_large_square","short_names":["black_large_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1589,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WHITE LARGE SQUARE","unified":"2B1C","non_qualified":null,"docomo":null,"au":"E548","softbank":null,"google":"FEB6B","image":"2b1c.png","sheet_x":59,"sheet_y":54,"short_name":"white_large_square","short_names":["white_large_square"],"text":null,"texts":null,"category":"Symbols","subcategory":"geometric","sort_order":1590,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WHITE MEDIUM STAR","unified":"2B50","non_qualified":null,"docomo":null,"au":"E48B","softbank":"E32F","google":"FEB68","image":"2b50.png","sheet_x":59,"sheet_y":55,"short_name":"star","short_names":["star"],"text":null,"texts":null,"category":"Travel & Places","subcategory":"sky & weather","sort_order":1008,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"HEAVY LARGE CIRCLE","unified":"2B55","non_qualified":null,"docomo":"E6A0","au":"EAAD","softbank":"E332","google":"FEB44","image":"2b55.png","sheet_x":59,"sheet_y":56,"short_name":"o","short_names":["o"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1506,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"WAVY DASH","unified":"3030-FE0F","non_qualified":"3030","docomo":"E709","au":null,"softbank":null,"google":"FEB07","image":"3030-fe0f.png","sheet_x":59,"sheet_y":57,"short_name":"wavy_dash","short_names":["wavy_dash"],"text":null,"texts":null,"category":"Symbols","subcategory":"punctuation","sort_order":1497,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"PART ALTERNATION MARK","unified":"303D-FE0F","non_qualified":"303D","docomo":null,"au":null,"softbank":"E12C","google":"FE81B","image":"303d-fe0f.png","sheet_x":59,"sheet_y":58,"short_name":"part_alternation_mark","short_names":["part_alternation_mark"],"text":null,"texts":null,"category":"Symbols","subcategory":"other-symbol","sort_order":1514,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CIRCLED IDEOGRAPH CONGRATULATION","unified":"3297-FE0F","non_qualified":"3297","docomo":null,"au":"EA99","softbank":"E30D","google":"FEB43","image":"3297-fe0f.png","sheet_x":59,"sheet_y":59,"short_name":"congratulations","short_names":["congratulations"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1569,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true},{"name":"CIRCLED IDEOGRAPH SECRET","unified":"3299-FE0F","non_qualified":"3299","docomo":"E734","au":"E4F1","softbank":"E315","google":"FEB2B","image":"3299-fe0f.png","sheet_x":59,"sheet_y":60,"short_name":"secret","short_names":["secret"],"text":null,"texts":null,"category":"Symbols","subcategory":"alphanum","sort_order":1570,"added_in":"0.6","has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_facebook":true,"has_img_microsoft":true}]
\ No newline at end of file
diff --git a/emoji_pretty.json b/emoji_pretty.json
index 1188347454..29b450eeae 100644
--- a/emoji_pretty.json
+++ b/emoji_pretty.json
@@ -23,7 +23,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": true
},
{
"name": "KEYCAP: *",
@@ -49,7 +50,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": true
},
{
"name": "KEYCAP 0",
@@ -75,7 +77,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": true
},
{
"name": "KEYCAP 1",
@@ -101,7 +104,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": true
},
{
"name": "KEYCAP 2",
@@ -127,7 +131,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": true
},
{
"name": "KEYCAP 3",
@@ -153,7 +158,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": true
},
{
"name": "KEYCAP 4",
@@ -179,7 +185,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": true
},
{
"name": "KEYCAP 5",
@@ -205,7 +212,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": true
},
{
"name": "KEYCAP 6",
@@ -231,7 +239,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": true
},
{
"name": "KEYCAP 7",
@@ -257,7 +266,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": true
},
{
"name": "KEYCAP 8",
@@ -283,7 +293,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": true
},
{
"name": "KEYCAP 9",
@@ -309,7 +320,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": true
},
{
"name": "COPYRIGHT SIGN",
@@ -335,7 +347,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": true
},
{
"name": "REGISTERED SIGN",
@@ -361,7 +374,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": true
},
{
"name": "MAHJONG TILE RED DRAGON",
@@ -387,7 +401,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PLAYING CARD BLACK JOKER",
@@ -413,7 +428,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NEGATIVE SQUARED LATIN CAPITAL LETTER A",
@@ -439,7 +455,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NEGATIVE SQUARED LATIN CAPITAL LETTER B",
@@ -465,7 +482,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NEGATIVE SQUARED LATIN CAPITAL LETTER O",
@@ -491,7 +509,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NEGATIVE SQUARED LATIN CAPITAL LETTER P",
@@ -517,7 +536,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NEGATIVE SQUARED AB",
@@ -543,7 +563,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SQUARED CL",
@@ -569,7 +590,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SQUARED COOL",
@@ -595,7 +617,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SQUARED FREE",
@@ -621,7 +644,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SQUARED ID",
@@ -647,7 +671,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SQUARED NEW",
@@ -673,7 +698,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SQUARED NG",
@@ -699,7 +725,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SQUARED OK",
@@ -725,7 +752,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SQUARED SOS",
@@ -751,7 +779,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SQUARED UP WITH EXCLAMATION MARK",
@@ -777,7 +806,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SQUARED VS",
@@ -803,7 +833,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "Ascension Island Flag",
@@ -829,7 +860,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Andorra Flag",
@@ -855,7 +887,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "United Arab Emirates Flag",
@@ -881,7 +914,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Afghanistan Flag",
@@ -907,7 +941,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Antigua & Barbuda Flag",
@@ -933,7 +968,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Anguilla Flag",
@@ -959,7 +995,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Albania Flag",
@@ -985,7 +1022,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Armenia Flag",
@@ -1011,7 +1049,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Angola Flag",
@@ -1037,7 +1076,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Antarctica Flag",
@@ -1063,7 +1103,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Argentina Flag",
@@ -1089,7 +1130,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "American Samoa Flag",
@@ -1115,7 +1157,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Austria Flag",
@@ -1141,7 +1184,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Australia Flag",
@@ -1167,7 +1211,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Aruba Flag",
@@ -1193,7 +1238,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "\u00c5land Islands Flag",
@@ -1219,7 +1265,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Azerbaijan Flag",
@@ -1245,7 +1292,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Bosnia & Herzegovina Flag",
@@ -1271,7 +1319,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Barbados Flag",
@@ -1297,7 +1346,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Bangladesh Flag",
@@ -1323,7 +1373,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Belgium Flag",
@@ -1349,7 +1400,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Burkina Faso Flag",
@@ -1375,7 +1427,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Bulgaria Flag",
@@ -1401,7 +1454,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Bahrain Flag",
@@ -1427,7 +1481,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Burundi Flag",
@@ -1453,7 +1508,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Benin Flag",
@@ -1479,7 +1535,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "St. Barth\u00e9lemy Flag",
@@ -1505,7 +1562,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Bermuda Flag",
@@ -1531,7 +1589,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Brunei Flag",
@@ -1557,7 +1616,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Bolivia Flag",
@@ -1583,7 +1643,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Caribbean Netherlands Flag",
@@ -1609,7 +1670,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Brazil Flag",
@@ -1635,7 +1697,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Bahamas Flag",
@@ -1661,7 +1724,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Bhutan Flag",
@@ -1687,7 +1751,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Bouvet Island Flag",
@@ -1713,7 +1778,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Botswana Flag",
@@ -1739,7 +1805,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Belarus Flag",
@@ -1765,7 +1832,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Belize Flag",
@@ -1791,7 +1859,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Canada Flag",
@@ -1817,7 +1886,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Cocos (Keeling) Islands Flag",
@@ -1843,7 +1913,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Congo - Kinshasa Flag",
@@ -1869,7 +1940,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Central African Republic Flag",
@@ -1895,7 +1967,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Congo - Brazzaville Flag",
@@ -1921,7 +1994,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Switzerland Flag",
@@ -1947,7 +2021,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "C\u00f4te d\u2019Ivoire Flag",
@@ -1973,7 +2048,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Cook Islands Flag",
@@ -1999,7 +2075,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Chile Flag",
@@ -2025,7 +2102,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Cameroon Flag",
@@ -2051,7 +2129,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "China Flag",
@@ -2078,7 +2157,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Colombia Flag",
@@ -2104,7 +2184,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Clipperton Island Flag",
@@ -2130,7 +2211,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Costa Rica Flag",
@@ -2156,7 +2238,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Cuba Flag",
@@ -2182,7 +2265,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Cape Verde Flag",
@@ -2208,7 +2292,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Cura\u00e7ao Flag",
@@ -2234,7 +2319,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Christmas Island Flag",
@@ -2260,7 +2346,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Cyprus Flag",
@@ -2286,7 +2373,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Czechia Flag",
@@ -2312,7 +2400,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Germany Flag",
@@ -2339,7 +2428,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Diego Garcia Flag",
@@ -2365,7 +2455,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Djibouti Flag",
@@ -2391,7 +2482,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Denmark Flag",
@@ -2417,7 +2509,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Dominica Flag",
@@ -2443,7 +2536,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Dominican Republic Flag",
@@ -2469,7 +2563,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Algeria Flag",
@@ -2495,7 +2590,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Ceuta & Melilla Flag",
@@ -2521,7 +2617,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Ecuador Flag",
@@ -2547,7 +2644,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Estonia Flag",
@@ -2573,7 +2671,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Egypt Flag",
@@ -2599,7 +2698,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Western Sahara Flag",
@@ -2625,7 +2725,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Eritrea Flag",
@@ -2651,7 +2752,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Spain Flag",
@@ -2678,7 +2780,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Ethiopia Flag",
@@ -2704,7 +2807,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "European Union Flag",
@@ -2730,7 +2834,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Finland Flag",
@@ -2756,7 +2861,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Fiji Flag",
@@ -2782,7 +2888,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Falkland Islands Flag",
@@ -2808,7 +2915,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Micronesia Flag",
@@ -2834,7 +2942,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Faroe Islands Flag",
@@ -2860,7 +2969,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "France Flag",
@@ -2887,7 +2997,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Gabon Flag",
@@ -2913,7 +3024,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "United Kingdom Flag",
@@ -2941,7 +3053,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Grenada Flag",
@@ -2967,7 +3080,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Georgia Flag",
@@ -2993,7 +3107,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "French Guiana Flag",
@@ -3019,7 +3134,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Guernsey Flag",
@@ -3045,7 +3161,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Ghana Flag",
@@ -3071,7 +3188,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Gibraltar Flag",
@@ -3097,7 +3215,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Greenland Flag",
@@ -3123,7 +3242,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Gambia Flag",
@@ -3149,7 +3269,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Guinea Flag",
@@ -3175,7 +3296,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Guadeloupe Flag",
@@ -3201,7 +3323,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Equatorial Guinea Flag",
@@ -3227,7 +3350,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Greece Flag",
@@ -3253,7 +3377,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "South Georgia & South Sandwich Islands Flag",
@@ -3279,7 +3404,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Guatemala Flag",
@@ -3305,7 +3431,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Guam Flag",
@@ -3331,7 +3458,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Guinea-Bissau Flag",
@@ -3357,7 +3485,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Guyana Flag",
@@ -3383,7 +3512,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Hong Kong SAR China Flag",
@@ -3409,7 +3539,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Heard & McDonald Islands Flag",
@@ -3435,7 +3566,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Honduras Flag",
@@ -3461,7 +3593,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Croatia Flag",
@@ -3487,7 +3620,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Haiti Flag",
@@ -3513,7 +3647,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Hungary Flag",
@@ -3539,7 +3674,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Canary Islands Flag",
@@ -3565,7 +3701,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Indonesia Flag",
@@ -3591,7 +3728,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Ireland Flag",
@@ -3617,7 +3755,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Israel Flag",
@@ -3643,7 +3782,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Isle of Man Flag",
@@ -3669,7 +3809,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "India Flag",
@@ -3695,7 +3836,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "British Indian Ocean Territory Flag",
@@ -3721,7 +3863,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Iraq Flag",
@@ -3747,7 +3890,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Iran Flag",
@@ -3773,7 +3917,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Iceland Flag",
@@ -3799,7 +3944,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Italy Flag",
@@ -3826,7 +3972,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Jersey Flag",
@@ -3852,7 +3999,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Jamaica Flag",
@@ -3878,7 +4026,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Jordan Flag",
@@ -3904,7 +4053,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Japan Flag",
@@ -3931,7 +4081,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Kenya Flag",
@@ -3957,7 +4108,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Kyrgyzstan Flag",
@@ -3983,7 +4135,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Cambodia Flag",
@@ -4009,7 +4162,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Kiribati Flag",
@@ -4035,7 +4189,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Comoros Flag",
@@ -4061,7 +4216,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "St. Kitts & Nevis Flag",
@@ -4087,7 +4243,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "North Korea Flag",
@@ -4113,7 +4270,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "South Korea Flag",
@@ -4140,7 +4298,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Kuwait Flag",
@@ -4166,7 +4325,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Cayman Islands Flag",
@@ -4192,7 +4352,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Kazakhstan Flag",
@@ -4218,7 +4379,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Laos Flag",
@@ -4244,7 +4406,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Lebanon Flag",
@@ -4270,7 +4433,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "St. Lucia Flag",
@@ -4296,7 +4460,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Liechtenstein Flag",
@@ -4322,7 +4487,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Sri Lanka Flag",
@@ -4348,7 +4514,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Liberia Flag",
@@ -4374,7 +4541,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Lesotho Flag",
@@ -4400,7 +4568,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Lithuania Flag",
@@ -4426,7 +4595,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Luxembourg Flag",
@@ -4452,7 +4622,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Latvia Flag",
@@ -4478,7 +4649,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Libya Flag",
@@ -4504,7 +4676,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Morocco Flag",
@@ -4530,7 +4703,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Monaco Flag",
@@ -4556,7 +4730,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Moldova Flag",
@@ -4582,7 +4757,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Montenegro Flag",
@@ -4608,7 +4784,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "St. Martin Flag",
@@ -4634,7 +4811,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Madagascar Flag",
@@ -4660,7 +4838,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Marshall Islands Flag",
@@ -4686,7 +4865,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "North Macedonia Flag",
@@ -4712,7 +4892,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Mali Flag",
@@ -4738,7 +4919,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Myanmar (Burma) Flag",
@@ -4764,7 +4946,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Mongolia Flag",
@@ -4790,7 +4973,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Macao SAR China Flag",
@@ -4816,7 +5000,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Northern Mariana Islands Flag",
@@ -4842,7 +5027,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Martinique Flag",
@@ -4868,7 +5054,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Mauritania Flag",
@@ -4894,7 +5081,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Montserrat Flag",
@@ -4920,7 +5108,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Malta Flag",
@@ -4946,7 +5135,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Mauritius Flag",
@@ -4972,7 +5162,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Maldives Flag",
@@ -4998,7 +5189,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Malawi Flag",
@@ -5024,7 +5216,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Mexico Flag",
@@ -5050,7 +5243,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Malaysia Flag",
@@ -5076,7 +5270,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Mozambique Flag",
@@ -5102,7 +5297,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Namibia Flag",
@@ -5128,7 +5324,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "New Caledonia Flag",
@@ -5154,7 +5351,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Niger Flag",
@@ -5180,7 +5378,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Norfolk Island Flag",
@@ -5206,7 +5405,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Nigeria Flag",
@@ -5232,7 +5432,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Nicaragua Flag",
@@ -5258,7 +5459,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Netherlands Flag",
@@ -5284,7 +5486,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Norway Flag",
@@ -5310,7 +5513,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Nepal Flag",
@@ -5336,7 +5540,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Nauru Flag",
@@ -5362,7 +5567,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Niue Flag",
@@ -5388,7 +5594,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "New Zealand Flag",
@@ -5414,7 +5621,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Oman Flag",
@@ -5440,7 +5648,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Panama Flag",
@@ -5466,7 +5675,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Peru Flag",
@@ -5492,7 +5702,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "French Polynesia Flag",
@@ -5518,7 +5729,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Papua New Guinea Flag",
@@ -5544,7 +5756,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Philippines Flag",
@@ -5570,7 +5783,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Pakistan Flag",
@@ -5596,7 +5810,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Poland Flag",
@@ -5622,7 +5837,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "St. Pierre & Miquelon Flag",
@@ -5648,7 +5864,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Pitcairn Islands Flag",
@@ -5674,7 +5891,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Puerto Rico Flag",
@@ -5700,7 +5918,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Palestinian Territories Flag",
@@ -5726,7 +5945,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Portugal Flag",
@@ -5752,7 +5972,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Palau Flag",
@@ -5778,7 +5999,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Paraguay Flag",
@@ -5804,7 +6026,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Qatar Flag",
@@ -5830,7 +6053,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "R\u00e9union Flag",
@@ -5856,7 +6080,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Romania Flag",
@@ -5882,7 +6107,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Serbia Flag",
@@ -5908,7 +6134,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Russia Flag",
@@ -5935,7 +6162,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Rwanda Flag",
@@ -5961,7 +6189,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Saudi Arabia Flag",
@@ -5987,7 +6216,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Solomon Islands Flag",
@@ -6013,7 +6243,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Seychelles Flag",
@@ -6039,7 +6270,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Sudan Flag",
@@ -6065,7 +6297,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Sweden Flag",
@@ -6091,7 +6324,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Singapore Flag",
@@ -6117,7 +6351,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "St. Helena Flag",
@@ -6143,7 +6378,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Slovenia Flag",
@@ -6169,7 +6405,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Svalbard & Jan Mayen Flag",
@@ -6195,7 +6432,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Slovakia Flag",
@@ -6221,7 +6459,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Sierra Leone Flag",
@@ -6247,7 +6486,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "San Marino Flag",
@@ -6273,7 +6513,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Senegal Flag",
@@ -6299,7 +6540,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Somalia Flag",
@@ -6325,7 +6567,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Suriname Flag",
@@ -6351,7 +6594,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "South Sudan Flag",
@@ -6377,7 +6621,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "S\u00e3o Tom\u00e9 & Pr\u00edncipe Flag",
@@ -6403,7 +6648,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "El Salvador Flag",
@@ -6429,7 +6675,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Sint Maarten Flag",
@@ -6455,7 +6702,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Syria Flag",
@@ -6481,7 +6729,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Eswatini Flag",
@@ -6507,7 +6756,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Tristan da Cunha Flag",
@@ -6533,7 +6783,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Turks & Caicos Islands Flag",
@@ -6559,7 +6810,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Chad Flag",
@@ -6585,7 +6837,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "French Southern Territories Flag",
@@ -6611,7 +6864,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Togo Flag",
@@ -6637,7 +6891,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Thailand Flag",
@@ -6663,7 +6918,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Tajikistan Flag",
@@ -6689,7 +6945,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Tokelau Flag",
@@ -6715,7 +6972,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Timor-Leste Flag",
@@ -6741,7 +6999,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Turkmenistan Flag",
@@ -6767,7 +7026,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Tunisia Flag",
@@ -6793,7 +7053,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Tonga Flag",
@@ -6819,7 +7080,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Turkey Flag",
@@ -6845,7 +7107,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Trinidad & Tobago Flag",
@@ -6871,7 +7134,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Tuvalu Flag",
@@ -6897,7 +7161,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Taiwan Flag",
@@ -6923,7 +7188,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Tanzania Flag",
@@ -6949,7 +7215,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Ukraine Flag",
@@ -6975,7 +7242,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Uganda Flag",
@@ -7001,7 +7269,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "U.S. Outlying Islands Flag",
@@ -7027,7 +7296,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "United Nations Flag",
@@ -7053,7 +7323,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "United States Flag",
@@ -7080,7 +7351,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Uruguay Flag",
@@ -7106,7 +7378,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Uzbekistan Flag",
@@ -7132,7 +7405,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Vatican City Flag",
@@ -7158,7 +7432,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "St. Vincent & Grenadines Flag",
@@ -7184,7 +7459,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Venezuela Flag",
@@ -7210,7 +7486,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "British Virgin Islands Flag",
@@ -7236,7 +7513,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "U.S. Virgin Islands Flag",
@@ -7262,7 +7540,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Vietnam Flag",
@@ -7288,7 +7567,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Vanuatu Flag",
@@ -7314,7 +7594,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Wallis & Futuna Flag",
@@ -7340,7 +7621,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Samoa Flag",
@@ -7366,7 +7648,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Kosovo Flag",
@@ -7392,7 +7675,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Yemen Flag",
@@ -7418,7 +7702,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Mayotte Flag",
@@ -7444,7 +7729,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "South Africa Flag",
@@ -7470,7 +7756,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Zambia Flag",
@@ -7496,7 +7783,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Zimbabwe Flag",
@@ -7522,7 +7810,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "SQUARED KATAKANA KOKO",
@@ -7548,7 +7837,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SQUARED KATAKANA SA",
@@ -7574,7 +7864,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SQUARED CJK UNIFIED IDEOGRAPH-7121",
@@ -7600,7 +7891,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SQUARED CJK UNIFIED IDEOGRAPH-6307",
@@ -7626,7 +7918,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SQUARED CJK UNIFIED IDEOGRAPH-7981",
@@ -7652,7 +7945,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SQUARED CJK UNIFIED IDEOGRAPH-7A7A",
@@ -7678,7 +7972,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SQUARED CJK UNIFIED IDEOGRAPH-5408",
@@ -7704,7 +7999,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SQUARED CJK UNIFIED IDEOGRAPH-6E80",
@@ -7730,7 +8026,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SQUARED CJK UNIFIED IDEOGRAPH-6709",
@@ -7756,7 +8053,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SQUARED CJK UNIFIED IDEOGRAPH-6708",
@@ -7782,7 +8080,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SQUARED CJK UNIFIED IDEOGRAPH-7533",
@@ -7808,7 +8107,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SQUARED CJK UNIFIED IDEOGRAPH-5272",
@@ -7834,7 +8134,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SQUARED CJK UNIFIED IDEOGRAPH-55B6",
@@ -7860,7 +8161,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CIRCLED IDEOGRAPH ADVANTAGE",
@@ -7886,7 +8188,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CIRCLED IDEOGRAPH ACCEPT",
@@ -7912,7 +8215,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CYCLONE",
@@ -7938,7 +8242,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FOGGY",
@@ -7964,7 +8269,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOSED UMBRELLA",
@@ -7990,7 +8296,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NIGHT WITH STARS",
@@ -8016,7 +8323,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SUNRISE OVER MOUNTAINS",
@@ -8042,7 +8350,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SUNRISE",
@@ -8068,7 +8377,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CITYSCAPE AT DUSK",
@@ -8094,7 +8404,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SUNSET OVER BUILDINGS",
@@ -8120,7 +8431,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RAINBOW",
@@ -8146,7 +8458,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BRIDGE AT NIGHT",
@@ -8172,7 +8485,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WATER WAVE",
@@ -8198,7 +8512,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "VOLCANO",
@@ -8224,7 +8539,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MILKY WAY",
@@ -8250,7 +8566,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "EARTH GLOBE EUROPE-AFRICA",
@@ -8276,7 +8593,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "EARTH GLOBE AMERICAS",
@@ -8302,7 +8620,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "EARTH GLOBE ASIA-AUSTRALIA",
@@ -8328,7 +8647,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GLOBE WITH MERIDIANS",
@@ -8354,7 +8674,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NEW MOON SYMBOL",
@@ -8380,7 +8701,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WAXING CRESCENT MOON SYMBOL",
@@ -8406,7 +8728,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FIRST QUARTER MOON SYMBOL",
@@ -8432,7 +8755,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WAXING GIBBOUS MOON SYMBOL",
@@ -8459,7 +8783,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FULL MOON SYMBOL",
@@ -8485,7 +8810,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WANING GIBBOUS MOON SYMBOL",
@@ -8511,7 +8837,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LAST QUARTER MOON SYMBOL",
@@ -8537,7 +8864,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WANING CRESCENT MOON SYMBOL",
@@ -8563,7 +8891,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CRESCENT MOON",
@@ -8589,7 +8918,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NEW MOON WITH FACE",
@@ -8615,7 +8945,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FIRST QUARTER MOON WITH FACE",
@@ -8641,7 +8972,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LAST QUARTER MOON WITH FACE",
@@ -8667,7 +8999,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FULL MOON WITH FACE",
@@ -8693,7 +9026,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SUN WITH FACE",
@@ -8719,7 +9053,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GLOWING STAR",
@@ -8745,7 +9080,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SHOOTING STAR",
@@ -8771,7 +9107,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "THERMOMETER",
@@ -8797,7 +9134,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SUN BEHIND SMALL CLOUD",
@@ -8824,7 +9162,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SUN BEHIND LARGE CLOUD",
@@ -8851,7 +9190,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SUN BEHIND RAIN CLOUD",
@@ -8878,7 +9218,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOUD WITH RAIN",
@@ -8904,7 +9245,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOUD WITH SNOW",
@@ -8930,7 +9272,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOUD WITH LIGHTNING",
@@ -8957,7 +9300,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TORNADO",
@@ -8984,7 +9328,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FOG",
@@ -9010,7 +9355,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WIND FACE",
@@ -9036,7 +9382,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HOT DOG",
@@ -9062,7 +9409,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TACO",
@@ -9088,7 +9436,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BURRITO",
@@ -9114,7 +9463,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CHESTNUT",
@@ -9140,7 +9490,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SEEDLING",
@@ -9166,7 +9517,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "EVERGREEN TREE",
@@ -9192,7 +9544,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DECIDUOUS TREE",
@@ -9218,7 +9571,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PALM TREE",
@@ -9244,7 +9598,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CACTUS",
@@ -9270,7 +9625,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HOT PEPPER",
@@ -9296,7 +9652,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TULIP",
@@ -9322,7 +9679,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CHERRY BLOSSOM",
@@ -9348,7 +9706,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ROSE",
@@ -9374,7 +9733,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HIBISCUS",
@@ -9400,7 +9760,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SUNFLOWER",
@@ -9426,7 +9787,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLOSSOM",
@@ -9452,7 +9814,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "EAR OF MAIZE",
@@ -9478,7 +9841,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "EAR OF RICE",
@@ -9504,7 +9868,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HERB",
@@ -9530,7 +9895,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FOUR LEAF CLOVER",
@@ -9556,7 +9922,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MAPLE LEAF",
@@ -9582,7 +9949,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FALLEN LEAF",
@@ -9608,7 +9976,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LEAF FLUTTERING IN WIND",
@@ -9634,7 +10003,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MUSHROOM",
@@ -9660,7 +10030,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TOMATO",
@@ -9686,7 +10057,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "AUBERGINE",
@@ -9712,7 +10084,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GRAPES",
@@ -9738,7 +10111,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MELON",
@@ -9764,7 +10138,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WATERMELON",
@@ -9790,7 +10165,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TANGERINE",
@@ -9816,7 +10192,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LEMON",
@@ -9842,7 +10219,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BANANA",
@@ -9868,7 +10246,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PINEAPPLE",
@@ -9894,7 +10273,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RED APPLE",
@@ -9920,7 +10300,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GREEN APPLE",
@@ -9946,7 +10327,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PEAR",
@@ -9972,7 +10354,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PEACH",
@@ -9998,7 +10381,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CHERRIES",
@@ -10024,7 +10408,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "STRAWBERRY",
@@ -10050,7 +10435,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HAMBURGER",
@@ -10076,7 +10462,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SLICE OF PIZZA",
@@ -10102,7 +10489,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MEAT ON BONE",
@@ -10128,7 +10516,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "POULTRY LEG",
@@ -10154,7 +10543,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RICE CRACKER",
@@ -10180,7 +10570,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RICE BALL",
@@ -10206,7 +10597,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "COOKED RICE",
@@ -10232,7 +10624,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CURRY AND RICE",
@@ -10258,7 +10651,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "STEAMING BOWL",
@@ -10284,7 +10678,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SPAGHETTI",
@@ -10310,7 +10705,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BREAD",
@@ -10336,7 +10732,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FRENCH FRIES",
@@ -10362,7 +10759,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ROASTED SWEET POTATO",
@@ -10388,7 +10786,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DANGO",
@@ -10414,7 +10813,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ODEN",
@@ -10440,7 +10840,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SUSHI",
@@ -10466,7 +10867,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FRIED SHRIMP",
@@ -10492,7 +10894,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FISH CAKE WITH SWIRL DESIGN",
@@ -10518,7 +10921,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SOFT ICE CREAM",
@@ -10544,7 +10948,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SHAVED ICE",
@@ -10570,7 +10975,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ICE CREAM",
@@ -10596,7 +11002,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DOUGHNUT",
@@ -10622,7 +11029,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "COOKIE",
@@ -10648,7 +11056,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CHOCOLATE BAR",
@@ -10674,7 +11083,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CANDY",
@@ -10700,7 +11110,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LOLLIPOP",
@@ -10726,7 +11137,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CUSTARD",
@@ -10752,7 +11164,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HONEY POT",
@@ -10778,7 +11191,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SHORTCAKE",
@@ -10804,7 +11218,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BENTO BOX",
@@ -10830,7 +11245,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "POT OF FOOD",
@@ -10856,7 +11272,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "COOKING",
@@ -10883,7 +11300,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FORK AND KNIFE",
@@ -10909,7 +11327,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TEACUP WITHOUT HANDLE",
@@ -10935,7 +11354,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SAKE BOTTLE AND CUP",
@@ -10961,7 +11381,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WINE GLASS",
@@ -10987,7 +11408,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "COCKTAIL GLASS",
@@ -11013,7 +11435,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TROPICAL DRINK",
@@ -11039,7 +11462,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BEER MUG",
@@ -11065,7 +11489,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLINKING BEER MUGS",
@@ -11091,7 +11516,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BABY BOTTLE",
@@ -11117,7 +11543,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FORK AND KNIFE WITH PLATE",
@@ -11143,7 +11570,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BOTTLE WITH POPPING CORK",
@@ -11169,7 +11597,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "POPCORN",
@@ -11195,7 +11624,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RIBBON",
@@ -11221,7 +11651,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WRAPPED PRESENT",
@@ -11247,7 +11678,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BIRTHDAY CAKE",
@@ -11273,7 +11705,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "JACK-O-LANTERN",
@@ -11299,7 +11732,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CHRISTMAS TREE",
@@ -11325,7 +11759,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FATHER CHRISTMAS",
@@ -11352,6 +11787,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F385-1F3FB",
@@ -11363,7 +11799,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F385-1F3FC",
@@ -11375,7 +11812,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F385-1F3FD",
@@ -11387,7 +11825,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F385-1F3FE",
@@ -11399,7 +11838,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F385-1F3FF",
@@ -11411,7 +11851,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -11439,7 +11880,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FIREWORK SPARKLER",
@@ -11465,7 +11907,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BALLOON",
@@ -11491,7 +11934,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PARTY POPPER",
@@ -11517,7 +11961,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CONFETTI BALL",
@@ -11543,7 +11988,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TANABATA TREE",
@@ -11569,7 +12015,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CROSSED FLAGS",
@@ -11595,7 +12042,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PINE DECORATION",
@@ -11621,7 +12069,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "JAPANESE DOLLS",
@@ -11647,7 +12096,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CARP STREAMER",
@@ -11673,7 +12123,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WIND CHIME",
@@ -11699,7 +12150,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MOON VIEWING CEREMONY",
@@ -11725,7 +12177,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SCHOOL SATCHEL",
@@ -11751,7 +12204,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GRADUATION CAP",
@@ -11777,7 +12231,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MILITARY MEDAL",
@@ -11803,7 +12258,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "REMINDER RIBBON",
@@ -11829,7 +12285,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "STUDIO MICROPHONE",
@@ -11855,7 +12312,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LEVEL SLIDER",
@@ -11881,7 +12339,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CONTROL KNOBS",
@@ -11907,7 +12366,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FILM FRAMES",
@@ -11933,7 +12393,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ADMISSION TICKETS",
@@ -11959,7 +12420,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CAROUSEL HORSE",
@@ -11985,7 +12447,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FERRIS WHEEL",
@@ -12011,7 +12474,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ROLLER COASTER",
@@ -12037,7 +12501,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FISHING POLE AND FISH",
@@ -12063,7 +12528,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MICROPHONE",
@@ -12089,7 +12555,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MOVIE CAMERA",
@@ -12115,7 +12582,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CINEMA",
@@ -12141,7 +12609,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HEADPHONE",
@@ -12167,7 +12636,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ARTIST PALETTE",
@@ -12193,7 +12663,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TOP HAT",
@@ -12219,7 +12690,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CIRCUS TENT",
@@ -12245,7 +12717,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TICKET",
@@ -12271,7 +12744,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLAPPER BOARD",
@@ -12297,7 +12771,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PERFORMING ARTS",
@@ -12323,7 +12798,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "VIDEO GAME",
@@ -12349,7 +12825,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "DIRECT HIT",
@@ -12375,7 +12852,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SLOT MACHINE",
@@ -12401,7 +12879,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BILLIARDS",
@@ -12427,7 +12906,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GAME DIE",
@@ -12453,7 +12933,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BOWLING",
@@ -12479,7 +12960,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FLOWER PLAYING CARDS",
@@ -12505,7 +12987,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MUSICAL NOTE",
@@ -12531,7 +13014,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MULTIPLE MUSICAL NOTES",
@@ -12557,7 +13041,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SAXOPHONE",
@@ -12583,7 +13068,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GUITAR",
@@ -12609,7 +13095,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MUSICAL KEYBOARD",
@@ -12635,7 +13122,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TRUMPET",
@@ -12661,7 +13149,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "VIOLIN",
@@ -12687,7 +13176,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MUSICAL SCORE",
@@ -12713,7 +13203,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RUNNING SHIRT WITH SASH",
@@ -12739,7 +13230,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TENNIS RACQUET AND BALL",
@@ -12765,7 +13257,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SKI AND SKI BOOT",
@@ -12791,7 +13284,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BASKETBALL AND HOOP",
@@ -12817,7 +13311,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CHEQUERED FLAG",
@@ -12843,7 +13338,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SNOWBOARDER",
@@ -12870,6 +13366,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F3C2-1F3FB",
@@ -12881,7 +13378,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F3C2-1F3FC",
@@ -12893,7 +13391,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F3C2-1F3FD",
@@ -12905,7 +13404,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F3C2-1F3FE",
@@ -12917,7 +13417,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F3C2-1F3FF",
@@ -12929,7 +13430,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -12958,6 +13460,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F3C3-1F3FB-200D-2640-FE0F",
@@ -12969,7 +13472,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F3C3-1F3FC-200D-2640-FE0F",
@@ -12981,7 +13485,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F3C3-1F3FD-200D-2640-FE0F",
@@ -12993,7 +13498,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F3C3-1F3FE-200D-2640-FE0F",
@@ -13005,7 +13511,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F3C3-1F3FF-200D-2640-FE0F",
@@ -13017,7 +13524,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -13046,6 +13554,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F3C3-1F3FB-200D-2642-FE0F",
@@ -13057,7 +13566,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F3C3-1F3FC-200D-2642-FE0F",
@@ -13069,7 +13579,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F3C3-1F3FD-200D-2642-FE0F",
@@ -13081,7 +13592,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F3C3-1F3FE-200D-2642-FE0F",
@@ -13093,7 +13605,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F3C3-1F3FF-200D-2642-FE0F",
@@ -13105,7 +13618,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoletes": "1F3C3"
@@ -13136,6 +13650,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F3C3-1F3FB",
@@ -13147,7 +13662,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F3C3-1F3FC",
@@ -13159,7 +13675,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F3C3-1F3FD",
@@ -13171,7 +13688,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F3C3-1F3FE",
@@ -13183,7 +13701,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F3C3-1F3FF",
@@ -13195,7 +13714,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoleted_by": "1F3C3-200D-2642-FE0F"
@@ -13225,6 +13745,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F3C4-1F3FB-200D-2640-FE0F",
@@ -13236,7 +13757,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F3C4-1F3FC-200D-2640-FE0F",
@@ -13248,7 +13770,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F3C4-1F3FD-200D-2640-FE0F",
@@ -13260,7 +13783,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F3C4-1F3FE-200D-2640-FE0F",
@@ -13272,7 +13796,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F3C4-1F3FF-200D-2640-FE0F",
@@ -13284,7 +13809,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -13313,6 +13839,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F3C4-1F3FB-200D-2642-FE0F",
@@ -13324,7 +13851,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F3C4-1F3FC-200D-2642-FE0F",
@@ -13336,7 +13864,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F3C4-1F3FD-200D-2642-FE0F",
@@ -13348,7 +13877,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F3C4-1F3FE-200D-2642-FE0F",
@@ -13360,7 +13890,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F3C4-1F3FF-200D-2642-FE0F",
@@ -13372,7 +13903,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoletes": "1F3C4"
@@ -13402,6 +13934,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F3C4-1F3FB",
@@ -13413,7 +13946,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F3C4-1F3FC",
@@ -13425,7 +13959,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F3C4-1F3FD",
@@ -13437,7 +13972,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F3C4-1F3FE",
@@ -13449,7 +13985,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F3C4-1F3FF",
@@ -13461,7 +13998,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoleted_by": "1F3C4-200D-2642-FE0F"
@@ -13490,7 +14028,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TROPHY",
@@ -13516,7 +14055,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HORSE RACING",
@@ -13543,6 +14083,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F3C7-1F3FB",
@@ -13554,7 +14095,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F3C7-1F3FC",
@@ -13566,7 +14108,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F3C7-1F3FD",
@@ -13578,7 +14121,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F3C7-1F3FE",
@@ -13590,7 +14134,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F3C7-1F3FF",
@@ -13602,7 +14147,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -13630,7 +14176,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RUGBY FOOTBALL",
@@ -13656,7 +14203,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WOMAN SWIMMING",
@@ -13683,6 +14231,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F3CA-1F3FB-200D-2640-FE0F",
@@ -13694,7 +14243,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F3CA-1F3FC-200D-2640-FE0F",
@@ -13706,7 +14256,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F3CA-1F3FD-200D-2640-FE0F",
@@ -13718,7 +14269,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F3CA-1F3FE-200D-2640-FE0F",
@@ -13730,7 +14282,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F3CA-1F3FF-200D-2640-FE0F",
@@ -13742,7 +14295,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -13771,6 +14325,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F3CA-1F3FB-200D-2642-FE0F",
@@ -13782,7 +14337,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F3CA-1F3FC-200D-2642-FE0F",
@@ -13794,7 +14350,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F3CA-1F3FD-200D-2642-FE0F",
@@ -13806,7 +14363,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F3CA-1F3FE-200D-2642-FE0F",
@@ -13818,7 +14376,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F3CA-1F3FF-200D-2642-FE0F",
@@ -13830,7 +14389,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoletes": "1F3CA"
@@ -13860,6 +14420,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F3CA-1F3FB",
@@ -13871,7 +14432,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F3CA-1F3FC",
@@ -13883,7 +14445,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F3CA-1F3FD",
@@ -13895,7 +14458,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F3CA-1F3FE",
@@ -13907,7 +14471,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F3CA-1F3FF",
@@ -13919,7 +14484,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoleted_by": "1F3CA-200D-2642-FE0F"
@@ -13949,6 +14515,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": false,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F3CB-1F3FB-200D-2640-FE0F",
@@ -13960,7 +14527,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F3CB-1F3FC-200D-2640-FE0F",
@@ -13972,7 +14540,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F3CB-1F3FD-200D-2640-FE0F",
@@ -13984,7 +14553,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F3CB-1F3FE-200D-2640-FE0F",
@@ -13996,7 +14566,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F3CB-1F3FF-200D-2640-FE0F",
@@ -14008,7 +14579,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -14037,6 +14609,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": false,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F3CB-1F3FB-200D-2642-FE0F",
@@ -14048,7 +14621,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F3CB-1F3FC-200D-2642-FE0F",
@@ -14060,7 +14634,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F3CB-1F3FD-200D-2642-FE0F",
@@ -14072,7 +14647,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F3CB-1F3FE-200D-2642-FE0F",
@@ -14084,7 +14660,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F3CB-1F3FF-200D-2642-FE0F",
@@ -14096,7 +14673,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoletes": "1F3CB-FE0F"
@@ -14126,6 +14704,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F3CB-1F3FB",
@@ -14137,7 +14716,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F3CB-1F3FC",
@@ -14149,7 +14729,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F3CB-1F3FD",
@@ -14161,7 +14742,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F3CB-1F3FE",
@@ -14173,7 +14755,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F3CB-1F3FF",
@@ -14185,7 +14768,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoleted_by": "1F3CB-FE0F-200D-2642-FE0F"
@@ -14215,6 +14799,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": false,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F3CC-1F3FB-200D-2640-FE0F",
@@ -14226,7 +14811,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F3CC-1F3FC-200D-2640-FE0F",
@@ -14238,7 +14824,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F3CC-1F3FD-200D-2640-FE0F",
@@ -14250,7 +14837,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F3CC-1F3FE-200D-2640-FE0F",
@@ -14262,7 +14850,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F3CC-1F3FF-200D-2640-FE0F",
@@ -14274,7 +14863,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -14303,6 +14893,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": false,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F3CC-1F3FB-200D-2642-FE0F",
@@ -14314,7 +14905,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F3CC-1F3FC-200D-2642-FE0F",
@@ -14326,7 +14918,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F3CC-1F3FD-200D-2642-FE0F",
@@ -14338,7 +14931,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F3CC-1F3FE-200D-2642-FE0F",
@@ -14350,7 +14944,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F3CC-1F3FF-200D-2642-FE0F",
@@ -14362,7 +14957,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoletes": "1F3CC-FE0F"
@@ -14392,6 +14988,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F3CC-1F3FB",
@@ -14403,7 +15000,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F3CC-1F3FC",
@@ -14415,7 +15013,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F3CC-1F3FD",
@@ -14427,7 +15026,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F3CC-1F3FE",
@@ -14439,7 +15039,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F3CC-1F3FF",
@@ -14451,7 +15052,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoleted_by": "1F3CC-FE0F-200D-2642-FE0F"
@@ -14480,7 +15082,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RACING CAR",
@@ -14506,7 +15109,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CRICKET BAT AND BALL",
@@ -14532,7 +15136,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "VOLLEYBALL",
@@ -14558,7 +15163,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FIELD HOCKEY STICK AND BALL",
@@ -14584,7 +15190,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ICE HOCKEY STICK AND PUCK",
@@ -14610,7 +15217,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TABLE TENNIS PADDLE AND BALL",
@@ -14636,7 +15244,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SNOW-CAPPED MOUNTAIN",
@@ -14662,7 +15271,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CAMPING",
@@ -14688,7 +15298,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BEACH WITH UMBRELLA",
@@ -14714,7 +15325,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BUILDING CONSTRUCTION",
@@ -14740,7 +15352,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HOUSES",
@@ -14766,7 +15379,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CITYSCAPE",
@@ -14792,7 +15406,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DERELICT HOUSE",
@@ -14818,7 +15433,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLASSICAL BUILDING",
@@ -14844,7 +15460,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DESERT",
@@ -14870,7 +15487,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DESERT ISLAND",
@@ -14896,7 +15514,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NATIONAL PARK",
@@ -14922,7 +15541,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "STADIUM",
@@ -14948,7 +15568,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HOUSE BUILDING",
@@ -14974,7 +15595,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HOUSE WITH GARDEN",
@@ -15000,7 +15622,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "OFFICE BUILDING",
@@ -15026,7 +15649,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "JAPANESE POST OFFICE",
@@ -15052,7 +15676,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "EUROPEAN POST OFFICE",
@@ -15078,7 +15703,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HOSPITAL",
@@ -15104,7 +15730,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BANK",
@@ -15130,7 +15757,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "AUTOMATED TELLER MACHINE",
@@ -15156,7 +15784,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HOTEL",
@@ -15182,7 +15811,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LOVE HOTEL",
@@ -15208,7 +15838,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CONVENIENCE STORE",
@@ -15234,7 +15865,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SCHOOL",
@@ -15260,7 +15892,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DEPARTMENT STORE",
@@ -15286,7 +15919,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACTORY",
@@ -15312,7 +15946,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "IZAKAYA LANTERN",
@@ -15339,7 +15974,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "JAPANESE CASTLE",
@@ -15365,7 +16001,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "EUROPEAN CASTLE",
@@ -15391,7 +16028,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RAINBOW FLAG",
@@ -15417,7 +16055,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TRANSGENDER FLAG",
@@ -15443,7 +16082,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": true
},
{
"name": "WHITE FLAG",
@@ -15469,7 +16109,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PIRATE FLAG",
@@ -15495,7 +16136,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "England Flag",
@@ -15521,7 +16163,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Scotland Flag",
@@ -15547,7 +16190,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "Wales Flag",
@@ -15573,7 +16217,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "WAVING BLACK FLAG",
@@ -15599,7 +16244,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ROSETTE",
@@ -15625,7 +16271,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LABEL",
@@ -15651,7 +16298,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BADMINTON RACQUET AND SHUTTLECOCK",
@@ -15677,7 +16325,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BOW AND ARROW",
@@ -15703,7 +16352,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "AMPHORA",
@@ -15729,7 +16379,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "EMOJI MODIFIER FITZPATRICK TYPE-1-2",
@@ -15755,7 +16406,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "EMOJI MODIFIER FITZPATRICK TYPE-3",
@@ -15781,7 +16433,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "EMOJI MODIFIER FITZPATRICK TYPE-4",
@@ -15807,7 +16460,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "EMOJI MODIFIER FITZPATRICK TYPE-5",
@@ -15833,7 +16487,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "EMOJI MODIFIER FITZPATRICK TYPE-6",
@@ -15859,7 +16514,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "RAT",
@@ -15885,7 +16541,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MOUSE",
@@ -15911,7 +16568,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "OX",
@@ -15937,7 +16595,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WATER BUFFALO",
@@ -15963,7 +16622,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "COW",
@@ -15989,7 +16649,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TIGER",
@@ -16015,7 +16676,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LEOPARD",
@@ -16041,7 +16703,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RABBIT",
@@ -16067,7 +16730,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLACK CAT",
@@ -16093,7 +16757,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CAT",
@@ -16119,7 +16784,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DRAGON",
@@ -16145,7 +16811,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CROCODILE",
@@ -16171,7 +16838,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WHALE",
@@ -16197,7 +16865,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SNAIL",
@@ -16223,7 +16892,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SNAKE",
@@ -16249,7 +16919,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HORSE",
@@ -16275,7 +16946,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RAM",
@@ -16301,7 +16973,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GOAT",
@@ -16327,7 +17000,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SHEEP",
@@ -16353,7 +17027,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MONKEY",
@@ -16379,7 +17054,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ROOSTER",
@@ -16405,7 +17081,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CHICKEN",
@@ -16431,7 +17108,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SERVICE DOG",
@@ -16457,7 +17135,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DOG",
@@ -16483,7 +17162,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PIG",
@@ -16509,7 +17189,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BOAR",
@@ -16535,7 +17216,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ELEPHANT",
@@ -16561,7 +17243,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "OCTOPUS",
@@ -16587,7 +17270,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SPIRAL SHELL",
@@ -16613,7 +17297,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BUG",
@@ -16639,7 +17324,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ANT",
@@ -16665,7 +17351,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HONEYBEE",
@@ -16692,7 +17379,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LADY BEETLE",
@@ -16719,7 +17407,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FISH",
@@ -16745,7 +17434,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TROPICAL FISH",
@@ -16771,7 +17461,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLOWFISH",
@@ -16797,7 +17488,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TURTLE",
@@ -16823,7 +17515,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HATCHING CHICK",
@@ -16849,7 +17542,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BABY CHICK",
@@ -16875,7 +17569,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FRONT-FACING BABY CHICK",
@@ -16901,7 +17596,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLACK BIRD",
@@ -16927,7 +17623,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
{
"name": "BIRD",
@@ -16953,7 +17650,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PENGUIN",
@@ -16979,7 +17677,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "KOALA",
@@ -17005,7 +17704,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "POODLE",
@@ -17031,7 +17731,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DROMEDARY CAMEL",
@@ -17057,7 +17758,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BACTRIAN CAMEL",
@@ -17083,7 +17785,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DOLPHIN",
@@ -17110,7 +17813,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MOUSE FACE",
@@ -17136,7 +17840,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "COW FACE",
@@ -17162,7 +17867,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TIGER FACE",
@@ -17188,7 +17894,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RABBIT FACE",
@@ -17214,7 +17921,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CAT FACE",
@@ -17240,7 +17948,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DRAGON FACE",
@@ -17266,7 +17975,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SPOUTING WHALE",
@@ -17292,7 +18002,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HORSE FACE",
@@ -17318,7 +18029,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MONKEY FACE",
@@ -17346,7 +18058,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DOG FACE",
@@ -17372,7 +18085,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PIG FACE",
@@ -17398,7 +18112,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FROG FACE",
@@ -17424,7 +18139,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HAMSTER FACE",
@@ -17450,7 +18166,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WOLF FACE",
@@ -17476,7 +18193,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "POLAR BEAR",
@@ -17502,7 +18220,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BEAR FACE",
@@ -17528,7 +18247,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PANDA FACE",
@@ -17554,7 +18274,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PIG NOSE",
@@ -17580,7 +18301,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PAW PRINTS",
@@ -17607,7 +18329,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CHIPMUNK",
@@ -17633,7 +18356,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "EYES",
@@ -17659,7 +18383,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "EYE IN SPEECH BUBBLE",
@@ -17685,7 +18410,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": true
},
{
"name": "EYE",
@@ -17711,7 +18437,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "EAR",
@@ -17738,6 +18465,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F442-1F3FB",
@@ -17749,7 +18477,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F442-1F3FC",
@@ -17761,7 +18490,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F442-1F3FD",
@@ -17773,7 +18503,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F442-1F3FE",
@@ -17785,7 +18516,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F442-1F3FF",
@@ -17797,7 +18529,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -17826,6 +18559,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F443-1F3FB",
@@ -17837,7 +18571,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F443-1F3FC",
@@ -17849,7 +18584,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F443-1F3FD",
@@ -17861,7 +18597,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F443-1F3FE",
@@ -17873,7 +18610,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F443-1F3FF",
@@ -17885,7 +18623,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -17913,7 +18652,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TONGUE",
@@ -17939,7 +18679,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WHITE UP POINTING BACKHAND INDEX",
@@ -17966,6 +18707,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F446-1F3FB",
@@ -17977,7 +18719,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F446-1F3FC",
@@ -17989,7 +18732,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F446-1F3FD",
@@ -18001,7 +18745,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F446-1F3FE",
@@ -18013,7 +18758,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F446-1F3FF",
@@ -18025,7 +18771,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -18054,6 +18801,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F447-1F3FB",
@@ -18065,7 +18813,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F447-1F3FC",
@@ -18077,7 +18826,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F447-1F3FD",
@@ -18089,7 +18839,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F447-1F3FE",
@@ -18101,7 +18852,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F447-1F3FF",
@@ -18113,7 +18865,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -18142,6 +18895,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F448-1F3FB",
@@ -18153,7 +18907,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F448-1F3FC",
@@ -18165,7 +18920,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F448-1F3FD",
@@ -18177,7 +18933,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F448-1F3FE",
@@ -18189,7 +18946,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F448-1F3FF",
@@ -18201,7 +18959,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -18230,6 +18989,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F449-1F3FB",
@@ -18241,7 +19001,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F449-1F3FC",
@@ -18253,7 +19014,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F449-1F3FD",
@@ -18265,7 +19027,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F449-1F3FE",
@@ -18277,7 +19040,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F449-1F3FF",
@@ -18289,7 +19053,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -18319,6 +19084,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F44A-1F3FB",
@@ -18330,7 +19096,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F44A-1F3FC",
@@ -18342,7 +19109,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F44A-1F3FD",
@@ -18354,7 +19122,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F44A-1F3FE",
@@ -18366,7 +19135,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F44A-1F3FF",
@@ -18378,7 +19148,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -18407,6 +19178,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F44B-1F3FB",
@@ -18418,7 +19190,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F44B-1F3FC",
@@ -18430,7 +19203,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F44B-1F3FD",
@@ -18442,7 +19216,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F44B-1F3FE",
@@ -18454,7 +19229,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F44B-1F3FF",
@@ -18466,7 +19242,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -18495,6 +19272,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F44C-1F3FB",
@@ -18506,7 +19284,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F44C-1F3FC",
@@ -18518,7 +19297,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F44C-1F3FD",
@@ -18530,7 +19310,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F44C-1F3FE",
@@ -18542,7 +19323,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F44C-1F3FF",
@@ -18554,7 +19336,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -18584,6 +19367,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F44D-1F3FB",
@@ -18595,7 +19379,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F44D-1F3FC",
@@ -18607,7 +19392,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F44D-1F3FD",
@@ -18619,7 +19405,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F44D-1F3FE",
@@ -18631,7 +19418,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F44D-1F3FF",
@@ -18643,7 +19431,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -18673,6 +19462,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F44E-1F3FB",
@@ -18684,7 +19474,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F44E-1F3FC",
@@ -18696,7 +19487,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F44E-1F3FD",
@@ -18708,7 +19500,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F44E-1F3FE",
@@ -18720,7 +19513,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F44E-1F3FF",
@@ -18732,7 +19526,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -18761,6 +19556,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F44F-1F3FB",
@@ -18772,7 +19568,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F44F-1F3FC",
@@ -18784,7 +19581,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F44F-1F3FD",
@@ -18796,7 +19594,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F44F-1F3FE",
@@ -18808,7 +19607,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F44F-1F3FF",
@@ -18820,7 +19620,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -18849,6 +19650,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F450-1F3FB",
@@ -18860,7 +19662,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F450-1F3FC",
@@ -18872,7 +19675,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F450-1F3FD",
@@ -18884,7 +19688,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F450-1F3FE",
@@ -18896,7 +19701,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F450-1F3FF",
@@ -18908,7 +19714,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -18936,7 +19743,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WOMANS HAT",
@@ -18962,7 +19770,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "EYEGLASSES",
@@ -18988,7 +19797,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NECKTIE",
@@ -19014,7 +19824,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "T-SHIRT",
@@ -19041,7 +19852,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "JEANS",
@@ -19067,7 +19879,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DRESS",
@@ -19093,7 +19906,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "KIMONO",
@@ -19119,7 +19933,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BIKINI",
@@ -19145,7 +19960,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WOMANS CLOTHES",
@@ -19171,7 +19987,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PURSE",
@@ -19197,7 +20014,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HANDBAG",
@@ -19223,7 +20041,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "POUCH",
@@ -19249,7 +20068,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MANS SHOE",
@@ -19276,7 +20096,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ATHLETIC SHOE",
@@ -19302,7 +20123,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HIGH-HEELED SHOE",
@@ -19328,7 +20150,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WOMANS SANDAL",
@@ -19354,7 +20177,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WOMANS BOOTS",
@@ -19380,7 +20204,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FOOTPRINTS",
@@ -19406,7 +20231,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BUST IN SILHOUETTE",
@@ -19432,7 +20258,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BUSTS IN SILHOUETTE",
@@ -19458,7 +20285,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BOY",
@@ -19485,6 +20313,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F466-1F3FB",
@@ -19496,7 +20325,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F466-1F3FC",
@@ -19508,7 +20338,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F466-1F3FD",
@@ -19520,7 +20351,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F466-1F3FE",
@@ -19532,7 +20364,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F466-1F3FF",
@@ -19544,7 +20377,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -19573,6 +20407,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F467-1F3FB",
@@ -19584,7 +20419,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F467-1F3FC",
@@ -19596,7 +20432,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F467-1F3FD",
@@ -19608,7 +20445,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F467-1F3FE",
@@ -19620,7 +20458,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F467-1F3FF",
@@ -19632,7 +20471,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -19661,6 +20501,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F33E",
@@ -19672,7 +20513,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F33E",
@@ -19684,7 +20526,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F33E",
@@ -19696,7 +20539,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F33E",
@@ -19708,7 +20552,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F33E",
@@ -19720,7 +20565,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -19749,6 +20595,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F373",
@@ -19760,7 +20607,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F373",
@@ -19772,7 +20620,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F373",
@@ -19784,7 +20633,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F373",
@@ -19796,7 +20646,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F373",
@@ -19808,7 +20659,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -19837,6 +20689,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F37C",
@@ -19848,7 +20701,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F37C",
@@ -19860,7 +20714,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F37C",
@@ -19872,7 +20727,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F37C",
@@ -19884,7 +20740,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F37C",
@@ -19896,7 +20753,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -19925,6 +20783,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F393",
@@ -19936,7 +20795,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F393",
@@ -19948,7 +20808,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F393",
@@ -19960,7 +20821,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F393",
@@ -19972,7 +20834,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F393",
@@ -19984,7 +20847,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -20013,6 +20877,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F3A4",
@@ -20024,7 +20889,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F3A4",
@@ -20036,7 +20902,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F3A4",
@@ -20048,7 +20915,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F3A4",
@@ -20060,7 +20928,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F3A4",
@@ -20072,7 +20941,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -20101,6 +20971,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F3A8",
@@ -20112,7 +20983,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F3A8",
@@ -20124,7 +20996,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F3A8",
@@ -20136,7 +21009,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F3A8",
@@ -20148,7 +21022,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F3A8",
@@ -20160,7 +21035,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -20189,6 +21065,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F3EB",
@@ -20200,7 +21077,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F3EB",
@@ -20212,7 +21090,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F3EB",
@@ -20224,7 +21103,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F3EB",
@@ -20236,7 +21116,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F3EB",
@@ -20248,7 +21129,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -20277,6 +21159,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F3ED",
@@ -20288,7 +21171,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F3ED",
@@ -20300,7 +21184,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F3ED",
@@ -20312,7 +21197,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F3ED",
@@ -20324,7 +21210,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F3ED",
@@ -20336,7 +21223,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -20364,7 +21252,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "FAMILY: MAN, BOY",
@@ -20390,7 +21279,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "FAMILY: MAN, GIRL, BOY",
@@ -20416,7 +21306,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "FAMILY: MAN, GIRL, GIRL",
@@ -20442,7 +21333,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "FAMILY: MAN, GIRL",
@@ -20468,7 +21360,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "FAMILY: MAN, MAN, BOY",
@@ -20494,7 +21387,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "FAMILY: MAN, MAN, BOY, BOY",
@@ -20520,7 +21414,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "FAMILY: MAN, MAN, GIRL",
@@ -20546,7 +21441,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "FAMILY: MAN, MAN, GIRL, BOY",
@@ -20572,7 +21468,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "FAMILY: MAN, MAN, GIRL, GIRL",
@@ -20598,7 +21495,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "FAMILY: MAN, WOMAN, BOY",
@@ -20625,6 +21523,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": false,
"obsoletes": "1F46A"
},
{
@@ -20651,7 +21550,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "FAMILY: MAN, WOMAN, GIRL",
@@ -20677,7 +21577,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "FAMILY: MAN, WOMAN, GIRL, BOY",
@@ -20703,7 +21604,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "FAMILY: MAN, WOMAN, GIRL, GIRL",
@@ -20729,7 +21631,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "MAN TECHNOLOGIST",
@@ -20756,6 +21659,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": false,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F4BB",
@@ -20767,7 +21671,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F4BB",
@@ -20779,7 +21684,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F4BB",
@@ -20791,7 +21697,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F4BB",
@@ -20803,7 +21710,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F4BB",
@@ -20815,7 +21723,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
}
}
},
@@ -20844,6 +21753,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F4BC",
@@ -20855,7 +21765,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F4BC",
@@ -20867,7 +21778,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F4BC",
@@ -20879,7 +21791,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F4BC",
@@ -20891,7 +21804,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F4BC",
@@ -20903,7 +21817,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -20932,6 +21847,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F527",
@@ -20943,7 +21859,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F527",
@@ -20955,7 +21872,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F527",
@@ -20967,7 +21885,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F527",
@@ -20979,7 +21898,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F527",
@@ -20991,7 +21911,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -21020,6 +21941,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F52C",
@@ -21031,7 +21953,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F52C",
@@ -21043,7 +21966,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F52C",
@@ -21055,7 +21979,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F52C",
@@ -21067,7 +21992,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F52C",
@@ -21079,7 +22005,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -21108,6 +22035,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F680",
@@ -21119,7 +22047,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F680",
@@ -21131,7 +22060,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F680",
@@ -21143,7 +22073,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F680",
@@ -21155,7 +22086,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F680",
@@ -21167,7 +22099,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -21196,6 +22129,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F692",
@@ -21207,7 +22141,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F692",
@@ -21219,7 +22154,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F692",
@@ -21231,7 +22167,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F692",
@@ -21243,7 +22180,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F692",
@@ -21255,7 +22193,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -21284,6 +22223,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F9AF",
@@ -21295,7 +22235,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F9AF",
@@ -21307,7 +22248,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F9AF",
@@ -21319,7 +22261,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F9AF",
@@ -21331,7 +22274,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F9AF",
@@ -21343,7 +22287,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -21372,6 +22317,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F9B0",
@@ -21383,7 +22329,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F9B0",
@@ -21395,7 +22342,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F9B0",
@@ -21407,7 +22355,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F9B0",
@@ -21419,7 +22368,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F9B0",
@@ -21431,7 +22381,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -21460,6 +22411,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F9B1",
@@ -21471,7 +22423,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F9B1",
@@ -21483,7 +22436,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F9B1",
@@ -21495,7 +22449,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F9B1",
@@ -21507,7 +22462,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F9B1",
@@ -21519,7 +22475,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -21548,6 +22505,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F9B2",
@@ -21559,7 +22517,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F9B2",
@@ -21571,7 +22530,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F9B2",
@@ -21583,7 +22543,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F9B2",
@@ -21595,7 +22556,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F9B2",
@@ -21607,7 +22569,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -21636,6 +22599,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F9B3",
@@ -21647,7 +22611,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F9B3",
@@ -21659,7 +22624,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F9B3",
@@ -21671,7 +22637,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F9B3",
@@ -21683,7 +22650,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F9B3",
@@ -21695,7 +22663,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -21724,6 +22693,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F9BC",
@@ -21735,7 +22705,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F9BC",
@@ -21747,7 +22718,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F9BC",
@@ -21759,7 +22731,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F9BC",
@@ -21771,7 +22744,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F9BC",
@@ -21783,7 +22757,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -21812,6 +22787,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F9BD",
@@ -21823,7 +22799,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F9BD",
@@ -21835,7 +22812,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F9BD",
@@ -21847,7 +22825,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F9BD",
@@ -21859,7 +22838,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F9BD",
@@ -21871,7 +22851,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -21900,6 +22881,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-2695-FE0F",
@@ -21911,7 +22893,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-2695-FE0F",
@@ -21923,7 +22906,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-2695-FE0F",
@@ -21935,7 +22919,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-2695-FE0F",
@@ -21947,7 +22932,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-2695-FE0F",
@@ -21959,7 +22945,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -21988,6 +22975,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-2696-FE0F",
@@ -21999,7 +22987,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-2696-FE0F",
@@ -22011,7 +23000,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-2696-FE0F",
@@ -22023,7 +23013,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-2696-FE0F",
@@ -22035,7 +23026,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-2696-FE0F",
@@ -22047,7 +23039,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -22076,6 +23069,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-2708-FE0F",
@@ -22087,7 +23081,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-2708-FE0F",
@@ -22099,7 +23094,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-2708-FE0F",
@@ -22111,7 +23107,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-2708-FE0F",
@@ -22123,7 +23120,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-2708-FE0F",
@@ -22135,7 +23133,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -22164,6 +23163,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": false,
"skin_variations": {
"1F3FB-1F3FB": {
"unified": "1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FB",
@@ -22175,7 +23175,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FC": {
"unified": "1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FC",
@@ -22187,7 +23188,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FD": {
"unified": "1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FD",
@@ -22199,7 +23201,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FE": {
"unified": "1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FE",
@@ -22211,7 +23214,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FF": {
"unified": "1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FF",
@@ -22223,7 +23227,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FB": {
"unified": "1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FB",
@@ -22235,7 +23240,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FC": {
"unified": "1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FC",
@@ -22247,7 +23253,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FD": {
"unified": "1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FD",
@@ -22259,7 +23266,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FE": {
"unified": "1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FE",
@@ -22271,7 +23279,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FF": {
"unified": "1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FF",
@@ -22283,7 +23292,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FB": {
"unified": "1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FB",
@@ -22295,7 +23305,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FC": {
"unified": "1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FC",
@@ -22307,7 +23318,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FD": {
"unified": "1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FD",
@@ -22319,7 +23331,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FE": {
"unified": "1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FE",
@@ -22331,7 +23344,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FF": {
"unified": "1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FF",
@@ -22343,7 +23357,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FB": {
"unified": "1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FB",
@@ -22355,7 +23370,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FC": {
"unified": "1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FC",
@@ -22367,7 +23383,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FD": {
"unified": "1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FD",
@@ -22379,7 +23396,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FE": {
"unified": "1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FE",
@@ -22391,7 +23409,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FF": {
"unified": "1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FF",
@@ -22403,7 +23422,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FB": {
"unified": "1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FB",
@@ -22415,7 +23435,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FC": {
"unified": "1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FC",
@@ -22427,7 +23448,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FD": {
"unified": "1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FD",
@@ -22439,7 +23461,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FE": {
"unified": "1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FE",
@@ -22451,7 +23474,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FF": {
"unified": "1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FF",
@@ -22463,7 +23487,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
}
}
},
@@ -22492,6 +23517,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": false,
"skin_variations": {
"1F3FB-1F3FB": {
"unified": "1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
@@ -22503,7 +23529,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FC": {
"unified": "1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
@@ -22515,7 +23542,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FD": {
"unified": "1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
@@ -22527,7 +23555,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FE": {
"unified": "1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
@@ -22539,7 +23568,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FF": {
"unified": "1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
@@ -22551,7 +23581,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FB": {
"unified": "1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
@@ -22563,7 +23594,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FC": {
"unified": "1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
@@ -22575,7 +23607,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FD": {
"unified": "1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
@@ -22587,7 +23620,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FE": {
"unified": "1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
@@ -22599,7 +23633,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FF": {
"unified": "1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
@@ -22611,7 +23646,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FB": {
"unified": "1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
@@ -22623,7 +23659,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FC": {
"unified": "1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
@@ -22635,7 +23672,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FD": {
"unified": "1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
@@ -22647,7 +23685,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FE": {
"unified": "1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
@@ -22659,7 +23698,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FF": {
"unified": "1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
@@ -22671,7 +23711,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FB": {
"unified": "1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
@@ -22683,7 +23724,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FC": {
"unified": "1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
@@ -22695,7 +23737,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FD": {
"unified": "1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
@@ -22707,7 +23750,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FE": {
"unified": "1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
@@ -22719,7 +23763,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FF": {
"unified": "1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
@@ -22731,7 +23776,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FB": {
"unified": "1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
@@ -22743,7 +23789,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FC": {
"unified": "1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
@@ -22755,7 +23802,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FD": {
"unified": "1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
@@ -22767,7 +23815,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FE": {
"unified": "1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
@@ -22779,7 +23828,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FF": {
"unified": "1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
@@ -22791,7 +23841,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
}
}
},
@@ -22820,6 +23871,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB",
@@ -22831,7 +23883,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F468-1F3FC",
@@ -22843,7 +23896,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F468-1F3FD",
@@ -22855,7 +23909,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F468-1F3FE",
@@ -22867,7 +23922,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F468-1F3FF",
@@ -22879,7 +23935,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -22908,6 +23965,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F33E",
@@ -22919,7 +23977,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F33E",
@@ -22931,7 +23990,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F33E",
@@ -22943,7 +24003,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F33E",
@@ -22955,7 +24016,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F33E",
@@ -22967,7 +24029,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -22996,6 +24059,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F373",
@@ -23007,7 +24071,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F373",
@@ -23019,7 +24084,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F373",
@@ -23031,7 +24097,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F373",
@@ -23043,7 +24110,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F373",
@@ -23055,7 +24123,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -23084,6 +24153,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F37C",
@@ -23095,7 +24165,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F37C",
@@ -23107,7 +24178,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F37C",
@@ -23119,7 +24191,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F37C",
@@ -23131,7 +24204,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F37C",
@@ -23143,7 +24217,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -23172,6 +24247,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F393",
@@ -23183,7 +24259,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F393",
@@ -23195,7 +24272,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F393",
@@ -23207,7 +24285,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F393",
@@ -23219,7 +24298,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F393",
@@ -23231,7 +24311,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -23260,6 +24341,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F3A4",
@@ -23271,7 +24353,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F3A4",
@@ -23283,7 +24366,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F3A4",
@@ -23295,7 +24379,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F3A4",
@@ -23307,7 +24392,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F3A4",
@@ -23319,7 +24405,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -23348,6 +24435,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F3A8",
@@ -23359,7 +24447,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F3A8",
@@ -23371,7 +24460,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F3A8",
@@ -23383,7 +24473,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F3A8",
@@ -23395,7 +24486,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F3A8",
@@ -23407,7 +24499,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -23436,6 +24529,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F3EB",
@@ -23447,7 +24541,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F3EB",
@@ -23459,7 +24554,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F3EB",
@@ -23471,7 +24567,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F3EB",
@@ -23483,7 +24580,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F3EB",
@@ -23495,7 +24593,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -23524,6 +24623,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F3ED",
@@ -23535,7 +24635,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F3ED",
@@ -23547,7 +24648,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F3ED",
@@ -23559,7 +24661,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F3ED",
@@ -23571,7 +24674,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F3ED",
@@ -23583,7 +24687,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -23611,7 +24716,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "FAMILY: WOMAN, BOY",
@@ -23637,7 +24743,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "FAMILY: WOMAN, GIRL, BOY",
@@ -23663,7 +24770,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "FAMILY: WOMAN, GIRL, GIRL",
@@ -23689,7 +24797,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "FAMILY: WOMAN, GIRL",
@@ -23715,7 +24824,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "FAMILY: WOMAN, WOMAN, BOY",
@@ -23741,7 +24851,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "FAMILY: WOMAN, WOMAN, BOY, BOY",
@@ -23767,7 +24878,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "FAMILY: WOMAN, WOMAN, GIRL",
@@ -23793,7 +24905,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "FAMILY: WOMAN, WOMAN, GIRL, BOY",
@@ -23819,7 +24932,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "FAMILY: WOMAN, WOMAN, GIRL, GIRL",
@@ -23845,7 +24959,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "WOMAN TECHNOLOGIST",
@@ -23872,6 +24987,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": false,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F4BB",
@@ -23883,7 +24999,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F4BB",
@@ -23895,7 +25012,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F4BB",
@@ -23907,7 +25025,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F4BB",
@@ -23919,7 +25038,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F4BB",
@@ -23931,7 +25051,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
}
}
},
@@ -23960,6 +25081,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F4BC",
@@ -23971,7 +25093,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F4BC",
@@ -23983,7 +25106,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F4BC",
@@ -23995,7 +25119,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F4BC",
@@ -24007,7 +25132,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F4BC",
@@ -24019,7 +25145,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -24048,6 +25175,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F527",
@@ -24059,7 +25187,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F527",
@@ -24071,7 +25200,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F527",
@@ -24083,7 +25213,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F527",
@@ -24095,7 +25226,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F527",
@@ -24107,7 +25239,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -24136,6 +25269,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F52C",
@@ -24147,7 +25281,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F52C",
@@ -24159,7 +25294,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F52C",
@@ -24171,7 +25307,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F52C",
@@ -24183,7 +25320,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F52C",
@@ -24195,7 +25333,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -24224,6 +25363,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F680",
@@ -24235,7 +25375,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F680",
@@ -24247,7 +25388,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F680",
@@ -24259,7 +25401,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F680",
@@ -24271,7 +25414,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F680",
@@ -24283,7 +25427,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -24312,6 +25457,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F692",
@@ -24323,7 +25469,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F692",
@@ -24335,7 +25482,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F692",
@@ -24347,7 +25495,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F692",
@@ -24359,7 +25508,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F692",
@@ -24371,7 +25521,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -24400,6 +25551,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F9AF",
@@ -24411,7 +25563,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F9AF",
@@ -24423,7 +25576,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F9AF",
@@ -24435,7 +25589,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F9AF",
@@ -24447,7 +25602,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F9AF",
@@ -24459,7 +25615,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -24488,6 +25645,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F9B0",
@@ -24499,7 +25657,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F9B0",
@@ -24511,7 +25670,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F9B0",
@@ -24523,7 +25683,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F9B0",
@@ -24535,7 +25696,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F9B0",
@@ -24547,7 +25709,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -24576,6 +25739,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F9B1",
@@ -24587,7 +25751,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F9B1",
@@ -24599,7 +25764,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F9B1",
@@ -24611,7 +25777,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F9B1",
@@ -24623,7 +25790,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F9B1",
@@ -24635,7 +25803,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -24664,6 +25833,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F9B2",
@@ -24675,7 +25845,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F9B2",
@@ -24687,7 +25858,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F9B2",
@@ -24699,7 +25871,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F9B2",
@@ -24711,7 +25884,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F9B2",
@@ -24723,7 +25897,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -24752,6 +25927,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F9B3",
@@ -24763,7 +25939,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F9B3",
@@ -24775,7 +25952,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F9B3",
@@ -24787,7 +25965,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F9B3",
@@ -24799,7 +25978,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F9B3",
@@ -24811,7 +25991,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -24840,6 +26021,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F9BC",
@@ -24851,7 +26033,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F9BC",
@@ -24863,7 +26046,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F9BC",
@@ -24875,7 +26059,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F9BC",
@@ -24887,7 +26072,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F9BC",
@@ -24899,7 +26085,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -24928,6 +26115,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F9BD",
@@ -24939,7 +26127,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F9BD",
@@ -24951,7 +26140,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F9BD",
@@ -24963,7 +26153,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F9BD",
@@ -24975,7 +26166,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F9BD",
@@ -24987,7 +26179,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -25016,6 +26209,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-2695-FE0F",
@@ -25027,7 +26221,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-2695-FE0F",
@@ -25039,7 +26234,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-2695-FE0F",
@@ -25051,7 +26247,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-2695-FE0F",
@@ -25063,7 +26260,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-2695-FE0F",
@@ -25075,7 +26273,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -25104,6 +26303,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-2696-FE0F",
@@ -25115,7 +26315,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-2696-FE0F",
@@ -25127,7 +26328,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-2696-FE0F",
@@ -25139,7 +26341,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-2696-FE0F",
@@ -25151,7 +26354,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-2696-FE0F",
@@ -25163,7 +26367,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -25192,6 +26397,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-2708-FE0F",
@@ -25203,7 +26409,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-2708-FE0F",
@@ -25215,7 +26422,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-2708-FE0F",
@@ -25227,7 +26435,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-2708-FE0F",
@@ -25239,7 +26448,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-2708-FE0F",
@@ -25251,7 +26461,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -25280,6 +26491,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": false,
"skin_variations": {
"1F3FB-1F3FB": {
"unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FB",
@@ -25291,7 +26503,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FC": {
"unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FC",
@@ -25303,7 +26516,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FD": {
"unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FD",
@@ -25315,7 +26529,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FE": {
"unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FE",
@@ -25327,7 +26542,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FF": {
"unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FF",
@@ -25339,7 +26555,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FB": {
"unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FB",
@@ -25351,7 +26568,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FC": {
"unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FC",
@@ -25363,7 +26581,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FD": {
"unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FD",
@@ -25375,7 +26594,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FE": {
"unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FE",
@@ -25387,7 +26607,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FF": {
"unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FF",
@@ -25399,7 +26620,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FB": {
"unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FB",
@@ -25411,7 +26633,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FC": {
"unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FC",
@@ -25423,7 +26646,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FD": {
"unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FD",
@@ -25435,7 +26659,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FE": {
"unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FE",
@@ -25447,7 +26672,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FF": {
"unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FF",
@@ -25459,7 +26685,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FB": {
"unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FB",
@@ -25471,7 +26698,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FC": {
"unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FC",
@@ -25483,7 +26711,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FD": {
"unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FD",
@@ -25495,7 +26724,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FE": {
"unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FE",
@@ -25507,7 +26737,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FF": {
"unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FF",
@@ -25519,7 +26750,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FB": {
"unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FB",
@@ -25531,7 +26763,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FC": {
"unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FC",
@@ -25543,7 +26776,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FD": {
"unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FD",
@@ -25555,7 +26789,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FE": {
"unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FE",
@@ -25567,7 +26802,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FF": {
"unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FF",
@@ -25579,7 +26815,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
}
}
},
@@ -25608,6 +26845,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": false,
"skin_variations": {
"1F3FB-1F3FB": {
"unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FB",
@@ -25619,7 +26857,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FC": {
"unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FC",
@@ -25631,7 +26870,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FD": {
"unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FD",
@@ -25643,7 +26883,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FE": {
"unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FE",
@@ -25655,7 +26896,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FF": {
"unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FF",
@@ -25667,7 +26909,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FB": {
"unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FB",
@@ -25679,7 +26922,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FC": {
"unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FC",
@@ -25691,7 +26935,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FD": {
"unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FD",
@@ -25703,7 +26948,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FE": {
"unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FE",
@@ -25715,7 +26961,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FF": {
"unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FF",
@@ -25727,7 +26974,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FB": {
"unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FB",
@@ -25739,7 +26987,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FC": {
"unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FC",
@@ -25751,7 +27000,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FD": {
"unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FD",
@@ -25763,7 +27013,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FE": {
"unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FE",
@@ -25775,7 +27026,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FF": {
"unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FF",
@@ -25787,7 +27039,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FB": {
"unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FB",
@@ -25799,7 +27052,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FC": {
"unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FC",
@@ -25811,7 +27065,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FD": {
"unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FD",
@@ -25823,7 +27078,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FE": {
"unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FE",
@@ -25835,7 +27091,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FF": {
"unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FF",
@@ -25847,7 +27104,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FB": {
"unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FB",
@@ -25859,7 +27117,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FC": {
"unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FC",
@@ -25871,7 +27130,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FD": {
"unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FD",
@@ -25883,7 +27143,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FE": {
"unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FE",
@@ -25895,7 +27156,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FF": {
"unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FF",
@@ -25907,7 +27169,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
}
}
},
@@ -25936,6 +27199,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": false,
"skin_variations": {
"1F3FB-1F3FB": {
"unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
@@ -25947,7 +27211,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FC": {
"unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
@@ -25959,7 +27224,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FD": {
"unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
@@ -25971,7 +27237,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FE": {
"unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
@@ -25983,7 +27250,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FF": {
"unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
@@ -25995,7 +27263,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FB": {
"unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
@@ -26007,7 +27276,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FC": {
"unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
@@ -26019,7 +27289,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FD": {
"unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
@@ -26031,7 +27302,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FE": {
"unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
@@ -26043,7 +27315,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FF": {
"unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
@@ -26055,7 +27328,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FB": {
"unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
@@ -26067,7 +27341,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FC": {
"unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
@@ -26079,7 +27354,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FD": {
"unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
@@ -26091,7 +27367,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FE": {
"unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
@@ -26103,7 +27380,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FF": {
"unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
@@ -26115,7 +27393,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FB": {
"unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
@@ -26127,7 +27406,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FC": {
"unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
@@ -26139,7 +27419,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FD": {
"unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
@@ -26151,7 +27432,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FE": {
"unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
@@ -26163,7 +27445,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FF": {
"unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
@@ -26175,7 +27458,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FB": {
"unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
@@ -26187,7 +27471,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FC": {
"unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
@@ -26199,7 +27484,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FD": {
"unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
@@ -26211,7 +27497,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FE": {
"unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
@@ -26223,7 +27510,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FF": {
"unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
@@ -26235,7 +27523,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
}
}
},
@@ -26264,6 +27553,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": false,
"skin_variations": {
"1F3FB-1F3FB": {
"unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB",
@@ -26275,7 +27565,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FC": {
"unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC",
@@ -26287,7 +27578,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FD": {
"unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD",
@@ -26299,7 +27591,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FE": {
"unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE",
@@ -26311,7 +27604,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FF": {
"unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF",
@@ -26323,7 +27617,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FB": {
"unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB",
@@ -26335,7 +27630,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FC": {
"unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC",
@@ -26347,7 +27643,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FD": {
"unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD",
@@ -26359,7 +27656,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FE": {
"unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE",
@@ -26371,7 +27669,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FF": {
"unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF",
@@ -26383,7 +27682,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FB": {
"unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB",
@@ -26395,7 +27695,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FC": {
"unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC",
@@ -26407,7 +27708,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FD": {
"unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD",
@@ -26419,7 +27721,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FE": {
"unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE",
@@ -26431,7 +27734,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FF": {
"unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF",
@@ -26443,7 +27747,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FB": {
"unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB",
@@ -26455,7 +27760,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FC": {
"unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC",
@@ -26467,7 +27773,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FD": {
"unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD",
@@ -26479,7 +27786,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FE": {
"unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE",
@@ -26491,7 +27799,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FF": {
"unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF",
@@ -26503,7 +27812,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FB": {
"unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB",
@@ -26515,7 +27825,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FC": {
"unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC",
@@ -26527,7 +27838,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FD": {
"unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD",
@@ -26539,7 +27851,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FE": {
"unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE",
@@ -26551,7 +27864,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FF": {
"unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF",
@@ -26563,7 +27877,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
}
}
},
@@ -26592,6 +27907,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB",
@@ -26603,7 +27919,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F469-1F3FC",
@@ -26615,7 +27932,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F469-1F3FD",
@@ -26627,7 +27945,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F469-1F3FE",
@@ -26639,7 +27958,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F469-1F3FF",
@@ -26651,7 +27971,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -26680,6 +28001,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": false,
"obsoleted_by": "1F468-200D-1F469-200D-1F466"
},
{
@@ -26709,6 +28031,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": false,
"skin_variations": {
"1F3FB": {
"unified": "1F46B-1F3FB",
@@ -26720,7 +28043,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F46B-1F3FC",
@@ -26732,7 +28056,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F46B-1F3FD",
@@ -26744,7 +28069,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F46B-1F3FE",
@@ -26756,7 +28082,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F46B-1F3FF",
@@ -26768,7 +28095,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FB-1F3FC": {
"unified": "1F469-1F3FB-200D-1F91D-200D-1F468-1F3FC",
@@ -26780,7 +28108,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FD": {
"unified": "1F469-1F3FB-200D-1F91D-200D-1F468-1F3FD",
@@ -26792,7 +28121,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FE": {
"unified": "1F469-1F3FB-200D-1F91D-200D-1F468-1F3FE",
@@ -26804,7 +28134,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FF": {
"unified": "1F469-1F3FB-200D-1F91D-200D-1F468-1F3FF",
@@ -26816,7 +28147,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FB": {
"unified": "1F469-1F3FC-200D-1F91D-200D-1F468-1F3FB",
@@ -26828,7 +28160,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FD": {
"unified": "1F469-1F3FC-200D-1F91D-200D-1F468-1F3FD",
@@ -26840,7 +28173,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FE": {
"unified": "1F469-1F3FC-200D-1F91D-200D-1F468-1F3FE",
@@ -26852,7 +28186,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FF": {
"unified": "1F469-1F3FC-200D-1F91D-200D-1F468-1F3FF",
@@ -26864,7 +28199,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FB": {
"unified": "1F469-1F3FD-200D-1F91D-200D-1F468-1F3FB",
@@ -26876,7 +28212,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FC": {
"unified": "1F469-1F3FD-200D-1F91D-200D-1F468-1F3FC",
@@ -26888,7 +28225,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FE": {
"unified": "1F469-1F3FD-200D-1F91D-200D-1F468-1F3FE",
@@ -26900,7 +28238,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FF": {
"unified": "1F469-1F3FD-200D-1F91D-200D-1F468-1F3FF",
@@ -26912,7 +28251,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FB": {
"unified": "1F469-1F3FE-200D-1F91D-200D-1F468-1F3FB",
@@ -26924,7 +28264,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FC": {
"unified": "1F469-1F3FE-200D-1F91D-200D-1F468-1F3FC",
@@ -26936,7 +28277,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FD": {
"unified": "1F469-1F3FE-200D-1F91D-200D-1F468-1F3FD",
@@ -26948,7 +28290,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FF": {
"unified": "1F469-1F3FE-200D-1F91D-200D-1F468-1F3FF",
@@ -26960,7 +28303,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FB": {
"unified": "1F469-1F3FF-200D-1F91D-200D-1F468-1F3FB",
@@ -26972,7 +28316,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FC": {
"unified": "1F469-1F3FF-200D-1F91D-200D-1F468-1F3FC",
@@ -26984,7 +28329,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FD": {
"unified": "1F469-1F3FF-200D-1F91D-200D-1F468-1F3FD",
@@ -26996,7 +28342,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FE": {
"unified": "1F469-1F3FF-200D-1F91D-200D-1F468-1F3FE",
@@ -27008,7 +28355,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
}
}
},
@@ -27038,6 +28386,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": false,
"skin_variations": {
"1F3FB": {
"unified": "1F46C-1F3FB",
@@ -27049,7 +28398,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F46C-1F3FC",
@@ -27061,7 +28411,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F46C-1F3FD",
@@ -27073,7 +28424,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F46C-1F3FE",
@@ -27085,7 +28437,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F46C-1F3FF",
@@ -27097,7 +28450,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FB-1F3FC": {
"unified": "1F468-1F3FB-200D-1F91D-200D-1F468-1F3FC",
@@ -27109,7 +28463,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FD": {
"unified": "1F468-1F3FB-200D-1F91D-200D-1F468-1F3FD",
@@ -27121,7 +28476,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FE": {
"unified": "1F468-1F3FB-200D-1F91D-200D-1F468-1F3FE",
@@ -27133,7 +28489,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FF": {
"unified": "1F468-1F3FB-200D-1F91D-200D-1F468-1F3FF",
@@ -27145,7 +28502,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FB": {
"unified": "1F468-1F3FC-200D-1F91D-200D-1F468-1F3FB",
@@ -27157,7 +28515,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FD": {
"unified": "1F468-1F3FC-200D-1F91D-200D-1F468-1F3FD",
@@ -27169,7 +28528,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FE": {
"unified": "1F468-1F3FC-200D-1F91D-200D-1F468-1F3FE",
@@ -27181,7 +28541,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FF": {
"unified": "1F468-1F3FC-200D-1F91D-200D-1F468-1F3FF",
@@ -27193,7 +28554,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FB": {
"unified": "1F468-1F3FD-200D-1F91D-200D-1F468-1F3FB",
@@ -27205,7 +28567,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FC": {
"unified": "1F468-1F3FD-200D-1F91D-200D-1F468-1F3FC",
@@ -27217,7 +28580,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FE": {
"unified": "1F468-1F3FD-200D-1F91D-200D-1F468-1F3FE",
@@ -27229,7 +28593,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FF": {
"unified": "1F468-1F3FD-200D-1F91D-200D-1F468-1F3FF",
@@ -27241,7 +28606,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FB": {
"unified": "1F468-1F3FE-200D-1F91D-200D-1F468-1F3FB",
@@ -27253,7 +28619,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FC": {
"unified": "1F468-1F3FE-200D-1F91D-200D-1F468-1F3FC",
@@ -27265,7 +28632,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FD": {
"unified": "1F468-1F3FE-200D-1F91D-200D-1F468-1F3FD",
@@ -27277,7 +28645,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FF": {
"unified": "1F468-1F3FE-200D-1F91D-200D-1F468-1F3FF",
@@ -27289,7 +28658,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FB": {
"unified": "1F468-1F3FF-200D-1F91D-200D-1F468-1F3FB",
@@ -27301,7 +28671,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FC": {
"unified": "1F468-1F3FF-200D-1F91D-200D-1F468-1F3FC",
@@ -27313,7 +28684,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FD": {
"unified": "1F468-1F3FF-200D-1F91D-200D-1F468-1F3FD",
@@ -27325,7 +28697,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FE": {
"unified": "1F468-1F3FF-200D-1F91D-200D-1F468-1F3FE",
@@ -27337,7 +28710,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
}
}
},
@@ -27367,6 +28741,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": false,
"skin_variations": {
"1F3FB": {
"unified": "1F46D-1F3FB",
@@ -27378,7 +28753,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F46D-1F3FC",
@@ -27390,7 +28766,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F46D-1F3FD",
@@ -27402,7 +28779,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F46D-1F3FE",
@@ -27414,7 +28792,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F46D-1F3FF",
@@ -27426,7 +28805,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FB-1F3FC": {
"unified": "1F469-1F3FB-200D-1F91D-200D-1F469-1F3FC",
@@ -27438,7 +28818,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FD": {
"unified": "1F469-1F3FB-200D-1F91D-200D-1F469-1F3FD",
@@ -27450,7 +28831,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FE": {
"unified": "1F469-1F3FB-200D-1F91D-200D-1F469-1F3FE",
@@ -27462,7 +28844,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FF": {
"unified": "1F469-1F3FB-200D-1F91D-200D-1F469-1F3FF",
@@ -27474,7 +28857,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FB": {
"unified": "1F469-1F3FC-200D-1F91D-200D-1F469-1F3FB",
@@ -27486,7 +28870,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FD": {
"unified": "1F469-1F3FC-200D-1F91D-200D-1F469-1F3FD",
@@ -27498,7 +28883,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FE": {
"unified": "1F469-1F3FC-200D-1F91D-200D-1F469-1F3FE",
@@ -27510,7 +28896,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FF": {
"unified": "1F469-1F3FC-200D-1F91D-200D-1F469-1F3FF",
@@ -27522,7 +28909,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FB": {
"unified": "1F469-1F3FD-200D-1F91D-200D-1F469-1F3FB",
@@ -27534,7 +28922,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FC": {
"unified": "1F469-1F3FD-200D-1F91D-200D-1F469-1F3FC",
@@ -27546,7 +28935,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FE": {
"unified": "1F469-1F3FD-200D-1F91D-200D-1F469-1F3FE",
@@ -27558,7 +28948,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FF": {
"unified": "1F469-1F3FD-200D-1F91D-200D-1F469-1F3FF",
@@ -27570,7 +28961,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FB": {
"unified": "1F469-1F3FE-200D-1F91D-200D-1F469-1F3FB",
@@ -27582,7 +28974,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FC": {
"unified": "1F469-1F3FE-200D-1F91D-200D-1F469-1F3FC",
@@ -27594,7 +28987,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FD": {
"unified": "1F469-1F3FE-200D-1F91D-200D-1F469-1F3FD",
@@ -27606,7 +29000,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FF": {
"unified": "1F469-1F3FE-200D-1F91D-200D-1F469-1F3FF",
@@ -27618,7 +29013,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FB": {
"unified": "1F469-1F3FF-200D-1F91D-200D-1F469-1F3FB",
@@ -27630,7 +29026,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FC": {
"unified": "1F469-1F3FF-200D-1F91D-200D-1F469-1F3FC",
@@ -27642,7 +29039,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FD": {
"unified": "1F469-1F3FF-200D-1F91D-200D-1F469-1F3FD",
@@ -27654,7 +29052,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FE": {
"unified": "1F469-1F3FF-200D-1F91D-200D-1F469-1F3FE",
@@ -27666,7 +29065,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
}
}
},
@@ -27695,6 +29095,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F46E-1F3FB-200D-2640-FE0F",
@@ -27706,7 +29107,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F46E-1F3FC-200D-2640-FE0F",
@@ -27718,7 +29120,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F46E-1F3FD-200D-2640-FE0F",
@@ -27730,7 +29133,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F46E-1F3FE-200D-2640-FE0F",
@@ -27742,7 +29146,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F46E-1F3FF-200D-2640-FE0F",
@@ -27754,7 +29159,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -27783,6 +29189,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F46E-1F3FB-200D-2642-FE0F",
@@ -27794,7 +29201,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F46E-1F3FC-200D-2642-FE0F",
@@ -27806,7 +29214,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F46E-1F3FD-200D-2642-FE0F",
@@ -27818,7 +29227,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F46E-1F3FE-200D-2642-FE0F",
@@ -27830,7 +29240,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F46E-1F3FF-200D-2642-FE0F",
@@ -27842,7 +29253,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoletes": "1F46E"
@@ -27872,6 +29284,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F46E-1F3FB",
@@ -27883,7 +29296,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F46E-1F3FC",
@@ -27895,7 +29309,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F46E-1F3FD",
@@ -27907,7 +29322,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F46E-1F3FE",
@@ -27919,7 +29335,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F46E-1F3FF",
@@ -27931,7 +29348,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoleted_by": "1F46E-200D-2642-FE0F"
@@ -27962,6 +29380,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F46F"
},
{
@@ -27989,7 +29408,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WOMAN WITH BUNNY EARS",
@@ -28016,6 +29436,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F46F-200D-2640-FE0F"
},
{
@@ -28043,6 +29464,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F470-1F3FB-200D-2640-FE0F",
@@ -28054,7 +29476,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F470-1F3FC-200D-2640-FE0F",
@@ -28066,7 +29489,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F470-1F3FD-200D-2640-FE0F",
@@ -28078,7 +29502,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F470-1F3FE-200D-2640-FE0F",
@@ -28090,7 +29515,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F470-1F3FF-200D-2640-FE0F",
@@ -28102,7 +29528,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -28131,6 +29558,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F470-1F3FB-200D-2642-FE0F",
@@ -28142,7 +29570,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F470-1F3FC-200D-2642-FE0F",
@@ -28154,7 +29583,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F470-1F3FD-200D-2642-FE0F",
@@ -28166,7 +29596,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F470-1F3FE-200D-2642-FE0F",
@@ -28178,7 +29609,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F470-1F3FF-200D-2642-FE0F",
@@ -28190,7 +29622,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -28219,6 +29652,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F470-1F3FB",
@@ -28230,7 +29664,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F470-1F3FC",
@@ -28242,7 +29677,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F470-1F3FD",
@@ -28254,7 +29690,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F470-1F3FE",
@@ -28266,7 +29703,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F470-1F3FF",
@@ -28278,7 +29716,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -28307,6 +29746,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F471-1F3FB-200D-2640-FE0F",
@@ -28318,7 +29758,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F471-1F3FC-200D-2640-FE0F",
@@ -28330,7 +29771,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F471-1F3FD-200D-2640-FE0F",
@@ -28342,7 +29784,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F471-1F3FE-200D-2640-FE0F",
@@ -28354,7 +29797,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F471-1F3FF-200D-2640-FE0F",
@@ -28366,7 +29810,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -28395,6 +29840,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F471-1F3FB-200D-2642-FE0F",
@@ -28406,7 +29852,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F471-1F3FC-200D-2642-FE0F",
@@ -28418,7 +29865,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F471-1F3FD-200D-2642-FE0F",
@@ -28430,7 +29878,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F471-1F3FE-200D-2642-FE0F",
@@ -28442,7 +29891,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F471-1F3FF-200D-2642-FE0F",
@@ -28454,7 +29904,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoletes": "1F471"
@@ -28484,6 +29935,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F471-1F3FB",
@@ -28495,7 +29947,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F471-1F3FC",
@@ -28507,7 +29960,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F471-1F3FD",
@@ -28519,7 +29973,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F471-1F3FE",
@@ -28531,7 +29986,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F471-1F3FF",
@@ -28543,7 +29999,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoleted_by": "1F471-200D-2642-FE0F"
@@ -28573,6 +30030,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F472-1F3FB",
@@ -28584,7 +30042,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F472-1F3FC",
@@ -28596,7 +30055,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F472-1F3FD",
@@ -28608,7 +30068,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F472-1F3FE",
@@ -28620,7 +30081,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F472-1F3FF",
@@ -28632,7 +30094,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -28661,6 +30124,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F473-1F3FB-200D-2640-FE0F",
@@ -28672,7 +30136,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F473-1F3FC-200D-2640-FE0F",
@@ -28684,7 +30149,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F473-1F3FD-200D-2640-FE0F",
@@ -28696,7 +30162,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F473-1F3FE-200D-2640-FE0F",
@@ -28708,7 +30175,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F473-1F3FF-200D-2640-FE0F",
@@ -28720,7 +30188,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -28749,6 +30218,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F473-1F3FB-200D-2642-FE0F",
@@ -28760,7 +30230,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F473-1F3FC-200D-2642-FE0F",
@@ -28772,7 +30243,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F473-1F3FD-200D-2642-FE0F",
@@ -28784,7 +30256,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F473-1F3FE-200D-2642-FE0F",
@@ -28796,7 +30269,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F473-1F3FF-200D-2642-FE0F",
@@ -28808,7 +30282,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoletes": "1F473"
@@ -28838,6 +30313,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F473-1F3FB",
@@ -28849,7 +30325,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F473-1F3FC",
@@ -28861,7 +30338,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F473-1F3FD",
@@ -28873,7 +30351,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F473-1F3FE",
@@ -28885,7 +30364,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F473-1F3FF",
@@ -28897,7 +30377,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoleted_by": "1F473-200D-2642-FE0F"
@@ -28927,6 +30408,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F474-1F3FB",
@@ -28938,7 +30420,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F474-1F3FC",
@@ -28950,7 +30433,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F474-1F3FD",
@@ -28962,7 +30446,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F474-1F3FE",
@@ -28974,7 +30459,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F474-1F3FF",
@@ -28986,7 +30472,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -29015,6 +30502,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F475-1F3FB",
@@ -29026,7 +30514,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F475-1F3FC",
@@ -29038,7 +30527,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F475-1F3FD",
@@ -29050,7 +30540,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F475-1F3FE",
@@ -29062,7 +30553,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F475-1F3FF",
@@ -29074,7 +30566,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -29103,6 +30596,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F476-1F3FB",
@@ -29114,7 +30608,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F476-1F3FC",
@@ -29126,7 +30621,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F476-1F3FD",
@@ -29138,7 +30634,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F476-1F3FE",
@@ -29150,7 +30647,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F476-1F3FF",
@@ -29162,7 +30660,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -29191,6 +30690,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F477-1F3FB-200D-2640-FE0F",
@@ -29202,7 +30702,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F477-1F3FC-200D-2640-FE0F",
@@ -29214,7 +30715,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F477-1F3FD-200D-2640-FE0F",
@@ -29226,7 +30728,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F477-1F3FE-200D-2640-FE0F",
@@ -29238,7 +30741,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F477-1F3FF-200D-2640-FE0F",
@@ -29250,7 +30754,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -29279,6 +30784,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F477-1F3FB-200D-2642-FE0F",
@@ -29290,7 +30796,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F477-1F3FC-200D-2642-FE0F",
@@ -29302,7 +30809,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F477-1F3FD-200D-2642-FE0F",
@@ -29314,7 +30822,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F477-1F3FE-200D-2642-FE0F",
@@ -29326,7 +30835,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F477-1F3FF-200D-2642-FE0F",
@@ -29338,7 +30848,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoletes": "1F477"
@@ -29368,6 +30879,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F477-1F3FB",
@@ -29379,7 +30891,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F477-1F3FC",
@@ -29391,7 +30904,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F477-1F3FD",
@@ -29403,7 +30917,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F477-1F3FE",
@@ -29415,7 +30930,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F477-1F3FF",
@@ -29427,7 +30943,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoleted_by": "1F477-200D-2642-FE0F"
@@ -29457,6 +30974,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F478-1F3FB",
@@ -29468,7 +30986,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F478-1F3FC",
@@ -29480,7 +30999,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F478-1F3FD",
@@ -29492,7 +31012,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F478-1F3FE",
@@ -29504,7 +31025,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F478-1F3FF",
@@ -29516,7 +31038,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -29544,7 +31067,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "JAPANESE GOBLIN",
@@ -29570,7 +31094,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GHOST",
@@ -29596,7 +31121,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BABY ANGEL",
@@ -29623,6 +31149,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F47C-1F3FB",
@@ -29634,7 +31161,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F47C-1F3FC",
@@ -29646,7 +31174,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F47C-1F3FD",
@@ -29658,7 +31187,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F47C-1F3FE",
@@ -29670,7 +31200,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F47C-1F3FF",
@@ -29682,7 +31213,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -29710,7 +31242,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ALIEN MONSTER",
@@ -29736,7 +31269,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "IMP",
@@ -29762,7 +31296,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SKULL",
@@ -29788,7 +31323,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WOMAN TIPPING HAND",
@@ -29815,6 +31351,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F481-1F3FB-200D-2640-FE0F",
@@ -29826,7 +31363,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F481-1F3FC-200D-2640-FE0F",
@@ -29838,7 +31376,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F481-1F3FD-200D-2640-FE0F",
@@ -29850,7 +31389,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F481-1F3FE-200D-2640-FE0F",
@@ -29862,7 +31402,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F481-1F3FF-200D-2640-FE0F",
@@ -29874,7 +31415,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoletes": "1F481"
@@ -29904,6 +31446,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F481-1F3FB-200D-2642-FE0F",
@@ -29915,7 +31458,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F481-1F3FC-200D-2642-FE0F",
@@ -29927,7 +31471,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F481-1F3FD-200D-2642-FE0F",
@@ -29939,7 +31484,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F481-1F3FE-200D-2642-FE0F",
@@ -29951,7 +31497,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F481-1F3FF-200D-2642-FE0F",
@@ -29963,7 +31510,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -29992,6 +31540,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F481-1F3FB",
@@ -30003,7 +31552,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F481-1F3FC",
@@ -30015,7 +31565,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F481-1F3FD",
@@ -30027,7 +31578,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F481-1F3FE",
@@ -30039,7 +31591,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F481-1F3FF",
@@ -30051,7 +31604,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoleted_by": "1F481-200D-2640-FE0F"
@@ -30081,6 +31635,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F482-1F3FB-200D-2640-FE0F",
@@ -30092,7 +31647,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F482-1F3FC-200D-2640-FE0F",
@@ -30104,7 +31660,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F482-1F3FD-200D-2640-FE0F",
@@ -30116,7 +31673,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F482-1F3FE-200D-2640-FE0F",
@@ -30128,7 +31686,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F482-1F3FF-200D-2640-FE0F",
@@ -30140,7 +31699,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -30169,6 +31729,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F482-1F3FB-200D-2642-FE0F",
@@ -30180,7 +31741,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F482-1F3FC-200D-2642-FE0F",
@@ -30192,7 +31754,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F482-1F3FD-200D-2642-FE0F",
@@ -30204,7 +31767,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F482-1F3FE-200D-2642-FE0F",
@@ -30216,7 +31780,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F482-1F3FF-200D-2642-FE0F",
@@ -30228,7 +31793,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoletes": "1F482"
@@ -30258,6 +31824,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F482-1F3FB",
@@ -30269,7 +31836,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F482-1F3FC",
@@ -30281,7 +31849,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F482-1F3FD",
@@ -30293,7 +31862,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F482-1F3FE",
@@ -30305,7 +31875,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F482-1F3FF",
@@ -30317,7 +31888,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoleted_by": "1F482-200D-2642-FE0F"
@@ -30347,6 +31919,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F483-1F3FB",
@@ -30358,7 +31931,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F483-1F3FC",
@@ -30370,7 +31944,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F483-1F3FD",
@@ -30382,7 +31957,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F483-1F3FE",
@@ -30394,7 +31970,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F483-1F3FF",
@@ -30406,7 +31983,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -30434,7 +32012,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NAIL POLISH",
@@ -30461,6 +32040,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F485-1F3FB",
@@ -30472,7 +32052,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F485-1F3FC",
@@ -30484,7 +32065,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F485-1F3FD",
@@ -30496,7 +32078,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F485-1F3FE",
@@ -30508,7 +32091,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F485-1F3FF",
@@ -30520,7 +32104,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -30549,6 +32134,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F486-1F3FB-200D-2640-FE0F",
@@ -30560,7 +32146,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F486-1F3FC-200D-2640-FE0F",
@@ -30572,7 +32159,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F486-1F3FD-200D-2640-FE0F",
@@ -30584,7 +32172,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F486-1F3FE-200D-2640-FE0F",
@@ -30596,7 +32185,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F486-1F3FF-200D-2640-FE0F",
@@ -30608,7 +32198,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoletes": "1F486"
@@ -30638,6 +32229,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F486-1F3FB-200D-2642-FE0F",
@@ -30649,7 +32241,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F486-1F3FC-200D-2642-FE0F",
@@ -30661,7 +32254,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F486-1F3FD-200D-2642-FE0F",
@@ -30673,7 +32267,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F486-1F3FE-200D-2642-FE0F",
@@ -30685,7 +32280,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F486-1F3FF-200D-2642-FE0F",
@@ -30697,7 +32293,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -30726,6 +32323,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F486-1F3FB",
@@ -30737,7 +32335,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F486-1F3FC",
@@ -30749,7 +32348,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F486-1F3FD",
@@ -30761,7 +32361,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F486-1F3FE",
@@ -30773,7 +32374,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F486-1F3FF",
@@ -30785,7 +32387,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoleted_by": "1F486-200D-2640-FE0F"
@@ -30815,6 +32418,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F487-1F3FB-200D-2640-FE0F",
@@ -30826,7 +32430,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F487-1F3FC-200D-2640-FE0F",
@@ -30838,7 +32443,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F487-1F3FD-200D-2640-FE0F",
@@ -30850,7 +32456,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F487-1F3FE-200D-2640-FE0F",
@@ -30862,7 +32469,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F487-1F3FF-200D-2640-FE0F",
@@ -30874,7 +32482,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoletes": "1F487"
@@ -30904,6 +32513,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F487-1F3FB-200D-2642-FE0F",
@@ -30915,7 +32525,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F487-1F3FC-200D-2642-FE0F",
@@ -30927,7 +32538,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F487-1F3FD-200D-2642-FE0F",
@@ -30939,7 +32551,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F487-1F3FE-200D-2642-FE0F",
@@ -30951,7 +32564,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F487-1F3FF-200D-2642-FE0F",
@@ -30963,7 +32577,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -30992,6 +32607,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F487-1F3FB",
@@ -31003,7 +32619,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F487-1F3FC",
@@ -31015,7 +32632,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F487-1F3FD",
@@ -31027,7 +32645,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F487-1F3FE",
@@ -31039,7 +32658,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F487-1F3FF",
@@ -31051,7 +32671,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoleted_by": "1F487-200D-2640-FE0F"
@@ -31080,7 +32701,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SYRINGE",
@@ -31106,7 +32728,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PILL",
@@ -31132,7 +32755,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "KISS MARK",
@@ -31158,7 +32782,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LOVE LETTER",
@@ -31184,7 +32809,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RING",
@@ -31210,7 +32836,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GEM STONE",
@@ -31236,7 +32863,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "KISS",
@@ -31263,6 +32891,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": false,
"skin_variations": {
"1F3FB": {
"unified": "1F48F-1F3FB",
@@ -31274,7 +32903,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F48F-1F3FC",
@@ -31286,7 +32916,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F48F-1F3FD",
@@ -31298,7 +32929,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F48F-1F3FE",
@@ -31310,7 +32942,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F48F-1F3FF",
@@ -31322,7 +32955,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FB-1F3FC": {
"unified": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC",
@@ -31334,7 +32968,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FD": {
"unified": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD",
@@ -31346,7 +32981,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FE": {
"unified": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE",
@@ -31358,7 +32994,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FF": {
"unified": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF",
@@ -31370,7 +33007,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FB": {
"unified": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB",
@@ -31382,7 +33020,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FD": {
"unified": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD",
@@ -31394,7 +33033,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FE": {
"unified": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE",
@@ -31406,7 +33046,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FF": {
"unified": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF",
@@ -31418,7 +33059,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FB": {
"unified": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB",
@@ -31430,7 +33072,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FC": {
"unified": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC",
@@ -31442,7 +33085,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FE": {
"unified": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE",
@@ -31454,7 +33098,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FF": {
"unified": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF",
@@ -31466,7 +33111,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FB": {
"unified": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB",
@@ -31478,7 +33124,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FC": {
"unified": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC",
@@ -31490,7 +33137,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FD": {
"unified": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD",
@@ -31502,7 +33150,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FF": {
"unified": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF",
@@ -31514,7 +33163,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FB": {
"unified": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB",
@@ -31526,7 +33176,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FC": {
"unified": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC",
@@ -31538,7 +33189,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FD": {
"unified": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD",
@@ -31550,7 +33202,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FE": {
"unified": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE",
@@ -31562,7 +33215,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
}
}
},
@@ -31590,7 +33244,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "COUPLE WITH HEART",
@@ -31617,6 +33272,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": false,
"skin_variations": {
"1F3FB": {
"unified": "1F491-1F3FB",
@@ -31628,7 +33284,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F491-1F3FC",
@@ -31640,7 +33297,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F491-1F3FD",
@@ -31652,7 +33310,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F491-1F3FE",
@@ -31664,7 +33323,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F491-1F3FF",
@@ -31676,7 +33336,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FB-1F3FC": {
"unified": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FC",
@@ -31688,7 +33349,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FD": {
"unified": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FD",
@@ -31700,7 +33362,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FE": {
"unified": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FE",
@@ -31712,7 +33375,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FF": {
"unified": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FF",
@@ -31724,7 +33388,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FB": {
"unified": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FB",
@@ -31736,7 +33401,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FD": {
"unified": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FD",
@@ -31748,7 +33414,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FE": {
"unified": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FE",
@@ -31760,7 +33427,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FF": {
"unified": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FF",
@@ -31772,7 +33440,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FB": {
"unified": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FB",
@@ -31784,7 +33453,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FC": {
"unified": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FC",
@@ -31796,7 +33466,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FE": {
"unified": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FE",
@@ -31808,7 +33479,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FF": {
"unified": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FF",
@@ -31820,7 +33492,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FB": {
"unified": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FB",
@@ -31832,7 +33505,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FC": {
"unified": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FC",
@@ -31844,7 +33518,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FD": {
"unified": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FD",
@@ -31856,7 +33531,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FF": {
"unified": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FF",
@@ -31868,7 +33544,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FB": {
"unified": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FB",
@@ -31880,7 +33557,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FC": {
"unified": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FC",
@@ -31892,7 +33570,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FD": {
"unified": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FD",
@@ -31904,7 +33583,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FE": {
"unified": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FE",
@@ -31916,7 +33596,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
}
}
},
@@ -31944,7 +33625,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BEATING HEART",
@@ -31970,7 +33652,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BROKEN HEART",
@@ -31998,7 +33681,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TWO HEARTS",
@@ -32024,7 +33708,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SPARKLING HEART",
@@ -32050,7 +33735,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GROWING HEART",
@@ -32076,7 +33762,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HEART WITH ARROW",
@@ -32102,7 +33789,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLUE HEART",
@@ -32128,7 +33816,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GREEN HEART",
@@ -32154,7 +33843,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "YELLOW HEART",
@@ -32180,7 +33870,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PURPLE HEART",
@@ -32206,7 +33897,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HEART WITH RIBBON",
@@ -32232,7 +33924,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "REVOLVING HEARTS",
@@ -32258,7 +33951,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HEART DECORATION",
@@ -32284,7 +33978,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DIAMOND SHAPE WITH A DOT INSIDE",
@@ -32310,7 +34005,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ELECTRIC LIGHT BULB",
@@ -32336,7 +34032,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ANGER SYMBOL",
@@ -32362,7 +34059,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BOMB",
@@ -32388,7 +34086,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SLEEPING SYMBOL",
@@ -32414,7 +34113,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "COLLISION SYMBOL",
@@ -32441,7 +34141,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SPLASHING SWEAT SYMBOL",
@@ -32467,7 +34168,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DROPLET",
@@ -32493,7 +34195,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DASH SYMBOL",
@@ -32519,7 +34222,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PILE OF POO",
@@ -32547,7 +34251,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FLEXED BICEPS",
@@ -32574,6 +34279,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F4AA-1F3FB",
@@ -32585,7 +34291,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F4AA-1F3FC",
@@ -32597,7 +34304,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F4AA-1F3FD",
@@ -32609,7 +34317,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F4AA-1F3FE",
@@ -32621,7 +34330,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F4AA-1F3FF",
@@ -32633,7 +34343,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -32661,7 +34372,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SPEECH BALLOON",
@@ -32687,7 +34399,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "THOUGHT BALLOON",
@@ -32713,7 +34426,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WHITE FLOWER",
@@ -32739,7 +34453,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HUNDRED POINTS SYMBOL",
@@ -32765,7 +34480,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MONEY BAG",
@@ -32791,7 +34507,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CURRENCY EXCHANGE",
@@ -32817,7 +34534,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HEAVY DOLLAR SIGN",
@@ -32843,7 +34561,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CREDIT CARD",
@@ -32869,7 +34588,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BANKNOTE WITH YEN SIGN",
@@ -32895,7 +34615,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BANKNOTE WITH DOLLAR SIGN",
@@ -32921,7 +34642,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BANKNOTE WITH EURO SIGN",
@@ -32947,7 +34669,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BANKNOTE WITH POUND SIGN",
@@ -32973,7 +34696,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MONEY WITH WINGS",
@@ -32999,7 +34723,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CHART WITH UPWARDS TREND AND YEN SIGN",
@@ -33025,7 +34750,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SEAT",
@@ -33051,7 +34777,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PERSONAL COMPUTER",
@@ -33077,7 +34804,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BRIEFCASE",
@@ -33103,7 +34831,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MINIDISC",
@@ -33129,7 +34858,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FLOPPY DISK",
@@ -33155,7 +34885,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "OPTICAL DISC",
@@ -33181,7 +34912,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DVD",
@@ -33207,7 +34939,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FILE FOLDER",
@@ -33233,7 +34966,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "OPEN FILE FOLDER",
@@ -33259,7 +34993,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PAGE WITH CURL",
@@ -33285,7 +35020,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PAGE FACING UP",
@@ -33311,7 +35047,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CALENDAR",
@@ -33337,7 +35074,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TEAR-OFF CALENDAR",
@@ -33363,7 +35101,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CARD INDEX",
@@ -33389,7 +35128,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CHART WITH UPWARDS TREND",
@@ -33415,7 +35155,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CHART WITH DOWNWARDS TREND",
@@ -33441,7 +35182,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BAR CHART",
@@ -33467,7 +35209,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLIPBOARD",
@@ -33493,7 +35236,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PUSHPIN",
@@ -33519,7 +35263,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ROUND PUSHPIN",
@@ -33545,7 +35290,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PAPERCLIP",
@@ -33571,7 +35317,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
{
"name": "STRAIGHT RULER",
@@ -33597,7 +35344,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TRIANGULAR RULER",
@@ -33623,7 +35371,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BOOKMARK TABS",
@@ -33649,7 +35398,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LEDGER",
@@ -33675,7 +35425,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NOTEBOOK",
@@ -33701,7 +35452,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NOTEBOOK WITH DECORATIVE COVER",
@@ -33727,7 +35479,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOSED BOOK",
@@ -33753,7 +35506,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "OPEN BOOK",
@@ -33780,7 +35534,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GREEN BOOK",
@@ -33806,7 +35561,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLUE BOOK",
@@ -33832,7 +35588,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ORANGE BOOK",
@@ -33858,7 +35615,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BOOKS",
@@ -33884,7 +35642,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NAME BADGE",
@@ -33910,7 +35669,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SCROLL",
@@ -33936,7 +35696,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MEMO",
@@ -33963,7 +35724,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TELEPHONE RECEIVER",
@@ -33989,7 +35751,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PAGER",
@@ -34015,7 +35778,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FAX MACHINE",
@@ -34041,7 +35805,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SATELLITE ANTENNA",
@@ -34067,7 +35832,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PUBLIC ADDRESS LOUDSPEAKER",
@@ -34093,7 +35859,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CHEERING MEGAPHONE",
@@ -34119,7 +35886,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "OUTBOX TRAY",
@@ -34145,7 +35913,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "INBOX TRAY",
@@ -34171,7 +35940,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PACKAGE",
@@ -34197,7 +35967,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "E-MAIL SYMBOL",
@@ -34223,7 +35994,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "INCOMING ENVELOPE",
@@ -34249,7 +36021,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ENVELOPE WITH DOWNWARDS ARROW ABOVE",
@@ -34275,7 +36048,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOSED MAILBOX WITH LOWERED FLAG",
@@ -34301,7 +36075,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOSED MAILBOX WITH RAISED FLAG",
@@ -34327,7 +36102,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "OPEN MAILBOX WITH RAISED FLAG",
@@ -34353,7 +36129,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "OPEN MAILBOX WITH LOWERED FLAG",
@@ -34379,7 +36156,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "POSTBOX",
@@ -34405,7 +36183,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "POSTAL HORN",
@@ -34431,7 +36210,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NEWSPAPER",
@@ -34457,7 +36237,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MOBILE PHONE",
@@ -34483,7 +36264,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MOBILE PHONE WITH RIGHTWARDS ARROW AT LEFT",
@@ -34509,7 +36291,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "VIBRATION MODE",
@@ -34535,7 +36318,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MOBILE PHONE OFF",
@@ -34561,7 +36345,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NO MOBILE PHONES",
@@ -34587,7 +36372,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ANTENNA WITH BARS",
@@ -34613,7 +36399,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CAMERA",
@@ -34639,7 +36426,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CAMERA WITH FLASH",
@@ -34665,7 +36453,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "VIDEO CAMERA",
@@ -34691,7 +36480,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TELEVISION",
@@ -34717,7 +36507,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RADIO",
@@ -34743,7 +36534,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "VIDEOCASSETTE",
@@ -34769,7 +36561,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FILM PROJECTOR",
@@ -34795,7 +36588,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PRAYER BEADS",
@@ -34821,7 +36615,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TWISTED RIGHTWARDS ARROWS",
@@ -34847,7 +36642,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS",
@@ -34873,7 +36669,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS WITH CIRCLED ONE OVERLAY",
@@ -34899,7 +36696,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS",
@@ -34925,7 +36723,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ANTICLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS",
@@ -34951,7 +36750,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LOW BRIGHTNESS SYMBOL",
@@ -34977,7 +36777,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HIGH BRIGHTNESS SYMBOL",
@@ -35003,7 +36804,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SPEAKER WITH CANCELLATION STROKE",
@@ -35029,7 +36831,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SPEAKER",
@@ -35055,7 +36858,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SPEAKER WITH ONE SOUND WAVE",
@@ -35081,7 +36885,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SPEAKER WITH THREE SOUND WAVES",
@@ -35107,7 +36912,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BATTERY",
@@ -35133,7 +36939,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ELECTRIC PLUG",
@@ -35159,7 +36966,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LEFT-POINTING MAGNIFYING GLASS",
@@ -35185,7 +36993,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RIGHT-POINTING MAGNIFYING GLASS",
@@ -35211,7 +37020,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LOCK WITH INK PEN",
@@ -35237,7 +37047,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOSED LOCK WITH KEY",
@@ -35263,7 +37074,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "KEY",
@@ -35289,7 +37101,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LOCK",
@@ -35315,7 +37128,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "OPEN LOCK",
@@ -35341,7 +37155,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BELL",
@@ -35367,7 +37182,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BELL WITH CANCELLATION STROKE",
@@ -35393,7 +37209,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BOOKMARK",
@@ -35419,7 +37236,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LINK SYMBOL",
@@ -35445,7 +37263,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RADIO BUTTON",
@@ -35471,7 +37290,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BACK WITH LEFTWARDS ARROW ABOVE",
@@ -35497,7 +37317,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "END WITH LEFTWARDS ARROW ABOVE",
@@ -35523,7 +37344,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ON WITH EXCLAMATION MARK WITH LEFT RIGHT ARROW ABOVE",
@@ -35549,7 +37371,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SOON WITH RIGHTWARDS ARROW ABOVE",
@@ -35575,7 +37398,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TOP WITH UPWARDS ARROW ABOVE",
@@ -35601,7 +37425,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NO ONE UNDER EIGHTEEN SYMBOL",
@@ -35627,7 +37452,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "KEYCAP TEN",
@@ -35653,7 +37479,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "INPUT SYMBOL FOR LATIN CAPITAL LETTERS",
@@ -35679,7 +37506,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "INPUT SYMBOL FOR LATIN SMALL LETTERS",
@@ -35705,7 +37533,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "INPUT SYMBOL FOR NUMBERS",
@@ -35731,7 +37560,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "INPUT SYMBOL FOR SYMBOLS",
@@ -35757,7 +37587,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "INPUT SYMBOL FOR LATIN LETTERS",
@@ -35783,7 +37614,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FIRE",
@@ -35809,7 +37641,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ELECTRIC TORCH",
@@ -35835,7 +37668,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WRENCH",
@@ -35861,7 +37695,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HAMMER",
@@ -35887,7 +37722,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NUT AND BOLT",
@@ -35913,7 +37749,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HOCHO",
@@ -35940,7 +37777,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PISTOL",
@@ -35966,7 +37804,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MICROSCOPE",
@@ -35992,7 +37831,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TELESCOPE",
@@ -36018,7 +37858,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CRYSTAL BALL",
@@ -36044,7 +37885,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SIX POINTED STAR WITH MIDDLE DOT",
@@ -36070,7 +37912,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "JAPANESE SYMBOL FOR BEGINNER",
@@ -36096,7 +37939,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TRIDENT EMBLEM",
@@ -36122,7 +37966,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLACK SQUARE BUTTON",
@@ -36148,7 +37993,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WHITE SQUARE BUTTON",
@@ -36174,7 +38020,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LARGE RED CIRCLE",
@@ -36200,7 +38047,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LARGE BLUE CIRCLE",
@@ -36226,7 +38074,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LARGE ORANGE DIAMOND",
@@ -36252,7 +38101,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LARGE BLUE DIAMOND",
@@ -36278,7 +38128,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SMALL ORANGE DIAMOND",
@@ -36304,7 +38155,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SMALL BLUE DIAMOND",
@@ -36330,7 +38182,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "UP-POINTING RED TRIANGLE",
@@ -36356,7 +38209,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DOWN-POINTING RED TRIANGLE",
@@ -36382,7 +38236,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "UP-POINTING SMALL RED TRIANGLE",
@@ -36408,7 +38263,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DOWN-POINTING SMALL RED TRIANGLE",
@@ -36434,7 +38290,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "OM",
@@ -36460,7 +38317,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DOVE",
@@ -36486,7 +38344,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "KAABA",
@@ -36512,7 +38371,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MOSQUE",
@@ -36538,7 +38398,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SYNAGOGUE",
@@ -36564,7 +38425,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MENORAH WITH NINE BRANCHES",
@@ -36590,7 +38452,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCK FACE ONE OCLOCK",
@@ -36616,7 +38479,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCK FACE TWO OCLOCK",
@@ -36642,7 +38506,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCK FACE THREE OCLOCK",
@@ -36668,7 +38533,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCK FACE FOUR OCLOCK",
@@ -36694,7 +38560,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCK FACE FIVE OCLOCK",
@@ -36720,7 +38587,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCK FACE SIX OCLOCK",
@@ -36746,7 +38614,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCK FACE SEVEN OCLOCK",
@@ -36772,7 +38641,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCK FACE EIGHT OCLOCK",
@@ -36798,7 +38668,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCK FACE NINE OCLOCK",
@@ -36824,7 +38695,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCK FACE TEN OCLOCK",
@@ -36850,7 +38722,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCK FACE ELEVEN OCLOCK",
@@ -36876,7 +38749,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCK FACE TWELVE OCLOCK",
@@ -36902,7 +38776,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCK FACE ONE-THIRTY",
@@ -36928,7 +38803,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCK FACE TWO-THIRTY",
@@ -36954,7 +38830,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCK FACE THREE-THIRTY",
@@ -36980,7 +38857,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCK FACE FOUR-THIRTY",
@@ -37006,7 +38884,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCK FACE FIVE-THIRTY",
@@ -37032,7 +38911,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCK FACE SIX-THIRTY",
@@ -37058,7 +38938,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCK FACE SEVEN-THIRTY",
@@ -37084,7 +38965,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCK FACE EIGHT-THIRTY",
@@ -37110,7 +38992,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCK FACE NINE-THIRTY",
@@ -37136,7 +39019,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCK FACE TEN-THIRTY",
@@ -37162,7 +39046,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCK FACE ELEVEN-THIRTY",
@@ -37188,7 +39073,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOCK FACE TWELVE-THIRTY",
@@ -37214,7 +39100,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CANDLE",
@@ -37240,7 +39127,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MANTELPIECE CLOCK",
@@ -37266,7 +39154,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HOLE",
@@ -37292,7 +39181,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PERSON IN SUIT LEVITATING",
@@ -37319,6 +39209,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F574-1F3FB",
@@ -37330,7 +39221,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F574-1F3FC",
@@ -37342,7 +39234,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F574-1F3FD",
@@ -37354,7 +39247,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F574-1F3FE",
@@ -37366,7 +39260,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F574-1F3FF",
@@ -37378,7 +39273,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -37407,6 +39303,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": false,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F575-1F3FB-200D-2640-FE0F",
@@ -37418,7 +39315,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F575-1F3FC-200D-2640-FE0F",
@@ -37430,7 +39328,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F575-1F3FD-200D-2640-FE0F",
@@ -37442,7 +39341,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F575-1F3FE-200D-2640-FE0F",
@@ -37454,7 +39354,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F575-1F3FF-200D-2640-FE0F",
@@ -37466,7 +39367,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -37495,6 +39397,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": false,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F575-1F3FB-200D-2642-FE0F",
@@ -37506,7 +39409,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F575-1F3FC-200D-2642-FE0F",
@@ -37518,7 +39422,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F575-1F3FD-200D-2642-FE0F",
@@ -37530,7 +39435,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F575-1F3FE-200D-2642-FE0F",
@@ -37542,7 +39448,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F575-1F3FF-200D-2642-FE0F",
@@ -37554,7 +39461,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoletes": "1F575-FE0F"
@@ -37584,6 +39492,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F575-1F3FB",
@@ -37595,7 +39504,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F575-1F3FC",
@@ -37607,7 +39517,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F575-1F3FD",
@@ -37619,7 +39530,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F575-1F3FE",
@@ -37631,7 +39543,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F575-1F3FF",
@@ -37643,7 +39556,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoleted_by": "1F575-FE0F-200D-2642-FE0F"
@@ -37672,7 +39586,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SPIDER",
@@ -37698,7 +39613,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SPIDER WEB",
@@ -37724,7 +39640,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "JOYSTICK",
@@ -37750,7 +39667,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MAN DANCING",
@@ -37777,6 +39695,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F57A-1F3FB",
@@ -37788,7 +39707,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F57A-1F3FC",
@@ -37800,7 +39720,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F57A-1F3FD",
@@ -37812,7 +39733,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F57A-1F3FE",
@@ -37824,7 +39746,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F57A-1F3FF",
@@ -37836,7 +39759,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -37864,7 +39788,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PEN",
@@ -37890,7 +39815,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FOUNTAIN PEN",
@@ -37916,7 +39842,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PAINTBRUSH",
@@ -37942,7 +39869,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CRAYON",
@@ -37968,7 +39896,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HAND WITH FINGERS SPLAYED",
@@ -37995,6 +39924,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F590-1F3FB",
@@ -38006,7 +39936,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F590-1F3FC",
@@ -38018,7 +39949,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F590-1F3FD",
@@ -38030,7 +39962,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F590-1F3FE",
@@ -38042,7 +39975,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F590-1F3FF",
@@ -38054,7 +39988,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -38084,6 +40019,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F595-1F3FB",
@@ -38095,7 +40031,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F595-1F3FC",
@@ -38107,7 +40044,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F595-1F3FD",
@@ -38119,7 +40057,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F595-1F3FE",
@@ -38131,7 +40070,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F595-1F3FF",
@@ -38143,7 +40083,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -38172,6 +40113,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F596-1F3FB",
@@ -38183,7 +40125,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F596-1F3FC",
@@ -38195,7 +40138,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F596-1F3FD",
@@ -38207,7 +40151,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F596-1F3FE",
@@ -38219,7 +40164,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F596-1F3FF",
@@ -38231,7 +40177,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -38259,7 +40206,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DESKTOP COMPUTER",
@@ -38285,7 +40233,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PRINTER",
@@ -38311,7 +40260,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "COMPUTER MOUSE",
@@ -38337,7 +40287,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TRACKBALL",
@@ -38363,7 +40314,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FRAMED PICTURE",
@@ -38389,7 +40341,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CARD INDEX DIVIDERS",
@@ -38415,7 +40368,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CARD FILE BOX",
@@ -38441,7 +40395,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FILE CABINET",
@@ -38467,7 +40422,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WASTEBASKET",
@@ -38493,7 +40449,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SPIRAL NOTEPAD",
@@ -38519,7 +40476,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SPIRAL CALENDAR",
@@ -38545,7 +40503,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLAMP",
@@ -38571,7 +40530,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "OLD KEY",
@@ -38597,7 +40557,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ROLLED-UP NEWSPAPER",
@@ -38623,7 +40584,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DAGGER",
@@ -38649,7 +40611,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SPEAKING HEAD",
@@ -38675,7 +40638,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LEFT SPEECH BUBBLE",
@@ -38701,7 +40665,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RIGHT ANGER BUBBLE",
@@ -38727,7 +40692,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BALLOT BOX WITH BALLOT",
@@ -38753,7 +40719,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WORLD MAP",
@@ -38779,7 +40746,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MOUNT FUJI",
@@ -38805,7 +40773,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TOKYO TOWER",
@@ -38831,7 +40800,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "STATUE OF LIBERTY",
@@ -38857,7 +40827,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SILHOUETTE OF JAPAN",
@@ -38883,7 +40854,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MOYAI",
@@ -38909,7 +40881,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GRINNING FACE",
@@ -38935,7 +40908,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GRINNING FACE WITH SMILING EYES",
@@ -38961,7 +40935,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE WITH TEARS OF JOY",
@@ -38987,7 +40962,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SMILING FACE WITH OPEN MOUTH",
@@ -39016,7 +40992,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SMILING FACE WITH OPEN MOUTH AND SMILING EYES",
@@ -39047,7 +41024,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SMILING FACE WITH OPEN MOUTH AND COLD SWEAT",
@@ -39073,7 +41051,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SMILING FACE WITH OPEN MOUTH AND TIGHTLY-CLOSED EYES",
@@ -39103,7 +41082,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SMILING FACE WITH HALO",
@@ -39129,7 +41109,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SMILING FACE WITH HORNS",
@@ -39155,7 +41136,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WINKING FACE",
@@ -39184,7 +41166,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SMILING FACE WITH SMILING EYES",
@@ -39210,7 +41193,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE SAVOURING DELICIOUS FOOD",
@@ -39236,7 +41220,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RELIEVED FACE",
@@ -39262,7 +41247,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SMILING FACE WITH HEART-SHAPED EYES",
@@ -39288,7 +41274,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SMILING FACE WITH SUNGLASSES",
@@ -39316,7 +41303,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SMIRKING FACE",
@@ -39342,7 +41330,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NEUTRAL FACE",
@@ -39371,7 +41360,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "EXPRESSIONLESS FACE",
@@ -39397,7 +41387,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "UNAMUSED FACE",
@@ -39423,7 +41414,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE WITH COLD SWEAT",
@@ -39449,7 +41441,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PENSIVE FACE",
@@ -39475,7 +41468,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CONFUSED FACE",
@@ -39506,7 +41500,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CONFOUNDED FACE",
@@ -39532,7 +41527,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "KISSING FACE",
@@ -39558,7 +41554,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE THROWING A KISS",
@@ -39587,7 +41584,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "KISSING FACE WITH SMILING EYES",
@@ -39613,7 +41611,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "KISSING FACE WITH CLOSED EYES",
@@ -39639,7 +41638,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE WITH STUCK-OUT TONGUE",
@@ -39672,7 +41672,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE WITH STUCK-OUT TONGUE AND WINKING EYE",
@@ -39705,7 +41706,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE WITH STUCK-OUT TONGUE AND TIGHTLY-CLOSED EYES",
@@ -39731,7 +41733,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DISAPPOINTED FACE",
@@ -39761,7 +41764,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WORRIED FACE",
@@ -39787,7 +41791,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ANGRY FACE",
@@ -39816,7 +41821,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "POUTING FACE",
@@ -39842,7 +41848,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CRYING FACE",
@@ -39870,7 +41877,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PERSEVERING FACE",
@@ -39896,7 +41904,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE WITH LOOK OF TRIUMPH",
@@ -39922,7 +41931,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DISAPPOINTED BUT RELIEVED FACE",
@@ -39948,7 +41958,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FROWNING FACE WITH OPEN MOUTH",
@@ -39974,7 +41985,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ANGUISHED FACE",
@@ -40002,7 +42014,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FEARFUL FACE",
@@ -40028,7 +42041,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WEARY FACE",
@@ -40054,7 +42068,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SLEEPY FACE",
@@ -40080,7 +42095,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TIRED FACE",
@@ -40106,7 +42122,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GRIMACING FACE",
@@ -40132,7 +42149,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LOUDLY CRYING FACE",
@@ -40158,7 +42176,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE EXHALING",
@@ -40184,7 +42203,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE WITH OPEN MOUTH",
@@ -40215,7 +42235,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HUSHED FACE",
@@ -40241,7 +42262,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE WITH OPEN MOUTH AND COLD SWEAT",
@@ -40267,7 +42289,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE SCREAMING IN FEAR",
@@ -40293,7 +42316,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ASTONISHED FACE",
@@ -40319,7 +42343,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FLUSHED FACE",
@@ -40345,7 +42370,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SLEEPING FACE",
@@ -40371,7 +42397,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE WITH SPIRAL EYES",
@@ -40397,7 +42424,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DIZZY FACE",
@@ -40423,7 +42451,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE IN CLOUDS",
@@ -40449,7 +42478,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE WITHOUT MOUTH",
@@ -40475,7 +42505,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE WITH MEDICAL MASK",
@@ -40501,7 +42532,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GRINNING CAT FACE WITH SMILING EYES",
@@ -40527,7 +42559,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CAT FACE WITH TEARS OF JOY",
@@ -40553,7 +42586,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SMILING CAT FACE WITH OPEN MOUTH",
@@ -40579,7 +42613,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SMILING CAT FACE WITH HEART-SHAPED EYES",
@@ -40605,7 +42640,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CAT FACE WITH WRY SMILE",
@@ -40631,7 +42667,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "KISSING CAT FACE WITH CLOSED EYES",
@@ -40657,7 +42694,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "POUTING CAT FACE",
@@ -40683,7 +42721,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CRYING CAT FACE",
@@ -40709,7 +42748,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WEARY CAT FACE",
@@ -40735,7 +42775,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SLIGHTLY FROWNING FACE",
@@ -40761,7 +42802,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SLIGHTLY SMILING FACE",
@@ -40791,7 +42833,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "UPSIDE-DOWN FACE",
@@ -40817,7 +42860,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE WITH ROLLING EYES",
@@ -40843,7 +42887,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WOMAN GESTURING NO",
@@ -40870,6 +42915,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F645-1F3FB-200D-2640-FE0F",
@@ -40881,7 +42927,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F645-1F3FC-200D-2640-FE0F",
@@ -40893,7 +42940,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F645-1F3FD-200D-2640-FE0F",
@@ -40905,7 +42953,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F645-1F3FE-200D-2640-FE0F",
@@ -40917,7 +42966,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F645-1F3FF-200D-2640-FE0F",
@@ -40929,7 +42979,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoletes": "1F645"
@@ -40959,6 +43010,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F645-1F3FB-200D-2642-FE0F",
@@ -40970,7 +43022,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F645-1F3FC-200D-2642-FE0F",
@@ -40982,7 +43035,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F645-1F3FD-200D-2642-FE0F",
@@ -40994,7 +43048,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F645-1F3FE-200D-2642-FE0F",
@@ -41006,7 +43061,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F645-1F3FF-200D-2642-FE0F",
@@ -41018,7 +43074,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -41047,6 +43104,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F645-1F3FB",
@@ -41058,7 +43116,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F645-1F3FC",
@@ -41070,7 +43129,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F645-1F3FD",
@@ -41082,7 +43142,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F645-1F3FE",
@@ -41094,7 +43155,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F645-1F3FF",
@@ -41106,7 +43168,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoleted_by": "1F645-200D-2640-FE0F"
@@ -41136,6 +43199,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F646-1F3FB-200D-2640-FE0F",
@@ -41147,7 +43211,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F646-1F3FC-200D-2640-FE0F",
@@ -41159,7 +43224,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F646-1F3FD-200D-2640-FE0F",
@@ -41171,7 +43237,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F646-1F3FE-200D-2640-FE0F",
@@ -41183,7 +43250,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F646-1F3FF-200D-2640-FE0F",
@@ -41195,7 +43263,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoletes": "1F646"
@@ -41225,6 +43294,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F646-1F3FB-200D-2642-FE0F",
@@ -41236,7 +43306,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F646-1F3FC-200D-2642-FE0F",
@@ -41248,7 +43319,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F646-1F3FD-200D-2642-FE0F",
@@ -41260,7 +43332,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F646-1F3FE-200D-2642-FE0F",
@@ -41272,7 +43345,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F646-1F3FF-200D-2642-FE0F",
@@ -41284,7 +43358,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -41313,6 +43388,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F646-1F3FB",
@@ -41324,7 +43400,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F646-1F3FC",
@@ -41336,7 +43413,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F646-1F3FD",
@@ -41348,7 +43426,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F646-1F3FE",
@@ -41360,7 +43439,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F646-1F3FF",
@@ -41372,7 +43452,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoleted_by": "1F646-200D-2640-FE0F"
@@ -41402,6 +43483,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F647-1F3FB-200D-2640-FE0F",
@@ -41413,7 +43495,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F647-1F3FC-200D-2640-FE0F",
@@ -41425,7 +43508,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F647-1F3FD-200D-2640-FE0F",
@@ -41437,7 +43521,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F647-1F3FE-200D-2640-FE0F",
@@ -41449,7 +43534,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F647-1F3FF-200D-2640-FE0F",
@@ -41461,7 +43547,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -41490,6 +43577,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F647-1F3FB-200D-2642-FE0F",
@@ -41501,7 +43589,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F647-1F3FC-200D-2642-FE0F",
@@ -41513,7 +43602,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F647-1F3FD-200D-2642-FE0F",
@@ -41525,7 +43615,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F647-1F3FE-200D-2642-FE0F",
@@ -41537,7 +43628,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F647-1F3FF-200D-2642-FE0F",
@@ -41549,7 +43641,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -41578,6 +43671,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F647-1F3FB",
@@ -41589,7 +43683,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F647-1F3FC",
@@ -41601,7 +43696,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F647-1F3FD",
@@ -41613,7 +43709,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F647-1F3FE",
@@ -41625,7 +43722,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F647-1F3FF",
@@ -41637,7 +43735,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -41665,7 +43764,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HEAR-NO-EVIL MONKEY",
@@ -41691,7 +43791,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SPEAK-NO-EVIL MONKEY",
@@ -41717,7 +43818,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WOMAN RAISING HAND",
@@ -41744,6 +43846,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F64B-1F3FB-200D-2640-FE0F",
@@ -41755,7 +43858,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F64B-1F3FC-200D-2640-FE0F",
@@ -41767,7 +43871,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F64B-1F3FD-200D-2640-FE0F",
@@ -41779,7 +43884,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F64B-1F3FE-200D-2640-FE0F",
@@ -41791,7 +43897,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F64B-1F3FF-200D-2640-FE0F",
@@ -41803,7 +43910,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoletes": "1F64B"
@@ -41833,6 +43941,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F64B-1F3FB-200D-2642-FE0F",
@@ -41844,7 +43953,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F64B-1F3FC-200D-2642-FE0F",
@@ -41856,7 +43966,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F64B-1F3FD-200D-2642-FE0F",
@@ -41868,7 +43979,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F64B-1F3FE-200D-2642-FE0F",
@@ -41880,7 +43992,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F64B-1F3FF-200D-2642-FE0F",
@@ -41892,7 +44005,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -41921,6 +44035,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F64B-1F3FB",
@@ -41932,7 +44047,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F64B-1F3FC",
@@ -41944,7 +44060,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F64B-1F3FD",
@@ -41956,7 +44073,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F64B-1F3FE",
@@ -41968,7 +44086,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F64B-1F3FF",
@@ -41980,7 +44099,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoleted_by": "1F64B-200D-2640-FE0F"
@@ -42010,6 +44130,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F64C-1F3FB",
@@ -42021,7 +44142,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F64C-1F3FC",
@@ -42033,7 +44155,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F64C-1F3FD",
@@ -42045,7 +44168,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F64C-1F3FE",
@@ -42057,7 +44181,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F64C-1F3FF",
@@ -42069,7 +44194,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -42098,6 +44224,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F64D-1F3FB-200D-2640-FE0F",
@@ -42109,7 +44236,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F64D-1F3FC-200D-2640-FE0F",
@@ -42121,7 +44249,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F64D-1F3FD-200D-2640-FE0F",
@@ -42133,7 +44262,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F64D-1F3FE-200D-2640-FE0F",
@@ -42145,7 +44275,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F64D-1F3FF-200D-2640-FE0F",
@@ -42157,7 +44288,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoletes": "1F64D"
@@ -42187,6 +44319,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F64D-1F3FB-200D-2642-FE0F",
@@ -42198,7 +44331,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F64D-1F3FC-200D-2642-FE0F",
@@ -42210,7 +44344,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F64D-1F3FD-200D-2642-FE0F",
@@ -42222,7 +44357,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F64D-1F3FE-200D-2642-FE0F",
@@ -42234,7 +44370,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F64D-1F3FF-200D-2642-FE0F",
@@ -42246,7 +44383,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -42275,6 +44413,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F64D-1F3FB",
@@ -42286,7 +44425,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F64D-1F3FC",
@@ -42298,7 +44438,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F64D-1F3FD",
@@ -42310,7 +44451,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F64D-1F3FE",
@@ -42322,7 +44464,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F64D-1F3FF",
@@ -42334,7 +44477,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoleted_by": "1F64D-200D-2640-FE0F"
@@ -42364,6 +44508,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F64E-1F3FB-200D-2640-FE0F",
@@ -42375,7 +44520,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F64E-1F3FC-200D-2640-FE0F",
@@ -42387,7 +44533,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F64E-1F3FD-200D-2640-FE0F",
@@ -42399,7 +44546,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F64E-1F3FE-200D-2640-FE0F",
@@ -42411,7 +44559,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F64E-1F3FF-200D-2640-FE0F",
@@ -42423,7 +44572,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoletes": "1F64E"
@@ -42453,6 +44603,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F64E-1F3FB-200D-2642-FE0F",
@@ -42464,7 +44615,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F64E-1F3FC-200D-2642-FE0F",
@@ -42476,7 +44628,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F64E-1F3FD-200D-2642-FE0F",
@@ -42488,7 +44641,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F64E-1F3FE-200D-2642-FE0F",
@@ -42500,7 +44654,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F64E-1F3FF-200D-2642-FE0F",
@@ -42512,7 +44667,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -42541,6 +44697,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F64E-1F3FB",
@@ -42552,7 +44709,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F64E-1F3FC",
@@ -42564,7 +44722,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F64E-1F3FD",
@@ -42576,7 +44735,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F64E-1F3FE",
@@ -42588,7 +44748,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F64E-1F3FF",
@@ -42600,7 +44761,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoleted_by": "1F64E-200D-2640-FE0F"
@@ -42630,6 +44792,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F64F-1F3FB",
@@ -42641,7 +44804,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F64F-1F3FC",
@@ -42653,7 +44817,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F64F-1F3FD",
@@ -42665,7 +44830,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F64F-1F3FE",
@@ -42677,7 +44843,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F64F-1F3FF",
@@ -42689,7 +44856,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -42717,7 +44885,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HELICOPTER",
@@ -42743,7 +44912,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "STEAM LOCOMOTIVE",
@@ -42769,7 +44939,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RAILWAY CAR",
@@ -42795,7 +44966,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HIGH-SPEED TRAIN",
@@ -42821,7 +44993,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HIGH-SPEED TRAIN WITH BULLET NOSE",
@@ -42847,7 +45020,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TRAIN",
@@ -42873,7 +45047,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "METRO",
@@ -42899,7 +45074,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LIGHT RAIL",
@@ -42925,7 +45101,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "STATION",
@@ -42951,7 +45128,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TRAM",
@@ -42977,7 +45155,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TRAM CAR",
@@ -43003,7 +45182,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BUS",
@@ -43029,7 +45209,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ONCOMING BUS",
@@ -43055,7 +45236,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TROLLEYBUS",
@@ -43081,7 +45263,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BUS STOP",
@@ -43107,7 +45290,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MINIBUS",
@@ -43133,7 +45317,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "AMBULANCE",
@@ -43159,7 +45344,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FIRE ENGINE",
@@ -43185,7 +45371,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "POLICE CAR",
@@ -43211,7 +45398,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ONCOMING POLICE CAR",
@@ -43237,7 +45425,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TAXI",
@@ -43263,7 +45452,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ONCOMING TAXI",
@@ -43289,7 +45479,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "AUTOMOBILE",
@@ -43316,7 +45507,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ONCOMING AUTOMOBILE",
@@ -43342,7 +45534,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RECREATIONAL VEHICLE",
@@ -43368,7 +45561,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DELIVERY TRUCK",
@@ -43394,7 +45588,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ARTICULATED LORRY",
@@ -43420,7 +45615,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TRACTOR",
@@ -43446,7 +45642,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MONORAIL",
@@ -43472,7 +45669,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MOUNTAIN RAILWAY",
@@ -43498,7 +45696,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SUSPENSION RAILWAY",
@@ -43524,7 +45723,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MOUNTAIN CABLEWAY",
@@ -43550,7 +45750,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "AERIAL TRAMWAY",
@@ -43576,7 +45777,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SHIP",
@@ -43602,7 +45804,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WOMAN ROWING BOAT",
@@ -43629,6 +45832,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F6A3-1F3FB-200D-2640-FE0F",
@@ -43640,7 +45844,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F6A3-1F3FC-200D-2640-FE0F",
@@ -43652,7 +45857,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F6A3-1F3FD-200D-2640-FE0F",
@@ -43664,7 +45870,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F6A3-1F3FE-200D-2640-FE0F",
@@ -43676,7 +45883,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F6A3-1F3FF-200D-2640-FE0F",
@@ -43688,7 +45896,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -43717,6 +45926,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F6A3-1F3FB-200D-2642-FE0F",
@@ -43728,7 +45938,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F6A3-1F3FC-200D-2642-FE0F",
@@ -43740,7 +45951,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F6A3-1F3FD-200D-2642-FE0F",
@@ -43752,7 +45964,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F6A3-1F3FE-200D-2642-FE0F",
@@ -43764,7 +45977,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F6A3-1F3FF-200D-2642-FE0F",
@@ -43776,7 +45990,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoletes": "1F6A3"
@@ -43806,6 +46021,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F6A3-1F3FB",
@@ -43817,7 +46033,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F6A3-1F3FC",
@@ -43829,7 +46046,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F6A3-1F3FD",
@@ -43841,7 +46059,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F6A3-1F3FE",
@@ -43853,7 +46072,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F6A3-1F3FF",
@@ -43865,7 +46085,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoleted_by": "1F6A3-200D-2642-FE0F"
@@ -43894,7 +46115,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HORIZONTAL TRAFFIC LIGHT",
@@ -43920,7 +46142,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "VERTICAL TRAFFIC LIGHT",
@@ -43946,7 +46169,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CONSTRUCTION SIGN",
@@ -43972,7 +46196,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "POLICE CARS REVOLVING LIGHT",
@@ -43998,7 +46223,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TRIANGULAR FLAG ON POST",
@@ -44024,7 +46250,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DOOR",
@@ -44050,7 +46277,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NO ENTRY SIGN",
@@ -44076,7 +46304,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SMOKING SYMBOL",
@@ -44102,7 +46331,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NO SMOKING SYMBOL",
@@ -44128,7 +46358,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PUT LITTER IN ITS PLACE SYMBOL",
@@ -44154,7 +46385,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DO NOT LITTER SYMBOL",
@@ -44180,7 +46412,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "POTABLE WATER SYMBOL",
@@ -44206,7 +46439,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NON-POTABLE WATER SYMBOL",
@@ -44232,7 +46466,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BICYCLE",
@@ -44258,7 +46493,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NO BICYCLES",
@@ -44284,7 +46520,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WOMAN BIKING",
@@ -44311,6 +46548,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F6B4-1F3FB-200D-2640-FE0F",
@@ -44322,7 +46560,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F6B4-1F3FC-200D-2640-FE0F",
@@ -44334,7 +46573,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F6B4-1F3FD-200D-2640-FE0F",
@@ -44346,7 +46586,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F6B4-1F3FE-200D-2640-FE0F",
@@ -44358,7 +46599,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F6B4-1F3FF-200D-2640-FE0F",
@@ -44370,7 +46612,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -44399,6 +46642,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F6B4-1F3FB-200D-2642-FE0F",
@@ -44410,7 +46654,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F6B4-1F3FC-200D-2642-FE0F",
@@ -44422,7 +46667,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F6B4-1F3FD-200D-2642-FE0F",
@@ -44434,7 +46680,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F6B4-1F3FE-200D-2642-FE0F",
@@ -44446,7 +46693,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F6B4-1F3FF-200D-2642-FE0F",
@@ -44458,7 +46706,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoletes": "1F6B4"
@@ -44488,6 +46737,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F6B4-1F3FB",
@@ -44499,7 +46749,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F6B4-1F3FC",
@@ -44511,7 +46762,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F6B4-1F3FD",
@@ -44523,7 +46775,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F6B4-1F3FE",
@@ -44535,7 +46788,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F6B4-1F3FF",
@@ -44547,7 +46801,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoleted_by": "1F6B4-200D-2642-FE0F"
@@ -44577,6 +46832,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F6B5-1F3FB-200D-2640-FE0F",
@@ -44588,7 +46844,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F6B5-1F3FC-200D-2640-FE0F",
@@ -44600,7 +46857,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F6B5-1F3FD-200D-2640-FE0F",
@@ -44612,7 +46870,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F6B5-1F3FE-200D-2640-FE0F",
@@ -44624,7 +46883,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F6B5-1F3FF-200D-2640-FE0F",
@@ -44636,7 +46896,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -44665,6 +46926,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F6B5-1F3FB-200D-2642-FE0F",
@@ -44676,7 +46938,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F6B5-1F3FC-200D-2642-FE0F",
@@ -44688,7 +46951,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F6B5-1F3FD-200D-2642-FE0F",
@@ -44700,7 +46964,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F6B5-1F3FE-200D-2642-FE0F",
@@ -44712,7 +46977,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F6B5-1F3FF-200D-2642-FE0F",
@@ -44724,7 +46990,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoletes": "1F6B5"
@@ -44754,6 +47021,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F6B5-1F3FB",
@@ -44765,7 +47033,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F6B5-1F3FC",
@@ -44777,7 +47046,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F6B5-1F3FD",
@@ -44789,7 +47059,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F6B5-1F3FE",
@@ -44801,7 +47072,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F6B5-1F3FF",
@@ -44813,7 +47085,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoleted_by": "1F6B5-200D-2642-FE0F"
@@ -44843,6 +47116,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F6B6-1F3FB-200D-2640-FE0F",
@@ -44854,7 +47128,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F6B6-1F3FC-200D-2640-FE0F",
@@ -44866,7 +47141,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F6B6-1F3FD-200D-2640-FE0F",
@@ -44878,7 +47154,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F6B6-1F3FE-200D-2640-FE0F",
@@ -44890,7 +47167,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F6B6-1F3FF-200D-2640-FE0F",
@@ -44902,7 +47180,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -44931,6 +47210,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F6B6-1F3FB-200D-2642-FE0F",
@@ -44942,7 +47222,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F6B6-1F3FC-200D-2642-FE0F",
@@ -44954,7 +47235,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F6B6-1F3FD-200D-2642-FE0F",
@@ -44966,7 +47248,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F6B6-1F3FE-200D-2642-FE0F",
@@ -44978,7 +47261,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F6B6-1F3FF-200D-2642-FE0F",
@@ -44990,7 +47274,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoletes": "1F6B6"
@@ -45020,6 +47305,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F6B6-1F3FB",
@@ -45031,7 +47317,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F6B6-1F3FC",
@@ -45043,7 +47330,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F6B6-1F3FD",
@@ -45055,7 +47343,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F6B6-1F3FE",
@@ -45067,7 +47356,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F6B6-1F3FF",
@@ -45079,7 +47369,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoleted_by": "1F6B6-200D-2642-FE0F"
@@ -45108,7 +47399,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CHILDREN CROSSING",
@@ -45134,7 +47426,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MENS SYMBOL",
@@ -45160,7 +47453,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WOMENS SYMBOL",
@@ -45186,7 +47480,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RESTROOM",
@@ -45212,7 +47507,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BABY SYMBOL",
@@ -45238,7 +47534,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TOILET",
@@ -45264,7 +47561,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WATER CLOSET",
@@ -45290,7 +47588,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SHOWER",
@@ -45316,7 +47615,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BATH",
@@ -45343,6 +47643,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F6C0-1F3FB",
@@ -45354,7 +47655,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F6C0-1F3FC",
@@ -45366,7 +47668,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F6C0-1F3FD",
@@ -45378,7 +47681,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F6C0-1F3FE",
@@ -45390,7 +47694,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F6C0-1F3FF",
@@ -45402,7 +47707,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -45430,7 +47736,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PASSPORT CONTROL",
@@ -45456,7 +47763,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CUSTOMS",
@@ -45482,7 +47790,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BAGGAGE CLAIM",
@@ -45508,7 +47817,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LEFT LUGGAGE",
@@ -45534,7 +47844,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "COUCH AND LAMP",
@@ -45560,7 +47871,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SLEEPING ACCOMMODATION",
@@ -45587,6 +47899,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F6CC-1F3FB",
@@ -45598,7 +47911,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F6CC-1F3FC",
@@ -45610,7 +47924,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F6CC-1F3FD",
@@ -45622,7 +47937,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F6CC-1F3FE",
@@ -45634,7 +47950,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F6CC-1F3FF",
@@ -45646,7 +47963,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -45674,7 +47992,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BELLHOP BELL",
@@ -45700,7 +48019,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BED",
@@ -45726,7 +48046,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PLACE OF WORSHIP",
@@ -45752,7 +48073,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "OCTAGONAL SIGN",
@@ -45778,7 +48100,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SHOPPING TROLLEY",
@@ -45804,7 +48127,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HINDU TEMPLE",
@@ -45830,7 +48154,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HUT",
@@ -45856,7 +48181,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ELEVATOR",
@@ -45882,7 +48208,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WIRELESS",
@@ -45908,7 +48235,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
{
"name": "PLAYGROUND SLIDE",
@@ -45934,7 +48262,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WHEEL",
@@ -45960,7 +48289,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RING BUOY",
@@ -45986,7 +48316,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HAMMER AND WRENCH",
@@ -46012,7 +48343,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SHIELD",
@@ -46038,7 +48370,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "OIL DRUM",
@@ -46064,7 +48397,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MOTORWAY",
@@ -46090,7 +48424,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RAILWAY TRACK",
@@ -46116,7 +48451,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MOTOR BOAT",
@@ -46142,7 +48478,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SMALL AIRPLANE",
@@ -46168,7 +48505,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "AIRPLANE DEPARTURE",
@@ -46194,7 +48532,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "AIRPLANE ARRIVING",
@@ -46220,7 +48559,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SATELLITE",
@@ -46246,7 +48586,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PASSENGER SHIP",
@@ -46272,7 +48613,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SCOOTER",
@@ -46298,7 +48640,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MOTOR SCOOTER",
@@ -46324,7 +48667,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CANOE",
@@ -46350,7 +48694,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SLED",
@@ -46376,7 +48721,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FLYING SAUCER",
@@ -46402,7 +48748,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SKATEBOARD",
@@ -46428,7 +48775,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "AUTO RICKSHAW",
@@ -46454,7 +48802,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PICKUP TRUCK",
@@ -46480,7 +48829,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ROLLER SKATE",
@@ -46506,7 +48856,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LARGE ORANGE CIRCLE",
@@ -46532,7 +48883,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LARGE YELLOW CIRCLE",
@@ -46558,7 +48910,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LARGE GREEN CIRCLE",
@@ -46584,7 +48937,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LARGE PURPLE CIRCLE",
@@ -46610,7 +48964,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LARGE BROWN CIRCLE",
@@ -46636,7 +48991,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LARGE RED SQUARE",
@@ -46662,7 +49018,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LARGE BLUE SQUARE",
@@ -46688,7 +49045,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LARGE ORANGE SQUARE",
@@ -46714,7 +49072,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LARGE YELLOW SQUARE",
@@ -46740,7 +49099,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LARGE GREEN SQUARE",
@@ -46766,7 +49126,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LARGE PURPLE SQUARE",
@@ -46792,7 +49153,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LARGE BROWN SQUARE",
@@ -46818,7 +49180,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HEAVY EQUALS SIGN",
@@ -46844,7 +49207,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PINCHED FINGERS",
@@ -46871,6 +49235,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F90C-1F3FB",
@@ -46882,7 +49247,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F90C-1F3FC",
@@ -46894,7 +49260,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F90C-1F3FD",
@@ -46906,7 +49273,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F90C-1F3FE",
@@ -46918,7 +49286,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F90C-1F3FF",
@@ -46930,7 +49299,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -46958,7 +49328,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BROWN HEART",
@@ -46984,7 +49355,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PINCHING HAND",
@@ -47011,6 +49383,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F90F-1F3FB",
@@ -47022,7 +49395,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F90F-1F3FC",
@@ -47034,7 +49408,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F90F-1F3FD",
@@ -47046,7 +49421,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F90F-1F3FE",
@@ -47058,7 +49434,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F90F-1F3FF",
@@ -47070,7 +49447,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -47098,7 +49476,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MONEY-MOUTH FACE",
@@ -47124,7 +49503,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE WITH THERMOMETER",
@@ -47150,7 +49530,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NERD FACE",
@@ -47176,7 +49557,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "THINKING FACE",
@@ -47202,7 +49584,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE WITH HEAD-BANDAGE",
@@ -47228,7 +49611,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ROBOT FACE",
@@ -47254,7 +49638,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HUGGING FACE",
@@ -47280,7 +49665,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SIGN OF THE HORNS",
@@ -47308,6 +49694,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F918-1F3FB",
@@ -47319,7 +49706,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F918-1F3FC",
@@ -47331,7 +49719,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F918-1F3FD",
@@ -47343,7 +49732,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F918-1F3FE",
@@ -47355,7 +49745,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F918-1F3FF",
@@ -47367,7 +49758,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -47396,6 +49788,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F919-1F3FB",
@@ -47407,7 +49800,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F919-1F3FC",
@@ -47419,7 +49813,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F919-1F3FD",
@@ -47431,7 +49826,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F919-1F3FE",
@@ -47443,7 +49839,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F919-1F3FF",
@@ -47455,7 +49852,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -47484,6 +49882,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F91A-1F3FB",
@@ -47495,7 +49894,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F91A-1F3FC",
@@ -47507,7 +49907,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F91A-1F3FD",
@@ -47519,7 +49920,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F91A-1F3FE",
@@ -47531,7 +49933,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F91A-1F3FF",
@@ -47543,7 +49946,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -47572,6 +49976,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F91B-1F3FB",
@@ -47583,7 +49988,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F91B-1F3FC",
@@ -47595,7 +50001,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F91B-1F3FD",
@@ -47607,7 +50014,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F91B-1F3FE",
@@ -47619,7 +50027,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F91B-1F3FF",
@@ -47631,7 +50040,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -47660,6 +50070,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F91C-1F3FB",
@@ -47671,7 +50082,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F91C-1F3FC",
@@ -47683,7 +50095,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F91C-1F3FD",
@@ -47695,7 +50108,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F91C-1F3FE",
@@ -47707,7 +50121,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F91C-1F3FF",
@@ -47719,7 +50134,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -47748,6 +50164,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F91D-1F3FB",
@@ -47759,7 +50176,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F91D-1F3FC",
@@ -47771,7 +50189,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F91D-1F3FD",
@@ -47783,7 +50202,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F91D-1F3FE",
@@ -47795,7 +50215,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F91D-1F3FF",
@@ -47807,7 +50228,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FB-1F3FC": {
"unified": "1FAF1-1F3FB-200D-1FAF2-1F3FC",
@@ -47819,7 +50241,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FD": {
"unified": "1FAF1-1F3FB-200D-1FAF2-1F3FD",
@@ -47831,7 +50254,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FE": {
"unified": "1FAF1-1F3FB-200D-1FAF2-1F3FE",
@@ -47843,7 +50267,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FF": {
"unified": "1FAF1-1F3FB-200D-1FAF2-1F3FF",
@@ -47855,7 +50280,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FB": {
"unified": "1FAF1-1F3FC-200D-1FAF2-1F3FB",
@@ -47867,7 +50293,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FD": {
"unified": "1FAF1-1F3FC-200D-1FAF2-1F3FD",
@@ -47879,7 +50306,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FE": {
"unified": "1FAF1-1F3FC-200D-1FAF2-1F3FE",
@@ -47891,7 +50319,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FF": {
"unified": "1FAF1-1F3FC-200D-1FAF2-1F3FF",
@@ -47903,7 +50332,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FB": {
"unified": "1FAF1-1F3FD-200D-1FAF2-1F3FB",
@@ -47915,7 +50345,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FC": {
"unified": "1FAF1-1F3FD-200D-1FAF2-1F3FC",
@@ -47927,7 +50358,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FE": {
"unified": "1FAF1-1F3FD-200D-1FAF2-1F3FE",
@@ -47939,7 +50371,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FF": {
"unified": "1FAF1-1F3FD-200D-1FAF2-1F3FF",
@@ -47951,7 +50384,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FB": {
"unified": "1FAF1-1F3FE-200D-1FAF2-1F3FB",
@@ -47963,7 +50397,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FC": {
"unified": "1FAF1-1F3FE-200D-1FAF2-1F3FC",
@@ -47975,7 +50410,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FD": {
"unified": "1FAF1-1F3FE-200D-1FAF2-1F3FD",
@@ -47987,7 +50423,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FF": {
"unified": "1FAF1-1F3FE-200D-1FAF2-1F3FF",
@@ -47999,7 +50436,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FB": {
"unified": "1FAF1-1F3FF-200D-1FAF2-1F3FB",
@@ -48011,7 +50449,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FC": {
"unified": "1FAF1-1F3FF-200D-1FAF2-1F3FC",
@@ -48023,7 +50462,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FD": {
"unified": "1FAF1-1F3FF-200D-1FAF2-1F3FD",
@@ -48035,7 +50475,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FE": {
"unified": "1FAF1-1F3FF-200D-1FAF2-1F3FE",
@@ -48047,7 +50488,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
}
}
},
@@ -48077,6 +50519,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F91E-1F3FB",
@@ -48088,7 +50531,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F91E-1F3FC",
@@ -48100,7 +50544,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F91E-1F3FD",
@@ -48112,7 +50557,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F91E-1F3FE",
@@ -48124,7 +50570,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F91E-1F3FF",
@@ -48136,7 +50583,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -48165,6 +50613,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F91F-1F3FB",
@@ -48176,7 +50625,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F91F-1F3FC",
@@ -48188,7 +50638,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F91F-1F3FD",
@@ -48200,7 +50651,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F91F-1F3FE",
@@ -48212,7 +50664,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F91F-1F3FF",
@@ -48224,7 +50677,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -48252,7 +50706,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOWN FACE",
@@ -48278,7 +50733,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NAUSEATED FACE",
@@ -48304,7 +50760,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ROLLING ON THE FLOOR LAUGHING",
@@ -48330,7 +50787,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DROOLING FACE",
@@ -48356,7 +50814,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LYING FACE",
@@ -48382,7 +50841,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WOMAN FACEPALMING",
@@ -48409,6 +50869,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F926-1F3FB-200D-2640-FE0F",
@@ -48420,7 +50881,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F926-1F3FC-200D-2640-FE0F",
@@ -48432,7 +50894,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F926-1F3FD-200D-2640-FE0F",
@@ -48444,7 +50907,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F926-1F3FE-200D-2640-FE0F",
@@ -48456,7 +50920,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F926-1F3FF-200D-2640-FE0F",
@@ -48468,7 +50933,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -48497,6 +50963,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F926-1F3FB-200D-2642-FE0F",
@@ -48508,7 +50975,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F926-1F3FC-200D-2642-FE0F",
@@ -48520,7 +50988,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F926-1F3FD-200D-2642-FE0F",
@@ -48532,7 +51001,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F926-1F3FE-200D-2642-FE0F",
@@ -48544,7 +51014,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F926-1F3FF-200D-2642-FE0F",
@@ -48556,7 +51027,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -48585,6 +51057,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F926-1F3FB",
@@ -48596,7 +51069,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F926-1F3FC",
@@ -48608,7 +51082,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F926-1F3FD",
@@ -48620,7 +51095,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F926-1F3FE",
@@ -48632,7 +51108,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F926-1F3FF",
@@ -48644,7 +51121,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -48672,7 +51150,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE WITH ONE EYEBROW RAISED",
@@ -48699,7 +51178,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GRINNING FACE WITH STAR EYES",
@@ -48726,7 +51206,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GRINNING FACE WITH ONE LARGE AND ONE SMALL EYE",
@@ -48753,7 +51234,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE WITH FINGER COVERING CLOSED LIPS",
@@ -48780,7 +51262,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SERIOUS FACE WITH SYMBOLS COVERING MOUTH",
@@ -48807,7 +51290,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SMILING FACE WITH SMILING EYES AND HAND COVERING MOUTH",
@@ -48834,7 +51318,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE WITH OPEN MOUTH VOMITING",
@@ -48861,7 +51346,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SHOCKED FACE WITH EXPLODING HEAD",
@@ -48888,7 +51374,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PREGNANT WOMAN",
@@ -48915,6 +51402,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F930-1F3FB",
@@ -48926,7 +51414,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F930-1F3FC",
@@ -48938,7 +51427,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F930-1F3FD",
@@ -48950,7 +51440,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F930-1F3FE",
@@ -48962,7 +51453,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F930-1F3FF",
@@ -48974,7 +51466,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -49003,6 +51496,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F931-1F3FB",
@@ -49014,7 +51508,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F931-1F3FC",
@@ -49026,7 +51521,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F931-1F3FD",
@@ -49038,7 +51534,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F931-1F3FE",
@@ -49050,7 +51547,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F931-1F3FF",
@@ -49062,7 +51560,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -49091,6 +51590,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F932-1F3FB",
@@ -49102,7 +51602,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F932-1F3FC",
@@ -49114,7 +51615,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F932-1F3FD",
@@ -49126,7 +51628,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F932-1F3FE",
@@ -49138,7 +51641,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F932-1F3FF",
@@ -49150,7 +51654,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -49179,6 +51684,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F933-1F3FB",
@@ -49190,7 +51696,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F933-1F3FC",
@@ -49202,7 +51709,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F933-1F3FD",
@@ -49214,7 +51722,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F933-1F3FE",
@@ -49226,7 +51735,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F933-1F3FF",
@@ -49238,7 +51748,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -49267,6 +51778,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F934-1F3FB",
@@ -49278,7 +51790,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F934-1F3FC",
@@ -49290,7 +51803,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F934-1F3FD",
@@ -49302,7 +51816,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F934-1F3FE",
@@ -49314,7 +51829,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F934-1F3FF",
@@ -49326,7 +51842,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -49355,6 +51872,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F935-1F3FB-200D-2640-FE0F",
@@ -49366,7 +51884,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F935-1F3FC-200D-2640-FE0F",
@@ -49378,7 +51897,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F935-1F3FD-200D-2640-FE0F",
@@ -49390,7 +51910,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F935-1F3FE-200D-2640-FE0F",
@@ -49402,7 +51923,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F935-1F3FF-200D-2640-FE0F",
@@ -49414,7 +51936,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -49443,6 +51966,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F935-1F3FB-200D-2642-FE0F",
@@ -49454,7 +51978,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F935-1F3FC-200D-2642-FE0F",
@@ -49466,7 +51991,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F935-1F3FD-200D-2642-FE0F",
@@ -49478,7 +52004,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F935-1F3FE-200D-2642-FE0F",
@@ -49490,7 +52017,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F935-1F3FF-200D-2642-FE0F",
@@ -49502,7 +52030,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -49531,6 +52060,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F935-1F3FB",
@@ -49542,7 +52072,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F935-1F3FC",
@@ -49554,7 +52085,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F935-1F3FD",
@@ -49566,7 +52098,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F935-1F3FE",
@@ -49578,7 +52111,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F935-1F3FF",
@@ -49590,7 +52124,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -49620,6 +52155,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F936-1F3FB",
@@ -49631,7 +52167,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F936-1F3FC",
@@ -49643,7 +52180,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F936-1F3FD",
@@ -49655,7 +52193,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F936-1F3FE",
@@ -49667,7 +52206,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F936-1F3FF",
@@ -49679,7 +52219,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -49708,6 +52249,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F937-1F3FB-200D-2640-FE0F",
@@ -49719,7 +52261,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F937-1F3FC-200D-2640-FE0F",
@@ -49731,7 +52274,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F937-1F3FD-200D-2640-FE0F",
@@ -49743,7 +52287,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F937-1F3FE-200D-2640-FE0F",
@@ -49755,7 +52300,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F937-1F3FF-200D-2640-FE0F",
@@ -49767,7 +52313,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -49796,6 +52343,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F937-1F3FB-200D-2642-FE0F",
@@ -49807,7 +52355,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F937-1F3FC-200D-2642-FE0F",
@@ -49819,7 +52368,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F937-1F3FD-200D-2642-FE0F",
@@ -49831,7 +52381,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F937-1F3FE-200D-2642-FE0F",
@@ -49843,7 +52394,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F937-1F3FF-200D-2642-FE0F",
@@ -49855,7 +52407,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -49884,6 +52437,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F937-1F3FB",
@@ -49895,7 +52449,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F937-1F3FC",
@@ -49907,7 +52462,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F937-1F3FD",
@@ -49919,7 +52475,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F937-1F3FE",
@@ -49931,7 +52488,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F937-1F3FF",
@@ -49943,7 +52501,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -49972,6 +52531,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F938-1F3FB-200D-2640-FE0F",
@@ -49983,7 +52543,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F938-1F3FC-200D-2640-FE0F",
@@ -49995,7 +52556,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F938-1F3FD-200D-2640-FE0F",
@@ -50007,7 +52569,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F938-1F3FE-200D-2640-FE0F",
@@ -50019,7 +52582,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F938-1F3FF-200D-2640-FE0F",
@@ -50031,7 +52595,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -50060,6 +52625,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F938-1F3FB-200D-2642-FE0F",
@@ -50071,7 +52637,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F938-1F3FC-200D-2642-FE0F",
@@ -50083,7 +52650,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F938-1F3FD-200D-2642-FE0F",
@@ -50095,7 +52663,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F938-1F3FE-200D-2642-FE0F",
@@ -50107,7 +52676,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F938-1F3FF-200D-2642-FE0F",
@@ -50119,7 +52689,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -50148,6 +52719,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F938-1F3FB",
@@ -50159,7 +52731,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F938-1F3FC",
@@ -50171,7 +52744,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F938-1F3FD",
@@ -50183,7 +52757,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F938-1F3FE",
@@ -50195,7 +52770,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F938-1F3FF",
@@ -50207,7 +52783,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -50236,6 +52813,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F939-1F3FB-200D-2640-FE0F",
@@ -50247,7 +52825,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F939-1F3FC-200D-2640-FE0F",
@@ -50259,7 +52838,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F939-1F3FD-200D-2640-FE0F",
@@ -50271,7 +52851,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F939-1F3FE-200D-2640-FE0F",
@@ -50283,7 +52864,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F939-1F3FF-200D-2640-FE0F",
@@ -50295,7 +52877,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -50324,6 +52907,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F939-1F3FB-200D-2642-FE0F",
@@ -50335,7 +52919,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F939-1F3FC-200D-2642-FE0F",
@@ -50347,7 +52932,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F939-1F3FD-200D-2642-FE0F",
@@ -50359,7 +52945,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F939-1F3FE-200D-2642-FE0F",
@@ -50371,7 +52958,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F939-1F3FF-200D-2642-FE0F",
@@ -50383,7 +52971,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -50412,6 +53001,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F939-1F3FB",
@@ -50423,7 +53013,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F939-1F3FC",
@@ -50435,7 +53026,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F939-1F3FD",
@@ -50447,7 +53039,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F939-1F3FE",
@@ -50459,7 +53052,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F939-1F3FF",
@@ -50471,7 +53065,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -50499,7 +53094,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WOMEN WRESTLING",
@@ -50525,7 +53121,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MEN WRESTLING",
@@ -50551,7 +53148,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WRESTLERS",
@@ -50577,7 +53175,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WOMAN PLAYING WATER POLO",
@@ -50604,6 +53203,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F93D-1F3FB-200D-2640-FE0F",
@@ -50615,7 +53215,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F93D-1F3FC-200D-2640-FE0F",
@@ -50627,7 +53228,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F93D-1F3FD-200D-2640-FE0F",
@@ -50639,7 +53241,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F93D-1F3FE-200D-2640-FE0F",
@@ -50651,7 +53254,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F93D-1F3FF-200D-2640-FE0F",
@@ -50663,7 +53267,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -50692,6 +53297,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F93D-1F3FB-200D-2642-FE0F",
@@ -50703,7 +53309,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F93D-1F3FC-200D-2642-FE0F",
@@ -50715,7 +53322,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F93D-1F3FD-200D-2642-FE0F",
@@ -50727,7 +53335,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F93D-1F3FE-200D-2642-FE0F",
@@ -50739,7 +53348,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F93D-1F3FF-200D-2642-FE0F",
@@ -50751,7 +53361,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -50780,6 +53391,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F93D-1F3FB",
@@ -50791,7 +53403,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F93D-1F3FC",
@@ -50803,7 +53416,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F93D-1F3FD",
@@ -50815,7 +53429,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F93D-1F3FE",
@@ -50827,7 +53442,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F93D-1F3FF",
@@ -50839,7 +53455,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -50868,6 +53485,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F93E-1F3FB-200D-2640-FE0F",
@@ -50879,7 +53497,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F93E-1F3FC-200D-2640-FE0F",
@@ -50891,7 +53510,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F93E-1F3FD-200D-2640-FE0F",
@@ -50903,7 +53523,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F93E-1F3FE-200D-2640-FE0F",
@@ -50915,7 +53536,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F93E-1F3FF-200D-2640-FE0F",
@@ -50927,7 +53549,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -50956,6 +53579,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F93E-1F3FB-200D-2642-FE0F",
@@ -50967,7 +53591,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F93E-1F3FC-200D-2642-FE0F",
@@ -50979,7 +53604,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F93E-1F3FD-200D-2642-FE0F",
@@ -50991,7 +53617,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F93E-1F3FE-200D-2642-FE0F",
@@ -51003,7 +53630,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F93E-1F3FF-200D-2642-FE0F",
@@ -51015,7 +53643,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -51044,6 +53673,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F93E-1F3FB",
@@ -51055,7 +53685,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F93E-1F3FC",
@@ -51067,7 +53698,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F93E-1F3FD",
@@ -51079,7 +53711,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F93E-1F3FE",
@@ -51091,7 +53724,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F93E-1F3FF",
@@ -51103,7 +53737,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -51131,7 +53766,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WILTED FLOWER",
@@ -51157,7 +53793,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DRUM WITH DRUMSTICKS",
@@ -51183,7 +53820,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLINKING GLASSES",
@@ -51209,7 +53847,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TUMBLER GLASS",
@@ -51235,7 +53874,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SPOON",
@@ -51261,7 +53901,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GOAL NET",
@@ -51287,7 +53928,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FIRST PLACE MEDAL",
@@ -51313,7 +53955,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SECOND PLACE MEDAL",
@@ -51339,7 +53982,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "THIRD PLACE MEDAL",
@@ -51365,7 +54009,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BOXING GLOVE",
@@ -51391,7 +54036,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MARTIAL ARTS UNIFORM",
@@ -51417,7 +54063,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CURLING STONE",
@@ -51443,7 +54090,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LACROSSE STICK AND BALL",
@@ -51469,7 +54117,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SOFTBALL",
@@ -51495,7 +54144,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FLYING DISC",
@@ -51521,7 +54171,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CROISSANT",
@@ -51547,7 +54198,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "AVOCADO",
@@ -51573,7 +54225,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CUCUMBER",
@@ -51599,7 +54252,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BACON",
@@ -51625,7 +54279,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "POTATO",
@@ -51651,7 +54306,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CARROT",
@@ -51677,7 +54333,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BAGUETTE BREAD",
@@ -51703,7 +54360,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GREEN SALAD",
@@ -51729,7 +54387,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SHALLOW PAN OF FOOD",
@@ -51755,7 +54414,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "STUFFED FLATBREAD",
@@ -51781,7 +54441,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "EGG",
@@ -51807,7 +54468,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GLASS OF MILK",
@@ -51833,7 +54495,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PEANUTS",
@@ -51859,7 +54522,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "KIWIFRUIT",
@@ -51885,7 +54549,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PANCAKES",
@@ -51911,7 +54576,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DUMPLING",
@@ -51937,7 +54603,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FORTUNE COOKIE",
@@ -51963,7 +54630,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TAKEOUT BOX",
@@ -51989,7 +54657,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CHOPSTICKS",
@@ -52015,7 +54684,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BOWL WITH SPOON",
@@ -52041,7 +54711,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CUP WITH STRAW",
@@ -52067,7 +54738,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "COCONUT",
@@ -52093,7 +54765,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BROCCOLI",
@@ -52119,7 +54792,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PIE",
@@ -52145,7 +54819,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PRETZEL",
@@ -52171,7 +54846,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CUT OF MEAT",
@@ -52197,7 +54873,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SANDWICH",
@@ -52223,7 +54900,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CANNED FOOD",
@@ -52249,7 +54927,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LEAFY GREEN",
@@ -52275,7 +54954,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MANGO",
@@ -52301,7 +54981,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MOON CAKE",
@@ -52327,7 +55008,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BAGEL",
@@ -52353,7 +55035,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SMILING FACE WITH SMILING EYES AND THREE HEARTS",
@@ -52379,7 +55062,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "YAWNING FACE",
@@ -52405,7 +55089,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SMILING FACE WITH TEAR",
@@ -52431,7 +55116,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE WITH PARTY HORN AND PARTY HAT",
@@ -52457,7 +55143,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE WITH UNEVEN EYES AND WAVY MOUTH",
@@ -52483,7 +55170,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "OVERHEATED FACE",
@@ -52509,7 +55197,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FREEZING FACE",
@@ -52535,7 +55224,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NINJA",
@@ -52562,6 +55252,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F977-1F3FB",
@@ -52573,7 +55264,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F977-1F3FC",
@@ -52585,7 +55277,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F977-1F3FD",
@@ -52597,7 +55290,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F977-1F3FE",
@@ -52609,7 +55303,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F977-1F3FF",
@@ -52621,7 +55316,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -52649,7 +55345,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE HOLDING BACK TEARS",
@@ -52675,7 +55372,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE WITH PLEADING EYES",
@@ -52701,7 +55399,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SARI",
@@ -52727,7 +55426,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LAB COAT",
@@ -52753,7 +55453,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GOGGLES",
@@ -52779,7 +55480,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HIKING BOOT",
@@ -52805,7 +55507,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FLAT SHOE",
@@ -52831,7 +55534,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CRAB",
@@ -52857,7 +55561,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LION FACE",
@@ -52883,7 +55588,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SCORPION",
@@ -52909,7 +55615,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TURKEY",
@@ -52935,7 +55642,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "UNICORN FACE",
@@ -52961,7 +55669,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "EAGLE",
@@ -52987,7 +55696,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DUCK",
@@ -53013,7 +55723,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BAT",
@@ -53039,7 +55750,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SHARK",
@@ -53065,7 +55777,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "OWL",
@@ -53091,7 +55804,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FOX FACE",
@@ -53117,7 +55831,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BUTTERFLY",
@@ -53143,7 +55858,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DEER",
@@ -53169,7 +55885,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GORILLA",
@@ -53195,7 +55912,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LIZARD",
@@ -53221,7 +55939,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RHINOCEROS",
@@ -53247,7 +55966,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SHRIMP",
@@ -53273,7 +55993,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SQUID",
@@ -53299,7 +56020,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GIRAFFE FACE",
@@ -53325,7 +56047,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ZEBRA FACE",
@@ -53351,7 +56074,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HEDGEHOG",
@@ -53377,7 +56101,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SAUROPOD",
@@ -53403,7 +56128,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "T-REX",
@@ -53429,7 +56155,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CRICKET",
@@ -53455,7 +56182,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "KANGAROO",
@@ -53481,7 +56209,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LLAMA",
@@ -53507,7 +56236,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PEACOCK",
@@ -53533,7 +56263,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HIPPOPOTAMUS",
@@ -53559,7 +56290,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PARROT",
@@ -53585,7 +56317,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RACCOON",
@@ -53611,7 +56344,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LOBSTER",
@@ -53637,7 +56371,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MOSQUITO",
@@ -53663,7 +56398,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MICROBE",
@@ -53689,7 +56425,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BADGER",
@@ -53715,7 +56452,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SWAN",
@@ -53741,7 +56479,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MAMMOTH",
@@ -53767,7 +56506,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DODO",
@@ -53793,7 +56533,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SLOTH",
@@ -53819,7 +56560,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "OTTER",
@@ -53845,7 +56587,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ORANGUTAN",
@@ -53871,7 +56614,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SKUNK",
@@ -53897,7 +56641,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FLAMINGO",
@@ -53923,7 +56668,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "OYSTER",
@@ -53949,7 +56695,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BEAVER",
@@ -53975,7 +56722,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BISON",
@@ -54001,7 +56749,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SEAL",
@@ -54027,7 +56776,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GUIDE DOG",
@@ -54053,7 +56803,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PROBING CANE",
@@ -54079,7 +56830,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BONE",
@@ -54105,7 +56857,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LEG",
@@ -54132,6 +56885,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9B5-1F3FB",
@@ -54143,7 +56897,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9B5-1F3FC",
@@ -54155,7 +56910,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9B5-1F3FD",
@@ -54167,7 +56923,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9B5-1F3FE",
@@ -54179,7 +56936,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9B5-1F3FF",
@@ -54191,7 +56949,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -54220,6 +56979,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9B6-1F3FB",
@@ -54231,7 +56991,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9B6-1F3FC",
@@ -54243,7 +57004,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9B6-1F3FD",
@@ -54255,7 +57017,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9B6-1F3FE",
@@ -54267,7 +57030,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9B6-1F3FF",
@@ -54279,7 +57043,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -54307,7 +57072,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WOMAN SUPERHERO",
@@ -54334,6 +57100,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9B8-1F3FB-200D-2640-FE0F",
@@ -54345,7 +57112,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9B8-1F3FC-200D-2640-FE0F",
@@ -54357,7 +57125,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9B8-1F3FD-200D-2640-FE0F",
@@ -54369,7 +57138,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9B8-1F3FE-200D-2640-FE0F",
@@ -54381,7 +57151,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9B8-1F3FF-200D-2640-FE0F",
@@ -54393,7 +57164,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -54422,6 +57194,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9B8-1F3FB-200D-2642-FE0F",
@@ -54433,7 +57206,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9B8-1F3FC-200D-2642-FE0F",
@@ -54445,7 +57219,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9B8-1F3FD-200D-2642-FE0F",
@@ -54457,7 +57232,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9B8-1F3FE-200D-2642-FE0F",
@@ -54469,7 +57245,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9B8-1F3FF-200D-2642-FE0F",
@@ -54481,7 +57258,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -54510,6 +57288,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9B8-1F3FB",
@@ -54521,7 +57300,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9B8-1F3FC",
@@ -54533,7 +57313,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9B8-1F3FD",
@@ -54545,7 +57326,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9B8-1F3FE",
@@ -54557,7 +57339,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9B8-1F3FF",
@@ -54569,7 +57352,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -54598,6 +57382,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9B9-1F3FB-200D-2640-FE0F",
@@ -54609,7 +57394,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9B9-1F3FC-200D-2640-FE0F",
@@ -54621,7 +57407,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9B9-1F3FD-200D-2640-FE0F",
@@ -54633,7 +57420,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9B9-1F3FE-200D-2640-FE0F",
@@ -54645,7 +57433,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9B9-1F3FF-200D-2640-FE0F",
@@ -54657,7 +57446,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -54686,6 +57476,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9B9-1F3FB-200D-2642-FE0F",
@@ -54697,7 +57488,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9B9-1F3FC-200D-2642-FE0F",
@@ -54709,7 +57501,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9B9-1F3FD-200D-2642-FE0F",
@@ -54721,7 +57514,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9B9-1F3FE-200D-2642-FE0F",
@@ -54733,7 +57527,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9B9-1F3FF-200D-2642-FE0F",
@@ -54745,7 +57540,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -54774,6 +57570,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9B9-1F3FB",
@@ -54785,7 +57582,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9B9-1F3FC",
@@ -54797,7 +57595,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9B9-1F3FD",
@@ -54809,7 +57608,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9B9-1F3FE",
@@ -54821,7 +57621,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9B9-1F3FF",
@@ -54833,7 +57634,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -54861,7 +57663,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "EAR WITH HEARING AID",
@@ -54888,6 +57691,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9BB-1F3FB",
@@ -54899,7 +57703,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9BB-1F3FC",
@@ -54911,7 +57716,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9BB-1F3FD",
@@ -54923,7 +57729,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9BB-1F3FE",
@@ -54935,7 +57742,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9BB-1F3FF",
@@ -54947,7 +57755,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -54975,7 +57784,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MANUAL WHEELCHAIR",
@@ -55001,7 +57811,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MECHANICAL ARM",
@@ -55027,7 +57838,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MECHANICAL LEG",
@@ -55053,7 +57865,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CHEESE WEDGE",
@@ -55079,7 +57892,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CUPCAKE",
@@ -55105,7 +57919,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SALT SHAKER",
@@ -55131,7 +57946,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BEVERAGE BOX",
@@ -55157,7 +57973,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GARLIC",
@@ -55183,7 +58000,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ONION",
@@ -55209,7 +58027,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FALAFEL",
@@ -55235,7 +58054,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WAFFLE",
@@ -55261,7 +58081,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BUTTER",
@@ -55287,7 +58108,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MATE DRINK",
@@ -55313,7 +58135,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ICE CUBE",
@@ -55339,7 +58162,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BUBBLE TEA",
@@ -55365,7 +58189,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TROLL",
@@ -55391,7 +58216,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WOMAN STANDING",
@@ -55418,6 +58244,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9CD-1F3FB-200D-2640-FE0F",
@@ -55429,7 +58256,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9CD-1F3FC-200D-2640-FE0F",
@@ -55441,7 +58269,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9CD-1F3FD-200D-2640-FE0F",
@@ -55453,7 +58282,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9CD-1F3FE-200D-2640-FE0F",
@@ -55465,7 +58295,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9CD-1F3FF-200D-2640-FE0F",
@@ -55477,7 +58308,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -55506,6 +58338,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9CD-1F3FB-200D-2642-FE0F",
@@ -55517,7 +58350,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9CD-1F3FC-200D-2642-FE0F",
@@ -55529,7 +58363,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9CD-1F3FD-200D-2642-FE0F",
@@ -55541,7 +58376,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9CD-1F3FE-200D-2642-FE0F",
@@ -55553,7 +58389,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9CD-1F3FF-200D-2642-FE0F",
@@ -55565,7 +58402,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -55594,6 +58432,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9CD-1F3FB",
@@ -55605,7 +58444,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9CD-1F3FC",
@@ -55617,7 +58457,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9CD-1F3FD",
@@ -55629,7 +58470,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9CD-1F3FE",
@@ -55641,7 +58483,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9CD-1F3FF",
@@ -55653,7 +58496,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -55682,6 +58526,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9CE-1F3FB-200D-2640-FE0F",
@@ -55693,7 +58538,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9CE-1F3FC-200D-2640-FE0F",
@@ -55705,7 +58551,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9CE-1F3FD-200D-2640-FE0F",
@@ -55717,7 +58564,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9CE-1F3FE-200D-2640-FE0F",
@@ -55729,7 +58577,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9CE-1F3FF-200D-2640-FE0F",
@@ -55741,7 +58590,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -55770,6 +58620,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9CE-1F3FB-200D-2642-FE0F",
@@ -55781,7 +58632,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9CE-1F3FC-200D-2642-FE0F",
@@ -55793,7 +58645,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9CE-1F3FD-200D-2642-FE0F",
@@ -55805,7 +58658,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9CE-1F3FE-200D-2642-FE0F",
@@ -55817,7 +58671,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9CE-1F3FF-200D-2642-FE0F",
@@ -55829,7 +58684,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -55858,6 +58714,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9CE-1F3FB",
@@ -55869,7 +58726,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9CE-1F3FC",
@@ -55881,7 +58739,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9CE-1F3FD",
@@ -55893,7 +58752,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9CE-1F3FE",
@@ -55905,7 +58765,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9CE-1F3FF",
@@ -55917,7 +58778,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -55946,6 +58808,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9CF-1F3FB-200D-2640-FE0F",
@@ -55957,7 +58820,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9CF-1F3FC-200D-2640-FE0F",
@@ -55969,7 +58833,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9CF-1F3FD-200D-2640-FE0F",
@@ -55981,7 +58846,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9CF-1F3FE-200D-2640-FE0F",
@@ -55993,7 +58859,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9CF-1F3FF-200D-2640-FE0F",
@@ -56005,7 +58872,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -56034,6 +58902,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9CF-1F3FB-200D-2642-FE0F",
@@ -56045,7 +58914,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9CF-1F3FC-200D-2642-FE0F",
@@ -56057,7 +58927,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9CF-1F3FD-200D-2642-FE0F",
@@ -56069,7 +58940,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9CF-1F3FE-200D-2642-FE0F",
@@ -56081,7 +58953,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9CF-1F3FF-200D-2642-FE0F",
@@ -56093,7 +58966,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -56122,6 +58996,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9CF-1F3FB",
@@ -56133,7 +59008,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9CF-1F3FC",
@@ -56145,7 +59021,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9CF-1F3FD",
@@ -56157,7 +59034,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9CF-1F3FE",
@@ -56169,7 +59047,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9CF-1F3FF",
@@ -56181,7 +59060,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -56209,7 +59089,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FARMER",
@@ -56236,6 +59117,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D1-1F3FB-200D-1F33E",
@@ -56247,7 +59129,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D1-1F3FC-200D-1F33E",
@@ -56259,7 +59142,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D1-1F3FD-200D-1F33E",
@@ -56271,7 +59155,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D1-1F3FE-200D-1F33E",
@@ -56283,7 +59168,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D1-1F3FF-200D-1F33E",
@@ -56295,7 +59181,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -56324,6 +59211,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D1-1F3FB-200D-1F373",
@@ -56335,7 +59223,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D1-1F3FC-200D-1F373",
@@ -56347,7 +59236,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D1-1F3FD-200D-1F373",
@@ -56359,7 +59249,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D1-1F3FE-200D-1F373",
@@ -56371,7 +59262,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D1-1F3FF-200D-1F373",
@@ -56383,7 +59275,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -56412,6 +59305,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D1-1F3FB-200D-1F37C",
@@ -56423,7 +59317,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D1-1F3FC-200D-1F37C",
@@ -56435,7 +59330,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D1-1F3FD-200D-1F37C",
@@ -56447,7 +59343,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D1-1F3FE-200D-1F37C",
@@ -56459,7 +59356,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D1-1F3FF-200D-1F37C",
@@ -56471,7 +59369,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -56500,6 +59399,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D1-1F3FB-200D-1F384",
@@ -56511,7 +59411,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D1-1F3FC-200D-1F384",
@@ -56523,7 +59424,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D1-1F3FD-200D-1F384",
@@ -56535,7 +59437,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D1-1F3FE-200D-1F384",
@@ -56547,7 +59450,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D1-1F3FF-200D-1F384",
@@ -56559,7 +59463,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -56588,6 +59493,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D1-1F3FB-200D-1F393",
@@ -56599,7 +59505,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D1-1F3FC-200D-1F393",
@@ -56611,7 +59518,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D1-1F3FD-200D-1F393",
@@ -56623,7 +59531,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D1-1F3FE-200D-1F393",
@@ -56635,7 +59544,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D1-1F3FF-200D-1F393",
@@ -56647,7 +59557,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -56676,6 +59587,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D1-1F3FB-200D-1F3A4",
@@ -56687,7 +59599,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D1-1F3FC-200D-1F3A4",
@@ -56699,7 +59612,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D1-1F3FD-200D-1F3A4",
@@ -56711,7 +59625,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D1-1F3FE-200D-1F3A4",
@@ -56723,7 +59638,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D1-1F3FF-200D-1F3A4",
@@ -56735,7 +59651,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -56764,6 +59681,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D1-1F3FB-200D-1F3A8",
@@ -56775,7 +59693,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D1-1F3FC-200D-1F3A8",
@@ -56787,7 +59706,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D1-1F3FD-200D-1F3A8",
@@ -56799,7 +59719,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D1-1F3FE-200D-1F3A8",
@@ -56811,7 +59732,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D1-1F3FF-200D-1F3A8",
@@ -56823,7 +59745,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -56852,6 +59775,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D1-1F3FB-200D-1F3EB",
@@ -56863,7 +59787,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D1-1F3FC-200D-1F3EB",
@@ -56875,7 +59800,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D1-1F3FD-200D-1F3EB",
@@ -56887,7 +59813,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D1-1F3FE-200D-1F3EB",
@@ -56899,7 +59826,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D1-1F3FF-200D-1F3EB",
@@ -56911,7 +59839,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -56940,6 +59869,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D1-1F3FB-200D-1F3ED",
@@ -56951,7 +59881,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D1-1F3FC-200D-1F3ED",
@@ -56963,7 +59894,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D1-1F3FD-200D-1F3ED",
@@ -56975,7 +59907,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D1-1F3FE-200D-1F3ED",
@@ -56987,7 +59920,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D1-1F3FF-200D-1F3ED",
@@ -56999,7 +59933,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -57028,6 +59963,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": false,
"skin_variations": {
"1F3FB": {
"unified": "1F9D1-1F3FB-200D-1F4BB",
@@ -57039,7 +59975,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC": {
"unified": "1F9D1-1F3FC-200D-1F4BB",
@@ -57051,7 +59988,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD": {
"unified": "1F9D1-1F3FD-200D-1F4BB",
@@ -57063,7 +60001,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE": {
"unified": "1F9D1-1F3FE-200D-1F4BB",
@@ -57075,7 +60014,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF": {
"unified": "1F9D1-1F3FF-200D-1F4BB",
@@ -57087,7 +60027,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
}
}
},
@@ -57116,6 +60057,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D1-1F3FB-200D-1F4BC",
@@ -57127,7 +60069,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D1-1F3FC-200D-1F4BC",
@@ -57139,7 +60082,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D1-1F3FD-200D-1F4BC",
@@ -57151,7 +60095,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D1-1F3FE-200D-1F4BC",
@@ -57163,7 +60108,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D1-1F3FF-200D-1F4BC",
@@ -57175,7 +60121,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -57204,6 +60151,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D1-1F3FB-200D-1F527",
@@ -57215,7 +60163,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D1-1F3FC-200D-1F527",
@@ -57227,7 +60176,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D1-1F3FD-200D-1F527",
@@ -57239,7 +60189,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D1-1F3FE-200D-1F527",
@@ -57251,7 +60202,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D1-1F3FF-200D-1F527",
@@ -57263,7 +60215,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -57292,6 +60245,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D1-1F3FB-200D-1F52C",
@@ -57303,7 +60257,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D1-1F3FC-200D-1F52C",
@@ -57315,7 +60270,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D1-1F3FD-200D-1F52C",
@@ -57327,7 +60283,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D1-1F3FE-200D-1F52C",
@@ -57339,7 +60296,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D1-1F3FF-200D-1F52C",
@@ -57351,7 +60309,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -57380,6 +60339,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D1-1F3FB-200D-1F680",
@@ -57391,7 +60351,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D1-1F3FC-200D-1F680",
@@ -57403,7 +60364,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D1-1F3FD-200D-1F680",
@@ -57415,7 +60377,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D1-1F3FE-200D-1F680",
@@ -57427,7 +60390,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D1-1F3FF-200D-1F680",
@@ -57439,7 +60403,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -57468,6 +60433,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D1-1F3FB-200D-1F692",
@@ -57479,7 +60445,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D1-1F3FC-200D-1F692",
@@ -57491,7 +60458,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D1-1F3FD-200D-1F692",
@@ -57503,7 +60471,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D1-1F3FE-200D-1F692",
@@ -57515,7 +60484,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D1-1F3FF-200D-1F692",
@@ -57527,7 +60497,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -57556,6 +60527,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": false,
"skin_variations": {
"1F3FB-1F3FB": {
"unified": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FB",
@@ -57567,7 +60539,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FC": {
"unified": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FC",
@@ -57579,7 +60552,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FD": {
"unified": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FD",
@@ -57591,7 +60565,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FE": {
"unified": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FE",
@@ -57603,7 +60578,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FB-1F3FF": {
"unified": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FF",
@@ -57615,7 +60591,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FB": {
"unified": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FB",
@@ -57627,7 +60604,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FC": {
"unified": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FC",
@@ -57639,7 +60617,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FD": {
"unified": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FD",
@@ -57651,7 +60630,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FE": {
"unified": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FE",
@@ -57663,7 +60643,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FC-1F3FF": {
"unified": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FF",
@@ -57675,7 +60656,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FB": {
"unified": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FB",
@@ -57687,7 +60669,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FC": {
"unified": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FC",
@@ -57699,7 +60682,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FD": {
"unified": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FD",
@@ -57711,7 +60695,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FE": {
"unified": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FE",
@@ -57723,7 +60708,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FD-1F3FF": {
"unified": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FF",
@@ -57735,7 +60721,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FB": {
"unified": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FB",
@@ -57747,7 +60734,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FC": {
"unified": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FC",
@@ -57759,7 +60747,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FD": {
"unified": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FD",
@@ -57771,7 +60760,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FE": {
"unified": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FE",
@@ -57783,7 +60773,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FE-1F3FF": {
"unified": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FF",
@@ -57795,7 +60786,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FB": {
"unified": "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FB",
@@ -57807,7 +60799,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FC": {
"unified": "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FC",
@@ -57819,7 +60812,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FD": {
"unified": "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FD",
@@ -57831,7 +60825,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FE": {
"unified": "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FE",
@@ -57843,7 +60838,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
},
"1F3FF-1F3FF": {
"unified": "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FF",
@@ -57855,7 +60851,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": false
}
}
},
@@ -57884,6 +60881,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D1-1F3FB-200D-1F9AF",
@@ -57895,7 +60893,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D1-1F3FC-200D-1F9AF",
@@ -57907,7 +60906,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D1-1F3FD-200D-1F9AF",
@@ -57919,7 +60919,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D1-1F3FE-200D-1F9AF",
@@ -57931,7 +60932,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D1-1F3FF-200D-1F9AF",
@@ -57943,7 +60945,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -57972,6 +60975,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D1-1F3FB-200D-1F9B0",
@@ -57983,7 +60987,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D1-1F3FC-200D-1F9B0",
@@ -57995,7 +61000,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D1-1F3FD-200D-1F9B0",
@@ -58007,7 +61013,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D1-1F3FE-200D-1F9B0",
@@ -58019,7 +61026,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D1-1F3FF-200D-1F9B0",
@@ -58031,7 +61039,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -58060,6 +61069,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D1-1F3FB-200D-1F9B1",
@@ -58071,7 +61081,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D1-1F3FC-200D-1F9B1",
@@ -58083,7 +61094,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D1-1F3FD-200D-1F9B1",
@@ -58095,7 +61107,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D1-1F3FE-200D-1F9B1",
@@ -58107,7 +61120,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D1-1F3FF-200D-1F9B1",
@@ -58119,7 +61133,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -58148,6 +61163,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D1-1F3FB-200D-1F9B2",
@@ -58159,7 +61175,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D1-1F3FC-200D-1F9B2",
@@ -58171,7 +61188,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D1-1F3FD-200D-1F9B2",
@@ -58183,7 +61201,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D1-1F3FE-200D-1F9B2",
@@ -58195,7 +61214,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D1-1F3FF-200D-1F9B2",
@@ -58207,7 +61227,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -58236,6 +61257,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D1-1F3FB-200D-1F9B3",
@@ -58247,7 +61269,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D1-1F3FC-200D-1F9B3",
@@ -58259,7 +61282,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D1-1F3FD-200D-1F9B3",
@@ -58271,7 +61295,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D1-1F3FE-200D-1F9B3",
@@ -58283,7 +61308,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D1-1F3FF-200D-1F9B3",
@@ -58295,7 +61321,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -58324,6 +61351,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D1-1F3FB-200D-1F9BC",
@@ -58335,7 +61363,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D1-1F3FC-200D-1F9BC",
@@ -58347,7 +61376,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D1-1F3FD-200D-1F9BC",
@@ -58359,7 +61389,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D1-1F3FE-200D-1F9BC",
@@ -58371,7 +61402,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D1-1F3FF-200D-1F9BC",
@@ -58383,7 +61415,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -58412,6 +61445,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D1-1F3FB-200D-1F9BD",
@@ -58423,7 +61457,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D1-1F3FC-200D-1F9BD",
@@ -58435,7 +61470,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D1-1F3FD-200D-1F9BD",
@@ -58447,7 +61483,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D1-1F3FE-200D-1F9BD",
@@ -58459,7 +61496,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D1-1F3FF-200D-1F9BD",
@@ -58471,7 +61509,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -58500,6 +61539,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D1-1F3FB-200D-2695-FE0F",
@@ -58511,7 +61551,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D1-1F3FC-200D-2695-FE0F",
@@ -58523,7 +61564,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D1-1F3FD-200D-2695-FE0F",
@@ -58535,7 +61577,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D1-1F3FE-200D-2695-FE0F",
@@ -58547,7 +61590,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D1-1F3FF-200D-2695-FE0F",
@@ -58559,7 +61603,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -58588,6 +61633,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D1-1F3FB-200D-2696-FE0F",
@@ -58599,7 +61645,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D1-1F3FC-200D-2696-FE0F",
@@ -58611,7 +61658,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D1-1F3FD-200D-2696-FE0F",
@@ -58623,7 +61671,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D1-1F3FE-200D-2696-FE0F",
@@ -58635,7 +61684,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D1-1F3FF-200D-2696-FE0F",
@@ -58647,7 +61697,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -58676,6 +61727,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D1-1F3FB-200D-2708-FE0F",
@@ -58687,7 +61739,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D1-1F3FC-200D-2708-FE0F",
@@ -58699,7 +61752,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D1-1F3FD-200D-2708-FE0F",
@@ -58711,7 +61765,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D1-1F3FE-200D-2708-FE0F",
@@ -58723,7 +61778,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D1-1F3FF-200D-2708-FE0F",
@@ -58735,7 +61791,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -58764,6 +61821,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D1-1F3FB",
@@ -58775,7 +61833,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D1-1F3FC",
@@ -58787,7 +61846,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D1-1F3FD",
@@ -58799,7 +61859,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D1-1F3FE",
@@ -58811,7 +61872,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D1-1F3FF",
@@ -58823,7 +61885,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -58852,6 +61915,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D2-1F3FB",
@@ -58863,7 +61927,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D2-1F3FC",
@@ -58875,7 +61940,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D2-1F3FD",
@@ -58887,7 +61953,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D2-1F3FE",
@@ -58899,7 +61966,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D2-1F3FF",
@@ -58911,7 +61979,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -58940,6 +62009,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D3-1F3FB",
@@ -58951,7 +62021,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D3-1F3FC",
@@ -58963,7 +62034,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D3-1F3FD",
@@ -58975,7 +62047,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D3-1F3FE",
@@ -58987,7 +62060,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D3-1F3FF",
@@ -58999,7 +62073,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -59028,6 +62103,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D4-1F3FB-200D-2640-FE0F",
@@ -59039,7 +62115,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D4-1F3FC-200D-2640-FE0F",
@@ -59051,7 +62128,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D4-1F3FD-200D-2640-FE0F",
@@ -59063,7 +62141,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D4-1F3FE-200D-2640-FE0F",
@@ -59075,7 +62154,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D4-1F3FF-200D-2640-FE0F",
@@ -59087,7 +62167,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -59116,6 +62197,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D4-1F3FB-200D-2642-FE0F",
@@ -59127,7 +62209,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D4-1F3FC-200D-2642-FE0F",
@@ -59139,7 +62222,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D4-1F3FD-200D-2642-FE0F",
@@ -59151,7 +62235,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D4-1F3FE-200D-2642-FE0F",
@@ -59163,7 +62248,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D4-1F3FF-200D-2642-FE0F",
@@ -59175,7 +62261,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -59204,6 +62291,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D4-1F3FB",
@@ -59215,7 +62303,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D4-1F3FC",
@@ -59227,7 +62316,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D4-1F3FD",
@@ -59239,7 +62329,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D4-1F3FE",
@@ -59251,7 +62342,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D4-1F3FF",
@@ -59263,7 +62355,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -59292,6 +62385,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D5-1F3FB",
@@ -59303,7 +62397,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D5-1F3FC",
@@ -59315,7 +62410,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D5-1F3FD",
@@ -59327,7 +62423,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D5-1F3FE",
@@ -59339,7 +62436,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D5-1F3FF",
@@ -59351,7 +62449,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -59380,6 +62479,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D6-1F3FB-200D-2640-FE0F",
@@ -59391,7 +62491,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D6-1F3FC-200D-2640-FE0F",
@@ -59403,7 +62504,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D6-1F3FD-200D-2640-FE0F",
@@ -59415,7 +62517,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D6-1F3FE-200D-2640-FE0F",
@@ -59427,7 +62530,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D6-1F3FF-200D-2640-FE0F",
@@ -59439,7 +62543,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -59468,6 +62573,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D6-1F3FB-200D-2642-FE0F",
@@ -59480,6 +62586,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9D6-1F3FB"
},
"1F3FC": {
@@ -59493,6 +62600,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9D6-1F3FC"
},
"1F3FD": {
@@ -59506,6 +62614,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9D6-1F3FD"
},
"1F3FE": {
@@ -59519,6 +62628,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9D6-1F3FE"
},
"1F3FF": {
@@ -59532,6 +62642,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9D6-1F3FF"
}
},
@@ -59562,6 +62673,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D6-1F3FB",
@@ -59574,6 +62686,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9D6-1F3FB-200D-2642-FE0F"
},
"1F3FC": {
@@ -59587,6 +62700,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9D6-1F3FC-200D-2642-FE0F"
},
"1F3FD": {
@@ -59600,6 +62714,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9D6-1F3FD-200D-2642-FE0F"
},
"1F3FE": {
@@ -59613,6 +62728,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9D6-1F3FE-200D-2642-FE0F"
},
"1F3FF": {
@@ -59626,6 +62742,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9D6-1F3FF-200D-2642-FE0F"
}
},
@@ -59656,6 +62773,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D7-1F3FB-200D-2640-FE0F",
@@ -59668,6 +62786,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9D7-1F3FB"
},
"1F3FC": {
@@ -59681,6 +62800,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9D7-1F3FC"
},
"1F3FD": {
@@ -59694,6 +62814,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9D7-1F3FD"
},
"1F3FE": {
@@ -59707,6 +62828,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9D7-1F3FE"
},
"1F3FF": {
@@ -59720,6 +62842,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9D7-1F3FF"
}
},
@@ -59750,6 +62873,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D7-1F3FB-200D-2642-FE0F",
@@ -59761,7 +62885,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D7-1F3FC-200D-2642-FE0F",
@@ -59773,7 +62898,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D7-1F3FD-200D-2642-FE0F",
@@ -59785,7 +62911,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D7-1F3FE-200D-2642-FE0F",
@@ -59797,7 +62924,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D7-1F3FF-200D-2642-FE0F",
@@ -59809,7 +62937,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -59838,6 +62967,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D7-1F3FB",
@@ -59850,6 +62980,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9D7-1F3FB-200D-2640-FE0F"
},
"1F3FC": {
@@ -59863,6 +62994,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9D7-1F3FC-200D-2640-FE0F"
},
"1F3FD": {
@@ -59876,6 +63008,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9D7-1F3FD-200D-2640-FE0F"
},
"1F3FE": {
@@ -59889,6 +63022,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9D7-1F3FE-200D-2640-FE0F"
},
"1F3FF": {
@@ -59902,6 +63036,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9D7-1F3FF-200D-2640-FE0F"
}
},
@@ -59932,6 +63067,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D8-1F3FB-200D-2640-FE0F",
@@ -59944,6 +63080,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9D8-1F3FB"
},
"1F3FC": {
@@ -59957,6 +63094,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9D8-1F3FC"
},
"1F3FD": {
@@ -59970,6 +63108,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9D8-1F3FD"
},
"1F3FE": {
@@ -59983,6 +63122,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9D8-1F3FE"
},
"1F3FF": {
@@ -59996,6 +63136,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9D8-1F3FF"
}
},
@@ -60026,6 +63167,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D8-1F3FB-200D-2642-FE0F",
@@ -60037,7 +63179,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D8-1F3FC-200D-2642-FE0F",
@@ -60049,7 +63192,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D8-1F3FD-200D-2642-FE0F",
@@ -60061,7 +63205,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D8-1F3FE-200D-2642-FE0F",
@@ -60073,7 +63218,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D8-1F3FF-200D-2642-FE0F",
@@ -60085,7 +63231,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -60114,6 +63261,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D8-1F3FB",
@@ -60126,6 +63274,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9D8-1F3FB-200D-2640-FE0F"
},
"1F3FC": {
@@ -60139,6 +63288,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9D8-1F3FC-200D-2640-FE0F"
},
"1F3FD": {
@@ -60152,6 +63302,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9D8-1F3FD-200D-2640-FE0F"
},
"1F3FE": {
@@ -60165,6 +63316,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9D8-1F3FE-200D-2640-FE0F"
},
"1F3FF": {
@@ -60178,6 +63330,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9D8-1F3FF-200D-2640-FE0F"
}
},
@@ -60208,6 +63361,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D9-1F3FB-200D-2640-FE0F",
@@ -60220,6 +63374,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9D9-1F3FB"
},
"1F3FC": {
@@ -60233,6 +63388,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9D9-1F3FC"
},
"1F3FD": {
@@ -60246,6 +63402,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9D9-1F3FD"
},
"1F3FE": {
@@ -60259,6 +63416,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9D9-1F3FE"
},
"1F3FF": {
@@ -60272,6 +63430,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9D9-1F3FF"
}
},
@@ -60302,6 +63461,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D9-1F3FB-200D-2642-FE0F",
@@ -60313,7 +63473,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9D9-1F3FC-200D-2642-FE0F",
@@ -60325,7 +63486,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9D9-1F3FD-200D-2642-FE0F",
@@ -60337,7 +63499,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9D9-1F3FE-200D-2642-FE0F",
@@ -60349,7 +63512,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9D9-1F3FF-200D-2642-FE0F",
@@ -60361,7 +63525,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -60390,6 +63555,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9D9-1F3FB",
@@ -60402,6 +63568,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9D9-1F3FB-200D-2640-FE0F"
},
"1F3FC": {
@@ -60415,6 +63582,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9D9-1F3FC-200D-2640-FE0F"
},
"1F3FD": {
@@ -60428,6 +63596,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9D9-1F3FD-200D-2640-FE0F"
},
"1F3FE": {
@@ -60441,6 +63610,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9D9-1F3FE-200D-2640-FE0F"
},
"1F3FF": {
@@ -60454,6 +63624,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9D9-1F3FF-200D-2640-FE0F"
}
},
@@ -60484,6 +63655,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9DA-1F3FB-200D-2640-FE0F",
@@ -60496,6 +63668,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9DA-1F3FB"
},
"1F3FC": {
@@ -60509,6 +63682,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9DA-1F3FC"
},
"1F3FD": {
@@ -60522,6 +63696,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9DA-1F3FD"
},
"1F3FE": {
@@ -60535,6 +63710,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9DA-1F3FE"
},
"1F3FF": {
@@ -60548,6 +63724,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9DA-1F3FF"
}
},
@@ -60578,6 +63755,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9DA-1F3FB-200D-2642-FE0F",
@@ -60589,7 +63767,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9DA-1F3FC-200D-2642-FE0F",
@@ -60601,7 +63780,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9DA-1F3FD-200D-2642-FE0F",
@@ -60613,7 +63793,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9DA-1F3FE-200D-2642-FE0F",
@@ -60625,7 +63806,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9DA-1F3FF-200D-2642-FE0F",
@@ -60637,7 +63819,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -60666,6 +63849,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9DA-1F3FB",
@@ -60678,6 +63862,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9DA-1F3FB-200D-2640-FE0F"
},
"1F3FC": {
@@ -60691,6 +63876,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9DA-1F3FC-200D-2640-FE0F"
},
"1F3FD": {
@@ -60704,6 +63890,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9DA-1F3FD-200D-2640-FE0F"
},
"1F3FE": {
@@ -60717,6 +63904,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9DA-1F3FE-200D-2640-FE0F"
},
"1F3FF": {
@@ -60730,6 +63918,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9DA-1F3FF-200D-2640-FE0F"
}
},
@@ -60760,6 +63949,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9DB-1F3FB-200D-2640-FE0F",
@@ -60772,6 +63962,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9DB-1F3FB"
},
"1F3FC": {
@@ -60785,6 +63976,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9DB-1F3FC"
},
"1F3FD": {
@@ -60798,6 +63990,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9DB-1F3FD"
},
"1F3FE": {
@@ -60811,6 +64004,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9DB-1F3FE"
},
"1F3FF": {
@@ -60824,6 +64018,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9DB-1F3FF"
}
},
@@ -60854,6 +64049,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9DB-1F3FB-200D-2642-FE0F",
@@ -60865,7 +64061,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9DB-1F3FC-200D-2642-FE0F",
@@ -60877,7 +64074,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9DB-1F3FD-200D-2642-FE0F",
@@ -60889,7 +64087,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9DB-1F3FE-200D-2642-FE0F",
@@ -60901,7 +64100,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9DB-1F3FF-200D-2642-FE0F",
@@ -60913,7 +64113,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -60942,6 +64143,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9DB-1F3FB",
@@ -60954,6 +64156,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9DB-1F3FB-200D-2640-FE0F"
},
"1F3FC": {
@@ -60967,6 +64170,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9DB-1F3FC-200D-2640-FE0F"
},
"1F3FD": {
@@ -60980,6 +64184,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9DB-1F3FD-200D-2640-FE0F"
},
"1F3FE": {
@@ -60993,6 +64198,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9DB-1F3FE-200D-2640-FE0F"
},
"1F3FF": {
@@ -61006,6 +64212,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9DB-1F3FF-200D-2640-FE0F"
}
},
@@ -61036,6 +64243,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9DC-1F3FB-200D-2640-FE0F",
@@ -61047,7 +64255,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9DC-1F3FC-200D-2640-FE0F",
@@ -61059,7 +64268,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9DC-1F3FD-200D-2640-FE0F",
@@ -61071,7 +64281,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9DC-1F3FE-200D-2640-FE0F",
@@ -61083,7 +64294,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9DC-1F3FF-200D-2640-FE0F",
@@ -61095,7 +64307,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -61124,6 +64337,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9DC-1F3FB-200D-2642-FE0F",
@@ -61136,6 +64350,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9DC-1F3FB"
},
"1F3FC": {
@@ -61149,6 +64364,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9DC-1F3FC"
},
"1F3FD": {
@@ -61162,6 +64378,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9DC-1F3FD"
},
"1F3FE": {
@@ -61175,6 +64392,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9DC-1F3FE"
},
"1F3FF": {
@@ -61188,6 +64406,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9DC-1F3FF"
}
},
@@ -61218,6 +64437,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9DC-1F3FB",
@@ -61230,6 +64450,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9DC-1F3FB-200D-2642-FE0F"
},
"1F3FC": {
@@ -61243,6 +64464,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9DC-1F3FC-200D-2642-FE0F"
},
"1F3FD": {
@@ -61256,6 +64478,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9DC-1F3FD-200D-2642-FE0F"
},
"1F3FE": {
@@ -61269,6 +64492,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9DC-1F3FE-200D-2642-FE0F"
},
"1F3FF": {
@@ -61282,6 +64506,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9DC-1F3FF-200D-2642-FE0F"
}
},
@@ -61312,6 +64537,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9DD-1F3FB-200D-2640-FE0F",
@@ -61323,7 +64549,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1F9DD-1F3FC-200D-2640-FE0F",
@@ -61335,7 +64562,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1F9DD-1F3FD-200D-2640-FE0F",
@@ -61347,7 +64575,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1F9DD-1F3FE-200D-2640-FE0F",
@@ -61359,7 +64588,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1F9DD-1F3FF-200D-2640-FE0F",
@@ -61371,7 +64601,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -61400,6 +64631,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9DD-1F3FB-200D-2642-FE0F",
@@ -61412,6 +64644,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9DD-1F3FB"
},
"1F3FC": {
@@ -61425,6 +64658,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9DD-1F3FC"
},
"1F3FD": {
@@ -61438,6 +64672,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9DD-1F3FD"
},
"1F3FE": {
@@ -61451,6 +64686,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9DD-1F3FE"
},
"1F3FF": {
@@ -61464,6 +64700,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9DD-1F3FF"
}
},
@@ -61494,6 +64731,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1F9DD-1F3FB",
@@ -61506,6 +64744,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9DD-1F3FB-200D-2642-FE0F"
},
"1F3FC": {
@@ -61519,6 +64758,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9DD-1F3FC-200D-2642-FE0F"
},
"1F3FD": {
@@ -61532,6 +64772,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9DD-1F3FD-200D-2642-FE0F"
},
"1F3FE": {
@@ -61545,6 +64786,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9DD-1F3FE-200D-2642-FE0F"
},
"1F3FF": {
@@ -61558,6 +64800,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9DD-1F3FF-200D-2642-FE0F"
}
},
@@ -61587,7 +64830,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MAN GENIE",
@@ -61614,6 +64858,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9DE"
},
{
@@ -61641,6 +64886,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9DE-200D-2642-FE0F"
},
{
@@ -61667,7 +64913,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MAN ZOMBIE",
@@ -61694,6 +64941,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoletes": "1F9DF"
},
{
@@ -61721,6 +64969,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"obsoleted_by": "1F9DF-200D-2642-FE0F"
},
{
@@ -61747,7 +64996,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ORANGE HEART",
@@ -61773,7 +65023,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BILLED CAP",
@@ -61799,7 +65050,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SCARF",
@@ -61825,7 +65077,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GLOVES",
@@ -61851,7 +65104,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "COAT",
@@ -61877,7 +65131,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SOCKS",
@@ -61903,7 +65158,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RED GIFT ENVELOPE",
@@ -61929,7 +65185,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FIRECRACKER",
@@ -61955,7 +65212,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "JIGSAW PUZZLE PIECE",
@@ -61981,7 +65239,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TEST TUBE",
@@ -62007,7 +65266,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PETRI DISH",
@@ -62033,7 +65293,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DNA DOUBLE HELIX",
@@ -62059,7 +65320,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "COMPASS",
@@ -62085,7 +65347,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ABACUS",
@@ -62111,7 +65374,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FIRE EXTINGUISHER",
@@ -62137,7 +65401,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TOOLBOX",
@@ -62163,7 +65428,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BRICK",
@@ -62189,7 +65455,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MAGNET",
@@ -62215,7 +65482,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LUGGAGE",
@@ -62241,7 +65509,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LOTION BOTTLE",
@@ -62267,7 +65536,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SPOOL OF THREAD",
@@ -62293,7 +65563,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BALL OF YARN",
@@ -62319,7 +65590,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SAFETY PIN",
@@ -62345,7 +65617,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TEDDY BEAR",
@@ -62371,7 +65644,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BROOM",
@@ -62397,7 +65671,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BASKET",
@@ -62423,7 +65698,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ROLL OF PAPER",
@@ -62449,7 +65725,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BAR OF SOAP",
@@ -62475,7 +65752,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SPONGE",
@@ -62501,7 +65779,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RECEIPT",
@@ -62527,7 +65806,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NAZAR AMULET",
@@ -62553,7 +65833,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BALLET SHOES",
@@ -62579,7 +65860,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ONE-PIECE SWIMSUIT",
@@ -62605,7 +65887,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BRIEFS",
@@ -62631,7 +65914,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SHORTS",
@@ -62657,7 +65941,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "THONG SANDAL",
@@ -62683,7 +65968,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LIGHT BLUE HEART",
@@ -62709,7 +65995,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
{
"name": "GREY HEART",
@@ -62735,7 +66022,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
{
"name": "PINK HEART",
@@ -62761,7 +66049,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
{
"name": "DROP OF BLOOD",
@@ -62787,7 +66076,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ADHESIVE BANDAGE",
@@ -62813,7 +66103,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "STETHOSCOPE",
@@ -62839,7 +66130,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "X-RAY",
@@ -62865,7 +66157,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CRUTCH",
@@ -62891,7 +66184,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "YO-YO",
@@ -62917,7 +66211,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "KITE",
@@ -62943,7 +66238,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PARACHUTE",
@@ -62969,7 +66265,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BOOMERANG",
@@ -62995,7 +66292,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MAGIC WAND",
@@ -63021,7 +66319,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PINATA",
@@ -63047,7 +66346,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NESTING DOLLS",
@@ -63073,7 +66373,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MARACAS",
@@ -63099,7 +66400,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
{
"name": "FLUTE",
@@ -63125,7 +66427,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
{
"name": "RINGED PLANET",
@@ -63151,7 +66454,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CHAIR",
@@ -63177,7 +66481,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RAZOR",
@@ -63203,7 +66508,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "AXE",
@@ -63229,7 +66535,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DIYA LAMP",
@@ -63255,7 +66562,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BANJO",
@@ -63281,7 +66589,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MILITARY HELMET",
@@ -63307,7 +66616,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ACCORDION",
@@ -63333,7 +66643,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LONG DRUM",
@@ -63359,7 +66670,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "COIN",
@@ -63385,7 +66697,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CARPENTRY SAW",
@@ -63411,7 +66724,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SCREWDRIVER",
@@ -63437,7 +66751,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LADDER",
@@ -63463,7 +66778,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HOOK",
@@ -63489,7 +66805,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MIRROR",
@@ -63515,7 +66832,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WINDOW",
@@ -63541,7 +66859,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PLUNGER",
@@ -63567,7 +66886,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SEWING NEEDLE",
@@ -63593,7 +66913,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "KNOT",
@@ -63619,7 +66940,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BUCKET",
@@ -63645,7 +66967,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MOUSE TRAP",
@@ -63671,7 +66994,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TOOTHBRUSH",
@@ -63697,7 +67021,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HEADSTONE",
@@ -63723,7 +67048,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PLACARD",
@@ -63749,7 +67075,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ROCK",
@@ -63775,7 +67102,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MIRROR BALL",
@@ -63801,7 +67129,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "IDENTIFICATION CARD",
@@ -63827,7 +67156,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LOW BATTERY",
@@ -63853,7 +67183,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HAMSA",
@@ -63879,7 +67210,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FOLDING HAND FAN",
@@ -63905,7 +67237,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
{
"name": "HAIR PICK",
@@ -63931,7 +67264,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
{
"name": "KHANDA",
@@ -63957,7 +67291,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
{
"name": "FLY",
@@ -63983,7 +67318,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WORM",
@@ -64009,7 +67345,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BEETLE",
@@ -64035,7 +67372,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "COCKROACH",
@@ -64061,7 +67399,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "POTTED PLANT",
@@ -64087,7 +67426,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WOOD",
@@ -64113,7 +67453,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FEATHER",
@@ -64139,7 +67480,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LOTUS",
@@ -64165,7 +67507,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CORAL",
@@ -64191,7 +67534,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "EMPTY NEST",
@@ -64217,7 +67561,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NEST WITH EGGS",
@@ -64243,7 +67588,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HYACINTH",
@@ -64269,7 +67615,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
{
"name": "JELLYFISH",
@@ -64295,7 +67642,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
{
"name": "WING",
@@ -64321,7 +67669,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
{
"name": "GOOSE",
@@ -64347,7 +67696,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
{
"name": "ANATOMICAL HEART",
@@ -64373,7 +67723,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LUNGS",
@@ -64399,7 +67750,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PEOPLE HUGGING",
@@ -64425,7 +67777,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PREGNANT MAN",
@@ -64452,6 +67805,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1FAC3-1F3FB",
@@ -64463,7 +67817,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1FAC3-1F3FC",
@@ -64475,7 +67830,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1FAC3-1F3FD",
@@ -64487,7 +67843,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1FAC3-1F3FE",
@@ -64499,7 +67856,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1FAC3-1F3FF",
@@ -64511,7 +67869,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -64540,6 +67899,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1FAC4-1F3FB",
@@ -64551,7 +67911,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1FAC4-1F3FC",
@@ -64563,7 +67924,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1FAC4-1F3FD",
@@ -64575,7 +67937,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1FAC4-1F3FE",
@@ -64587,7 +67950,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1FAC4-1F3FF",
@@ -64599,7 +67963,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -64628,6 +67993,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1FAC5-1F3FB",
@@ -64639,7 +68005,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1FAC5-1F3FC",
@@ -64651,7 +68018,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1FAC5-1F3FD",
@@ -64663,7 +68031,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1FAC5-1F3FE",
@@ -64675,7 +68044,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1FAC5-1F3FF",
@@ -64687,7 +68057,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -64715,7 +68086,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
{
"name": "DONKEY",
@@ -64741,7 +68113,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
{
"name": "BLUEBERRIES",
@@ -64767,7 +68140,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BELL PEPPER",
@@ -64793,7 +68167,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "OLIVE",
@@ -64819,7 +68194,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FLATBREAD",
@@ -64845,7 +68221,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TAMALE",
@@ -64871,7 +68248,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FONDUE",
@@ -64897,7 +68275,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TEAPOT",
@@ -64923,7 +68302,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "POURING LIQUID",
@@ -64949,7 +68329,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BEANS",
@@ -64975,7 +68356,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "JAR",
@@ -65001,7 +68383,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GINGER ROOT",
@@ -65027,7 +68410,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
{
"name": "PEA POD",
@@ -65053,7 +68437,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
{
"name": "MELTING FACE",
@@ -65079,7 +68464,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SALUTING FACE",
@@ -65105,7 +68491,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE WITH OPEN EYES AND HAND OVER MOUTH",
@@ -65131,7 +68518,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE WITH PEEKING EYE",
@@ -65157,7 +68545,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FACE WITH DIAGONAL MOUTH",
@@ -65183,7 +68572,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DOTTED LINE FACE",
@@ -65209,7 +68599,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BITING LIP",
@@ -65235,7 +68626,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BUBBLES",
@@ -65261,7 +68653,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SHAKING FACE",
@@ -65287,7 +68680,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
{
"name": "HAND WITH INDEX FINGER AND THUMB CROSSED",
@@ -65314,6 +68708,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1FAF0-1F3FB",
@@ -65325,7 +68720,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1FAF0-1F3FC",
@@ -65337,7 +68733,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1FAF0-1F3FD",
@@ -65349,7 +68746,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1FAF0-1F3FE",
@@ -65361,7 +68759,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1FAF0-1F3FF",
@@ -65373,7 +68772,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -65402,6 +68802,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1FAF1-1F3FB",
@@ -65413,7 +68814,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1FAF1-1F3FC",
@@ -65425,7 +68827,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1FAF1-1F3FD",
@@ -65437,7 +68840,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1FAF1-1F3FE",
@@ -65449,7 +68853,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1FAF1-1F3FF",
@@ -65461,7 +68866,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -65490,6 +68896,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1FAF2-1F3FB",
@@ -65501,7 +68908,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1FAF2-1F3FC",
@@ -65513,7 +68921,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1FAF2-1F3FD",
@@ -65525,7 +68934,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1FAF2-1F3FE",
@@ -65537,7 +68947,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1FAF2-1F3FF",
@@ -65549,7 +68960,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -65578,6 +68990,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1FAF3-1F3FB",
@@ -65589,7 +69002,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1FAF3-1F3FC",
@@ -65601,7 +69015,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1FAF3-1F3FD",
@@ -65613,7 +69028,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1FAF3-1F3FE",
@@ -65625,7 +69041,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1FAF3-1F3FF",
@@ -65637,7 +69054,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -65666,6 +69084,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1FAF4-1F3FB",
@@ -65677,7 +69096,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1FAF4-1F3FC",
@@ -65689,7 +69109,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1FAF4-1F3FD",
@@ -65701,7 +69122,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1FAF4-1F3FE",
@@ -65713,7 +69135,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1FAF4-1F3FF",
@@ -65725,7 +69148,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -65754,6 +69178,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1FAF5-1F3FB",
@@ -65765,7 +69190,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1FAF5-1F3FC",
@@ -65777,7 +69203,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1FAF5-1F3FD",
@@ -65789,7 +69216,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1FAF5-1F3FE",
@@ -65801,7 +69229,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1FAF5-1F3FF",
@@ -65813,7 +69242,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -65842,6 +69272,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "1FAF6-1F3FB",
@@ -65853,7 +69284,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "1FAF6-1F3FC",
@@ -65865,7 +69297,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "1FAF6-1F3FD",
@@ -65877,7 +69310,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "1FAF6-1F3FE",
@@ -65889,7 +69323,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "1FAF6-1F3FF",
@@ -65901,7 +69336,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -65930,6 +69366,7 @@
"has_img_google": true,
"has_img_twitter": false,
"has_img_facebook": false,
+ "has_img_microsoft": false,
"skin_variations": {
"1F3FB": {
"unified": "1FAF7-1F3FB",
@@ -65941,7 +69378,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
"1F3FC": {
"unified": "1FAF7-1F3FC",
@@ -65953,7 +69391,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
"1F3FD": {
"unified": "1FAF7-1F3FD",
@@ -65965,7 +69404,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
"1F3FE": {
"unified": "1FAF7-1F3FE",
@@ -65977,7 +69417,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
"1F3FF": {
"unified": "1FAF7-1F3FF",
@@ -65989,7 +69430,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
}
}
},
@@ -66018,6 +69460,7 @@
"has_img_google": true,
"has_img_twitter": false,
"has_img_facebook": false,
+ "has_img_microsoft": false,
"skin_variations": {
"1F3FB": {
"unified": "1FAF8-1F3FB",
@@ -66029,7 +69472,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
"1F3FC": {
"unified": "1FAF8-1F3FC",
@@ -66041,7 +69485,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
"1F3FD": {
"unified": "1FAF8-1F3FD",
@@ -66053,7 +69498,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
"1F3FE": {
"unified": "1FAF8-1F3FE",
@@ -66065,7 +69511,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
},
"1F3FF": {
"unified": "1FAF8-1F3FF",
@@ -66077,7 +69524,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false
+ "has_img_facebook": false,
+ "has_img_microsoft": false
}
}
},
@@ -66105,7 +69553,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "EXCLAMATION QUESTION MARK",
@@ -66131,7 +69580,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TRADE MARK SIGN",
@@ -66157,7 +69607,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "INFORMATION SOURCE",
@@ -66183,7 +69634,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LEFT RIGHT ARROW",
@@ -66209,7 +69661,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "UP DOWN ARROW",
@@ -66235,7 +69688,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NORTH WEST ARROW",
@@ -66261,7 +69715,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NORTH EAST ARROW",
@@ -66287,7 +69742,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SOUTH EAST ARROW",
@@ -66313,7 +69769,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SOUTH WEST ARROW",
@@ -66339,7 +69796,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LEFTWARDS ARROW WITH HOOK",
@@ -66365,7 +69823,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RIGHTWARDS ARROW WITH HOOK",
@@ -66391,7 +69850,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WATCH",
@@ -66417,7 +69877,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HOURGLASS",
@@ -66443,7 +69904,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "KEYBOARD",
@@ -66469,7 +69931,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "EJECT BUTTON",
@@ -66495,7 +69958,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLACK RIGHT-POINTING DOUBLE TRIANGLE",
@@ -66521,7 +69985,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLACK LEFT-POINTING DOUBLE TRIANGLE",
@@ -66547,7 +70012,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLACK UP-POINTING DOUBLE TRIANGLE",
@@ -66573,7 +70039,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLACK DOWN-POINTING DOUBLE TRIANGLE",
@@ -66599,7 +70066,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NEXT TRACK BUTTON",
@@ -66625,7 +70093,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LAST TRACK BUTTON",
@@ -66651,7 +70120,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PLAY OR PAUSE BUTTON",
@@ -66677,7 +70147,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ALARM CLOCK",
@@ -66703,7 +70174,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "STOPWATCH",
@@ -66729,7 +70201,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TIMER CLOCK",
@@ -66755,7 +70228,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HOURGLASS WITH FLOWING SAND",
@@ -66781,7 +70255,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PAUSE BUTTON",
@@ -66807,7 +70282,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "STOP BUTTON",
@@ -66833,7 +70309,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RECORD BUTTON",
@@ -66859,7 +70336,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CIRCLED LATIN CAPITAL LETTER M",
@@ -66885,7 +70363,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLACK SMALL SQUARE",
@@ -66911,7 +70390,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WHITE SMALL SQUARE",
@@ -66937,7 +70417,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLACK RIGHT-POINTING TRIANGLE",
@@ -66963,7 +70444,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLACK LEFT-POINTING TRIANGLE",
@@ -66989,7 +70471,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WHITE MEDIUM SQUARE",
@@ -67015,7 +70498,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLACK MEDIUM SQUARE",
@@ -67041,7 +70525,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WHITE MEDIUM SMALL SQUARE",
@@ -67067,7 +70552,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLACK MEDIUM SMALL SQUARE",
@@ -67093,7 +70579,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLACK SUN WITH RAYS",
@@ -67119,7 +70606,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOUD",
@@ -67145,7 +70633,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "UMBRELLA",
@@ -67171,7 +70660,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SNOWMAN",
@@ -67197,7 +70687,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "COMET",
@@ -67223,7 +70714,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLACK TELEPHONE",
@@ -67250,7 +70742,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BALLOT BOX WITH CHECK",
@@ -67276,7 +70769,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "UMBRELLA WITH RAIN DROPS",
@@ -67302,7 +70796,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HOT BEVERAGE",
@@ -67328,7 +70823,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SHAMROCK",
@@ -67354,7 +70850,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WHITE UP POINTING INDEX",
@@ -67381,6 +70878,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "261D-1F3FB",
@@ -67392,7 +70890,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "261D-1F3FC",
@@ -67404,7 +70903,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "261D-1F3FD",
@@ -67416,7 +70916,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "261D-1F3FE",
@@ -67428,7 +70929,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "261D-1F3FF",
@@ -67440,7 +70942,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -67468,7 +70971,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RADIOACTIVE",
@@ -67494,7 +70998,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BIOHAZARD",
@@ -67520,7 +71025,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ORTHODOX CROSS",
@@ -67546,7 +71052,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "STAR AND CRESCENT",
@@ -67572,7 +71079,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PEACE SYMBOL",
@@ -67598,7 +71106,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "YIN YANG",
@@ -67624,7 +71133,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WHEEL OF DHARMA",
@@ -67650,7 +71160,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FROWNING FACE",
@@ -67676,7 +71187,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WHITE SMILING FACE",
@@ -67702,7 +71214,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FEMALE SIGN",
@@ -67728,7 +71241,8 @@
"has_img_apple": false,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MALE SIGN",
@@ -67754,7 +71268,8 @@
"has_img_apple": false,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ARIES",
@@ -67780,7 +71295,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TAURUS",
@@ -67806,7 +71322,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GEMINI",
@@ -67832,7 +71349,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CANCER",
@@ -67858,7 +71376,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LEO",
@@ -67884,7 +71403,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "VIRGO",
@@ -67910,7 +71430,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LIBRA",
@@ -67936,7 +71457,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SCORPIUS",
@@ -67962,7 +71484,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SAGITTARIUS",
@@ -67988,7 +71511,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CAPRICORN",
@@ -68014,7 +71538,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "AQUARIUS",
@@ -68040,7 +71565,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PISCES",
@@ -68066,7 +71592,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CHESS PAWN",
@@ -68092,7 +71619,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLACK SPADE SUIT",
@@ -68118,7 +71646,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLACK CLUB SUIT",
@@ -68144,7 +71673,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLACK HEART SUIT",
@@ -68170,7 +71700,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLACK DIAMOND SUIT",
@@ -68196,7 +71727,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HOT SPRINGS",
@@ -68222,7 +71754,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLACK UNIVERSAL RECYCLING SYMBOL",
@@ -68248,7 +71781,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "INFINITY",
@@ -68274,7 +71808,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WHEELCHAIR SYMBOL",
@@ -68300,7 +71835,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HAMMER AND PICK",
@@ -68326,7 +71862,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ANCHOR",
@@ -68352,7 +71889,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CROSSED SWORDS",
@@ -68378,7 +71916,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MEDICAL SYMBOL",
@@ -68405,7 +71944,8 @@
"has_img_apple": false,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BALANCE SCALE",
@@ -68431,7 +71971,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ALEMBIC",
@@ -68457,7 +71998,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "GEAR",
@@ -68483,7 +72025,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ATOM SYMBOL",
@@ -68509,7 +72052,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FLEUR-DE-LIS",
@@ -68535,7 +72079,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WARNING SIGN",
@@ -68561,7 +72106,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HIGH VOLTAGE SIGN",
@@ -68587,7 +72133,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "TRANSGENDER SYMBOL",
@@ -68613,7 +72160,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MEDIUM WHITE CIRCLE",
@@ -68639,7 +72187,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MEDIUM BLACK CIRCLE",
@@ -68665,7 +72214,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "COFFIN",
@@ -68691,7 +72241,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FUNERAL URN",
@@ -68717,7 +72268,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SOCCER BALL",
@@ -68743,7 +72295,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BASEBALL",
@@ -68769,7 +72322,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SNOWMAN WITHOUT SNOW",
@@ -68795,7 +72349,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SUN BEHIND CLOUD",
@@ -68821,7 +72376,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CLOUD WITH LIGHTNING AND RAIN",
@@ -68847,7 +72403,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "OPHIUCHUS",
@@ -68873,7 +72430,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PICK",
@@ -68899,7 +72457,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RESCUE WORKER\u2019S HELMET",
@@ -68925,7 +72484,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CHAINS",
@@ -68951,7 +72511,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NO ENTRY",
@@ -68977,7 +72538,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SHINTO SHRINE",
@@ -69003,7 +72565,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CHURCH",
@@ -69029,7 +72592,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MOUNTAIN",
@@ -69055,7 +72619,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "UMBRELLA ON GROUND",
@@ -69081,7 +72646,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FOUNTAIN",
@@ -69107,7 +72673,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FLAG IN HOLE",
@@ -69133,7 +72700,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FERRY",
@@ -69159,7 +72727,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SAILBOAT",
@@ -69186,7 +72755,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SKIER",
@@ -69212,7 +72782,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ICE SKATE",
@@ -69238,7 +72809,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WOMAN BOUNCING BALL",
@@ -69265,6 +72837,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": false,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "26F9-1F3FB-200D-2640-FE0F",
@@ -69276,7 +72849,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "26F9-1F3FC-200D-2640-FE0F",
@@ -69288,7 +72862,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "26F9-1F3FD-200D-2640-FE0F",
@@ -69300,7 +72875,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "26F9-1F3FE-200D-2640-FE0F",
@@ -69312,7 +72888,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "26F9-1F3FF-200D-2640-FE0F",
@@ -69324,7 +72901,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -69353,6 +72931,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": false,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "26F9-1F3FB-200D-2642-FE0F",
@@ -69364,7 +72943,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "26F9-1F3FC-200D-2642-FE0F",
@@ -69376,7 +72956,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "26F9-1F3FD-200D-2642-FE0F",
@@ -69388,7 +72969,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "26F9-1F3FE-200D-2642-FE0F",
@@ -69400,7 +72982,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "26F9-1F3FF-200D-2642-FE0F",
@@ -69412,7 +72995,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoletes": "26F9-FE0F"
@@ -69442,6 +73026,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "26F9-1F3FB",
@@ -69453,7 +73038,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "26F9-1F3FC",
@@ -69465,7 +73051,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "26F9-1F3FD",
@@ -69477,7 +73064,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "26F9-1F3FE",
@@ -69489,7 +73077,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "26F9-1F3FF",
@@ -69501,7 +73090,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
},
"obsoleted_by": "26F9-FE0F-200D-2642-FE0F"
@@ -69530,7 +73120,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "FUEL PUMP",
@@ -69556,7 +73147,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLACK SCISSORS",
@@ -69582,7 +73174,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WHITE HEAVY CHECK MARK",
@@ -69608,7 +73201,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "AIRPLANE",
@@ -69634,7 +73228,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ENVELOPE",
@@ -69661,7 +73256,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "RAISED FIST",
@@ -69688,6 +73284,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "270A-1F3FB",
@@ -69699,7 +73296,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "270A-1F3FC",
@@ -69711,7 +73309,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "270A-1F3FD",
@@ -69723,7 +73322,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "270A-1F3FE",
@@ -69735,7 +73335,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "270A-1F3FF",
@@ -69747,7 +73348,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -69777,6 +73379,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "270B-1F3FB",
@@ -69788,7 +73391,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "270B-1F3FC",
@@ -69800,7 +73404,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "270B-1F3FD",
@@ -69812,7 +73417,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "270B-1F3FE",
@@ -69824,7 +73430,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "270B-1F3FF",
@@ -69836,7 +73443,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -69865,6 +73473,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "270C-1F3FB",
@@ -69876,7 +73485,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "270C-1F3FC",
@@ -69888,7 +73498,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "270C-1F3FD",
@@ -69900,7 +73511,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "270C-1F3FE",
@@ -69912,7 +73524,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "270C-1F3FF",
@@ -69924,7 +73537,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -69953,6 +73567,7 @@
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
+ "has_img_microsoft": true,
"skin_variations": {
"1F3FB": {
"unified": "270D-1F3FB",
@@ -69964,7 +73579,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FC": {
"unified": "270D-1F3FC",
@@ -69976,7 +73592,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FD": {
"unified": "270D-1F3FD",
@@ -69988,7 +73605,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FE": {
"unified": "270D-1F3FE",
@@ -70000,7 +73618,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
"1F3FF": {
"unified": "270D-1F3FF",
@@ -70012,7 +73631,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
}
},
@@ -70040,7 +73660,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLACK NIB",
@@ -70066,7 +73687,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HEAVY CHECK MARK",
@@ -70092,7 +73714,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HEAVY MULTIPLICATION X",
@@ -70118,7 +73741,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LATIN CROSS",
@@ -70144,7 +73768,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "STAR OF DAVID",
@@ -70170,7 +73795,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SPARKLES",
@@ -70196,7 +73822,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "EIGHT SPOKED ASTERISK",
@@ -70222,7 +73849,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "EIGHT POINTED BLACK STAR",
@@ -70248,7 +73876,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SNOWFLAKE",
@@ -70274,7 +73903,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "SPARKLE",
@@ -70300,7 +73930,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CROSS MARK",
@@ -70326,7 +73957,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "NEGATIVE SQUARED CROSS MARK",
@@ -70352,7 +73984,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLACK QUESTION MARK ORNAMENT",
@@ -70378,7 +74011,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WHITE QUESTION MARK ORNAMENT",
@@ -70404,7 +74038,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WHITE EXCLAMATION MARK ORNAMENT",
@@ -70430,7 +74065,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HEAVY EXCLAMATION MARK SYMBOL",
@@ -70457,7 +74093,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HEART EXCLAMATION",
@@ -70483,7 +74120,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HEART ON FIRE",
@@ -70509,7 +74147,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "MENDING HEART",
@@ -70535,7 +74174,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HEAVY BLACK HEART",
@@ -70563,7 +74203,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HEAVY PLUS SIGN",
@@ -70589,7 +74230,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HEAVY MINUS SIGN",
@@ -70615,7 +74257,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HEAVY DIVISION SIGN",
@@ -70641,7 +74284,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLACK RIGHTWARDS ARROW",
@@ -70667,7 +74311,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CURLY LOOP",
@@ -70693,7 +74338,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DOUBLE CURLY LOOP",
@@ -70719,7 +74365,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS",
@@ -70745,7 +74392,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS",
@@ -70771,7 +74419,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "LEFTWARDS BLACK ARROW",
@@ -70797,7 +74446,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "UPWARDS BLACK ARROW",
@@ -70823,7 +74473,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "DOWNWARDS BLACK ARROW",
@@ -70849,7 +74500,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "BLACK LARGE SQUARE",
@@ -70875,7 +74527,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WHITE LARGE SQUARE",
@@ -70901,7 +74554,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WHITE MEDIUM STAR",
@@ -70927,7 +74581,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "HEAVY LARGE CIRCLE",
@@ -70953,7 +74608,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "WAVY DASH",
@@ -70979,7 +74635,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "PART ALTERNATION MARK",
@@ -71005,7 +74662,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CIRCLED IDEOGRAPH CONGRATULATION",
@@ -71031,7 +74689,8 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
},
{
"name": "CIRCLED IDEOGRAPH SECRET",
@@ -71057,6 +74716,7 @@
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true
+ "has_img_facebook": true,
+ "has_img_microsoft": true
}
]
\ No newline at end of file
diff --git a/img-microsoft-256/0023-fe0f-20e3.png b/img-microsoft-256/0023-fe0f-20e3.png
new file mode 100644
index 0000000000..f2344ac093
Binary files /dev/null and b/img-microsoft-256/0023-fe0f-20e3.png differ
diff --git a/img-microsoft-256/002a-fe0f-20e3.png b/img-microsoft-256/002a-fe0f-20e3.png
new file mode 100644
index 0000000000..f8ed7743ac
Binary files /dev/null and b/img-microsoft-256/002a-fe0f-20e3.png differ
diff --git a/img-microsoft-256/0030-fe0f-20e3.png b/img-microsoft-256/0030-fe0f-20e3.png
new file mode 100644
index 0000000000..1db6bc34cd
Binary files /dev/null and b/img-microsoft-256/0030-fe0f-20e3.png differ
diff --git a/img-microsoft-256/0031-fe0f-20e3.png b/img-microsoft-256/0031-fe0f-20e3.png
new file mode 100644
index 0000000000..d672f2854a
Binary files /dev/null and b/img-microsoft-256/0031-fe0f-20e3.png differ
diff --git a/img-microsoft-256/0032-fe0f-20e3.png b/img-microsoft-256/0032-fe0f-20e3.png
new file mode 100644
index 0000000000..81c3f58e6e
Binary files /dev/null and b/img-microsoft-256/0032-fe0f-20e3.png differ
diff --git a/img-microsoft-256/0033-fe0f-20e3.png b/img-microsoft-256/0033-fe0f-20e3.png
new file mode 100644
index 0000000000..424d8c123d
Binary files /dev/null and b/img-microsoft-256/0033-fe0f-20e3.png differ
diff --git a/img-microsoft-256/0034-fe0f-20e3.png b/img-microsoft-256/0034-fe0f-20e3.png
new file mode 100644
index 0000000000..ea6ae50531
Binary files /dev/null and b/img-microsoft-256/0034-fe0f-20e3.png differ
diff --git a/img-microsoft-256/0035-fe0f-20e3.png b/img-microsoft-256/0035-fe0f-20e3.png
new file mode 100644
index 0000000000..ad435da69a
Binary files /dev/null and b/img-microsoft-256/0035-fe0f-20e3.png differ
diff --git a/img-microsoft-256/0036-fe0f-20e3.png b/img-microsoft-256/0036-fe0f-20e3.png
new file mode 100644
index 0000000000..70c9522b43
Binary files /dev/null and b/img-microsoft-256/0036-fe0f-20e3.png differ
diff --git a/img-microsoft-256/0037-fe0f-20e3.png b/img-microsoft-256/0037-fe0f-20e3.png
new file mode 100644
index 0000000000..5a24307487
Binary files /dev/null and b/img-microsoft-256/0037-fe0f-20e3.png differ
diff --git a/img-microsoft-256/0038-fe0f-20e3.png b/img-microsoft-256/0038-fe0f-20e3.png
new file mode 100644
index 0000000000..9689d8ecfb
Binary files /dev/null and b/img-microsoft-256/0038-fe0f-20e3.png differ
diff --git a/img-microsoft-256/0039-fe0f-20e3.png b/img-microsoft-256/0039-fe0f-20e3.png
new file mode 100644
index 0000000000..ac3f638841
Binary files /dev/null and b/img-microsoft-256/0039-fe0f-20e3.png differ
diff --git a/img-microsoft-256/00a9-fe0f.png b/img-microsoft-256/00a9-fe0f.png
new file mode 100644
index 0000000000..728bf5d2ce
Binary files /dev/null and b/img-microsoft-256/00a9-fe0f.png differ
diff --git a/img-microsoft-256/00ae-fe0f.png b/img-microsoft-256/00ae-fe0f.png
new file mode 100644
index 0000000000..63906ee8b1
Binary files /dev/null and b/img-microsoft-256/00ae-fe0f.png differ
diff --git a/img-microsoft-256/1f004.png b/img-microsoft-256/1f004.png
new file mode 100644
index 0000000000..81b2bc70b4
Binary files /dev/null and b/img-microsoft-256/1f004.png differ
diff --git a/img-microsoft-256/1f0cf.png b/img-microsoft-256/1f0cf.png
new file mode 100644
index 0000000000..9d66057b30
Binary files /dev/null and b/img-microsoft-256/1f0cf.png differ
diff --git a/img-microsoft-256/1f170-fe0f.png b/img-microsoft-256/1f170-fe0f.png
new file mode 100644
index 0000000000..9018d631dc
Binary files /dev/null and b/img-microsoft-256/1f170-fe0f.png differ
diff --git a/img-microsoft-256/1f171-fe0f.png b/img-microsoft-256/1f171-fe0f.png
new file mode 100644
index 0000000000..6275e8d367
Binary files /dev/null and b/img-microsoft-256/1f171-fe0f.png differ
diff --git a/img-microsoft-256/1f17e-fe0f.png b/img-microsoft-256/1f17e-fe0f.png
new file mode 100644
index 0000000000..a344b9001e
Binary files /dev/null and b/img-microsoft-256/1f17e-fe0f.png differ
diff --git a/img-microsoft-256/1f17f-fe0f.png b/img-microsoft-256/1f17f-fe0f.png
new file mode 100644
index 0000000000..204f2f6086
Binary files /dev/null and b/img-microsoft-256/1f17f-fe0f.png differ
diff --git a/img-microsoft-256/1f18e.png b/img-microsoft-256/1f18e.png
new file mode 100644
index 0000000000..1f6fad3931
Binary files /dev/null and b/img-microsoft-256/1f18e.png differ
diff --git a/img-microsoft-256/1f191.png b/img-microsoft-256/1f191.png
new file mode 100644
index 0000000000..163e8bc7f2
Binary files /dev/null and b/img-microsoft-256/1f191.png differ
diff --git a/img-microsoft-256/1f192.png b/img-microsoft-256/1f192.png
new file mode 100644
index 0000000000..db14ffa7ef
Binary files /dev/null and b/img-microsoft-256/1f192.png differ
diff --git a/img-microsoft-256/1f193.png b/img-microsoft-256/1f193.png
new file mode 100644
index 0000000000..0bbfd52dd8
Binary files /dev/null and b/img-microsoft-256/1f193.png differ
diff --git a/img-microsoft-256/1f194.png b/img-microsoft-256/1f194.png
new file mode 100644
index 0000000000..6b554924e8
Binary files /dev/null and b/img-microsoft-256/1f194.png differ
diff --git a/img-microsoft-256/1f195.png b/img-microsoft-256/1f195.png
new file mode 100644
index 0000000000..21c7c03eda
Binary files /dev/null and b/img-microsoft-256/1f195.png differ
diff --git a/img-microsoft-256/1f196.png b/img-microsoft-256/1f196.png
new file mode 100644
index 0000000000..598d2016b6
Binary files /dev/null and b/img-microsoft-256/1f196.png differ
diff --git a/img-microsoft-256/1f197.png b/img-microsoft-256/1f197.png
new file mode 100644
index 0000000000..3e73870dd3
Binary files /dev/null and b/img-microsoft-256/1f197.png differ
diff --git a/img-microsoft-256/1f198.png b/img-microsoft-256/1f198.png
new file mode 100644
index 0000000000..be17a2127d
Binary files /dev/null and b/img-microsoft-256/1f198.png differ
diff --git a/img-microsoft-256/1f199.png b/img-microsoft-256/1f199.png
new file mode 100644
index 0000000000..2efd20c542
Binary files /dev/null and b/img-microsoft-256/1f199.png differ
diff --git a/img-microsoft-256/1f19a.png b/img-microsoft-256/1f19a.png
new file mode 100644
index 0000000000..9cc98a2387
Binary files /dev/null and b/img-microsoft-256/1f19a.png differ
diff --git a/img-microsoft-256/1f201.png b/img-microsoft-256/1f201.png
new file mode 100644
index 0000000000..4d810aa7e5
Binary files /dev/null and b/img-microsoft-256/1f201.png differ
diff --git a/img-microsoft-256/1f202-fe0f.png b/img-microsoft-256/1f202-fe0f.png
new file mode 100644
index 0000000000..ea75ab2979
Binary files /dev/null and b/img-microsoft-256/1f202-fe0f.png differ
diff --git a/img-microsoft-256/1f21a.png b/img-microsoft-256/1f21a.png
new file mode 100644
index 0000000000..7e607889a3
Binary files /dev/null and b/img-microsoft-256/1f21a.png differ
diff --git a/img-microsoft-256/1f22f.png b/img-microsoft-256/1f22f.png
new file mode 100644
index 0000000000..8cbef8ea04
Binary files /dev/null and b/img-microsoft-256/1f22f.png differ
diff --git a/img-microsoft-256/1f232.png b/img-microsoft-256/1f232.png
new file mode 100644
index 0000000000..ea2f01f420
Binary files /dev/null and b/img-microsoft-256/1f232.png differ
diff --git a/img-microsoft-256/1f233.png b/img-microsoft-256/1f233.png
new file mode 100644
index 0000000000..14b1777618
Binary files /dev/null and b/img-microsoft-256/1f233.png differ
diff --git a/img-microsoft-256/1f234.png b/img-microsoft-256/1f234.png
new file mode 100644
index 0000000000..563938a710
Binary files /dev/null and b/img-microsoft-256/1f234.png differ
diff --git a/img-microsoft-256/1f235.png b/img-microsoft-256/1f235.png
new file mode 100644
index 0000000000..313e5cb7e8
Binary files /dev/null and b/img-microsoft-256/1f235.png differ
diff --git a/img-microsoft-256/1f236.png b/img-microsoft-256/1f236.png
new file mode 100644
index 0000000000..180be0d671
Binary files /dev/null and b/img-microsoft-256/1f236.png differ
diff --git a/img-microsoft-256/1f237-fe0f.png b/img-microsoft-256/1f237-fe0f.png
new file mode 100644
index 0000000000..f490b33a36
Binary files /dev/null and b/img-microsoft-256/1f237-fe0f.png differ
diff --git a/img-microsoft-256/1f238.png b/img-microsoft-256/1f238.png
new file mode 100644
index 0000000000..7328820d4f
Binary files /dev/null and b/img-microsoft-256/1f238.png differ
diff --git a/img-microsoft-256/1f239.png b/img-microsoft-256/1f239.png
new file mode 100644
index 0000000000..4f3cc3dd06
Binary files /dev/null and b/img-microsoft-256/1f239.png differ
diff --git a/img-microsoft-256/1f23a.png b/img-microsoft-256/1f23a.png
new file mode 100644
index 0000000000..044f74aa9c
Binary files /dev/null and b/img-microsoft-256/1f23a.png differ
diff --git a/img-microsoft-256/1f250.png b/img-microsoft-256/1f250.png
new file mode 100644
index 0000000000..d80540528f
Binary files /dev/null and b/img-microsoft-256/1f250.png differ
diff --git a/img-microsoft-256/1f251.png b/img-microsoft-256/1f251.png
new file mode 100644
index 0000000000..a6f3c29023
Binary files /dev/null and b/img-microsoft-256/1f251.png differ
diff --git a/img-microsoft-256/1f300.png b/img-microsoft-256/1f300.png
new file mode 100644
index 0000000000..137bc57b19
Binary files /dev/null and b/img-microsoft-256/1f300.png differ
diff --git a/img-microsoft-256/1f301.png b/img-microsoft-256/1f301.png
new file mode 100644
index 0000000000..a55f46bccd
Binary files /dev/null and b/img-microsoft-256/1f301.png differ
diff --git a/img-microsoft-256/1f302.png b/img-microsoft-256/1f302.png
new file mode 100644
index 0000000000..fadcfdfeb3
Binary files /dev/null and b/img-microsoft-256/1f302.png differ
diff --git a/img-microsoft-256/1f303.png b/img-microsoft-256/1f303.png
new file mode 100644
index 0000000000..8cbe3bb93a
Binary files /dev/null and b/img-microsoft-256/1f303.png differ
diff --git a/img-microsoft-256/1f304.png b/img-microsoft-256/1f304.png
new file mode 100644
index 0000000000..d419340f55
Binary files /dev/null and b/img-microsoft-256/1f304.png differ
diff --git a/img-microsoft-256/1f305.png b/img-microsoft-256/1f305.png
new file mode 100644
index 0000000000..3c3a46cf93
Binary files /dev/null and b/img-microsoft-256/1f305.png differ
diff --git a/img-microsoft-256/1f306.png b/img-microsoft-256/1f306.png
new file mode 100644
index 0000000000..afb97a3884
Binary files /dev/null and b/img-microsoft-256/1f306.png differ
diff --git a/img-microsoft-256/1f307.png b/img-microsoft-256/1f307.png
new file mode 100644
index 0000000000..e67963d5b5
Binary files /dev/null and b/img-microsoft-256/1f307.png differ
diff --git a/img-microsoft-256/1f308.png b/img-microsoft-256/1f308.png
new file mode 100644
index 0000000000..6b00b3bc53
Binary files /dev/null and b/img-microsoft-256/1f308.png differ
diff --git a/img-microsoft-256/1f309.png b/img-microsoft-256/1f309.png
new file mode 100644
index 0000000000..ae42aa5506
Binary files /dev/null and b/img-microsoft-256/1f309.png differ
diff --git a/img-microsoft-256/1f30a.png b/img-microsoft-256/1f30a.png
new file mode 100644
index 0000000000..13199d8a24
Binary files /dev/null and b/img-microsoft-256/1f30a.png differ
diff --git a/img-microsoft-256/1f30b.png b/img-microsoft-256/1f30b.png
new file mode 100644
index 0000000000..6a09b1dc0c
Binary files /dev/null and b/img-microsoft-256/1f30b.png differ
diff --git a/img-microsoft-256/1f30c.png b/img-microsoft-256/1f30c.png
new file mode 100644
index 0000000000..67798698db
Binary files /dev/null and b/img-microsoft-256/1f30c.png differ
diff --git a/img-microsoft-256/1f30d.png b/img-microsoft-256/1f30d.png
new file mode 100644
index 0000000000..0cfad5bc7a
Binary files /dev/null and b/img-microsoft-256/1f30d.png differ
diff --git a/img-microsoft-256/1f30e.png b/img-microsoft-256/1f30e.png
new file mode 100644
index 0000000000..453d1081de
Binary files /dev/null and b/img-microsoft-256/1f30e.png differ
diff --git a/img-microsoft-256/1f30f.png b/img-microsoft-256/1f30f.png
new file mode 100644
index 0000000000..8fbf1eaff0
Binary files /dev/null and b/img-microsoft-256/1f30f.png differ
diff --git a/img-microsoft-256/1f310.png b/img-microsoft-256/1f310.png
new file mode 100644
index 0000000000..1d084be75e
Binary files /dev/null and b/img-microsoft-256/1f310.png differ
diff --git a/img-microsoft-256/1f311.png b/img-microsoft-256/1f311.png
new file mode 100644
index 0000000000..0fac297d34
Binary files /dev/null and b/img-microsoft-256/1f311.png differ
diff --git a/img-microsoft-256/1f312.png b/img-microsoft-256/1f312.png
new file mode 100644
index 0000000000..212b5ffa95
Binary files /dev/null and b/img-microsoft-256/1f312.png differ
diff --git a/img-microsoft-256/1f313.png b/img-microsoft-256/1f313.png
new file mode 100644
index 0000000000..08c040f548
Binary files /dev/null and b/img-microsoft-256/1f313.png differ
diff --git a/img-microsoft-256/1f314.png b/img-microsoft-256/1f314.png
new file mode 100644
index 0000000000..1fe30e7d77
Binary files /dev/null and b/img-microsoft-256/1f314.png differ
diff --git a/img-microsoft-256/1f315.png b/img-microsoft-256/1f315.png
new file mode 100644
index 0000000000..254f207e22
Binary files /dev/null and b/img-microsoft-256/1f315.png differ
diff --git a/img-microsoft-256/1f316.png b/img-microsoft-256/1f316.png
new file mode 100644
index 0000000000..565dd51091
Binary files /dev/null and b/img-microsoft-256/1f316.png differ
diff --git a/img-microsoft-256/1f317.png b/img-microsoft-256/1f317.png
new file mode 100644
index 0000000000..16b4d278c2
Binary files /dev/null and b/img-microsoft-256/1f317.png differ
diff --git a/img-microsoft-256/1f318.png b/img-microsoft-256/1f318.png
new file mode 100644
index 0000000000..9a5a6771e8
Binary files /dev/null and b/img-microsoft-256/1f318.png differ
diff --git a/img-microsoft-256/1f319.png b/img-microsoft-256/1f319.png
new file mode 100644
index 0000000000..83ba8ab354
Binary files /dev/null and b/img-microsoft-256/1f319.png differ
diff --git a/img-microsoft-256/1f31a.png b/img-microsoft-256/1f31a.png
new file mode 100644
index 0000000000..cab69ed83f
Binary files /dev/null and b/img-microsoft-256/1f31a.png differ
diff --git a/img-microsoft-256/1f31b.png b/img-microsoft-256/1f31b.png
new file mode 100644
index 0000000000..a4dde23cf0
Binary files /dev/null and b/img-microsoft-256/1f31b.png differ
diff --git a/img-microsoft-256/1f31c.png b/img-microsoft-256/1f31c.png
new file mode 100644
index 0000000000..dcc36db94e
Binary files /dev/null and b/img-microsoft-256/1f31c.png differ
diff --git a/img-microsoft-256/1f31d.png b/img-microsoft-256/1f31d.png
new file mode 100644
index 0000000000..bf5c2b1125
Binary files /dev/null and b/img-microsoft-256/1f31d.png differ
diff --git a/img-microsoft-256/1f31e.png b/img-microsoft-256/1f31e.png
new file mode 100644
index 0000000000..309ae82b8f
Binary files /dev/null and b/img-microsoft-256/1f31e.png differ
diff --git a/img-microsoft-256/1f31f.png b/img-microsoft-256/1f31f.png
new file mode 100644
index 0000000000..fee2547c3f
Binary files /dev/null and b/img-microsoft-256/1f31f.png differ
diff --git a/img-microsoft-256/1f320.png b/img-microsoft-256/1f320.png
new file mode 100644
index 0000000000..2ab0144e15
Binary files /dev/null and b/img-microsoft-256/1f320.png differ
diff --git a/img-microsoft-256/1f321-fe0f.png b/img-microsoft-256/1f321-fe0f.png
new file mode 100644
index 0000000000..e800204379
Binary files /dev/null and b/img-microsoft-256/1f321-fe0f.png differ
diff --git a/img-microsoft-256/1f324-fe0f.png b/img-microsoft-256/1f324-fe0f.png
new file mode 100644
index 0000000000..5d1c78944d
Binary files /dev/null and b/img-microsoft-256/1f324-fe0f.png differ
diff --git a/img-microsoft-256/1f325-fe0f.png b/img-microsoft-256/1f325-fe0f.png
new file mode 100644
index 0000000000..de0707fbc9
Binary files /dev/null and b/img-microsoft-256/1f325-fe0f.png differ
diff --git a/img-microsoft-256/1f326-fe0f.png b/img-microsoft-256/1f326-fe0f.png
new file mode 100644
index 0000000000..6f1fcc4141
Binary files /dev/null and b/img-microsoft-256/1f326-fe0f.png differ
diff --git a/img-microsoft-256/1f327-fe0f.png b/img-microsoft-256/1f327-fe0f.png
new file mode 100644
index 0000000000..e9e5392f41
Binary files /dev/null and b/img-microsoft-256/1f327-fe0f.png differ
diff --git a/img-microsoft-256/1f328-fe0f.png b/img-microsoft-256/1f328-fe0f.png
new file mode 100644
index 0000000000..df8d421ef0
Binary files /dev/null and b/img-microsoft-256/1f328-fe0f.png differ
diff --git a/img-microsoft-256/1f329-fe0f.png b/img-microsoft-256/1f329-fe0f.png
new file mode 100644
index 0000000000..93f4758d39
Binary files /dev/null and b/img-microsoft-256/1f329-fe0f.png differ
diff --git a/img-microsoft-256/1f32a-fe0f.png b/img-microsoft-256/1f32a-fe0f.png
new file mode 100644
index 0000000000..a924d09bb9
Binary files /dev/null and b/img-microsoft-256/1f32a-fe0f.png differ
diff --git a/img-microsoft-256/1f32b-fe0f.png b/img-microsoft-256/1f32b-fe0f.png
new file mode 100644
index 0000000000..baf909a9fa
Binary files /dev/null and b/img-microsoft-256/1f32b-fe0f.png differ
diff --git a/img-microsoft-256/1f32c-fe0f.png b/img-microsoft-256/1f32c-fe0f.png
new file mode 100644
index 0000000000..ff7c1cf075
Binary files /dev/null and b/img-microsoft-256/1f32c-fe0f.png differ
diff --git a/img-microsoft-256/1f32d.png b/img-microsoft-256/1f32d.png
new file mode 100644
index 0000000000..2742f56ade
Binary files /dev/null and b/img-microsoft-256/1f32d.png differ
diff --git a/img-microsoft-256/1f32e.png b/img-microsoft-256/1f32e.png
new file mode 100644
index 0000000000..e591a511e3
Binary files /dev/null and b/img-microsoft-256/1f32e.png differ
diff --git a/img-microsoft-256/1f32f.png b/img-microsoft-256/1f32f.png
new file mode 100644
index 0000000000..60f460ad76
Binary files /dev/null and b/img-microsoft-256/1f32f.png differ
diff --git a/img-microsoft-256/1f330.png b/img-microsoft-256/1f330.png
new file mode 100644
index 0000000000..89eb360b6c
Binary files /dev/null and b/img-microsoft-256/1f330.png differ
diff --git a/img-microsoft-256/1f331.png b/img-microsoft-256/1f331.png
new file mode 100644
index 0000000000..5b38cf94f0
Binary files /dev/null and b/img-microsoft-256/1f331.png differ
diff --git a/img-microsoft-256/1f332.png b/img-microsoft-256/1f332.png
new file mode 100644
index 0000000000..43de7f08df
Binary files /dev/null and b/img-microsoft-256/1f332.png differ
diff --git a/img-microsoft-256/1f333.png b/img-microsoft-256/1f333.png
new file mode 100644
index 0000000000..018946f4cc
Binary files /dev/null and b/img-microsoft-256/1f333.png differ
diff --git a/img-microsoft-256/1f334.png b/img-microsoft-256/1f334.png
new file mode 100644
index 0000000000..5a5cf0a467
Binary files /dev/null and b/img-microsoft-256/1f334.png differ
diff --git a/img-microsoft-256/1f335.png b/img-microsoft-256/1f335.png
new file mode 100644
index 0000000000..6408f1bb28
Binary files /dev/null and b/img-microsoft-256/1f335.png differ
diff --git a/img-microsoft-256/1f336-fe0f.png b/img-microsoft-256/1f336-fe0f.png
new file mode 100644
index 0000000000..65e3165048
Binary files /dev/null and b/img-microsoft-256/1f336-fe0f.png differ
diff --git a/img-microsoft-256/1f337.png b/img-microsoft-256/1f337.png
new file mode 100644
index 0000000000..1a78cee04d
Binary files /dev/null and b/img-microsoft-256/1f337.png differ
diff --git a/img-microsoft-256/1f338.png b/img-microsoft-256/1f338.png
new file mode 100644
index 0000000000..b1881b2551
Binary files /dev/null and b/img-microsoft-256/1f338.png differ
diff --git a/img-microsoft-256/1f339.png b/img-microsoft-256/1f339.png
new file mode 100644
index 0000000000..9d8194df8a
Binary files /dev/null and b/img-microsoft-256/1f339.png differ
diff --git a/img-microsoft-256/1f33a.png b/img-microsoft-256/1f33a.png
new file mode 100644
index 0000000000..da532af545
Binary files /dev/null and b/img-microsoft-256/1f33a.png differ
diff --git a/img-microsoft-256/1f33b.png b/img-microsoft-256/1f33b.png
new file mode 100644
index 0000000000..9316ed08d4
Binary files /dev/null and b/img-microsoft-256/1f33b.png differ
diff --git a/img-microsoft-256/1f33c.png b/img-microsoft-256/1f33c.png
new file mode 100644
index 0000000000..9320c17e60
Binary files /dev/null and b/img-microsoft-256/1f33c.png differ
diff --git a/img-microsoft-256/1f33d.png b/img-microsoft-256/1f33d.png
new file mode 100644
index 0000000000..25bf51f34a
Binary files /dev/null and b/img-microsoft-256/1f33d.png differ
diff --git a/img-microsoft-256/1f33e.png b/img-microsoft-256/1f33e.png
new file mode 100644
index 0000000000..b271f4863e
Binary files /dev/null and b/img-microsoft-256/1f33e.png differ
diff --git a/img-microsoft-256/1f33f.png b/img-microsoft-256/1f33f.png
new file mode 100644
index 0000000000..2b4fd3a429
Binary files /dev/null and b/img-microsoft-256/1f33f.png differ
diff --git a/img-microsoft-256/1f340.png b/img-microsoft-256/1f340.png
new file mode 100644
index 0000000000..e6b5984582
Binary files /dev/null and b/img-microsoft-256/1f340.png differ
diff --git a/img-microsoft-256/1f341.png b/img-microsoft-256/1f341.png
new file mode 100644
index 0000000000..afab34ecd1
Binary files /dev/null and b/img-microsoft-256/1f341.png differ
diff --git a/img-microsoft-256/1f342.png b/img-microsoft-256/1f342.png
new file mode 100644
index 0000000000..96f1227b24
Binary files /dev/null and b/img-microsoft-256/1f342.png differ
diff --git a/img-microsoft-256/1f343.png b/img-microsoft-256/1f343.png
new file mode 100644
index 0000000000..b4ee610635
Binary files /dev/null and b/img-microsoft-256/1f343.png differ
diff --git a/img-microsoft-256/1f344.png b/img-microsoft-256/1f344.png
new file mode 100644
index 0000000000..f891d651c8
Binary files /dev/null and b/img-microsoft-256/1f344.png differ
diff --git a/img-microsoft-256/1f345.png b/img-microsoft-256/1f345.png
new file mode 100644
index 0000000000..a1a12daab4
Binary files /dev/null and b/img-microsoft-256/1f345.png differ
diff --git a/img-microsoft-256/1f346.png b/img-microsoft-256/1f346.png
new file mode 100644
index 0000000000..c9266edbdb
Binary files /dev/null and b/img-microsoft-256/1f346.png differ
diff --git a/img-microsoft-256/1f347.png b/img-microsoft-256/1f347.png
new file mode 100644
index 0000000000..3cda1551fb
Binary files /dev/null and b/img-microsoft-256/1f347.png differ
diff --git a/img-microsoft-256/1f348.png b/img-microsoft-256/1f348.png
new file mode 100644
index 0000000000..b67800e304
Binary files /dev/null and b/img-microsoft-256/1f348.png differ
diff --git a/img-microsoft-256/1f349.png b/img-microsoft-256/1f349.png
new file mode 100644
index 0000000000..73142e41d0
Binary files /dev/null and b/img-microsoft-256/1f349.png differ
diff --git a/img-microsoft-256/1f34a.png b/img-microsoft-256/1f34a.png
new file mode 100644
index 0000000000..b3588b1086
Binary files /dev/null and b/img-microsoft-256/1f34a.png differ
diff --git a/img-microsoft-256/1f34b.png b/img-microsoft-256/1f34b.png
new file mode 100644
index 0000000000..3e83474040
Binary files /dev/null and b/img-microsoft-256/1f34b.png differ
diff --git a/img-microsoft-256/1f34c.png b/img-microsoft-256/1f34c.png
new file mode 100644
index 0000000000..34586c3c27
Binary files /dev/null and b/img-microsoft-256/1f34c.png differ
diff --git a/img-microsoft-256/1f34d.png b/img-microsoft-256/1f34d.png
new file mode 100644
index 0000000000..a5ebe7dc62
Binary files /dev/null and b/img-microsoft-256/1f34d.png differ
diff --git a/img-microsoft-256/1f34e.png b/img-microsoft-256/1f34e.png
new file mode 100644
index 0000000000..ae9b06c718
Binary files /dev/null and b/img-microsoft-256/1f34e.png differ
diff --git a/img-microsoft-256/1f34f.png b/img-microsoft-256/1f34f.png
new file mode 100644
index 0000000000..1c1be2f2bf
Binary files /dev/null and b/img-microsoft-256/1f34f.png differ
diff --git a/img-microsoft-256/1f350.png b/img-microsoft-256/1f350.png
new file mode 100644
index 0000000000..724ccb4a03
Binary files /dev/null and b/img-microsoft-256/1f350.png differ
diff --git a/img-microsoft-256/1f351.png b/img-microsoft-256/1f351.png
new file mode 100644
index 0000000000..0178147c1a
Binary files /dev/null and b/img-microsoft-256/1f351.png differ
diff --git a/img-microsoft-256/1f352.png b/img-microsoft-256/1f352.png
new file mode 100644
index 0000000000..c0c167f738
Binary files /dev/null and b/img-microsoft-256/1f352.png differ
diff --git a/img-microsoft-256/1f353.png b/img-microsoft-256/1f353.png
new file mode 100644
index 0000000000..e735269d0b
Binary files /dev/null and b/img-microsoft-256/1f353.png differ
diff --git a/img-microsoft-256/1f354.png b/img-microsoft-256/1f354.png
new file mode 100644
index 0000000000..2682f49ffa
Binary files /dev/null and b/img-microsoft-256/1f354.png differ
diff --git a/img-microsoft-256/1f355.png b/img-microsoft-256/1f355.png
new file mode 100644
index 0000000000..464801457d
Binary files /dev/null and b/img-microsoft-256/1f355.png differ
diff --git a/img-microsoft-256/1f356.png b/img-microsoft-256/1f356.png
new file mode 100644
index 0000000000..07c50a875c
Binary files /dev/null and b/img-microsoft-256/1f356.png differ
diff --git a/img-microsoft-256/1f357.png b/img-microsoft-256/1f357.png
new file mode 100644
index 0000000000..84ef0719c2
Binary files /dev/null and b/img-microsoft-256/1f357.png differ
diff --git a/img-microsoft-256/1f358.png b/img-microsoft-256/1f358.png
new file mode 100644
index 0000000000..7d463b91eb
Binary files /dev/null and b/img-microsoft-256/1f358.png differ
diff --git a/img-microsoft-256/1f359.png b/img-microsoft-256/1f359.png
new file mode 100644
index 0000000000..f111f6a049
Binary files /dev/null and b/img-microsoft-256/1f359.png differ
diff --git a/img-microsoft-256/1f35a.png b/img-microsoft-256/1f35a.png
new file mode 100644
index 0000000000..2ada7526c0
Binary files /dev/null and b/img-microsoft-256/1f35a.png differ
diff --git a/img-microsoft-256/1f35b.png b/img-microsoft-256/1f35b.png
new file mode 100644
index 0000000000..d55e866782
Binary files /dev/null and b/img-microsoft-256/1f35b.png differ
diff --git a/img-microsoft-256/1f35c.png b/img-microsoft-256/1f35c.png
new file mode 100644
index 0000000000..4240eba584
Binary files /dev/null and b/img-microsoft-256/1f35c.png differ
diff --git a/img-microsoft-256/1f35d.png b/img-microsoft-256/1f35d.png
new file mode 100644
index 0000000000..fc2d78ae97
Binary files /dev/null and b/img-microsoft-256/1f35d.png differ
diff --git a/img-microsoft-256/1f35e.png b/img-microsoft-256/1f35e.png
new file mode 100644
index 0000000000..621ffb4f6b
Binary files /dev/null and b/img-microsoft-256/1f35e.png differ
diff --git a/img-microsoft-256/1f35f.png b/img-microsoft-256/1f35f.png
new file mode 100644
index 0000000000..b0a1f3893d
Binary files /dev/null and b/img-microsoft-256/1f35f.png differ
diff --git a/img-microsoft-256/1f360.png b/img-microsoft-256/1f360.png
new file mode 100644
index 0000000000..12b0b56db6
Binary files /dev/null and b/img-microsoft-256/1f360.png differ
diff --git a/img-microsoft-256/1f361.png b/img-microsoft-256/1f361.png
new file mode 100644
index 0000000000..fac1746f20
Binary files /dev/null and b/img-microsoft-256/1f361.png differ
diff --git a/img-microsoft-256/1f362.png b/img-microsoft-256/1f362.png
new file mode 100644
index 0000000000..c377f0a0ed
Binary files /dev/null and b/img-microsoft-256/1f362.png differ
diff --git a/img-microsoft-256/1f363.png b/img-microsoft-256/1f363.png
new file mode 100644
index 0000000000..e78594a7a5
Binary files /dev/null and b/img-microsoft-256/1f363.png differ
diff --git a/img-microsoft-256/1f364.png b/img-microsoft-256/1f364.png
new file mode 100644
index 0000000000..a99cf71b48
Binary files /dev/null and b/img-microsoft-256/1f364.png differ
diff --git a/img-microsoft-256/1f365.png b/img-microsoft-256/1f365.png
new file mode 100644
index 0000000000..e114944d9b
Binary files /dev/null and b/img-microsoft-256/1f365.png differ
diff --git a/img-microsoft-256/1f366.png b/img-microsoft-256/1f366.png
new file mode 100644
index 0000000000..1d39055ef6
Binary files /dev/null and b/img-microsoft-256/1f366.png differ
diff --git a/img-microsoft-256/1f367.png b/img-microsoft-256/1f367.png
new file mode 100644
index 0000000000..bcdc123418
Binary files /dev/null and b/img-microsoft-256/1f367.png differ
diff --git a/img-microsoft-256/1f368.png b/img-microsoft-256/1f368.png
new file mode 100644
index 0000000000..377c22a3bf
Binary files /dev/null and b/img-microsoft-256/1f368.png differ
diff --git a/img-microsoft-256/1f369.png b/img-microsoft-256/1f369.png
new file mode 100644
index 0000000000..a7e7ea5085
Binary files /dev/null and b/img-microsoft-256/1f369.png differ
diff --git a/img-microsoft-256/1f36a.png b/img-microsoft-256/1f36a.png
new file mode 100644
index 0000000000..4a7f040613
Binary files /dev/null and b/img-microsoft-256/1f36a.png differ
diff --git a/img-microsoft-256/1f36b.png b/img-microsoft-256/1f36b.png
new file mode 100644
index 0000000000..d07450b0b7
Binary files /dev/null and b/img-microsoft-256/1f36b.png differ
diff --git a/img-microsoft-256/1f36c.png b/img-microsoft-256/1f36c.png
new file mode 100644
index 0000000000..f282c04b0c
Binary files /dev/null and b/img-microsoft-256/1f36c.png differ
diff --git a/img-microsoft-256/1f36d.png b/img-microsoft-256/1f36d.png
new file mode 100644
index 0000000000..10159933f6
Binary files /dev/null and b/img-microsoft-256/1f36d.png differ
diff --git a/img-microsoft-256/1f36e.png b/img-microsoft-256/1f36e.png
new file mode 100644
index 0000000000..7869edf56b
Binary files /dev/null and b/img-microsoft-256/1f36e.png differ
diff --git a/img-microsoft-256/1f36f.png b/img-microsoft-256/1f36f.png
new file mode 100644
index 0000000000..69853d7aba
Binary files /dev/null and b/img-microsoft-256/1f36f.png differ
diff --git a/img-microsoft-256/1f370.png b/img-microsoft-256/1f370.png
new file mode 100644
index 0000000000..191ad7cd15
Binary files /dev/null and b/img-microsoft-256/1f370.png differ
diff --git a/img-microsoft-256/1f371.png b/img-microsoft-256/1f371.png
new file mode 100644
index 0000000000..10b76a9106
Binary files /dev/null and b/img-microsoft-256/1f371.png differ
diff --git a/img-microsoft-256/1f372.png b/img-microsoft-256/1f372.png
new file mode 100644
index 0000000000..baa6af734d
Binary files /dev/null and b/img-microsoft-256/1f372.png differ
diff --git a/img-microsoft-256/1f373.png b/img-microsoft-256/1f373.png
new file mode 100644
index 0000000000..c74bb03619
Binary files /dev/null and b/img-microsoft-256/1f373.png differ
diff --git a/img-microsoft-256/1f374.png b/img-microsoft-256/1f374.png
new file mode 100644
index 0000000000..38d633b5e5
Binary files /dev/null and b/img-microsoft-256/1f374.png differ
diff --git a/img-microsoft-256/1f375.png b/img-microsoft-256/1f375.png
new file mode 100644
index 0000000000..2823e509f1
Binary files /dev/null and b/img-microsoft-256/1f375.png differ
diff --git a/img-microsoft-256/1f376.png b/img-microsoft-256/1f376.png
new file mode 100644
index 0000000000..0c8ba2c3c6
Binary files /dev/null and b/img-microsoft-256/1f376.png differ
diff --git a/img-microsoft-256/1f377.png b/img-microsoft-256/1f377.png
new file mode 100644
index 0000000000..31db39483e
Binary files /dev/null and b/img-microsoft-256/1f377.png differ
diff --git a/img-microsoft-256/1f378.png b/img-microsoft-256/1f378.png
new file mode 100644
index 0000000000..7fe878a50a
Binary files /dev/null and b/img-microsoft-256/1f378.png differ
diff --git a/img-microsoft-256/1f379.png b/img-microsoft-256/1f379.png
new file mode 100644
index 0000000000..95798ed315
Binary files /dev/null and b/img-microsoft-256/1f379.png differ
diff --git a/img-microsoft-256/1f37a.png b/img-microsoft-256/1f37a.png
new file mode 100644
index 0000000000..132f6fe2bd
Binary files /dev/null and b/img-microsoft-256/1f37a.png differ
diff --git a/img-microsoft-256/1f37b.png b/img-microsoft-256/1f37b.png
new file mode 100644
index 0000000000..cdc3e75e80
Binary files /dev/null and b/img-microsoft-256/1f37b.png differ
diff --git a/img-microsoft-256/1f37c.png b/img-microsoft-256/1f37c.png
new file mode 100644
index 0000000000..bc82a6c8f9
Binary files /dev/null and b/img-microsoft-256/1f37c.png differ
diff --git a/img-microsoft-256/1f37d-fe0f.png b/img-microsoft-256/1f37d-fe0f.png
new file mode 100644
index 0000000000..c854308ada
Binary files /dev/null and b/img-microsoft-256/1f37d-fe0f.png differ
diff --git a/img-microsoft-256/1f37e.png b/img-microsoft-256/1f37e.png
new file mode 100644
index 0000000000..10eaa8d46a
Binary files /dev/null and b/img-microsoft-256/1f37e.png differ
diff --git a/img-microsoft-256/1f37f.png b/img-microsoft-256/1f37f.png
new file mode 100644
index 0000000000..96c5a2c262
Binary files /dev/null and b/img-microsoft-256/1f37f.png differ
diff --git a/img-microsoft-256/1f380.png b/img-microsoft-256/1f380.png
new file mode 100644
index 0000000000..d4b637eba7
Binary files /dev/null and b/img-microsoft-256/1f380.png differ
diff --git a/img-microsoft-256/1f381.png b/img-microsoft-256/1f381.png
new file mode 100644
index 0000000000..50c984c3c9
Binary files /dev/null and b/img-microsoft-256/1f381.png differ
diff --git a/img-microsoft-256/1f382.png b/img-microsoft-256/1f382.png
new file mode 100644
index 0000000000..ce6cb5a6c4
Binary files /dev/null and b/img-microsoft-256/1f382.png differ
diff --git a/img-microsoft-256/1f383.png b/img-microsoft-256/1f383.png
new file mode 100644
index 0000000000..5595ddbd41
Binary files /dev/null and b/img-microsoft-256/1f383.png differ
diff --git a/img-microsoft-256/1f384.png b/img-microsoft-256/1f384.png
new file mode 100644
index 0000000000..206aa16d1c
Binary files /dev/null and b/img-microsoft-256/1f384.png differ
diff --git a/img-microsoft-256/1f385-1f3fb.png b/img-microsoft-256/1f385-1f3fb.png
new file mode 100644
index 0000000000..f90cf56074
Binary files /dev/null and b/img-microsoft-256/1f385-1f3fb.png differ
diff --git a/img-microsoft-256/1f385-1f3fc.png b/img-microsoft-256/1f385-1f3fc.png
new file mode 100644
index 0000000000..7235ef13d5
Binary files /dev/null and b/img-microsoft-256/1f385-1f3fc.png differ
diff --git a/img-microsoft-256/1f385-1f3fd.png b/img-microsoft-256/1f385-1f3fd.png
new file mode 100644
index 0000000000..36f250d7e4
Binary files /dev/null and b/img-microsoft-256/1f385-1f3fd.png differ
diff --git a/img-microsoft-256/1f385-1f3fe.png b/img-microsoft-256/1f385-1f3fe.png
new file mode 100644
index 0000000000..789eb4f2e8
Binary files /dev/null and b/img-microsoft-256/1f385-1f3fe.png differ
diff --git a/img-microsoft-256/1f385-1f3ff.png b/img-microsoft-256/1f385-1f3ff.png
new file mode 100644
index 0000000000..4f2d8a2c85
Binary files /dev/null and b/img-microsoft-256/1f385-1f3ff.png differ
diff --git a/img-microsoft-256/1f385.png b/img-microsoft-256/1f385.png
new file mode 100644
index 0000000000..aef2b76a87
Binary files /dev/null and b/img-microsoft-256/1f385.png differ
diff --git a/img-microsoft-256/1f386.png b/img-microsoft-256/1f386.png
new file mode 100644
index 0000000000..5a29b1f255
Binary files /dev/null and b/img-microsoft-256/1f386.png differ
diff --git a/img-microsoft-256/1f387.png b/img-microsoft-256/1f387.png
new file mode 100644
index 0000000000..1ce3c6d0c7
Binary files /dev/null and b/img-microsoft-256/1f387.png differ
diff --git a/img-microsoft-256/1f388.png b/img-microsoft-256/1f388.png
new file mode 100644
index 0000000000..b625234104
Binary files /dev/null and b/img-microsoft-256/1f388.png differ
diff --git a/img-microsoft-256/1f389.png b/img-microsoft-256/1f389.png
new file mode 100644
index 0000000000..4ec55237a3
Binary files /dev/null and b/img-microsoft-256/1f389.png differ
diff --git a/img-microsoft-256/1f38a.png b/img-microsoft-256/1f38a.png
new file mode 100644
index 0000000000..1c041c32dc
Binary files /dev/null and b/img-microsoft-256/1f38a.png differ
diff --git a/img-microsoft-256/1f38b.png b/img-microsoft-256/1f38b.png
new file mode 100644
index 0000000000..c1aa20f356
Binary files /dev/null and b/img-microsoft-256/1f38b.png differ
diff --git a/img-microsoft-256/1f38c.png b/img-microsoft-256/1f38c.png
new file mode 100644
index 0000000000..b8ecfa5c5e
Binary files /dev/null and b/img-microsoft-256/1f38c.png differ
diff --git a/img-microsoft-256/1f38d.png b/img-microsoft-256/1f38d.png
new file mode 100644
index 0000000000..f8a2e44224
Binary files /dev/null and b/img-microsoft-256/1f38d.png differ
diff --git a/img-microsoft-256/1f38e.png b/img-microsoft-256/1f38e.png
new file mode 100644
index 0000000000..6c796a030f
Binary files /dev/null and b/img-microsoft-256/1f38e.png differ
diff --git a/img-microsoft-256/1f38f.png b/img-microsoft-256/1f38f.png
new file mode 100644
index 0000000000..dc0a9cf05f
Binary files /dev/null and b/img-microsoft-256/1f38f.png differ
diff --git a/img-microsoft-256/1f390.png b/img-microsoft-256/1f390.png
new file mode 100644
index 0000000000..97be5d0895
Binary files /dev/null and b/img-microsoft-256/1f390.png differ
diff --git a/img-microsoft-256/1f391.png b/img-microsoft-256/1f391.png
new file mode 100644
index 0000000000..561d0b54d8
Binary files /dev/null and b/img-microsoft-256/1f391.png differ
diff --git a/img-microsoft-256/1f392.png b/img-microsoft-256/1f392.png
new file mode 100644
index 0000000000..274afbb2a8
Binary files /dev/null and b/img-microsoft-256/1f392.png differ
diff --git a/img-microsoft-256/1f393.png b/img-microsoft-256/1f393.png
new file mode 100644
index 0000000000..e783243576
Binary files /dev/null and b/img-microsoft-256/1f393.png differ
diff --git a/img-microsoft-256/1f396-fe0f.png b/img-microsoft-256/1f396-fe0f.png
new file mode 100644
index 0000000000..f29d10421d
Binary files /dev/null and b/img-microsoft-256/1f396-fe0f.png differ
diff --git a/img-microsoft-256/1f397-fe0f.png b/img-microsoft-256/1f397-fe0f.png
new file mode 100644
index 0000000000..37170af853
Binary files /dev/null and b/img-microsoft-256/1f397-fe0f.png differ
diff --git a/img-microsoft-256/1f399-fe0f.png b/img-microsoft-256/1f399-fe0f.png
new file mode 100644
index 0000000000..b069413968
Binary files /dev/null and b/img-microsoft-256/1f399-fe0f.png differ
diff --git a/img-microsoft-256/1f39a-fe0f.png b/img-microsoft-256/1f39a-fe0f.png
new file mode 100644
index 0000000000..7444214d2d
Binary files /dev/null and b/img-microsoft-256/1f39a-fe0f.png differ
diff --git a/img-microsoft-256/1f39b-fe0f.png b/img-microsoft-256/1f39b-fe0f.png
new file mode 100644
index 0000000000..2aa84b148a
Binary files /dev/null and b/img-microsoft-256/1f39b-fe0f.png differ
diff --git a/img-microsoft-256/1f39e-fe0f.png b/img-microsoft-256/1f39e-fe0f.png
new file mode 100644
index 0000000000..3d9dca1103
Binary files /dev/null and b/img-microsoft-256/1f39e-fe0f.png differ
diff --git a/img-microsoft-256/1f39f-fe0f.png b/img-microsoft-256/1f39f-fe0f.png
new file mode 100644
index 0000000000..47cf1062b4
Binary files /dev/null and b/img-microsoft-256/1f39f-fe0f.png differ
diff --git a/img-microsoft-256/1f3a0.png b/img-microsoft-256/1f3a0.png
new file mode 100644
index 0000000000..111d13768d
Binary files /dev/null and b/img-microsoft-256/1f3a0.png differ
diff --git a/img-microsoft-256/1f3a1.png b/img-microsoft-256/1f3a1.png
new file mode 100644
index 0000000000..6f0197b93d
Binary files /dev/null and b/img-microsoft-256/1f3a1.png differ
diff --git a/img-microsoft-256/1f3a2.png b/img-microsoft-256/1f3a2.png
new file mode 100644
index 0000000000..d3b25f0399
Binary files /dev/null and b/img-microsoft-256/1f3a2.png differ
diff --git a/img-microsoft-256/1f3a3.png b/img-microsoft-256/1f3a3.png
new file mode 100644
index 0000000000..d09c99e7be
Binary files /dev/null and b/img-microsoft-256/1f3a3.png differ
diff --git a/img-microsoft-256/1f3a4.png b/img-microsoft-256/1f3a4.png
new file mode 100644
index 0000000000..9395020fb7
Binary files /dev/null and b/img-microsoft-256/1f3a4.png differ
diff --git a/img-microsoft-256/1f3a5.png b/img-microsoft-256/1f3a5.png
new file mode 100644
index 0000000000..00da909906
Binary files /dev/null and b/img-microsoft-256/1f3a5.png differ
diff --git a/img-microsoft-256/1f3a6.png b/img-microsoft-256/1f3a6.png
new file mode 100644
index 0000000000..0ec5d7b6c0
Binary files /dev/null and b/img-microsoft-256/1f3a6.png differ
diff --git a/img-microsoft-256/1f3a7.png b/img-microsoft-256/1f3a7.png
new file mode 100644
index 0000000000..da6533be6b
Binary files /dev/null and b/img-microsoft-256/1f3a7.png differ
diff --git a/img-microsoft-256/1f3a8.png b/img-microsoft-256/1f3a8.png
new file mode 100644
index 0000000000..e815352ece
Binary files /dev/null and b/img-microsoft-256/1f3a8.png differ
diff --git a/img-microsoft-256/1f3a9.png b/img-microsoft-256/1f3a9.png
new file mode 100644
index 0000000000..8cbf93d738
Binary files /dev/null and b/img-microsoft-256/1f3a9.png differ
diff --git a/img-microsoft-256/1f3aa.png b/img-microsoft-256/1f3aa.png
new file mode 100644
index 0000000000..fde5a575c7
Binary files /dev/null and b/img-microsoft-256/1f3aa.png differ
diff --git a/img-microsoft-256/1f3ab.png b/img-microsoft-256/1f3ab.png
new file mode 100644
index 0000000000..6e0aaa54e3
Binary files /dev/null and b/img-microsoft-256/1f3ab.png differ
diff --git a/img-microsoft-256/1f3ac.png b/img-microsoft-256/1f3ac.png
new file mode 100644
index 0000000000..94540bc9a9
Binary files /dev/null and b/img-microsoft-256/1f3ac.png differ
diff --git a/img-microsoft-256/1f3ad.png b/img-microsoft-256/1f3ad.png
new file mode 100644
index 0000000000..3425b55b1e
Binary files /dev/null and b/img-microsoft-256/1f3ad.png differ
diff --git a/img-microsoft-256/1f3af.png b/img-microsoft-256/1f3af.png
new file mode 100644
index 0000000000..d7260dd90e
Binary files /dev/null and b/img-microsoft-256/1f3af.png differ
diff --git a/img-microsoft-256/1f3b0.png b/img-microsoft-256/1f3b0.png
new file mode 100644
index 0000000000..0c5885b637
Binary files /dev/null and b/img-microsoft-256/1f3b0.png differ
diff --git a/img-microsoft-256/1f3b1.png b/img-microsoft-256/1f3b1.png
new file mode 100644
index 0000000000..7366b02869
Binary files /dev/null and b/img-microsoft-256/1f3b1.png differ
diff --git a/img-microsoft-256/1f3b2.png b/img-microsoft-256/1f3b2.png
new file mode 100644
index 0000000000..89f29a60f6
Binary files /dev/null and b/img-microsoft-256/1f3b2.png differ
diff --git a/img-microsoft-256/1f3b3.png b/img-microsoft-256/1f3b3.png
new file mode 100644
index 0000000000..1c51aa3727
Binary files /dev/null and b/img-microsoft-256/1f3b3.png differ
diff --git a/img-microsoft-256/1f3b4.png b/img-microsoft-256/1f3b4.png
new file mode 100644
index 0000000000..0aff1f7fc5
Binary files /dev/null and b/img-microsoft-256/1f3b4.png differ
diff --git a/img-microsoft-256/1f3b5.png b/img-microsoft-256/1f3b5.png
new file mode 100644
index 0000000000..0b520311f6
Binary files /dev/null and b/img-microsoft-256/1f3b5.png differ
diff --git a/img-microsoft-256/1f3b6.png b/img-microsoft-256/1f3b6.png
new file mode 100644
index 0000000000..fffac61b46
Binary files /dev/null and b/img-microsoft-256/1f3b6.png differ
diff --git a/img-microsoft-256/1f3b7.png b/img-microsoft-256/1f3b7.png
new file mode 100644
index 0000000000..79c438f732
Binary files /dev/null and b/img-microsoft-256/1f3b7.png differ
diff --git a/img-microsoft-256/1f3b8.png b/img-microsoft-256/1f3b8.png
new file mode 100644
index 0000000000..2f8ff1fe6a
Binary files /dev/null and b/img-microsoft-256/1f3b8.png differ
diff --git a/img-microsoft-256/1f3b9.png b/img-microsoft-256/1f3b9.png
new file mode 100644
index 0000000000..6c25704a6e
Binary files /dev/null and b/img-microsoft-256/1f3b9.png differ
diff --git a/img-microsoft-256/1f3ba.png b/img-microsoft-256/1f3ba.png
new file mode 100644
index 0000000000..d36a38fe9a
Binary files /dev/null and b/img-microsoft-256/1f3ba.png differ
diff --git a/img-microsoft-256/1f3bb.png b/img-microsoft-256/1f3bb.png
new file mode 100644
index 0000000000..6d10139611
Binary files /dev/null and b/img-microsoft-256/1f3bb.png differ
diff --git a/img-microsoft-256/1f3bc.png b/img-microsoft-256/1f3bc.png
new file mode 100644
index 0000000000..05032f9184
Binary files /dev/null and b/img-microsoft-256/1f3bc.png differ
diff --git a/img-microsoft-256/1f3bd.png b/img-microsoft-256/1f3bd.png
new file mode 100644
index 0000000000..009e70b076
Binary files /dev/null and b/img-microsoft-256/1f3bd.png differ
diff --git a/img-microsoft-256/1f3be.png b/img-microsoft-256/1f3be.png
new file mode 100644
index 0000000000..70bbe3a8b0
Binary files /dev/null and b/img-microsoft-256/1f3be.png differ
diff --git a/img-microsoft-256/1f3bf.png b/img-microsoft-256/1f3bf.png
new file mode 100644
index 0000000000..c6183014d9
Binary files /dev/null and b/img-microsoft-256/1f3bf.png differ
diff --git a/img-microsoft-256/1f3c0.png b/img-microsoft-256/1f3c0.png
new file mode 100644
index 0000000000..282fdc8a4c
Binary files /dev/null and b/img-microsoft-256/1f3c0.png differ
diff --git a/img-microsoft-256/1f3c1.png b/img-microsoft-256/1f3c1.png
new file mode 100644
index 0000000000..4191690714
Binary files /dev/null and b/img-microsoft-256/1f3c1.png differ
diff --git a/img-microsoft-256/1f3c2-1f3fb.png b/img-microsoft-256/1f3c2-1f3fb.png
new file mode 100644
index 0000000000..0dbda39538
Binary files /dev/null and b/img-microsoft-256/1f3c2-1f3fb.png differ
diff --git a/img-microsoft-256/1f3c2-1f3fc.png b/img-microsoft-256/1f3c2-1f3fc.png
new file mode 100644
index 0000000000..e49079953b
Binary files /dev/null and b/img-microsoft-256/1f3c2-1f3fc.png differ
diff --git a/img-microsoft-256/1f3c2-1f3fd.png b/img-microsoft-256/1f3c2-1f3fd.png
new file mode 100644
index 0000000000..ff312c0391
Binary files /dev/null and b/img-microsoft-256/1f3c2-1f3fd.png differ
diff --git a/img-microsoft-256/1f3c2-1f3fe.png b/img-microsoft-256/1f3c2-1f3fe.png
new file mode 100644
index 0000000000..74a3c8e88a
Binary files /dev/null and b/img-microsoft-256/1f3c2-1f3fe.png differ
diff --git a/img-microsoft-256/1f3c2-1f3ff.png b/img-microsoft-256/1f3c2-1f3ff.png
new file mode 100644
index 0000000000..654ec6699f
Binary files /dev/null and b/img-microsoft-256/1f3c2-1f3ff.png differ
diff --git a/img-microsoft-256/1f3c2.png b/img-microsoft-256/1f3c2.png
new file mode 100644
index 0000000000..e405fcfe60
Binary files /dev/null and b/img-microsoft-256/1f3c2.png differ
diff --git a/img-microsoft-256/1f3c3-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f3c3-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..9cfeb213c6
Binary files /dev/null and b/img-microsoft-256/1f3c3-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3c3-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f3c3-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a8f24ae4c9
Binary files /dev/null and b/img-microsoft-256/1f3c3-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3c3-1f3fb.png b/img-microsoft-256/1f3c3-1f3fb.png
new file mode 100644
index 0000000000..1b98eb6d83
Binary files /dev/null and b/img-microsoft-256/1f3c3-1f3fb.png differ
diff --git a/img-microsoft-256/1f3c3-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f3c3-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..2fcb86d414
Binary files /dev/null and b/img-microsoft-256/1f3c3-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3c3-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f3c3-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..ce8848d91b
Binary files /dev/null and b/img-microsoft-256/1f3c3-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3c3-1f3fc.png b/img-microsoft-256/1f3c3-1f3fc.png
new file mode 100644
index 0000000000..59dd8a1411
Binary files /dev/null and b/img-microsoft-256/1f3c3-1f3fc.png differ
diff --git a/img-microsoft-256/1f3c3-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f3c3-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..449880612a
Binary files /dev/null and b/img-microsoft-256/1f3c3-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3c3-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f3c3-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..ca731fa1eb
Binary files /dev/null and b/img-microsoft-256/1f3c3-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3c3-1f3fd.png b/img-microsoft-256/1f3c3-1f3fd.png
new file mode 100644
index 0000000000..72ceb84044
Binary files /dev/null and b/img-microsoft-256/1f3c3-1f3fd.png differ
diff --git a/img-microsoft-256/1f3c3-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f3c3-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..ef8973c577
Binary files /dev/null and b/img-microsoft-256/1f3c3-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3c3-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f3c3-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..9876109a5d
Binary files /dev/null and b/img-microsoft-256/1f3c3-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3c3-1f3fe.png b/img-microsoft-256/1f3c3-1f3fe.png
new file mode 100644
index 0000000000..ea281dbca1
Binary files /dev/null and b/img-microsoft-256/1f3c3-1f3fe.png differ
diff --git a/img-microsoft-256/1f3c3-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f3c3-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..f853979ab0
Binary files /dev/null and b/img-microsoft-256/1f3c3-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3c3-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f3c3-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..7e2f1e2a8d
Binary files /dev/null and b/img-microsoft-256/1f3c3-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3c3-1f3ff.png b/img-microsoft-256/1f3c3-1f3ff.png
new file mode 100644
index 0000000000..82a861d235
Binary files /dev/null and b/img-microsoft-256/1f3c3-1f3ff.png differ
diff --git a/img-microsoft-256/1f3c3-200d-2640-fe0f.png b/img-microsoft-256/1f3c3-200d-2640-fe0f.png
new file mode 100644
index 0000000000..bef642276c
Binary files /dev/null and b/img-microsoft-256/1f3c3-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3c3-200d-2642-fe0f.png b/img-microsoft-256/1f3c3-200d-2642-fe0f.png
new file mode 100644
index 0000000000..df61a2d761
Binary files /dev/null and b/img-microsoft-256/1f3c3-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3c3.png b/img-microsoft-256/1f3c3.png
new file mode 100644
index 0000000000..513208dfab
Binary files /dev/null and b/img-microsoft-256/1f3c3.png differ
diff --git a/img-microsoft-256/1f3c4-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f3c4-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..0e194304e2
Binary files /dev/null and b/img-microsoft-256/1f3c4-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3c4-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f3c4-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a82044fabe
Binary files /dev/null and b/img-microsoft-256/1f3c4-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3c4-1f3fb.png b/img-microsoft-256/1f3c4-1f3fb.png
new file mode 100644
index 0000000000..791ae93b19
Binary files /dev/null and b/img-microsoft-256/1f3c4-1f3fb.png differ
diff --git a/img-microsoft-256/1f3c4-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f3c4-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..4ed61fdcae
Binary files /dev/null and b/img-microsoft-256/1f3c4-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3c4-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f3c4-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..99456c9923
Binary files /dev/null and b/img-microsoft-256/1f3c4-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3c4-1f3fc.png b/img-microsoft-256/1f3c4-1f3fc.png
new file mode 100644
index 0000000000..a14685dcb7
Binary files /dev/null and b/img-microsoft-256/1f3c4-1f3fc.png differ
diff --git a/img-microsoft-256/1f3c4-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f3c4-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..db5ca42e16
Binary files /dev/null and b/img-microsoft-256/1f3c4-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3c4-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f3c4-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..46e42f7817
Binary files /dev/null and b/img-microsoft-256/1f3c4-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3c4-1f3fd.png b/img-microsoft-256/1f3c4-1f3fd.png
new file mode 100644
index 0000000000..c856dc2eb2
Binary files /dev/null and b/img-microsoft-256/1f3c4-1f3fd.png differ
diff --git a/img-microsoft-256/1f3c4-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f3c4-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..604005b1b8
Binary files /dev/null and b/img-microsoft-256/1f3c4-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3c4-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f3c4-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..23e13659fb
Binary files /dev/null and b/img-microsoft-256/1f3c4-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3c4-1f3fe.png b/img-microsoft-256/1f3c4-1f3fe.png
new file mode 100644
index 0000000000..afb73ad2b8
Binary files /dev/null and b/img-microsoft-256/1f3c4-1f3fe.png differ
diff --git a/img-microsoft-256/1f3c4-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f3c4-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..79527fb129
Binary files /dev/null and b/img-microsoft-256/1f3c4-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3c4-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f3c4-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..3ad6b62c35
Binary files /dev/null and b/img-microsoft-256/1f3c4-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3c4-1f3ff.png b/img-microsoft-256/1f3c4-1f3ff.png
new file mode 100644
index 0000000000..50b4e2bf7a
Binary files /dev/null and b/img-microsoft-256/1f3c4-1f3ff.png differ
diff --git a/img-microsoft-256/1f3c4-200d-2640-fe0f.png b/img-microsoft-256/1f3c4-200d-2640-fe0f.png
new file mode 100644
index 0000000000..1a0d598913
Binary files /dev/null and b/img-microsoft-256/1f3c4-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3c4-200d-2642-fe0f.png b/img-microsoft-256/1f3c4-200d-2642-fe0f.png
new file mode 100644
index 0000000000..b5d30e34f2
Binary files /dev/null and b/img-microsoft-256/1f3c4-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3c4.png b/img-microsoft-256/1f3c4.png
new file mode 100644
index 0000000000..068e861be6
Binary files /dev/null and b/img-microsoft-256/1f3c4.png differ
diff --git a/img-microsoft-256/1f3c5.png b/img-microsoft-256/1f3c5.png
new file mode 100644
index 0000000000..3003fe68f1
Binary files /dev/null and b/img-microsoft-256/1f3c5.png differ
diff --git a/img-microsoft-256/1f3c6.png b/img-microsoft-256/1f3c6.png
new file mode 100644
index 0000000000..a71fcf8219
Binary files /dev/null and b/img-microsoft-256/1f3c6.png differ
diff --git a/img-microsoft-256/1f3c7-1f3fb.png b/img-microsoft-256/1f3c7-1f3fb.png
new file mode 100644
index 0000000000..ecf2f4867b
Binary files /dev/null and b/img-microsoft-256/1f3c7-1f3fb.png differ
diff --git a/img-microsoft-256/1f3c7-1f3fc.png b/img-microsoft-256/1f3c7-1f3fc.png
new file mode 100644
index 0000000000..61dfb89c62
Binary files /dev/null and b/img-microsoft-256/1f3c7-1f3fc.png differ
diff --git a/img-microsoft-256/1f3c7-1f3fd.png b/img-microsoft-256/1f3c7-1f3fd.png
new file mode 100644
index 0000000000..db0f7ef412
Binary files /dev/null and b/img-microsoft-256/1f3c7-1f3fd.png differ
diff --git a/img-microsoft-256/1f3c7-1f3fe.png b/img-microsoft-256/1f3c7-1f3fe.png
new file mode 100644
index 0000000000..377ad0d71f
Binary files /dev/null and b/img-microsoft-256/1f3c7-1f3fe.png differ
diff --git a/img-microsoft-256/1f3c7-1f3ff.png b/img-microsoft-256/1f3c7-1f3ff.png
new file mode 100644
index 0000000000..e4641a9398
Binary files /dev/null and b/img-microsoft-256/1f3c7-1f3ff.png differ
diff --git a/img-microsoft-256/1f3c7.png b/img-microsoft-256/1f3c7.png
new file mode 100644
index 0000000000..0a214644a6
Binary files /dev/null and b/img-microsoft-256/1f3c7.png differ
diff --git a/img-microsoft-256/1f3c8.png b/img-microsoft-256/1f3c8.png
new file mode 100644
index 0000000000..5deac23bf5
Binary files /dev/null and b/img-microsoft-256/1f3c8.png differ
diff --git a/img-microsoft-256/1f3c9.png b/img-microsoft-256/1f3c9.png
new file mode 100644
index 0000000000..e25cc2b28a
Binary files /dev/null and b/img-microsoft-256/1f3c9.png differ
diff --git a/img-microsoft-256/1f3ca-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f3ca-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..e630df9e83
Binary files /dev/null and b/img-microsoft-256/1f3ca-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3ca-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f3ca-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..94adc17ae8
Binary files /dev/null and b/img-microsoft-256/1f3ca-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3ca-1f3fb.png b/img-microsoft-256/1f3ca-1f3fb.png
new file mode 100644
index 0000000000..75a2669fa4
Binary files /dev/null and b/img-microsoft-256/1f3ca-1f3fb.png differ
diff --git a/img-microsoft-256/1f3ca-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f3ca-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..183bff542a
Binary files /dev/null and b/img-microsoft-256/1f3ca-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3ca-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f3ca-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..57937ca2cc
Binary files /dev/null and b/img-microsoft-256/1f3ca-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3ca-1f3fc.png b/img-microsoft-256/1f3ca-1f3fc.png
new file mode 100644
index 0000000000..d0de757158
Binary files /dev/null and b/img-microsoft-256/1f3ca-1f3fc.png differ
diff --git a/img-microsoft-256/1f3ca-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f3ca-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..96b070bd59
Binary files /dev/null and b/img-microsoft-256/1f3ca-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3ca-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f3ca-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..21d91e0085
Binary files /dev/null and b/img-microsoft-256/1f3ca-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3ca-1f3fd.png b/img-microsoft-256/1f3ca-1f3fd.png
new file mode 100644
index 0000000000..e84b93aab8
Binary files /dev/null and b/img-microsoft-256/1f3ca-1f3fd.png differ
diff --git a/img-microsoft-256/1f3ca-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f3ca-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..601a7639b4
Binary files /dev/null and b/img-microsoft-256/1f3ca-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3ca-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f3ca-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..9890c7b5d7
Binary files /dev/null and b/img-microsoft-256/1f3ca-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3ca-1f3fe.png b/img-microsoft-256/1f3ca-1f3fe.png
new file mode 100644
index 0000000000..a66f8453fa
Binary files /dev/null and b/img-microsoft-256/1f3ca-1f3fe.png differ
diff --git a/img-microsoft-256/1f3ca-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f3ca-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..129a5addcb
Binary files /dev/null and b/img-microsoft-256/1f3ca-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3ca-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f3ca-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..1b8d8b61c3
Binary files /dev/null and b/img-microsoft-256/1f3ca-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3ca-1f3ff.png b/img-microsoft-256/1f3ca-1f3ff.png
new file mode 100644
index 0000000000..5f6dcfb566
Binary files /dev/null and b/img-microsoft-256/1f3ca-1f3ff.png differ
diff --git a/img-microsoft-256/1f3ca-200d-2640-fe0f.png b/img-microsoft-256/1f3ca-200d-2640-fe0f.png
new file mode 100644
index 0000000000..599ccaaa62
Binary files /dev/null and b/img-microsoft-256/1f3ca-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3ca-200d-2642-fe0f.png b/img-microsoft-256/1f3ca-200d-2642-fe0f.png
new file mode 100644
index 0000000000..7088e7267a
Binary files /dev/null and b/img-microsoft-256/1f3ca-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3ca.png b/img-microsoft-256/1f3ca.png
new file mode 100644
index 0000000000..53380c9bcd
Binary files /dev/null and b/img-microsoft-256/1f3ca.png differ
diff --git a/img-microsoft-256/1f3cb-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f3cb-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..45be4f4345
Binary files /dev/null and b/img-microsoft-256/1f3cb-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3cb-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f3cb-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a5eee1a98d
Binary files /dev/null and b/img-microsoft-256/1f3cb-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3cb-1f3fb.png b/img-microsoft-256/1f3cb-1f3fb.png
new file mode 100644
index 0000000000..b71cfcd056
Binary files /dev/null and b/img-microsoft-256/1f3cb-1f3fb.png differ
diff --git a/img-microsoft-256/1f3cb-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f3cb-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..2ec807dc83
Binary files /dev/null and b/img-microsoft-256/1f3cb-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3cb-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f3cb-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d6459b0529
Binary files /dev/null and b/img-microsoft-256/1f3cb-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3cb-1f3fc.png b/img-microsoft-256/1f3cb-1f3fc.png
new file mode 100644
index 0000000000..d7a9f812b3
Binary files /dev/null and b/img-microsoft-256/1f3cb-1f3fc.png differ
diff --git a/img-microsoft-256/1f3cb-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f3cb-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..cc18c10cf9
Binary files /dev/null and b/img-microsoft-256/1f3cb-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3cb-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f3cb-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d8ff0ab74a
Binary files /dev/null and b/img-microsoft-256/1f3cb-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3cb-1f3fd.png b/img-microsoft-256/1f3cb-1f3fd.png
new file mode 100644
index 0000000000..68ba01fbd1
Binary files /dev/null and b/img-microsoft-256/1f3cb-1f3fd.png differ
diff --git a/img-microsoft-256/1f3cb-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f3cb-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..01fc29339a
Binary files /dev/null and b/img-microsoft-256/1f3cb-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3cb-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f3cb-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..3794835544
Binary files /dev/null and b/img-microsoft-256/1f3cb-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3cb-1f3fe.png b/img-microsoft-256/1f3cb-1f3fe.png
new file mode 100644
index 0000000000..ee5ccdbfaa
Binary files /dev/null and b/img-microsoft-256/1f3cb-1f3fe.png differ
diff --git a/img-microsoft-256/1f3cb-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f3cb-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..321c7d1c6f
Binary files /dev/null and b/img-microsoft-256/1f3cb-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3cb-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f3cb-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..5de1b0baa1
Binary files /dev/null and b/img-microsoft-256/1f3cb-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3cb-1f3ff.png b/img-microsoft-256/1f3cb-1f3ff.png
new file mode 100644
index 0000000000..44d0cb137b
Binary files /dev/null and b/img-microsoft-256/1f3cb-1f3ff.png differ
diff --git a/img-microsoft-256/1f3cb-fe0f-200d-2640-fe0f.png b/img-microsoft-256/1f3cb-fe0f-200d-2640-fe0f.png
new file mode 100644
index 0000000000..2842862670
Binary files /dev/null and b/img-microsoft-256/1f3cb-fe0f-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3cb-fe0f-200d-2642-fe0f.png b/img-microsoft-256/1f3cb-fe0f-200d-2642-fe0f.png
new file mode 100644
index 0000000000..33069a5102
Binary files /dev/null and b/img-microsoft-256/1f3cb-fe0f-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3cb-fe0f.png b/img-microsoft-256/1f3cb-fe0f.png
new file mode 100644
index 0000000000..ffdcb9d024
Binary files /dev/null and b/img-microsoft-256/1f3cb-fe0f.png differ
diff --git a/img-microsoft-256/1f3cc-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f3cc-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..12c6737921
Binary files /dev/null and b/img-microsoft-256/1f3cc-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3cc-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f3cc-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..84360a93e9
Binary files /dev/null and b/img-microsoft-256/1f3cc-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3cc-1f3fb.png b/img-microsoft-256/1f3cc-1f3fb.png
new file mode 100644
index 0000000000..045e885cda
Binary files /dev/null and b/img-microsoft-256/1f3cc-1f3fb.png differ
diff --git a/img-microsoft-256/1f3cc-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f3cc-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..0e93971b4d
Binary files /dev/null and b/img-microsoft-256/1f3cc-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3cc-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f3cc-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..747627c925
Binary files /dev/null and b/img-microsoft-256/1f3cc-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3cc-1f3fc.png b/img-microsoft-256/1f3cc-1f3fc.png
new file mode 100644
index 0000000000..121b6947a0
Binary files /dev/null and b/img-microsoft-256/1f3cc-1f3fc.png differ
diff --git a/img-microsoft-256/1f3cc-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f3cc-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..e2f56cbcff
Binary files /dev/null and b/img-microsoft-256/1f3cc-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3cc-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f3cc-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..3232b99135
Binary files /dev/null and b/img-microsoft-256/1f3cc-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3cc-1f3fd.png b/img-microsoft-256/1f3cc-1f3fd.png
new file mode 100644
index 0000000000..8733840187
Binary files /dev/null and b/img-microsoft-256/1f3cc-1f3fd.png differ
diff --git a/img-microsoft-256/1f3cc-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f3cc-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..5d836d80fe
Binary files /dev/null and b/img-microsoft-256/1f3cc-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3cc-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f3cc-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..8a18a3fea2
Binary files /dev/null and b/img-microsoft-256/1f3cc-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3cc-1f3fe.png b/img-microsoft-256/1f3cc-1f3fe.png
new file mode 100644
index 0000000000..9d42108605
Binary files /dev/null and b/img-microsoft-256/1f3cc-1f3fe.png differ
diff --git a/img-microsoft-256/1f3cc-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f3cc-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..12aaf51adf
Binary files /dev/null and b/img-microsoft-256/1f3cc-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3cc-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f3cc-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..b55fbc4c78
Binary files /dev/null and b/img-microsoft-256/1f3cc-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3cc-1f3ff.png b/img-microsoft-256/1f3cc-1f3ff.png
new file mode 100644
index 0000000000..1faf6d6c1e
Binary files /dev/null and b/img-microsoft-256/1f3cc-1f3ff.png differ
diff --git a/img-microsoft-256/1f3cc-fe0f-200d-2640-fe0f.png b/img-microsoft-256/1f3cc-fe0f-200d-2640-fe0f.png
new file mode 100644
index 0000000000..e38799d0a8
Binary files /dev/null and b/img-microsoft-256/1f3cc-fe0f-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f3cc-fe0f-200d-2642-fe0f.png b/img-microsoft-256/1f3cc-fe0f-200d-2642-fe0f.png
new file mode 100644
index 0000000000..6edb7bdc61
Binary files /dev/null and b/img-microsoft-256/1f3cc-fe0f-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f3cc-fe0f.png b/img-microsoft-256/1f3cc-fe0f.png
new file mode 100644
index 0000000000..6080acfdd1
Binary files /dev/null and b/img-microsoft-256/1f3cc-fe0f.png differ
diff --git a/img-microsoft-256/1f3cd-fe0f.png b/img-microsoft-256/1f3cd-fe0f.png
new file mode 100644
index 0000000000..5f3cb8f6cd
Binary files /dev/null and b/img-microsoft-256/1f3cd-fe0f.png differ
diff --git a/img-microsoft-256/1f3ce-fe0f.png b/img-microsoft-256/1f3ce-fe0f.png
new file mode 100644
index 0000000000..8d9593932d
Binary files /dev/null and b/img-microsoft-256/1f3ce-fe0f.png differ
diff --git a/img-microsoft-256/1f3cf.png b/img-microsoft-256/1f3cf.png
new file mode 100644
index 0000000000..0509225d53
Binary files /dev/null and b/img-microsoft-256/1f3cf.png differ
diff --git a/img-microsoft-256/1f3d0.png b/img-microsoft-256/1f3d0.png
new file mode 100644
index 0000000000..404aa82be2
Binary files /dev/null and b/img-microsoft-256/1f3d0.png differ
diff --git a/img-microsoft-256/1f3d1.png b/img-microsoft-256/1f3d1.png
new file mode 100644
index 0000000000..36db72c942
Binary files /dev/null and b/img-microsoft-256/1f3d1.png differ
diff --git a/img-microsoft-256/1f3d2.png b/img-microsoft-256/1f3d2.png
new file mode 100644
index 0000000000..65899fc7e9
Binary files /dev/null and b/img-microsoft-256/1f3d2.png differ
diff --git a/img-microsoft-256/1f3d3.png b/img-microsoft-256/1f3d3.png
new file mode 100644
index 0000000000..9304c962c3
Binary files /dev/null and b/img-microsoft-256/1f3d3.png differ
diff --git a/img-microsoft-256/1f3d4-fe0f.png b/img-microsoft-256/1f3d4-fe0f.png
new file mode 100644
index 0000000000..686290b0f1
Binary files /dev/null and b/img-microsoft-256/1f3d4-fe0f.png differ
diff --git a/img-microsoft-256/1f3d5-fe0f.png b/img-microsoft-256/1f3d5-fe0f.png
new file mode 100644
index 0000000000..eadedaac42
Binary files /dev/null and b/img-microsoft-256/1f3d5-fe0f.png differ
diff --git a/img-microsoft-256/1f3d6-fe0f.png b/img-microsoft-256/1f3d6-fe0f.png
new file mode 100644
index 0000000000..d8f59a7c66
Binary files /dev/null and b/img-microsoft-256/1f3d6-fe0f.png differ
diff --git a/img-microsoft-256/1f3d7-fe0f.png b/img-microsoft-256/1f3d7-fe0f.png
new file mode 100644
index 0000000000..55f4a0ddec
Binary files /dev/null and b/img-microsoft-256/1f3d7-fe0f.png differ
diff --git a/img-microsoft-256/1f3d8-fe0f.png b/img-microsoft-256/1f3d8-fe0f.png
new file mode 100644
index 0000000000..db24e9ab71
Binary files /dev/null and b/img-microsoft-256/1f3d8-fe0f.png differ
diff --git a/img-microsoft-256/1f3d9-fe0f.png b/img-microsoft-256/1f3d9-fe0f.png
new file mode 100644
index 0000000000..b031845a9e
Binary files /dev/null and b/img-microsoft-256/1f3d9-fe0f.png differ
diff --git a/img-microsoft-256/1f3da-fe0f.png b/img-microsoft-256/1f3da-fe0f.png
new file mode 100644
index 0000000000..88b6b0b5c9
Binary files /dev/null and b/img-microsoft-256/1f3da-fe0f.png differ
diff --git a/img-microsoft-256/1f3db-fe0f.png b/img-microsoft-256/1f3db-fe0f.png
new file mode 100644
index 0000000000..512ca2096c
Binary files /dev/null and b/img-microsoft-256/1f3db-fe0f.png differ
diff --git a/img-microsoft-256/1f3dc-fe0f.png b/img-microsoft-256/1f3dc-fe0f.png
new file mode 100644
index 0000000000..e5df9a4600
Binary files /dev/null and b/img-microsoft-256/1f3dc-fe0f.png differ
diff --git a/img-microsoft-256/1f3dd-fe0f.png b/img-microsoft-256/1f3dd-fe0f.png
new file mode 100644
index 0000000000..723aaa672d
Binary files /dev/null and b/img-microsoft-256/1f3dd-fe0f.png differ
diff --git a/img-microsoft-256/1f3de-fe0f.png b/img-microsoft-256/1f3de-fe0f.png
new file mode 100644
index 0000000000..c18d8d2346
Binary files /dev/null and b/img-microsoft-256/1f3de-fe0f.png differ
diff --git a/img-microsoft-256/1f3df-fe0f.png b/img-microsoft-256/1f3df-fe0f.png
new file mode 100644
index 0000000000..4bb9b16e29
Binary files /dev/null and b/img-microsoft-256/1f3df-fe0f.png differ
diff --git a/img-microsoft-256/1f3e0.png b/img-microsoft-256/1f3e0.png
new file mode 100644
index 0000000000..e2885c46c3
Binary files /dev/null and b/img-microsoft-256/1f3e0.png differ
diff --git a/img-microsoft-256/1f3e1.png b/img-microsoft-256/1f3e1.png
new file mode 100644
index 0000000000..9e119dbf44
Binary files /dev/null and b/img-microsoft-256/1f3e1.png differ
diff --git a/img-microsoft-256/1f3e2.png b/img-microsoft-256/1f3e2.png
new file mode 100644
index 0000000000..2a431fd689
Binary files /dev/null and b/img-microsoft-256/1f3e2.png differ
diff --git a/img-microsoft-256/1f3e3.png b/img-microsoft-256/1f3e3.png
new file mode 100644
index 0000000000..bba333fe3d
Binary files /dev/null and b/img-microsoft-256/1f3e3.png differ
diff --git a/img-microsoft-256/1f3e4.png b/img-microsoft-256/1f3e4.png
new file mode 100644
index 0000000000..4fd7b3ef64
Binary files /dev/null and b/img-microsoft-256/1f3e4.png differ
diff --git a/img-microsoft-256/1f3e5.png b/img-microsoft-256/1f3e5.png
new file mode 100644
index 0000000000..499dcfc8c5
Binary files /dev/null and b/img-microsoft-256/1f3e5.png differ
diff --git a/img-microsoft-256/1f3e6.png b/img-microsoft-256/1f3e6.png
new file mode 100644
index 0000000000..d5e1815158
Binary files /dev/null and b/img-microsoft-256/1f3e6.png differ
diff --git a/img-microsoft-256/1f3e7.png b/img-microsoft-256/1f3e7.png
new file mode 100644
index 0000000000..14368791b1
Binary files /dev/null and b/img-microsoft-256/1f3e7.png differ
diff --git a/img-microsoft-256/1f3e8.png b/img-microsoft-256/1f3e8.png
new file mode 100644
index 0000000000..0c5616f4c3
Binary files /dev/null and b/img-microsoft-256/1f3e8.png differ
diff --git a/img-microsoft-256/1f3e9.png b/img-microsoft-256/1f3e9.png
new file mode 100644
index 0000000000..f0edf7ce58
Binary files /dev/null and b/img-microsoft-256/1f3e9.png differ
diff --git a/img-microsoft-256/1f3ea.png b/img-microsoft-256/1f3ea.png
new file mode 100644
index 0000000000..f38363df16
Binary files /dev/null and b/img-microsoft-256/1f3ea.png differ
diff --git a/img-microsoft-256/1f3eb.png b/img-microsoft-256/1f3eb.png
new file mode 100644
index 0000000000..9b51937416
Binary files /dev/null and b/img-microsoft-256/1f3eb.png differ
diff --git a/img-microsoft-256/1f3ec.png b/img-microsoft-256/1f3ec.png
new file mode 100644
index 0000000000..b889d15202
Binary files /dev/null and b/img-microsoft-256/1f3ec.png differ
diff --git a/img-microsoft-256/1f3ed.png b/img-microsoft-256/1f3ed.png
new file mode 100644
index 0000000000..f491aa4aa5
Binary files /dev/null and b/img-microsoft-256/1f3ed.png differ
diff --git a/img-microsoft-256/1f3ee.png b/img-microsoft-256/1f3ee.png
new file mode 100644
index 0000000000..f68cbb4a85
Binary files /dev/null and b/img-microsoft-256/1f3ee.png differ
diff --git a/img-microsoft-256/1f3ef.png b/img-microsoft-256/1f3ef.png
new file mode 100644
index 0000000000..00f7bf4019
Binary files /dev/null and b/img-microsoft-256/1f3ef.png differ
diff --git a/img-microsoft-256/1f3f0.png b/img-microsoft-256/1f3f0.png
new file mode 100644
index 0000000000..e1956bc0b2
Binary files /dev/null and b/img-microsoft-256/1f3f0.png differ
diff --git a/img-microsoft-256/1f3f3-fe0f-200d-1f308.png b/img-microsoft-256/1f3f3-fe0f-200d-1f308.png
new file mode 100644
index 0000000000..b235711efa
Binary files /dev/null and b/img-microsoft-256/1f3f3-fe0f-200d-1f308.png differ
diff --git a/img-microsoft-256/1f3f3-fe0f-200d-26a7-fe0f.png b/img-microsoft-256/1f3f3-fe0f-200d-26a7-fe0f.png
new file mode 100644
index 0000000000..2d0b40b12e
Binary files /dev/null and b/img-microsoft-256/1f3f3-fe0f-200d-26a7-fe0f.png differ
diff --git a/img-microsoft-256/1f3f3-fe0f.png b/img-microsoft-256/1f3f3-fe0f.png
new file mode 100644
index 0000000000..3863e849e7
Binary files /dev/null and b/img-microsoft-256/1f3f3-fe0f.png differ
diff --git a/img-microsoft-256/1f3f4-200d-2620-fe0f.png b/img-microsoft-256/1f3f4-200d-2620-fe0f.png
new file mode 100644
index 0000000000..130c94bc89
Binary files /dev/null and b/img-microsoft-256/1f3f4-200d-2620-fe0f.png differ
diff --git a/img-microsoft-256/1f3f4.png b/img-microsoft-256/1f3f4.png
new file mode 100644
index 0000000000..d9db983ca1
Binary files /dev/null and b/img-microsoft-256/1f3f4.png differ
diff --git a/img-microsoft-256/1f3f5-fe0f.png b/img-microsoft-256/1f3f5-fe0f.png
new file mode 100644
index 0000000000..2a3f35baf5
Binary files /dev/null and b/img-microsoft-256/1f3f5-fe0f.png differ
diff --git a/img-microsoft-256/1f3f7-fe0f.png b/img-microsoft-256/1f3f7-fe0f.png
new file mode 100644
index 0000000000..27993d0a7f
Binary files /dev/null and b/img-microsoft-256/1f3f7-fe0f.png differ
diff --git a/img-microsoft-256/1f3f8.png b/img-microsoft-256/1f3f8.png
new file mode 100644
index 0000000000..db873f6be5
Binary files /dev/null and b/img-microsoft-256/1f3f8.png differ
diff --git a/img-microsoft-256/1f3f9.png b/img-microsoft-256/1f3f9.png
new file mode 100644
index 0000000000..0e3585c0ee
Binary files /dev/null and b/img-microsoft-256/1f3f9.png differ
diff --git a/img-microsoft-256/1f3fa.png b/img-microsoft-256/1f3fa.png
new file mode 100644
index 0000000000..c259407528
Binary files /dev/null and b/img-microsoft-256/1f3fa.png differ
diff --git a/img-microsoft-256/1f400.png b/img-microsoft-256/1f400.png
new file mode 100644
index 0000000000..0a7ee56c6f
Binary files /dev/null and b/img-microsoft-256/1f400.png differ
diff --git a/img-microsoft-256/1f401.png b/img-microsoft-256/1f401.png
new file mode 100644
index 0000000000..89f88f8f33
Binary files /dev/null and b/img-microsoft-256/1f401.png differ
diff --git a/img-microsoft-256/1f402.png b/img-microsoft-256/1f402.png
new file mode 100644
index 0000000000..6e2a641b41
Binary files /dev/null and b/img-microsoft-256/1f402.png differ
diff --git a/img-microsoft-256/1f403.png b/img-microsoft-256/1f403.png
new file mode 100644
index 0000000000..f61f9b8ed0
Binary files /dev/null and b/img-microsoft-256/1f403.png differ
diff --git a/img-microsoft-256/1f404.png b/img-microsoft-256/1f404.png
new file mode 100644
index 0000000000..4a9af79a08
Binary files /dev/null and b/img-microsoft-256/1f404.png differ
diff --git a/img-microsoft-256/1f405.png b/img-microsoft-256/1f405.png
new file mode 100644
index 0000000000..bba90786b2
Binary files /dev/null and b/img-microsoft-256/1f405.png differ
diff --git a/img-microsoft-256/1f406.png b/img-microsoft-256/1f406.png
new file mode 100644
index 0000000000..73db32c19f
Binary files /dev/null and b/img-microsoft-256/1f406.png differ
diff --git a/img-microsoft-256/1f407.png b/img-microsoft-256/1f407.png
new file mode 100644
index 0000000000..25769251f1
Binary files /dev/null and b/img-microsoft-256/1f407.png differ
diff --git a/img-microsoft-256/1f408-200d-2b1b.png b/img-microsoft-256/1f408-200d-2b1b.png
new file mode 100644
index 0000000000..875a4d753c
Binary files /dev/null and b/img-microsoft-256/1f408-200d-2b1b.png differ
diff --git a/img-microsoft-256/1f408.png b/img-microsoft-256/1f408.png
new file mode 100644
index 0000000000..8b1613e60f
Binary files /dev/null and b/img-microsoft-256/1f408.png differ
diff --git a/img-microsoft-256/1f409.png b/img-microsoft-256/1f409.png
new file mode 100644
index 0000000000..978d44609c
Binary files /dev/null and b/img-microsoft-256/1f409.png differ
diff --git a/img-microsoft-256/1f40a.png b/img-microsoft-256/1f40a.png
new file mode 100644
index 0000000000..b592780a1f
Binary files /dev/null and b/img-microsoft-256/1f40a.png differ
diff --git a/img-microsoft-256/1f40b.png b/img-microsoft-256/1f40b.png
new file mode 100644
index 0000000000..6ce553c916
Binary files /dev/null and b/img-microsoft-256/1f40b.png differ
diff --git a/img-microsoft-256/1f40c.png b/img-microsoft-256/1f40c.png
new file mode 100644
index 0000000000..ee8c886d8a
Binary files /dev/null and b/img-microsoft-256/1f40c.png differ
diff --git a/img-microsoft-256/1f40d.png b/img-microsoft-256/1f40d.png
new file mode 100644
index 0000000000..dc88be7beb
Binary files /dev/null and b/img-microsoft-256/1f40d.png differ
diff --git a/img-microsoft-256/1f40e.png b/img-microsoft-256/1f40e.png
new file mode 100644
index 0000000000..0d57d63689
Binary files /dev/null and b/img-microsoft-256/1f40e.png differ
diff --git a/img-microsoft-256/1f40f.png b/img-microsoft-256/1f40f.png
new file mode 100644
index 0000000000..436e403a42
Binary files /dev/null and b/img-microsoft-256/1f40f.png differ
diff --git a/img-microsoft-256/1f410.png b/img-microsoft-256/1f410.png
new file mode 100644
index 0000000000..8e3b4c80aa
Binary files /dev/null and b/img-microsoft-256/1f410.png differ
diff --git a/img-microsoft-256/1f411.png b/img-microsoft-256/1f411.png
new file mode 100644
index 0000000000..f013a96352
Binary files /dev/null and b/img-microsoft-256/1f411.png differ
diff --git a/img-microsoft-256/1f412.png b/img-microsoft-256/1f412.png
new file mode 100644
index 0000000000..73046eec14
Binary files /dev/null and b/img-microsoft-256/1f412.png differ
diff --git a/img-microsoft-256/1f413.png b/img-microsoft-256/1f413.png
new file mode 100644
index 0000000000..2d766b5f7a
Binary files /dev/null and b/img-microsoft-256/1f413.png differ
diff --git a/img-microsoft-256/1f414.png b/img-microsoft-256/1f414.png
new file mode 100644
index 0000000000..2205fa7843
Binary files /dev/null and b/img-microsoft-256/1f414.png differ
diff --git a/img-microsoft-256/1f415-200d-1f9ba.png b/img-microsoft-256/1f415-200d-1f9ba.png
new file mode 100644
index 0000000000..3cc6abe782
Binary files /dev/null and b/img-microsoft-256/1f415-200d-1f9ba.png differ
diff --git a/img-microsoft-256/1f415.png b/img-microsoft-256/1f415.png
new file mode 100644
index 0000000000..46d50e94b3
Binary files /dev/null and b/img-microsoft-256/1f415.png differ
diff --git a/img-microsoft-256/1f416.png b/img-microsoft-256/1f416.png
new file mode 100644
index 0000000000..c0f8293e33
Binary files /dev/null and b/img-microsoft-256/1f416.png differ
diff --git a/img-microsoft-256/1f417.png b/img-microsoft-256/1f417.png
new file mode 100644
index 0000000000..7f947c3de9
Binary files /dev/null and b/img-microsoft-256/1f417.png differ
diff --git a/img-microsoft-256/1f418.png b/img-microsoft-256/1f418.png
new file mode 100644
index 0000000000..d7da65ba7b
Binary files /dev/null and b/img-microsoft-256/1f418.png differ
diff --git a/img-microsoft-256/1f419.png b/img-microsoft-256/1f419.png
new file mode 100644
index 0000000000..2da1a2a64c
Binary files /dev/null and b/img-microsoft-256/1f419.png differ
diff --git a/img-microsoft-256/1f41a.png b/img-microsoft-256/1f41a.png
new file mode 100644
index 0000000000..e3813a5d55
Binary files /dev/null and b/img-microsoft-256/1f41a.png differ
diff --git a/img-microsoft-256/1f41b.png b/img-microsoft-256/1f41b.png
new file mode 100644
index 0000000000..f68cdd5dfa
Binary files /dev/null and b/img-microsoft-256/1f41b.png differ
diff --git a/img-microsoft-256/1f41c.png b/img-microsoft-256/1f41c.png
new file mode 100644
index 0000000000..9760f0dc31
Binary files /dev/null and b/img-microsoft-256/1f41c.png differ
diff --git a/img-microsoft-256/1f41d.png b/img-microsoft-256/1f41d.png
new file mode 100644
index 0000000000..bb43a4138f
Binary files /dev/null and b/img-microsoft-256/1f41d.png differ
diff --git a/img-microsoft-256/1f41e.png b/img-microsoft-256/1f41e.png
new file mode 100644
index 0000000000..b74bd6627d
Binary files /dev/null and b/img-microsoft-256/1f41e.png differ
diff --git a/img-microsoft-256/1f41f.png b/img-microsoft-256/1f41f.png
new file mode 100644
index 0000000000..e358f73e1f
Binary files /dev/null and b/img-microsoft-256/1f41f.png differ
diff --git a/img-microsoft-256/1f420.png b/img-microsoft-256/1f420.png
new file mode 100644
index 0000000000..89b9a3d451
Binary files /dev/null and b/img-microsoft-256/1f420.png differ
diff --git a/img-microsoft-256/1f421.png b/img-microsoft-256/1f421.png
new file mode 100644
index 0000000000..fc92fe59cc
Binary files /dev/null and b/img-microsoft-256/1f421.png differ
diff --git a/img-microsoft-256/1f422.png b/img-microsoft-256/1f422.png
new file mode 100644
index 0000000000..f9557247bb
Binary files /dev/null and b/img-microsoft-256/1f422.png differ
diff --git a/img-microsoft-256/1f423.png b/img-microsoft-256/1f423.png
new file mode 100644
index 0000000000..f5130c0289
Binary files /dev/null and b/img-microsoft-256/1f423.png differ
diff --git a/img-microsoft-256/1f424.png b/img-microsoft-256/1f424.png
new file mode 100644
index 0000000000..61f0688497
Binary files /dev/null and b/img-microsoft-256/1f424.png differ
diff --git a/img-microsoft-256/1f425.png b/img-microsoft-256/1f425.png
new file mode 100644
index 0000000000..34c779a813
Binary files /dev/null and b/img-microsoft-256/1f425.png differ
diff --git a/img-microsoft-256/1f426.png b/img-microsoft-256/1f426.png
new file mode 100644
index 0000000000..0e80e3fbdd
Binary files /dev/null and b/img-microsoft-256/1f426.png differ
diff --git a/img-microsoft-256/1f427.png b/img-microsoft-256/1f427.png
new file mode 100644
index 0000000000..728d04e483
Binary files /dev/null and b/img-microsoft-256/1f427.png differ
diff --git a/img-microsoft-256/1f428.png b/img-microsoft-256/1f428.png
new file mode 100644
index 0000000000..61ac4671fc
Binary files /dev/null and b/img-microsoft-256/1f428.png differ
diff --git a/img-microsoft-256/1f429.png b/img-microsoft-256/1f429.png
new file mode 100644
index 0000000000..3a27986a84
Binary files /dev/null and b/img-microsoft-256/1f429.png differ
diff --git a/img-microsoft-256/1f42a.png b/img-microsoft-256/1f42a.png
new file mode 100644
index 0000000000..982cc0a2c7
Binary files /dev/null and b/img-microsoft-256/1f42a.png differ
diff --git a/img-microsoft-256/1f42b.png b/img-microsoft-256/1f42b.png
new file mode 100644
index 0000000000..b0da87d003
Binary files /dev/null and b/img-microsoft-256/1f42b.png differ
diff --git a/img-microsoft-256/1f42c.png b/img-microsoft-256/1f42c.png
new file mode 100644
index 0000000000..0b536a7d50
Binary files /dev/null and b/img-microsoft-256/1f42c.png differ
diff --git a/img-microsoft-256/1f42d.png b/img-microsoft-256/1f42d.png
new file mode 100644
index 0000000000..40566f9bdc
Binary files /dev/null and b/img-microsoft-256/1f42d.png differ
diff --git a/img-microsoft-256/1f42e.png b/img-microsoft-256/1f42e.png
new file mode 100644
index 0000000000..e427b246b2
Binary files /dev/null and b/img-microsoft-256/1f42e.png differ
diff --git a/img-microsoft-256/1f42f.png b/img-microsoft-256/1f42f.png
new file mode 100644
index 0000000000..43e77047d0
Binary files /dev/null and b/img-microsoft-256/1f42f.png differ
diff --git a/img-microsoft-256/1f430.png b/img-microsoft-256/1f430.png
new file mode 100644
index 0000000000..18a04ae712
Binary files /dev/null and b/img-microsoft-256/1f430.png differ
diff --git a/img-microsoft-256/1f431.png b/img-microsoft-256/1f431.png
new file mode 100644
index 0000000000..3595065262
Binary files /dev/null and b/img-microsoft-256/1f431.png differ
diff --git a/img-microsoft-256/1f432.png b/img-microsoft-256/1f432.png
new file mode 100644
index 0000000000..581af8bc62
Binary files /dev/null and b/img-microsoft-256/1f432.png differ
diff --git a/img-microsoft-256/1f433.png b/img-microsoft-256/1f433.png
new file mode 100644
index 0000000000..7bedfd82cb
Binary files /dev/null and b/img-microsoft-256/1f433.png differ
diff --git a/img-microsoft-256/1f434.png b/img-microsoft-256/1f434.png
new file mode 100644
index 0000000000..438f3f7440
Binary files /dev/null and b/img-microsoft-256/1f434.png differ
diff --git a/img-microsoft-256/1f435.png b/img-microsoft-256/1f435.png
new file mode 100644
index 0000000000..0db9ad927b
Binary files /dev/null and b/img-microsoft-256/1f435.png differ
diff --git a/img-microsoft-256/1f436.png b/img-microsoft-256/1f436.png
new file mode 100644
index 0000000000..2ecdd9549a
Binary files /dev/null and b/img-microsoft-256/1f436.png differ
diff --git a/img-microsoft-256/1f437.png b/img-microsoft-256/1f437.png
new file mode 100644
index 0000000000..77143d6614
Binary files /dev/null and b/img-microsoft-256/1f437.png differ
diff --git a/img-microsoft-256/1f438.png b/img-microsoft-256/1f438.png
new file mode 100644
index 0000000000..7d73e02bf6
Binary files /dev/null and b/img-microsoft-256/1f438.png differ
diff --git a/img-microsoft-256/1f439.png b/img-microsoft-256/1f439.png
new file mode 100644
index 0000000000..80736ae9a3
Binary files /dev/null and b/img-microsoft-256/1f439.png differ
diff --git a/img-microsoft-256/1f43a.png b/img-microsoft-256/1f43a.png
new file mode 100644
index 0000000000..483a001561
Binary files /dev/null and b/img-microsoft-256/1f43a.png differ
diff --git a/img-microsoft-256/1f43b-200d-2744-fe0f.png b/img-microsoft-256/1f43b-200d-2744-fe0f.png
new file mode 100644
index 0000000000..6dfa710c54
Binary files /dev/null and b/img-microsoft-256/1f43b-200d-2744-fe0f.png differ
diff --git a/img-microsoft-256/1f43b.png b/img-microsoft-256/1f43b.png
new file mode 100644
index 0000000000..38cf9fc45b
Binary files /dev/null and b/img-microsoft-256/1f43b.png differ
diff --git a/img-microsoft-256/1f43c.png b/img-microsoft-256/1f43c.png
new file mode 100644
index 0000000000..f17a4262e2
Binary files /dev/null and b/img-microsoft-256/1f43c.png differ
diff --git a/img-microsoft-256/1f43d.png b/img-microsoft-256/1f43d.png
new file mode 100644
index 0000000000..4fa0ce6555
Binary files /dev/null and b/img-microsoft-256/1f43d.png differ
diff --git a/img-microsoft-256/1f43e.png b/img-microsoft-256/1f43e.png
new file mode 100644
index 0000000000..5b5a22e417
Binary files /dev/null and b/img-microsoft-256/1f43e.png differ
diff --git a/img-microsoft-256/1f43f-fe0f.png b/img-microsoft-256/1f43f-fe0f.png
new file mode 100644
index 0000000000..cb9889c240
Binary files /dev/null and b/img-microsoft-256/1f43f-fe0f.png differ
diff --git a/img-microsoft-256/1f440.png b/img-microsoft-256/1f440.png
new file mode 100644
index 0000000000..f390e95d39
Binary files /dev/null and b/img-microsoft-256/1f440.png differ
diff --git a/img-microsoft-256/1f441-fe0f-200d-1f5e8-fe0f.png b/img-microsoft-256/1f441-fe0f-200d-1f5e8-fe0f.png
new file mode 100644
index 0000000000..6c93ac27ac
Binary files /dev/null and b/img-microsoft-256/1f441-fe0f-200d-1f5e8-fe0f.png differ
diff --git a/img-microsoft-256/1f441-fe0f.png b/img-microsoft-256/1f441-fe0f.png
new file mode 100644
index 0000000000..883d512587
Binary files /dev/null and b/img-microsoft-256/1f441-fe0f.png differ
diff --git a/img-microsoft-256/1f442-1f3fb.png b/img-microsoft-256/1f442-1f3fb.png
new file mode 100644
index 0000000000..4237863213
Binary files /dev/null and b/img-microsoft-256/1f442-1f3fb.png differ
diff --git a/img-microsoft-256/1f442-1f3fc.png b/img-microsoft-256/1f442-1f3fc.png
new file mode 100644
index 0000000000..05c7cdcfad
Binary files /dev/null and b/img-microsoft-256/1f442-1f3fc.png differ
diff --git a/img-microsoft-256/1f442-1f3fd.png b/img-microsoft-256/1f442-1f3fd.png
new file mode 100644
index 0000000000..d9bdd44e67
Binary files /dev/null and b/img-microsoft-256/1f442-1f3fd.png differ
diff --git a/img-microsoft-256/1f442-1f3fe.png b/img-microsoft-256/1f442-1f3fe.png
new file mode 100644
index 0000000000..8b418c0140
Binary files /dev/null and b/img-microsoft-256/1f442-1f3fe.png differ
diff --git a/img-microsoft-256/1f442-1f3ff.png b/img-microsoft-256/1f442-1f3ff.png
new file mode 100644
index 0000000000..3b1538cf6d
Binary files /dev/null and b/img-microsoft-256/1f442-1f3ff.png differ
diff --git a/img-microsoft-256/1f442.png b/img-microsoft-256/1f442.png
new file mode 100644
index 0000000000..c5e3e0d5e3
Binary files /dev/null and b/img-microsoft-256/1f442.png differ
diff --git a/img-microsoft-256/1f443-1f3fb.png b/img-microsoft-256/1f443-1f3fb.png
new file mode 100644
index 0000000000..252bda22be
Binary files /dev/null and b/img-microsoft-256/1f443-1f3fb.png differ
diff --git a/img-microsoft-256/1f443-1f3fc.png b/img-microsoft-256/1f443-1f3fc.png
new file mode 100644
index 0000000000..95f1b16a95
Binary files /dev/null and b/img-microsoft-256/1f443-1f3fc.png differ
diff --git a/img-microsoft-256/1f443-1f3fd.png b/img-microsoft-256/1f443-1f3fd.png
new file mode 100644
index 0000000000..91aedb102a
Binary files /dev/null and b/img-microsoft-256/1f443-1f3fd.png differ
diff --git a/img-microsoft-256/1f443-1f3fe.png b/img-microsoft-256/1f443-1f3fe.png
new file mode 100644
index 0000000000..4cd49d711e
Binary files /dev/null and b/img-microsoft-256/1f443-1f3fe.png differ
diff --git a/img-microsoft-256/1f443-1f3ff.png b/img-microsoft-256/1f443-1f3ff.png
new file mode 100644
index 0000000000..1a31ccb961
Binary files /dev/null and b/img-microsoft-256/1f443-1f3ff.png differ
diff --git a/img-microsoft-256/1f443.png b/img-microsoft-256/1f443.png
new file mode 100644
index 0000000000..48f8cda7cf
Binary files /dev/null and b/img-microsoft-256/1f443.png differ
diff --git a/img-microsoft-256/1f444.png b/img-microsoft-256/1f444.png
new file mode 100644
index 0000000000..3e09dfe1fb
Binary files /dev/null and b/img-microsoft-256/1f444.png differ
diff --git a/img-microsoft-256/1f445.png b/img-microsoft-256/1f445.png
new file mode 100644
index 0000000000..da0bf9afcf
Binary files /dev/null and b/img-microsoft-256/1f445.png differ
diff --git a/img-microsoft-256/1f446-1f3fb.png b/img-microsoft-256/1f446-1f3fb.png
new file mode 100644
index 0000000000..7ef4c810dc
Binary files /dev/null and b/img-microsoft-256/1f446-1f3fb.png differ
diff --git a/img-microsoft-256/1f446-1f3fc.png b/img-microsoft-256/1f446-1f3fc.png
new file mode 100644
index 0000000000..1bf08e3222
Binary files /dev/null and b/img-microsoft-256/1f446-1f3fc.png differ
diff --git a/img-microsoft-256/1f446-1f3fd.png b/img-microsoft-256/1f446-1f3fd.png
new file mode 100644
index 0000000000..ea193f253e
Binary files /dev/null and b/img-microsoft-256/1f446-1f3fd.png differ
diff --git a/img-microsoft-256/1f446-1f3fe.png b/img-microsoft-256/1f446-1f3fe.png
new file mode 100644
index 0000000000..06468a7cb7
Binary files /dev/null and b/img-microsoft-256/1f446-1f3fe.png differ
diff --git a/img-microsoft-256/1f446-1f3ff.png b/img-microsoft-256/1f446-1f3ff.png
new file mode 100644
index 0000000000..716daa0848
Binary files /dev/null and b/img-microsoft-256/1f446-1f3ff.png differ
diff --git a/img-microsoft-256/1f446.png b/img-microsoft-256/1f446.png
new file mode 100644
index 0000000000..cd9ae84953
Binary files /dev/null and b/img-microsoft-256/1f446.png differ
diff --git a/img-microsoft-256/1f447-1f3fb.png b/img-microsoft-256/1f447-1f3fb.png
new file mode 100644
index 0000000000..6a4faf871e
Binary files /dev/null and b/img-microsoft-256/1f447-1f3fb.png differ
diff --git a/img-microsoft-256/1f447-1f3fc.png b/img-microsoft-256/1f447-1f3fc.png
new file mode 100644
index 0000000000..4e82cef342
Binary files /dev/null and b/img-microsoft-256/1f447-1f3fc.png differ
diff --git a/img-microsoft-256/1f447-1f3fd.png b/img-microsoft-256/1f447-1f3fd.png
new file mode 100644
index 0000000000..38cf45ce62
Binary files /dev/null and b/img-microsoft-256/1f447-1f3fd.png differ
diff --git a/img-microsoft-256/1f447-1f3fe.png b/img-microsoft-256/1f447-1f3fe.png
new file mode 100644
index 0000000000..2e7848c29c
Binary files /dev/null and b/img-microsoft-256/1f447-1f3fe.png differ
diff --git a/img-microsoft-256/1f447-1f3ff.png b/img-microsoft-256/1f447-1f3ff.png
new file mode 100644
index 0000000000..7b1416ae0f
Binary files /dev/null and b/img-microsoft-256/1f447-1f3ff.png differ
diff --git a/img-microsoft-256/1f447.png b/img-microsoft-256/1f447.png
new file mode 100644
index 0000000000..179047ecdf
Binary files /dev/null and b/img-microsoft-256/1f447.png differ
diff --git a/img-microsoft-256/1f448-1f3fb.png b/img-microsoft-256/1f448-1f3fb.png
new file mode 100644
index 0000000000..22439a405f
Binary files /dev/null and b/img-microsoft-256/1f448-1f3fb.png differ
diff --git a/img-microsoft-256/1f448-1f3fc.png b/img-microsoft-256/1f448-1f3fc.png
new file mode 100644
index 0000000000..5e2576e734
Binary files /dev/null and b/img-microsoft-256/1f448-1f3fc.png differ
diff --git a/img-microsoft-256/1f448-1f3fd.png b/img-microsoft-256/1f448-1f3fd.png
new file mode 100644
index 0000000000..2f7540c3b5
Binary files /dev/null and b/img-microsoft-256/1f448-1f3fd.png differ
diff --git a/img-microsoft-256/1f448-1f3fe.png b/img-microsoft-256/1f448-1f3fe.png
new file mode 100644
index 0000000000..10a38b2388
Binary files /dev/null and b/img-microsoft-256/1f448-1f3fe.png differ
diff --git a/img-microsoft-256/1f448-1f3ff.png b/img-microsoft-256/1f448-1f3ff.png
new file mode 100644
index 0000000000..9c15e1f73d
Binary files /dev/null and b/img-microsoft-256/1f448-1f3ff.png differ
diff --git a/img-microsoft-256/1f448.png b/img-microsoft-256/1f448.png
new file mode 100644
index 0000000000..45eaa4c6c5
Binary files /dev/null and b/img-microsoft-256/1f448.png differ
diff --git a/img-microsoft-256/1f449-1f3fb.png b/img-microsoft-256/1f449-1f3fb.png
new file mode 100644
index 0000000000..83e9054310
Binary files /dev/null and b/img-microsoft-256/1f449-1f3fb.png differ
diff --git a/img-microsoft-256/1f449-1f3fc.png b/img-microsoft-256/1f449-1f3fc.png
new file mode 100644
index 0000000000..a121ed1811
Binary files /dev/null and b/img-microsoft-256/1f449-1f3fc.png differ
diff --git a/img-microsoft-256/1f449-1f3fd.png b/img-microsoft-256/1f449-1f3fd.png
new file mode 100644
index 0000000000..e127eeab7f
Binary files /dev/null and b/img-microsoft-256/1f449-1f3fd.png differ
diff --git a/img-microsoft-256/1f449-1f3fe.png b/img-microsoft-256/1f449-1f3fe.png
new file mode 100644
index 0000000000..42cd0386e8
Binary files /dev/null and b/img-microsoft-256/1f449-1f3fe.png differ
diff --git a/img-microsoft-256/1f449-1f3ff.png b/img-microsoft-256/1f449-1f3ff.png
new file mode 100644
index 0000000000..66ceeaac86
Binary files /dev/null and b/img-microsoft-256/1f449-1f3ff.png differ
diff --git a/img-microsoft-256/1f449.png b/img-microsoft-256/1f449.png
new file mode 100644
index 0000000000..4fafb03772
Binary files /dev/null and b/img-microsoft-256/1f449.png differ
diff --git a/img-microsoft-256/1f44a-1f3fb.png b/img-microsoft-256/1f44a-1f3fb.png
new file mode 100644
index 0000000000..79e50c83cc
Binary files /dev/null and b/img-microsoft-256/1f44a-1f3fb.png differ
diff --git a/img-microsoft-256/1f44a-1f3fc.png b/img-microsoft-256/1f44a-1f3fc.png
new file mode 100644
index 0000000000..d77f09186b
Binary files /dev/null and b/img-microsoft-256/1f44a-1f3fc.png differ
diff --git a/img-microsoft-256/1f44a-1f3fd.png b/img-microsoft-256/1f44a-1f3fd.png
new file mode 100644
index 0000000000..cdfca841be
Binary files /dev/null and b/img-microsoft-256/1f44a-1f3fd.png differ
diff --git a/img-microsoft-256/1f44a-1f3fe.png b/img-microsoft-256/1f44a-1f3fe.png
new file mode 100644
index 0000000000..8a91006de7
Binary files /dev/null and b/img-microsoft-256/1f44a-1f3fe.png differ
diff --git a/img-microsoft-256/1f44a-1f3ff.png b/img-microsoft-256/1f44a-1f3ff.png
new file mode 100644
index 0000000000..4f5938f169
Binary files /dev/null and b/img-microsoft-256/1f44a-1f3ff.png differ
diff --git a/img-microsoft-256/1f44a.png b/img-microsoft-256/1f44a.png
new file mode 100644
index 0000000000..6e08fb25dd
Binary files /dev/null and b/img-microsoft-256/1f44a.png differ
diff --git a/img-microsoft-256/1f44b-1f3fb.png b/img-microsoft-256/1f44b-1f3fb.png
new file mode 100644
index 0000000000..a8de9222f0
Binary files /dev/null and b/img-microsoft-256/1f44b-1f3fb.png differ
diff --git a/img-microsoft-256/1f44b-1f3fc.png b/img-microsoft-256/1f44b-1f3fc.png
new file mode 100644
index 0000000000..67e24609fe
Binary files /dev/null and b/img-microsoft-256/1f44b-1f3fc.png differ
diff --git a/img-microsoft-256/1f44b-1f3fd.png b/img-microsoft-256/1f44b-1f3fd.png
new file mode 100644
index 0000000000..1a7b6b953f
Binary files /dev/null and b/img-microsoft-256/1f44b-1f3fd.png differ
diff --git a/img-microsoft-256/1f44b-1f3fe.png b/img-microsoft-256/1f44b-1f3fe.png
new file mode 100644
index 0000000000..723a18eefa
Binary files /dev/null and b/img-microsoft-256/1f44b-1f3fe.png differ
diff --git a/img-microsoft-256/1f44b-1f3ff.png b/img-microsoft-256/1f44b-1f3ff.png
new file mode 100644
index 0000000000..d6c4d5d141
Binary files /dev/null and b/img-microsoft-256/1f44b-1f3ff.png differ
diff --git a/img-microsoft-256/1f44b.png b/img-microsoft-256/1f44b.png
new file mode 100644
index 0000000000..d20006e1b5
Binary files /dev/null and b/img-microsoft-256/1f44b.png differ
diff --git a/img-microsoft-256/1f44c-1f3fb.png b/img-microsoft-256/1f44c-1f3fb.png
new file mode 100644
index 0000000000..4bf6569d7c
Binary files /dev/null and b/img-microsoft-256/1f44c-1f3fb.png differ
diff --git a/img-microsoft-256/1f44c-1f3fc.png b/img-microsoft-256/1f44c-1f3fc.png
new file mode 100644
index 0000000000..5d542ea546
Binary files /dev/null and b/img-microsoft-256/1f44c-1f3fc.png differ
diff --git a/img-microsoft-256/1f44c-1f3fd.png b/img-microsoft-256/1f44c-1f3fd.png
new file mode 100644
index 0000000000..1a6f323518
Binary files /dev/null and b/img-microsoft-256/1f44c-1f3fd.png differ
diff --git a/img-microsoft-256/1f44c-1f3fe.png b/img-microsoft-256/1f44c-1f3fe.png
new file mode 100644
index 0000000000..e176454336
Binary files /dev/null and b/img-microsoft-256/1f44c-1f3fe.png differ
diff --git a/img-microsoft-256/1f44c-1f3ff.png b/img-microsoft-256/1f44c-1f3ff.png
new file mode 100644
index 0000000000..d9136bc972
Binary files /dev/null and b/img-microsoft-256/1f44c-1f3ff.png differ
diff --git a/img-microsoft-256/1f44c.png b/img-microsoft-256/1f44c.png
new file mode 100644
index 0000000000..3c47cfb4dc
Binary files /dev/null and b/img-microsoft-256/1f44c.png differ
diff --git a/img-microsoft-256/1f44d-1f3fb.png b/img-microsoft-256/1f44d-1f3fb.png
new file mode 100644
index 0000000000..9c2dd5590b
Binary files /dev/null and b/img-microsoft-256/1f44d-1f3fb.png differ
diff --git a/img-microsoft-256/1f44d-1f3fc.png b/img-microsoft-256/1f44d-1f3fc.png
new file mode 100644
index 0000000000..a6fbba0fa4
Binary files /dev/null and b/img-microsoft-256/1f44d-1f3fc.png differ
diff --git a/img-microsoft-256/1f44d-1f3fd.png b/img-microsoft-256/1f44d-1f3fd.png
new file mode 100644
index 0000000000..ef72593d89
Binary files /dev/null and b/img-microsoft-256/1f44d-1f3fd.png differ
diff --git a/img-microsoft-256/1f44d-1f3fe.png b/img-microsoft-256/1f44d-1f3fe.png
new file mode 100644
index 0000000000..449818e3fa
Binary files /dev/null and b/img-microsoft-256/1f44d-1f3fe.png differ
diff --git a/img-microsoft-256/1f44d-1f3ff.png b/img-microsoft-256/1f44d-1f3ff.png
new file mode 100644
index 0000000000..db0aa8ce01
Binary files /dev/null and b/img-microsoft-256/1f44d-1f3ff.png differ
diff --git a/img-microsoft-256/1f44d.png b/img-microsoft-256/1f44d.png
new file mode 100644
index 0000000000..f179654f56
Binary files /dev/null and b/img-microsoft-256/1f44d.png differ
diff --git a/img-microsoft-256/1f44e-1f3fb.png b/img-microsoft-256/1f44e-1f3fb.png
new file mode 100644
index 0000000000..72ae56c114
Binary files /dev/null and b/img-microsoft-256/1f44e-1f3fb.png differ
diff --git a/img-microsoft-256/1f44e-1f3fc.png b/img-microsoft-256/1f44e-1f3fc.png
new file mode 100644
index 0000000000..3ba9a29ea8
Binary files /dev/null and b/img-microsoft-256/1f44e-1f3fc.png differ
diff --git a/img-microsoft-256/1f44e-1f3fd.png b/img-microsoft-256/1f44e-1f3fd.png
new file mode 100644
index 0000000000..c1e70aba4a
Binary files /dev/null and b/img-microsoft-256/1f44e-1f3fd.png differ
diff --git a/img-microsoft-256/1f44e-1f3fe.png b/img-microsoft-256/1f44e-1f3fe.png
new file mode 100644
index 0000000000..87b8334db3
Binary files /dev/null and b/img-microsoft-256/1f44e-1f3fe.png differ
diff --git a/img-microsoft-256/1f44e-1f3ff.png b/img-microsoft-256/1f44e-1f3ff.png
new file mode 100644
index 0000000000..9039e0d01c
Binary files /dev/null and b/img-microsoft-256/1f44e-1f3ff.png differ
diff --git a/img-microsoft-256/1f44e.png b/img-microsoft-256/1f44e.png
new file mode 100644
index 0000000000..6345d92dbf
Binary files /dev/null and b/img-microsoft-256/1f44e.png differ
diff --git a/img-microsoft-256/1f44f-1f3fb.png b/img-microsoft-256/1f44f-1f3fb.png
new file mode 100644
index 0000000000..4e12fd0366
Binary files /dev/null and b/img-microsoft-256/1f44f-1f3fb.png differ
diff --git a/img-microsoft-256/1f44f-1f3fc.png b/img-microsoft-256/1f44f-1f3fc.png
new file mode 100644
index 0000000000..10974e70d6
Binary files /dev/null and b/img-microsoft-256/1f44f-1f3fc.png differ
diff --git a/img-microsoft-256/1f44f-1f3fd.png b/img-microsoft-256/1f44f-1f3fd.png
new file mode 100644
index 0000000000..8e8062d96b
Binary files /dev/null and b/img-microsoft-256/1f44f-1f3fd.png differ
diff --git a/img-microsoft-256/1f44f-1f3fe.png b/img-microsoft-256/1f44f-1f3fe.png
new file mode 100644
index 0000000000..83e5a59d93
Binary files /dev/null and b/img-microsoft-256/1f44f-1f3fe.png differ
diff --git a/img-microsoft-256/1f44f-1f3ff.png b/img-microsoft-256/1f44f-1f3ff.png
new file mode 100644
index 0000000000..2280c70ecf
Binary files /dev/null and b/img-microsoft-256/1f44f-1f3ff.png differ
diff --git a/img-microsoft-256/1f44f.png b/img-microsoft-256/1f44f.png
new file mode 100644
index 0000000000..88bc49a763
Binary files /dev/null and b/img-microsoft-256/1f44f.png differ
diff --git a/img-microsoft-256/1f450-1f3fb.png b/img-microsoft-256/1f450-1f3fb.png
new file mode 100644
index 0000000000..fe4c76b612
Binary files /dev/null and b/img-microsoft-256/1f450-1f3fb.png differ
diff --git a/img-microsoft-256/1f450-1f3fc.png b/img-microsoft-256/1f450-1f3fc.png
new file mode 100644
index 0000000000..2fbae65694
Binary files /dev/null and b/img-microsoft-256/1f450-1f3fc.png differ
diff --git a/img-microsoft-256/1f450-1f3fd.png b/img-microsoft-256/1f450-1f3fd.png
new file mode 100644
index 0000000000..4185f517b4
Binary files /dev/null and b/img-microsoft-256/1f450-1f3fd.png differ
diff --git a/img-microsoft-256/1f450-1f3fe.png b/img-microsoft-256/1f450-1f3fe.png
new file mode 100644
index 0000000000..dafb112a6f
Binary files /dev/null and b/img-microsoft-256/1f450-1f3fe.png differ
diff --git a/img-microsoft-256/1f450-1f3ff.png b/img-microsoft-256/1f450-1f3ff.png
new file mode 100644
index 0000000000..2397d3817e
Binary files /dev/null and b/img-microsoft-256/1f450-1f3ff.png differ
diff --git a/img-microsoft-256/1f450.png b/img-microsoft-256/1f450.png
new file mode 100644
index 0000000000..6ab63b6a3c
Binary files /dev/null and b/img-microsoft-256/1f450.png differ
diff --git a/img-microsoft-256/1f451.png b/img-microsoft-256/1f451.png
new file mode 100644
index 0000000000..10127973f8
Binary files /dev/null and b/img-microsoft-256/1f451.png differ
diff --git a/img-microsoft-256/1f452.png b/img-microsoft-256/1f452.png
new file mode 100644
index 0000000000..f1847eb6b2
Binary files /dev/null and b/img-microsoft-256/1f452.png differ
diff --git a/img-microsoft-256/1f453.png b/img-microsoft-256/1f453.png
new file mode 100644
index 0000000000..12158917f1
Binary files /dev/null and b/img-microsoft-256/1f453.png differ
diff --git a/img-microsoft-256/1f454.png b/img-microsoft-256/1f454.png
new file mode 100644
index 0000000000..b1f3c24b78
Binary files /dev/null and b/img-microsoft-256/1f454.png differ
diff --git a/img-microsoft-256/1f455.png b/img-microsoft-256/1f455.png
new file mode 100644
index 0000000000..1250453548
Binary files /dev/null and b/img-microsoft-256/1f455.png differ
diff --git a/img-microsoft-256/1f456.png b/img-microsoft-256/1f456.png
new file mode 100644
index 0000000000..7c90e65d50
Binary files /dev/null and b/img-microsoft-256/1f456.png differ
diff --git a/img-microsoft-256/1f457.png b/img-microsoft-256/1f457.png
new file mode 100644
index 0000000000..ecab0db690
Binary files /dev/null and b/img-microsoft-256/1f457.png differ
diff --git a/img-microsoft-256/1f458.png b/img-microsoft-256/1f458.png
new file mode 100644
index 0000000000..30526ded0d
Binary files /dev/null and b/img-microsoft-256/1f458.png differ
diff --git a/img-microsoft-256/1f459.png b/img-microsoft-256/1f459.png
new file mode 100644
index 0000000000..24cf6cb536
Binary files /dev/null and b/img-microsoft-256/1f459.png differ
diff --git a/img-microsoft-256/1f45a.png b/img-microsoft-256/1f45a.png
new file mode 100644
index 0000000000..aab289a39a
Binary files /dev/null and b/img-microsoft-256/1f45a.png differ
diff --git a/img-microsoft-256/1f45b.png b/img-microsoft-256/1f45b.png
new file mode 100644
index 0000000000..73d15ff636
Binary files /dev/null and b/img-microsoft-256/1f45b.png differ
diff --git a/img-microsoft-256/1f45c.png b/img-microsoft-256/1f45c.png
new file mode 100644
index 0000000000..2de2b77aa9
Binary files /dev/null and b/img-microsoft-256/1f45c.png differ
diff --git a/img-microsoft-256/1f45d.png b/img-microsoft-256/1f45d.png
new file mode 100644
index 0000000000..925fa1eae7
Binary files /dev/null and b/img-microsoft-256/1f45d.png differ
diff --git a/img-microsoft-256/1f45e.png b/img-microsoft-256/1f45e.png
new file mode 100644
index 0000000000..529f29b53c
Binary files /dev/null and b/img-microsoft-256/1f45e.png differ
diff --git a/img-microsoft-256/1f45f.png b/img-microsoft-256/1f45f.png
new file mode 100644
index 0000000000..964ea0f669
Binary files /dev/null and b/img-microsoft-256/1f45f.png differ
diff --git a/img-microsoft-256/1f460.png b/img-microsoft-256/1f460.png
new file mode 100644
index 0000000000..32917422d5
Binary files /dev/null and b/img-microsoft-256/1f460.png differ
diff --git a/img-microsoft-256/1f461.png b/img-microsoft-256/1f461.png
new file mode 100644
index 0000000000..573c4e0507
Binary files /dev/null and b/img-microsoft-256/1f461.png differ
diff --git a/img-microsoft-256/1f462.png b/img-microsoft-256/1f462.png
new file mode 100644
index 0000000000..47c7aee360
Binary files /dev/null and b/img-microsoft-256/1f462.png differ
diff --git a/img-microsoft-256/1f463.png b/img-microsoft-256/1f463.png
new file mode 100644
index 0000000000..1720b5529d
Binary files /dev/null and b/img-microsoft-256/1f463.png differ
diff --git a/img-microsoft-256/1f464.png b/img-microsoft-256/1f464.png
new file mode 100644
index 0000000000..6a5197fa7f
Binary files /dev/null and b/img-microsoft-256/1f464.png differ
diff --git a/img-microsoft-256/1f465.png b/img-microsoft-256/1f465.png
new file mode 100644
index 0000000000..72f48bb6ab
Binary files /dev/null and b/img-microsoft-256/1f465.png differ
diff --git a/img-microsoft-256/1f466-1f3fb.png b/img-microsoft-256/1f466-1f3fb.png
new file mode 100644
index 0000000000..eb1cc60d9e
Binary files /dev/null and b/img-microsoft-256/1f466-1f3fb.png differ
diff --git a/img-microsoft-256/1f466-1f3fc.png b/img-microsoft-256/1f466-1f3fc.png
new file mode 100644
index 0000000000..94562fbb31
Binary files /dev/null and b/img-microsoft-256/1f466-1f3fc.png differ
diff --git a/img-microsoft-256/1f466-1f3fd.png b/img-microsoft-256/1f466-1f3fd.png
new file mode 100644
index 0000000000..139b4449f4
Binary files /dev/null and b/img-microsoft-256/1f466-1f3fd.png differ
diff --git a/img-microsoft-256/1f466-1f3fe.png b/img-microsoft-256/1f466-1f3fe.png
new file mode 100644
index 0000000000..5586fea09b
Binary files /dev/null and b/img-microsoft-256/1f466-1f3fe.png differ
diff --git a/img-microsoft-256/1f466-1f3ff.png b/img-microsoft-256/1f466-1f3ff.png
new file mode 100644
index 0000000000..b7f55dbdfb
Binary files /dev/null and b/img-microsoft-256/1f466-1f3ff.png differ
diff --git a/img-microsoft-256/1f466.png b/img-microsoft-256/1f466.png
new file mode 100644
index 0000000000..50f183eb6e
Binary files /dev/null and b/img-microsoft-256/1f466.png differ
diff --git a/img-microsoft-256/1f467-1f3fb.png b/img-microsoft-256/1f467-1f3fb.png
new file mode 100644
index 0000000000..46c1ee1448
Binary files /dev/null and b/img-microsoft-256/1f467-1f3fb.png differ
diff --git a/img-microsoft-256/1f467-1f3fc.png b/img-microsoft-256/1f467-1f3fc.png
new file mode 100644
index 0000000000..296ced6d27
Binary files /dev/null and b/img-microsoft-256/1f467-1f3fc.png differ
diff --git a/img-microsoft-256/1f467-1f3fd.png b/img-microsoft-256/1f467-1f3fd.png
new file mode 100644
index 0000000000..91b1d16dc6
Binary files /dev/null and b/img-microsoft-256/1f467-1f3fd.png differ
diff --git a/img-microsoft-256/1f467-1f3fe.png b/img-microsoft-256/1f467-1f3fe.png
new file mode 100644
index 0000000000..3c45f06bdf
Binary files /dev/null and b/img-microsoft-256/1f467-1f3fe.png differ
diff --git a/img-microsoft-256/1f467-1f3ff.png b/img-microsoft-256/1f467-1f3ff.png
new file mode 100644
index 0000000000..369c745e36
Binary files /dev/null and b/img-microsoft-256/1f467-1f3ff.png differ
diff --git a/img-microsoft-256/1f467.png b/img-microsoft-256/1f467.png
new file mode 100644
index 0000000000..00208edb9d
Binary files /dev/null and b/img-microsoft-256/1f467.png differ
diff --git a/img-microsoft-256/1f468-1f3fb-200d-1f33e.png b/img-microsoft-256/1f468-1f3fb-200d-1f33e.png
new file mode 100644
index 0000000000..8b20f51299
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fb-200d-1f33e.png differ
diff --git a/img-microsoft-256/1f468-1f3fb-200d-1f373.png b/img-microsoft-256/1f468-1f3fb-200d-1f373.png
new file mode 100644
index 0000000000..791e7b888c
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fb-200d-1f373.png differ
diff --git a/img-microsoft-256/1f468-1f3fb-200d-1f37c.png b/img-microsoft-256/1f468-1f3fb-200d-1f37c.png
new file mode 100644
index 0000000000..a4f1e3dcb9
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fb-200d-1f37c.png differ
diff --git a/img-microsoft-256/1f468-1f3fb-200d-1f393.png b/img-microsoft-256/1f468-1f3fb-200d-1f393.png
new file mode 100644
index 0000000000..c18b3d947a
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fb-200d-1f393.png differ
diff --git a/img-microsoft-256/1f468-1f3fb-200d-1f3a4.png b/img-microsoft-256/1f468-1f3fb-200d-1f3a4.png
new file mode 100644
index 0000000000..b36571c3bd
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fb-200d-1f3a4.png differ
diff --git a/img-microsoft-256/1f468-1f3fb-200d-1f3a8.png b/img-microsoft-256/1f468-1f3fb-200d-1f3a8.png
new file mode 100644
index 0000000000..c0f4168935
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fb-200d-1f3a8.png differ
diff --git a/img-microsoft-256/1f468-1f3fb-200d-1f3eb.png b/img-microsoft-256/1f468-1f3fb-200d-1f3eb.png
new file mode 100644
index 0000000000..839e1dcbe9
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fb-200d-1f3eb.png differ
diff --git a/img-microsoft-256/1f468-1f3fb-200d-1f3ed.png b/img-microsoft-256/1f468-1f3fb-200d-1f3ed.png
new file mode 100644
index 0000000000..65fdacbd80
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fb-200d-1f3ed.png differ
diff --git a/img-microsoft-256/1f468-1f3fb-200d-1f4bc.png b/img-microsoft-256/1f468-1f3fb-200d-1f4bc.png
new file mode 100644
index 0000000000..f9effe5c10
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fb-200d-1f4bc.png differ
diff --git a/img-microsoft-256/1f468-1f3fb-200d-1f527.png b/img-microsoft-256/1f468-1f3fb-200d-1f527.png
new file mode 100644
index 0000000000..836917a6bb
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fb-200d-1f527.png differ
diff --git a/img-microsoft-256/1f468-1f3fb-200d-1f52c.png b/img-microsoft-256/1f468-1f3fb-200d-1f52c.png
new file mode 100644
index 0000000000..a0284ba9ed
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fb-200d-1f52c.png differ
diff --git a/img-microsoft-256/1f468-1f3fb-200d-1f680.png b/img-microsoft-256/1f468-1f3fb-200d-1f680.png
new file mode 100644
index 0000000000..643a8ebe61
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fb-200d-1f680.png differ
diff --git a/img-microsoft-256/1f468-1f3fb-200d-1f692.png b/img-microsoft-256/1f468-1f3fb-200d-1f692.png
new file mode 100644
index 0000000000..f4f2708641
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fb-200d-1f692.png differ
diff --git a/img-microsoft-256/1f468-1f3fb-200d-1f9af.png b/img-microsoft-256/1f468-1f3fb-200d-1f9af.png
new file mode 100644
index 0000000000..32db21c6ad
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fb-200d-1f9af.png differ
diff --git a/img-microsoft-256/1f468-1f3fb-200d-1f9b0.png b/img-microsoft-256/1f468-1f3fb-200d-1f9b0.png
new file mode 100644
index 0000000000..a00e4d7260
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fb-200d-1f9b0.png differ
diff --git a/img-microsoft-256/1f468-1f3fb-200d-1f9b1.png b/img-microsoft-256/1f468-1f3fb-200d-1f9b1.png
new file mode 100644
index 0000000000..4b8a18ee58
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fb-200d-1f9b1.png differ
diff --git a/img-microsoft-256/1f468-1f3fb-200d-1f9b2.png b/img-microsoft-256/1f468-1f3fb-200d-1f9b2.png
new file mode 100644
index 0000000000..61d945c420
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fb-200d-1f9b2.png differ
diff --git a/img-microsoft-256/1f468-1f3fb-200d-1f9b3.png b/img-microsoft-256/1f468-1f3fb-200d-1f9b3.png
new file mode 100644
index 0000000000..eaa899fce5
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fb-200d-1f9b3.png differ
diff --git a/img-microsoft-256/1f468-1f3fb-200d-1f9bc.png b/img-microsoft-256/1f468-1f3fb-200d-1f9bc.png
new file mode 100644
index 0000000000..12808b3040
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fb-200d-1f9bc.png differ
diff --git a/img-microsoft-256/1f468-1f3fb-200d-1f9bd.png b/img-microsoft-256/1f468-1f3fb-200d-1f9bd.png
new file mode 100644
index 0000000000..b58bb115ee
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fb-200d-1f9bd.png differ
diff --git a/img-microsoft-256/1f468-1f3fb-200d-2695-fe0f.png b/img-microsoft-256/1f468-1f3fb-200d-2695-fe0f.png
new file mode 100644
index 0000000000..72f9ea2c76
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fb-200d-2695-fe0f.png differ
diff --git a/img-microsoft-256/1f468-1f3fb-200d-2696-fe0f.png b/img-microsoft-256/1f468-1f3fb-200d-2696-fe0f.png
new file mode 100644
index 0000000000..0662f046ed
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fb-200d-2696-fe0f.png differ
diff --git a/img-microsoft-256/1f468-1f3fb-200d-2708-fe0f.png b/img-microsoft-256/1f468-1f3fb-200d-2708-fe0f.png
new file mode 100644
index 0000000000..3cc5158351
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fb-200d-2708-fe0f.png differ
diff --git a/img-microsoft-256/1f468-1f3fb.png b/img-microsoft-256/1f468-1f3fb.png
new file mode 100644
index 0000000000..119a9ff33e
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fb.png differ
diff --git a/img-microsoft-256/1f468-1f3fc-200d-1f33e.png b/img-microsoft-256/1f468-1f3fc-200d-1f33e.png
new file mode 100644
index 0000000000..96baac57de
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fc-200d-1f33e.png differ
diff --git a/img-microsoft-256/1f468-1f3fc-200d-1f373.png b/img-microsoft-256/1f468-1f3fc-200d-1f373.png
new file mode 100644
index 0000000000..a70a88066a
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fc-200d-1f373.png differ
diff --git a/img-microsoft-256/1f468-1f3fc-200d-1f37c.png b/img-microsoft-256/1f468-1f3fc-200d-1f37c.png
new file mode 100644
index 0000000000..7c4ae9f289
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fc-200d-1f37c.png differ
diff --git a/img-microsoft-256/1f468-1f3fc-200d-1f393.png b/img-microsoft-256/1f468-1f3fc-200d-1f393.png
new file mode 100644
index 0000000000..6504f826d1
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fc-200d-1f393.png differ
diff --git a/img-microsoft-256/1f468-1f3fc-200d-1f3a4.png b/img-microsoft-256/1f468-1f3fc-200d-1f3a4.png
new file mode 100644
index 0000000000..af86538155
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fc-200d-1f3a4.png differ
diff --git a/img-microsoft-256/1f468-1f3fc-200d-1f3a8.png b/img-microsoft-256/1f468-1f3fc-200d-1f3a8.png
new file mode 100644
index 0000000000..ca60c9dc6d
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fc-200d-1f3a8.png differ
diff --git a/img-microsoft-256/1f468-1f3fc-200d-1f3eb.png b/img-microsoft-256/1f468-1f3fc-200d-1f3eb.png
new file mode 100644
index 0000000000..9ede4379a8
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fc-200d-1f3eb.png differ
diff --git a/img-microsoft-256/1f468-1f3fc-200d-1f3ed.png b/img-microsoft-256/1f468-1f3fc-200d-1f3ed.png
new file mode 100644
index 0000000000..30d1a039e1
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fc-200d-1f3ed.png differ
diff --git a/img-microsoft-256/1f468-1f3fc-200d-1f4bc.png b/img-microsoft-256/1f468-1f3fc-200d-1f4bc.png
new file mode 100644
index 0000000000..2906dc831d
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fc-200d-1f4bc.png differ
diff --git a/img-microsoft-256/1f468-1f3fc-200d-1f527.png b/img-microsoft-256/1f468-1f3fc-200d-1f527.png
new file mode 100644
index 0000000000..9b0f0a4549
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fc-200d-1f527.png differ
diff --git a/img-microsoft-256/1f468-1f3fc-200d-1f52c.png b/img-microsoft-256/1f468-1f3fc-200d-1f52c.png
new file mode 100644
index 0000000000..f0a8d43098
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fc-200d-1f52c.png differ
diff --git a/img-microsoft-256/1f468-1f3fc-200d-1f680.png b/img-microsoft-256/1f468-1f3fc-200d-1f680.png
new file mode 100644
index 0000000000..b41e2abfe8
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fc-200d-1f680.png differ
diff --git a/img-microsoft-256/1f468-1f3fc-200d-1f692.png b/img-microsoft-256/1f468-1f3fc-200d-1f692.png
new file mode 100644
index 0000000000..b7627aa764
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fc-200d-1f692.png differ
diff --git a/img-microsoft-256/1f468-1f3fc-200d-1f9af.png b/img-microsoft-256/1f468-1f3fc-200d-1f9af.png
new file mode 100644
index 0000000000..def938bb3d
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fc-200d-1f9af.png differ
diff --git a/img-microsoft-256/1f468-1f3fc-200d-1f9b0.png b/img-microsoft-256/1f468-1f3fc-200d-1f9b0.png
new file mode 100644
index 0000000000..b7e54257ce
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fc-200d-1f9b0.png differ
diff --git a/img-microsoft-256/1f468-1f3fc-200d-1f9b1.png b/img-microsoft-256/1f468-1f3fc-200d-1f9b1.png
new file mode 100644
index 0000000000..736c7003e0
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fc-200d-1f9b1.png differ
diff --git a/img-microsoft-256/1f468-1f3fc-200d-1f9b2.png b/img-microsoft-256/1f468-1f3fc-200d-1f9b2.png
new file mode 100644
index 0000000000..d5a8de2b5b
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fc-200d-1f9b2.png differ
diff --git a/img-microsoft-256/1f468-1f3fc-200d-1f9b3.png b/img-microsoft-256/1f468-1f3fc-200d-1f9b3.png
new file mode 100644
index 0000000000..c08060208c
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fc-200d-1f9b3.png differ
diff --git a/img-microsoft-256/1f468-1f3fc-200d-1f9bc.png b/img-microsoft-256/1f468-1f3fc-200d-1f9bc.png
new file mode 100644
index 0000000000..2ee55356e9
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fc-200d-1f9bc.png differ
diff --git a/img-microsoft-256/1f468-1f3fc-200d-1f9bd.png b/img-microsoft-256/1f468-1f3fc-200d-1f9bd.png
new file mode 100644
index 0000000000..70fc0d5b0b
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fc-200d-1f9bd.png differ
diff --git a/img-microsoft-256/1f468-1f3fc-200d-2695-fe0f.png b/img-microsoft-256/1f468-1f3fc-200d-2695-fe0f.png
new file mode 100644
index 0000000000..c1e2ca591f
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fc-200d-2695-fe0f.png differ
diff --git a/img-microsoft-256/1f468-1f3fc-200d-2696-fe0f.png b/img-microsoft-256/1f468-1f3fc-200d-2696-fe0f.png
new file mode 100644
index 0000000000..2ad154b1fe
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fc-200d-2696-fe0f.png differ
diff --git a/img-microsoft-256/1f468-1f3fc-200d-2708-fe0f.png b/img-microsoft-256/1f468-1f3fc-200d-2708-fe0f.png
new file mode 100644
index 0000000000..e51913a5d4
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fc-200d-2708-fe0f.png differ
diff --git a/img-microsoft-256/1f468-1f3fc.png b/img-microsoft-256/1f468-1f3fc.png
new file mode 100644
index 0000000000..e5803d38df
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fc.png differ
diff --git a/img-microsoft-256/1f468-1f3fd-200d-1f33e.png b/img-microsoft-256/1f468-1f3fd-200d-1f33e.png
new file mode 100644
index 0000000000..74b79b82e6
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fd-200d-1f33e.png differ
diff --git a/img-microsoft-256/1f468-1f3fd-200d-1f373.png b/img-microsoft-256/1f468-1f3fd-200d-1f373.png
new file mode 100644
index 0000000000..a1fbb6b5cb
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fd-200d-1f373.png differ
diff --git a/img-microsoft-256/1f468-1f3fd-200d-1f37c.png b/img-microsoft-256/1f468-1f3fd-200d-1f37c.png
new file mode 100644
index 0000000000..581d6dd5e4
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fd-200d-1f37c.png differ
diff --git a/img-microsoft-256/1f468-1f3fd-200d-1f393.png b/img-microsoft-256/1f468-1f3fd-200d-1f393.png
new file mode 100644
index 0000000000..2c5a681eab
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fd-200d-1f393.png differ
diff --git a/img-microsoft-256/1f468-1f3fd-200d-1f3a4.png b/img-microsoft-256/1f468-1f3fd-200d-1f3a4.png
new file mode 100644
index 0000000000..5b741b675e
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fd-200d-1f3a4.png differ
diff --git a/img-microsoft-256/1f468-1f3fd-200d-1f3a8.png b/img-microsoft-256/1f468-1f3fd-200d-1f3a8.png
new file mode 100644
index 0000000000..745e61b611
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fd-200d-1f3a8.png differ
diff --git a/img-microsoft-256/1f468-1f3fd-200d-1f3eb.png b/img-microsoft-256/1f468-1f3fd-200d-1f3eb.png
new file mode 100644
index 0000000000..673088fea5
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fd-200d-1f3eb.png differ
diff --git a/img-microsoft-256/1f468-1f3fd-200d-1f3ed.png b/img-microsoft-256/1f468-1f3fd-200d-1f3ed.png
new file mode 100644
index 0000000000..f51aec0b26
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fd-200d-1f3ed.png differ
diff --git a/img-microsoft-256/1f468-1f3fd-200d-1f4bc.png b/img-microsoft-256/1f468-1f3fd-200d-1f4bc.png
new file mode 100644
index 0000000000..fbafddd3e0
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fd-200d-1f4bc.png differ
diff --git a/img-microsoft-256/1f468-1f3fd-200d-1f527.png b/img-microsoft-256/1f468-1f3fd-200d-1f527.png
new file mode 100644
index 0000000000..61ec733e1d
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fd-200d-1f527.png differ
diff --git a/img-microsoft-256/1f468-1f3fd-200d-1f52c.png b/img-microsoft-256/1f468-1f3fd-200d-1f52c.png
new file mode 100644
index 0000000000..c4765a09b8
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fd-200d-1f52c.png differ
diff --git a/img-microsoft-256/1f468-1f3fd-200d-1f680.png b/img-microsoft-256/1f468-1f3fd-200d-1f680.png
new file mode 100644
index 0000000000..edb4a08cb7
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fd-200d-1f680.png differ
diff --git a/img-microsoft-256/1f468-1f3fd-200d-1f692.png b/img-microsoft-256/1f468-1f3fd-200d-1f692.png
new file mode 100644
index 0000000000..51e102d79b
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fd-200d-1f692.png differ
diff --git a/img-microsoft-256/1f468-1f3fd-200d-1f9af.png b/img-microsoft-256/1f468-1f3fd-200d-1f9af.png
new file mode 100644
index 0000000000..984411360f
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fd-200d-1f9af.png differ
diff --git a/img-microsoft-256/1f468-1f3fd-200d-1f9b0.png b/img-microsoft-256/1f468-1f3fd-200d-1f9b0.png
new file mode 100644
index 0000000000..fec16ad108
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fd-200d-1f9b0.png differ
diff --git a/img-microsoft-256/1f468-1f3fd-200d-1f9b1.png b/img-microsoft-256/1f468-1f3fd-200d-1f9b1.png
new file mode 100644
index 0000000000..bce3063072
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fd-200d-1f9b1.png differ
diff --git a/img-microsoft-256/1f468-1f3fd-200d-1f9b2.png b/img-microsoft-256/1f468-1f3fd-200d-1f9b2.png
new file mode 100644
index 0000000000..00020ef10d
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fd-200d-1f9b2.png differ
diff --git a/img-microsoft-256/1f468-1f3fd-200d-1f9b3.png b/img-microsoft-256/1f468-1f3fd-200d-1f9b3.png
new file mode 100644
index 0000000000..2d6279c51f
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fd-200d-1f9b3.png differ
diff --git a/img-microsoft-256/1f468-1f3fd-200d-1f9bc.png b/img-microsoft-256/1f468-1f3fd-200d-1f9bc.png
new file mode 100644
index 0000000000..ab6899ab6a
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fd-200d-1f9bc.png differ
diff --git a/img-microsoft-256/1f468-1f3fd-200d-1f9bd.png b/img-microsoft-256/1f468-1f3fd-200d-1f9bd.png
new file mode 100644
index 0000000000..202039cc08
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fd-200d-1f9bd.png differ
diff --git a/img-microsoft-256/1f468-1f3fd-200d-2695-fe0f.png b/img-microsoft-256/1f468-1f3fd-200d-2695-fe0f.png
new file mode 100644
index 0000000000..4b8bbe06cd
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fd-200d-2695-fe0f.png differ
diff --git a/img-microsoft-256/1f468-1f3fd-200d-2696-fe0f.png b/img-microsoft-256/1f468-1f3fd-200d-2696-fe0f.png
new file mode 100644
index 0000000000..841fbaae75
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fd-200d-2696-fe0f.png differ
diff --git a/img-microsoft-256/1f468-1f3fd-200d-2708-fe0f.png b/img-microsoft-256/1f468-1f3fd-200d-2708-fe0f.png
new file mode 100644
index 0000000000..f38407786c
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fd-200d-2708-fe0f.png differ
diff --git a/img-microsoft-256/1f468-1f3fd.png b/img-microsoft-256/1f468-1f3fd.png
new file mode 100644
index 0000000000..6f7f0c6446
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fd.png differ
diff --git a/img-microsoft-256/1f468-1f3fe-200d-1f33e.png b/img-microsoft-256/1f468-1f3fe-200d-1f33e.png
new file mode 100644
index 0000000000..11c188a47a
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fe-200d-1f33e.png differ
diff --git a/img-microsoft-256/1f468-1f3fe-200d-1f373.png b/img-microsoft-256/1f468-1f3fe-200d-1f373.png
new file mode 100644
index 0000000000..83f93012cf
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fe-200d-1f373.png differ
diff --git a/img-microsoft-256/1f468-1f3fe-200d-1f37c.png b/img-microsoft-256/1f468-1f3fe-200d-1f37c.png
new file mode 100644
index 0000000000..17987e4386
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fe-200d-1f37c.png differ
diff --git a/img-microsoft-256/1f468-1f3fe-200d-1f393.png b/img-microsoft-256/1f468-1f3fe-200d-1f393.png
new file mode 100644
index 0000000000..ffb0371544
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fe-200d-1f393.png differ
diff --git a/img-microsoft-256/1f468-1f3fe-200d-1f3a4.png b/img-microsoft-256/1f468-1f3fe-200d-1f3a4.png
new file mode 100644
index 0000000000..1e628719c1
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fe-200d-1f3a4.png differ
diff --git a/img-microsoft-256/1f468-1f3fe-200d-1f3a8.png b/img-microsoft-256/1f468-1f3fe-200d-1f3a8.png
new file mode 100644
index 0000000000..8ce1aded92
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fe-200d-1f3a8.png differ
diff --git a/img-microsoft-256/1f468-1f3fe-200d-1f3eb.png b/img-microsoft-256/1f468-1f3fe-200d-1f3eb.png
new file mode 100644
index 0000000000..5af1951042
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fe-200d-1f3eb.png differ
diff --git a/img-microsoft-256/1f468-1f3fe-200d-1f3ed.png b/img-microsoft-256/1f468-1f3fe-200d-1f3ed.png
new file mode 100644
index 0000000000..e1dbf2ddb0
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fe-200d-1f3ed.png differ
diff --git a/img-microsoft-256/1f468-1f3fe-200d-1f4bc.png b/img-microsoft-256/1f468-1f3fe-200d-1f4bc.png
new file mode 100644
index 0000000000..bad28e7b48
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fe-200d-1f4bc.png differ
diff --git a/img-microsoft-256/1f468-1f3fe-200d-1f527.png b/img-microsoft-256/1f468-1f3fe-200d-1f527.png
new file mode 100644
index 0000000000..0cc4f2acb5
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fe-200d-1f527.png differ
diff --git a/img-microsoft-256/1f468-1f3fe-200d-1f52c.png b/img-microsoft-256/1f468-1f3fe-200d-1f52c.png
new file mode 100644
index 0000000000..4186da6cbf
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fe-200d-1f52c.png differ
diff --git a/img-microsoft-256/1f468-1f3fe-200d-1f680.png b/img-microsoft-256/1f468-1f3fe-200d-1f680.png
new file mode 100644
index 0000000000..6740153a82
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fe-200d-1f680.png differ
diff --git a/img-microsoft-256/1f468-1f3fe-200d-1f692.png b/img-microsoft-256/1f468-1f3fe-200d-1f692.png
new file mode 100644
index 0000000000..eb0115fc4d
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fe-200d-1f692.png differ
diff --git a/img-microsoft-256/1f468-1f3fe-200d-1f9af.png b/img-microsoft-256/1f468-1f3fe-200d-1f9af.png
new file mode 100644
index 0000000000..22beb034df
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fe-200d-1f9af.png differ
diff --git a/img-microsoft-256/1f468-1f3fe-200d-1f9b0.png b/img-microsoft-256/1f468-1f3fe-200d-1f9b0.png
new file mode 100644
index 0000000000..3d56383cb2
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fe-200d-1f9b0.png differ
diff --git a/img-microsoft-256/1f468-1f3fe-200d-1f9b1.png b/img-microsoft-256/1f468-1f3fe-200d-1f9b1.png
new file mode 100644
index 0000000000..7a85374e52
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fe-200d-1f9b1.png differ
diff --git a/img-microsoft-256/1f468-1f3fe-200d-1f9b2.png b/img-microsoft-256/1f468-1f3fe-200d-1f9b2.png
new file mode 100644
index 0000000000..fc0b6c5c9c
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fe-200d-1f9b2.png differ
diff --git a/img-microsoft-256/1f468-1f3fe-200d-1f9b3.png b/img-microsoft-256/1f468-1f3fe-200d-1f9b3.png
new file mode 100644
index 0000000000..b90274d5f0
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fe-200d-1f9b3.png differ
diff --git a/img-microsoft-256/1f468-1f3fe-200d-1f9bc.png b/img-microsoft-256/1f468-1f3fe-200d-1f9bc.png
new file mode 100644
index 0000000000..fc2dfcd417
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fe-200d-1f9bc.png differ
diff --git a/img-microsoft-256/1f468-1f3fe-200d-1f9bd.png b/img-microsoft-256/1f468-1f3fe-200d-1f9bd.png
new file mode 100644
index 0000000000..409afac651
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fe-200d-1f9bd.png differ
diff --git a/img-microsoft-256/1f468-1f3fe-200d-2695-fe0f.png b/img-microsoft-256/1f468-1f3fe-200d-2695-fe0f.png
new file mode 100644
index 0000000000..ec7e413354
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fe-200d-2695-fe0f.png differ
diff --git a/img-microsoft-256/1f468-1f3fe-200d-2696-fe0f.png b/img-microsoft-256/1f468-1f3fe-200d-2696-fe0f.png
new file mode 100644
index 0000000000..2a4bcec452
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fe-200d-2696-fe0f.png differ
diff --git a/img-microsoft-256/1f468-1f3fe-200d-2708-fe0f.png b/img-microsoft-256/1f468-1f3fe-200d-2708-fe0f.png
new file mode 100644
index 0000000000..b765c29928
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fe-200d-2708-fe0f.png differ
diff --git a/img-microsoft-256/1f468-1f3fe.png b/img-microsoft-256/1f468-1f3fe.png
new file mode 100644
index 0000000000..236541eaaf
Binary files /dev/null and b/img-microsoft-256/1f468-1f3fe.png differ
diff --git a/img-microsoft-256/1f468-1f3ff-200d-1f33e.png b/img-microsoft-256/1f468-1f3ff-200d-1f33e.png
new file mode 100644
index 0000000000..d39a86e1f6
Binary files /dev/null and b/img-microsoft-256/1f468-1f3ff-200d-1f33e.png differ
diff --git a/img-microsoft-256/1f468-1f3ff-200d-1f373.png b/img-microsoft-256/1f468-1f3ff-200d-1f373.png
new file mode 100644
index 0000000000..c2caf062cf
Binary files /dev/null and b/img-microsoft-256/1f468-1f3ff-200d-1f373.png differ
diff --git a/img-microsoft-256/1f468-1f3ff-200d-1f37c.png b/img-microsoft-256/1f468-1f3ff-200d-1f37c.png
new file mode 100644
index 0000000000..ebaedf2e81
Binary files /dev/null and b/img-microsoft-256/1f468-1f3ff-200d-1f37c.png differ
diff --git a/img-microsoft-256/1f468-1f3ff-200d-1f393.png b/img-microsoft-256/1f468-1f3ff-200d-1f393.png
new file mode 100644
index 0000000000..72974189cf
Binary files /dev/null and b/img-microsoft-256/1f468-1f3ff-200d-1f393.png differ
diff --git a/img-microsoft-256/1f468-1f3ff-200d-1f3a4.png b/img-microsoft-256/1f468-1f3ff-200d-1f3a4.png
new file mode 100644
index 0000000000..2c4bc9622a
Binary files /dev/null and b/img-microsoft-256/1f468-1f3ff-200d-1f3a4.png differ
diff --git a/img-microsoft-256/1f468-1f3ff-200d-1f3a8.png b/img-microsoft-256/1f468-1f3ff-200d-1f3a8.png
new file mode 100644
index 0000000000..b02c6259dc
Binary files /dev/null and b/img-microsoft-256/1f468-1f3ff-200d-1f3a8.png differ
diff --git a/img-microsoft-256/1f468-1f3ff-200d-1f3eb.png b/img-microsoft-256/1f468-1f3ff-200d-1f3eb.png
new file mode 100644
index 0000000000..ec81f5171c
Binary files /dev/null and b/img-microsoft-256/1f468-1f3ff-200d-1f3eb.png differ
diff --git a/img-microsoft-256/1f468-1f3ff-200d-1f3ed.png b/img-microsoft-256/1f468-1f3ff-200d-1f3ed.png
new file mode 100644
index 0000000000..34dfe587e9
Binary files /dev/null and b/img-microsoft-256/1f468-1f3ff-200d-1f3ed.png differ
diff --git a/img-microsoft-256/1f468-1f3ff-200d-1f4bc.png b/img-microsoft-256/1f468-1f3ff-200d-1f4bc.png
new file mode 100644
index 0000000000..1e52a69f83
Binary files /dev/null and b/img-microsoft-256/1f468-1f3ff-200d-1f4bc.png differ
diff --git a/img-microsoft-256/1f468-1f3ff-200d-1f527.png b/img-microsoft-256/1f468-1f3ff-200d-1f527.png
new file mode 100644
index 0000000000..bd932d94bc
Binary files /dev/null and b/img-microsoft-256/1f468-1f3ff-200d-1f527.png differ
diff --git a/img-microsoft-256/1f468-1f3ff-200d-1f52c.png b/img-microsoft-256/1f468-1f3ff-200d-1f52c.png
new file mode 100644
index 0000000000..6efd00cc69
Binary files /dev/null and b/img-microsoft-256/1f468-1f3ff-200d-1f52c.png differ
diff --git a/img-microsoft-256/1f468-1f3ff-200d-1f680.png b/img-microsoft-256/1f468-1f3ff-200d-1f680.png
new file mode 100644
index 0000000000..35ca21cac5
Binary files /dev/null and b/img-microsoft-256/1f468-1f3ff-200d-1f680.png differ
diff --git a/img-microsoft-256/1f468-1f3ff-200d-1f692.png b/img-microsoft-256/1f468-1f3ff-200d-1f692.png
new file mode 100644
index 0000000000..795243daae
Binary files /dev/null and b/img-microsoft-256/1f468-1f3ff-200d-1f692.png differ
diff --git a/img-microsoft-256/1f468-1f3ff-200d-1f9af.png b/img-microsoft-256/1f468-1f3ff-200d-1f9af.png
new file mode 100644
index 0000000000..a454f9425d
Binary files /dev/null and b/img-microsoft-256/1f468-1f3ff-200d-1f9af.png differ
diff --git a/img-microsoft-256/1f468-1f3ff-200d-1f9b0.png b/img-microsoft-256/1f468-1f3ff-200d-1f9b0.png
new file mode 100644
index 0000000000..2453d63764
Binary files /dev/null and b/img-microsoft-256/1f468-1f3ff-200d-1f9b0.png differ
diff --git a/img-microsoft-256/1f468-1f3ff-200d-1f9b1.png b/img-microsoft-256/1f468-1f3ff-200d-1f9b1.png
new file mode 100644
index 0000000000..fa90a15ce8
Binary files /dev/null and b/img-microsoft-256/1f468-1f3ff-200d-1f9b1.png differ
diff --git a/img-microsoft-256/1f468-1f3ff-200d-1f9b2.png b/img-microsoft-256/1f468-1f3ff-200d-1f9b2.png
new file mode 100644
index 0000000000..3f0831c547
Binary files /dev/null and b/img-microsoft-256/1f468-1f3ff-200d-1f9b2.png differ
diff --git a/img-microsoft-256/1f468-1f3ff-200d-1f9b3.png b/img-microsoft-256/1f468-1f3ff-200d-1f9b3.png
new file mode 100644
index 0000000000..9674a5255e
Binary files /dev/null and b/img-microsoft-256/1f468-1f3ff-200d-1f9b3.png differ
diff --git a/img-microsoft-256/1f468-1f3ff-200d-1f9bc.png b/img-microsoft-256/1f468-1f3ff-200d-1f9bc.png
new file mode 100644
index 0000000000..d8262e2c0e
Binary files /dev/null and b/img-microsoft-256/1f468-1f3ff-200d-1f9bc.png differ
diff --git a/img-microsoft-256/1f468-1f3ff-200d-1f9bd.png b/img-microsoft-256/1f468-1f3ff-200d-1f9bd.png
new file mode 100644
index 0000000000..14f137be65
Binary files /dev/null and b/img-microsoft-256/1f468-1f3ff-200d-1f9bd.png differ
diff --git a/img-microsoft-256/1f468-1f3ff-200d-2695-fe0f.png b/img-microsoft-256/1f468-1f3ff-200d-2695-fe0f.png
new file mode 100644
index 0000000000..7c0927a9c8
Binary files /dev/null and b/img-microsoft-256/1f468-1f3ff-200d-2695-fe0f.png differ
diff --git a/img-microsoft-256/1f468-1f3ff-200d-2696-fe0f.png b/img-microsoft-256/1f468-1f3ff-200d-2696-fe0f.png
new file mode 100644
index 0000000000..5cee6b697d
Binary files /dev/null and b/img-microsoft-256/1f468-1f3ff-200d-2696-fe0f.png differ
diff --git a/img-microsoft-256/1f468-1f3ff-200d-2708-fe0f.png b/img-microsoft-256/1f468-1f3ff-200d-2708-fe0f.png
new file mode 100644
index 0000000000..4784497d75
Binary files /dev/null and b/img-microsoft-256/1f468-1f3ff-200d-2708-fe0f.png differ
diff --git a/img-microsoft-256/1f468-1f3ff.png b/img-microsoft-256/1f468-1f3ff.png
new file mode 100644
index 0000000000..467e23d0e6
Binary files /dev/null and b/img-microsoft-256/1f468-1f3ff.png differ
diff --git a/img-microsoft-256/1f468-200d-1f33e.png b/img-microsoft-256/1f468-200d-1f33e.png
new file mode 100644
index 0000000000..9a3f52ebd7
Binary files /dev/null and b/img-microsoft-256/1f468-200d-1f33e.png differ
diff --git a/img-microsoft-256/1f468-200d-1f373.png b/img-microsoft-256/1f468-200d-1f373.png
new file mode 100644
index 0000000000..9477badea3
Binary files /dev/null and b/img-microsoft-256/1f468-200d-1f373.png differ
diff --git a/img-microsoft-256/1f468-200d-1f37c.png b/img-microsoft-256/1f468-200d-1f37c.png
new file mode 100644
index 0000000000..9f255ed0e5
Binary files /dev/null and b/img-microsoft-256/1f468-200d-1f37c.png differ
diff --git a/img-microsoft-256/1f468-200d-1f393.png b/img-microsoft-256/1f468-200d-1f393.png
new file mode 100644
index 0000000000..e734831ced
Binary files /dev/null and b/img-microsoft-256/1f468-200d-1f393.png differ
diff --git a/img-microsoft-256/1f468-200d-1f3a4.png b/img-microsoft-256/1f468-200d-1f3a4.png
new file mode 100644
index 0000000000..60243c19d5
Binary files /dev/null and b/img-microsoft-256/1f468-200d-1f3a4.png differ
diff --git a/img-microsoft-256/1f468-200d-1f3a8.png b/img-microsoft-256/1f468-200d-1f3a8.png
new file mode 100644
index 0000000000..a443f1c989
Binary files /dev/null and b/img-microsoft-256/1f468-200d-1f3a8.png differ
diff --git a/img-microsoft-256/1f468-200d-1f3eb.png b/img-microsoft-256/1f468-200d-1f3eb.png
new file mode 100644
index 0000000000..8c3ea68daa
Binary files /dev/null and b/img-microsoft-256/1f468-200d-1f3eb.png differ
diff --git a/img-microsoft-256/1f468-200d-1f3ed.png b/img-microsoft-256/1f468-200d-1f3ed.png
new file mode 100644
index 0000000000..13cb1d1a2b
Binary files /dev/null and b/img-microsoft-256/1f468-200d-1f3ed.png differ
diff --git a/img-microsoft-256/1f468-200d-1f4bc.png b/img-microsoft-256/1f468-200d-1f4bc.png
new file mode 100644
index 0000000000..0c3ad807c0
Binary files /dev/null and b/img-microsoft-256/1f468-200d-1f4bc.png differ
diff --git a/img-microsoft-256/1f468-200d-1f527.png b/img-microsoft-256/1f468-200d-1f527.png
new file mode 100644
index 0000000000..b8d2650012
Binary files /dev/null and b/img-microsoft-256/1f468-200d-1f527.png differ
diff --git a/img-microsoft-256/1f468-200d-1f52c.png b/img-microsoft-256/1f468-200d-1f52c.png
new file mode 100644
index 0000000000..b31a275ef2
Binary files /dev/null and b/img-microsoft-256/1f468-200d-1f52c.png differ
diff --git a/img-microsoft-256/1f468-200d-1f680.png b/img-microsoft-256/1f468-200d-1f680.png
new file mode 100644
index 0000000000..f231edc15f
Binary files /dev/null and b/img-microsoft-256/1f468-200d-1f680.png differ
diff --git a/img-microsoft-256/1f468-200d-1f692.png b/img-microsoft-256/1f468-200d-1f692.png
new file mode 100644
index 0000000000..eb60ed2b53
Binary files /dev/null and b/img-microsoft-256/1f468-200d-1f692.png differ
diff --git a/img-microsoft-256/1f468-200d-1f9af.png b/img-microsoft-256/1f468-200d-1f9af.png
new file mode 100644
index 0000000000..7c9d98e314
Binary files /dev/null and b/img-microsoft-256/1f468-200d-1f9af.png differ
diff --git a/img-microsoft-256/1f468-200d-1f9b0.png b/img-microsoft-256/1f468-200d-1f9b0.png
new file mode 100644
index 0000000000..148a9bca1c
Binary files /dev/null and b/img-microsoft-256/1f468-200d-1f9b0.png differ
diff --git a/img-microsoft-256/1f468-200d-1f9b1.png b/img-microsoft-256/1f468-200d-1f9b1.png
new file mode 100644
index 0000000000..fa2c3a6488
Binary files /dev/null and b/img-microsoft-256/1f468-200d-1f9b1.png differ
diff --git a/img-microsoft-256/1f468-200d-1f9b2.png b/img-microsoft-256/1f468-200d-1f9b2.png
new file mode 100644
index 0000000000..174b84dbf7
Binary files /dev/null and b/img-microsoft-256/1f468-200d-1f9b2.png differ
diff --git a/img-microsoft-256/1f468-200d-1f9b3.png b/img-microsoft-256/1f468-200d-1f9b3.png
new file mode 100644
index 0000000000..c60135114f
Binary files /dev/null and b/img-microsoft-256/1f468-200d-1f9b3.png differ
diff --git a/img-microsoft-256/1f468-200d-1f9bc.png b/img-microsoft-256/1f468-200d-1f9bc.png
new file mode 100644
index 0000000000..243a5a6b6f
Binary files /dev/null and b/img-microsoft-256/1f468-200d-1f9bc.png differ
diff --git a/img-microsoft-256/1f468-200d-1f9bd.png b/img-microsoft-256/1f468-200d-1f9bd.png
new file mode 100644
index 0000000000..b9d031e76f
Binary files /dev/null and b/img-microsoft-256/1f468-200d-1f9bd.png differ
diff --git a/img-microsoft-256/1f468-200d-2695-fe0f.png b/img-microsoft-256/1f468-200d-2695-fe0f.png
new file mode 100644
index 0000000000..9ea6b4f2d9
Binary files /dev/null and b/img-microsoft-256/1f468-200d-2695-fe0f.png differ
diff --git a/img-microsoft-256/1f468-200d-2696-fe0f.png b/img-microsoft-256/1f468-200d-2696-fe0f.png
new file mode 100644
index 0000000000..f631daea8d
Binary files /dev/null and b/img-microsoft-256/1f468-200d-2696-fe0f.png differ
diff --git a/img-microsoft-256/1f468-200d-2708-fe0f.png b/img-microsoft-256/1f468-200d-2708-fe0f.png
new file mode 100644
index 0000000000..9988e93c39
Binary files /dev/null and b/img-microsoft-256/1f468-200d-2708-fe0f.png differ
diff --git a/img-microsoft-256/1f468.png b/img-microsoft-256/1f468.png
new file mode 100644
index 0000000000..665dc786fa
Binary files /dev/null and b/img-microsoft-256/1f468.png differ
diff --git a/img-microsoft-256/1f469-1f3fb-200d-1f33e.png b/img-microsoft-256/1f469-1f3fb-200d-1f33e.png
new file mode 100644
index 0000000000..678e1ab3f6
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fb-200d-1f33e.png differ
diff --git a/img-microsoft-256/1f469-1f3fb-200d-1f373.png b/img-microsoft-256/1f469-1f3fb-200d-1f373.png
new file mode 100644
index 0000000000..598b1d7f5f
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fb-200d-1f373.png differ
diff --git a/img-microsoft-256/1f469-1f3fb-200d-1f37c.png b/img-microsoft-256/1f469-1f3fb-200d-1f37c.png
new file mode 100644
index 0000000000..4f6f84f024
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fb-200d-1f37c.png differ
diff --git a/img-microsoft-256/1f469-1f3fb-200d-1f393.png b/img-microsoft-256/1f469-1f3fb-200d-1f393.png
new file mode 100644
index 0000000000..7edcd648b8
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fb-200d-1f393.png differ
diff --git a/img-microsoft-256/1f469-1f3fb-200d-1f3a4.png b/img-microsoft-256/1f469-1f3fb-200d-1f3a4.png
new file mode 100644
index 0000000000..583cbef630
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fb-200d-1f3a4.png differ
diff --git a/img-microsoft-256/1f469-1f3fb-200d-1f3a8.png b/img-microsoft-256/1f469-1f3fb-200d-1f3a8.png
new file mode 100644
index 0000000000..9e42530606
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fb-200d-1f3a8.png differ
diff --git a/img-microsoft-256/1f469-1f3fb-200d-1f3eb.png b/img-microsoft-256/1f469-1f3fb-200d-1f3eb.png
new file mode 100644
index 0000000000..7a4993d490
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fb-200d-1f3eb.png differ
diff --git a/img-microsoft-256/1f469-1f3fb-200d-1f3ed.png b/img-microsoft-256/1f469-1f3fb-200d-1f3ed.png
new file mode 100644
index 0000000000..6c46250047
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fb-200d-1f3ed.png differ
diff --git a/img-microsoft-256/1f469-1f3fb-200d-1f4bc.png b/img-microsoft-256/1f469-1f3fb-200d-1f4bc.png
new file mode 100644
index 0000000000..ba1d5790a7
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fb-200d-1f4bc.png differ
diff --git a/img-microsoft-256/1f469-1f3fb-200d-1f527.png b/img-microsoft-256/1f469-1f3fb-200d-1f527.png
new file mode 100644
index 0000000000..01e7b5c770
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fb-200d-1f527.png differ
diff --git a/img-microsoft-256/1f469-1f3fb-200d-1f52c.png b/img-microsoft-256/1f469-1f3fb-200d-1f52c.png
new file mode 100644
index 0000000000..b13462c2ba
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fb-200d-1f52c.png differ
diff --git a/img-microsoft-256/1f469-1f3fb-200d-1f680.png b/img-microsoft-256/1f469-1f3fb-200d-1f680.png
new file mode 100644
index 0000000000..1997da71b8
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fb-200d-1f680.png differ
diff --git a/img-microsoft-256/1f469-1f3fb-200d-1f692.png b/img-microsoft-256/1f469-1f3fb-200d-1f692.png
new file mode 100644
index 0000000000..e113ff2350
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fb-200d-1f692.png differ
diff --git a/img-microsoft-256/1f469-1f3fb-200d-1f9af.png b/img-microsoft-256/1f469-1f3fb-200d-1f9af.png
new file mode 100644
index 0000000000..9f481c9cfb
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fb-200d-1f9af.png differ
diff --git a/img-microsoft-256/1f469-1f3fb-200d-1f9b0.png b/img-microsoft-256/1f469-1f3fb-200d-1f9b0.png
new file mode 100644
index 0000000000..daf341e3ec
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fb-200d-1f9b0.png differ
diff --git a/img-microsoft-256/1f469-1f3fb-200d-1f9b1.png b/img-microsoft-256/1f469-1f3fb-200d-1f9b1.png
new file mode 100644
index 0000000000..bec9bd3460
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fb-200d-1f9b1.png differ
diff --git a/img-microsoft-256/1f469-1f3fb-200d-1f9b2.png b/img-microsoft-256/1f469-1f3fb-200d-1f9b2.png
new file mode 100644
index 0000000000..955683d243
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fb-200d-1f9b2.png differ
diff --git a/img-microsoft-256/1f469-1f3fb-200d-1f9b3.png b/img-microsoft-256/1f469-1f3fb-200d-1f9b3.png
new file mode 100644
index 0000000000..35db2d1e1d
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fb-200d-1f9b3.png differ
diff --git a/img-microsoft-256/1f469-1f3fb-200d-1f9bc.png b/img-microsoft-256/1f469-1f3fb-200d-1f9bc.png
new file mode 100644
index 0000000000..18a82e2282
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fb-200d-1f9bc.png differ
diff --git a/img-microsoft-256/1f469-1f3fb-200d-1f9bd.png b/img-microsoft-256/1f469-1f3fb-200d-1f9bd.png
new file mode 100644
index 0000000000..0d7e51d155
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fb-200d-1f9bd.png differ
diff --git a/img-microsoft-256/1f469-1f3fb-200d-2695-fe0f.png b/img-microsoft-256/1f469-1f3fb-200d-2695-fe0f.png
new file mode 100644
index 0000000000..802f3ffab8
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fb-200d-2695-fe0f.png differ
diff --git a/img-microsoft-256/1f469-1f3fb-200d-2696-fe0f.png b/img-microsoft-256/1f469-1f3fb-200d-2696-fe0f.png
new file mode 100644
index 0000000000..34e3ff7ba2
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fb-200d-2696-fe0f.png differ
diff --git a/img-microsoft-256/1f469-1f3fb-200d-2708-fe0f.png b/img-microsoft-256/1f469-1f3fb-200d-2708-fe0f.png
new file mode 100644
index 0000000000..b5b261e95b
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fb-200d-2708-fe0f.png differ
diff --git a/img-microsoft-256/1f469-1f3fb.png b/img-microsoft-256/1f469-1f3fb.png
new file mode 100644
index 0000000000..ae24d2b450
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fb.png differ
diff --git a/img-microsoft-256/1f469-1f3fc-200d-1f33e.png b/img-microsoft-256/1f469-1f3fc-200d-1f33e.png
new file mode 100644
index 0000000000..66c18188c0
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fc-200d-1f33e.png differ
diff --git a/img-microsoft-256/1f469-1f3fc-200d-1f373.png b/img-microsoft-256/1f469-1f3fc-200d-1f373.png
new file mode 100644
index 0000000000..5bcfb7a99b
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fc-200d-1f373.png differ
diff --git a/img-microsoft-256/1f469-1f3fc-200d-1f37c.png b/img-microsoft-256/1f469-1f3fc-200d-1f37c.png
new file mode 100644
index 0000000000..e7f19c53d2
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fc-200d-1f37c.png differ
diff --git a/img-microsoft-256/1f469-1f3fc-200d-1f393.png b/img-microsoft-256/1f469-1f3fc-200d-1f393.png
new file mode 100644
index 0000000000..88c63a7484
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fc-200d-1f393.png differ
diff --git a/img-microsoft-256/1f469-1f3fc-200d-1f3a4.png b/img-microsoft-256/1f469-1f3fc-200d-1f3a4.png
new file mode 100644
index 0000000000..fcb93c7298
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fc-200d-1f3a4.png differ
diff --git a/img-microsoft-256/1f469-1f3fc-200d-1f3a8.png b/img-microsoft-256/1f469-1f3fc-200d-1f3a8.png
new file mode 100644
index 0000000000..e33de27f71
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fc-200d-1f3a8.png differ
diff --git a/img-microsoft-256/1f469-1f3fc-200d-1f3eb.png b/img-microsoft-256/1f469-1f3fc-200d-1f3eb.png
new file mode 100644
index 0000000000..6463bd6dc2
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fc-200d-1f3eb.png differ
diff --git a/img-microsoft-256/1f469-1f3fc-200d-1f3ed.png b/img-microsoft-256/1f469-1f3fc-200d-1f3ed.png
new file mode 100644
index 0000000000..4421517ac8
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fc-200d-1f3ed.png differ
diff --git a/img-microsoft-256/1f469-1f3fc-200d-1f4bc.png b/img-microsoft-256/1f469-1f3fc-200d-1f4bc.png
new file mode 100644
index 0000000000..8ea76185a7
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fc-200d-1f4bc.png differ
diff --git a/img-microsoft-256/1f469-1f3fc-200d-1f527.png b/img-microsoft-256/1f469-1f3fc-200d-1f527.png
new file mode 100644
index 0000000000..1f010483ee
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fc-200d-1f527.png differ
diff --git a/img-microsoft-256/1f469-1f3fc-200d-1f52c.png b/img-microsoft-256/1f469-1f3fc-200d-1f52c.png
new file mode 100644
index 0000000000..9d47901c49
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fc-200d-1f52c.png differ
diff --git a/img-microsoft-256/1f469-1f3fc-200d-1f680.png b/img-microsoft-256/1f469-1f3fc-200d-1f680.png
new file mode 100644
index 0000000000..a685758b77
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fc-200d-1f680.png differ
diff --git a/img-microsoft-256/1f469-1f3fc-200d-1f692.png b/img-microsoft-256/1f469-1f3fc-200d-1f692.png
new file mode 100644
index 0000000000..e6fc18062e
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fc-200d-1f692.png differ
diff --git a/img-microsoft-256/1f469-1f3fc-200d-1f9af.png b/img-microsoft-256/1f469-1f3fc-200d-1f9af.png
new file mode 100644
index 0000000000..3cbd1142fb
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fc-200d-1f9af.png differ
diff --git a/img-microsoft-256/1f469-1f3fc-200d-1f9b0.png b/img-microsoft-256/1f469-1f3fc-200d-1f9b0.png
new file mode 100644
index 0000000000..28e951d01a
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fc-200d-1f9b0.png differ
diff --git a/img-microsoft-256/1f469-1f3fc-200d-1f9b1.png b/img-microsoft-256/1f469-1f3fc-200d-1f9b1.png
new file mode 100644
index 0000000000..9b84bfb581
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fc-200d-1f9b1.png differ
diff --git a/img-microsoft-256/1f469-1f3fc-200d-1f9b2.png b/img-microsoft-256/1f469-1f3fc-200d-1f9b2.png
new file mode 100644
index 0000000000..cc2105e64a
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fc-200d-1f9b2.png differ
diff --git a/img-microsoft-256/1f469-1f3fc-200d-1f9b3.png b/img-microsoft-256/1f469-1f3fc-200d-1f9b3.png
new file mode 100644
index 0000000000..9d32247cee
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fc-200d-1f9b3.png differ
diff --git a/img-microsoft-256/1f469-1f3fc-200d-1f9bc.png b/img-microsoft-256/1f469-1f3fc-200d-1f9bc.png
new file mode 100644
index 0000000000..1d9c6a0f1e
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fc-200d-1f9bc.png differ
diff --git a/img-microsoft-256/1f469-1f3fc-200d-1f9bd.png b/img-microsoft-256/1f469-1f3fc-200d-1f9bd.png
new file mode 100644
index 0000000000..c179332df5
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fc-200d-1f9bd.png differ
diff --git a/img-microsoft-256/1f469-1f3fc-200d-2695-fe0f.png b/img-microsoft-256/1f469-1f3fc-200d-2695-fe0f.png
new file mode 100644
index 0000000000..44e65f457d
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fc-200d-2695-fe0f.png differ
diff --git a/img-microsoft-256/1f469-1f3fc-200d-2696-fe0f.png b/img-microsoft-256/1f469-1f3fc-200d-2696-fe0f.png
new file mode 100644
index 0000000000..68c4f442bb
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fc-200d-2696-fe0f.png differ
diff --git a/img-microsoft-256/1f469-1f3fc-200d-2708-fe0f.png b/img-microsoft-256/1f469-1f3fc-200d-2708-fe0f.png
new file mode 100644
index 0000000000..aaa05f61db
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fc-200d-2708-fe0f.png differ
diff --git a/img-microsoft-256/1f469-1f3fc.png b/img-microsoft-256/1f469-1f3fc.png
new file mode 100644
index 0000000000..5784b533e1
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fc.png differ
diff --git a/img-microsoft-256/1f469-1f3fd-200d-1f33e.png b/img-microsoft-256/1f469-1f3fd-200d-1f33e.png
new file mode 100644
index 0000000000..1ac5100e57
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fd-200d-1f33e.png differ
diff --git a/img-microsoft-256/1f469-1f3fd-200d-1f373.png b/img-microsoft-256/1f469-1f3fd-200d-1f373.png
new file mode 100644
index 0000000000..1096d3e81d
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fd-200d-1f373.png differ
diff --git a/img-microsoft-256/1f469-1f3fd-200d-1f37c.png b/img-microsoft-256/1f469-1f3fd-200d-1f37c.png
new file mode 100644
index 0000000000..fe26d2deaa
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fd-200d-1f37c.png differ
diff --git a/img-microsoft-256/1f469-1f3fd-200d-1f393.png b/img-microsoft-256/1f469-1f3fd-200d-1f393.png
new file mode 100644
index 0000000000..7a0059dcdb
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fd-200d-1f393.png differ
diff --git a/img-microsoft-256/1f469-1f3fd-200d-1f3a4.png b/img-microsoft-256/1f469-1f3fd-200d-1f3a4.png
new file mode 100644
index 0000000000..4d36a0b0c9
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fd-200d-1f3a4.png differ
diff --git a/img-microsoft-256/1f469-1f3fd-200d-1f3a8.png b/img-microsoft-256/1f469-1f3fd-200d-1f3a8.png
new file mode 100644
index 0000000000..acba0b423c
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fd-200d-1f3a8.png differ
diff --git a/img-microsoft-256/1f469-1f3fd-200d-1f3eb.png b/img-microsoft-256/1f469-1f3fd-200d-1f3eb.png
new file mode 100644
index 0000000000..dc2deb7bf7
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fd-200d-1f3eb.png differ
diff --git a/img-microsoft-256/1f469-1f3fd-200d-1f3ed.png b/img-microsoft-256/1f469-1f3fd-200d-1f3ed.png
new file mode 100644
index 0000000000..74559f0f8f
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fd-200d-1f3ed.png differ
diff --git a/img-microsoft-256/1f469-1f3fd-200d-1f4bc.png b/img-microsoft-256/1f469-1f3fd-200d-1f4bc.png
new file mode 100644
index 0000000000..b475683f46
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fd-200d-1f4bc.png differ
diff --git a/img-microsoft-256/1f469-1f3fd-200d-1f527.png b/img-microsoft-256/1f469-1f3fd-200d-1f527.png
new file mode 100644
index 0000000000..b4959aae8a
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fd-200d-1f527.png differ
diff --git a/img-microsoft-256/1f469-1f3fd-200d-1f52c.png b/img-microsoft-256/1f469-1f3fd-200d-1f52c.png
new file mode 100644
index 0000000000..499fe160e9
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fd-200d-1f52c.png differ
diff --git a/img-microsoft-256/1f469-1f3fd-200d-1f680.png b/img-microsoft-256/1f469-1f3fd-200d-1f680.png
new file mode 100644
index 0000000000..d727b5fb5e
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fd-200d-1f680.png differ
diff --git a/img-microsoft-256/1f469-1f3fd-200d-1f692.png b/img-microsoft-256/1f469-1f3fd-200d-1f692.png
new file mode 100644
index 0000000000..ebbbbed150
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fd-200d-1f692.png differ
diff --git a/img-microsoft-256/1f469-1f3fd-200d-1f9af.png b/img-microsoft-256/1f469-1f3fd-200d-1f9af.png
new file mode 100644
index 0000000000..6994e5afdb
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fd-200d-1f9af.png differ
diff --git a/img-microsoft-256/1f469-1f3fd-200d-1f9b0.png b/img-microsoft-256/1f469-1f3fd-200d-1f9b0.png
new file mode 100644
index 0000000000..ae7178d395
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fd-200d-1f9b0.png differ
diff --git a/img-microsoft-256/1f469-1f3fd-200d-1f9b1.png b/img-microsoft-256/1f469-1f3fd-200d-1f9b1.png
new file mode 100644
index 0000000000..23d4389630
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fd-200d-1f9b1.png differ
diff --git a/img-microsoft-256/1f469-1f3fd-200d-1f9b2.png b/img-microsoft-256/1f469-1f3fd-200d-1f9b2.png
new file mode 100644
index 0000000000..2e413e7324
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fd-200d-1f9b2.png differ
diff --git a/img-microsoft-256/1f469-1f3fd-200d-1f9b3.png b/img-microsoft-256/1f469-1f3fd-200d-1f9b3.png
new file mode 100644
index 0000000000..826f8bb682
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fd-200d-1f9b3.png differ
diff --git a/img-microsoft-256/1f469-1f3fd-200d-1f9bc.png b/img-microsoft-256/1f469-1f3fd-200d-1f9bc.png
new file mode 100644
index 0000000000..a03db490af
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fd-200d-1f9bc.png differ
diff --git a/img-microsoft-256/1f469-1f3fd-200d-1f9bd.png b/img-microsoft-256/1f469-1f3fd-200d-1f9bd.png
new file mode 100644
index 0000000000..dd42cea5a8
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fd-200d-1f9bd.png differ
diff --git a/img-microsoft-256/1f469-1f3fd-200d-2695-fe0f.png b/img-microsoft-256/1f469-1f3fd-200d-2695-fe0f.png
new file mode 100644
index 0000000000..eeb6aec6b9
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fd-200d-2695-fe0f.png differ
diff --git a/img-microsoft-256/1f469-1f3fd-200d-2696-fe0f.png b/img-microsoft-256/1f469-1f3fd-200d-2696-fe0f.png
new file mode 100644
index 0000000000..78af20ece1
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fd-200d-2696-fe0f.png differ
diff --git a/img-microsoft-256/1f469-1f3fd-200d-2708-fe0f.png b/img-microsoft-256/1f469-1f3fd-200d-2708-fe0f.png
new file mode 100644
index 0000000000..9581704fad
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fd-200d-2708-fe0f.png differ
diff --git a/img-microsoft-256/1f469-1f3fd.png b/img-microsoft-256/1f469-1f3fd.png
new file mode 100644
index 0000000000..4f26d09d09
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fd.png differ
diff --git a/img-microsoft-256/1f469-1f3fe-200d-1f33e.png b/img-microsoft-256/1f469-1f3fe-200d-1f33e.png
new file mode 100644
index 0000000000..5b4f0df5e1
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fe-200d-1f33e.png differ
diff --git a/img-microsoft-256/1f469-1f3fe-200d-1f373.png b/img-microsoft-256/1f469-1f3fe-200d-1f373.png
new file mode 100644
index 0000000000..f21b96e8b0
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fe-200d-1f373.png differ
diff --git a/img-microsoft-256/1f469-1f3fe-200d-1f37c.png b/img-microsoft-256/1f469-1f3fe-200d-1f37c.png
new file mode 100644
index 0000000000..298e14878a
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fe-200d-1f37c.png differ
diff --git a/img-microsoft-256/1f469-1f3fe-200d-1f393.png b/img-microsoft-256/1f469-1f3fe-200d-1f393.png
new file mode 100644
index 0000000000..2ba387b22f
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fe-200d-1f393.png differ
diff --git a/img-microsoft-256/1f469-1f3fe-200d-1f3a4.png b/img-microsoft-256/1f469-1f3fe-200d-1f3a4.png
new file mode 100644
index 0000000000..2b9b4dc8ee
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fe-200d-1f3a4.png differ
diff --git a/img-microsoft-256/1f469-1f3fe-200d-1f3a8.png b/img-microsoft-256/1f469-1f3fe-200d-1f3a8.png
new file mode 100644
index 0000000000..02ee0cbc18
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fe-200d-1f3a8.png differ
diff --git a/img-microsoft-256/1f469-1f3fe-200d-1f3eb.png b/img-microsoft-256/1f469-1f3fe-200d-1f3eb.png
new file mode 100644
index 0000000000..9b1de46cc0
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fe-200d-1f3eb.png differ
diff --git a/img-microsoft-256/1f469-1f3fe-200d-1f3ed.png b/img-microsoft-256/1f469-1f3fe-200d-1f3ed.png
new file mode 100644
index 0000000000..0ed932ec9a
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fe-200d-1f3ed.png differ
diff --git a/img-microsoft-256/1f469-1f3fe-200d-1f4bc.png b/img-microsoft-256/1f469-1f3fe-200d-1f4bc.png
new file mode 100644
index 0000000000..dedf87f2e5
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fe-200d-1f4bc.png differ
diff --git a/img-microsoft-256/1f469-1f3fe-200d-1f527.png b/img-microsoft-256/1f469-1f3fe-200d-1f527.png
new file mode 100644
index 0000000000..628c6a9669
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fe-200d-1f527.png differ
diff --git a/img-microsoft-256/1f469-1f3fe-200d-1f52c.png b/img-microsoft-256/1f469-1f3fe-200d-1f52c.png
new file mode 100644
index 0000000000..1dee679354
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fe-200d-1f52c.png differ
diff --git a/img-microsoft-256/1f469-1f3fe-200d-1f680.png b/img-microsoft-256/1f469-1f3fe-200d-1f680.png
new file mode 100644
index 0000000000..07a261a713
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fe-200d-1f680.png differ
diff --git a/img-microsoft-256/1f469-1f3fe-200d-1f692.png b/img-microsoft-256/1f469-1f3fe-200d-1f692.png
new file mode 100644
index 0000000000..b691bc7ec9
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fe-200d-1f692.png differ
diff --git a/img-microsoft-256/1f469-1f3fe-200d-1f9af.png b/img-microsoft-256/1f469-1f3fe-200d-1f9af.png
new file mode 100644
index 0000000000..426bf13f5f
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fe-200d-1f9af.png differ
diff --git a/img-microsoft-256/1f469-1f3fe-200d-1f9b0.png b/img-microsoft-256/1f469-1f3fe-200d-1f9b0.png
new file mode 100644
index 0000000000..0b9e617802
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fe-200d-1f9b0.png differ
diff --git a/img-microsoft-256/1f469-1f3fe-200d-1f9b1.png b/img-microsoft-256/1f469-1f3fe-200d-1f9b1.png
new file mode 100644
index 0000000000..aff2850d97
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fe-200d-1f9b1.png differ
diff --git a/img-microsoft-256/1f469-1f3fe-200d-1f9b2.png b/img-microsoft-256/1f469-1f3fe-200d-1f9b2.png
new file mode 100644
index 0000000000..0f3b12a705
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fe-200d-1f9b2.png differ
diff --git a/img-microsoft-256/1f469-1f3fe-200d-1f9b3.png b/img-microsoft-256/1f469-1f3fe-200d-1f9b3.png
new file mode 100644
index 0000000000..2b7d9dfb1d
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fe-200d-1f9b3.png differ
diff --git a/img-microsoft-256/1f469-1f3fe-200d-1f9bc.png b/img-microsoft-256/1f469-1f3fe-200d-1f9bc.png
new file mode 100644
index 0000000000..e866dc7850
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fe-200d-1f9bc.png differ
diff --git a/img-microsoft-256/1f469-1f3fe-200d-1f9bd.png b/img-microsoft-256/1f469-1f3fe-200d-1f9bd.png
new file mode 100644
index 0000000000..64c619b3b4
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fe-200d-1f9bd.png differ
diff --git a/img-microsoft-256/1f469-1f3fe-200d-2695-fe0f.png b/img-microsoft-256/1f469-1f3fe-200d-2695-fe0f.png
new file mode 100644
index 0000000000..1435ce01f5
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fe-200d-2695-fe0f.png differ
diff --git a/img-microsoft-256/1f469-1f3fe-200d-2696-fe0f.png b/img-microsoft-256/1f469-1f3fe-200d-2696-fe0f.png
new file mode 100644
index 0000000000..ed71a668f5
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fe-200d-2696-fe0f.png differ
diff --git a/img-microsoft-256/1f469-1f3fe-200d-2708-fe0f.png b/img-microsoft-256/1f469-1f3fe-200d-2708-fe0f.png
new file mode 100644
index 0000000000..bd4da2e967
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fe-200d-2708-fe0f.png differ
diff --git a/img-microsoft-256/1f469-1f3fe.png b/img-microsoft-256/1f469-1f3fe.png
new file mode 100644
index 0000000000..1509177421
Binary files /dev/null and b/img-microsoft-256/1f469-1f3fe.png differ
diff --git a/img-microsoft-256/1f469-1f3ff-200d-1f33e.png b/img-microsoft-256/1f469-1f3ff-200d-1f33e.png
new file mode 100644
index 0000000000..3e828a31cb
Binary files /dev/null and b/img-microsoft-256/1f469-1f3ff-200d-1f33e.png differ
diff --git a/img-microsoft-256/1f469-1f3ff-200d-1f373.png b/img-microsoft-256/1f469-1f3ff-200d-1f373.png
new file mode 100644
index 0000000000..1194bd47c8
Binary files /dev/null and b/img-microsoft-256/1f469-1f3ff-200d-1f373.png differ
diff --git a/img-microsoft-256/1f469-1f3ff-200d-1f37c.png b/img-microsoft-256/1f469-1f3ff-200d-1f37c.png
new file mode 100644
index 0000000000..26366e49b4
Binary files /dev/null and b/img-microsoft-256/1f469-1f3ff-200d-1f37c.png differ
diff --git a/img-microsoft-256/1f469-1f3ff-200d-1f393.png b/img-microsoft-256/1f469-1f3ff-200d-1f393.png
new file mode 100644
index 0000000000..900e718997
Binary files /dev/null and b/img-microsoft-256/1f469-1f3ff-200d-1f393.png differ
diff --git a/img-microsoft-256/1f469-1f3ff-200d-1f3a4.png b/img-microsoft-256/1f469-1f3ff-200d-1f3a4.png
new file mode 100644
index 0000000000..aa0615d8ca
Binary files /dev/null and b/img-microsoft-256/1f469-1f3ff-200d-1f3a4.png differ
diff --git a/img-microsoft-256/1f469-1f3ff-200d-1f3a8.png b/img-microsoft-256/1f469-1f3ff-200d-1f3a8.png
new file mode 100644
index 0000000000..41d51ac0f5
Binary files /dev/null and b/img-microsoft-256/1f469-1f3ff-200d-1f3a8.png differ
diff --git a/img-microsoft-256/1f469-1f3ff-200d-1f3eb.png b/img-microsoft-256/1f469-1f3ff-200d-1f3eb.png
new file mode 100644
index 0000000000..4bf7355ada
Binary files /dev/null and b/img-microsoft-256/1f469-1f3ff-200d-1f3eb.png differ
diff --git a/img-microsoft-256/1f469-1f3ff-200d-1f3ed.png b/img-microsoft-256/1f469-1f3ff-200d-1f3ed.png
new file mode 100644
index 0000000000..dcce7c8c77
Binary files /dev/null and b/img-microsoft-256/1f469-1f3ff-200d-1f3ed.png differ
diff --git a/img-microsoft-256/1f469-1f3ff-200d-1f4bc.png b/img-microsoft-256/1f469-1f3ff-200d-1f4bc.png
new file mode 100644
index 0000000000..bbbb1bea33
Binary files /dev/null and b/img-microsoft-256/1f469-1f3ff-200d-1f4bc.png differ
diff --git a/img-microsoft-256/1f469-1f3ff-200d-1f527.png b/img-microsoft-256/1f469-1f3ff-200d-1f527.png
new file mode 100644
index 0000000000..179563ce5d
Binary files /dev/null and b/img-microsoft-256/1f469-1f3ff-200d-1f527.png differ
diff --git a/img-microsoft-256/1f469-1f3ff-200d-1f52c.png b/img-microsoft-256/1f469-1f3ff-200d-1f52c.png
new file mode 100644
index 0000000000..86b380bdc4
Binary files /dev/null and b/img-microsoft-256/1f469-1f3ff-200d-1f52c.png differ
diff --git a/img-microsoft-256/1f469-1f3ff-200d-1f680.png b/img-microsoft-256/1f469-1f3ff-200d-1f680.png
new file mode 100644
index 0000000000..19308742f0
Binary files /dev/null and b/img-microsoft-256/1f469-1f3ff-200d-1f680.png differ
diff --git a/img-microsoft-256/1f469-1f3ff-200d-1f692.png b/img-microsoft-256/1f469-1f3ff-200d-1f692.png
new file mode 100644
index 0000000000..9c8a3b69d1
Binary files /dev/null and b/img-microsoft-256/1f469-1f3ff-200d-1f692.png differ
diff --git a/img-microsoft-256/1f469-1f3ff-200d-1f9af.png b/img-microsoft-256/1f469-1f3ff-200d-1f9af.png
new file mode 100644
index 0000000000..513d22af08
Binary files /dev/null and b/img-microsoft-256/1f469-1f3ff-200d-1f9af.png differ
diff --git a/img-microsoft-256/1f469-1f3ff-200d-1f9b0.png b/img-microsoft-256/1f469-1f3ff-200d-1f9b0.png
new file mode 100644
index 0000000000..47c15fbf31
Binary files /dev/null and b/img-microsoft-256/1f469-1f3ff-200d-1f9b0.png differ
diff --git a/img-microsoft-256/1f469-1f3ff-200d-1f9b1.png b/img-microsoft-256/1f469-1f3ff-200d-1f9b1.png
new file mode 100644
index 0000000000..1f4d82d3fa
Binary files /dev/null and b/img-microsoft-256/1f469-1f3ff-200d-1f9b1.png differ
diff --git a/img-microsoft-256/1f469-1f3ff-200d-1f9b2.png b/img-microsoft-256/1f469-1f3ff-200d-1f9b2.png
new file mode 100644
index 0000000000..af3e58e0c7
Binary files /dev/null and b/img-microsoft-256/1f469-1f3ff-200d-1f9b2.png differ
diff --git a/img-microsoft-256/1f469-1f3ff-200d-1f9b3.png b/img-microsoft-256/1f469-1f3ff-200d-1f9b3.png
new file mode 100644
index 0000000000..98de2cb47a
Binary files /dev/null and b/img-microsoft-256/1f469-1f3ff-200d-1f9b3.png differ
diff --git a/img-microsoft-256/1f469-1f3ff-200d-1f9bc.png b/img-microsoft-256/1f469-1f3ff-200d-1f9bc.png
new file mode 100644
index 0000000000..c1b16c7814
Binary files /dev/null and b/img-microsoft-256/1f469-1f3ff-200d-1f9bc.png differ
diff --git a/img-microsoft-256/1f469-1f3ff-200d-1f9bd.png b/img-microsoft-256/1f469-1f3ff-200d-1f9bd.png
new file mode 100644
index 0000000000..3f4f6d2619
Binary files /dev/null and b/img-microsoft-256/1f469-1f3ff-200d-1f9bd.png differ
diff --git a/img-microsoft-256/1f469-1f3ff-200d-2695-fe0f.png b/img-microsoft-256/1f469-1f3ff-200d-2695-fe0f.png
new file mode 100644
index 0000000000..01a75a42f0
Binary files /dev/null and b/img-microsoft-256/1f469-1f3ff-200d-2695-fe0f.png differ
diff --git a/img-microsoft-256/1f469-1f3ff-200d-2696-fe0f.png b/img-microsoft-256/1f469-1f3ff-200d-2696-fe0f.png
new file mode 100644
index 0000000000..88e2e052ea
Binary files /dev/null and b/img-microsoft-256/1f469-1f3ff-200d-2696-fe0f.png differ
diff --git a/img-microsoft-256/1f469-1f3ff-200d-2708-fe0f.png b/img-microsoft-256/1f469-1f3ff-200d-2708-fe0f.png
new file mode 100644
index 0000000000..59b9296458
Binary files /dev/null and b/img-microsoft-256/1f469-1f3ff-200d-2708-fe0f.png differ
diff --git a/img-microsoft-256/1f469-1f3ff.png b/img-microsoft-256/1f469-1f3ff.png
new file mode 100644
index 0000000000..55feb7b362
Binary files /dev/null and b/img-microsoft-256/1f469-1f3ff.png differ
diff --git a/img-microsoft-256/1f469-200d-1f33e.png b/img-microsoft-256/1f469-200d-1f33e.png
new file mode 100644
index 0000000000..cd14417855
Binary files /dev/null and b/img-microsoft-256/1f469-200d-1f33e.png differ
diff --git a/img-microsoft-256/1f469-200d-1f373.png b/img-microsoft-256/1f469-200d-1f373.png
new file mode 100644
index 0000000000..84771b7fd8
Binary files /dev/null and b/img-microsoft-256/1f469-200d-1f373.png differ
diff --git a/img-microsoft-256/1f469-200d-1f37c.png b/img-microsoft-256/1f469-200d-1f37c.png
new file mode 100644
index 0000000000..e59133c0da
Binary files /dev/null and b/img-microsoft-256/1f469-200d-1f37c.png differ
diff --git a/img-microsoft-256/1f469-200d-1f393.png b/img-microsoft-256/1f469-200d-1f393.png
new file mode 100644
index 0000000000..8fff416983
Binary files /dev/null and b/img-microsoft-256/1f469-200d-1f393.png differ
diff --git a/img-microsoft-256/1f469-200d-1f3a4.png b/img-microsoft-256/1f469-200d-1f3a4.png
new file mode 100644
index 0000000000..e470efac4a
Binary files /dev/null and b/img-microsoft-256/1f469-200d-1f3a4.png differ
diff --git a/img-microsoft-256/1f469-200d-1f3a8.png b/img-microsoft-256/1f469-200d-1f3a8.png
new file mode 100644
index 0000000000..7c57c7c2ea
Binary files /dev/null and b/img-microsoft-256/1f469-200d-1f3a8.png differ
diff --git a/img-microsoft-256/1f469-200d-1f3eb.png b/img-microsoft-256/1f469-200d-1f3eb.png
new file mode 100644
index 0000000000..5e8c3c0ad9
Binary files /dev/null and b/img-microsoft-256/1f469-200d-1f3eb.png differ
diff --git a/img-microsoft-256/1f469-200d-1f3ed.png b/img-microsoft-256/1f469-200d-1f3ed.png
new file mode 100644
index 0000000000..7d00387a28
Binary files /dev/null and b/img-microsoft-256/1f469-200d-1f3ed.png differ
diff --git a/img-microsoft-256/1f469-200d-1f4bc.png b/img-microsoft-256/1f469-200d-1f4bc.png
new file mode 100644
index 0000000000..5c63c7b5cb
Binary files /dev/null and b/img-microsoft-256/1f469-200d-1f4bc.png differ
diff --git a/img-microsoft-256/1f469-200d-1f527.png b/img-microsoft-256/1f469-200d-1f527.png
new file mode 100644
index 0000000000..0677f81b39
Binary files /dev/null and b/img-microsoft-256/1f469-200d-1f527.png differ
diff --git a/img-microsoft-256/1f469-200d-1f52c.png b/img-microsoft-256/1f469-200d-1f52c.png
new file mode 100644
index 0000000000..16e43b8075
Binary files /dev/null and b/img-microsoft-256/1f469-200d-1f52c.png differ
diff --git a/img-microsoft-256/1f469-200d-1f680.png b/img-microsoft-256/1f469-200d-1f680.png
new file mode 100644
index 0000000000..1c07a3c99c
Binary files /dev/null and b/img-microsoft-256/1f469-200d-1f680.png differ
diff --git a/img-microsoft-256/1f469-200d-1f692.png b/img-microsoft-256/1f469-200d-1f692.png
new file mode 100644
index 0000000000..8165ce7d0c
Binary files /dev/null and b/img-microsoft-256/1f469-200d-1f692.png differ
diff --git a/img-microsoft-256/1f469-200d-1f9af.png b/img-microsoft-256/1f469-200d-1f9af.png
new file mode 100644
index 0000000000..bbd0c079bf
Binary files /dev/null and b/img-microsoft-256/1f469-200d-1f9af.png differ
diff --git a/img-microsoft-256/1f469-200d-1f9b0.png b/img-microsoft-256/1f469-200d-1f9b0.png
new file mode 100644
index 0000000000..2ace83b31d
Binary files /dev/null and b/img-microsoft-256/1f469-200d-1f9b0.png differ
diff --git a/img-microsoft-256/1f469-200d-1f9b1.png b/img-microsoft-256/1f469-200d-1f9b1.png
new file mode 100644
index 0000000000..edc619b4d7
Binary files /dev/null and b/img-microsoft-256/1f469-200d-1f9b1.png differ
diff --git a/img-microsoft-256/1f469-200d-1f9b2.png b/img-microsoft-256/1f469-200d-1f9b2.png
new file mode 100644
index 0000000000..08585c95f4
Binary files /dev/null and b/img-microsoft-256/1f469-200d-1f9b2.png differ
diff --git a/img-microsoft-256/1f469-200d-1f9b3.png b/img-microsoft-256/1f469-200d-1f9b3.png
new file mode 100644
index 0000000000..cbe2d2d6c1
Binary files /dev/null and b/img-microsoft-256/1f469-200d-1f9b3.png differ
diff --git a/img-microsoft-256/1f469-200d-1f9bc.png b/img-microsoft-256/1f469-200d-1f9bc.png
new file mode 100644
index 0000000000..11560f0f5f
Binary files /dev/null and b/img-microsoft-256/1f469-200d-1f9bc.png differ
diff --git a/img-microsoft-256/1f469-200d-1f9bd.png b/img-microsoft-256/1f469-200d-1f9bd.png
new file mode 100644
index 0000000000..bba0a63513
Binary files /dev/null and b/img-microsoft-256/1f469-200d-1f9bd.png differ
diff --git a/img-microsoft-256/1f469-200d-2695-fe0f.png b/img-microsoft-256/1f469-200d-2695-fe0f.png
new file mode 100644
index 0000000000..b990083249
Binary files /dev/null and b/img-microsoft-256/1f469-200d-2695-fe0f.png differ
diff --git a/img-microsoft-256/1f469-200d-2696-fe0f.png b/img-microsoft-256/1f469-200d-2696-fe0f.png
new file mode 100644
index 0000000000..49b67c1abc
Binary files /dev/null and b/img-microsoft-256/1f469-200d-2696-fe0f.png differ
diff --git a/img-microsoft-256/1f469-200d-2708-fe0f.png b/img-microsoft-256/1f469-200d-2708-fe0f.png
new file mode 100644
index 0000000000..749127b97a
Binary files /dev/null and b/img-microsoft-256/1f469-200d-2708-fe0f.png differ
diff --git a/img-microsoft-256/1f469.png b/img-microsoft-256/1f469.png
new file mode 100644
index 0000000000..32d63f9be2
Binary files /dev/null and b/img-microsoft-256/1f469.png differ
diff --git a/img-microsoft-256/1f46e-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f46e-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..68db426f26
Binary files /dev/null and b/img-microsoft-256/1f46e-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f46e-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f46e-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e5cb0e5c52
Binary files /dev/null and b/img-microsoft-256/1f46e-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f46e-1f3fb.png b/img-microsoft-256/1f46e-1f3fb.png
new file mode 100644
index 0000000000..9e852c7cfb
Binary files /dev/null and b/img-microsoft-256/1f46e-1f3fb.png differ
diff --git a/img-microsoft-256/1f46e-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f46e-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..88d047e09a
Binary files /dev/null and b/img-microsoft-256/1f46e-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f46e-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f46e-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..211e167b55
Binary files /dev/null and b/img-microsoft-256/1f46e-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f46e-1f3fc.png b/img-microsoft-256/1f46e-1f3fc.png
new file mode 100644
index 0000000000..1b8ec44d65
Binary files /dev/null and b/img-microsoft-256/1f46e-1f3fc.png differ
diff --git a/img-microsoft-256/1f46e-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f46e-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..9045c798c4
Binary files /dev/null and b/img-microsoft-256/1f46e-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f46e-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f46e-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..4eef1d7cf5
Binary files /dev/null and b/img-microsoft-256/1f46e-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f46e-1f3fd.png b/img-microsoft-256/1f46e-1f3fd.png
new file mode 100644
index 0000000000..9254319329
Binary files /dev/null and b/img-microsoft-256/1f46e-1f3fd.png differ
diff --git a/img-microsoft-256/1f46e-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f46e-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..503d4fcd8b
Binary files /dev/null and b/img-microsoft-256/1f46e-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f46e-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f46e-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..6331e4c12d
Binary files /dev/null and b/img-microsoft-256/1f46e-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f46e-1f3fe.png b/img-microsoft-256/1f46e-1f3fe.png
new file mode 100644
index 0000000000..2d27452e72
Binary files /dev/null and b/img-microsoft-256/1f46e-1f3fe.png differ
diff --git a/img-microsoft-256/1f46e-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f46e-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..912ff8c9d1
Binary files /dev/null and b/img-microsoft-256/1f46e-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f46e-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f46e-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..12eecb1731
Binary files /dev/null and b/img-microsoft-256/1f46e-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f46e-1f3ff.png b/img-microsoft-256/1f46e-1f3ff.png
new file mode 100644
index 0000000000..2b713c0eae
Binary files /dev/null and b/img-microsoft-256/1f46e-1f3ff.png differ
diff --git a/img-microsoft-256/1f46e-200d-2640-fe0f.png b/img-microsoft-256/1f46e-200d-2640-fe0f.png
new file mode 100644
index 0000000000..e8969b5e74
Binary files /dev/null and b/img-microsoft-256/1f46e-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f46e-200d-2642-fe0f.png b/img-microsoft-256/1f46e-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e2ddffaf71
Binary files /dev/null and b/img-microsoft-256/1f46e-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f46e.png b/img-microsoft-256/1f46e.png
new file mode 100644
index 0000000000..1912db2761
Binary files /dev/null and b/img-microsoft-256/1f46e.png differ
diff --git a/img-microsoft-256/1f46f-200d-2640-fe0f.png b/img-microsoft-256/1f46f-200d-2640-fe0f.png
new file mode 100644
index 0000000000..7c20ac9bdc
Binary files /dev/null and b/img-microsoft-256/1f46f-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f46f-200d-2642-fe0f.png b/img-microsoft-256/1f46f-200d-2642-fe0f.png
new file mode 100644
index 0000000000..b91f24edb2
Binary files /dev/null and b/img-microsoft-256/1f46f-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f46f.png b/img-microsoft-256/1f46f.png
new file mode 100644
index 0000000000..36a503fff4
Binary files /dev/null and b/img-microsoft-256/1f46f.png differ
diff --git a/img-microsoft-256/1f470-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f470-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..1d8efaa71f
Binary files /dev/null and b/img-microsoft-256/1f470-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f470-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f470-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a00a449762
Binary files /dev/null and b/img-microsoft-256/1f470-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f470-1f3fb.png b/img-microsoft-256/1f470-1f3fb.png
new file mode 100644
index 0000000000..c560757296
Binary files /dev/null and b/img-microsoft-256/1f470-1f3fb.png differ
diff --git a/img-microsoft-256/1f470-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f470-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..cf0e5049de
Binary files /dev/null and b/img-microsoft-256/1f470-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f470-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f470-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..260871e8d0
Binary files /dev/null and b/img-microsoft-256/1f470-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f470-1f3fc.png b/img-microsoft-256/1f470-1f3fc.png
new file mode 100644
index 0000000000..1ac896d6dc
Binary files /dev/null and b/img-microsoft-256/1f470-1f3fc.png differ
diff --git a/img-microsoft-256/1f470-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f470-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..f93517cb33
Binary files /dev/null and b/img-microsoft-256/1f470-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f470-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f470-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..78a9a5d6f2
Binary files /dev/null and b/img-microsoft-256/1f470-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f470-1f3fd.png b/img-microsoft-256/1f470-1f3fd.png
new file mode 100644
index 0000000000..270c581dd6
Binary files /dev/null and b/img-microsoft-256/1f470-1f3fd.png differ
diff --git a/img-microsoft-256/1f470-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f470-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..af4e314aec
Binary files /dev/null and b/img-microsoft-256/1f470-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f470-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f470-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..c26761a4ac
Binary files /dev/null and b/img-microsoft-256/1f470-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f470-1f3fe.png b/img-microsoft-256/1f470-1f3fe.png
new file mode 100644
index 0000000000..b3473017b1
Binary files /dev/null and b/img-microsoft-256/1f470-1f3fe.png differ
diff --git a/img-microsoft-256/1f470-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f470-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..19ced3aece
Binary files /dev/null and b/img-microsoft-256/1f470-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f470-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f470-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..8ff7767814
Binary files /dev/null and b/img-microsoft-256/1f470-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f470-1f3ff.png b/img-microsoft-256/1f470-1f3ff.png
new file mode 100644
index 0000000000..856da7f3d0
Binary files /dev/null and b/img-microsoft-256/1f470-1f3ff.png differ
diff --git a/img-microsoft-256/1f470-200d-2640-fe0f.png b/img-microsoft-256/1f470-200d-2640-fe0f.png
new file mode 100644
index 0000000000..e55c274a1b
Binary files /dev/null and b/img-microsoft-256/1f470-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f470-200d-2642-fe0f.png b/img-microsoft-256/1f470-200d-2642-fe0f.png
new file mode 100644
index 0000000000..da68673d46
Binary files /dev/null and b/img-microsoft-256/1f470-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f470.png b/img-microsoft-256/1f470.png
new file mode 100644
index 0000000000..c2b61b15bd
Binary files /dev/null and b/img-microsoft-256/1f470.png differ
diff --git a/img-microsoft-256/1f471-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f471-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..66a8017c4b
Binary files /dev/null and b/img-microsoft-256/1f471-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f471-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f471-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..123743f562
Binary files /dev/null and b/img-microsoft-256/1f471-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f471-1f3fb.png b/img-microsoft-256/1f471-1f3fb.png
new file mode 100644
index 0000000000..8a5ff21ac2
Binary files /dev/null and b/img-microsoft-256/1f471-1f3fb.png differ
diff --git a/img-microsoft-256/1f471-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f471-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..074fe7c09e
Binary files /dev/null and b/img-microsoft-256/1f471-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f471-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f471-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..0140b3774a
Binary files /dev/null and b/img-microsoft-256/1f471-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f471-1f3fc.png b/img-microsoft-256/1f471-1f3fc.png
new file mode 100644
index 0000000000..39144333cb
Binary files /dev/null and b/img-microsoft-256/1f471-1f3fc.png differ
diff --git a/img-microsoft-256/1f471-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f471-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..5cdc977b9d
Binary files /dev/null and b/img-microsoft-256/1f471-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f471-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f471-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d05c4e4c4f
Binary files /dev/null and b/img-microsoft-256/1f471-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f471-1f3fd.png b/img-microsoft-256/1f471-1f3fd.png
new file mode 100644
index 0000000000..7e06ab4bd3
Binary files /dev/null and b/img-microsoft-256/1f471-1f3fd.png differ
diff --git a/img-microsoft-256/1f471-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f471-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..c90f54a3e1
Binary files /dev/null and b/img-microsoft-256/1f471-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f471-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f471-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..221df5e65b
Binary files /dev/null and b/img-microsoft-256/1f471-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f471-1f3fe.png b/img-microsoft-256/1f471-1f3fe.png
new file mode 100644
index 0000000000..e4ab0492ce
Binary files /dev/null and b/img-microsoft-256/1f471-1f3fe.png differ
diff --git a/img-microsoft-256/1f471-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f471-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..c265d27b49
Binary files /dev/null and b/img-microsoft-256/1f471-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f471-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f471-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..54a24171f6
Binary files /dev/null and b/img-microsoft-256/1f471-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f471-1f3ff.png b/img-microsoft-256/1f471-1f3ff.png
new file mode 100644
index 0000000000..b8976f139d
Binary files /dev/null and b/img-microsoft-256/1f471-1f3ff.png differ
diff --git a/img-microsoft-256/1f471-200d-2640-fe0f.png b/img-microsoft-256/1f471-200d-2640-fe0f.png
new file mode 100644
index 0000000000..ee601affdf
Binary files /dev/null and b/img-microsoft-256/1f471-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f471-200d-2642-fe0f.png b/img-microsoft-256/1f471-200d-2642-fe0f.png
new file mode 100644
index 0000000000..4ce179559c
Binary files /dev/null and b/img-microsoft-256/1f471-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f471.png b/img-microsoft-256/1f471.png
new file mode 100644
index 0000000000..42daf70908
Binary files /dev/null and b/img-microsoft-256/1f471.png differ
diff --git a/img-microsoft-256/1f472-1f3fb.png b/img-microsoft-256/1f472-1f3fb.png
new file mode 100644
index 0000000000..31dc46f50a
Binary files /dev/null and b/img-microsoft-256/1f472-1f3fb.png differ
diff --git a/img-microsoft-256/1f472-1f3fc.png b/img-microsoft-256/1f472-1f3fc.png
new file mode 100644
index 0000000000..63001a55b1
Binary files /dev/null and b/img-microsoft-256/1f472-1f3fc.png differ
diff --git a/img-microsoft-256/1f472-1f3fd.png b/img-microsoft-256/1f472-1f3fd.png
new file mode 100644
index 0000000000..7f14ba0f29
Binary files /dev/null and b/img-microsoft-256/1f472-1f3fd.png differ
diff --git a/img-microsoft-256/1f472-1f3fe.png b/img-microsoft-256/1f472-1f3fe.png
new file mode 100644
index 0000000000..e8081f2d09
Binary files /dev/null and b/img-microsoft-256/1f472-1f3fe.png differ
diff --git a/img-microsoft-256/1f472-1f3ff.png b/img-microsoft-256/1f472-1f3ff.png
new file mode 100644
index 0000000000..d83d8c5d96
Binary files /dev/null and b/img-microsoft-256/1f472-1f3ff.png differ
diff --git a/img-microsoft-256/1f472.png b/img-microsoft-256/1f472.png
new file mode 100644
index 0000000000..ebca23f7a1
Binary files /dev/null and b/img-microsoft-256/1f472.png differ
diff --git a/img-microsoft-256/1f473-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f473-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..ecf5dec0f0
Binary files /dev/null and b/img-microsoft-256/1f473-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f473-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f473-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f79b80da9d
Binary files /dev/null and b/img-microsoft-256/1f473-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f473-1f3fb.png b/img-microsoft-256/1f473-1f3fb.png
new file mode 100644
index 0000000000..a64357d1ae
Binary files /dev/null and b/img-microsoft-256/1f473-1f3fb.png differ
diff --git a/img-microsoft-256/1f473-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f473-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..03086e371c
Binary files /dev/null and b/img-microsoft-256/1f473-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f473-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f473-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..fb0f03b75b
Binary files /dev/null and b/img-microsoft-256/1f473-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f473-1f3fc.png b/img-microsoft-256/1f473-1f3fc.png
new file mode 100644
index 0000000000..27f2e1d70a
Binary files /dev/null and b/img-microsoft-256/1f473-1f3fc.png differ
diff --git a/img-microsoft-256/1f473-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f473-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..0ccdecfc18
Binary files /dev/null and b/img-microsoft-256/1f473-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f473-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f473-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..bf603f4fe9
Binary files /dev/null and b/img-microsoft-256/1f473-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f473-1f3fd.png b/img-microsoft-256/1f473-1f3fd.png
new file mode 100644
index 0000000000..d4ad47094d
Binary files /dev/null and b/img-microsoft-256/1f473-1f3fd.png differ
diff --git a/img-microsoft-256/1f473-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f473-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..3019952bc7
Binary files /dev/null and b/img-microsoft-256/1f473-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f473-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f473-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..38914a8213
Binary files /dev/null and b/img-microsoft-256/1f473-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f473-1f3fe.png b/img-microsoft-256/1f473-1f3fe.png
new file mode 100644
index 0000000000..f627d1b7d4
Binary files /dev/null and b/img-microsoft-256/1f473-1f3fe.png differ
diff --git a/img-microsoft-256/1f473-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f473-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..ae0ce314d6
Binary files /dev/null and b/img-microsoft-256/1f473-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f473-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f473-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..0f1188ec69
Binary files /dev/null and b/img-microsoft-256/1f473-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f473-1f3ff.png b/img-microsoft-256/1f473-1f3ff.png
new file mode 100644
index 0000000000..f1b70af8fb
Binary files /dev/null and b/img-microsoft-256/1f473-1f3ff.png differ
diff --git a/img-microsoft-256/1f473-200d-2640-fe0f.png b/img-microsoft-256/1f473-200d-2640-fe0f.png
new file mode 100644
index 0000000000..908d3cb676
Binary files /dev/null and b/img-microsoft-256/1f473-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f473-200d-2642-fe0f.png b/img-microsoft-256/1f473-200d-2642-fe0f.png
new file mode 100644
index 0000000000..6c7d35b17d
Binary files /dev/null and b/img-microsoft-256/1f473-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f473.png b/img-microsoft-256/1f473.png
new file mode 100644
index 0000000000..754be33ae7
Binary files /dev/null and b/img-microsoft-256/1f473.png differ
diff --git a/img-microsoft-256/1f474-1f3fb.png b/img-microsoft-256/1f474-1f3fb.png
new file mode 100644
index 0000000000..85ac9c9ef9
Binary files /dev/null and b/img-microsoft-256/1f474-1f3fb.png differ
diff --git a/img-microsoft-256/1f474-1f3fc.png b/img-microsoft-256/1f474-1f3fc.png
new file mode 100644
index 0000000000..4b7096683c
Binary files /dev/null and b/img-microsoft-256/1f474-1f3fc.png differ
diff --git a/img-microsoft-256/1f474-1f3fd.png b/img-microsoft-256/1f474-1f3fd.png
new file mode 100644
index 0000000000..91dfff6115
Binary files /dev/null and b/img-microsoft-256/1f474-1f3fd.png differ
diff --git a/img-microsoft-256/1f474-1f3fe.png b/img-microsoft-256/1f474-1f3fe.png
new file mode 100644
index 0000000000..ad47d85c09
Binary files /dev/null and b/img-microsoft-256/1f474-1f3fe.png differ
diff --git a/img-microsoft-256/1f474-1f3ff.png b/img-microsoft-256/1f474-1f3ff.png
new file mode 100644
index 0000000000..772e586d57
Binary files /dev/null and b/img-microsoft-256/1f474-1f3ff.png differ
diff --git a/img-microsoft-256/1f474.png b/img-microsoft-256/1f474.png
new file mode 100644
index 0000000000..fd49943c49
Binary files /dev/null and b/img-microsoft-256/1f474.png differ
diff --git a/img-microsoft-256/1f475-1f3fb.png b/img-microsoft-256/1f475-1f3fb.png
new file mode 100644
index 0000000000..0e51192c69
Binary files /dev/null and b/img-microsoft-256/1f475-1f3fb.png differ
diff --git a/img-microsoft-256/1f475-1f3fc.png b/img-microsoft-256/1f475-1f3fc.png
new file mode 100644
index 0000000000..f8e3304575
Binary files /dev/null and b/img-microsoft-256/1f475-1f3fc.png differ
diff --git a/img-microsoft-256/1f475-1f3fd.png b/img-microsoft-256/1f475-1f3fd.png
new file mode 100644
index 0000000000..98ae2686e2
Binary files /dev/null and b/img-microsoft-256/1f475-1f3fd.png differ
diff --git a/img-microsoft-256/1f475-1f3fe.png b/img-microsoft-256/1f475-1f3fe.png
new file mode 100644
index 0000000000..6366bc900a
Binary files /dev/null and b/img-microsoft-256/1f475-1f3fe.png differ
diff --git a/img-microsoft-256/1f475-1f3ff.png b/img-microsoft-256/1f475-1f3ff.png
new file mode 100644
index 0000000000..0bc5670474
Binary files /dev/null and b/img-microsoft-256/1f475-1f3ff.png differ
diff --git a/img-microsoft-256/1f475.png b/img-microsoft-256/1f475.png
new file mode 100644
index 0000000000..8bd612af6c
Binary files /dev/null and b/img-microsoft-256/1f475.png differ
diff --git a/img-microsoft-256/1f476-1f3fb.png b/img-microsoft-256/1f476-1f3fb.png
new file mode 100644
index 0000000000..226849771f
Binary files /dev/null and b/img-microsoft-256/1f476-1f3fb.png differ
diff --git a/img-microsoft-256/1f476-1f3fc.png b/img-microsoft-256/1f476-1f3fc.png
new file mode 100644
index 0000000000..37ca6bf649
Binary files /dev/null and b/img-microsoft-256/1f476-1f3fc.png differ
diff --git a/img-microsoft-256/1f476-1f3fd.png b/img-microsoft-256/1f476-1f3fd.png
new file mode 100644
index 0000000000..c357285813
Binary files /dev/null and b/img-microsoft-256/1f476-1f3fd.png differ
diff --git a/img-microsoft-256/1f476-1f3fe.png b/img-microsoft-256/1f476-1f3fe.png
new file mode 100644
index 0000000000..5710640412
Binary files /dev/null and b/img-microsoft-256/1f476-1f3fe.png differ
diff --git a/img-microsoft-256/1f476-1f3ff.png b/img-microsoft-256/1f476-1f3ff.png
new file mode 100644
index 0000000000..a2e6ce2ea5
Binary files /dev/null and b/img-microsoft-256/1f476-1f3ff.png differ
diff --git a/img-microsoft-256/1f476.png b/img-microsoft-256/1f476.png
new file mode 100644
index 0000000000..c439f61f24
Binary files /dev/null and b/img-microsoft-256/1f476.png differ
diff --git a/img-microsoft-256/1f477-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f477-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..3ba633dd2f
Binary files /dev/null and b/img-microsoft-256/1f477-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f477-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f477-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e721d13207
Binary files /dev/null and b/img-microsoft-256/1f477-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f477-1f3fb.png b/img-microsoft-256/1f477-1f3fb.png
new file mode 100644
index 0000000000..97354481ee
Binary files /dev/null and b/img-microsoft-256/1f477-1f3fb.png differ
diff --git a/img-microsoft-256/1f477-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f477-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..fd25cf15a8
Binary files /dev/null and b/img-microsoft-256/1f477-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f477-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f477-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f8eed74bfe
Binary files /dev/null and b/img-microsoft-256/1f477-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f477-1f3fc.png b/img-microsoft-256/1f477-1f3fc.png
new file mode 100644
index 0000000000..ca3ac567e8
Binary files /dev/null and b/img-microsoft-256/1f477-1f3fc.png differ
diff --git a/img-microsoft-256/1f477-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f477-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..f53b8a43b1
Binary files /dev/null and b/img-microsoft-256/1f477-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f477-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f477-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..58d49d8e40
Binary files /dev/null and b/img-microsoft-256/1f477-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f477-1f3fd.png b/img-microsoft-256/1f477-1f3fd.png
new file mode 100644
index 0000000000..7dcb5345e8
Binary files /dev/null and b/img-microsoft-256/1f477-1f3fd.png differ
diff --git a/img-microsoft-256/1f477-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f477-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..4bba125fee
Binary files /dev/null and b/img-microsoft-256/1f477-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f477-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f477-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d052408356
Binary files /dev/null and b/img-microsoft-256/1f477-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f477-1f3fe.png b/img-microsoft-256/1f477-1f3fe.png
new file mode 100644
index 0000000000..c97b02878b
Binary files /dev/null and b/img-microsoft-256/1f477-1f3fe.png differ
diff --git a/img-microsoft-256/1f477-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f477-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..99575169da
Binary files /dev/null and b/img-microsoft-256/1f477-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f477-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f477-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f2f8039f8b
Binary files /dev/null and b/img-microsoft-256/1f477-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f477-1f3ff.png b/img-microsoft-256/1f477-1f3ff.png
new file mode 100644
index 0000000000..c7021f3adb
Binary files /dev/null and b/img-microsoft-256/1f477-1f3ff.png differ
diff --git a/img-microsoft-256/1f477-200d-2640-fe0f.png b/img-microsoft-256/1f477-200d-2640-fe0f.png
new file mode 100644
index 0000000000..615c649d29
Binary files /dev/null and b/img-microsoft-256/1f477-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f477-200d-2642-fe0f.png b/img-microsoft-256/1f477-200d-2642-fe0f.png
new file mode 100644
index 0000000000..607764b489
Binary files /dev/null and b/img-microsoft-256/1f477-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f477.png b/img-microsoft-256/1f477.png
new file mode 100644
index 0000000000..5f63ea2b00
Binary files /dev/null and b/img-microsoft-256/1f477.png differ
diff --git a/img-microsoft-256/1f478-1f3fb.png b/img-microsoft-256/1f478-1f3fb.png
new file mode 100644
index 0000000000..4dabc010a8
Binary files /dev/null and b/img-microsoft-256/1f478-1f3fb.png differ
diff --git a/img-microsoft-256/1f478-1f3fc.png b/img-microsoft-256/1f478-1f3fc.png
new file mode 100644
index 0000000000..754e9ee064
Binary files /dev/null and b/img-microsoft-256/1f478-1f3fc.png differ
diff --git a/img-microsoft-256/1f478-1f3fd.png b/img-microsoft-256/1f478-1f3fd.png
new file mode 100644
index 0000000000..170f0d7dcd
Binary files /dev/null and b/img-microsoft-256/1f478-1f3fd.png differ
diff --git a/img-microsoft-256/1f478-1f3fe.png b/img-microsoft-256/1f478-1f3fe.png
new file mode 100644
index 0000000000..09e67af0be
Binary files /dev/null and b/img-microsoft-256/1f478-1f3fe.png differ
diff --git a/img-microsoft-256/1f478-1f3ff.png b/img-microsoft-256/1f478-1f3ff.png
new file mode 100644
index 0000000000..4d739b5d1b
Binary files /dev/null and b/img-microsoft-256/1f478-1f3ff.png differ
diff --git a/img-microsoft-256/1f478.png b/img-microsoft-256/1f478.png
new file mode 100644
index 0000000000..cacdd8dc83
Binary files /dev/null and b/img-microsoft-256/1f478.png differ
diff --git a/img-microsoft-256/1f479.png b/img-microsoft-256/1f479.png
new file mode 100644
index 0000000000..0ae5613a1c
Binary files /dev/null and b/img-microsoft-256/1f479.png differ
diff --git a/img-microsoft-256/1f47a.png b/img-microsoft-256/1f47a.png
new file mode 100644
index 0000000000..0a00ece175
Binary files /dev/null and b/img-microsoft-256/1f47a.png differ
diff --git a/img-microsoft-256/1f47b.png b/img-microsoft-256/1f47b.png
new file mode 100644
index 0000000000..f9c7754d86
Binary files /dev/null and b/img-microsoft-256/1f47b.png differ
diff --git a/img-microsoft-256/1f47c-1f3fb.png b/img-microsoft-256/1f47c-1f3fb.png
new file mode 100644
index 0000000000..28168c0338
Binary files /dev/null and b/img-microsoft-256/1f47c-1f3fb.png differ
diff --git a/img-microsoft-256/1f47c-1f3fc.png b/img-microsoft-256/1f47c-1f3fc.png
new file mode 100644
index 0000000000..eca4e156cd
Binary files /dev/null and b/img-microsoft-256/1f47c-1f3fc.png differ
diff --git a/img-microsoft-256/1f47c-1f3fd.png b/img-microsoft-256/1f47c-1f3fd.png
new file mode 100644
index 0000000000..3c71f0a341
Binary files /dev/null and b/img-microsoft-256/1f47c-1f3fd.png differ
diff --git a/img-microsoft-256/1f47c-1f3fe.png b/img-microsoft-256/1f47c-1f3fe.png
new file mode 100644
index 0000000000..897bb77477
Binary files /dev/null and b/img-microsoft-256/1f47c-1f3fe.png differ
diff --git a/img-microsoft-256/1f47c-1f3ff.png b/img-microsoft-256/1f47c-1f3ff.png
new file mode 100644
index 0000000000..b8bc8a8738
Binary files /dev/null and b/img-microsoft-256/1f47c-1f3ff.png differ
diff --git a/img-microsoft-256/1f47c.png b/img-microsoft-256/1f47c.png
new file mode 100644
index 0000000000..568dd70992
Binary files /dev/null and b/img-microsoft-256/1f47c.png differ
diff --git a/img-microsoft-256/1f47d.png b/img-microsoft-256/1f47d.png
new file mode 100644
index 0000000000..49581c2d67
Binary files /dev/null and b/img-microsoft-256/1f47d.png differ
diff --git a/img-microsoft-256/1f47e.png b/img-microsoft-256/1f47e.png
new file mode 100644
index 0000000000..23ca5c1c5d
Binary files /dev/null and b/img-microsoft-256/1f47e.png differ
diff --git a/img-microsoft-256/1f47f.png b/img-microsoft-256/1f47f.png
new file mode 100644
index 0000000000..3cfb32e42b
Binary files /dev/null and b/img-microsoft-256/1f47f.png differ
diff --git a/img-microsoft-256/1f480.png b/img-microsoft-256/1f480.png
new file mode 100644
index 0000000000..7b02e891f2
Binary files /dev/null and b/img-microsoft-256/1f480.png differ
diff --git a/img-microsoft-256/1f481-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f481-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..edc6f78cdb
Binary files /dev/null and b/img-microsoft-256/1f481-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f481-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f481-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f45eb538d8
Binary files /dev/null and b/img-microsoft-256/1f481-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f481-1f3fb.png b/img-microsoft-256/1f481-1f3fb.png
new file mode 100644
index 0000000000..652b39d6b3
Binary files /dev/null and b/img-microsoft-256/1f481-1f3fb.png differ
diff --git a/img-microsoft-256/1f481-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f481-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..aad621d6a4
Binary files /dev/null and b/img-microsoft-256/1f481-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f481-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f481-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..9e7066385c
Binary files /dev/null and b/img-microsoft-256/1f481-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f481-1f3fc.png b/img-microsoft-256/1f481-1f3fc.png
new file mode 100644
index 0000000000..93e81fe553
Binary files /dev/null and b/img-microsoft-256/1f481-1f3fc.png differ
diff --git a/img-microsoft-256/1f481-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f481-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..f09d90e6cb
Binary files /dev/null and b/img-microsoft-256/1f481-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f481-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f481-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..b4dfb2af20
Binary files /dev/null and b/img-microsoft-256/1f481-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f481-1f3fd.png b/img-microsoft-256/1f481-1f3fd.png
new file mode 100644
index 0000000000..584b8c7b5b
Binary files /dev/null and b/img-microsoft-256/1f481-1f3fd.png differ
diff --git a/img-microsoft-256/1f481-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f481-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..c6f8736c34
Binary files /dev/null and b/img-microsoft-256/1f481-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f481-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f481-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..165e61fe27
Binary files /dev/null and b/img-microsoft-256/1f481-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f481-1f3fe.png b/img-microsoft-256/1f481-1f3fe.png
new file mode 100644
index 0000000000..27472009ca
Binary files /dev/null and b/img-microsoft-256/1f481-1f3fe.png differ
diff --git a/img-microsoft-256/1f481-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f481-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..7f5c845f9a
Binary files /dev/null and b/img-microsoft-256/1f481-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f481-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f481-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e81ed43260
Binary files /dev/null and b/img-microsoft-256/1f481-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f481-1f3ff.png b/img-microsoft-256/1f481-1f3ff.png
new file mode 100644
index 0000000000..5f28ff28b5
Binary files /dev/null and b/img-microsoft-256/1f481-1f3ff.png differ
diff --git a/img-microsoft-256/1f481-200d-2640-fe0f.png b/img-microsoft-256/1f481-200d-2640-fe0f.png
new file mode 100644
index 0000000000..8449ba1fea
Binary files /dev/null and b/img-microsoft-256/1f481-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f481-200d-2642-fe0f.png b/img-microsoft-256/1f481-200d-2642-fe0f.png
new file mode 100644
index 0000000000..946c815a20
Binary files /dev/null and b/img-microsoft-256/1f481-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f481.png b/img-microsoft-256/1f481.png
new file mode 100644
index 0000000000..e3e5b8afbf
Binary files /dev/null and b/img-microsoft-256/1f481.png differ
diff --git a/img-microsoft-256/1f482-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f482-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..e4f5933b99
Binary files /dev/null and b/img-microsoft-256/1f482-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f482-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f482-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..4ba3237a5d
Binary files /dev/null and b/img-microsoft-256/1f482-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f482-1f3fb.png b/img-microsoft-256/1f482-1f3fb.png
new file mode 100644
index 0000000000..b0fad3d3c6
Binary files /dev/null and b/img-microsoft-256/1f482-1f3fb.png differ
diff --git a/img-microsoft-256/1f482-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f482-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..b404f84609
Binary files /dev/null and b/img-microsoft-256/1f482-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f482-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f482-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..2e6592aa06
Binary files /dev/null and b/img-microsoft-256/1f482-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f482-1f3fc.png b/img-microsoft-256/1f482-1f3fc.png
new file mode 100644
index 0000000000..fa76da1793
Binary files /dev/null and b/img-microsoft-256/1f482-1f3fc.png differ
diff --git a/img-microsoft-256/1f482-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f482-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..f44e679275
Binary files /dev/null and b/img-microsoft-256/1f482-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f482-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f482-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..9b7fcdd48d
Binary files /dev/null and b/img-microsoft-256/1f482-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f482-1f3fd.png b/img-microsoft-256/1f482-1f3fd.png
new file mode 100644
index 0000000000..7202877bf9
Binary files /dev/null and b/img-microsoft-256/1f482-1f3fd.png differ
diff --git a/img-microsoft-256/1f482-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f482-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..9602114788
Binary files /dev/null and b/img-microsoft-256/1f482-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f482-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f482-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..84791b472a
Binary files /dev/null and b/img-microsoft-256/1f482-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f482-1f3fe.png b/img-microsoft-256/1f482-1f3fe.png
new file mode 100644
index 0000000000..9fe9c021c7
Binary files /dev/null and b/img-microsoft-256/1f482-1f3fe.png differ
diff --git a/img-microsoft-256/1f482-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f482-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..0c9ee11609
Binary files /dev/null and b/img-microsoft-256/1f482-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f482-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f482-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..2941534287
Binary files /dev/null and b/img-microsoft-256/1f482-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f482-1f3ff.png b/img-microsoft-256/1f482-1f3ff.png
new file mode 100644
index 0000000000..e8b550154f
Binary files /dev/null and b/img-microsoft-256/1f482-1f3ff.png differ
diff --git a/img-microsoft-256/1f482-200d-2640-fe0f.png b/img-microsoft-256/1f482-200d-2640-fe0f.png
new file mode 100644
index 0000000000..6e24edef38
Binary files /dev/null and b/img-microsoft-256/1f482-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f482-200d-2642-fe0f.png b/img-microsoft-256/1f482-200d-2642-fe0f.png
new file mode 100644
index 0000000000..98b0c0ed93
Binary files /dev/null and b/img-microsoft-256/1f482-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f482.png b/img-microsoft-256/1f482.png
new file mode 100644
index 0000000000..ad178a42a9
Binary files /dev/null and b/img-microsoft-256/1f482.png differ
diff --git a/img-microsoft-256/1f483-1f3fb.png b/img-microsoft-256/1f483-1f3fb.png
new file mode 100644
index 0000000000..a53bcf9632
Binary files /dev/null and b/img-microsoft-256/1f483-1f3fb.png differ
diff --git a/img-microsoft-256/1f483-1f3fc.png b/img-microsoft-256/1f483-1f3fc.png
new file mode 100644
index 0000000000..f3f1f70896
Binary files /dev/null and b/img-microsoft-256/1f483-1f3fc.png differ
diff --git a/img-microsoft-256/1f483-1f3fd.png b/img-microsoft-256/1f483-1f3fd.png
new file mode 100644
index 0000000000..4642e37e6a
Binary files /dev/null and b/img-microsoft-256/1f483-1f3fd.png differ
diff --git a/img-microsoft-256/1f483-1f3fe.png b/img-microsoft-256/1f483-1f3fe.png
new file mode 100644
index 0000000000..6074eed7c4
Binary files /dev/null and b/img-microsoft-256/1f483-1f3fe.png differ
diff --git a/img-microsoft-256/1f483-1f3ff.png b/img-microsoft-256/1f483-1f3ff.png
new file mode 100644
index 0000000000..33452c3c05
Binary files /dev/null and b/img-microsoft-256/1f483-1f3ff.png differ
diff --git a/img-microsoft-256/1f483.png b/img-microsoft-256/1f483.png
new file mode 100644
index 0000000000..2cc7fa269e
Binary files /dev/null and b/img-microsoft-256/1f483.png differ
diff --git a/img-microsoft-256/1f484.png b/img-microsoft-256/1f484.png
new file mode 100644
index 0000000000..a03113cff1
Binary files /dev/null and b/img-microsoft-256/1f484.png differ
diff --git a/img-microsoft-256/1f485-1f3fb.png b/img-microsoft-256/1f485-1f3fb.png
new file mode 100644
index 0000000000..baf0a4d8c6
Binary files /dev/null and b/img-microsoft-256/1f485-1f3fb.png differ
diff --git a/img-microsoft-256/1f485-1f3fc.png b/img-microsoft-256/1f485-1f3fc.png
new file mode 100644
index 0000000000..47a230d474
Binary files /dev/null and b/img-microsoft-256/1f485-1f3fc.png differ
diff --git a/img-microsoft-256/1f485-1f3fd.png b/img-microsoft-256/1f485-1f3fd.png
new file mode 100644
index 0000000000..5617330c4c
Binary files /dev/null and b/img-microsoft-256/1f485-1f3fd.png differ
diff --git a/img-microsoft-256/1f485-1f3fe.png b/img-microsoft-256/1f485-1f3fe.png
new file mode 100644
index 0000000000..10f17abf56
Binary files /dev/null and b/img-microsoft-256/1f485-1f3fe.png differ
diff --git a/img-microsoft-256/1f485-1f3ff.png b/img-microsoft-256/1f485-1f3ff.png
new file mode 100644
index 0000000000..ca52761a48
Binary files /dev/null and b/img-microsoft-256/1f485-1f3ff.png differ
diff --git a/img-microsoft-256/1f485.png b/img-microsoft-256/1f485.png
new file mode 100644
index 0000000000..b49b59c794
Binary files /dev/null and b/img-microsoft-256/1f485.png differ
diff --git a/img-microsoft-256/1f486-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f486-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..81e22b7957
Binary files /dev/null and b/img-microsoft-256/1f486-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f486-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f486-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..88016d84db
Binary files /dev/null and b/img-microsoft-256/1f486-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f486-1f3fb.png b/img-microsoft-256/1f486-1f3fb.png
new file mode 100644
index 0000000000..613a1f2ca0
Binary files /dev/null and b/img-microsoft-256/1f486-1f3fb.png differ
diff --git a/img-microsoft-256/1f486-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f486-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..d443ab6447
Binary files /dev/null and b/img-microsoft-256/1f486-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f486-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f486-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..7bf86f98f4
Binary files /dev/null and b/img-microsoft-256/1f486-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f486-1f3fc.png b/img-microsoft-256/1f486-1f3fc.png
new file mode 100644
index 0000000000..ad8f2f343e
Binary files /dev/null and b/img-microsoft-256/1f486-1f3fc.png differ
diff --git a/img-microsoft-256/1f486-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f486-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..1bd39fd125
Binary files /dev/null and b/img-microsoft-256/1f486-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f486-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f486-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..cce1c089f3
Binary files /dev/null and b/img-microsoft-256/1f486-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f486-1f3fd.png b/img-microsoft-256/1f486-1f3fd.png
new file mode 100644
index 0000000000..c97c34d913
Binary files /dev/null and b/img-microsoft-256/1f486-1f3fd.png differ
diff --git a/img-microsoft-256/1f486-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f486-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..a286d460ee
Binary files /dev/null and b/img-microsoft-256/1f486-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f486-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f486-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..3307b2993e
Binary files /dev/null and b/img-microsoft-256/1f486-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f486-1f3fe.png b/img-microsoft-256/1f486-1f3fe.png
new file mode 100644
index 0000000000..6dcd7e6a23
Binary files /dev/null and b/img-microsoft-256/1f486-1f3fe.png differ
diff --git a/img-microsoft-256/1f486-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f486-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..e7a55a40a3
Binary files /dev/null and b/img-microsoft-256/1f486-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f486-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f486-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..ee5f2fd10b
Binary files /dev/null and b/img-microsoft-256/1f486-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f486-1f3ff.png b/img-microsoft-256/1f486-1f3ff.png
new file mode 100644
index 0000000000..978caf9faa
Binary files /dev/null and b/img-microsoft-256/1f486-1f3ff.png differ
diff --git a/img-microsoft-256/1f486-200d-2640-fe0f.png b/img-microsoft-256/1f486-200d-2640-fe0f.png
new file mode 100644
index 0000000000..49e950aa77
Binary files /dev/null and b/img-microsoft-256/1f486-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f486-200d-2642-fe0f.png b/img-microsoft-256/1f486-200d-2642-fe0f.png
new file mode 100644
index 0000000000..ee9aa79aa4
Binary files /dev/null and b/img-microsoft-256/1f486-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f486.png b/img-microsoft-256/1f486.png
new file mode 100644
index 0000000000..4f21de9b3e
Binary files /dev/null and b/img-microsoft-256/1f486.png differ
diff --git a/img-microsoft-256/1f487-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f487-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..23b6709ff7
Binary files /dev/null and b/img-microsoft-256/1f487-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f487-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f487-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f3a1b6fa8e
Binary files /dev/null and b/img-microsoft-256/1f487-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f487-1f3fb.png b/img-microsoft-256/1f487-1f3fb.png
new file mode 100644
index 0000000000..913693180e
Binary files /dev/null and b/img-microsoft-256/1f487-1f3fb.png differ
diff --git a/img-microsoft-256/1f487-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f487-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..90de522efb
Binary files /dev/null and b/img-microsoft-256/1f487-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f487-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f487-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a655fa3237
Binary files /dev/null and b/img-microsoft-256/1f487-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f487-1f3fc.png b/img-microsoft-256/1f487-1f3fc.png
new file mode 100644
index 0000000000..3a31993f2d
Binary files /dev/null and b/img-microsoft-256/1f487-1f3fc.png differ
diff --git a/img-microsoft-256/1f487-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f487-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..563464bf43
Binary files /dev/null and b/img-microsoft-256/1f487-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f487-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f487-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..41461e0d20
Binary files /dev/null and b/img-microsoft-256/1f487-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f487-1f3fd.png b/img-microsoft-256/1f487-1f3fd.png
new file mode 100644
index 0000000000..d24f555dd6
Binary files /dev/null and b/img-microsoft-256/1f487-1f3fd.png differ
diff --git a/img-microsoft-256/1f487-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f487-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..c211ecf8bd
Binary files /dev/null and b/img-microsoft-256/1f487-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f487-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f487-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..c16c0f8177
Binary files /dev/null and b/img-microsoft-256/1f487-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f487-1f3fe.png b/img-microsoft-256/1f487-1f3fe.png
new file mode 100644
index 0000000000..9cc9d44ada
Binary files /dev/null and b/img-microsoft-256/1f487-1f3fe.png differ
diff --git a/img-microsoft-256/1f487-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f487-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..a0718f170f
Binary files /dev/null and b/img-microsoft-256/1f487-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f487-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f487-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..9abd196059
Binary files /dev/null and b/img-microsoft-256/1f487-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f487-1f3ff.png b/img-microsoft-256/1f487-1f3ff.png
new file mode 100644
index 0000000000..b2fd0eba9e
Binary files /dev/null and b/img-microsoft-256/1f487-1f3ff.png differ
diff --git a/img-microsoft-256/1f487-200d-2640-fe0f.png b/img-microsoft-256/1f487-200d-2640-fe0f.png
new file mode 100644
index 0000000000..35de3a952e
Binary files /dev/null and b/img-microsoft-256/1f487-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f487-200d-2642-fe0f.png b/img-microsoft-256/1f487-200d-2642-fe0f.png
new file mode 100644
index 0000000000..570e8d2a05
Binary files /dev/null and b/img-microsoft-256/1f487-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f487.png b/img-microsoft-256/1f487.png
new file mode 100644
index 0000000000..567e692f15
Binary files /dev/null and b/img-microsoft-256/1f487.png differ
diff --git a/img-microsoft-256/1f488.png b/img-microsoft-256/1f488.png
new file mode 100644
index 0000000000..24420e892d
Binary files /dev/null and b/img-microsoft-256/1f488.png differ
diff --git a/img-microsoft-256/1f489.png b/img-microsoft-256/1f489.png
new file mode 100644
index 0000000000..543dc2507c
Binary files /dev/null and b/img-microsoft-256/1f489.png differ
diff --git a/img-microsoft-256/1f48a.png b/img-microsoft-256/1f48a.png
new file mode 100644
index 0000000000..49165d214d
Binary files /dev/null and b/img-microsoft-256/1f48a.png differ
diff --git a/img-microsoft-256/1f48b.png b/img-microsoft-256/1f48b.png
new file mode 100644
index 0000000000..a528fdc5ab
Binary files /dev/null and b/img-microsoft-256/1f48b.png differ
diff --git a/img-microsoft-256/1f48c.png b/img-microsoft-256/1f48c.png
new file mode 100644
index 0000000000..3d144e6987
Binary files /dev/null and b/img-microsoft-256/1f48c.png differ
diff --git a/img-microsoft-256/1f48d.png b/img-microsoft-256/1f48d.png
new file mode 100644
index 0000000000..ac4303652f
Binary files /dev/null and b/img-microsoft-256/1f48d.png differ
diff --git a/img-microsoft-256/1f48e.png b/img-microsoft-256/1f48e.png
new file mode 100644
index 0000000000..054dc14b1e
Binary files /dev/null and b/img-microsoft-256/1f48e.png differ
diff --git a/img-microsoft-256/1f490.png b/img-microsoft-256/1f490.png
new file mode 100644
index 0000000000..210b968629
Binary files /dev/null and b/img-microsoft-256/1f490.png differ
diff --git a/img-microsoft-256/1f492.png b/img-microsoft-256/1f492.png
new file mode 100644
index 0000000000..32a5dc0718
Binary files /dev/null and b/img-microsoft-256/1f492.png differ
diff --git a/img-microsoft-256/1f493.png b/img-microsoft-256/1f493.png
new file mode 100644
index 0000000000..e4e58d11f8
Binary files /dev/null and b/img-microsoft-256/1f493.png differ
diff --git a/img-microsoft-256/1f494.png b/img-microsoft-256/1f494.png
new file mode 100644
index 0000000000..c3e72b2d0a
Binary files /dev/null and b/img-microsoft-256/1f494.png differ
diff --git a/img-microsoft-256/1f495.png b/img-microsoft-256/1f495.png
new file mode 100644
index 0000000000..ee000f322c
Binary files /dev/null and b/img-microsoft-256/1f495.png differ
diff --git a/img-microsoft-256/1f496.png b/img-microsoft-256/1f496.png
new file mode 100644
index 0000000000..a25aaac14b
Binary files /dev/null and b/img-microsoft-256/1f496.png differ
diff --git a/img-microsoft-256/1f497.png b/img-microsoft-256/1f497.png
new file mode 100644
index 0000000000..db0fc343c0
Binary files /dev/null and b/img-microsoft-256/1f497.png differ
diff --git a/img-microsoft-256/1f498.png b/img-microsoft-256/1f498.png
new file mode 100644
index 0000000000..0fd449717b
Binary files /dev/null and b/img-microsoft-256/1f498.png differ
diff --git a/img-microsoft-256/1f499.png b/img-microsoft-256/1f499.png
new file mode 100644
index 0000000000..de0aad1cf8
Binary files /dev/null and b/img-microsoft-256/1f499.png differ
diff --git a/img-microsoft-256/1f49a.png b/img-microsoft-256/1f49a.png
new file mode 100644
index 0000000000..6c53ba450f
Binary files /dev/null and b/img-microsoft-256/1f49a.png differ
diff --git a/img-microsoft-256/1f49b.png b/img-microsoft-256/1f49b.png
new file mode 100644
index 0000000000..a0adad524a
Binary files /dev/null and b/img-microsoft-256/1f49b.png differ
diff --git a/img-microsoft-256/1f49c.png b/img-microsoft-256/1f49c.png
new file mode 100644
index 0000000000..7142e07072
Binary files /dev/null and b/img-microsoft-256/1f49c.png differ
diff --git a/img-microsoft-256/1f49d.png b/img-microsoft-256/1f49d.png
new file mode 100644
index 0000000000..c2bcb582c7
Binary files /dev/null and b/img-microsoft-256/1f49d.png differ
diff --git a/img-microsoft-256/1f49e.png b/img-microsoft-256/1f49e.png
new file mode 100644
index 0000000000..80a2490bc9
Binary files /dev/null and b/img-microsoft-256/1f49e.png differ
diff --git a/img-microsoft-256/1f49f.png b/img-microsoft-256/1f49f.png
new file mode 100644
index 0000000000..b373151ffc
Binary files /dev/null and b/img-microsoft-256/1f49f.png differ
diff --git a/img-microsoft-256/1f4a0.png b/img-microsoft-256/1f4a0.png
new file mode 100644
index 0000000000..ae5a92221f
Binary files /dev/null and b/img-microsoft-256/1f4a0.png differ
diff --git a/img-microsoft-256/1f4a1.png b/img-microsoft-256/1f4a1.png
new file mode 100644
index 0000000000..3c84732e4d
Binary files /dev/null and b/img-microsoft-256/1f4a1.png differ
diff --git a/img-microsoft-256/1f4a2.png b/img-microsoft-256/1f4a2.png
new file mode 100644
index 0000000000..510df5995f
Binary files /dev/null and b/img-microsoft-256/1f4a2.png differ
diff --git a/img-microsoft-256/1f4a3.png b/img-microsoft-256/1f4a3.png
new file mode 100644
index 0000000000..09892e34b0
Binary files /dev/null and b/img-microsoft-256/1f4a3.png differ
diff --git a/img-microsoft-256/1f4a4.png b/img-microsoft-256/1f4a4.png
new file mode 100644
index 0000000000..fbf52659ef
Binary files /dev/null and b/img-microsoft-256/1f4a4.png differ
diff --git a/img-microsoft-256/1f4a5.png b/img-microsoft-256/1f4a5.png
new file mode 100644
index 0000000000..d86e3f34b2
Binary files /dev/null and b/img-microsoft-256/1f4a5.png differ
diff --git a/img-microsoft-256/1f4a6.png b/img-microsoft-256/1f4a6.png
new file mode 100644
index 0000000000..332dcdb71f
Binary files /dev/null and b/img-microsoft-256/1f4a6.png differ
diff --git a/img-microsoft-256/1f4a7.png b/img-microsoft-256/1f4a7.png
new file mode 100644
index 0000000000..3cdca0f99d
Binary files /dev/null and b/img-microsoft-256/1f4a7.png differ
diff --git a/img-microsoft-256/1f4a8.png b/img-microsoft-256/1f4a8.png
new file mode 100644
index 0000000000..d50d3f744b
Binary files /dev/null and b/img-microsoft-256/1f4a8.png differ
diff --git a/img-microsoft-256/1f4a9.png b/img-microsoft-256/1f4a9.png
new file mode 100644
index 0000000000..ffa178fc47
Binary files /dev/null and b/img-microsoft-256/1f4a9.png differ
diff --git a/img-microsoft-256/1f4aa-1f3fb.png b/img-microsoft-256/1f4aa-1f3fb.png
new file mode 100644
index 0000000000..fd49788fe3
Binary files /dev/null and b/img-microsoft-256/1f4aa-1f3fb.png differ
diff --git a/img-microsoft-256/1f4aa-1f3fc.png b/img-microsoft-256/1f4aa-1f3fc.png
new file mode 100644
index 0000000000..91f93eb7ee
Binary files /dev/null and b/img-microsoft-256/1f4aa-1f3fc.png differ
diff --git a/img-microsoft-256/1f4aa-1f3fd.png b/img-microsoft-256/1f4aa-1f3fd.png
new file mode 100644
index 0000000000..5ecb98dd9e
Binary files /dev/null and b/img-microsoft-256/1f4aa-1f3fd.png differ
diff --git a/img-microsoft-256/1f4aa-1f3fe.png b/img-microsoft-256/1f4aa-1f3fe.png
new file mode 100644
index 0000000000..89ff3bc7ab
Binary files /dev/null and b/img-microsoft-256/1f4aa-1f3fe.png differ
diff --git a/img-microsoft-256/1f4aa-1f3ff.png b/img-microsoft-256/1f4aa-1f3ff.png
new file mode 100644
index 0000000000..12b4f4be00
Binary files /dev/null and b/img-microsoft-256/1f4aa-1f3ff.png differ
diff --git a/img-microsoft-256/1f4aa.png b/img-microsoft-256/1f4aa.png
new file mode 100644
index 0000000000..309d737440
Binary files /dev/null and b/img-microsoft-256/1f4aa.png differ
diff --git a/img-microsoft-256/1f4ab.png b/img-microsoft-256/1f4ab.png
new file mode 100644
index 0000000000..452b8a34ef
Binary files /dev/null and b/img-microsoft-256/1f4ab.png differ
diff --git a/img-microsoft-256/1f4ac.png b/img-microsoft-256/1f4ac.png
new file mode 100644
index 0000000000..c32bd55840
Binary files /dev/null and b/img-microsoft-256/1f4ac.png differ
diff --git a/img-microsoft-256/1f4ad.png b/img-microsoft-256/1f4ad.png
new file mode 100644
index 0000000000..9781bd19a9
Binary files /dev/null and b/img-microsoft-256/1f4ad.png differ
diff --git a/img-microsoft-256/1f4ae.png b/img-microsoft-256/1f4ae.png
new file mode 100644
index 0000000000..6a272efd12
Binary files /dev/null and b/img-microsoft-256/1f4ae.png differ
diff --git a/img-microsoft-256/1f4af.png b/img-microsoft-256/1f4af.png
new file mode 100644
index 0000000000..bf9436317c
Binary files /dev/null and b/img-microsoft-256/1f4af.png differ
diff --git a/img-microsoft-256/1f4b0.png b/img-microsoft-256/1f4b0.png
new file mode 100644
index 0000000000..afab45c605
Binary files /dev/null and b/img-microsoft-256/1f4b0.png differ
diff --git a/img-microsoft-256/1f4b1.png b/img-microsoft-256/1f4b1.png
new file mode 100644
index 0000000000..2dc139e331
Binary files /dev/null and b/img-microsoft-256/1f4b1.png differ
diff --git a/img-microsoft-256/1f4b2.png b/img-microsoft-256/1f4b2.png
new file mode 100644
index 0000000000..26e6d52795
Binary files /dev/null and b/img-microsoft-256/1f4b2.png differ
diff --git a/img-microsoft-256/1f4b3.png b/img-microsoft-256/1f4b3.png
new file mode 100644
index 0000000000..0b4a0feea6
Binary files /dev/null and b/img-microsoft-256/1f4b3.png differ
diff --git a/img-microsoft-256/1f4b4.png b/img-microsoft-256/1f4b4.png
new file mode 100644
index 0000000000..8d4ac71098
Binary files /dev/null and b/img-microsoft-256/1f4b4.png differ
diff --git a/img-microsoft-256/1f4b5.png b/img-microsoft-256/1f4b5.png
new file mode 100644
index 0000000000..226c44a11c
Binary files /dev/null and b/img-microsoft-256/1f4b5.png differ
diff --git a/img-microsoft-256/1f4b6.png b/img-microsoft-256/1f4b6.png
new file mode 100644
index 0000000000..efc47360ab
Binary files /dev/null and b/img-microsoft-256/1f4b6.png differ
diff --git a/img-microsoft-256/1f4b7.png b/img-microsoft-256/1f4b7.png
new file mode 100644
index 0000000000..fa673f7acc
Binary files /dev/null and b/img-microsoft-256/1f4b7.png differ
diff --git a/img-microsoft-256/1f4b8.png b/img-microsoft-256/1f4b8.png
new file mode 100644
index 0000000000..ee3b4f0a2a
Binary files /dev/null and b/img-microsoft-256/1f4b8.png differ
diff --git a/img-microsoft-256/1f4b9.png b/img-microsoft-256/1f4b9.png
new file mode 100644
index 0000000000..16fcc4788e
Binary files /dev/null and b/img-microsoft-256/1f4b9.png differ
diff --git a/img-microsoft-256/1f4ba.png b/img-microsoft-256/1f4ba.png
new file mode 100644
index 0000000000..3f3f33ea23
Binary files /dev/null and b/img-microsoft-256/1f4ba.png differ
diff --git a/img-microsoft-256/1f4bb.png b/img-microsoft-256/1f4bb.png
new file mode 100644
index 0000000000..341931a50c
Binary files /dev/null and b/img-microsoft-256/1f4bb.png differ
diff --git a/img-microsoft-256/1f4bc.png b/img-microsoft-256/1f4bc.png
new file mode 100644
index 0000000000..6b029df605
Binary files /dev/null and b/img-microsoft-256/1f4bc.png differ
diff --git a/img-microsoft-256/1f4bd.png b/img-microsoft-256/1f4bd.png
new file mode 100644
index 0000000000..2c6cc676a5
Binary files /dev/null and b/img-microsoft-256/1f4bd.png differ
diff --git a/img-microsoft-256/1f4be.png b/img-microsoft-256/1f4be.png
new file mode 100644
index 0000000000..4de089af8d
Binary files /dev/null and b/img-microsoft-256/1f4be.png differ
diff --git a/img-microsoft-256/1f4bf.png b/img-microsoft-256/1f4bf.png
new file mode 100644
index 0000000000..9effd1a3e2
Binary files /dev/null and b/img-microsoft-256/1f4bf.png differ
diff --git a/img-microsoft-256/1f4c0.png b/img-microsoft-256/1f4c0.png
new file mode 100644
index 0000000000..5f8d7a87e5
Binary files /dev/null and b/img-microsoft-256/1f4c0.png differ
diff --git a/img-microsoft-256/1f4c1.png b/img-microsoft-256/1f4c1.png
new file mode 100644
index 0000000000..85fdbddcf4
Binary files /dev/null and b/img-microsoft-256/1f4c1.png differ
diff --git a/img-microsoft-256/1f4c2.png b/img-microsoft-256/1f4c2.png
new file mode 100644
index 0000000000..fbedfa9cb4
Binary files /dev/null and b/img-microsoft-256/1f4c2.png differ
diff --git a/img-microsoft-256/1f4c3.png b/img-microsoft-256/1f4c3.png
new file mode 100644
index 0000000000..08d1f4ad41
Binary files /dev/null and b/img-microsoft-256/1f4c3.png differ
diff --git a/img-microsoft-256/1f4c4.png b/img-microsoft-256/1f4c4.png
new file mode 100644
index 0000000000..913a52c040
Binary files /dev/null and b/img-microsoft-256/1f4c4.png differ
diff --git a/img-microsoft-256/1f4c5.png b/img-microsoft-256/1f4c5.png
new file mode 100644
index 0000000000..4b619ecb13
Binary files /dev/null and b/img-microsoft-256/1f4c5.png differ
diff --git a/img-microsoft-256/1f4c6.png b/img-microsoft-256/1f4c6.png
new file mode 100644
index 0000000000..f36e81083e
Binary files /dev/null and b/img-microsoft-256/1f4c6.png differ
diff --git a/img-microsoft-256/1f4c7.png b/img-microsoft-256/1f4c7.png
new file mode 100644
index 0000000000..30a493f2af
Binary files /dev/null and b/img-microsoft-256/1f4c7.png differ
diff --git a/img-microsoft-256/1f4c8.png b/img-microsoft-256/1f4c8.png
new file mode 100644
index 0000000000..3b5c1c26b0
Binary files /dev/null and b/img-microsoft-256/1f4c8.png differ
diff --git a/img-microsoft-256/1f4c9.png b/img-microsoft-256/1f4c9.png
new file mode 100644
index 0000000000..bfdadaf347
Binary files /dev/null and b/img-microsoft-256/1f4c9.png differ
diff --git a/img-microsoft-256/1f4ca.png b/img-microsoft-256/1f4ca.png
new file mode 100644
index 0000000000..57f6fcc79f
Binary files /dev/null and b/img-microsoft-256/1f4ca.png differ
diff --git a/img-microsoft-256/1f4cb.png b/img-microsoft-256/1f4cb.png
new file mode 100644
index 0000000000..f9fa362409
Binary files /dev/null and b/img-microsoft-256/1f4cb.png differ
diff --git a/img-microsoft-256/1f4cc.png b/img-microsoft-256/1f4cc.png
new file mode 100644
index 0000000000..dcda69af23
Binary files /dev/null and b/img-microsoft-256/1f4cc.png differ
diff --git a/img-microsoft-256/1f4cd.png b/img-microsoft-256/1f4cd.png
new file mode 100644
index 0000000000..b956089a41
Binary files /dev/null and b/img-microsoft-256/1f4cd.png differ
diff --git a/img-microsoft-256/1f4cf.png b/img-microsoft-256/1f4cf.png
new file mode 100644
index 0000000000..1681c80819
Binary files /dev/null and b/img-microsoft-256/1f4cf.png differ
diff --git a/img-microsoft-256/1f4d0.png b/img-microsoft-256/1f4d0.png
new file mode 100644
index 0000000000..f9d5b459d0
Binary files /dev/null and b/img-microsoft-256/1f4d0.png differ
diff --git a/img-microsoft-256/1f4d1.png b/img-microsoft-256/1f4d1.png
new file mode 100644
index 0000000000..191939452a
Binary files /dev/null and b/img-microsoft-256/1f4d1.png differ
diff --git a/img-microsoft-256/1f4d2.png b/img-microsoft-256/1f4d2.png
new file mode 100644
index 0000000000..da41d93f3d
Binary files /dev/null and b/img-microsoft-256/1f4d2.png differ
diff --git a/img-microsoft-256/1f4d3.png b/img-microsoft-256/1f4d3.png
new file mode 100644
index 0000000000..6fc97c244c
Binary files /dev/null and b/img-microsoft-256/1f4d3.png differ
diff --git a/img-microsoft-256/1f4d4.png b/img-microsoft-256/1f4d4.png
new file mode 100644
index 0000000000..6ca2308265
Binary files /dev/null and b/img-microsoft-256/1f4d4.png differ
diff --git a/img-microsoft-256/1f4d5.png b/img-microsoft-256/1f4d5.png
new file mode 100644
index 0000000000..43b2968fde
Binary files /dev/null and b/img-microsoft-256/1f4d5.png differ
diff --git a/img-microsoft-256/1f4d6.png b/img-microsoft-256/1f4d6.png
new file mode 100644
index 0000000000..c6dd371d95
Binary files /dev/null and b/img-microsoft-256/1f4d6.png differ
diff --git a/img-microsoft-256/1f4d7.png b/img-microsoft-256/1f4d7.png
new file mode 100644
index 0000000000..52e46d0300
Binary files /dev/null and b/img-microsoft-256/1f4d7.png differ
diff --git a/img-microsoft-256/1f4d8.png b/img-microsoft-256/1f4d8.png
new file mode 100644
index 0000000000..3ffc712517
Binary files /dev/null and b/img-microsoft-256/1f4d8.png differ
diff --git a/img-microsoft-256/1f4d9.png b/img-microsoft-256/1f4d9.png
new file mode 100644
index 0000000000..c349bccc60
Binary files /dev/null and b/img-microsoft-256/1f4d9.png differ
diff --git a/img-microsoft-256/1f4da.png b/img-microsoft-256/1f4da.png
new file mode 100644
index 0000000000..94855ec81b
Binary files /dev/null and b/img-microsoft-256/1f4da.png differ
diff --git a/img-microsoft-256/1f4db.png b/img-microsoft-256/1f4db.png
new file mode 100644
index 0000000000..2585f9fe00
Binary files /dev/null and b/img-microsoft-256/1f4db.png differ
diff --git a/img-microsoft-256/1f4dc.png b/img-microsoft-256/1f4dc.png
new file mode 100644
index 0000000000..e345a58521
Binary files /dev/null and b/img-microsoft-256/1f4dc.png differ
diff --git a/img-microsoft-256/1f4dd.png b/img-microsoft-256/1f4dd.png
new file mode 100644
index 0000000000..ff36fa3121
Binary files /dev/null and b/img-microsoft-256/1f4dd.png differ
diff --git a/img-microsoft-256/1f4de.png b/img-microsoft-256/1f4de.png
new file mode 100644
index 0000000000..e2e1749f5b
Binary files /dev/null and b/img-microsoft-256/1f4de.png differ
diff --git a/img-microsoft-256/1f4df.png b/img-microsoft-256/1f4df.png
new file mode 100644
index 0000000000..0d023dd838
Binary files /dev/null and b/img-microsoft-256/1f4df.png differ
diff --git a/img-microsoft-256/1f4e0.png b/img-microsoft-256/1f4e0.png
new file mode 100644
index 0000000000..cdfae6b081
Binary files /dev/null and b/img-microsoft-256/1f4e0.png differ
diff --git a/img-microsoft-256/1f4e1.png b/img-microsoft-256/1f4e1.png
new file mode 100644
index 0000000000..3afb262953
Binary files /dev/null and b/img-microsoft-256/1f4e1.png differ
diff --git a/img-microsoft-256/1f4e2.png b/img-microsoft-256/1f4e2.png
new file mode 100644
index 0000000000..7dd5970f52
Binary files /dev/null and b/img-microsoft-256/1f4e2.png differ
diff --git a/img-microsoft-256/1f4e3.png b/img-microsoft-256/1f4e3.png
new file mode 100644
index 0000000000..ee75bdb8c4
Binary files /dev/null and b/img-microsoft-256/1f4e3.png differ
diff --git a/img-microsoft-256/1f4e4.png b/img-microsoft-256/1f4e4.png
new file mode 100644
index 0000000000..54b6995b8e
Binary files /dev/null and b/img-microsoft-256/1f4e4.png differ
diff --git a/img-microsoft-256/1f4e5.png b/img-microsoft-256/1f4e5.png
new file mode 100644
index 0000000000..146a705d7a
Binary files /dev/null and b/img-microsoft-256/1f4e5.png differ
diff --git a/img-microsoft-256/1f4e6.png b/img-microsoft-256/1f4e6.png
new file mode 100644
index 0000000000..582134fd2f
Binary files /dev/null and b/img-microsoft-256/1f4e6.png differ
diff --git a/img-microsoft-256/1f4e7.png b/img-microsoft-256/1f4e7.png
new file mode 100644
index 0000000000..f2fdecffb1
Binary files /dev/null and b/img-microsoft-256/1f4e7.png differ
diff --git a/img-microsoft-256/1f4e8.png b/img-microsoft-256/1f4e8.png
new file mode 100644
index 0000000000..6f72e41bc9
Binary files /dev/null and b/img-microsoft-256/1f4e8.png differ
diff --git a/img-microsoft-256/1f4e9.png b/img-microsoft-256/1f4e9.png
new file mode 100644
index 0000000000..281f8e48dd
Binary files /dev/null and b/img-microsoft-256/1f4e9.png differ
diff --git a/img-microsoft-256/1f4ea.png b/img-microsoft-256/1f4ea.png
new file mode 100644
index 0000000000..0677410a54
Binary files /dev/null and b/img-microsoft-256/1f4ea.png differ
diff --git a/img-microsoft-256/1f4eb.png b/img-microsoft-256/1f4eb.png
new file mode 100644
index 0000000000..541539f127
Binary files /dev/null and b/img-microsoft-256/1f4eb.png differ
diff --git a/img-microsoft-256/1f4ec.png b/img-microsoft-256/1f4ec.png
new file mode 100644
index 0000000000..453a4e827f
Binary files /dev/null and b/img-microsoft-256/1f4ec.png differ
diff --git a/img-microsoft-256/1f4ed.png b/img-microsoft-256/1f4ed.png
new file mode 100644
index 0000000000..773aa3e0f3
Binary files /dev/null and b/img-microsoft-256/1f4ed.png differ
diff --git a/img-microsoft-256/1f4ee.png b/img-microsoft-256/1f4ee.png
new file mode 100644
index 0000000000..35be45d899
Binary files /dev/null and b/img-microsoft-256/1f4ee.png differ
diff --git a/img-microsoft-256/1f4ef.png b/img-microsoft-256/1f4ef.png
new file mode 100644
index 0000000000..eefdb55241
Binary files /dev/null and b/img-microsoft-256/1f4ef.png differ
diff --git a/img-microsoft-256/1f4f0.png b/img-microsoft-256/1f4f0.png
new file mode 100644
index 0000000000..3209faf460
Binary files /dev/null and b/img-microsoft-256/1f4f0.png differ
diff --git a/img-microsoft-256/1f4f1.png b/img-microsoft-256/1f4f1.png
new file mode 100644
index 0000000000..052f235f47
Binary files /dev/null and b/img-microsoft-256/1f4f1.png differ
diff --git a/img-microsoft-256/1f4f2.png b/img-microsoft-256/1f4f2.png
new file mode 100644
index 0000000000..58c86b2165
Binary files /dev/null and b/img-microsoft-256/1f4f2.png differ
diff --git a/img-microsoft-256/1f4f3.png b/img-microsoft-256/1f4f3.png
new file mode 100644
index 0000000000..979c883fbc
Binary files /dev/null and b/img-microsoft-256/1f4f3.png differ
diff --git a/img-microsoft-256/1f4f4.png b/img-microsoft-256/1f4f4.png
new file mode 100644
index 0000000000..4386516bf9
Binary files /dev/null and b/img-microsoft-256/1f4f4.png differ
diff --git a/img-microsoft-256/1f4f5.png b/img-microsoft-256/1f4f5.png
new file mode 100644
index 0000000000..ccaea322d9
Binary files /dev/null and b/img-microsoft-256/1f4f5.png differ
diff --git a/img-microsoft-256/1f4f6.png b/img-microsoft-256/1f4f6.png
new file mode 100644
index 0000000000..6df401dacc
Binary files /dev/null and b/img-microsoft-256/1f4f6.png differ
diff --git a/img-microsoft-256/1f4f7.png b/img-microsoft-256/1f4f7.png
new file mode 100644
index 0000000000..faebeae538
Binary files /dev/null and b/img-microsoft-256/1f4f7.png differ
diff --git a/img-microsoft-256/1f4f8.png b/img-microsoft-256/1f4f8.png
new file mode 100644
index 0000000000..437bd33256
Binary files /dev/null and b/img-microsoft-256/1f4f8.png differ
diff --git a/img-microsoft-256/1f4f9.png b/img-microsoft-256/1f4f9.png
new file mode 100644
index 0000000000..1efa3cdef8
Binary files /dev/null and b/img-microsoft-256/1f4f9.png differ
diff --git a/img-microsoft-256/1f4fa.png b/img-microsoft-256/1f4fa.png
new file mode 100644
index 0000000000..e7b9d83c56
Binary files /dev/null and b/img-microsoft-256/1f4fa.png differ
diff --git a/img-microsoft-256/1f4fb.png b/img-microsoft-256/1f4fb.png
new file mode 100644
index 0000000000..ba1c301087
Binary files /dev/null and b/img-microsoft-256/1f4fb.png differ
diff --git a/img-microsoft-256/1f4fc.png b/img-microsoft-256/1f4fc.png
new file mode 100644
index 0000000000..d47f89821c
Binary files /dev/null and b/img-microsoft-256/1f4fc.png differ
diff --git a/img-microsoft-256/1f4fd-fe0f.png b/img-microsoft-256/1f4fd-fe0f.png
new file mode 100644
index 0000000000..aeda72221b
Binary files /dev/null and b/img-microsoft-256/1f4fd-fe0f.png differ
diff --git a/img-microsoft-256/1f4ff.png b/img-microsoft-256/1f4ff.png
new file mode 100644
index 0000000000..d2208a7ad7
Binary files /dev/null and b/img-microsoft-256/1f4ff.png differ
diff --git a/img-microsoft-256/1f500.png b/img-microsoft-256/1f500.png
new file mode 100644
index 0000000000..8cb5841b85
Binary files /dev/null and b/img-microsoft-256/1f500.png differ
diff --git a/img-microsoft-256/1f501.png b/img-microsoft-256/1f501.png
new file mode 100644
index 0000000000..f0f848158a
Binary files /dev/null and b/img-microsoft-256/1f501.png differ
diff --git a/img-microsoft-256/1f502.png b/img-microsoft-256/1f502.png
new file mode 100644
index 0000000000..f9577a494b
Binary files /dev/null and b/img-microsoft-256/1f502.png differ
diff --git a/img-microsoft-256/1f503.png b/img-microsoft-256/1f503.png
new file mode 100644
index 0000000000..4bb51af821
Binary files /dev/null and b/img-microsoft-256/1f503.png differ
diff --git a/img-microsoft-256/1f504.png b/img-microsoft-256/1f504.png
new file mode 100644
index 0000000000..f2cdad86b4
Binary files /dev/null and b/img-microsoft-256/1f504.png differ
diff --git a/img-microsoft-256/1f505.png b/img-microsoft-256/1f505.png
new file mode 100644
index 0000000000..614cf97c81
Binary files /dev/null and b/img-microsoft-256/1f505.png differ
diff --git a/img-microsoft-256/1f506.png b/img-microsoft-256/1f506.png
new file mode 100644
index 0000000000..c2f740deb3
Binary files /dev/null and b/img-microsoft-256/1f506.png differ
diff --git a/img-microsoft-256/1f507.png b/img-microsoft-256/1f507.png
new file mode 100644
index 0000000000..43457cea9a
Binary files /dev/null and b/img-microsoft-256/1f507.png differ
diff --git a/img-microsoft-256/1f508.png b/img-microsoft-256/1f508.png
new file mode 100644
index 0000000000..52546fb0e9
Binary files /dev/null and b/img-microsoft-256/1f508.png differ
diff --git a/img-microsoft-256/1f509.png b/img-microsoft-256/1f509.png
new file mode 100644
index 0000000000..e8073e80ef
Binary files /dev/null and b/img-microsoft-256/1f509.png differ
diff --git a/img-microsoft-256/1f50a.png b/img-microsoft-256/1f50a.png
new file mode 100644
index 0000000000..b25aaa91d6
Binary files /dev/null and b/img-microsoft-256/1f50a.png differ
diff --git a/img-microsoft-256/1f50b.png b/img-microsoft-256/1f50b.png
new file mode 100644
index 0000000000..086f20eb28
Binary files /dev/null and b/img-microsoft-256/1f50b.png differ
diff --git a/img-microsoft-256/1f50c.png b/img-microsoft-256/1f50c.png
new file mode 100644
index 0000000000..431ef68c85
Binary files /dev/null and b/img-microsoft-256/1f50c.png differ
diff --git a/img-microsoft-256/1f50d.png b/img-microsoft-256/1f50d.png
new file mode 100644
index 0000000000..256e9a585a
Binary files /dev/null and b/img-microsoft-256/1f50d.png differ
diff --git a/img-microsoft-256/1f50e.png b/img-microsoft-256/1f50e.png
new file mode 100644
index 0000000000..676508409c
Binary files /dev/null and b/img-microsoft-256/1f50e.png differ
diff --git a/img-microsoft-256/1f50f.png b/img-microsoft-256/1f50f.png
new file mode 100644
index 0000000000..c83c91714e
Binary files /dev/null and b/img-microsoft-256/1f50f.png differ
diff --git a/img-microsoft-256/1f510.png b/img-microsoft-256/1f510.png
new file mode 100644
index 0000000000..aae99b982d
Binary files /dev/null and b/img-microsoft-256/1f510.png differ
diff --git a/img-microsoft-256/1f511.png b/img-microsoft-256/1f511.png
new file mode 100644
index 0000000000..804c3c15c6
Binary files /dev/null and b/img-microsoft-256/1f511.png differ
diff --git a/img-microsoft-256/1f512.png b/img-microsoft-256/1f512.png
new file mode 100644
index 0000000000..a2385a8819
Binary files /dev/null and b/img-microsoft-256/1f512.png differ
diff --git a/img-microsoft-256/1f513.png b/img-microsoft-256/1f513.png
new file mode 100644
index 0000000000..c6ff7a0dc2
Binary files /dev/null and b/img-microsoft-256/1f513.png differ
diff --git a/img-microsoft-256/1f514.png b/img-microsoft-256/1f514.png
new file mode 100644
index 0000000000..2598cdd82b
Binary files /dev/null and b/img-microsoft-256/1f514.png differ
diff --git a/img-microsoft-256/1f515.png b/img-microsoft-256/1f515.png
new file mode 100644
index 0000000000..1464cd282a
Binary files /dev/null and b/img-microsoft-256/1f515.png differ
diff --git a/img-microsoft-256/1f516.png b/img-microsoft-256/1f516.png
new file mode 100644
index 0000000000..bba5a026db
Binary files /dev/null and b/img-microsoft-256/1f516.png differ
diff --git a/img-microsoft-256/1f517.png b/img-microsoft-256/1f517.png
new file mode 100644
index 0000000000..b1cb23080a
Binary files /dev/null and b/img-microsoft-256/1f517.png differ
diff --git a/img-microsoft-256/1f518.png b/img-microsoft-256/1f518.png
new file mode 100644
index 0000000000..89b5606443
Binary files /dev/null and b/img-microsoft-256/1f518.png differ
diff --git a/img-microsoft-256/1f519.png b/img-microsoft-256/1f519.png
new file mode 100644
index 0000000000..55fa901607
Binary files /dev/null and b/img-microsoft-256/1f519.png differ
diff --git a/img-microsoft-256/1f51a.png b/img-microsoft-256/1f51a.png
new file mode 100644
index 0000000000..6f84c44315
Binary files /dev/null and b/img-microsoft-256/1f51a.png differ
diff --git a/img-microsoft-256/1f51b.png b/img-microsoft-256/1f51b.png
new file mode 100644
index 0000000000..3fc3197008
Binary files /dev/null and b/img-microsoft-256/1f51b.png differ
diff --git a/img-microsoft-256/1f51c.png b/img-microsoft-256/1f51c.png
new file mode 100644
index 0000000000..1e31e8bbad
Binary files /dev/null and b/img-microsoft-256/1f51c.png differ
diff --git a/img-microsoft-256/1f51d.png b/img-microsoft-256/1f51d.png
new file mode 100644
index 0000000000..9a3ebeaba6
Binary files /dev/null and b/img-microsoft-256/1f51d.png differ
diff --git a/img-microsoft-256/1f51e.png b/img-microsoft-256/1f51e.png
new file mode 100644
index 0000000000..ac0e754d0c
Binary files /dev/null and b/img-microsoft-256/1f51e.png differ
diff --git a/img-microsoft-256/1f51f.png b/img-microsoft-256/1f51f.png
new file mode 100644
index 0000000000..32cf193540
Binary files /dev/null and b/img-microsoft-256/1f51f.png differ
diff --git a/img-microsoft-256/1f520.png b/img-microsoft-256/1f520.png
new file mode 100644
index 0000000000..3a16542dcf
Binary files /dev/null and b/img-microsoft-256/1f520.png differ
diff --git a/img-microsoft-256/1f521.png b/img-microsoft-256/1f521.png
new file mode 100644
index 0000000000..07bb42074d
Binary files /dev/null and b/img-microsoft-256/1f521.png differ
diff --git a/img-microsoft-256/1f522.png b/img-microsoft-256/1f522.png
new file mode 100644
index 0000000000..7bd8139868
Binary files /dev/null and b/img-microsoft-256/1f522.png differ
diff --git a/img-microsoft-256/1f523.png b/img-microsoft-256/1f523.png
new file mode 100644
index 0000000000..b264e945da
Binary files /dev/null and b/img-microsoft-256/1f523.png differ
diff --git a/img-microsoft-256/1f524.png b/img-microsoft-256/1f524.png
new file mode 100644
index 0000000000..bf6bad60c2
Binary files /dev/null and b/img-microsoft-256/1f524.png differ
diff --git a/img-microsoft-256/1f525.png b/img-microsoft-256/1f525.png
new file mode 100644
index 0000000000..e713ad8c92
Binary files /dev/null and b/img-microsoft-256/1f525.png differ
diff --git a/img-microsoft-256/1f526.png b/img-microsoft-256/1f526.png
new file mode 100644
index 0000000000..0e6db08f41
Binary files /dev/null and b/img-microsoft-256/1f526.png differ
diff --git a/img-microsoft-256/1f527.png b/img-microsoft-256/1f527.png
new file mode 100644
index 0000000000..82543b6fba
Binary files /dev/null and b/img-microsoft-256/1f527.png differ
diff --git a/img-microsoft-256/1f528.png b/img-microsoft-256/1f528.png
new file mode 100644
index 0000000000..4c3947521b
Binary files /dev/null and b/img-microsoft-256/1f528.png differ
diff --git a/img-microsoft-256/1f529.png b/img-microsoft-256/1f529.png
new file mode 100644
index 0000000000..d72bacd9c5
Binary files /dev/null and b/img-microsoft-256/1f529.png differ
diff --git a/img-microsoft-256/1f52a.png b/img-microsoft-256/1f52a.png
new file mode 100644
index 0000000000..57ba2a8a8e
Binary files /dev/null and b/img-microsoft-256/1f52a.png differ
diff --git a/img-microsoft-256/1f52b.png b/img-microsoft-256/1f52b.png
new file mode 100644
index 0000000000..5160766a86
Binary files /dev/null and b/img-microsoft-256/1f52b.png differ
diff --git a/img-microsoft-256/1f52c.png b/img-microsoft-256/1f52c.png
new file mode 100644
index 0000000000..6cdcf8bcbf
Binary files /dev/null and b/img-microsoft-256/1f52c.png differ
diff --git a/img-microsoft-256/1f52d.png b/img-microsoft-256/1f52d.png
new file mode 100644
index 0000000000..6801f2cf3d
Binary files /dev/null and b/img-microsoft-256/1f52d.png differ
diff --git a/img-microsoft-256/1f52e.png b/img-microsoft-256/1f52e.png
new file mode 100644
index 0000000000..dc3dce6c07
Binary files /dev/null and b/img-microsoft-256/1f52e.png differ
diff --git a/img-microsoft-256/1f52f.png b/img-microsoft-256/1f52f.png
new file mode 100644
index 0000000000..58860edd9c
Binary files /dev/null and b/img-microsoft-256/1f52f.png differ
diff --git a/img-microsoft-256/1f530.png b/img-microsoft-256/1f530.png
new file mode 100644
index 0000000000..012d66a665
Binary files /dev/null and b/img-microsoft-256/1f530.png differ
diff --git a/img-microsoft-256/1f531.png b/img-microsoft-256/1f531.png
new file mode 100644
index 0000000000..2259bf9aed
Binary files /dev/null and b/img-microsoft-256/1f531.png differ
diff --git a/img-microsoft-256/1f532.png b/img-microsoft-256/1f532.png
new file mode 100644
index 0000000000..c909e6f1e6
Binary files /dev/null and b/img-microsoft-256/1f532.png differ
diff --git a/img-microsoft-256/1f533.png b/img-microsoft-256/1f533.png
new file mode 100644
index 0000000000..32c543d124
Binary files /dev/null and b/img-microsoft-256/1f533.png differ
diff --git a/img-microsoft-256/1f534.png b/img-microsoft-256/1f534.png
new file mode 100644
index 0000000000..1abdf95410
Binary files /dev/null and b/img-microsoft-256/1f534.png differ
diff --git a/img-microsoft-256/1f535.png b/img-microsoft-256/1f535.png
new file mode 100644
index 0000000000..87965916a3
Binary files /dev/null and b/img-microsoft-256/1f535.png differ
diff --git a/img-microsoft-256/1f536.png b/img-microsoft-256/1f536.png
new file mode 100644
index 0000000000..5f0a899682
Binary files /dev/null and b/img-microsoft-256/1f536.png differ
diff --git a/img-microsoft-256/1f537.png b/img-microsoft-256/1f537.png
new file mode 100644
index 0000000000..c172d9ba57
Binary files /dev/null and b/img-microsoft-256/1f537.png differ
diff --git a/img-microsoft-256/1f538.png b/img-microsoft-256/1f538.png
new file mode 100644
index 0000000000..b23a3a3f8b
Binary files /dev/null and b/img-microsoft-256/1f538.png differ
diff --git a/img-microsoft-256/1f539.png b/img-microsoft-256/1f539.png
new file mode 100644
index 0000000000..58165606be
Binary files /dev/null and b/img-microsoft-256/1f539.png differ
diff --git a/img-microsoft-256/1f53a.png b/img-microsoft-256/1f53a.png
new file mode 100644
index 0000000000..f4659f903a
Binary files /dev/null and b/img-microsoft-256/1f53a.png differ
diff --git a/img-microsoft-256/1f53b.png b/img-microsoft-256/1f53b.png
new file mode 100644
index 0000000000..04bea61d73
Binary files /dev/null and b/img-microsoft-256/1f53b.png differ
diff --git a/img-microsoft-256/1f53c.png b/img-microsoft-256/1f53c.png
new file mode 100644
index 0000000000..8685665596
Binary files /dev/null and b/img-microsoft-256/1f53c.png differ
diff --git a/img-microsoft-256/1f53d.png b/img-microsoft-256/1f53d.png
new file mode 100644
index 0000000000..042dc96150
Binary files /dev/null and b/img-microsoft-256/1f53d.png differ
diff --git a/img-microsoft-256/1f549-fe0f.png b/img-microsoft-256/1f549-fe0f.png
new file mode 100644
index 0000000000..366514392f
Binary files /dev/null and b/img-microsoft-256/1f549-fe0f.png differ
diff --git a/img-microsoft-256/1f54a-fe0f.png b/img-microsoft-256/1f54a-fe0f.png
new file mode 100644
index 0000000000..471b30f02d
Binary files /dev/null and b/img-microsoft-256/1f54a-fe0f.png differ
diff --git a/img-microsoft-256/1f54b.png b/img-microsoft-256/1f54b.png
new file mode 100644
index 0000000000..cf40e79e05
Binary files /dev/null and b/img-microsoft-256/1f54b.png differ
diff --git a/img-microsoft-256/1f54c.png b/img-microsoft-256/1f54c.png
new file mode 100644
index 0000000000..5889b83d99
Binary files /dev/null and b/img-microsoft-256/1f54c.png differ
diff --git a/img-microsoft-256/1f54d.png b/img-microsoft-256/1f54d.png
new file mode 100644
index 0000000000..2ebf12a637
Binary files /dev/null and b/img-microsoft-256/1f54d.png differ
diff --git a/img-microsoft-256/1f54e.png b/img-microsoft-256/1f54e.png
new file mode 100644
index 0000000000..402adc2fe6
Binary files /dev/null and b/img-microsoft-256/1f54e.png differ
diff --git a/img-microsoft-256/1f550.png b/img-microsoft-256/1f550.png
new file mode 100644
index 0000000000..efe006fbd7
Binary files /dev/null and b/img-microsoft-256/1f550.png differ
diff --git a/img-microsoft-256/1f551.png b/img-microsoft-256/1f551.png
new file mode 100644
index 0000000000..c22c17a95d
Binary files /dev/null and b/img-microsoft-256/1f551.png differ
diff --git a/img-microsoft-256/1f552.png b/img-microsoft-256/1f552.png
new file mode 100644
index 0000000000..f2fa85ce86
Binary files /dev/null and b/img-microsoft-256/1f552.png differ
diff --git a/img-microsoft-256/1f553.png b/img-microsoft-256/1f553.png
new file mode 100644
index 0000000000..f0c7f3284a
Binary files /dev/null and b/img-microsoft-256/1f553.png differ
diff --git a/img-microsoft-256/1f554.png b/img-microsoft-256/1f554.png
new file mode 100644
index 0000000000..f6056b9d71
Binary files /dev/null and b/img-microsoft-256/1f554.png differ
diff --git a/img-microsoft-256/1f555.png b/img-microsoft-256/1f555.png
new file mode 100644
index 0000000000..cb49e95519
Binary files /dev/null and b/img-microsoft-256/1f555.png differ
diff --git a/img-microsoft-256/1f556.png b/img-microsoft-256/1f556.png
new file mode 100644
index 0000000000..01f85c1580
Binary files /dev/null and b/img-microsoft-256/1f556.png differ
diff --git a/img-microsoft-256/1f557.png b/img-microsoft-256/1f557.png
new file mode 100644
index 0000000000..61cbcf6690
Binary files /dev/null and b/img-microsoft-256/1f557.png differ
diff --git a/img-microsoft-256/1f558.png b/img-microsoft-256/1f558.png
new file mode 100644
index 0000000000..b393040d95
Binary files /dev/null and b/img-microsoft-256/1f558.png differ
diff --git a/img-microsoft-256/1f559.png b/img-microsoft-256/1f559.png
new file mode 100644
index 0000000000..609c7db1aa
Binary files /dev/null and b/img-microsoft-256/1f559.png differ
diff --git a/img-microsoft-256/1f55a.png b/img-microsoft-256/1f55a.png
new file mode 100644
index 0000000000..869d4d9f94
Binary files /dev/null and b/img-microsoft-256/1f55a.png differ
diff --git a/img-microsoft-256/1f55b.png b/img-microsoft-256/1f55b.png
new file mode 100644
index 0000000000..de3a75d04a
Binary files /dev/null and b/img-microsoft-256/1f55b.png differ
diff --git a/img-microsoft-256/1f55c.png b/img-microsoft-256/1f55c.png
new file mode 100644
index 0000000000..649b31a5fc
Binary files /dev/null and b/img-microsoft-256/1f55c.png differ
diff --git a/img-microsoft-256/1f55d.png b/img-microsoft-256/1f55d.png
new file mode 100644
index 0000000000..32fc924b16
Binary files /dev/null and b/img-microsoft-256/1f55d.png differ
diff --git a/img-microsoft-256/1f55e.png b/img-microsoft-256/1f55e.png
new file mode 100644
index 0000000000..68dbbb037d
Binary files /dev/null and b/img-microsoft-256/1f55e.png differ
diff --git a/img-microsoft-256/1f55f.png b/img-microsoft-256/1f55f.png
new file mode 100644
index 0000000000..b0a2cdce7d
Binary files /dev/null and b/img-microsoft-256/1f55f.png differ
diff --git a/img-microsoft-256/1f560.png b/img-microsoft-256/1f560.png
new file mode 100644
index 0000000000..54be7ff6cd
Binary files /dev/null and b/img-microsoft-256/1f560.png differ
diff --git a/img-microsoft-256/1f561.png b/img-microsoft-256/1f561.png
new file mode 100644
index 0000000000..71ebcc5094
Binary files /dev/null and b/img-microsoft-256/1f561.png differ
diff --git a/img-microsoft-256/1f562.png b/img-microsoft-256/1f562.png
new file mode 100644
index 0000000000..205d50ff2d
Binary files /dev/null and b/img-microsoft-256/1f562.png differ
diff --git a/img-microsoft-256/1f563.png b/img-microsoft-256/1f563.png
new file mode 100644
index 0000000000..c038a2562e
Binary files /dev/null and b/img-microsoft-256/1f563.png differ
diff --git a/img-microsoft-256/1f564.png b/img-microsoft-256/1f564.png
new file mode 100644
index 0000000000..f7368eb5e1
Binary files /dev/null and b/img-microsoft-256/1f564.png differ
diff --git a/img-microsoft-256/1f565.png b/img-microsoft-256/1f565.png
new file mode 100644
index 0000000000..c582d98f2b
Binary files /dev/null and b/img-microsoft-256/1f565.png differ
diff --git a/img-microsoft-256/1f566.png b/img-microsoft-256/1f566.png
new file mode 100644
index 0000000000..7ca0740707
Binary files /dev/null and b/img-microsoft-256/1f566.png differ
diff --git a/img-microsoft-256/1f567.png b/img-microsoft-256/1f567.png
new file mode 100644
index 0000000000..793f9b0728
Binary files /dev/null and b/img-microsoft-256/1f567.png differ
diff --git a/img-microsoft-256/1f56f-fe0f.png b/img-microsoft-256/1f56f-fe0f.png
new file mode 100644
index 0000000000..1e61e15620
Binary files /dev/null and b/img-microsoft-256/1f56f-fe0f.png differ
diff --git a/img-microsoft-256/1f570-fe0f.png b/img-microsoft-256/1f570-fe0f.png
new file mode 100644
index 0000000000..b2c0b7101c
Binary files /dev/null and b/img-microsoft-256/1f570-fe0f.png differ
diff --git a/img-microsoft-256/1f573-fe0f.png b/img-microsoft-256/1f573-fe0f.png
new file mode 100644
index 0000000000..f95e52dd25
Binary files /dev/null and b/img-microsoft-256/1f573-fe0f.png differ
diff --git a/img-microsoft-256/1f574-1f3fb.png b/img-microsoft-256/1f574-1f3fb.png
new file mode 100644
index 0000000000..465b1f4a92
Binary files /dev/null and b/img-microsoft-256/1f574-1f3fb.png differ
diff --git a/img-microsoft-256/1f574-1f3fc.png b/img-microsoft-256/1f574-1f3fc.png
new file mode 100644
index 0000000000..f2b9fb8f31
Binary files /dev/null and b/img-microsoft-256/1f574-1f3fc.png differ
diff --git a/img-microsoft-256/1f574-1f3fd.png b/img-microsoft-256/1f574-1f3fd.png
new file mode 100644
index 0000000000..a277131e43
Binary files /dev/null and b/img-microsoft-256/1f574-1f3fd.png differ
diff --git a/img-microsoft-256/1f574-1f3fe.png b/img-microsoft-256/1f574-1f3fe.png
new file mode 100644
index 0000000000..f02ed20385
Binary files /dev/null and b/img-microsoft-256/1f574-1f3fe.png differ
diff --git a/img-microsoft-256/1f574-1f3ff.png b/img-microsoft-256/1f574-1f3ff.png
new file mode 100644
index 0000000000..90f107eea7
Binary files /dev/null and b/img-microsoft-256/1f574-1f3ff.png differ
diff --git a/img-microsoft-256/1f574-fe0f.png b/img-microsoft-256/1f574-fe0f.png
new file mode 100644
index 0000000000..be98a76d64
Binary files /dev/null and b/img-microsoft-256/1f574-fe0f.png differ
diff --git a/img-microsoft-256/1f575-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f575-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..947ca58265
Binary files /dev/null and b/img-microsoft-256/1f575-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f575-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f575-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..22298b5c90
Binary files /dev/null and b/img-microsoft-256/1f575-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f575-1f3fb.png b/img-microsoft-256/1f575-1f3fb.png
new file mode 100644
index 0000000000..1606566858
Binary files /dev/null and b/img-microsoft-256/1f575-1f3fb.png differ
diff --git a/img-microsoft-256/1f575-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f575-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..0c2888833e
Binary files /dev/null and b/img-microsoft-256/1f575-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f575-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f575-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..6eb1c0eb6f
Binary files /dev/null and b/img-microsoft-256/1f575-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f575-1f3fc.png b/img-microsoft-256/1f575-1f3fc.png
new file mode 100644
index 0000000000..e54aa5d792
Binary files /dev/null and b/img-microsoft-256/1f575-1f3fc.png differ
diff --git a/img-microsoft-256/1f575-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f575-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..5b96e8336c
Binary files /dev/null and b/img-microsoft-256/1f575-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f575-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f575-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d12fd4a042
Binary files /dev/null and b/img-microsoft-256/1f575-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f575-1f3fd.png b/img-microsoft-256/1f575-1f3fd.png
new file mode 100644
index 0000000000..9482519e15
Binary files /dev/null and b/img-microsoft-256/1f575-1f3fd.png differ
diff --git a/img-microsoft-256/1f575-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f575-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..c251806c4c
Binary files /dev/null and b/img-microsoft-256/1f575-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f575-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f575-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e9ca9f4a7d
Binary files /dev/null and b/img-microsoft-256/1f575-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f575-1f3fe.png b/img-microsoft-256/1f575-1f3fe.png
new file mode 100644
index 0000000000..e39f771a55
Binary files /dev/null and b/img-microsoft-256/1f575-1f3fe.png differ
diff --git a/img-microsoft-256/1f575-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f575-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..85e20c6cd9
Binary files /dev/null and b/img-microsoft-256/1f575-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f575-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f575-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..9a4b78dcb1
Binary files /dev/null and b/img-microsoft-256/1f575-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f575-1f3ff.png b/img-microsoft-256/1f575-1f3ff.png
new file mode 100644
index 0000000000..1a791a3f2b
Binary files /dev/null and b/img-microsoft-256/1f575-1f3ff.png differ
diff --git a/img-microsoft-256/1f575-fe0f-200d-2640-fe0f.png b/img-microsoft-256/1f575-fe0f-200d-2640-fe0f.png
new file mode 100644
index 0000000000..436d20da2c
Binary files /dev/null and b/img-microsoft-256/1f575-fe0f-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f575-fe0f-200d-2642-fe0f.png b/img-microsoft-256/1f575-fe0f-200d-2642-fe0f.png
new file mode 100644
index 0000000000..876bca57b4
Binary files /dev/null and b/img-microsoft-256/1f575-fe0f-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f575-fe0f.png b/img-microsoft-256/1f575-fe0f.png
new file mode 100644
index 0000000000..42ec9aac20
Binary files /dev/null and b/img-microsoft-256/1f575-fe0f.png differ
diff --git a/img-microsoft-256/1f576-fe0f.png b/img-microsoft-256/1f576-fe0f.png
new file mode 100644
index 0000000000..814cec2aa5
Binary files /dev/null and b/img-microsoft-256/1f576-fe0f.png differ
diff --git a/img-microsoft-256/1f577-fe0f.png b/img-microsoft-256/1f577-fe0f.png
new file mode 100644
index 0000000000..f931090df4
Binary files /dev/null and b/img-microsoft-256/1f577-fe0f.png differ
diff --git a/img-microsoft-256/1f578-fe0f.png b/img-microsoft-256/1f578-fe0f.png
new file mode 100644
index 0000000000..c5053327dc
Binary files /dev/null and b/img-microsoft-256/1f578-fe0f.png differ
diff --git a/img-microsoft-256/1f579-fe0f.png b/img-microsoft-256/1f579-fe0f.png
new file mode 100644
index 0000000000..fa970e874d
Binary files /dev/null and b/img-microsoft-256/1f579-fe0f.png differ
diff --git a/img-microsoft-256/1f57a-1f3fb.png b/img-microsoft-256/1f57a-1f3fb.png
new file mode 100644
index 0000000000..b633780ad6
Binary files /dev/null and b/img-microsoft-256/1f57a-1f3fb.png differ
diff --git a/img-microsoft-256/1f57a-1f3fc.png b/img-microsoft-256/1f57a-1f3fc.png
new file mode 100644
index 0000000000..c518b6da0a
Binary files /dev/null and b/img-microsoft-256/1f57a-1f3fc.png differ
diff --git a/img-microsoft-256/1f57a-1f3fd.png b/img-microsoft-256/1f57a-1f3fd.png
new file mode 100644
index 0000000000..516c71e598
Binary files /dev/null and b/img-microsoft-256/1f57a-1f3fd.png differ
diff --git a/img-microsoft-256/1f57a-1f3fe.png b/img-microsoft-256/1f57a-1f3fe.png
new file mode 100644
index 0000000000..9364376aad
Binary files /dev/null and b/img-microsoft-256/1f57a-1f3fe.png differ
diff --git a/img-microsoft-256/1f57a-1f3ff.png b/img-microsoft-256/1f57a-1f3ff.png
new file mode 100644
index 0000000000..0fe0e3a605
Binary files /dev/null and b/img-microsoft-256/1f57a-1f3ff.png differ
diff --git a/img-microsoft-256/1f57a.png b/img-microsoft-256/1f57a.png
new file mode 100644
index 0000000000..7e6cda49b5
Binary files /dev/null and b/img-microsoft-256/1f57a.png differ
diff --git a/img-microsoft-256/1f587-fe0f.png b/img-microsoft-256/1f587-fe0f.png
new file mode 100644
index 0000000000..bf38b28625
Binary files /dev/null and b/img-microsoft-256/1f587-fe0f.png differ
diff --git a/img-microsoft-256/1f58a-fe0f.png b/img-microsoft-256/1f58a-fe0f.png
new file mode 100644
index 0000000000..f48ad7dc8d
Binary files /dev/null and b/img-microsoft-256/1f58a-fe0f.png differ
diff --git a/img-microsoft-256/1f58b-fe0f.png b/img-microsoft-256/1f58b-fe0f.png
new file mode 100644
index 0000000000..c7d1328760
Binary files /dev/null and b/img-microsoft-256/1f58b-fe0f.png differ
diff --git a/img-microsoft-256/1f58c-fe0f.png b/img-microsoft-256/1f58c-fe0f.png
new file mode 100644
index 0000000000..101d5faaed
Binary files /dev/null and b/img-microsoft-256/1f58c-fe0f.png differ
diff --git a/img-microsoft-256/1f58d-fe0f.png b/img-microsoft-256/1f58d-fe0f.png
new file mode 100644
index 0000000000..7b82b0206e
Binary files /dev/null and b/img-microsoft-256/1f58d-fe0f.png differ
diff --git a/img-microsoft-256/1f590-1f3fb.png b/img-microsoft-256/1f590-1f3fb.png
new file mode 100644
index 0000000000..7691be93a8
Binary files /dev/null and b/img-microsoft-256/1f590-1f3fb.png differ
diff --git a/img-microsoft-256/1f590-1f3fc.png b/img-microsoft-256/1f590-1f3fc.png
new file mode 100644
index 0000000000..29ba8e099c
Binary files /dev/null and b/img-microsoft-256/1f590-1f3fc.png differ
diff --git a/img-microsoft-256/1f590-1f3fd.png b/img-microsoft-256/1f590-1f3fd.png
new file mode 100644
index 0000000000..7aa7291356
Binary files /dev/null and b/img-microsoft-256/1f590-1f3fd.png differ
diff --git a/img-microsoft-256/1f590-1f3fe.png b/img-microsoft-256/1f590-1f3fe.png
new file mode 100644
index 0000000000..ec4ac5b3b8
Binary files /dev/null and b/img-microsoft-256/1f590-1f3fe.png differ
diff --git a/img-microsoft-256/1f590-1f3ff.png b/img-microsoft-256/1f590-1f3ff.png
new file mode 100644
index 0000000000..167da67a87
Binary files /dev/null and b/img-microsoft-256/1f590-1f3ff.png differ
diff --git a/img-microsoft-256/1f590-fe0f.png b/img-microsoft-256/1f590-fe0f.png
new file mode 100644
index 0000000000..778646236a
Binary files /dev/null and b/img-microsoft-256/1f590-fe0f.png differ
diff --git a/img-microsoft-256/1f595-1f3fb.png b/img-microsoft-256/1f595-1f3fb.png
new file mode 100644
index 0000000000..fe9ca15328
Binary files /dev/null and b/img-microsoft-256/1f595-1f3fb.png differ
diff --git a/img-microsoft-256/1f595-1f3fc.png b/img-microsoft-256/1f595-1f3fc.png
new file mode 100644
index 0000000000..484b41f628
Binary files /dev/null and b/img-microsoft-256/1f595-1f3fc.png differ
diff --git a/img-microsoft-256/1f595-1f3fd.png b/img-microsoft-256/1f595-1f3fd.png
new file mode 100644
index 0000000000..94af62b55d
Binary files /dev/null and b/img-microsoft-256/1f595-1f3fd.png differ
diff --git a/img-microsoft-256/1f595-1f3fe.png b/img-microsoft-256/1f595-1f3fe.png
new file mode 100644
index 0000000000..732425016f
Binary files /dev/null and b/img-microsoft-256/1f595-1f3fe.png differ
diff --git a/img-microsoft-256/1f595-1f3ff.png b/img-microsoft-256/1f595-1f3ff.png
new file mode 100644
index 0000000000..f3b5da0332
Binary files /dev/null and b/img-microsoft-256/1f595-1f3ff.png differ
diff --git a/img-microsoft-256/1f595.png b/img-microsoft-256/1f595.png
new file mode 100644
index 0000000000..ea42b261d6
Binary files /dev/null and b/img-microsoft-256/1f595.png differ
diff --git a/img-microsoft-256/1f596-1f3fb.png b/img-microsoft-256/1f596-1f3fb.png
new file mode 100644
index 0000000000..908746fdf1
Binary files /dev/null and b/img-microsoft-256/1f596-1f3fb.png differ
diff --git a/img-microsoft-256/1f596-1f3fc.png b/img-microsoft-256/1f596-1f3fc.png
new file mode 100644
index 0000000000..6279a343fa
Binary files /dev/null and b/img-microsoft-256/1f596-1f3fc.png differ
diff --git a/img-microsoft-256/1f596-1f3fd.png b/img-microsoft-256/1f596-1f3fd.png
new file mode 100644
index 0000000000..84f2392cc0
Binary files /dev/null and b/img-microsoft-256/1f596-1f3fd.png differ
diff --git a/img-microsoft-256/1f596-1f3fe.png b/img-microsoft-256/1f596-1f3fe.png
new file mode 100644
index 0000000000..abb7f65362
Binary files /dev/null and b/img-microsoft-256/1f596-1f3fe.png differ
diff --git a/img-microsoft-256/1f596-1f3ff.png b/img-microsoft-256/1f596-1f3ff.png
new file mode 100644
index 0000000000..c34614221d
Binary files /dev/null and b/img-microsoft-256/1f596-1f3ff.png differ
diff --git a/img-microsoft-256/1f596.png b/img-microsoft-256/1f596.png
new file mode 100644
index 0000000000..69caa8a596
Binary files /dev/null and b/img-microsoft-256/1f596.png differ
diff --git a/img-microsoft-256/1f5a4.png b/img-microsoft-256/1f5a4.png
new file mode 100644
index 0000000000..0fbc52422a
Binary files /dev/null and b/img-microsoft-256/1f5a4.png differ
diff --git a/img-microsoft-256/1f5a5-fe0f.png b/img-microsoft-256/1f5a5-fe0f.png
new file mode 100644
index 0000000000..85e92a02c0
Binary files /dev/null and b/img-microsoft-256/1f5a5-fe0f.png differ
diff --git a/img-microsoft-256/1f5a8-fe0f.png b/img-microsoft-256/1f5a8-fe0f.png
new file mode 100644
index 0000000000..3d491fff59
Binary files /dev/null and b/img-microsoft-256/1f5a8-fe0f.png differ
diff --git a/img-microsoft-256/1f5b1-fe0f.png b/img-microsoft-256/1f5b1-fe0f.png
new file mode 100644
index 0000000000..27655e62af
Binary files /dev/null and b/img-microsoft-256/1f5b1-fe0f.png differ
diff --git a/img-microsoft-256/1f5b2-fe0f.png b/img-microsoft-256/1f5b2-fe0f.png
new file mode 100644
index 0000000000..eeaff85fb3
Binary files /dev/null and b/img-microsoft-256/1f5b2-fe0f.png differ
diff --git a/img-microsoft-256/1f5bc-fe0f.png b/img-microsoft-256/1f5bc-fe0f.png
new file mode 100644
index 0000000000..01db410d06
Binary files /dev/null and b/img-microsoft-256/1f5bc-fe0f.png differ
diff --git a/img-microsoft-256/1f5c2-fe0f.png b/img-microsoft-256/1f5c2-fe0f.png
new file mode 100644
index 0000000000..f73a513ff1
Binary files /dev/null and b/img-microsoft-256/1f5c2-fe0f.png differ
diff --git a/img-microsoft-256/1f5c3-fe0f.png b/img-microsoft-256/1f5c3-fe0f.png
new file mode 100644
index 0000000000..a02b2086b7
Binary files /dev/null and b/img-microsoft-256/1f5c3-fe0f.png differ
diff --git a/img-microsoft-256/1f5c4-fe0f.png b/img-microsoft-256/1f5c4-fe0f.png
new file mode 100644
index 0000000000..fabcc87ab2
Binary files /dev/null and b/img-microsoft-256/1f5c4-fe0f.png differ
diff --git a/img-microsoft-256/1f5d1-fe0f.png b/img-microsoft-256/1f5d1-fe0f.png
new file mode 100644
index 0000000000..215a30a2fc
Binary files /dev/null and b/img-microsoft-256/1f5d1-fe0f.png differ
diff --git a/img-microsoft-256/1f5d2-fe0f.png b/img-microsoft-256/1f5d2-fe0f.png
new file mode 100644
index 0000000000..607d6603d6
Binary files /dev/null and b/img-microsoft-256/1f5d2-fe0f.png differ
diff --git a/img-microsoft-256/1f5d3-fe0f.png b/img-microsoft-256/1f5d3-fe0f.png
new file mode 100644
index 0000000000..26fb37de2d
Binary files /dev/null and b/img-microsoft-256/1f5d3-fe0f.png differ
diff --git a/img-microsoft-256/1f5dc-fe0f.png b/img-microsoft-256/1f5dc-fe0f.png
new file mode 100644
index 0000000000..1026359a01
Binary files /dev/null and b/img-microsoft-256/1f5dc-fe0f.png differ
diff --git a/img-microsoft-256/1f5dd-fe0f.png b/img-microsoft-256/1f5dd-fe0f.png
new file mode 100644
index 0000000000..5f415f7aa6
Binary files /dev/null and b/img-microsoft-256/1f5dd-fe0f.png differ
diff --git a/img-microsoft-256/1f5de-fe0f.png b/img-microsoft-256/1f5de-fe0f.png
new file mode 100644
index 0000000000..1c90ae1692
Binary files /dev/null and b/img-microsoft-256/1f5de-fe0f.png differ
diff --git a/img-microsoft-256/1f5e1-fe0f.png b/img-microsoft-256/1f5e1-fe0f.png
new file mode 100644
index 0000000000..b41c108bf5
Binary files /dev/null and b/img-microsoft-256/1f5e1-fe0f.png differ
diff --git a/img-microsoft-256/1f5e3-fe0f.png b/img-microsoft-256/1f5e3-fe0f.png
new file mode 100644
index 0000000000..5651fe8fe7
Binary files /dev/null and b/img-microsoft-256/1f5e3-fe0f.png differ
diff --git a/img-microsoft-256/1f5e8-fe0f.png b/img-microsoft-256/1f5e8-fe0f.png
new file mode 100644
index 0000000000..05be8d65e3
Binary files /dev/null and b/img-microsoft-256/1f5e8-fe0f.png differ
diff --git a/img-microsoft-256/1f5ef-fe0f.png b/img-microsoft-256/1f5ef-fe0f.png
new file mode 100644
index 0000000000..bb678741f8
Binary files /dev/null and b/img-microsoft-256/1f5ef-fe0f.png differ
diff --git a/img-microsoft-256/1f5f3-fe0f.png b/img-microsoft-256/1f5f3-fe0f.png
new file mode 100644
index 0000000000..03048b3d44
Binary files /dev/null and b/img-microsoft-256/1f5f3-fe0f.png differ
diff --git a/img-microsoft-256/1f5fa-fe0f.png b/img-microsoft-256/1f5fa-fe0f.png
new file mode 100644
index 0000000000..3484880d4f
Binary files /dev/null and b/img-microsoft-256/1f5fa-fe0f.png differ
diff --git a/img-microsoft-256/1f5fb.png b/img-microsoft-256/1f5fb.png
new file mode 100644
index 0000000000..bb4edab4cc
Binary files /dev/null and b/img-microsoft-256/1f5fb.png differ
diff --git a/img-microsoft-256/1f5fc.png b/img-microsoft-256/1f5fc.png
new file mode 100644
index 0000000000..2577a180b7
Binary files /dev/null and b/img-microsoft-256/1f5fc.png differ
diff --git a/img-microsoft-256/1f5fd.png b/img-microsoft-256/1f5fd.png
new file mode 100644
index 0000000000..0e3df99dd6
Binary files /dev/null and b/img-microsoft-256/1f5fd.png differ
diff --git a/img-microsoft-256/1f5fe.png b/img-microsoft-256/1f5fe.png
new file mode 100644
index 0000000000..4ca5f2eb49
Binary files /dev/null and b/img-microsoft-256/1f5fe.png differ
diff --git a/img-microsoft-256/1f5ff.png b/img-microsoft-256/1f5ff.png
new file mode 100644
index 0000000000..6d6eccab5d
Binary files /dev/null and b/img-microsoft-256/1f5ff.png differ
diff --git a/img-microsoft-256/1f600.png b/img-microsoft-256/1f600.png
new file mode 100644
index 0000000000..d91b62d935
Binary files /dev/null and b/img-microsoft-256/1f600.png differ
diff --git a/img-microsoft-256/1f601.png b/img-microsoft-256/1f601.png
new file mode 100644
index 0000000000..c68193d07a
Binary files /dev/null and b/img-microsoft-256/1f601.png differ
diff --git a/img-microsoft-256/1f602.png b/img-microsoft-256/1f602.png
new file mode 100644
index 0000000000..e5c7cd692a
Binary files /dev/null and b/img-microsoft-256/1f602.png differ
diff --git a/img-microsoft-256/1f603.png b/img-microsoft-256/1f603.png
new file mode 100644
index 0000000000..df178ff8ac
Binary files /dev/null and b/img-microsoft-256/1f603.png differ
diff --git a/img-microsoft-256/1f604.png b/img-microsoft-256/1f604.png
new file mode 100644
index 0000000000..e190f019ec
Binary files /dev/null and b/img-microsoft-256/1f604.png differ
diff --git a/img-microsoft-256/1f605.png b/img-microsoft-256/1f605.png
new file mode 100644
index 0000000000..22166c5905
Binary files /dev/null and b/img-microsoft-256/1f605.png differ
diff --git a/img-microsoft-256/1f606.png b/img-microsoft-256/1f606.png
new file mode 100644
index 0000000000..fd72d749a1
Binary files /dev/null and b/img-microsoft-256/1f606.png differ
diff --git a/img-microsoft-256/1f607.png b/img-microsoft-256/1f607.png
new file mode 100644
index 0000000000..379d6b06de
Binary files /dev/null and b/img-microsoft-256/1f607.png differ
diff --git a/img-microsoft-256/1f608.png b/img-microsoft-256/1f608.png
new file mode 100644
index 0000000000..8372590056
Binary files /dev/null and b/img-microsoft-256/1f608.png differ
diff --git a/img-microsoft-256/1f609.png b/img-microsoft-256/1f609.png
new file mode 100644
index 0000000000..4369b44957
Binary files /dev/null and b/img-microsoft-256/1f609.png differ
diff --git a/img-microsoft-256/1f60a.png b/img-microsoft-256/1f60a.png
new file mode 100644
index 0000000000..a304792471
Binary files /dev/null and b/img-microsoft-256/1f60a.png differ
diff --git a/img-microsoft-256/1f60b.png b/img-microsoft-256/1f60b.png
new file mode 100644
index 0000000000..12d8e12942
Binary files /dev/null and b/img-microsoft-256/1f60b.png differ
diff --git a/img-microsoft-256/1f60c.png b/img-microsoft-256/1f60c.png
new file mode 100644
index 0000000000..657b303bb2
Binary files /dev/null and b/img-microsoft-256/1f60c.png differ
diff --git a/img-microsoft-256/1f60d.png b/img-microsoft-256/1f60d.png
new file mode 100644
index 0000000000..3cec230439
Binary files /dev/null and b/img-microsoft-256/1f60d.png differ
diff --git a/img-microsoft-256/1f60e.png b/img-microsoft-256/1f60e.png
new file mode 100644
index 0000000000..c0f72254c2
Binary files /dev/null and b/img-microsoft-256/1f60e.png differ
diff --git a/img-microsoft-256/1f60f.png b/img-microsoft-256/1f60f.png
new file mode 100644
index 0000000000..7b745b1b39
Binary files /dev/null and b/img-microsoft-256/1f60f.png differ
diff --git a/img-microsoft-256/1f610.png b/img-microsoft-256/1f610.png
new file mode 100644
index 0000000000..18ae666e5b
Binary files /dev/null and b/img-microsoft-256/1f610.png differ
diff --git a/img-microsoft-256/1f611.png b/img-microsoft-256/1f611.png
new file mode 100644
index 0000000000..9ac1a520b3
Binary files /dev/null and b/img-microsoft-256/1f611.png differ
diff --git a/img-microsoft-256/1f612.png b/img-microsoft-256/1f612.png
new file mode 100644
index 0000000000..833e909a60
Binary files /dev/null and b/img-microsoft-256/1f612.png differ
diff --git a/img-microsoft-256/1f613.png b/img-microsoft-256/1f613.png
new file mode 100644
index 0000000000..2df0e5fdef
Binary files /dev/null and b/img-microsoft-256/1f613.png differ
diff --git a/img-microsoft-256/1f614.png b/img-microsoft-256/1f614.png
new file mode 100644
index 0000000000..bc7de89a7a
Binary files /dev/null and b/img-microsoft-256/1f614.png differ
diff --git a/img-microsoft-256/1f615.png b/img-microsoft-256/1f615.png
new file mode 100644
index 0000000000..f6823c594d
Binary files /dev/null and b/img-microsoft-256/1f615.png differ
diff --git a/img-microsoft-256/1f616.png b/img-microsoft-256/1f616.png
new file mode 100644
index 0000000000..9e7456c9b4
Binary files /dev/null and b/img-microsoft-256/1f616.png differ
diff --git a/img-microsoft-256/1f617.png b/img-microsoft-256/1f617.png
new file mode 100644
index 0000000000..2928a60ff3
Binary files /dev/null and b/img-microsoft-256/1f617.png differ
diff --git a/img-microsoft-256/1f618.png b/img-microsoft-256/1f618.png
new file mode 100644
index 0000000000..062fd9d92c
Binary files /dev/null and b/img-microsoft-256/1f618.png differ
diff --git a/img-microsoft-256/1f619.png b/img-microsoft-256/1f619.png
new file mode 100644
index 0000000000..fa5279a292
Binary files /dev/null and b/img-microsoft-256/1f619.png differ
diff --git a/img-microsoft-256/1f61a.png b/img-microsoft-256/1f61a.png
new file mode 100644
index 0000000000..cdb9e654d2
Binary files /dev/null and b/img-microsoft-256/1f61a.png differ
diff --git a/img-microsoft-256/1f61b.png b/img-microsoft-256/1f61b.png
new file mode 100644
index 0000000000..725d9856e2
Binary files /dev/null and b/img-microsoft-256/1f61b.png differ
diff --git a/img-microsoft-256/1f61c.png b/img-microsoft-256/1f61c.png
new file mode 100644
index 0000000000..f0680db672
Binary files /dev/null and b/img-microsoft-256/1f61c.png differ
diff --git a/img-microsoft-256/1f61d.png b/img-microsoft-256/1f61d.png
new file mode 100644
index 0000000000..d668629aef
Binary files /dev/null and b/img-microsoft-256/1f61d.png differ
diff --git a/img-microsoft-256/1f61e.png b/img-microsoft-256/1f61e.png
new file mode 100644
index 0000000000..6a53d5f0f4
Binary files /dev/null and b/img-microsoft-256/1f61e.png differ
diff --git a/img-microsoft-256/1f61f.png b/img-microsoft-256/1f61f.png
new file mode 100644
index 0000000000..187bd1eb2c
Binary files /dev/null and b/img-microsoft-256/1f61f.png differ
diff --git a/img-microsoft-256/1f620.png b/img-microsoft-256/1f620.png
new file mode 100644
index 0000000000..81cb912019
Binary files /dev/null and b/img-microsoft-256/1f620.png differ
diff --git a/img-microsoft-256/1f621.png b/img-microsoft-256/1f621.png
new file mode 100644
index 0000000000..ca704a499c
Binary files /dev/null and b/img-microsoft-256/1f621.png differ
diff --git a/img-microsoft-256/1f622.png b/img-microsoft-256/1f622.png
new file mode 100644
index 0000000000..b693c45ca7
Binary files /dev/null and b/img-microsoft-256/1f622.png differ
diff --git a/img-microsoft-256/1f623.png b/img-microsoft-256/1f623.png
new file mode 100644
index 0000000000..fbf844e995
Binary files /dev/null and b/img-microsoft-256/1f623.png differ
diff --git a/img-microsoft-256/1f624.png b/img-microsoft-256/1f624.png
new file mode 100644
index 0000000000..5fd81c09ea
Binary files /dev/null and b/img-microsoft-256/1f624.png differ
diff --git a/img-microsoft-256/1f625.png b/img-microsoft-256/1f625.png
new file mode 100644
index 0000000000..efb5c1468a
Binary files /dev/null and b/img-microsoft-256/1f625.png differ
diff --git a/img-microsoft-256/1f626.png b/img-microsoft-256/1f626.png
new file mode 100644
index 0000000000..85ae418bba
Binary files /dev/null and b/img-microsoft-256/1f626.png differ
diff --git a/img-microsoft-256/1f627.png b/img-microsoft-256/1f627.png
new file mode 100644
index 0000000000..757ebb7f20
Binary files /dev/null and b/img-microsoft-256/1f627.png differ
diff --git a/img-microsoft-256/1f628.png b/img-microsoft-256/1f628.png
new file mode 100644
index 0000000000..2cfdb320c2
Binary files /dev/null and b/img-microsoft-256/1f628.png differ
diff --git a/img-microsoft-256/1f629.png b/img-microsoft-256/1f629.png
new file mode 100644
index 0000000000..d8e28175a8
Binary files /dev/null and b/img-microsoft-256/1f629.png differ
diff --git a/img-microsoft-256/1f62a.png b/img-microsoft-256/1f62a.png
new file mode 100644
index 0000000000..9095934b6f
Binary files /dev/null and b/img-microsoft-256/1f62a.png differ
diff --git a/img-microsoft-256/1f62b.png b/img-microsoft-256/1f62b.png
new file mode 100644
index 0000000000..16329b5782
Binary files /dev/null and b/img-microsoft-256/1f62b.png differ
diff --git a/img-microsoft-256/1f62c.png b/img-microsoft-256/1f62c.png
new file mode 100644
index 0000000000..8935e1aa31
Binary files /dev/null and b/img-microsoft-256/1f62c.png differ
diff --git a/img-microsoft-256/1f62d.png b/img-microsoft-256/1f62d.png
new file mode 100644
index 0000000000..29e0bf6180
Binary files /dev/null and b/img-microsoft-256/1f62d.png differ
diff --git a/img-microsoft-256/1f62e-200d-1f4a8.png b/img-microsoft-256/1f62e-200d-1f4a8.png
new file mode 100644
index 0000000000..394c32cdca
Binary files /dev/null and b/img-microsoft-256/1f62e-200d-1f4a8.png differ
diff --git a/img-microsoft-256/1f62e.png b/img-microsoft-256/1f62e.png
new file mode 100644
index 0000000000..c523020f62
Binary files /dev/null and b/img-microsoft-256/1f62e.png differ
diff --git a/img-microsoft-256/1f62f.png b/img-microsoft-256/1f62f.png
new file mode 100644
index 0000000000..50297f72e2
Binary files /dev/null and b/img-microsoft-256/1f62f.png differ
diff --git a/img-microsoft-256/1f630.png b/img-microsoft-256/1f630.png
new file mode 100644
index 0000000000..ea2b4131fd
Binary files /dev/null and b/img-microsoft-256/1f630.png differ
diff --git a/img-microsoft-256/1f631.png b/img-microsoft-256/1f631.png
new file mode 100644
index 0000000000..07d2eee254
Binary files /dev/null and b/img-microsoft-256/1f631.png differ
diff --git a/img-microsoft-256/1f632.png b/img-microsoft-256/1f632.png
new file mode 100644
index 0000000000..6840a3b608
Binary files /dev/null and b/img-microsoft-256/1f632.png differ
diff --git a/img-microsoft-256/1f633.png b/img-microsoft-256/1f633.png
new file mode 100644
index 0000000000..ecd8fbf0d7
Binary files /dev/null and b/img-microsoft-256/1f633.png differ
diff --git a/img-microsoft-256/1f634.png b/img-microsoft-256/1f634.png
new file mode 100644
index 0000000000..cebf06f65f
Binary files /dev/null and b/img-microsoft-256/1f634.png differ
diff --git a/img-microsoft-256/1f635-200d-1f4ab.png b/img-microsoft-256/1f635-200d-1f4ab.png
new file mode 100644
index 0000000000..157d0cedfd
Binary files /dev/null and b/img-microsoft-256/1f635-200d-1f4ab.png differ
diff --git a/img-microsoft-256/1f635.png b/img-microsoft-256/1f635.png
new file mode 100644
index 0000000000..44d8a4ee31
Binary files /dev/null and b/img-microsoft-256/1f635.png differ
diff --git a/img-microsoft-256/1f636-200d-1f32b-fe0f.png b/img-microsoft-256/1f636-200d-1f32b-fe0f.png
new file mode 100644
index 0000000000..1c13504b13
Binary files /dev/null and b/img-microsoft-256/1f636-200d-1f32b-fe0f.png differ
diff --git a/img-microsoft-256/1f636.png b/img-microsoft-256/1f636.png
new file mode 100644
index 0000000000..0176338c2e
Binary files /dev/null and b/img-microsoft-256/1f636.png differ
diff --git a/img-microsoft-256/1f637.png b/img-microsoft-256/1f637.png
new file mode 100644
index 0000000000..149e542ffe
Binary files /dev/null and b/img-microsoft-256/1f637.png differ
diff --git a/img-microsoft-256/1f638.png b/img-microsoft-256/1f638.png
new file mode 100644
index 0000000000..9700e82f39
Binary files /dev/null and b/img-microsoft-256/1f638.png differ
diff --git a/img-microsoft-256/1f639.png b/img-microsoft-256/1f639.png
new file mode 100644
index 0000000000..a43f0191c3
Binary files /dev/null and b/img-microsoft-256/1f639.png differ
diff --git a/img-microsoft-256/1f63a.png b/img-microsoft-256/1f63a.png
new file mode 100644
index 0000000000..3595065262
Binary files /dev/null and b/img-microsoft-256/1f63a.png differ
diff --git a/img-microsoft-256/1f63b.png b/img-microsoft-256/1f63b.png
new file mode 100644
index 0000000000..f91d939723
Binary files /dev/null and b/img-microsoft-256/1f63b.png differ
diff --git a/img-microsoft-256/1f63c.png b/img-microsoft-256/1f63c.png
new file mode 100644
index 0000000000..be0c629493
Binary files /dev/null and b/img-microsoft-256/1f63c.png differ
diff --git a/img-microsoft-256/1f63d.png b/img-microsoft-256/1f63d.png
new file mode 100644
index 0000000000..8464de8b11
Binary files /dev/null and b/img-microsoft-256/1f63d.png differ
diff --git a/img-microsoft-256/1f63e.png b/img-microsoft-256/1f63e.png
new file mode 100644
index 0000000000..370a67fb9c
Binary files /dev/null and b/img-microsoft-256/1f63e.png differ
diff --git a/img-microsoft-256/1f63f.png b/img-microsoft-256/1f63f.png
new file mode 100644
index 0000000000..1f3d0f8b15
Binary files /dev/null and b/img-microsoft-256/1f63f.png differ
diff --git a/img-microsoft-256/1f640.png b/img-microsoft-256/1f640.png
new file mode 100644
index 0000000000..f8bb9a4cb4
Binary files /dev/null and b/img-microsoft-256/1f640.png differ
diff --git a/img-microsoft-256/1f641.png b/img-microsoft-256/1f641.png
new file mode 100644
index 0000000000..8f5a5f98b4
Binary files /dev/null and b/img-microsoft-256/1f641.png differ
diff --git a/img-microsoft-256/1f642.png b/img-microsoft-256/1f642.png
new file mode 100644
index 0000000000..9f8462dfc4
Binary files /dev/null and b/img-microsoft-256/1f642.png differ
diff --git a/img-microsoft-256/1f643.png b/img-microsoft-256/1f643.png
new file mode 100644
index 0000000000..7eabcd73f4
Binary files /dev/null and b/img-microsoft-256/1f643.png differ
diff --git a/img-microsoft-256/1f644.png b/img-microsoft-256/1f644.png
new file mode 100644
index 0000000000..1d4c1eaa22
Binary files /dev/null and b/img-microsoft-256/1f644.png differ
diff --git a/img-microsoft-256/1f645-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f645-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..379deddd48
Binary files /dev/null and b/img-microsoft-256/1f645-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f645-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f645-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..94c13ce248
Binary files /dev/null and b/img-microsoft-256/1f645-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f645-1f3fb.png b/img-microsoft-256/1f645-1f3fb.png
new file mode 100644
index 0000000000..7983454e54
Binary files /dev/null and b/img-microsoft-256/1f645-1f3fb.png differ
diff --git a/img-microsoft-256/1f645-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f645-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..3474ee7948
Binary files /dev/null and b/img-microsoft-256/1f645-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f645-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f645-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..8d3933f451
Binary files /dev/null and b/img-microsoft-256/1f645-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f645-1f3fc.png b/img-microsoft-256/1f645-1f3fc.png
new file mode 100644
index 0000000000..3b424ad9a7
Binary files /dev/null and b/img-microsoft-256/1f645-1f3fc.png differ
diff --git a/img-microsoft-256/1f645-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f645-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..ac9aaceacb
Binary files /dev/null and b/img-microsoft-256/1f645-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f645-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f645-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a5ecdc39a2
Binary files /dev/null and b/img-microsoft-256/1f645-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f645-1f3fd.png b/img-microsoft-256/1f645-1f3fd.png
new file mode 100644
index 0000000000..cea1f011cd
Binary files /dev/null and b/img-microsoft-256/1f645-1f3fd.png differ
diff --git a/img-microsoft-256/1f645-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f645-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..b87556dbf3
Binary files /dev/null and b/img-microsoft-256/1f645-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f645-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f645-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..eb0613f0fa
Binary files /dev/null and b/img-microsoft-256/1f645-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f645-1f3fe.png b/img-microsoft-256/1f645-1f3fe.png
new file mode 100644
index 0000000000..21372e9f1d
Binary files /dev/null and b/img-microsoft-256/1f645-1f3fe.png differ
diff --git a/img-microsoft-256/1f645-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f645-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..f6f877b935
Binary files /dev/null and b/img-microsoft-256/1f645-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f645-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f645-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..756db052e8
Binary files /dev/null and b/img-microsoft-256/1f645-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f645-1f3ff.png b/img-microsoft-256/1f645-1f3ff.png
new file mode 100644
index 0000000000..5a05b024a8
Binary files /dev/null and b/img-microsoft-256/1f645-1f3ff.png differ
diff --git a/img-microsoft-256/1f645-200d-2640-fe0f.png b/img-microsoft-256/1f645-200d-2640-fe0f.png
new file mode 100644
index 0000000000..ec196f0be6
Binary files /dev/null and b/img-microsoft-256/1f645-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f645-200d-2642-fe0f.png b/img-microsoft-256/1f645-200d-2642-fe0f.png
new file mode 100644
index 0000000000..b3d23acfd8
Binary files /dev/null and b/img-microsoft-256/1f645-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f645.png b/img-microsoft-256/1f645.png
new file mode 100644
index 0000000000..9e1ff88fb3
Binary files /dev/null and b/img-microsoft-256/1f645.png differ
diff --git a/img-microsoft-256/1f646-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f646-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..b2fe08f704
Binary files /dev/null and b/img-microsoft-256/1f646-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f646-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f646-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a2714b05c6
Binary files /dev/null and b/img-microsoft-256/1f646-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f646-1f3fb.png b/img-microsoft-256/1f646-1f3fb.png
new file mode 100644
index 0000000000..2e6e479dae
Binary files /dev/null and b/img-microsoft-256/1f646-1f3fb.png differ
diff --git a/img-microsoft-256/1f646-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f646-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..5abcb3ff2b
Binary files /dev/null and b/img-microsoft-256/1f646-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f646-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f646-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d618d6e795
Binary files /dev/null and b/img-microsoft-256/1f646-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f646-1f3fc.png b/img-microsoft-256/1f646-1f3fc.png
new file mode 100644
index 0000000000..41a1fbc3b9
Binary files /dev/null and b/img-microsoft-256/1f646-1f3fc.png differ
diff --git a/img-microsoft-256/1f646-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f646-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..25a81df3cd
Binary files /dev/null and b/img-microsoft-256/1f646-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f646-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f646-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..28a2b086c1
Binary files /dev/null and b/img-microsoft-256/1f646-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f646-1f3fd.png b/img-microsoft-256/1f646-1f3fd.png
new file mode 100644
index 0000000000..9da1a4a686
Binary files /dev/null and b/img-microsoft-256/1f646-1f3fd.png differ
diff --git a/img-microsoft-256/1f646-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f646-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..1c106f5577
Binary files /dev/null and b/img-microsoft-256/1f646-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f646-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f646-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..718295afd0
Binary files /dev/null and b/img-microsoft-256/1f646-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f646-1f3fe.png b/img-microsoft-256/1f646-1f3fe.png
new file mode 100644
index 0000000000..11531f4ca7
Binary files /dev/null and b/img-microsoft-256/1f646-1f3fe.png differ
diff --git a/img-microsoft-256/1f646-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f646-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..63a34635ef
Binary files /dev/null and b/img-microsoft-256/1f646-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f646-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f646-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..82528d9419
Binary files /dev/null and b/img-microsoft-256/1f646-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f646-1f3ff.png b/img-microsoft-256/1f646-1f3ff.png
new file mode 100644
index 0000000000..16ed4d4fd6
Binary files /dev/null and b/img-microsoft-256/1f646-1f3ff.png differ
diff --git a/img-microsoft-256/1f646-200d-2640-fe0f.png b/img-microsoft-256/1f646-200d-2640-fe0f.png
new file mode 100644
index 0000000000..9b523e7e94
Binary files /dev/null and b/img-microsoft-256/1f646-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f646-200d-2642-fe0f.png b/img-microsoft-256/1f646-200d-2642-fe0f.png
new file mode 100644
index 0000000000..c6116b2e32
Binary files /dev/null and b/img-microsoft-256/1f646-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f646.png b/img-microsoft-256/1f646.png
new file mode 100644
index 0000000000..fc99627b91
Binary files /dev/null and b/img-microsoft-256/1f646.png differ
diff --git a/img-microsoft-256/1f647-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f647-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..6bd11ba3fc
Binary files /dev/null and b/img-microsoft-256/1f647-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f647-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f647-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f98bf6c37b
Binary files /dev/null and b/img-microsoft-256/1f647-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f647-1f3fb.png b/img-microsoft-256/1f647-1f3fb.png
new file mode 100644
index 0000000000..8996dcfbd4
Binary files /dev/null and b/img-microsoft-256/1f647-1f3fb.png differ
diff --git a/img-microsoft-256/1f647-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f647-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..00e852df52
Binary files /dev/null and b/img-microsoft-256/1f647-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f647-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f647-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..401c8d542d
Binary files /dev/null and b/img-microsoft-256/1f647-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f647-1f3fc.png b/img-microsoft-256/1f647-1f3fc.png
new file mode 100644
index 0000000000..0ef103737e
Binary files /dev/null and b/img-microsoft-256/1f647-1f3fc.png differ
diff --git a/img-microsoft-256/1f647-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f647-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..5fe9937670
Binary files /dev/null and b/img-microsoft-256/1f647-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f647-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f647-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..ff842fa051
Binary files /dev/null and b/img-microsoft-256/1f647-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f647-1f3fd.png b/img-microsoft-256/1f647-1f3fd.png
new file mode 100644
index 0000000000..c61470d9a3
Binary files /dev/null and b/img-microsoft-256/1f647-1f3fd.png differ
diff --git a/img-microsoft-256/1f647-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f647-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..37fcf4bc03
Binary files /dev/null and b/img-microsoft-256/1f647-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f647-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f647-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..ed43632e00
Binary files /dev/null and b/img-microsoft-256/1f647-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f647-1f3fe.png b/img-microsoft-256/1f647-1f3fe.png
new file mode 100644
index 0000000000..b97ea87cf6
Binary files /dev/null and b/img-microsoft-256/1f647-1f3fe.png differ
diff --git a/img-microsoft-256/1f647-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f647-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..54ae1b966e
Binary files /dev/null and b/img-microsoft-256/1f647-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f647-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f647-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..aa644c8cd3
Binary files /dev/null and b/img-microsoft-256/1f647-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f647-1f3ff.png b/img-microsoft-256/1f647-1f3ff.png
new file mode 100644
index 0000000000..a36b672348
Binary files /dev/null and b/img-microsoft-256/1f647-1f3ff.png differ
diff --git a/img-microsoft-256/1f647-200d-2640-fe0f.png b/img-microsoft-256/1f647-200d-2640-fe0f.png
new file mode 100644
index 0000000000..71c4b38b0c
Binary files /dev/null and b/img-microsoft-256/1f647-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f647-200d-2642-fe0f.png b/img-microsoft-256/1f647-200d-2642-fe0f.png
new file mode 100644
index 0000000000..0782de1457
Binary files /dev/null and b/img-microsoft-256/1f647-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f647.png b/img-microsoft-256/1f647.png
new file mode 100644
index 0000000000..248c94427c
Binary files /dev/null and b/img-microsoft-256/1f647.png differ
diff --git a/img-microsoft-256/1f648.png b/img-microsoft-256/1f648.png
new file mode 100644
index 0000000000..136083bd60
Binary files /dev/null and b/img-microsoft-256/1f648.png differ
diff --git a/img-microsoft-256/1f649.png b/img-microsoft-256/1f649.png
new file mode 100644
index 0000000000..486b17fe48
Binary files /dev/null and b/img-microsoft-256/1f649.png differ
diff --git a/img-microsoft-256/1f64a.png b/img-microsoft-256/1f64a.png
new file mode 100644
index 0000000000..7066a34bab
Binary files /dev/null and b/img-microsoft-256/1f64a.png differ
diff --git a/img-microsoft-256/1f64b-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f64b-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..b905396508
Binary files /dev/null and b/img-microsoft-256/1f64b-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f64b-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f64b-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..032ab568da
Binary files /dev/null and b/img-microsoft-256/1f64b-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f64b-1f3fb.png b/img-microsoft-256/1f64b-1f3fb.png
new file mode 100644
index 0000000000..aeb77cf9d3
Binary files /dev/null and b/img-microsoft-256/1f64b-1f3fb.png differ
diff --git a/img-microsoft-256/1f64b-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f64b-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..73a8f92089
Binary files /dev/null and b/img-microsoft-256/1f64b-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f64b-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f64b-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..2c3550388f
Binary files /dev/null and b/img-microsoft-256/1f64b-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f64b-1f3fc.png b/img-microsoft-256/1f64b-1f3fc.png
new file mode 100644
index 0000000000..79bda9d95c
Binary files /dev/null and b/img-microsoft-256/1f64b-1f3fc.png differ
diff --git a/img-microsoft-256/1f64b-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f64b-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..1af41e32c1
Binary files /dev/null and b/img-microsoft-256/1f64b-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f64b-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f64b-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..4f4b4bb174
Binary files /dev/null and b/img-microsoft-256/1f64b-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f64b-1f3fd.png b/img-microsoft-256/1f64b-1f3fd.png
new file mode 100644
index 0000000000..e522032e4c
Binary files /dev/null and b/img-microsoft-256/1f64b-1f3fd.png differ
diff --git a/img-microsoft-256/1f64b-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f64b-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..f4f36e1275
Binary files /dev/null and b/img-microsoft-256/1f64b-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f64b-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f64b-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f4f43149d5
Binary files /dev/null and b/img-microsoft-256/1f64b-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f64b-1f3fe.png b/img-microsoft-256/1f64b-1f3fe.png
new file mode 100644
index 0000000000..e39cf3f05c
Binary files /dev/null and b/img-microsoft-256/1f64b-1f3fe.png differ
diff --git a/img-microsoft-256/1f64b-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f64b-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..dfe9625ff7
Binary files /dev/null and b/img-microsoft-256/1f64b-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f64b-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f64b-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e43b9d0ef2
Binary files /dev/null and b/img-microsoft-256/1f64b-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f64b-1f3ff.png b/img-microsoft-256/1f64b-1f3ff.png
new file mode 100644
index 0000000000..4ac76f4bdf
Binary files /dev/null and b/img-microsoft-256/1f64b-1f3ff.png differ
diff --git a/img-microsoft-256/1f64b-200d-2640-fe0f.png b/img-microsoft-256/1f64b-200d-2640-fe0f.png
new file mode 100644
index 0000000000..9c8ed93c2e
Binary files /dev/null and b/img-microsoft-256/1f64b-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f64b-200d-2642-fe0f.png b/img-microsoft-256/1f64b-200d-2642-fe0f.png
new file mode 100644
index 0000000000..903bd9d0c8
Binary files /dev/null and b/img-microsoft-256/1f64b-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f64b.png b/img-microsoft-256/1f64b.png
new file mode 100644
index 0000000000..56d4b8c16b
Binary files /dev/null and b/img-microsoft-256/1f64b.png differ
diff --git a/img-microsoft-256/1f64c-1f3fb.png b/img-microsoft-256/1f64c-1f3fb.png
new file mode 100644
index 0000000000..061d3f0d5f
Binary files /dev/null and b/img-microsoft-256/1f64c-1f3fb.png differ
diff --git a/img-microsoft-256/1f64c-1f3fc.png b/img-microsoft-256/1f64c-1f3fc.png
new file mode 100644
index 0000000000..03d8ee8cc8
Binary files /dev/null and b/img-microsoft-256/1f64c-1f3fc.png differ
diff --git a/img-microsoft-256/1f64c-1f3fd.png b/img-microsoft-256/1f64c-1f3fd.png
new file mode 100644
index 0000000000..a257c4334a
Binary files /dev/null and b/img-microsoft-256/1f64c-1f3fd.png differ
diff --git a/img-microsoft-256/1f64c-1f3fe.png b/img-microsoft-256/1f64c-1f3fe.png
new file mode 100644
index 0000000000..9eb1615d33
Binary files /dev/null and b/img-microsoft-256/1f64c-1f3fe.png differ
diff --git a/img-microsoft-256/1f64c-1f3ff.png b/img-microsoft-256/1f64c-1f3ff.png
new file mode 100644
index 0000000000..6eb7674f9a
Binary files /dev/null and b/img-microsoft-256/1f64c-1f3ff.png differ
diff --git a/img-microsoft-256/1f64c.png b/img-microsoft-256/1f64c.png
new file mode 100644
index 0000000000..cf9166a96c
Binary files /dev/null and b/img-microsoft-256/1f64c.png differ
diff --git a/img-microsoft-256/1f64d-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f64d-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..8c9a2d814f
Binary files /dev/null and b/img-microsoft-256/1f64d-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f64d-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f64d-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..05af3b8145
Binary files /dev/null and b/img-microsoft-256/1f64d-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f64d-1f3fb.png b/img-microsoft-256/1f64d-1f3fb.png
new file mode 100644
index 0000000000..2f3487096c
Binary files /dev/null and b/img-microsoft-256/1f64d-1f3fb.png differ
diff --git a/img-microsoft-256/1f64d-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f64d-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..cd11e83ff4
Binary files /dev/null and b/img-microsoft-256/1f64d-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f64d-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f64d-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..8f389a2d9c
Binary files /dev/null and b/img-microsoft-256/1f64d-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f64d-1f3fc.png b/img-microsoft-256/1f64d-1f3fc.png
new file mode 100644
index 0000000000..7390335774
Binary files /dev/null and b/img-microsoft-256/1f64d-1f3fc.png differ
diff --git a/img-microsoft-256/1f64d-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f64d-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..6f571c2214
Binary files /dev/null and b/img-microsoft-256/1f64d-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f64d-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f64d-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..3b14937559
Binary files /dev/null and b/img-microsoft-256/1f64d-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f64d-1f3fd.png b/img-microsoft-256/1f64d-1f3fd.png
new file mode 100644
index 0000000000..a25053e4bb
Binary files /dev/null and b/img-microsoft-256/1f64d-1f3fd.png differ
diff --git a/img-microsoft-256/1f64d-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f64d-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..dddca4614f
Binary files /dev/null and b/img-microsoft-256/1f64d-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f64d-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f64d-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..08fed8c06d
Binary files /dev/null and b/img-microsoft-256/1f64d-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f64d-1f3fe.png b/img-microsoft-256/1f64d-1f3fe.png
new file mode 100644
index 0000000000..09c439a261
Binary files /dev/null and b/img-microsoft-256/1f64d-1f3fe.png differ
diff --git a/img-microsoft-256/1f64d-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f64d-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..a2c2fd1287
Binary files /dev/null and b/img-microsoft-256/1f64d-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f64d-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f64d-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..fb2014d252
Binary files /dev/null and b/img-microsoft-256/1f64d-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f64d-1f3ff.png b/img-microsoft-256/1f64d-1f3ff.png
new file mode 100644
index 0000000000..685580ffb6
Binary files /dev/null and b/img-microsoft-256/1f64d-1f3ff.png differ
diff --git a/img-microsoft-256/1f64d-200d-2640-fe0f.png b/img-microsoft-256/1f64d-200d-2640-fe0f.png
new file mode 100644
index 0000000000..36741dfb3d
Binary files /dev/null and b/img-microsoft-256/1f64d-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f64d-200d-2642-fe0f.png b/img-microsoft-256/1f64d-200d-2642-fe0f.png
new file mode 100644
index 0000000000..594a8633b1
Binary files /dev/null and b/img-microsoft-256/1f64d-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f64d.png b/img-microsoft-256/1f64d.png
new file mode 100644
index 0000000000..fbbafbca14
Binary files /dev/null and b/img-microsoft-256/1f64d.png differ
diff --git a/img-microsoft-256/1f64e-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f64e-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..f7d4ea7eb9
Binary files /dev/null and b/img-microsoft-256/1f64e-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f64e-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f64e-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..de5af5ba38
Binary files /dev/null and b/img-microsoft-256/1f64e-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f64e-1f3fb.png b/img-microsoft-256/1f64e-1f3fb.png
new file mode 100644
index 0000000000..35e1c13369
Binary files /dev/null and b/img-microsoft-256/1f64e-1f3fb.png differ
diff --git a/img-microsoft-256/1f64e-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f64e-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..12145a39ec
Binary files /dev/null and b/img-microsoft-256/1f64e-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f64e-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f64e-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..cc54b728e4
Binary files /dev/null and b/img-microsoft-256/1f64e-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f64e-1f3fc.png b/img-microsoft-256/1f64e-1f3fc.png
new file mode 100644
index 0000000000..c1fee201e6
Binary files /dev/null and b/img-microsoft-256/1f64e-1f3fc.png differ
diff --git a/img-microsoft-256/1f64e-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f64e-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..d445142eb5
Binary files /dev/null and b/img-microsoft-256/1f64e-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f64e-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f64e-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..3b0a486a10
Binary files /dev/null and b/img-microsoft-256/1f64e-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f64e-1f3fd.png b/img-microsoft-256/1f64e-1f3fd.png
new file mode 100644
index 0000000000..572504c539
Binary files /dev/null and b/img-microsoft-256/1f64e-1f3fd.png differ
diff --git a/img-microsoft-256/1f64e-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f64e-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..e78ba874a6
Binary files /dev/null and b/img-microsoft-256/1f64e-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f64e-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f64e-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..6f5b9e66a5
Binary files /dev/null and b/img-microsoft-256/1f64e-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f64e-1f3fe.png b/img-microsoft-256/1f64e-1f3fe.png
new file mode 100644
index 0000000000..57a3cc735b
Binary files /dev/null and b/img-microsoft-256/1f64e-1f3fe.png differ
diff --git a/img-microsoft-256/1f64e-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f64e-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..eb5326aef4
Binary files /dev/null and b/img-microsoft-256/1f64e-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f64e-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f64e-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..5bf962fa77
Binary files /dev/null and b/img-microsoft-256/1f64e-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f64e-1f3ff.png b/img-microsoft-256/1f64e-1f3ff.png
new file mode 100644
index 0000000000..d65998954f
Binary files /dev/null and b/img-microsoft-256/1f64e-1f3ff.png differ
diff --git a/img-microsoft-256/1f64e-200d-2640-fe0f.png b/img-microsoft-256/1f64e-200d-2640-fe0f.png
new file mode 100644
index 0000000000..28be914479
Binary files /dev/null and b/img-microsoft-256/1f64e-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f64e-200d-2642-fe0f.png b/img-microsoft-256/1f64e-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f502c2d831
Binary files /dev/null and b/img-microsoft-256/1f64e-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f64e.png b/img-microsoft-256/1f64e.png
new file mode 100644
index 0000000000..189c66e7ab
Binary files /dev/null and b/img-microsoft-256/1f64e.png differ
diff --git a/img-microsoft-256/1f64f-1f3fb.png b/img-microsoft-256/1f64f-1f3fb.png
new file mode 100644
index 0000000000..0b6adfb83e
Binary files /dev/null and b/img-microsoft-256/1f64f-1f3fb.png differ
diff --git a/img-microsoft-256/1f64f-1f3fc.png b/img-microsoft-256/1f64f-1f3fc.png
new file mode 100644
index 0000000000..7370bbd94d
Binary files /dev/null and b/img-microsoft-256/1f64f-1f3fc.png differ
diff --git a/img-microsoft-256/1f64f-1f3fd.png b/img-microsoft-256/1f64f-1f3fd.png
new file mode 100644
index 0000000000..2399742e70
Binary files /dev/null and b/img-microsoft-256/1f64f-1f3fd.png differ
diff --git a/img-microsoft-256/1f64f-1f3fe.png b/img-microsoft-256/1f64f-1f3fe.png
new file mode 100644
index 0000000000..96a2ead308
Binary files /dev/null and b/img-microsoft-256/1f64f-1f3fe.png differ
diff --git a/img-microsoft-256/1f64f-1f3ff.png b/img-microsoft-256/1f64f-1f3ff.png
new file mode 100644
index 0000000000..ae166e3c07
Binary files /dev/null and b/img-microsoft-256/1f64f-1f3ff.png differ
diff --git a/img-microsoft-256/1f64f.png b/img-microsoft-256/1f64f.png
new file mode 100644
index 0000000000..71ef114a33
Binary files /dev/null and b/img-microsoft-256/1f64f.png differ
diff --git a/img-microsoft-256/1f680.png b/img-microsoft-256/1f680.png
new file mode 100644
index 0000000000..57e14707e5
Binary files /dev/null and b/img-microsoft-256/1f680.png differ
diff --git a/img-microsoft-256/1f681.png b/img-microsoft-256/1f681.png
new file mode 100644
index 0000000000..e4c563ab8e
Binary files /dev/null and b/img-microsoft-256/1f681.png differ
diff --git a/img-microsoft-256/1f682.png b/img-microsoft-256/1f682.png
new file mode 100644
index 0000000000..98631ef5e0
Binary files /dev/null and b/img-microsoft-256/1f682.png differ
diff --git a/img-microsoft-256/1f683.png b/img-microsoft-256/1f683.png
new file mode 100644
index 0000000000..03411e558e
Binary files /dev/null and b/img-microsoft-256/1f683.png differ
diff --git a/img-microsoft-256/1f684.png b/img-microsoft-256/1f684.png
new file mode 100644
index 0000000000..b74c62f657
Binary files /dev/null and b/img-microsoft-256/1f684.png differ
diff --git a/img-microsoft-256/1f685.png b/img-microsoft-256/1f685.png
new file mode 100644
index 0000000000..3be622df64
Binary files /dev/null and b/img-microsoft-256/1f685.png differ
diff --git a/img-microsoft-256/1f686.png b/img-microsoft-256/1f686.png
new file mode 100644
index 0000000000..3c2cdc3185
Binary files /dev/null and b/img-microsoft-256/1f686.png differ
diff --git a/img-microsoft-256/1f687.png b/img-microsoft-256/1f687.png
new file mode 100644
index 0000000000..cc37b52976
Binary files /dev/null and b/img-microsoft-256/1f687.png differ
diff --git a/img-microsoft-256/1f688.png b/img-microsoft-256/1f688.png
new file mode 100644
index 0000000000..0b35a04100
Binary files /dev/null and b/img-microsoft-256/1f688.png differ
diff --git a/img-microsoft-256/1f689.png b/img-microsoft-256/1f689.png
new file mode 100644
index 0000000000..d7547d02d7
Binary files /dev/null and b/img-microsoft-256/1f689.png differ
diff --git a/img-microsoft-256/1f68a.png b/img-microsoft-256/1f68a.png
new file mode 100644
index 0000000000..f296d51579
Binary files /dev/null and b/img-microsoft-256/1f68a.png differ
diff --git a/img-microsoft-256/1f68b.png b/img-microsoft-256/1f68b.png
new file mode 100644
index 0000000000..4f4b3a7c2e
Binary files /dev/null and b/img-microsoft-256/1f68b.png differ
diff --git a/img-microsoft-256/1f68c.png b/img-microsoft-256/1f68c.png
new file mode 100644
index 0000000000..62e03dcfa9
Binary files /dev/null and b/img-microsoft-256/1f68c.png differ
diff --git a/img-microsoft-256/1f68d.png b/img-microsoft-256/1f68d.png
new file mode 100644
index 0000000000..c91de2483c
Binary files /dev/null and b/img-microsoft-256/1f68d.png differ
diff --git a/img-microsoft-256/1f68e.png b/img-microsoft-256/1f68e.png
new file mode 100644
index 0000000000..1b95ac3e0e
Binary files /dev/null and b/img-microsoft-256/1f68e.png differ
diff --git a/img-microsoft-256/1f68f.png b/img-microsoft-256/1f68f.png
new file mode 100644
index 0000000000..b34888540c
Binary files /dev/null and b/img-microsoft-256/1f68f.png differ
diff --git a/img-microsoft-256/1f690.png b/img-microsoft-256/1f690.png
new file mode 100644
index 0000000000..a4495a2dbf
Binary files /dev/null and b/img-microsoft-256/1f690.png differ
diff --git a/img-microsoft-256/1f691.png b/img-microsoft-256/1f691.png
new file mode 100644
index 0000000000..7a01e59b3a
Binary files /dev/null and b/img-microsoft-256/1f691.png differ
diff --git a/img-microsoft-256/1f692.png b/img-microsoft-256/1f692.png
new file mode 100644
index 0000000000..f4ae4a77c4
Binary files /dev/null and b/img-microsoft-256/1f692.png differ
diff --git a/img-microsoft-256/1f693.png b/img-microsoft-256/1f693.png
new file mode 100644
index 0000000000..c45d3897a2
Binary files /dev/null and b/img-microsoft-256/1f693.png differ
diff --git a/img-microsoft-256/1f694.png b/img-microsoft-256/1f694.png
new file mode 100644
index 0000000000..77ed4e801a
Binary files /dev/null and b/img-microsoft-256/1f694.png differ
diff --git a/img-microsoft-256/1f695.png b/img-microsoft-256/1f695.png
new file mode 100644
index 0000000000..edcbac2446
Binary files /dev/null and b/img-microsoft-256/1f695.png differ
diff --git a/img-microsoft-256/1f696.png b/img-microsoft-256/1f696.png
new file mode 100644
index 0000000000..5358a48603
Binary files /dev/null and b/img-microsoft-256/1f696.png differ
diff --git a/img-microsoft-256/1f697.png b/img-microsoft-256/1f697.png
new file mode 100644
index 0000000000..60567c8f7f
Binary files /dev/null and b/img-microsoft-256/1f697.png differ
diff --git a/img-microsoft-256/1f698.png b/img-microsoft-256/1f698.png
new file mode 100644
index 0000000000..c41124dfbe
Binary files /dev/null and b/img-microsoft-256/1f698.png differ
diff --git a/img-microsoft-256/1f699.png b/img-microsoft-256/1f699.png
new file mode 100644
index 0000000000..837034285c
Binary files /dev/null and b/img-microsoft-256/1f699.png differ
diff --git a/img-microsoft-256/1f69a.png b/img-microsoft-256/1f69a.png
new file mode 100644
index 0000000000..33c05d43fd
Binary files /dev/null and b/img-microsoft-256/1f69a.png differ
diff --git a/img-microsoft-256/1f69b.png b/img-microsoft-256/1f69b.png
new file mode 100644
index 0000000000..27858d2cdf
Binary files /dev/null and b/img-microsoft-256/1f69b.png differ
diff --git a/img-microsoft-256/1f69c.png b/img-microsoft-256/1f69c.png
new file mode 100644
index 0000000000..4d5c026965
Binary files /dev/null and b/img-microsoft-256/1f69c.png differ
diff --git a/img-microsoft-256/1f69d.png b/img-microsoft-256/1f69d.png
new file mode 100644
index 0000000000..e6f7fceb9d
Binary files /dev/null and b/img-microsoft-256/1f69d.png differ
diff --git a/img-microsoft-256/1f69e.png b/img-microsoft-256/1f69e.png
new file mode 100644
index 0000000000..48c99bc5e2
Binary files /dev/null and b/img-microsoft-256/1f69e.png differ
diff --git a/img-microsoft-256/1f69f.png b/img-microsoft-256/1f69f.png
new file mode 100644
index 0000000000..738cc84b93
Binary files /dev/null and b/img-microsoft-256/1f69f.png differ
diff --git a/img-microsoft-256/1f6a0.png b/img-microsoft-256/1f6a0.png
new file mode 100644
index 0000000000..fb1a998f59
Binary files /dev/null and b/img-microsoft-256/1f6a0.png differ
diff --git a/img-microsoft-256/1f6a1.png b/img-microsoft-256/1f6a1.png
new file mode 100644
index 0000000000..da0183d1d3
Binary files /dev/null and b/img-microsoft-256/1f6a1.png differ
diff --git a/img-microsoft-256/1f6a2.png b/img-microsoft-256/1f6a2.png
new file mode 100644
index 0000000000..7ca227b353
Binary files /dev/null and b/img-microsoft-256/1f6a2.png differ
diff --git a/img-microsoft-256/1f6a3-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f6a3-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..974959735a
Binary files /dev/null and b/img-microsoft-256/1f6a3-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f6a3-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f6a3-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..beef6ac3c7
Binary files /dev/null and b/img-microsoft-256/1f6a3-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f6a3-1f3fb.png b/img-microsoft-256/1f6a3-1f3fb.png
new file mode 100644
index 0000000000..915c20361e
Binary files /dev/null and b/img-microsoft-256/1f6a3-1f3fb.png differ
diff --git a/img-microsoft-256/1f6a3-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f6a3-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..2df70e23a1
Binary files /dev/null and b/img-microsoft-256/1f6a3-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f6a3-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f6a3-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..5c9d65dac7
Binary files /dev/null and b/img-microsoft-256/1f6a3-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f6a3-1f3fc.png b/img-microsoft-256/1f6a3-1f3fc.png
new file mode 100644
index 0000000000..e4ca93fa28
Binary files /dev/null and b/img-microsoft-256/1f6a3-1f3fc.png differ
diff --git a/img-microsoft-256/1f6a3-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f6a3-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..62b87c6e65
Binary files /dev/null and b/img-microsoft-256/1f6a3-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f6a3-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f6a3-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e6eb3c4787
Binary files /dev/null and b/img-microsoft-256/1f6a3-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f6a3-1f3fd.png b/img-microsoft-256/1f6a3-1f3fd.png
new file mode 100644
index 0000000000..f45dd15549
Binary files /dev/null and b/img-microsoft-256/1f6a3-1f3fd.png differ
diff --git a/img-microsoft-256/1f6a3-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f6a3-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..78a1d8a551
Binary files /dev/null and b/img-microsoft-256/1f6a3-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f6a3-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f6a3-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..2fd97f988d
Binary files /dev/null and b/img-microsoft-256/1f6a3-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f6a3-1f3fe.png b/img-microsoft-256/1f6a3-1f3fe.png
new file mode 100644
index 0000000000..13c82304b6
Binary files /dev/null and b/img-microsoft-256/1f6a3-1f3fe.png differ
diff --git a/img-microsoft-256/1f6a3-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f6a3-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..421063a13a
Binary files /dev/null and b/img-microsoft-256/1f6a3-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f6a3-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f6a3-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..030ee09c8a
Binary files /dev/null and b/img-microsoft-256/1f6a3-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f6a3-1f3ff.png b/img-microsoft-256/1f6a3-1f3ff.png
new file mode 100644
index 0000000000..deecce8f10
Binary files /dev/null and b/img-microsoft-256/1f6a3-1f3ff.png differ
diff --git a/img-microsoft-256/1f6a3-200d-2640-fe0f.png b/img-microsoft-256/1f6a3-200d-2640-fe0f.png
new file mode 100644
index 0000000000..a8e8aa111b
Binary files /dev/null and b/img-microsoft-256/1f6a3-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f6a3-200d-2642-fe0f.png b/img-microsoft-256/1f6a3-200d-2642-fe0f.png
new file mode 100644
index 0000000000..bf4f9eaf40
Binary files /dev/null and b/img-microsoft-256/1f6a3-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f6a3.png b/img-microsoft-256/1f6a3.png
new file mode 100644
index 0000000000..c01acfe9ec
Binary files /dev/null and b/img-microsoft-256/1f6a3.png differ
diff --git a/img-microsoft-256/1f6a4.png b/img-microsoft-256/1f6a4.png
new file mode 100644
index 0000000000..ee3d08b569
Binary files /dev/null and b/img-microsoft-256/1f6a4.png differ
diff --git a/img-microsoft-256/1f6a5.png b/img-microsoft-256/1f6a5.png
new file mode 100644
index 0000000000..26ee99aba4
Binary files /dev/null and b/img-microsoft-256/1f6a5.png differ
diff --git a/img-microsoft-256/1f6a6.png b/img-microsoft-256/1f6a6.png
new file mode 100644
index 0000000000..171eb1b2d5
Binary files /dev/null and b/img-microsoft-256/1f6a6.png differ
diff --git a/img-microsoft-256/1f6a7.png b/img-microsoft-256/1f6a7.png
new file mode 100644
index 0000000000..41fea1e1fd
Binary files /dev/null and b/img-microsoft-256/1f6a7.png differ
diff --git a/img-microsoft-256/1f6a8.png b/img-microsoft-256/1f6a8.png
new file mode 100644
index 0000000000..455b482fb5
Binary files /dev/null and b/img-microsoft-256/1f6a8.png differ
diff --git a/img-microsoft-256/1f6a9.png b/img-microsoft-256/1f6a9.png
new file mode 100644
index 0000000000..11205f01f5
Binary files /dev/null and b/img-microsoft-256/1f6a9.png differ
diff --git a/img-microsoft-256/1f6aa.png b/img-microsoft-256/1f6aa.png
new file mode 100644
index 0000000000..e49fcc1718
Binary files /dev/null and b/img-microsoft-256/1f6aa.png differ
diff --git a/img-microsoft-256/1f6ab.png b/img-microsoft-256/1f6ab.png
new file mode 100644
index 0000000000..1f071edd06
Binary files /dev/null and b/img-microsoft-256/1f6ab.png differ
diff --git a/img-microsoft-256/1f6ac.png b/img-microsoft-256/1f6ac.png
new file mode 100644
index 0000000000..e9ba45230e
Binary files /dev/null and b/img-microsoft-256/1f6ac.png differ
diff --git a/img-microsoft-256/1f6ad.png b/img-microsoft-256/1f6ad.png
new file mode 100644
index 0000000000..85f43b366b
Binary files /dev/null and b/img-microsoft-256/1f6ad.png differ
diff --git a/img-microsoft-256/1f6ae.png b/img-microsoft-256/1f6ae.png
new file mode 100644
index 0000000000..e8f11986a7
Binary files /dev/null and b/img-microsoft-256/1f6ae.png differ
diff --git a/img-microsoft-256/1f6af.png b/img-microsoft-256/1f6af.png
new file mode 100644
index 0000000000..d2db4a7e48
Binary files /dev/null and b/img-microsoft-256/1f6af.png differ
diff --git a/img-microsoft-256/1f6b0.png b/img-microsoft-256/1f6b0.png
new file mode 100644
index 0000000000..bab6c0eff9
Binary files /dev/null and b/img-microsoft-256/1f6b0.png differ
diff --git a/img-microsoft-256/1f6b1.png b/img-microsoft-256/1f6b1.png
new file mode 100644
index 0000000000..ea099795f5
Binary files /dev/null and b/img-microsoft-256/1f6b1.png differ
diff --git a/img-microsoft-256/1f6b2.png b/img-microsoft-256/1f6b2.png
new file mode 100644
index 0000000000..3111fce86a
Binary files /dev/null and b/img-microsoft-256/1f6b2.png differ
diff --git a/img-microsoft-256/1f6b3.png b/img-microsoft-256/1f6b3.png
new file mode 100644
index 0000000000..c2f969666c
Binary files /dev/null and b/img-microsoft-256/1f6b3.png differ
diff --git a/img-microsoft-256/1f6b4-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f6b4-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..4a10af0d70
Binary files /dev/null and b/img-microsoft-256/1f6b4-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f6b4-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f6b4-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..faa18cb238
Binary files /dev/null and b/img-microsoft-256/1f6b4-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f6b4-1f3fb.png b/img-microsoft-256/1f6b4-1f3fb.png
new file mode 100644
index 0000000000..a9820cdfdd
Binary files /dev/null and b/img-microsoft-256/1f6b4-1f3fb.png differ
diff --git a/img-microsoft-256/1f6b4-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f6b4-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..389139bfa1
Binary files /dev/null and b/img-microsoft-256/1f6b4-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f6b4-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f6b4-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..bd8ca29f07
Binary files /dev/null and b/img-microsoft-256/1f6b4-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f6b4-1f3fc.png b/img-microsoft-256/1f6b4-1f3fc.png
new file mode 100644
index 0000000000..6d86297ae2
Binary files /dev/null and b/img-microsoft-256/1f6b4-1f3fc.png differ
diff --git a/img-microsoft-256/1f6b4-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f6b4-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..c4cf9efb57
Binary files /dev/null and b/img-microsoft-256/1f6b4-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f6b4-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f6b4-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..8222050dd9
Binary files /dev/null and b/img-microsoft-256/1f6b4-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f6b4-1f3fd.png b/img-microsoft-256/1f6b4-1f3fd.png
new file mode 100644
index 0000000000..92e00dc22a
Binary files /dev/null and b/img-microsoft-256/1f6b4-1f3fd.png differ
diff --git a/img-microsoft-256/1f6b4-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f6b4-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..85ebad4279
Binary files /dev/null and b/img-microsoft-256/1f6b4-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f6b4-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f6b4-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..011f260d03
Binary files /dev/null and b/img-microsoft-256/1f6b4-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f6b4-1f3fe.png b/img-microsoft-256/1f6b4-1f3fe.png
new file mode 100644
index 0000000000..fbd5e9cb1c
Binary files /dev/null and b/img-microsoft-256/1f6b4-1f3fe.png differ
diff --git a/img-microsoft-256/1f6b4-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f6b4-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..19b31d4b9e
Binary files /dev/null and b/img-microsoft-256/1f6b4-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f6b4-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f6b4-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..98b6102cc7
Binary files /dev/null and b/img-microsoft-256/1f6b4-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f6b4-1f3ff.png b/img-microsoft-256/1f6b4-1f3ff.png
new file mode 100644
index 0000000000..33bfeb5d79
Binary files /dev/null and b/img-microsoft-256/1f6b4-1f3ff.png differ
diff --git a/img-microsoft-256/1f6b4-200d-2640-fe0f.png b/img-microsoft-256/1f6b4-200d-2640-fe0f.png
new file mode 100644
index 0000000000..57c60a7dd7
Binary files /dev/null and b/img-microsoft-256/1f6b4-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f6b4-200d-2642-fe0f.png b/img-microsoft-256/1f6b4-200d-2642-fe0f.png
new file mode 100644
index 0000000000..ec2f1e95d8
Binary files /dev/null and b/img-microsoft-256/1f6b4-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f6b4.png b/img-microsoft-256/1f6b4.png
new file mode 100644
index 0000000000..556b0fe5d4
Binary files /dev/null and b/img-microsoft-256/1f6b4.png differ
diff --git a/img-microsoft-256/1f6b5-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f6b5-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..60947bab97
Binary files /dev/null and b/img-microsoft-256/1f6b5-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f6b5-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f6b5-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e4c2fd9d2d
Binary files /dev/null and b/img-microsoft-256/1f6b5-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f6b5-1f3fb.png b/img-microsoft-256/1f6b5-1f3fb.png
new file mode 100644
index 0000000000..209182a105
Binary files /dev/null and b/img-microsoft-256/1f6b5-1f3fb.png differ
diff --git a/img-microsoft-256/1f6b5-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f6b5-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..b19ac92b58
Binary files /dev/null and b/img-microsoft-256/1f6b5-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f6b5-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f6b5-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..9fdb1e9635
Binary files /dev/null and b/img-microsoft-256/1f6b5-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f6b5-1f3fc.png b/img-microsoft-256/1f6b5-1f3fc.png
new file mode 100644
index 0000000000..d9b42eae1d
Binary files /dev/null and b/img-microsoft-256/1f6b5-1f3fc.png differ
diff --git a/img-microsoft-256/1f6b5-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f6b5-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..33edabfe85
Binary files /dev/null and b/img-microsoft-256/1f6b5-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f6b5-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f6b5-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..fb99a72737
Binary files /dev/null and b/img-microsoft-256/1f6b5-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f6b5-1f3fd.png b/img-microsoft-256/1f6b5-1f3fd.png
new file mode 100644
index 0000000000..3b36a93d0c
Binary files /dev/null and b/img-microsoft-256/1f6b5-1f3fd.png differ
diff --git a/img-microsoft-256/1f6b5-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f6b5-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..2199127864
Binary files /dev/null and b/img-microsoft-256/1f6b5-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f6b5-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f6b5-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..123000de98
Binary files /dev/null and b/img-microsoft-256/1f6b5-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f6b5-1f3fe.png b/img-microsoft-256/1f6b5-1f3fe.png
new file mode 100644
index 0000000000..3f698e86ea
Binary files /dev/null and b/img-microsoft-256/1f6b5-1f3fe.png differ
diff --git a/img-microsoft-256/1f6b5-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f6b5-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..82cf47676a
Binary files /dev/null and b/img-microsoft-256/1f6b5-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f6b5-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f6b5-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..c815734eae
Binary files /dev/null and b/img-microsoft-256/1f6b5-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f6b5-1f3ff.png b/img-microsoft-256/1f6b5-1f3ff.png
new file mode 100644
index 0000000000..22f1bec183
Binary files /dev/null and b/img-microsoft-256/1f6b5-1f3ff.png differ
diff --git a/img-microsoft-256/1f6b5-200d-2640-fe0f.png b/img-microsoft-256/1f6b5-200d-2640-fe0f.png
new file mode 100644
index 0000000000..7e1ed9ec4b
Binary files /dev/null and b/img-microsoft-256/1f6b5-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f6b5-200d-2642-fe0f.png b/img-microsoft-256/1f6b5-200d-2642-fe0f.png
new file mode 100644
index 0000000000..130873d221
Binary files /dev/null and b/img-microsoft-256/1f6b5-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f6b5.png b/img-microsoft-256/1f6b5.png
new file mode 100644
index 0000000000..884b4e19e1
Binary files /dev/null and b/img-microsoft-256/1f6b5.png differ
diff --git a/img-microsoft-256/1f6b6-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f6b6-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..10cc16687d
Binary files /dev/null and b/img-microsoft-256/1f6b6-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f6b6-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f6b6-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..071af4e5b2
Binary files /dev/null and b/img-microsoft-256/1f6b6-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f6b6-1f3fb.png b/img-microsoft-256/1f6b6-1f3fb.png
new file mode 100644
index 0000000000..2b8e820455
Binary files /dev/null and b/img-microsoft-256/1f6b6-1f3fb.png differ
diff --git a/img-microsoft-256/1f6b6-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f6b6-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..2508f75f33
Binary files /dev/null and b/img-microsoft-256/1f6b6-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f6b6-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f6b6-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..b0364282aa
Binary files /dev/null and b/img-microsoft-256/1f6b6-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f6b6-1f3fc.png b/img-microsoft-256/1f6b6-1f3fc.png
new file mode 100644
index 0000000000..0ca34c1bb5
Binary files /dev/null and b/img-microsoft-256/1f6b6-1f3fc.png differ
diff --git a/img-microsoft-256/1f6b6-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f6b6-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..fca96e2e8a
Binary files /dev/null and b/img-microsoft-256/1f6b6-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f6b6-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f6b6-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..5d87df61cf
Binary files /dev/null and b/img-microsoft-256/1f6b6-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f6b6-1f3fd.png b/img-microsoft-256/1f6b6-1f3fd.png
new file mode 100644
index 0000000000..70e6f4472d
Binary files /dev/null and b/img-microsoft-256/1f6b6-1f3fd.png differ
diff --git a/img-microsoft-256/1f6b6-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f6b6-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..05881e641f
Binary files /dev/null and b/img-microsoft-256/1f6b6-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f6b6-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f6b6-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..1b80231624
Binary files /dev/null and b/img-microsoft-256/1f6b6-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f6b6-1f3fe.png b/img-microsoft-256/1f6b6-1f3fe.png
new file mode 100644
index 0000000000..90373e0e0f
Binary files /dev/null and b/img-microsoft-256/1f6b6-1f3fe.png differ
diff --git a/img-microsoft-256/1f6b6-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f6b6-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..de8747b9c4
Binary files /dev/null and b/img-microsoft-256/1f6b6-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f6b6-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f6b6-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..ea011ee3c7
Binary files /dev/null and b/img-microsoft-256/1f6b6-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f6b6-1f3ff.png b/img-microsoft-256/1f6b6-1f3ff.png
new file mode 100644
index 0000000000..9ec311f0d4
Binary files /dev/null and b/img-microsoft-256/1f6b6-1f3ff.png differ
diff --git a/img-microsoft-256/1f6b6-200d-2640-fe0f.png b/img-microsoft-256/1f6b6-200d-2640-fe0f.png
new file mode 100644
index 0000000000..7405c11118
Binary files /dev/null and b/img-microsoft-256/1f6b6-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f6b6-200d-2642-fe0f.png b/img-microsoft-256/1f6b6-200d-2642-fe0f.png
new file mode 100644
index 0000000000..845809fcd2
Binary files /dev/null and b/img-microsoft-256/1f6b6-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f6b6.png b/img-microsoft-256/1f6b6.png
new file mode 100644
index 0000000000..644fa3cd2d
Binary files /dev/null and b/img-microsoft-256/1f6b6.png differ
diff --git a/img-microsoft-256/1f6b7.png b/img-microsoft-256/1f6b7.png
new file mode 100644
index 0000000000..5f741bf3b9
Binary files /dev/null and b/img-microsoft-256/1f6b7.png differ
diff --git a/img-microsoft-256/1f6b8.png b/img-microsoft-256/1f6b8.png
new file mode 100644
index 0000000000..89514e30d2
Binary files /dev/null and b/img-microsoft-256/1f6b8.png differ
diff --git a/img-microsoft-256/1f6b9.png b/img-microsoft-256/1f6b9.png
new file mode 100644
index 0000000000..8b85ca8782
Binary files /dev/null and b/img-microsoft-256/1f6b9.png differ
diff --git a/img-microsoft-256/1f6ba.png b/img-microsoft-256/1f6ba.png
new file mode 100644
index 0000000000..896115c449
Binary files /dev/null and b/img-microsoft-256/1f6ba.png differ
diff --git a/img-microsoft-256/1f6bb.png b/img-microsoft-256/1f6bb.png
new file mode 100644
index 0000000000..d8f9a7714f
Binary files /dev/null and b/img-microsoft-256/1f6bb.png differ
diff --git a/img-microsoft-256/1f6bc.png b/img-microsoft-256/1f6bc.png
new file mode 100644
index 0000000000..9afe710d91
Binary files /dev/null and b/img-microsoft-256/1f6bc.png differ
diff --git a/img-microsoft-256/1f6bd.png b/img-microsoft-256/1f6bd.png
new file mode 100644
index 0000000000..f7ad1cdd5f
Binary files /dev/null and b/img-microsoft-256/1f6bd.png differ
diff --git a/img-microsoft-256/1f6be.png b/img-microsoft-256/1f6be.png
new file mode 100644
index 0000000000..936ca37402
Binary files /dev/null and b/img-microsoft-256/1f6be.png differ
diff --git a/img-microsoft-256/1f6bf.png b/img-microsoft-256/1f6bf.png
new file mode 100644
index 0000000000..6414c8fe62
Binary files /dev/null and b/img-microsoft-256/1f6bf.png differ
diff --git a/img-microsoft-256/1f6c0-1f3fb.png b/img-microsoft-256/1f6c0-1f3fb.png
new file mode 100644
index 0000000000..6343b1088a
Binary files /dev/null and b/img-microsoft-256/1f6c0-1f3fb.png differ
diff --git a/img-microsoft-256/1f6c0-1f3fc.png b/img-microsoft-256/1f6c0-1f3fc.png
new file mode 100644
index 0000000000..4f9433be47
Binary files /dev/null and b/img-microsoft-256/1f6c0-1f3fc.png differ
diff --git a/img-microsoft-256/1f6c0-1f3fd.png b/img-microsoft-256/1f6c0-1f3fd.png
new file mode 100644
index 0000000000..602fea862f
Binary files /dev/null and b/img-microsoft-256/1f6c0-1f3fd.png differ
diff --git a/img-microsoft-256/1f6c0-1f3fe.png b/img-microsoft-256/1f6c0-1f3fe.png
new file mode 100644
index 0000000000..171f6bb4e9
Binary files /dev/null and b/img-microsoft-256/1f6c0-1f3fe.png differ
diff --git a/img-microsoft-256/1f6c0-1f3ff.png b/img-microsoft-256/1f6c0-1f3ff.png
new file mode 100644
index 0000000000..8b7a300c53
Binary files /dev/null and b/img-microsoft-256/1f6c0-1f3ff.png differ
diff --git a/img-microsoft-256/1f6c0.png b/img-microsoft-256/1f6c0.png
new file mode 100644
index 0000000000..8ffe5fba82
Binary files /dev/null and b/img-microsoft-256/1f6c0.png differ
diff --git a/img-microsoft-256/1f6c1.png b/img-microsoft-256/1f6c1.png
new file mode 100644
index 0000000000..f576fbc2bb
Binary files /dev/null and b/img-microsoft-256/1f6c1.png differ
diff --git a/img-microsoft-256/1f6c2.png b/img-microsoft-256/1f6c2.png
new file mode 100644
index 0000000000..0d6191813e
Binary files /dev/null and b/img-microsoft-256/1f6c2.png differ
diff --git a/img-microsoft-256/1f6c3.png b/img-microsoft-256/1f6c3.png
new file mode 100644
index 0000000000..503e6a599d
Binary files /dev/null and b/img-microsoft-256/1f6c3.png differ
diff --git a/img-microsoft-256/1f6c4.png b/img-microsoft-256/1f6c4.png
new file mode 100644
index 0000000000..c49d6bad5e
Binary files /dev/null and b/img-microsoft-256/1f6c4.png differ
diff --git a/img-microsoft-256/1f6c5.png b/img-microsoft-256/1f6c5.png
new file mode 100644
index 0000000000..b42df26280
Binary files /dev/null and b/img-microsoft-256/1f6c5.png differ
diff --git a/img-microsoft-256/1f6cb-fe0f.png b/img-microsoft-256/1f6cb-fe0f.png
new file mode 100644
index 0000000000..238830edfc
Binary files /dev/null and b/img-microsoft-256/1f6cb-fe0f.png differ
diff --git a/img-microsoft-256/1f6cc-1f3fb.png b/img-microsoft-256/1f6cc-1f3fb.png
new file mode 100644
index 0000000000..cc144bcc28
Binary files /dev/null and b/img-microsoft-256/1f6cc-1f3fb.png differ
diff --git a/img-microsoft-256/1f6cc-1f3fc.png b/img-microsoft-256/1f6cc-1f3fc.png
new file mode 100644
index 0000000000..3cb9da1d04
Binary files /dev/null and b/img-microsoft-256/1f6cc-1f3fc.png differ
diff --git a/img-microsoft-256/1f6cc-1f3fd.png b/img-microsoft-256/1f6cc-1f3fd.png
new file mode 100644
index 0000000000..39130649af
Binary files /dev/null and b/img-microsoft-256/1f6cc-1f3fd.png differ
diff --git a/img-microsoft-256/1f6cc-1f3fe.png b/img-microsoft-256/1f6cc-1f3fe.png
new file mode 100644
index 0000000000..071b5bfed9
Binary files /dev/null and b/img-microsoft-256/1f6cc-1f3fe.png differ
diff --git a/img-microsoft-256/1f6cc-1f3ff.png b/img-microsoft-256/1f6cc-1f3ff.png
new file mode 100644
index 0000000000..90abaa4513
Binary files /dev/null and b/img-microsoft-256/1f6cc-1f3ff.png differ
diff --git a/img-microsoft-256/1f6cc.png b/img-microsoft-256/1f6cc.png
new file mode 100644
index 0000000000..8d2772f74e
Binary files /dev/null and b/img-microsoft-256/1f6cc.png differ
diff --git a/img-microsoft-256/1f6cd-fe0f.png b/img-microsoft-256/1f6cd-fe0f.png
new file mode 100644
index 0000000000..031b8379ab
Binary files /dev/null and b/img-microsoft-256/1f6cd-fe0f.png differ
diff --git a/img-microsoft-256/1f6ce-fe0f.png b/img-microsoft-256/1f6ce-fe0f.png
new file mode 100644
index 0000000000..4412b8ca92
Binary files /dev/null and b/img-microsoft-256/1f6ce-fe0f.png differ
diff --git a/img-microsoft-256/1f6cf-fe0f.png b/img-microsoft-256/1f6cf-fe0f.png
new file mode 100644
index 0000000000..220f0d89ad
Binary files /dev/null and b/img-microsoft-256/1f6cf-fe0f.png differ
diff --git a/img-microsoft-256/1f6d0.png b/img-microsoft-256/1f6d0.png
new file mode 100644
index 0000000000..c9668ffe91
Binary files /dev/null and b/img-microsoft-256/1f6d0.png differ
diff --git a/img-microsoft-256/1f6d1.png b/img-microsoft-256/1f6d1.png
new file mode 100644
index 0000000000..e247e03094
Binary files /dev/null and b/img-microsoft-256/1f6d1.png differ
diff --git a/img-microsoft-256/1f6d2.png b/img-microsoft-256/1f6d2.png
new file mode 100644
index 0000000000..5b1cfe3625
Binary files /dev/null and b/img-microsoft-256/1f6d2.png differ
diff --git a/img-microsoft-256/1f6d5.png b/img-microsoft-256/1f6d5.png
new file mode 100644
index 0000000000..2286c3663f
Binary files /dev/null and b/img-microsoft-256/1f6d5.png differ
diff --git a/img-microsoft-256/1f6d6.png b/img-microsoft-256/1f6d6.png
new file mode 100644
index 0000000000..b0a8cef7d7
Binary files /dev/null and b/img-microsoft-256/1f6d6.png differ
diff --git a/img-microsoft-256/1f6d7.png b/img-microsoft-256/1f6d7.png
new file mode 100644
index 0000000000..0b265b9646
Binary files /dev/null and b/img-microsoft-256/1f6d7.png differ
diff --git a/img-microsoft-256/1f6dd.png b/img-microsoft-256/1f6dd.png
new file mode 100644
index 0000000000..1f7374adb8
Binary files /dev/null and b/img-microsoft-256/1f6dd.png differ
diff --git a/img-microsoft-256/1f6de.png b/img-microsoft-256/1f6de.png
new file mode 100644
index 0000000000..84e502a480
Binary files /dev/null and b/img-microsoft-256/1f6de.png differ
diff --git a/img-microsoft-256/1f6df.png b/img-microsoft-256/1f6df.png
new file mode 100644
index 0000000000..1767cf17a2
Binary files /dev/null and b/img-microsoft-256/1f6df.png differ
diff --git a/img-microsoft-256/1f6e0-fe0f.png b/img-microsoft-256/1f6e0-fe0f.png
new file mode 100644
index 0000000000..218951781d
Binary files /dev/null and b/img-microsoft-256/1f6e0-fe0f.png differ
diff --git a/img-microsoft-256/1f6e1-fe0f.png b/img-microsoft-256/1f6e1-fe0f.png
new file mode 100644
index 0000000000..75575b6cfd
Binary files /dev/null and b/img-microsoft-256/1f6e1-fe0f.png differ
diff --git a/img-microsoft-256/1f6e2-fe0f.png b/img-microsoft-256/1f6e2-fe0f.png
new file mode 100644
index 0000000000..9a6d1d1178
Binary files /dev/null and b/img-microsoft-256/1f6e2-fe0f.png differ
diff --git a/img-microsoft-256/1f6e3-fe0f.png b/img-microsoft-256/1f6e3-fe0f.png
new file mode 100644
index 0000000000..1523e90cf2
Binary files /dev/null and b/img-microsoft-256/1f6e3-fe0f.png differ
diff --git a/img-microsoft-256/1f6e4-fe0f.png b/img-microsoft-256/1f6e4-fe0f.png
new file mode 100644
index 0000000000..1dd053a0b7
Binary files /dev/null and b/img-microsoft-256/1f6e4-fe0f.png differ
diff --git a/img-microsoft-256/1f6e5-fe0f.png b/img-microsoft-256/1f6e5-fe0f.png
new file mode 100644
index 0000000000..09078d5e11
Binary files /dev/null and b/img-microsoft-256/1f6e5-fe0f.png differ
diff --git a/img-microsoft-256/1f6e9-fe0f.png b/img-microsoft-256/1f6e9-fe0f.png
new file mode 100644
index 0000000000..78f2cf7b31
Binary files /dev/null and b/img-microsoft-256/1f6e9-fe0f.png differ
diff --git a/img-microsoft-256/1f6eb.png b/img-microsoft-256/1f6eb.png
new file mode 100644
index 0000000000..217bea021a
Binary files /dev/null and b/img-microsoft-256/1f6eb.png differ
diff --git a/img-microsoft-256/1f6ec.png b/img-microsoft-256/1f6ec.png
new file mode 100644
index 0000000000..1ccb485d63
Binary files /dev/null and b/img-microsoft-256/1f6ec.png differ
diff --git a/img-microsoft-256/1f6f0-fe0f.png b/img-microsoft-256/1f6f0-fe0f.png
new file mode 100644
index 0000000000..b40a48c445
Binary files /dev/null and b/img-microsoft-256/1f6f0-fe0f.png differ
diff --git a/img-microsoft-256/1f6f3-fe0f.png b/img-microsoft-256/1f6f3-fe0f.png
new file mode 100644
index 0000000000..fbf0187cfc
Binary files /dev/null and b/img-microsoft-256/1f6f3-fe0f.png differ
diff --git a/img-microsoft-256/1f6f4.png b/img-microsoft-256/1f6f4.png
new file mode 100644
index 0000000000..663c2a305e
Binary files /dev/null and b/img-microsoft-256/1f6f4.png differ
diff --git a/img-microsoft-256/1f6f5.png b/img-microsoft-256/1f6f5.png
new file mode 100644
index 0000000000..29df8b7630
Binary files /dev/null and b/img-microsoft-256/1f6f5.png differ
diff --git a/img-microsoft-256/1f6f6.png b/img-microsoft-256/1f6f6.png
new file mode 100644
index 0000000000..2a4191783d
Binary files /dev/null and b/img-microsoft-256/1f6f6.png differ
diff --git a/img-microsoft-256/1f6f7.png b/img-microsoft-256/1f6f7.png
new file mode 100644
index 0000000000..46fe573e4d
Binary files /dev/null and b/img-microsoft-256/1f6f7.png differ
diff --git a/img-microsoft-256/1f6f8.png b/img-microsoft-256/1f6f8.png
new file mode 100644
index 0000000000..f4300aa5c0
Binary files /dev/null and b/img-microsoft-256/1f6f8.png differ
diff --git a/img-microsoft-256/1f6f9.png b/img-microsoft-256/1f6f9.png
new file mode 100644
index 0000000000..c8cc44b1e2
Binary files /dev/null and b/img-microsoft-256/1f6f9.png differ
diff --git a/img-microsoft-256/1f6fa.png b/img-microsoft-256/1f6fa.png
new file mode 100644
index 0000000000..a2cae87e5c
Binary files /dev/null and b/img-microsoft-256/1f6fa.png differ
diff --git a/img-microsoft-256/1f6fb.png b/img-microsoft-256/1f6fb.png
new file mode 100644
index 0000000000..2781111fc4
Binary files /dev/null and b/img-microsoft-256/1f6fb.png differ
diff --git a/img-microsoft-256/1f6fc.png b/img-microsoft-256/1f6fc.png
new file mode 100644
index 0000000000..18d6710006
Binary files /dev/null and b/img-microsoft-256/1f6fc.png differ
diff --git a/img-microsoft-256/1f7e0.png b/img-microsoft-256/1f7e0.png
new file mode 100644
index 0000000000..1ec4e12eea
Binary files /dev/null and b/img-microsoft-256/1f7e0.png differ
diff --git a/img-microsoft-256/1f7e1.png b/img-microsoft-256/1f7e1.png
new file mode 100644
index 0000000000..3c8881685e
Binary files /dev/null and b/img-microsoft-256/1f7e1.png differ
diff --git a/img-microsoft-256/1f7e2.png b/img-microsoft-256/1f7e2.png
new file mode 100644
index 0000000000..2e91dbca0a
Binary files /dev/null and b/img-microsoft-256/1f7e2.png differ
diff --git a/img-microsoft-256/1f7e3.png b/img-microsoft-256/1f7e3.png
new file mode 100644
index 0000000000..1b2d396d94
Binary files /dev/null and b/img-microsoft-256/1f7e3.png differ
diff --git a/img-microsoft-256/1f7e4.png b/img-microsoft-256/1f7e4.png
new file mode 100644
index 0000000000..3417fe50bd
Binary files /dev/null and b/img-microsoft-256/1f7e4.png differ
diff --git a/img-microsoft-256/1f7e5.png b/img-microsoft-256/1f7e5.png
new file mode 100644
index 0000000000..cf00d181de
Binary files /dev/null and b/img-microsoft-256/1f7e5.png differ
diff --git a/img-microsoft-256/1f7e6.png b/img-microsoft-256/1f7e6.png
new file mode 100644
index 0000000000..51c26dea29
Binary files /dev/null and b/img-microsoft-256/1f7e6.png differ
diff --git a/img-microsoft-256/1f7e7.png b/img-microsoft-256/1f7e7.png
new file mode 100644
index 0000000000..55cbad02ce
Binary files /dev/null and b/img-microsoft-256/1f7e7.png differ
diff --git a/img-microsoft-256/1f7e8.png b/img-microsoft-256/1f7e8.png
new file mode 100644
index 0000000000..b4bedff449
Binary files /dev/null and b/img-microsoft-256/1f7e8.png differ
diff --git a/img-microsoft-256/1f7e9.png b/img-microsoft-256/1f7e9.png
new file mode 100644
index 0000000000..fbe8eb21a4
Binary files /dev/null and b/img-microsoft-256/1f7e9.png differ
diff --git a/img-microsoft-256/1f7ea.png b/img-microsoft-256/1f7ea.png
new file mode 100644
index 0000000000..356e08c35c
Binary files /dev/null and b/img-microsoft-256/1f7ea.png differ
diff --git a/img-microsoft-256/1f7eb.png b/img-microsoft-256/1f7eb.png
new file mode 100644
index 0000000000..8837dbdf56
Binary files /dev/null and b/img-microsoft-256/1f7eb.png differ
diff --git a/img-microsoft-256/1f7f0.png b/img-microsoft-256/1f7f0.png
new file mode 100644
index 0000000000..63b1f08458
Binary files /dev/null and b/img-microsoft-256/1f7f0.png differ
diff --git a/img-microsoft-256/1f90c-1f3fb.png b/img-microsoft-256/1f90c-1f3fb.png
new file mode 100644
index 0000000000..945caae718
Binary files /dev/null and b/img-microsoft-256/1f90c-1f3fb.png differ
diff --git a/img-microsoft-256/1f90c-1f3fc.png b/img-microsoft-256/1f90c-1f3fc.png
new file mode 100644
index 0000000000..65dc3189b4
Binary files /dev/null and b/img-microsoft-256/1f90c-1f3fc.png differ
diff --git a/img-microsoft-256/1f90c-1f3fd.png b/img-microsoft-256/1f90c-1f3fd.png
new file mode 100644
index 0000000000..f38de45302
Binary files /dev/null and b/img-microsoft-256/1f90c-1f3fd.png differ
diff --git a/img-microsoft-256/1f90c-1f3fe.png b/img-microsoft-256/1f90c-1f3fe.png
new file mode 100644
index 0000000000..6e79d3c637
Binary files /dev/null and b/img-microsoft-256/1f90c-1f3fe.png differ
diff --git a/img-microsoft-256/1f90c-1f3ff.png b/img-microsoft-256/1f90c-1f3ff.png
new file mode 100644
index 0000000000..3502289874
Binary files /dev/null and b/img-microsoft-256/1f90c-1f3ff.png differ
diff --git a/img-microsoft-256/1f90c.png b/img-microsoft-256/1f90c.png
new file mode 100644
index 0000000000..69dbcfdd6c
Binary files /dev/null and b/img-microsoft-256/1f90c.png differ
diff --git a/img-microsoft-256/1f90d.png b/img-microsoft-256/1f90d.png
new file mode 100644
index 0000000000..fea8b7761f
Binary files /dev/null and b/img-microsoft-256/1f90d.png differ
diff --git a/img-microsoft-256/1f90e.png b/img-microsoft-256/1f90e.png
new file mode 100644
index 0000000000..4a000b13d8
Binary files /dev/null and b/img-microsoft-256/1f90e.png differ
diff --git a/img-microsoft-256/1f90f-1f3fb.png b/img-microsoft-256/1f90f-1f3fb.png
new file mode 100644
index 0000000000..0f8b454929
Binary files /dev/null and b/img-microsoft-256/1f90f-1f3fb.png differ
diff --git a/img-microsoft-256/1f90f-1f3fc.png b/img-microsoft-256/1f90f-1f3fc.png
new file mode 100644
index 0000000000..7a774d8b21
Binary files /dev/null and b/img-microsoft-256/1f90f-1f3fc.png differ
diff --git a/img-microsoft-256/1f90f-1f3fd.png b/img-microsoft-256/1f90f-1f3fd.png
new file mode 100644
index 0000000000..ddeab186a3
Binary files /dev/null and b/img-microsoft-256/1f90f-1f3fd.png differ
diff --git a/img-microsoft-256/1f90f-1f3fe.png b/img-microsoft-256/1f90f-1f3fe.png
new file mode 100644
index 0000000000..1bec382938
Binary files /dev/null and b/img-microsoft-256/1f90f-1f3fe.png differ
diff --git a/img-microsoft-256/1f90f-1f3ff.png b/img-microsoft-256/1f90f-1f3ff.png
new file mode 100644
index 0000000000..fad580b23f
Binary files /dev/null and b/img-microsoft-256/1f90f-1f3ff.png differ
diff --git a/img-microsoft-256/1f90f.png b/img-microsoft-256/1f90f.png
new file mode 100644
index 0000000000..acb947dc9d
Binary files /dev/null and b/img-microsoft-256/1f90f.png differ
diff --git a/img-microsoft-256/1f910.png b/img-microsoft-256/1f910.png
new file mode 100644
index 0000000000..c39a07dacd
Binary files /dev/null and b/img-microsoft-256/1f910.png differ
diff --git a/img-microsoft-256/1f911.png b/img-microsoft-256/1f911.png
new file mode 100644
index 0000000000..830864d18f
Binary files /dev/null and b/img-microsoft-256/1f911.png differ
diff --git a/img-microsoft-256/1f912.png b/img-microsoft-256/1f912.png
new file mode 100644
index 0000000000..fc61f6f630
Binary files /dev/null and b/img-microsoft-256/1f912.png differ
diff --git a/img-microsoft-256/1f913.png b/img-microsoft-256/1f913.png
new file mode 100644
index 0000000000..c87595aa46
Binary files /dev/null and b/img-microsoft-256/1f913.png differ
diff --git a/img-microsoft-256/1f914.png b/img-microsoft-256/1f914.png
new file mode 100644
index 0000000000..ff665868ee
Binary files /dev/null and b/img-microsoft-256/1f914.png differ
diff --git a/img-microsoft-256/1f915.png b/img-microsoft-256/1f915.png
new file mode 100644
index 0000000000..9457918e55
Binary files /dev/null and b/img-microsoft-256/1f915.png differ
diff --git a/img-microsoft-256/1f916.png b/img-microsoft-256/1f916.png
new file mode 100644
index 0000000000..9ad7dd96f9
Binary files /dev/null and b/img-microsoft-256/1f916.png differ
diff --git a/img-microsoft-256/1f917.png b/img-microsoft-256/1f917.png
new file mode 100644
index 0000000000..98ae6dd199
Binary files /dev/null and b/img-microsoft-256/1f917.png differ
diff --git a/img-microsoft-256/1f918-1f3fb.png b/img-microsoft-256/1f918-1f3fb.png
new file mode 100644
index 0000000000..e82b5009b6
Binary files /dev/null and b/img-microsoft-256/1f918-1f3fb.png differ
diff --git a/img-microsoft-256/1f918-1f3fc.png b/img-microsoft-256/1f918-1f3fc.png
new file mode 100644
index 0000000000..f47c82dad4
Binary files /dev/null and b/img-microsoft-256/1f918-1f3fc.png differ
diff --git a/img-microsoft-256/1f918-1f3fd.png b/img-microsoft-256/1f918-1f3fd.png
new file mode 100644
index 0000000000..1546415444
Binary files /dev/null and b/img-microsoft-256/1f918-1f3fd.png differ
diff --git a/img-microsoft-256/1f918-1f3fe.png b/img-microsoft-256/1f918-1f3fe.png
new file mode 100644
index 0000000000..e0e1238a00
Binary files /dev/null and b/img-microsoft-256/1f918-1f3fe.png differ
diff --git a/img-microsoft-256/1f918-1f3ff.png b/img-microsoft-256/1f918-1f3ff.png
new file mode 100644
index 0000000000..e95e923179
Binary files /dev/null and b/img-microsoft-256/1f918-1f3ff.png differ
diff --git a/img-microsoft-256/1f918.png b/img-microsoft-256/1f918.png
new file mode 100644
index 0000000000..7664323123
Binary files /dev/null and b/img-microsoft-256/1f918.png differ
diff --git a/img-microsoft-256/1f919-1f3fb.png b/img-microsoft-256/1f919-1f3fb.png
new file mode 100644
index 0000000000..b11babcb3e
Binary files /dev/null and b/img-microsoft-256/1f919-1f3fb.png differ
diff --git a/img-microsoft-256/1f919-1f3fc.png b/img-microsoft-256/1f919-1f3fc.png
new file mode 100644
index 0000000000..7d15a9f85e
Binary files /dev/null and b/img-microsoft-256/1f919-1f3fc.png differ
diff --git a/img-microsoft-256/1f919-1f3fd.png b/img-microsoft-256/1f919-1f3fd.png
new file mode 100644
index 0000000000..ebf3c6c238
Binary files /dev/null and b/img-microsoft-256/1f919-1f3fd.png differ
diff --git a/img-microsoft-256/1f919-1f3fe.png b/img-microsoft-256/1f919-1f3fe.png
new file mode 100644
index 0000000000..381c60cc88
Binary files /dev/null and b/img-microsoft-256/1f919-1f3fe.png differ
diff --git a/img-microsoft-256/1f919-1f3ff.png b/img-microsoft-256/1f919-1f3ff.png
new file mode 100644
index 0000000000..ff344e383e
Binary files /dev/null and b/img-microsoft-256/1f919-1f3ff.png differ
diff --git a/img-microsoft-256/1f919.png b/img-microsoft-256/1f919.png
new file mode 100644
index 0000000000..8eb39bdaca
Binary files /dev/null and b/img-microsoft-256/1f919.png differ
diff --git a/img-microsoft-256/1f91a-1f3fb.png b/img-microsoft-256/1f91a-1f3fb.png
new file mode 100644
index 0000000000..872e24ec83
Binary files /dev/null and b/img-microsoft-256/1f91a-1f3fb.png differ
diff --git a/img-microsoft-256/1f91a-1f3fc.png b/img-microsoft-256/1f91a-1f3fc.png
new file mode 100644
index 0000000000..3257b7f30a
Binary files /dev/null and b/img-microsoft-256/1f91a-1f3fc.png differ
diff --git a/img-microsoft-256/1f91a-1f3fd.png b/img-microsoft-256/1f91a-1f3fd.png
new file mode 100644
index 0000000000..7880424a39
Binary files /dev/null and b/img-microsoft-256/1f91a-1f3fd.png differ
diff --git a/img-microsoft-256/1f91a-1f3fe.png b/img-microsoft-256/1f91a-1f3fe.png
new file mode 100644
index 0000000000..607d397f36
Binary files /dev/null and b/img-microsoft-256/1f91a-1f3fe.png differ
diff --git a/img-microsoft-256/1f91a-1f3ff.png b/img-microsoft-256/1f91a-1f3ff.png
new file mode 100644
index 0000000000..561e40d28b
Binary files /dev/null and b/img-microsoft-256/1f91a-1f3ff.png differ
diff --git a/img-microsoft-256/1f91a.png b/img-microsoft-256/1f91a.png
new file mode 100644
index 0000000000..f8c177db00
Binary files /dev/null and b/img-microsoft-256/1f91a.png differ
diff --git a/img-microsoft-256/1f91b-1f3fb.png b/img-microsoft-256/1f91b-1f3fb.png
new file mode 100644
index 0000000000..bab2ccf690
Binary files /dev/null and b/img-microsoft-256/1f91b-1f3fb.png differ
diff --git a/img-microsoft-256/1f91b-1f3fc.png b/img-microsoft-256/1f91b-1f3fc.png
new file mode 100644
index 0000000000..e7bd077918
Binary files /dev/null and b/img-microsoft-256/1f91b-1f3fc.png differ
diff --git a/img-microsoft-256/1f91b-1f3fd.png b/img-microsoft-256/1f91b-1f3fd.png
new file mode 100644
index 0000000000..f19cdafb88
Binary files /dev/null and b/img-microsoft-256/1f91b-1f3fd.png differ
diff --git a/img-microsoft-256/1f91b-1f3fe.png b/img-microsoft-256/1f91b-1f3fe.png
new file mode 100644
index 0000000000..b0abcd3d4d
Binary files /dev/null and b/img-microsoft-256/1f91b-1f3fe.png differ
diff --git a/img-microsoft-256/1f91b-1f3ff.png b/img-microsoft-256/1f91b-1f3ff.png
new file mode 100644
index 0000000000..1e789da01e
Binary files /dev/null and b/img-microsoft-256/1f91b-1f3ff.png differ
diff --git a/img-microsoft-256/1f91b.png b/img-microsoft-256/1f91b.png
new file mode 100644
index 0000000000..a95dfbd6cc
Binary files /dev/null and b/img-microsoft-256/1f91b.png differ
diff --git a/img-microsoft-256/1f91c-1f3fb.png b/img-microsoft-256/1f91c-1f3fb.png
new file mode 100644
index 0000000000..34c9ea13c1
Binary files /dev/null and b/img-microsoft-256/1f91c-1f3fb.png differ
diff --git a/img-microsoft-256/1f91c-1f3fc.png b/img-microsoft-256/1f91c-1f3fc.png
new file mode 100644
index 0000000000..e3a390554a
Binary files /dev/null and b/img-microsoft-256/1f91c-1f3fc.png differ
diff --git a/img-microsoft-256/1f91c-1f3fd.png b/img-microsoft-256/1f91c-1f3fd.png
new file mode 100644
index 0000000000..be6e04f8dd
Binary files /dev/null and b/img-microsoft-256/1f91c-1f3fd.png differ
diff --git a/img-microsoft-256/1f91c-1f3fe.png b/img-microsoft-256/1f91c-1f3fe.png
new file mode 100644
index 0000000000..047c52d6ff
Binary files /dev/null and b/img-microsoft-256/1f91c-1f3fe.png differ
diff --git a/img-microsoft-256/1f91c-1f3ff.png b/img-microsoft-256/1f91c-1f3ff.png
new file mode 100644
index 0000000000..62c0c3fec3
Binary files /dev/null and b/img-microsoft-256/1f91c-1f3ff.png differ
diff --git a/img-microsoft-256/1f91c.png b/img-microsoft-256/1f91c.png
new file mode 100644
index 0000000000..abbc62f8c4
Binary files /dev/null and b/img-microsoft-256/1f91c.png differ
diff --git a/img-microsoft-256/1f91d.png b/img-microsoft-256/1f91d.png
new file mode 100644
index 0000000000..0d0a0e193a
Binary files /dev/null and b/img-microsoft-256/1f91d.png differ
diff --git a/img-microsoft-256/1f91e-1f3fb.png b/img-microsoft-256/1f91e-1f3fb.png
new file mode 100644
index 0000000000..9bea10528d
Binary files /dev/null and b/img-microsoft-256/1f91e-1f3fb.png differ
diff --git a/img-microsoft-256/1f91e-1f3fc.png b/img-microsoft-256/1f91e-1f3fc.png
new file mode 100644
index 0000000000..f1eff51dfc
Binary files /dev/null and b/img-microsoft-256/1f91e-1f3fc.png differ
diff --git a/img-microsoft-256/1f91e-1f3fd.png b/img-microsoft-256/1f91e-1f3fd.png
new file mode 100644
index 0000000000..998e589c10
Binary files /dev/null and b/img-microsoft-256/1f91e-1f3fd.png differ
diff --git a/img-microsoft-256/1f91e-1f3fe.png b/img-microsoft-256/1f91e-1f3fe.png
new file mode 100644
index 0000000000..0ac53acae0
Binary files /dev/null and b/img-microsoft-256/1f91e-1f3fe.png differ
diff --git a/img-microsoft-256/1f91e-1f3ff.png b/img-microsoft-256/1f91e-1f3ff.png
new file mode 100644
index 0000000000..e98f359311
Binary files /dev/null and b/img-microsoft-256/1f91e-1f3ff.png differ
diff --git a/img-microsoft-256/1f91e.png b/img-microsoft-256/1f91e.png
new file mode 100644
index 0000000000..443f37af05
Binary files /dev/null and b/img-microsoft-256/1f91e.png differ
diff --git a/img-microsoft-256/1f91f-1f3fb.png b/img-microsoft-256/1f91f-1f3fb.png
new file mode 100644
index 0000000000..4c8a46cfa5
Binary files /dev/null and b/img-microsoft-256/1f91f-1f3fb.png differ
diff --git a/img-microsoft-256/1f91f-1f3fc.png b/img-microsoft-256/1f91f-1f3fc.png
new file mode 100644
index 0000000000..4edcbfee4f
Binary files /dev/null and b/img-microsoft-256/1f91f-1f3fc.png differ
diff --git a/img-microsoft-256/1f91f-1f3fd.png b/img-microsoft-256/1f91f-1f3fd.png
new file mode 100644
index 0000000000..452fdaa7f8
Binary files /dev/null and b/img-microsoft-256/1f91f-1f3fd.png differ
diff --git a/img-microsoft-256/1f91f-1f3fe.png b/img-microsoft-256/1f91f-1f3fe.png
new file mode 100644
index 0000000000..9ab80eea68
Binary files /dev/null and b/img-microsoft-256/1f91f-1f3fe.png differ
diff --git a/img-microsoft-256/1f91f-1f3ff.png b/img-microsoft-256/1f91f-1f3ff.png
new file mode 100644
index 0000000000..7d2599b001
Binary files /dev/null and b/img-microsoft-256/1f91f-1f3ff.png differ
diff --git a/img-microsoft-256/1f91f.png b/img-microsoft-256/1f91f.png
new file mode 100644
index 0000000000..f2d6b8ceb3
Binary files /dev/null and b/img-microsoft-256/1f91f.png differ
diff --git a/img-microsoft-256/1f920.png b/img-microsoft-256/1f920.png
new file mode 100644
index 0000000000..0f0e6f6867
Binary files /dev/null and b/img-microsoft-256/1f920.png differ
diff --git a/img-microsoft-256/1f921.png b/img-microsoft-256/1f921.png
new file mode 100644
index 0000000000..5cad43031a
Binary files /dev/null and b/img-microsoft-256/1f921.png differ
diff --git a/img-microsoft-256/1f922.png b/img-microsoft-256/1f922.png
new file mode 100644
index 0000000000..548395b695
Binary files /dev/null and b/img-microsoft-256/1f922.png differ
diff --git a/img-microsoft-256/1f923.png b/img-microsoft-256/1f923.png
new file mode 100644
index 0000000000..278f897881
Binary files /dev/null and b/img-microsoft-256/1f923.png differ
diff --git a/img-microsoft-256/1f924.png b/img-microsoft-256/1f924.png
new file mode 100644
index 0000000000..191b2d6b04
Binary files /dev/null and b/img-microsoft-256/1f924.png differ
diff --git a/img-microsoft-256/1f925.png b/img-microsoft-256/1f925.png
new file mode 100644
index 0000000000..0dd9f4be1b
Binary files /dev/null and b/img-microsoft-256/1f925.png differ
diff --git a/img-microsoft-256/1f926-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f926-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..7453e805bb
Binary files /dev/null and b/img-microsoft-256/1f926-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f926-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f926-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..96cf3f3b50
Binary files /dev/null and b/img-microsoft-256/1f926-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f926-1f3fb.png b/img-microsoft-256/1f926-1f3fb.png
new file mode 100644
index 0000000000..276bb8e142
Binary files /dev/null and b/img-microsoft-256/1f926-1f3fb.png differ
diff --git a/img-microsoft-256/1f926-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f926-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..f345f37ff3
Binary files /dev/null and b/img-microsoft-256/1f926-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f926-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f926-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a321f0be7b
Binary files /dev/null and b/img-microsoft-256/1f926-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f926-1f3fc.png b/img-microsoft-256/1f926-1f3fc.png
new file mode 100644
index 0000000000..7cb40395e7
Binary files /dev/null and b/img-microsoft-256/1f926-1f3fc.png differ
diff --git a/img-microsoft-256/1f926-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f926-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..0b6b83ad2d
Binary files /dev/null and b/img-microsoft-256/1f926-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f926-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f926-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e15f01da34
Binary files /dev/null and b/img-microsoft-256/1f926-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f926-1f3fd.png b/img-microsoft-256/1f926-1f3fd.png
new file mode 100644
index 0000000000..f9c9fb182c
Binary files /dev/null and b/img-microsoft-256/1f926-1f3fd.png differ
diff --git a/img-microsoft-256/1f926-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f926-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..ca28bc3057
Binary files /dev/null and b/img-microsoft-256/1f926-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f926-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f926-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..aa1f5a6fc7
Binary files /dev/null and b/img-microsoft-256/1f926-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f926-1f3fe.png b/img-microsoft-256/1f926-1f3fe.png
new file mode 100644
index 0000000000..caa51b54e2
Binary files /dev/null and b/img-microsoft-256/1f926-1f3fe.png differ
diff --git a/img-microsoft-256/1f926-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f926-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..53be1265a3
Binary files /dev/null and b/img-microsoft-256/1f926-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f926-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f926-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..70df723b9e
Binary files /dev/null and b/img-microsoft-256/1f926-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f926-1f3ff.png b/img-microsoft-256/1f926-1f3ff.png
new file mode 100644
index 0000000000..da862c9092
Binary files /dev/null and b/img-microsoft-256/1f926-1f3ff.png differ
diff --git a/img-microsoft-256/1f926-200d-2640-fe0f.png b/img-microsoft-256/1f926-200d-2640-fe0f.png
new file mode 100644
index 0000000000..e561f9a77f
Binary files /dev/null and b/img-microsoft-256/1f926-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f926-200d-2642-fe0f.png b/img-microsoft-256/1f926-200d-2642-fe0f.png
new file mode 100644
index 0000000000..3545c756b0
Binary files /dev/null and b/img-microsoft-256/1f926-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f926.png b/img-microsoft-256/1f926.png
new file mode 100644
index 0000000000..c6f2a8a780
Binary files /dev/null and b/img-microsoft-256/1f926.png differ
diff --git a/img-microsoft-256/1f927.png b/img-microsoft-256/1f927.png
new file mode 100644
index 0000000000..89fb63c21c
Binary files /dev/null and b/img-microsoft-256/1f927.png differ
diff --git a/img-microsoft-256/1f928.png b/img-microsoft-256/1f928.png
new file mode 100644
index 0000000000..17adf3bd6e
Binary files /dev/null and b/img-microsoft-256/1f928.png differ
diff --git a/img-microsoft-256/1f929.png b/img-microsoft-256/1f929.png
new file mode 100644
index 0000000000..2e54f60006
Binary files /dev/null and b/img-microsoft-256/1f929.png differ
diff --git a/img-microsoft-256/1f92a.png b/img-microsoft-256/1f92a.png
new file mode 100644
index 0000000000..f14f9db20b
Binary files /dev/null and b/img-microsoft-256/1f92a.png differ
diff --git a/img-microsoft-256/1f92b.png b/img-microsoft-256/1f92b.png
new file mode 100644
index 0000000000..baa43c3e5b
Binary files /dev/null and b/img-microsoft-256/1f92b.png differ
diff --git a/img-microsoft-256/1f92c.png b/img-microsoft-256/1f92c.png
new file mode 100644
index 0000000000..db9e839c84
Binary files /dev/null and b/img-microsoft-256/1f92c.png differ
diff --git a/img-microsoft-256/1f92d.png b/img-microsoft-256/1f92d.png
new file mode 100644
index 0000000000..483fbf48c9
Binary files /dev/null and b/img-microsoft-256/1f92d.png differ
diff --git a/img-microsoft-256/1f92e.png b/img-microsoft-256/1f92e.png
new file mode 100644
index 0000000000..826301d3b1
Binary files /dev/null and b/img-microsoft-256/1f92e.png differ
diff --git a/img-microsoft-256/1f92f.png b/img-microsoft-256/1f92f.png
new file mode 100644
index 0000000000..e8ec5182c8
Binary files /dev/null and b/img-microsoft-256/1f92f.png differ
diff --git a/img-microsoft-256/1f930-1f3fb.png b/img-microsoft-256/1f930-1f3fb.png
new file mode 100644
index 0000000000..87f1f8c911
Binary files /dev/null and b/img-microsoft-256/1f930-1f3fb.png differ
diff --git a/img-microsoft-256/1f930-1f3fc.png b/img-microsoft-256/1f930-1f3fc.png
new file mode 100644
index 0000000000..c0f3a6db18
Binary files /dev/null and b/img-microsoft-256/1f930-1f3fc.png differ
diff --git a/img-microsoft-256/1f930-1f3fd.png b/img-microsoft-256/1f930-1f3fd.png
new file mode 100644
index 0000000000..10a02c9717
Binary files /dev/null and b/img-microsoft-256/1f930-1f3fd.png differ
diff --git a/img-microsoft-256/1f930-1f3fe.png b/img-microsoft-256/1f930-1f3fe.png
new file mode 100644
index 0000000000..8585961e8b
Binary files /dev/null and b/img-microsoft-256/1f930-1f3fe.png differ
diff --git a/img-microsoft-256/1f930-1f3ff.png b/img-microsoft-256/1f930-1f3ff.png
new file mode 100644
index 0000000000..340d70e56c
Binary files /dev/null and b/img-microsoft-256/1f930-1f3ff.png differ
diff --git a/img-microsoft-256/1f930.png b/img-microsoft-256/1f930.png
new file mode 100644
index 0000000000..6da1b781c1
Binary files /dev/null and b/img-microsoft-256/1f930.png differ
diff --git a/img-microsoft-256/1f931-1f3fb.png b/img-microsoft-256/1f931-1f3fb.png
new file mode 100644
index 0000000000..464a0bf77d
Binary files /dev/null and b/img-microsoft-256/1f931-1f3fb.png differ
diff --git a/img-microsoft-256/1f931-1f3fc.png b/img-microsoft-256/1f931-1f3fc.png
new file mode 100644
index 0000000000..b86dab9d3d
Binary files /dev/null and b/img-microsoft-256/1f931-1f3fc.png differ
diff --git a/img-microsoft-256/1f931-1f3fd.png b/img-microsoft-256/1f931-1f3fd.png
new file mode 100644
index 0000000000..ece7e4e9a6
Binary files /dev/null and b/img-microsoft-256/1f931-1f3fd.png differ
diff --git a/img-microsoft-256/1f931-1f3fe.png b/img-microsoft-256/1f931-1f3fe.png
new file mode 100644
index 0000000000..24ebcf5619
Binary files /dev/null and b/img-microsoft-256/1f931-1f3fe.png differ
diff --git a/img-microsoft-256/1f931-1f3ff.png b/img-microsoft-256/1f931-1f3ff.png
new file mode 100644
index 0000000000..f3a3d44c84
Binary files /dev/null and b/img-microsoft-256/1f931-1f3ff.png differ
diff --git a/img-microsoft-256/1f931.png b/img-microsoft-256/1f931.png
new file mode 100644
index 0000000000..612b2b234f
Binary files /dev/null and b/img-microsoft-256/1f931.png differ
diff --git a/img-microsoft-256/1f932-1f3fb.png b/img-microsoft-256/1f932-1f3fb.png
new file mode 100644
index 0000000000..3e3526c62e
Binary files /dev/null and b/img-microsoft-256/1f932-1f3fb.png differ
diff --git a/img-microsoft-256/1f932-1f3fc.png b/img-microsoft-256/1f932-1f3fc.png
new file mode 100644
index 0000000000..a34df5a216
Binary files /dev/null and b/img-microsoft-256/1f932-1f3fc.png differ
diff --git a/img-microsoft-256/1f932-1f3fd.png b/img-microsoft-256/1f932-1f3fd.png
new file mode 100644
index 0000000000..9064b25d87
Binary files /dev/null and b/img-microsoft-256/1f932-1f3fd.png differ
diff --git a/img-microsoft-256/1f932-1f3fe.png b/img-microsoft-256/1f932-1f3fe.png
new file mode 100644
index 0000000000..78b3605fe3
Binary files /dev/null and b/img-microsoft-256/1f932-1f3fe.png differ
diff --git a/img-microsoft-256/1f932-1f3ff.png b/img-microsoft-256/1f932-1f3ff.png
new file mode 100644
index 0000000000..863c48877a
Binary files /dev/null and b/img-microsoft-256/1f932-1f3ff.png differ
diff --git a/img-microsoft-256/1f932.png b/img-microsoft-256/1f932.png
new file mode 100644
index 0000000000..e4fd93bdcb
Binary files /dev/null and b/img-microsoft-256/1f932.png differ
diff --git a/img-microsoft-256/1f933-1f3fb.png b/img-microsoft-256/1f933-1f3fb.png
new file mode 100644
index 0000000000..2e499477eb
Binary files /dev/null and b/img-microsoft-256/1f933-1f3fb.png differ
diff --git a/img-microsoft-256/1f933-1f3fc.png b/img-microsoft-256/1f933-1f3fc.png
new file mode 100644
index 0000000000..a3102bdf45
Binary files /dev/null and b/img-microsoft-256/1f933-1f3fc.png differ
diff --git a/img-microsoft-256/1f933-1f3fd.png b/img-microsoft-256/1f933-1f3fd.png
new file mode 100644
index 0000000000..efe87471da
Binary files /dev/null and b/img-microsoft-256/1f933-1f3fd.png differ
diff --git a/img-microsoft-256/1f933-1f3fe.png b/img-microsoft-256/1f933-1f3fe.png
new file mode 100644
index 0000000000..881101967f
Binary files /dev/null and b/img-microsoft-256/1f933-1f3fe.png differ
diff --git a/img-microsoft-256/1f933-1f3ff.png b/img-microsoft-256/1f933-1f3ff.png
new file mode 100644
index 0000000000..056cefec6c
Binary files /dev/null and b/img-microsoft-256/1f933-1f3ff.png differ
diff --git a/img-microsoft-256/1f933.png b/img-microsoft-256/1f933.png
new file mode 100644
index 0000000000..a3774646ae
Binary files /dev/null and b/img-microsoft-256/1f933.png differ
diff --git a/img-microsoft-256/1f934-1f3fb.png b/img-microsoft-256/1f934-1f3fb.png
new file mode 100644
index 0000000000..e72560955a
Binary files /dev/null and b/img-microsoft-256/1f934-1f3fb.png differ
diff --git a/img-microsoft-256/1f934-1f3fc.png b/img-microsoft-256/1f934-1f3fc.png
new file mode 100644
index 0000000000..657f8388cd
Binary files /dev/null and b/img-microsoft-256/1f934-1f3fc.png differ
diff --git a/img-microsoft-256/1f934-1f3fd.png b/img-microsoft-256/1f934-1f3fd.png
new file mode 100644
index 0000000000..768101dda4
Binary files /dev/null and b/img-microsoft-256/1f934-1f3fd.png differ
diff --git a/img-microsoft-256/1f934-1f3fe.png b/img-microsoft-256/1f934-1f3fe.png
new file mode 100644
index 0000000000..4936dfc4da
Binary files /dev/null and b/img-microsoft-256/1f934-1f3fe.png differ
diff --git a/img-microsoft-256/1f934-1f3ff.png b/img-microsoft-256/1f934-1f3ff.png
new file mode 100644
index 0000000000..1782e99255
Binary files /dev/null and b/img-microsoft-256/1f934-1f3ff.png differ
diff --git a/img-microsoft-256/1f934.png b/img-microsoft-256/1f934.png
new file mode 100644
index 0000000000..6a83b1b4eb
Binary files /dev/null and b/img-microsoft-256/1f934.png differ
diff --git a/img-microsoft-256/1f935-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f935-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..79d245085b
Binary files /dev/null and b/img-microsoft-256/1f935-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f935-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f935-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..9982ba58ca
Binary files /dev/null and b/img-microsoft-256/1f935-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f935-1f3fb.png b/img-microsoft-256/1f935-1f3fb.png
new file mode 100644
index 0000000000..1f5478d365
Binary files /dev/null and b/img-microsoft-256/1f935-1f3fb.png differ
diff --git a/img-microsoft-256/1f935-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f935-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..68e61a790b
Binary files /dev/null and b/img-microsoft-256/1f935-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f935-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f935-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..069ad28e1e
Binary files /dev/null and b/img-microsoft-256/1f935-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f935-1f3fc.png b/img-microsoft-256/1f935-1f3fc.png
new file mode 100644
index 0000000000..945dceceb4
Binary files /dev/null and b/img-microsoft-256/1f935-1f3fc.png differ
diff --git a/img-microsoft-256/1f935-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f935-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..7437453b99
Binary files /dev/null and b/img-microsoft-256/1f935-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f935-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f935-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a0122d8427
Binary files /dev/null and b/img-microsoft-256/1f935-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f935-1f3fd.png b/img-microsoft-256/1f935-1f3fd.png
new file mode 100644
index 0000000000..f7cfdecd13
Binary files /dev/null and b/img-microsoft-256/1f935-1f3fd.png differ
diff --git a/img-microsoft-256/1f935-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f935-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..7390bf0771
Binary files /dev/null and b/img-microsoft-256/1f935-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f935-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f935-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..8dc52ef290
Binary files /dev/null and b/img-microsoft-256/1f935-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f935-1f3fe.png b/img-microsoft-256/1f935-1f3fe.png
new file mode 100644
index 0000000000..0f80b1a494
Binary files /dev/null and b/img-microsoft-256/1f935-1f3fe.png differ
diff --git a/img-microsoft-256/1f935-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f935-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..4441fca07d
Binary files /dev/null and b/img-microsoft-256/1f935-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f935-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f935-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a69bb9143c
Binary files /dev/null and b/img-microsoft-256/1f935-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f935-1f3ff.png b/img-microsoft-256/1f935-1f3ff.png
new file mode 100644
index 0000000000..76d7b4b931
Binary files /dev/null and b/img-microsoft-256/1f935-1f3ff.png differ
diff --git a/img-microsoft-256/1f935-200d-2640-fe0f.png b/img-microsoft-256/1f935-200d-2640-fe0f.png
new file mode 100644
index 0000000000..838c8141f4
Binary files /dev/null and b/img-microsoft-256/1f935-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f935-200d-2642-fe0f.png b/img-microsoft-256/1f935-200d-2642-fe0f.png
new file mode 100644
index 0000000000..cbd7366238
Binary files /dev/null and b/img-microsoft-256/1f935-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f935.png b/img-microsoft-256/1f935.png
new file mode 100644
index 0000000000..bc9c764135
Binary files /dev/null and b/img-microsoft-256/1f935.png differ
diff --git a/img-microsoft-256/1f936-1f3fb.png b/img-microsoft-256/1f936-1f3fb.png
new file mode 100644
index 0000000000..dc498c0864
Binary files /dev/null and b/img-microsoft-256/1f936-1f3fb.png differ
diff --git a/img-microsoft-256/1f936-1f3fc.png b/img-microsoft-256/1f936-1f3fc.png
new file mode 100644
index 0000000000..26bfe7e6c2
Binary files /dev/null and b/img-microsoft-256/1f936-1f3fc.png differ
diff --git a/img-microsoft-256/1f936-1f3fd.png b/img-microsoft-256/1f936-1f3fd.png
new file mode 100644
index 0000000000..fe331ce9f2
Binary files /dev/null and b/img-microsoft-256/1f936-1f3fd.png differ
diff --git a/img-microsoft-256/1f936-1f3fe.png b/img-microsoft-256/1f936-1f3fe.png
new file mode 100644
index 0000000000..fe5cf99c8e
Binary files /dev/null and b/img-microsoft-256/1f936-1f3fe.png differ
diff --git a/img-microsoft-256/1f936-1f3ff.png b/img-microsoft-256/1f936-1f3ff.png
new file mode 100644
index 0000000000..b1e04860ca
Binary files /dev/null and b/img-microsoft-256/1f936-1f3ff.png differ
diff --git a/img-microsoft-256/1f936.png b/img-microsoft-256/1f936.png
new file mode 100644
index 0000000000..e6c6c3e8f7
Binary files /dev/null and b/img-microsoft-256/1f936.png differ
diff --git a/img-microsoft-256/1f937-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f937-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..99e7d6847c
Binary files /dev/null and b/img-microsoft-256/1f937-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f937-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f937-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..dcd94a38ad
Binary files /dev/null and b/img-microsoft-256/1f937-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f937-1f3fb.png b/img-microsoft-256/1f937-1f3fb.png
new file mode 100644
index 0000000000..59f92ac90f
Binary files /dev/null and b/img-microsoft-256/1f937-1f3fb.png differ
diff --git a/img-microsoft-256/1f937-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f937-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..2729522461
Binary files /dev/null and b/img-microsoft-256/1f937-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f937-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f937-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d64e4fa231
Binary files /dev/null and b/img-microsoft-256/1f937-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f937-1f3fc.png b/img-microsoft-256/1f937-1f3fc.png
new file mode 100644
index 0000000000..48cc4257a1
Binary files /dev/null and b/img-microsoft-256/1f937-1f3fc.png differ
diff --git a/img-microsoft-256/1f937-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f937-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..8e5303d927
Binary files /dev/null and b/img-microsoft-256/1f937-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f937-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f937-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..0b185f4701
Binary files /dev/null and b/img-microsoft-256/1f937-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f937-1f3fd.png b/img-microsoft-256/1f937-1f3fd.png
new file mode 100644
index 0000000000..7c516f0a80
Binary files /dev/null and b/img-microsoft-256/1f937-1f3fd.png differ
diff --git a/img-microsoft-256/1f937-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f937-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..86bd933fb1
Binary files /dev/null and b/img-microsoft-256/1f937-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f937-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f937-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..54c9b5ee96
Binary files /dev/null and b/img-microsoft-256/1f937-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f937-1f3fe.png b/img-microsoft-256/1f937-1f3fe.png
new file mode 100644
index 0000000000..3f9a600b28
Binary files /dev/null and b/img-microsoft-256/1f937-1f3fe.png differ
diff --git a/img-microsoft-256/1f937-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f937-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..fffb0eec94
Binary files /dev/null and b/img-microsoft-256/1f937-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f937-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f937-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..5a6c5c1deb
Binary files /dev/null and b/img-microsoft-256/1f937-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f937-1f3ff.png b/img-microsoft-256/1f937-1f3ff.png
new file mode 100644
index 0000000000..41f493a51b
Binary files /dev/null and b/img-microsoft-256/1f937-1f3ff.png differ
diff --git a/img-microsoft-256/1f937-200d-2640-fe0f.png b/img-microsoft-256/1f937-200d-2640-fe0f.png
new file mode 100644
index 0000000000..60d841fe32
Binary files /dev/null and b/img-microsoft-256/1f937-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f937-200d-2642-fe0f.png b/img-microsoft-256/1f937-200d-2642-fe0f.png
new file mode 100644
index 0000000000..5e2acb7acc
Binary files /dev/null and b/img-microsoft-256/1f937-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f937.png b/img-microsoft-256/1f937.png
new file mode 100644
index 0000000000..94ea5fe836
Binary files /dev/null and b/img-microsoft-256/1f937.png differ
diff --git a/img-microsoft-256/1f938-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f938-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..1e302a3865
Binary files /dev/null and b/img-microsoft-256/1f938-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f938-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f938-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..2042bc08d7
Binary files /dev/null and b/img-microsoft-256/1f938-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f938-1f3fb.png b/img-microsoft-256/1f938-1f3fb.png
new file mode 100644
index 0000000000..3f4213a39d
Binary files /dev/null and b/img-microsoft-256/1f938-1f3fb.png differ
diff --git a/img-microsoft-256/1f938-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f938-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..57d9d8bbc9
Binary files /dev/null and b/img-microsoft-256/1f938-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f938-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f938-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..9daa2007fa
Binary files /dev/null and b/img-microsoft-256/1f938-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f938-1f3fc.png b/img-microsoft-256/1f938-1f3fc.png
new file mode 100644
index 0000000000..e3fb901d1e
Binary files /dev/null and b/img-microsoft-256/1f938-1f3fc.png differ
diff --git a/img-microsoft-256/1f938-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f938-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..8e89dd7f34
Binary files /dev/null and b/img-microsoft-256/1f938-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f938-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f938-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a4105b499a
Binary files /dev/null and b/img-microsoft-256/1f938-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f938-1f3fd.png b/img-microsoft-256/1f938-1f3fd.png
new file mode 100644
index 0000000000..288bd85a14
Binary files /dev/null and b/img-microsoft-256/1f938-1f3fd.png differ
diff --git a/img-microsoft-256/1f938-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f938-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..7e8af73728
Binary files /dev/null and b/img-microsoft-256/1f938-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f938-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f938-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..aa12219d02
Binary files /dev/null and b/img-microsoft-256/1f938-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f938-1f3fe.png b/img-microsoft-256/1f938-1f3fe.png
new file mode 100644
index 0000000000..2634b36fc9
Binary files /dev/null and b/img-microsoft-256/1f938-1f3fe.png differ
diff --git a/img-microsoft-256/1f938-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f938-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..1615b0349c
Binary files /dev/null and b/img-microsoft-256/1f938-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f938-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f938-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..c1f2e8562d
Binary files /dev/null and b/img-microsoft-256/1f938-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f938-1f3ff.png b/img-microsoft-256/1f938-1f3ff.png
new file mode 100644
index 0000000000..a2ed84368c
Binary files /dev/null and b/img-microsoft-256/1f938-1f3ff.png differ
diff --git a/img-microsoft-256/1f938-200d-2640-fe0f.png b/img-microsoft-256/1f938-200d-2640-fe0f.png
new file mode 100644
index 0000000000..048fe682bb
Binary files /dev/null and b/img-microsoft-256/1f938-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f938-200d-2642-fe0f.png b/img-microsoft-256/1f938-200d-2642-fe0f.png
new file mode 100644
index 0000000000..bdcbae85b2
Binary files /dev/null and b/img-microsoft-256/1f938-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f938.png b/img-microsoft-256/1f938.png
new file mode 100644
index 0000000000..6fddec9b99
Binary files /dev/null and b/img-microsoft-256/1f938.png differ
diff --git a/img-microsoft-256/1f939-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f939-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..b2672195f9
Binary files /dev/null and b/img-microsoft-256/1f939-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f939-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f939-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..84e66d1fb8
Binary files /dev/null and b/img-microsoft-256/1f939-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f939-1f3fb.png b/img-microsoft-256/1f939-1f3fb.png
new file mode 100644
index 0000000000..7140a49386
Binary files /dev/null and b/img-microsoft-256/1f939-1f3fb.png differ
diff --git a/img-microsoft-256/1f939-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f939-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..a857ca3487
Binary files /dev/null and b/img-microsoft-256/1f939-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f939-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f939-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..90337d208e
Binary files /dev/null and b/img-microsoft-256/1f939-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f939-1f3fc.png b/img-microsoft-256/1f939-1f3fc.png
new file mode 100644
index 0000000000..bc1a4f5c6a
Binary files /dev/null and b/img-microsoft-256/1f939-1f3fc.png differ
diff --git a/img-microsoft-256/1f939-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f939-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..bdd42049ca
Binary files /dev/null and b/img-microsoft-256/1f939-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f939-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f939-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..7f4acf4cc8
Binary files /dev/null and b/img-microsoft-256/1f939-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f939-1f3fd.png b/img-microsoft-256/1f939-1f3fd.png
new file mode 100644
index 0000000000..54ad469e5b
Binary files /dev/null and b/img-microsoft-256/1f939-1f3fd.png differ
diff --git a/img-microsoft-256/1f939-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f939-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..bee3f955af
Binary files /dev/null and b/img-microsoft-256/1f939-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f939-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f939-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..0bc36e7fb4
Binary files /dev/null and b/img-microsoft-256/1f939-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f939-1f3fe.png b/img-microsoft-256/1f939-1f3fe.png
new file mode 100644
index 0000000000..af5e5a3b5e
Binary files /dev/null and b/img-microsoft-256/1f939-1f3fe.png differ
diff --git a/img-microsoft-256/1f939-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f939-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..2aec93ca1d
Binary files /dev/null and b/img-microsoft-256/1f939-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f939-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f939-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..ccd25a863d
Binary files /dev/null and b/img-microsoft-256/1f939-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f939-1f3ff.png b/img-microsoft-256/1f939-1f3ff.png
new file mode 100644
index 0000000000..0d0b4e2ab4
Binary files /dev/null and b/img-microsoft-256/1f939-1f3ff.png differ
diff --git a/img-microsoft-256/1f939-200d-2640-fe0f.png b/img-microsoft-256/1f939-200d-2640-fe0f.png
new file mode 100644
index 0000000000..67f8b38ca4
Binary files /dev/null and b/img-microsoft-256/1f939-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f939-200d-2642-fe0f.png b/img-microsoft-256/1f939-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d647623fbe
Binary files /dev/null and b/img-microsoft-256/1f939-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f939.png b/img-microsoft-256/1f939.png
new file mode 100644
index 0000000000..46a45e36fc
Binary files /dev/null and b/img-microsoft-256/1f939.png differ
diff --git a/img-microsoft-256/1f93a.png b/img-microsoft-256/1f93a.png
new file mode 100644
index 0000000000..8f88874be1
Binary files /dev/null and b/img-microsoft-256/1f93a.png differ
diff --git a/img-microsoft-256/1f93c-200d-2640-fe0f.png b/img-microsoft-256/1f93c-200d-2640-fe0f.png
new file mode 100644
index 0000000000..f23898fa1d
Binary files /dev/null and b/img-microsoft-256/1f93c-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f93c-200d-2642-fe0f.png b/img-microsoft-256/1f93c-200d-2642-fe0f.png
new file mode 100644
index 0000000000..1ecfddc1d0
Binary files /dev/null and b/img-microsoft-256/1f93c-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f93c.png b/img-microsoft-256/1f93c.png
new file mode 100644
index 0000000000..7afbb39330
Binary files /dev/null and b/img-microsoft-256/1f93c.png differ
diff --git a/img-microsoft-256/1f93d-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f93d-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..750de21baa
Binary files /dev/null and b/img-microsoft-256/1f93d-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f93d-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f93d-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..38fb85a207
Binary files /dev/null and b/img-microsoft-256/1f93d-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f93d-1f3fb.png b/img-microsoft-256/1f93d-1f3fb.png
new file mode 100644
index 0000000000..648fb76f37
Binary files /dev/null and b/img-microsoft-256/1f93d-1f3fb.png differ
diff --git a/img-microsoft-256/1f93d-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f93d-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..975e932c69
Binary files /dev/null and b/img-microsoft-256/1f93d-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f93d-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f93d-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..74831b6c68
Binary files /dev/null and b/img-microsoft-256/1f93d-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f93d-1f3fc.png b/img-microsoft-256/1f93d-1f3fc.png
new file mode 100644
index 0000000000..fe0d125163
Binary files /dev/null and b/img-microsoft-256/1f93d-1f3fc.png differ
diff --git a/img-microsoft-256/1f93d-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f93d-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..9e4d524b64
Binary files /dev/null and b/img-microsoft-256/1f93d-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f93d-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f93d-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..fdbec3ce8f
Binary files /dev/null and b/img-microsoft-256/1f93d-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f93d-1f3fd.png b/img-microsoft-256/1f93d-1f3fd.png
new file mode 100644
index 0000000000..1e5ec606bf
Binary files /dev/null and b/img-microsoft-256/1f93d-1f3fd.png differ
diff --git a/img-microsoft-256/1f93d-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f93d-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..1d3f9011a6
Binary files /dev/null and b/img-microsoft-256/1f93d-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f93d-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f93d-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..db8a8957fa
Binary files /dev/null and b/img-microsoft-256/1f93d-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f93d-1f3fe.png b/img-microsoft-256/1f93d-1f3fe.png
new file mode 100644
index 0000000000..2563f78a66
Binary files /dev/null and b/img-microsoft-256/1f93d-1f3fe.png differ
diff --git a/img-microsoft-256/1f93d-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f93d-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..62ead7b049
Binary files /dev/null and b/img-microsoft-256/1f93d-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f93d-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f93d-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..97a7ce7127
Binary files /dev/null and b/img-microsoft-256/1f93d-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f93d-1f3ff.png b/img-microsoft-256/1f93d-1f3ff.png
new file mode 100644
index 0000000000..cfca11882e
Binary files /dev/null and b/img-microsoft-256/1f93d-1f3ff.png differ
diff --git a/img-microsoft-256/1f93d-200d-2640-fe0f.png b/img-microsoft-256/1f93d-200d-2640-fe0f.png
new file mode 100644
index 0000000000..76d5c07f09
Binary files /dev/null and b/img-microsoft-256/1f93d-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f93d-200d-2642-fe0f.png b/img-microsoft-256/1f93d-200d-2642-fe0f.png
new file mode 100644
index 0000000000..12f6853c00
Binary files /dev/null and b/img-microsoft-256/1f93d-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f93d.png b/img-microsoft-256/1f93d.png
new file mode 100644
index 0000000000..adce09fe4e
Binary files /dev/null and b/img-microsoft-256/1f93d.png differ
diff --git a/img-microsoft-256/1f93e-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f93e-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..3d75247d80
Binary files /dev/null and b/img-microsoft-256/1f93e-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f93e-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f93e-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d73a3ee236
Binary files /dev/null and b/img-microsoft-256/1f93e-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f93e-1f3fb.png b/img-microsoft-256/1f93e-1f3fb.png
new file mode 100644
index 0000000000..57e2a35af4
Binary files /dev/null and b/img-microsoft-256/1f93e-1f3fb.png differ
diff --git a/img-microsoft-256/1f93e-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f93e-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..b7cedad424
Binary files /dev/null and b/img-microsoft-256/1f93e-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f93e-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f93e-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a66756f8be
Binary files /dev/null and b/img-microsoft-256/1f93e-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f93e-1f3fc.png b/img-microsoft-256/1f93e-1f3fc.png
new file mode 100644
index 0000000000..4e89822613
Binary files /dev/null and b/img-microsoft-256/1f93e-1f3fc.png differ
diff --git a/img-microsoft-256/1f93e-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f93e-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..c49bda6e2e
Binary files /dev/null and b/img-microsoft-256/1f93e-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f93e-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f93e-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..ae6d10412a
Binary files /dev/null and b/img-microsoft-256/1f93e-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f93e-1f3fd.png b/img-microsoft-256/1f93e-1f3fd.png
new file mode 100644
index 0000000000..a85b783ef2
Binary files /dev/null and b/img-microsoft-256/1f93e-1f3fd.png differ
diff --git a/img-microsoft-256/1f93e-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f93e-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..5e3fbb4b14
Binary files /dev/null and b/img-microsoft-256/1f93e-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f93e-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f93e-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..573b68bfe6
Binary files /dev/null and b/img-microsoft-256/1f93e-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f93e-1f3fe.png b/img-microsoft-256/1f93e-1f3fe.png
new file mode 100644
index 0000000000..286bc2e079
Binary files /dev/null and b/img-microsoft-256/1f93e-1f3fe.png differ
diff --git a/img-microsoft-256/1f93e-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f93e-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..28a87608fe
Binary files /dev/null and b/img-microsoft-256/1f93e-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f93e-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f93e-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..632085d9f9
Binary files /dev/null and b/img-microsoft-256/1f93e-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f93e-1f3ff.png b/img-microsoft-256/1f93e-1f3ff.png
new file mode 100644
index 0000000000..0840963b09
Binary files /dev/null and b/img-microsoft-256/1f93e-1f3ff.png differ
diff --git a/img-microsoft-256/1f93e-200d-2640-fe0f.png b/img-microsoft-256/1f93e-200d-2640-fe0f.png
new file mode 100644
index 0000000000..3ef5888af4
Binary files /dev/null and b/img-microsoft-256/1f93e-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f93e-200d-2642-fe0f.png b/img-microsoft-256/1f93e-200d-2642-fe0f.png
new file mode 100644
index 0000000000..120b3879be
Binary files /dev/null and b/img-microsoft-256/1f93e-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f93e.png b/img-microsoft-256/1f93e.png
new file mode 100644
index 0000000000..126fe33480
Binary files /dev/null and b/img-microsoft-256/1f93e.png differ
diff --git a/img-microsoft-256/1f93f.png b/img-microsoft-256/1f93f.png
new file mode 100644
index 0000000000..9f9da625e8
Binary files /dev/null and b/img-microsoft-256/1f93f.png differ
diff --git a/img-microsoft-256/1f940.png b/img-microsoft-256/1f940.png
new file mode 100644
index 0000000000..fdbcee264c
Binary files /dev/null and b/img-microsoft-256/1f940.png differ
diff --git a/img-microsoft-256/1f941.png b/img-microsoft-256/1f941.png
new file mode 100644
index 0000000000..d91b547ef1
Binary files /dev/null and b/img-microsoft-256/1f941.png differ
diff --git a/img-microsoft-256/1f942.png b/img-microsoft-256/1f942.png
new file mode 100644
index 0000000000..4682a5d573
Binary files /dev/null and b/img-microsoft-256/1f942.png differ
diff --git a/img-microsoft-256/1f943.png b/img-microsoft-256/1f943.png
new file mode 100644
index 0000000000..bdfd0c2580
Binary files /dev/null and b/img-microsoft-256/1f943.png differ
diff --git a/img-microsoft-256/1f944.png b/img-microsoft-256/1f944.png
new file mode 100644
index 0000000000..46566952a3
Binary files /dev/null and b/img-microsoft-256/1f944.png differ
diff --git a/img-microsoft-256/1f945.png b/img-microsoft-256/1f945.png
new file mode 100644
index 0000000000..45c4bb8934
Binary files /dev/null and b/img-microsoft-256/1f945.png differ
diff --git a/img-microsoft-256/1f947.png b/img-microsoft-256/1f947.png
new file mode 100644
index 0000000000..5cee68ef63
Binary files /dev/null and b/img-microsoft-256/1f947.png differ
diff --git a/img-microsoft-256/1f948.png b/img-microsoft-256/1f948.png
new file mode 100644
index 0000000000..c1605f34f4
Binary files /dev/null and b/img-microsoft-256/1f948.png differ
diff --git a/img-microsoft-256/1f949.png b/img-microsoft-256/1f949.png
new file mode 100644
index 0000000000..71ef87a447
Binary files /dev/null and b/img-microsoft-256/1f949.png differ
diff --git a/img-microsoft-256/1f94a.png b/img-microsoft-256/1f94a.png
new file mode 100644
index 0000000000..3e8e0f5b37
Binary files /dev/null and b/img-microsoft-256/1f94a.png differ
diff --git a/img-microsoft-256/1f94b.png b/img-microsoft-256/1f94b.png
new file mode 100644
index 0000000000..8a637be147
Binary files /dev/null and b/img-microsoft-256/1f94b.png differ
diff --git a/img-microsoft-256/1f94c.png b/img-microsoft-256/1f94c.png
new file mode 100644
index 0000000000..245e9f7a93
Binary files /dev/null and b/img-microsoft-256/1f94c.png differ
diff --git a/img-microsoft-256/1f94d.png b/img-microsoft-256/1f94d.png
new file mode 100644
index 0000000000..50227a27c5
Binary files /dev/null and b/img-microsoft-256/1f94d.png differ
diff --git a/img-microsoft-256/1f94e.png b/img-microsoft-256/1f94e.png
new file mode 100644
index 0000000000..28a0108d7a
Binary files /dev/null and b/img-microsoft-256/1f94e.png differ
diff --git a/img-microsoft-256/1f94f.png b/img-microsoft-256/1f94f.png
new file mode 100644
index 0000000000..9527dcc234
Binary files /dev/null and b/img-microsoft-256/1f94f.png differ
diff --git a/img-microsoft-256/1f950.png b/img-microsoft-256/1f950.png
new file mode 100644
index 0000000000..906c66b165
Binary files /dev/null and b/img-microsoft-256/1f950.png differ
diff --git a/img-microsoft-256/1f951.png b/img-microsoft-256/1f951.png
new file mode 100644
index 0000000000..c6059a67c4
Binary files /dev/null and b/img-microsoft-256/1f951.png differ
diff --git a/img-microsoft-256/1f952.png b/img-microsoft-256/1f952.png
new file mode 100644
index 0000000000..07777cce71
Binary files /dev/null and b/img-microsoft-256/1f952.png differ
diff --git a/img-microsoft-256/1f953.png b/img-microsoft-256/1f953.png
new file mode 100644
index 0000000000..72a4879695
Binary files /dev/null and b/img-microsoft-256/1f953.png differ
diff --git a/img-microsoft-256/1f954.png b/img-microsoft-256/1f954.png
new file mode 100644
index 0000000000..47cfb14691
Binary files /dev/null and b/img-microsoft-256/1f954.png differ
diff --git a/img-microsoft-256/1f955.png b/img-microsoft-256/1f955.png
new file mode 100644
index 0000000000..c3bd2484bf
Binary files /dev/null and b/img-microsoft-256/1f955.png differ
diff --git a/img-microsoft-256/1f956.png b/img-microsoft-256/1f956.png
new file mode 100644
index 0000000000..85c5a3b6a9
Binary files /dev/null and b/img-microsoft-256/1f956.png differ
diff --git a/img-microsoft-256/1f957.png b/img-microsoft-256/1f957.png
new file mode 100644
index 0000000000..9266766d08
Binary files /dev/null and b/img-microsoft-256/1f957.png differ
diff --git a/img-microsoft-256/1f958.png b/img-microsoft-256/1f958.png
new file mode 100644
index 0000000000..e9cd86c73a
Binary files /dev/null and b/img-microsoft-256/1f958.png differ
diff --git a/img-microsoft-256/1f959.png b/img-microsoft-256/1f959.png
new file mode 100644
index 0000000000..cbc05d653e
Binary files /dev/null and b/img-microsoft-256/1f959.png differ
diff --git a/img-microsoft-256/1f95a.png b/img-microsoft-256/1f95a.png
new file mode 100644
index 0000000000..b8f6e97927
Binary files /dev/null and b/img-microsoft-256/1f95a.png differ
diff --git a/img-microsoft-256/1f95b.png b/img-microsoft-256/1f95b.png
new file mode 100644
index 0000000000..f86bf7afbf
Binary files /dev/null and b/img-microsoft-256/1f95b.png differ
diff --git a/img-microsoft-256/1f95c.png b/img-microsoft-256/1f95c.png
new file mode 100644
index 0000000000..4251ef03bf
Binary files /dev/null and b/img-microsoft-256/1f95c.png differ
diff --git a/img-microsoft-256/1f95d.png b/img-microsoft-256/1f95d.png
new file mode 100644
index 0000000000..54356b5a39
Binary files /dev/null and b/img-microsoft-256/1f95d.png differ
diff --git a/img-microsoft-256/1f95e.png b/img-microsoft-256/1f95e.png
new file mode 100644
index 0000000000..d1c421b4a9
Binary files /dev/null and b/img-microsoft-256/1f95e.png differ
diff --git a/img-microsoft-256/1f95f.png b/img-microsoft-256/1f95f.png
new file mode 100644
index 0000000000..e15aa3c55f
Binary files /dev/null and b/img-microsoft-256/1f95f.png differ
diff --git a/img-microsoft-256/1f960.png b/img-microsoft-256/1f960.png
new file mode 100644
index 0000000000..4b3f315452
Binary files /dev/null and b/img-microsoft-256/1f960.png differ
diff --git a/img-microsoft-256/1f961.png b/img-microsoft-256/1f961.png
new file mode 100644
index 0000000000..777bfdfe1b
Binary files /dev/null and b/img-microsoft-256/1f961.png differ
diff --git a/img-microsoft-256/1f962.png b/img-microsoft-256/1f962.png
new file mode 100644
index 0000000000..cb40c43bc5
Binary files /dev/null and b/img-microsoft-256/1f962.png differ
diff --git a/img-microsoft-256/1f963.png b/img-microsoft-256/1f963.png
new file mode 100644
index 0000000000..359b26f9de
Binary files /dev/null and b/img-microsoft-256/1f963.png differ
diff --git a/img-microsoft-256/1f964.png b/img-microsoft-256/1f964.png
new file mode 100644
index 0000000000..ccde996afa
Binary files /dev/null and b/img-microsoft-256/1f964.png differ
diff --git a/img-microsoft-256/1f965.png b/img-microsoft-256/1f965.png
new file mode 100644
index 0000000000..23efe53c86
Binary files /dev/null and b/img-microsoft-256/1f965.png differ
diff --git a/img-microsoft-256/1f966.png b/img-microsoft-256/1f966.png
new file mode 100644
index 0000000000..7cc5229d6f
Binary files /dev/null and b/img-microsoft-256/1f966.png differ
diff --git a/img-microsoft-256/1f967.png b/img-microsoft-256/1f967.png
new file mode 100644
index 0000000000..3399d50305
Binary files /dev/null and b/img-microsoft-256/1f967.png differ
diff --git a/img-microsoft-256/1f968.png b/img-microsoft-256/1f968.png
new file mode 100644
index 0000000000..05a5289917
Binary files /dev/null and b/img-microsoft-256/1f968.png differ
diff --git a/img-microsoft-256/1f969.png b/img-microsoft-256/1f969.png
new file mode 100644
index 0000000000..4cc3b607b1
Binary files /dev/null and b/img-microsoft-256/1f969.png differ
diff --git a/img-microsoft-256/1f96a.png b/img-microsoft-256/1f96a.png
new file mode 100644
index 0000000000..cf883c297e
Binary files /dev/null and b/img-microsoft-256/1f96a.png differ
diff --git a/img-microsoft-256/1f96b.png b/img-microsoft-256/1f96b.png
new file mode 100644
index 0000000000..1e4a29bcc3
Binary files /dev/null and b/img-microsoft-256/1f96b.png differ
diff --git a/img-microsoft-256/1f96c.png b/img-microsoft-256/1f96c.png
new file mode 100644
index 0000000000..d97d0f9516
Binary files /dev/null and b/img-microsoft-256/1f96c.png differ
diff --git a/img-microsoft-256/1f96d.png b/img-microsoft-256/1f96d.png
new file mode 100644
index 0000000000..51bd92fd8c
Binary files /dev/null and b/img-microsoft-256/1f96d.png differ
diff --git a/img-microsoft-256/1f96e.png b/img-microsoft-256/1f96e.png
new file mode 100644
index 0000000000..4284279410
Binary files /dev/null and b/img-microsoft-256/1f96e.png differ
diff --git a/img-microsoft-256/1f96f.png b/img-microsoft-256/1f96f.png
new file mode 100644
index 0000000000..6ee95fb26e
Binary files /dev/null and b/img-microsoft-256/1f96f.png differ
diff --git a/img-microsoft-256/1f970.png b/img-microsoft-256/1f970.png
new file mode 100644
index 0000000000..416ef0410a
Binary files /dev/null and b/img-microsoft-256/1f970.png differ
diff --git a/img-microsoft-256/1f971.png b/img-microsoft-256/1f971.png
new file mode 100644
index 0000000000..3b283e4752
Binary files /dev/null and b/img-microsoft-256/1f971.png differ
diff --git a/img-microsoft-256/1f972.png b/img-microsoft-256/1f972.png
new file mode 100644
index 0000000000..62daf08416
Binary files /dev/null and b/img-microsoft-256/1f972.png differ
diff --git a/img-microsoft-256/1f973.png b/img-microsoft-256/1f973.png
new file mode 100644
index 0000000000..65260add29
Binary files /dev/null and b/img-microsoft-256/1f973.png differ
diff --git a/img-microsoft-256/1f974.png b/img-microsoft-256/1f974.png
new file mode 100644
index 0000000000..7e32bc5c83
Binary files /dev/null and b/img-microsoft-256/1f974.png differ
diff --git a/img-microsoft-256/1f975.png b/img-microsoft-256/1f975.png
new file mode 100644
index 0000000000..e0f57e3ed1
Binary files /dev/null and b/img-microsoft-256/1f975.png differ
diff --git a/img-microsoft-256/1f976.png b/img-microsoft-256/1f976.png
new file mode 100644
index 0000000000..f5f53e9efc
Binary files /dev/null and b/img-microsoft-256/1f976.png differ
diff --git a/img-microsoft-256/1f977-1f3fb.png b/img-microsoft-256/1f977-1f3fb.png
new file mode 100644
index 0000000000..b8c521d53f
Binary files /dev/null and b/img-microsoft-256/1f977-1f3fb.png differ
diff --git a/img-microsoft-256/1f977-1f3fc.png b/img-microsoft-256/1f977-1f3fc.png
new file mode 100644
index 0000000000..cb75ccac2d
Binary files /dev/null and b/img-microsoft-256/1f977-1f3fc.png differ
diff --git a/img-microsoft-256/1f977-1f3fd.png b/img-microsoft-256/1f977-1f3fd.png
new file mode 100644
index 0000000000..e88288c9b6
Binary files /dev/null and b/img-microsoft-256/1f977-1f3fd.png differ
diff --git a/img-microsoft-256/1f977-1f3fe.png b/img-microsoft-256/1f977-1f3fe.png
new file mode 100644
index 0000000000..774c48ca48
Binary files /dev/null and b/img-microsoft-256/1f977-1f3fe.png differ
diff --git a/img-microsoft-256/1f977-1f3ff.png b/img-microsoft-256/1f977-1f3ff.png
new file mode 100644
index 0000000000..6341c01744
Binary files /dev/null and b/img-microsoft-256/1f977-1f3ff.png differ
diff --git a/img-microsoft-256/1f977.png b/img-microsoft-256/1f977.png
new file mode 100644
index 0000000000..e2ebad7c7f
Binary files /dev/null and b/img-microsoft-256/1f977.png differ
diff --git a/img-microsoft-256/1f978.png b/img-microsoft-256/1f978.png
new file mode 100644
index 0000000000..2a70cd1c97
Binary files /dev/null and b/img-microsoft-256/1f978.png differ
diff --git a/img-microsoft-256/1f979.png b/img-microsoft-256/1f979.png
new file mode 100644
index 0000000000..99d074a129
Binary files /dev/null and b/img-microsoft-256/1f979.png differ
diff --git a/img-microsoft-256/1f97a.png b/img-microsoft-256/1f97a.png
new file mode 100644
index 0000000000..42f58d411c
Binary files /dev/null and b/img-microsoft-256/1f97a.png differ
diff --git a/img-microsoft-256/1f97b.png b/img-microsoft-256/1f97b.png
new file mode 100644
index 0000000000..53dd5a5d94
Binary files /dev/null and b/img-microsoft-256/1f97b.png differ
diff --git a/img-microsoft-256/1f97c.png b/img-microsoft-256/1f97c.png
new file mode 100644
index 0000000000..d44172194f
Binary files /dev/null and b/img-microsoft-256/1f97c.png differ
diff --git a/img-microsoft-256/1f97d.png b/img-microsoft-256/1f97d.png
new file mode 100644
index 0000000000..2e777147a5
Binary files /dev/null and b/img-microsoft-256/1f97d.png differ
diff --git a/img-microsoft-256/1f97e.png b/img-microsoft-256/1f97e.png
new file mode 100644
index 0000000000..4b85e2a392
Binary files /dev/null and b/img-microsoft-256/1f97e.png differ
diff --git a/img-microsoft-256/1f97f.png b/img-microsoft-256/1f97f.png
new file mode 100644
index 0000000000..5be851e13c
Binary files /dev/null and b/img-microsoft-256/1f97f.png differ
diff --git a/img-microsoft-256/1f980.png b/img-microsoft-256/1f980.png
new file mode 100644
index 0000000000..9c168cc64c
Binary files /dev/null and b/img-microsoft-256/1f980.png differ
diff --git a/img-microsoft-256/1f981.png b/img-microsoft-256/1f981.png
new file mode 100644
index 0000000000..72d35a007e
Binary files /dev/null and b/img-microsoft-256/1f981.png differ
diff --git a/img-microsoft-256/1f982.png b/img-microsoft-256/1f982.png
new file mode 100644
index 0000000000..804113f93e
Binary files /dev/null and b/img-microsoft-256/1f982.png differ
diff --git a/img-microsoft-256/1f983.png b/img-microsoft-256/1f983.png
new file mode 100644
index 0000000000..cff7ad8be3
Binary files /dev/null and b/img-microsoft-256/1f983.png differ
diff --git a/img-microsoft-256/1f984.png b/img-microsoft-256/1f984.png
new file mode 100644
index 0000000000..e5b4f1b02a
Binary files /dev/null and b/img-microsoft-256/1f984.png differ
diff --git a/img-microsoft-256/1f985.png b/img-microsoft-256/1f985.png
new file mode 100644
index 0000000000..f7bd68689b
Binary files /dev/null and b/img-microsoft-256/1f985.png differ
diff --git a/img-microsoft-256/1f986.png b/img-microsoft-256/1f986.png
new file mode 100644
index 0000000000..fe6b17c7f1
Binary files /dev/null and b/img-microsoft-256/1f986.png differ
diff --git a/img-microsoft-256/1f987.png b/img-microsoft-256/1f987.png
new file mode 100644
index 0000000000..b050381c35
Binary files /dev/null and b/img-microsoft-256/1f987.png differ
diff --git a/img-microsoft-256/1f988.png b/img-microsoft-256/1f988.png
new file mode 100644
index 0000000000..d43e685fdf
Binary files /dev/null and b/img-microsoft-256/1f988.png differ
diff --git a/img-microsoft-256/1f989.png b/img-microsoft-256/1f989.png
new file mode 100644
index 0000000000..3854c81996
Binary files /dev/null and b/img-microsoft-256/1f989.png differ
diff --git a/img-microsoft-256/1f98a.png b/img-microsoft-256/1f98a.png
new file mode 100644
index 0000000000..485cc52216
Binary files /dev/null and b/img-microsoft-256/1f98a.png differ
diff --git a/img-microsoft-256/1f98b.png b/img-microsoft-256/1f98b.png
new file mode 100644
index 0000000000..63c0c1bfe2
Binary files /dev/null and b/img-microsoft-256/1f98b.png differ
diff --git a/img-microsoft-256/1f98c.png b/img-microsoft-256/1f98c.png
new file mode 100644
index 0000000000..5cea558b2f
Binary files /dev/null and b/img-microsoft-256/1f98c.png differ
diff --git a/img-microsoft-256/1f98d.png b/img-microsoft-256/1f98d.png
new file mode 100644
index 0000000000..af63edeb71
Binary files /dev/null and b/img-microsoft-256/1f98d.png differ
diff --git a/img-microsoft-256/1f98e.png b/img-microsoft-256/1f98e.png
new file mode 100644
index 0000000000..d729ed65de
Binary files /dev/null and b/img-microsoft-256/1f98e.png differ
diff --git a/img-microsoft-256/1f98f.png b/img-microsoft-256/1f98f.png
new file mode 100644
index 0000000000..f717f86d5c
Binary files /dev/null and b/img-microsoft-256/1f98f.png differ
diff --git a/img-microsoft-256/1f990.png b/img-microsoft-256/1f990.png
new file mode 100644
index 0000000000..036be36bbb
Binary files /dev/null and b/img-microsoft-256/1f990.png differ
diff --git a/img-microsoft-256/1f991.png b/img-microsoft-256/1f991.png
new file mode 100644
index 0000000000..cbdee1ec05
Binary files /dev/null and b/img-microsoft-256/1f991.png differ
diff --git a/img-microsoft-256/1f992.png b/img-microsoft-256/1f992.png
new file mode 100644
index 0000000000..263d1ffaad
Binary files /dev/null and b/img-microsoft-256/1f992.png differ
diff --git a/img-microsoft-256/1f993.png b/img-microsoft-256/1f993.png
new file mode 100644
index 0000000000..bb5395e06e
Binary files /dev/null and b/img-microsoft-256/1f993.png differ
diff --git a/img-microsoft-256/1f994.png b/img-microsoft-256/1f994.png
new file mode 100644
index 0000000000..2f2ed0f17d
Binary files /dev/null and b/img-microsoft-256/1f994.png differ
diff --git a/img-microsoft-256/1f995.png b/img-microsoft-256/1f995.png
new file mode 100644
index 0000000000..8358891167
Binary files /dev/null and b/img-microsoft-256/1f995.png differ
diff --git a/img-microsoft-256/1f996.png b/img-microsoft-256/1f996.png
new file mode 100644
index 0000000000..c504834551
Binary files /dev/null and b/img-microsoft-256/1f996.png differ
diff --git a/img-microsoft-256/1f997.png b/img-microsoft-256/1f997.png
new file mode 100644
index 0000000000..598c2859d7
Binary files /dev/null and b/img-microsoft-256/1f997.png differ
diff --git a/img-microsoft-256/1f998.png b/img-microsoft-256/1f998.png
new file mode 100644
index 0000000000..65bb48aa1e
Binary files /dev/null and b/img-microsoft-256/1f998.png differ
diff --git a/img-microsoft-256/1f999.png b/img-microsoft-256/1f999.png
new file mode 100644
index 0000000000..7d5e46e65a
Binary files /dev/null and b/img-microsoft-256/1f999.png differ
diff --git a/img-microsoft-256/1f99a.png b/img-microsoft-256/1f99a.png
new file mode 100644
index 0000000000..db26e5457c
Binary files /dev/null and b/img-microsoft-256/1f99a.png differ
diff --git a/img-microsoft-256/1f99b.png b/img-microsoft-256/1f99b.png
new file mode 100644
index 0000000000..4db27a49b0
Binary files /dev/null and b/img-microsoft-256/1f99b.png differ
diff --git a/img-microsoft-256/1f99c.png b/img-microsoft-256/1f99c.png
new file mode 100644
index 0000000000..d79409705e
Binary files /dev/null and b/img-microsoft-256/1f99c.png differ
diff --git a/img-microsoft-256/1f99d.png b/img-microsoft-256/1f99d.png
new file mode 100644
index 0000000000..29df1bb41e
Binary files /dev/null and b/img-microsoft-256/1f99d.png differ
diff --git a/img-microsoft-256/1f99e.png b/img-microsoft-256/1f99e.png
new file mode 100644
index 0000000000..b297190bdb
Binary files /dev/null and b/img-microsoft-256/1f99e.png differ
diff --git a/img-microsoft-256/1f99f.png b/img-microsoft-256/1f99f.png
new file mode 100644
index 0000000000..e430573523
Binary files /dev/null and b/img-microsoft-256/1f99f.png differ
diff --git a/img-microsoft-256/1f9a0.png b/img-microsoft-256/1f9a0.png
new file mode 100644
index 0000000000..ccc3a34d35
Binary files /dev/null and b/img-microsoft-256/1f9a0.png differ
diff --git a/img-microsoft-256/1f9a1.png b/img-microsoft-256/1f9a1.png
new file mode 100644
index 0000000000..54f3c11035
Binary files /dev/null and b/img-microsoft-256/1f9a1.png differ
diff --git a/img-microsoft-256/1f9a2.png b/img-microsoft-256/1f9a2.png
new file mode 100644
index 0000000000..ecffd69cb0
Binary files /dev/null and b/img-microsoft-256/1f9a2.png differ
diff --git a/img-microsoft-256/1f9a3.png b/img-microsoft-256/1f9a3.png
new file mode 100644
index 0000000000..bf50f8a59e
Binary files /dev/null and b/img-microsoft-256/1f9a3.png differ
diff --git a/img-microsoft-256/1f9a4.png b/img-microsoft-256/1f9a4.png
new file mode 100644
index 0000000000..1cf933f33e
Binary files /dev/null and b/img-microsoft-256/1f9a4.png differ
diff --git a/img-microsoft-256/1f9a5.png b/img-microsoft-256/1f9a5.png
new file mode 100644
index 0000000000..e8ead62398
Binary files /dev/null and b/img-microsoft-256/1f9a5.png differ
diff --git a/img-microsoft-256/1f9a6.png b/img-microsoft-256/1f9a6.png
new file mode 100644
index 0000000000..f6325e20b0
Binary files /dev/null and b/img-microsoft-256/1f9a6.png differ
diff --git a/img-microsoft-256/1f9a7.png b/img-microsoft-256/1f9a7.png
new file mode 100644
index 0000000000..65cca5352c
Binary files /dev/null and b/img-microsoft-256/1f9a7.png differ
diff --git a/img-microsoft-256/1f9a8.png b/img-microsoft-256/1f9a8.png
new file mode 100644
index 0000000000..2af005a493
Binary files /dev/null and b/img-microsoft-256/1f9a8.png differ
diff --git a/img-microsoft-256/1f9a9.png b/img-microsoft-256/1f9a9.png
new file mode 100644
index 0000000000..7257c3adb7
Binary files /dev/null and b/img-microsoft-256/1f9a9.png differ
diff --git a/img-microsoft-256/1f9aa.png b/img-microsoft-256/1f9aa.png
new file mode 100644
index 0000000000..f292acc7a2
Binary files /dev/null and b/img-microsoft-256/1f9aa.png differ
diff --git a/img-microsoft-256/1f9ab.png b/img-microsoft-256/1f9ab.png
new file mode 100644
index 0000000000..b6eca9b3dc
Binary files /dev/null and b/img-microsoft-256/1f9ab.png differ
diff --git a/img-microsoft-256/1f9ac.png b/img-microsoft-256/1f9ac.png
new file mode 100644
index 0000000000..fb99cb92bd
Binary files /dev/null and b/img-microsoft-256/1f9ac.png differ
diff --git a/img-microsoft-256/1f9ad.png b/img-microsoft-256/1f9ad.png
new file mode 100644
index 0000000000..a71ca6f91c
Binary files /dev/null and b/img-microsoft-256/1f9ad.png differ
diff --git a/img-microsoft-256/1f9ae.png b/img-microsoft-256/1f9ae.png
new file mode 100644
index 0000000000..d05bba3feb
Binary files /dev/null and b/img-microsoft-256/1f9ae.png differ
diff --git a/img-microsoft-256/1f9af.png b/img-microsoft-256/1f9af.png
new file mode 100644
index 0000000000..80f76c86c8
Binary files /dev/null and b/img-microsoft-256/1f9af.png differ
diff --git a/img-microsoft-256/1f9b4.png b/img-microsoft-256/1f9b4.png
new file mode 100644
index 0000000000..f1ec5583c4
Binary files /dev/null and b/img-microsoft-256/1f9b4.png differ
diff --git a/img-microsoft-256/1f9b5-1f3fb.png b/img-microsoft-256/1f9b5-1f3fb.png
new file mode 100644
index 0000000000..5f723c0f84
Binary files /dev/null and b/img-microsoft-256/1f9b5-1f3fb.png differ
diff --git a/img-microsoft-256/1f9b5-1f3fc.png b/img-microsoft-256/1f9b5-1f3fc.png
new file mode 100644
index 0000000000..d9d5f78005
Binary files /dev/null and b/img-microsoft-256/1f9b5-1f3fc.png differ
diff --git a/img-microsoft-256/1f9b5-1f3fd.png b/img-microsoft-256/1f9b5-1f3fd.png
new file mode 100644
index 0000000000..a64e170ef8
Binary files /dev/null and b/img-microsoft-256/1f9b5-1f3fd.png differ
diff --git a/img-microsoft-256/1f9b5-1f3fe.png b/img-microsoft-256/1f9b5-1f3fe.png
new file mode 100644
index 0000000000..199440458d
Binary files /dev/null and b/img-microsoft-256/1f9b5-1f3fe.png differ
diff --git a/img-microsoft-256/1f9b5-1f3ff.png b/img-microsoft-256/1f9b5-1f3ff.png
new file mode 100644
index 0000000000..b1e7c77492
Binary files /dev/null and b/img-microsoft-256/1f9b5-1f3ff.png differ
diff --git a/img-microsoft-256/1f9b5.png b/img-microsoft-256/1f9b5.png
new file mode 100644
index 0000000000..e7768b491a
Binary files /dev/null and b/img-microsoft-256/1f9b5.png differ
diff --git a/img-microsoft-256/1f9b6-1f3fb.png b/img-microsoft-256/1f9b6-1f3fb.png
new file mode 100644
index 0000000000..0d19d1761c
Binary files /dev/null and b/img-microsoft-256/1f9b6-1f3fb.png differ
diff --git a/img-microsoft-256/1f9b6-1f3fc.png b/img-microsoft-256/1f9b6-1f3fc.png
new file mode 100644
index 0000000000..41a397c30c
Binary files /dev/null and b/img-microsoft-256/1f9b6-1f3fc.png differ
diff --git a/img-microsoft-256/1f9b6-1f3fd.png b/img-microsoft-256/1f9b6-1f3fd.png
new file mode 100644
index 0000000000..8a4f1b5640
Binary files /dev/null and b/img-microsoft-256/1f9b6-1f3fd.png differ
diff --git a/img-microsoft-256/1f9b6-1f3fe.png b/img-microsoft-256/1f9b6-1f3fe.png
new file mode 100644
index 0000000000..ffad58e478
Binary files /dev/null and b/img-microsoft-256/1f9b6-1f3fe.png differ
diff --git a/img-microsoft-256/1f9b6-1f3ff.png b/img-microsoft-256/1f9b6-1f3ff.png
new file mode 100644
index 0000000000..2c8961fc06
Binary files /dev/null and b/img-microsoft-256/1f9b6-1f3ff.png differ
diff --git a/img-microsoft-256/1f9b6.png b/img-microsoft-256/1f9b6.png
new file mode 100644
index 0000000000..1178b4ddc2
Binary files /dev/null and b/img-microsoft-256/1f9b6.png differ
diff --git a/img-microsoft-256/1f9b7.png b/img-microsoft-256/1f9b7.png
new file mode 100644
index 0000000000..fdd91c6a5c
Binary files /dev/null and b/img-microsoft-256/1f9b7.png differ
diff --git a/img-microsoft-256/1f9b8-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f9b8-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..2140459e9d
Binary files /dev/null and b/img-microsoft-256/1f9b8-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9b8-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f9b8-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..8696e8e24a
Binary files /dev/null and b/img-microsoft-256/1f9b8-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9b8-1f3fb.png b/img-microsoft-256/1f9b8-1f3fb.png
new file mode 100644
index 0000000000..5b18736fd9
Binary files /dev/null and b/img-microsoft-256/1f9b8-1f3fb.png differ
diff --git a/img-microsoft-256/1f9b8-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f9b8-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..f61cbb356a
Binary files /dev/null and b/img-microsoft-256/1f9b8-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9b8-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f9b8-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..8702c2f2bc
Binary files /dev/null and b/img-microsoft-256/1f9b8-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9b8-1f3fc.png b/img-microsoft-256/1f9b8-1f3fc.png
new file mode 100644
index 0000000000..eda1a77253
Binary files /dev/null and b/img-microsoft-256/1f9b8-1f3fc.png differ
diff --git a/img-microsoft-256/1f9b8-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f9b8-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..16fa5e9a1a
Binary files /dev/null and b/img-microsoft-256/1f9b8-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9b8-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f9b8-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..03bd74637d
Binary files /dev/null and b/img-microsoft-256/1f9b8-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9b8-1f3fd.png b/img-microsoft-256/1f9b8-1f3fd.png
new file mode 100644
index 0000000000..fb03b41fbe
Binary files /dev/null and b/img-microsoft-256/1f9b8-1f3fd.png differ
diff --git a/img-microsoft-256/1f9b8-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f9b8-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..100b3da395
Binary files /dev/null and b/img-microsoft-256/1f9b8-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9b8-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f9b8-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..c9c38c581c
Binary files /dev/null and b/img-microsoft-256/1f9b8-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9b8-1f3fe.png b/img-microsoft-256/1f9b8-1f3fe.png
new file mode 100644
index 0000000000..601b3e8d4f
Binary files /dev/null and b/img-microsoft-256/1f9b8-1f3fe.png differ
diff --git a/img-microsoft-256/1f9b8-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f9b8-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..38873e0daf
Binary files /dev/null and b/img-microsoft-256/1f9b8-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9b8-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f9b8-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..6a6a4b9ab9
Binary files /dev/null and b/img-microsoft-256/1f9b8-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9b8-1f3ff.png b/img-microsoft-256/1f9b8-1f3ff.png
new file mode 100644
index 0000000000..c4c3774ffd
Binary files /dev/null and b/img-microsoft-256/1f9b8-1f3ff.png differ
diff --git a/img-microsoft-256/1f9b8-200d-2640-fe0f.png b/img-microsoft-256/1f9b8-200d-2640-fe0f.png
new file mode 100644
index 0000000000..71733df387
Binary files /dev/null and b/img-microsoft-256/1f9b8-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9b8-200d-2642-fe0f.png b/img-microsoft-256/1f9b8-200d-2642-fe0f.png
new file mode 100644
index 0000000000..4d15903ebb
Binary files /dev/null and b/img-microsoft-256/1f9b8-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9b8.png b/img-microsoft-256/1f9b8.png
new file mode 100644
index 0000000000..101c54a97f
Binary files /dev/null and b/img-microsoft-256/1f9b8.png differ
diff --git a/img-microsoft-256/1f9b9-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f9b9-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..4775d772d1
Binary files /dev/null and b/img-microsoft-256/1f9b9-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9b9-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f9b9-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..44fdc03787
Binary files /dev/null and b/img-microsoft-256/1f9b9-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9b9-1f3fb.png b/img-microsoft-256/1f9b9-1f3fb.png
new file mode 100644
index 0000000000..1369204eb4
Binary files /dev/null and b/img-microsoft-256/1f9b9-1f3fb.png differ
diff --git a/img-microsoft-256/1f9b9-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f9b9-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..79d1324cbd
Binary files /dev/null and b/img-microsoft-256/1f9b9-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9b9-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f9b9-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..94e3f0b8db
Binary files /dev/null and b/img-microsoft-256/1f9b9-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9b9-1f3fc.png b/img-microsoft-256/1f9b9-1f3fc.png
new file mode 100644
index 0000000000..4f009b38cd
Binary files /dev/null and b/img-microsoft-256/1f9b9-1f3fc.png differ
diff --git a/img-microsoft-256/1f9b9-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f9b9-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..8ebb862a84
Binary files /dev/null and b/img-microsoft-256/1f9b9-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9b9-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f9b9-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..69bf95c84c
Binary files /dev/null and b/img-microsoft-256/1f9b9-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9b9-1f3fd.png b/img-microsoft-256/1f9b9-1f3fd.png
new file mode 100644
index 0000000000..87eb1027a4
Binary files /dev/null and b/img-microsoft-256/1f9b9-1f3fd.png differ
diff --git a/img-microsoft-256/1f9b9-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f9b9-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..0e1a13efba
Binary files /dev/null and b/img-microsoft-256/1f9b9-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9b9-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f9b9-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..45f1d00e9f
Binary files /dev/null and b/img-microsoft-256/1f9b9-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9b9-1f3fe.png b/img-microsoft-256/1f9b9-1f3fe.png
new file mode 100644
index 0000000000..a1a5710abd
Binary files /dev/null and b/img-microsoft-256/1f9b9-1f3fe.png differ
diff --git a/img-microsoft-256/1f9b9-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f9b9-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..1860fc0c1d
Binary files /dev/null and b/img-microsoft-256/1f9b9-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9b9-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f9b9-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..4bba3960e7
Binary files /dev/null and b/img-microsoft-256/1f9b9-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9b9-1f3ff.png b/img-microsoft-256/1f9b9-1f3ff.png
new file mode 100644
index 0000000000..6284a9d853
Binary files /dev/null and b/img-microsoft-256/1f9b9-1f3ff.png differ
diff --git a/img-microsoft-256/1f9b9-200d-2640-fe0f.png b/img-microsoft-256/1f9b9-200d-2640-fe0f.png
new file mode 100644
index 0000000000..2121741890
Binary files /dev/null and b/img-microsoft-256/1f9b9-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9b9-200d-2642-fe0f.png b/img-microsoft-256/1f9b9-200d-2642-fe0f.png
new file mode 100644
index 0000000000..2628187ba0
Binary files /dev/null and b/img-microsoft-256/1f9b9-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9b9.png b/img-microsoft-256/1f9b9.png
new file mode 100644
index 0000000000..1c89946eae
Binary files /dev/null and b/img-microsoft-256/1f9b9.png differ
diff --git a/img-microsoft-256/1f9ba.png b/img-microsoft-256/1f9ba.png
new file mode 100644
index 0000000000..bc4d20c1de
Binary files /dev/null and b/img-microsoft-256/1f9ba.png differ
diff --git a/img-microsoft-256/1f9bb-1f3fb.png b/img-microsoft-256/1f9bb-1f3fb.png
new file mode 100644
index 0000000000..24a6fcdf7d
Binary files /dev/null and b/img-microsoft-256/1f9bb-1f3fb.png differ
diff --git a/img-microsoft-256/1f9bb-1f3fc.png b/img-microsoft-256/1f9bb-1f3fc.png
new file mode 100644
index 0000000000..2dcd7ff326
Binary files /dev/null and b/img-microsoft-256/1f9bb-1f3fc.png differ
diff --git a/img-microsoft-256/1f9bb-1f3fd.png b/img-microsoft-256/1f9bb-1f3fd.png
new file mode 100644
index 0000000000..e9df11bdde
Binary files /dev/null and b/img-microsoft-256/1f9bb-1f3fd.png differ
diff --git a/img-microsoft-256/1f9bb-1f3fe.png b/img-microsoft-256/1f9bb-1f3fe.png
new file mode 100644
index 0000000000..0361e15b92
Binary files /dev/null and b/img-microsoft-256/1f9bb-1f3fe.png differ
diff --git a/img-microsoft-256/1f9bb-1f3ff.png b/img-microsoft-256/1f9bb-1f3ff.png
new file mode 100644
index 0000000000..547d445c77
Binary files /dev/null and b/img-microsoft-256/1f9bb-1f3ff.png differ
diff --git a/img-microsoft-256/1f9bb.png b/img-microsoft-256/1f9bb.png
new file mode 100644
index 0000000000..aab4d3f478
Binary files /dev/null and b/img-microsoft-256/1f9bb.png differ
diff --git a/img-microsoft-256/1f9bc.png b/img-microsoft-256/1f9bc.png
new file mode 100644
index 0000000000..5fd2f6b643
Binary files /dev/null and b/img-microsoft-256/1f9bc.png differ
diff --git a/img-microsoft-256/1f9bd.png b/img-microsoft-256/1f9bd.png
new file mode 100644
index 0000000000..ffae53ab62
Binary files /dev/null and b/img-microsoft-256/1f9bd.png differ
diff --git a/img-microsoft-256/1f9be.png b/img-microsoft-256/1f9be.png
new file mode 100644
index 0000000000..e147580cc6
Binary files /dev/null and b/img-microsoft-256/1f9be.png differ
diff --git a/img-microsoft-256/1f9bf.png b/img-microsoft-256/1f9bf.png
new file mode 100644
index 0000000000..6332ad5e9a
Binary files /dev/null and b/img-microsoft-256/1f9bf.png differ
diff --git a/img-microsoft-256/1f9c0.png b/img-microsoft-256/1f9c0.png
new file mode 100644
index 0000000000..b0b4772949
Binary files /dev/null and b/img-microsoft-256/1f9c0.png differ
diff --git a/img-microsoft-256/1f9c1.png b/img-microsoft-256/1f9c1.png
new file mode 100644
index 0000000000..ad08d10647
Binary files /dev/null and b/img-microsoft-256/1f9c1.png differ
diff --git a/img-microsoft-256/1f9c2.png b/img-microsoft-256/1f9c2.png
new file mode 100644
index 0000000000..ced383de47
Binary files /dev/null and b/img-microsoft-256/1f9c2.png differ
diff --git a/img-microsoft-256/1f9c3.png b/img-microsoft-256/1f9c3.png
new file mode 100644
index 0000000000..048dd8cf04
Binary files /dev/null and b/img-microsoft-256/1f9c3.png differ
diff --git a/img-microsoft-256/1f9c4.png b/img-microsoft-256/1f9c4.png
new file mode 100644
index 0000000000..21e3fd28db
Binary files /dev/null and b/img-microsoft-256/1f9c4.png differ
diff --git a/img-microsoft-256/1f9c5.png b/img-microsoft-256/1f9c5.png
new file mode 100644
index 0000000000..145bfbb618
Binary files /dev/null and b/img-microsoft-256/1f9c5.png differ
diff --git a/img-microsoft-256/1f9c6.png b/img-microsoft-256/1f9c6.png
new file mode 100644
index 0000000000..4d6dd0fc58
Binary files /dev/null and b/img-microsoft-256/1f9c6.png differ
diff --git a/img-microsoft-256/1f9c7.png b/img-microsoft-256/1f9c7.png
new file mode 100644
index 0000000000..96f38cfc2d
Binary files /dev/null and b/img-microsoft-256/1f9c7.png differ
diff --git a/img-microsoft-256/1f9c8.png b/img-microsoft-256/1f9c8.png
new file mode 100644
index 0000000000..5d1493737b
Binary files /dev/null and b/img-microsoft-256/1f9c8.png differ
diff --git a/img-microsoft-256/1f9c9.png b/img-microsoft-256/1f9c9.png
new file mode 100644
index 0000000000..98f9200049
Binary files /dev/null and b/img-microsoft-256/1f9c9.png differ
diff --git a/img-microsoft-256/1f9ca.png b/img-microsoft-256/1f9ca.png
new file mode 100644
index 0000000000..b694051340
Binary files /dev/null and b/img-microsoft-256/1f9ca.png differ
diff --git a/img-microsoft-256/1f9cb.png b/img-microsoft-256/1f9cb.png
new file mode 100644
index 0000000000..a55bbbdeeb
Binary files /dev/null and b/img-microsoft-256/1f9cb.png differ
diff --git a/img-microsoft-256/1f9cc.png b/img-microsoft-256/1f9cc.png
new file mode 100644
index 0000000000..d94a94b9a1
Binary files /dev/null and b/img-microsoft-256/1f9cc.png differ
diff --git a/img-microsoft-256/1f9cd-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f9cd-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..b1aa14c926
Binary files /dev/null and b/img-microsoft-256/1f9cd-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9cd-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f9cd-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a512fce6fc
Binary files /dev/null and b/img-microsoft-256/1f9cd-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9cd-1f3fb.png b/img-microsoft-256/1f9cd-1f3fb.png
new file mode 100644
index 0000000000..575f1ab92f
Binary files /dev/null and b/img-microsoft-256/1f9cd-1f3fb.png differ
diff --git a/img-microsoft-256/1f9cd-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f9cd-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..cb763ca3f7
Binary files /dev/null and b/img-microsoft-256/1f9cd-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9cd-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f9cd-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d121ec3c33
Binary files /dev/null and b/img-microsoft-256/1f9cd-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9cd-1f3fc.png b/img-microsoft-256/1f9cd-1f3fc.png
new file mode 100644
index 0000000000..af06120183
Binary files /dev/null and b/img-microsoft-256/1f9cd-1f3fc.png differ
diff --git a/img-microsoft-256/1f9cd-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f9cd-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..be5e2a8a47
Binary files /dev/null and b/img-microsoft-256/1f9cd-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9cd-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f9cd-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..90129d625e
Binary files /dev/null and b/img-microsoft-256/1f9cd-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9cd-1f3fd.png b/img-microsoft-256/1f9cd-1f3fd.png
new file mode 100644
index 0000000000..7c57640c91
Binary files /dev/null and b/img-microsoft-256/1f9cd-1f3fd.png differ
diff --git a/img-microsoft-256/1f9cd-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f9cd-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..1bbbdb1947
Binary files /dev/null and b/img-microsoft-256/1f9cd-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9cd-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f9cd-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f8888402bc
Binary files /dev/null and b/img-microsoft-256/1f9cd-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9cd-1f3fe.png b/img-microsoft-256/1f9cd-1f3fe.png
new file mode 100644
index 0000000000..81c40eae4c
Binary files /dev/null and b/img-microsoft-256/1f9cd-1f3fe.png differ
diff --git a/img-microsoft-256/1f9cd-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f9cd-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..f54f3184b1
Binary files /dev/null and b/img-microsoft-256/1f9cd-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9cd-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f9cd-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d770e28baf
Binary files /dev/null and b/img-microsoft-256/1f9cd-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9cd-1f3ff.png b/img-microsoft-256/1f9cd-1f3ff.png
new file mode 100644
index 0000000000..e4f4c03a61
Binary files /dev/null and b/img-microsoft-256/1f9cd-1f3ff.png differ
diff --git a/img-microsoft-256/1f9cd-200d-2640-fe0f.png b/img-microsoft-256/1f9cd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..5f28328bc6
Binary files /dev/null and b/img-microsoft-256/1f9cd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9cd-200d-2642-fe0f.png b/img-microsoft-256/1f9cd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d11e546423
Binary files /dev/null and b/img-microsoft-256/1f9cd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9cd.png b/img-microsoft-256/1f9cd.png
new file mode 100644
index 0000000000..46f770a258
Binary files /dev/null and b/img-microsoft-256/1f9cd.png differ
diff --git a/img-microsoft-256/1f9ce-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f9ce-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..8d71c54a0a
Binary files /dev/null and b/img-microsoft-256/1f9ce-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9ce-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f9ce-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..05f394c9d3
Binary files /dev/null and b/img-microsoft-256/1f9ce-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9ce-1f3fb.png b/img-microsoft-256/1f9ce-1f3fb.png
new file mode 100644
index 0000000000..98aad4b04c
Binary files /dev/null and b/img-microsoft-256/1f9ce-1f3fb.png differ
diff --git a/img-microsoft-256/1f9ce-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f9ce-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..14509d827d
Binary files /dev/null and b/img-microsoft-256/1f9ce-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9ce-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f9ce-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..23688014a6
Binary files /dev/null and b/img-microsoft-256/1f9ce-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9ce-1f3fc.png b/img-microsoft-256/1f9ce-1f3fc.png
new file mode 100644
index 0000000000..d5c0ade2cb
Binary files /dev/null and b/img-microsoft-256/1f9ce-1f3fc.png differ
diff --git a/img-microsoft-256/1f9ce-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f9ce-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..c61a9071a0
Binary files /dev/null and b/img-microsoft-256/1f9ce-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9ce-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f9ce-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..bfe3ffdbc0
Binary files /dev/null and b/img-microsoft-256/1f9ce-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9ce-1f3fd.png b/img-microsoft-256/1f9ce-1f3fd.png
new file mode 100644
index 0000000000..d9cd7c422e
Binary files /dev/null and b/img-microsoft-256/1f9ce-1f3fd.png differ
diff --git a/img-microsoft-256/1f9ce-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f9ce-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..94838ef8f6
Binary files /dev/null and b/img-microsoft-256/1f9ce-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9ce-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f9ce-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f0b3f00a14
Binary files /dev/null and b/img-microsoft-256/1f9ce-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9ce-1f3fe.png b/img-microsoft-256/1f9ce-1f3fe.png
new file mode 100644
index 0000000000..a7d9a00834
Binary files /dev/null and b/img-microsoft-256/1f9ce-1f3fe.png differ
diff --git a/img-microsoft-256/1f9ce-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f9ce-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..dd1d04b3ad
Binary files /dev/null and b/img-microsoft-256/1f9ce-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9ce-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f9ce-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..9b749e8862
Binary files /dev/null and b/img-microsoft-256/1f9ce-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9ce-1f3ff.png b/img-microsoft-256/1f9ce-1f3ff.png
new file mode 100644
index 0000000000..bbb321219e
Binary files /dev/null and b/img-microsoft-256/1f9ce-1f3ff.png differ
diff --git a/img-microsoft-256/1f9ce-200d-2640-fe0f.png b/img-microsoft-256/1f9ce-200d-2640-fe0f.png
new file mode 100644
index 0000000000..efe9fd4970
Binary files /dev/null and b/img-microsoft-256/1f9ce-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9ce-200d-2642-fe0f.png b/img-microsoft-256/1f9ce-200d-2642-fe0f.png
new file mode 100644
index 0000000000..7c57521bb9
Binary files /dev/null and b/img-microsoft-256/1f9ce-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9ce.png b/img-microsoft-256/1f9ce.png
new file mode 100644
index 0000000000..28f907da58
Binary files /dev/null and b/img-microsoft-256/1f9ce.png differ
diff --git a/img-microsoft-256/1f9cf-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f9cf-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..ee0b4acc0a
Binary files /dev/null and b/img-microsoft-256/1f9cf-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9cf-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f9cf-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..0ae370abcc
Binary files /dev/null and b/img-microsoft-256/1f9cf-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9cf-1f3fb.png b/img-microsoft-256/1f9cf-1f3fb.png
new file mode 100644
index 0000000000..efb8ec5825
Binary files /dev/null and b/img-microsoft-256/1f9cf-1f3fb.png differ
diff --git a/img-microsoft-256/1f9cf-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f9cf-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..6a6dbffca3
Binary files /dev/null and b/img-microsoft-256/1f9cf-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9cf-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f9cf-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e7908b02f0
Binary files /dev/null and b/img-microsoft-256/1f9cf-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9cf-1f3fc.png b/img-microsoft-256/1f9cf-1f3fc.png
new file mode 100644
index 0000000000..fdb7f7221b
Binary files /dev/null and b/img-microsoft-256/1f9cf-1f3fc.png differ
diff --git a/img-microsoft-256/1f9cf-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f9cf-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..678a0dc6e6
Binary files /dev/null and b/img-microsoft-256/1f9cf-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9cf-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f9cf-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..c8e1a7c480
Binary files /dev/null and b/img-microsoft-256/1f9cf-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9cf-1f3fd.png b/img-microsoft-256/1f9cf-1f3fd.png
new file mode 100644
index 0000000000..8c16740bf9
Binary files /dev/null and b/img-microsoft-256/1f9cf-1f3fd.png differ
diff --git a/img-microsoft-256/1f9cf-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f9cf-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..940096a386
Binary files /dev/null and b/img-microsoft-256/1f9cf-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9cf-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f9cf-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f5501fc834
Binary files /dev/null and b/img-microsoft-256/1f9cf-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9cf-1f3fe.png b/img-microsoft-256/1f9cf-1f3fe.png
new file mode 100644
index 0000000000..dcc6c5f5db
Binary files /dev/null and b/img-microsoft-256/1f9cf-1f3fe.png differ
diff --git a/img-microsoft-256/1f9cf-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f9cf-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..29785496ca
Binary files /dev/null and b/img-microsoft-256/1f9cf-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9cf-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f9cf-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..c3f59412a5
Binary files /dev/null and b/img-microsoft-256/1f9cf-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9cf-1f3ff.png b/img-microsoft-256/1f9cf-1f3ff.png
new file mode 100644
index 0000000000..ca5eebb86e
Binary files /dev/null and b/img-microsoft-256/1f9cf-1f3ff.png differ
diff --git a/img-microsoft-256/1f9cf-200d-2640-fe0f.png b/img-microsoft-256/1f9cf-200d-2640-fe0f.png
new file mode 100644
index 0000000000..a0ce6b5516
Binary files /dev/null and b/img-microsoft-256/1f9cf-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9cf-200d-2642-fe0f.png b/img-microsoft-256/1f9cf-200d-2642-fe0f.png
new file mode 100644
index 0000000000..c81b867177
Binary files /dev/null and b/img-microsoft-256/1f9cf-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9cf.png b/img-microsoft-256/1f9cf.png
new file mode 100644
index 0000000000..8c58f22483
Binary files /dev/null and b/img-microsoft-256/1f9cf.png differ
diff --git a/img-microsoft-256/1f9d0.png b/img-microsoft-256/1f9d0.png
new file mode 100644
index 0000000000..9f0634a1e0
Binary files /dev/null and b/img-microsoft-256/1f9d0.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fb-200d-1f33e.png b/img-microsoft-256/1f9d1-1f3fb-200d-1f33e.png
new file mode 100644
index 0000000000..81e7fcc59a
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fb-200d-1f33e.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fb-200d-1f373.png b/img-microsoft-256/1f9d1-1f3fb-200d-1f373.png
new file mode 100644
index 0000000000..6de5899f06
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fb-200d-1f373.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fb-200d-1f37c.png b/img-microsoft-256/1f9d1-1f3fb-200d-1f37c.png
new file mode 100644
index 0000000000..3368e2494d
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fb-200d-1f37c.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fb-200d-1f384.png b/img-microsoft-256/1f9d1-1f3fb-200d-1f384.png
new file mode 100644
index 0000000000..04ea0c6cec
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fb-200d-1f384.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fb-200d-1f393.png b/img-microsoft-256/1f9d1-1f3fb-200d-1f393.png
new file mode 100644
index 0000000000..f6a83bbbf0
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fb-200d-1f393.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fb-200d-1f3a4.png b/img-microsoft-256/1f9d1-1f3fb-200d-1f3a4.png
new file mode 100644
index 0000000000..8f3d3b65ca
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fb-200d-1f3a4.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fb-200d-1f3a8.png b/img-microsoft-256/1f9d1-1f3fb-200d-1f3a8.png
new file mode 100644
index 0000000000..975c50e5e4
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fb-200d-1f3a8.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fb-200d-1f3eb.png b/img-microsoft-256/1f9d1-1f3fb-200d-1f3eb.png
new file mode 100644
index 0000000000..bb2a781113
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fb-200d-1f3eb.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fb-200d-1f3ed.png b/img-microsoft-256/1f9d1-1f3fb-200d-1f3ed.png
new file mode 100644
index 0000000000..191fed5f6e
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fb-200d-1f3ed.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fb-200d-1f4bc.png b/img-microsoft-256/1f9d1-1f3fb-200d-1f4bc.png
new file mode 100644
index 0000000000..e147dbe7f6
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fb-200d-1f4bc.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fb-200d-1f527.png b/img-microsoft-256/1f9d1-1f3fb-200d-1f527.png
new file mode 100644
index 0000000000..cf7cae71db
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fb-200d-1f527.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fb-200d-1f52c.png b/img-microsoft-256/1f9d1-1f3fb-200d-1f52c.png
new file mode 100644
index 0000000000..b63802faf1
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fb-200d-1f52c.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fb-200d-1f680.png b/img-microsoft-256/1f9d1-1f3fb-200d-1f680.png
new file mode 100644
index 0000000000..87dc7eb96b
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fb-200d-1f680.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fb-200d-1f692.png b/img-microsoft-256/1f9d1-1f3fb-200d-1f692.png
new file mode 100644
index 0000000000..b2b2e4d779
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fb-200d-1f692.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fb-200d-1f9af.png b/img-microsoft-256/1f9d1-1f3fb-200d-1f9af.png
new file mode 100644
index 0000000000..a7c1248658
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fb-200d-1f9af.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fb-200d-1f9b0.png b/img-microsoft-256/1f9d1-1f3fb-200d-1f9b0.png
new file mode 100644
index 0000000000..c1ddafdfc4
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fb-200d-1f9b0.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fb-200d-1f9b1.png b/img-microsoft-256/1f9d1-1f3fb-200d-1f9b1.png
new file mode 100644
index 0000000000..91054c291c
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fb-200d-1f9b1.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fb-200d-1f9b2.png b/img-microsoft-256/1f9d1-1f3fb-200d-1f9b2.png
new file mode 100644
index 0000000000..1ace4f563a
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fb-200d-1f9b2.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fb-200d-1f9b3.png b/img-microsoft-256/1f9d1-1f3fb-200d-1f9b3.png
new file mode 100644
index 0000000000..d2f9f3b0b0
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fb-200d-1f9b3.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fb-200d-1f9bc.png b/img-microsoft-256/1f9d1-1f3fb-200d-1f9bc.png
new file mode 100644
index 0000000000..8b3555e9ec
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fb-200d-1f9bc.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fb-200d-1f9bd.png b/img-microsoft-256/1f9d1-1f3fb-200d-1f9bd.png
new file mode 100644
index 0000000000..092c3d89bf
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fb-200d-1f9bd.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fb-200d-2695-fe0f.png b/img-microsoft-256/1f9d1-1f3fb-200d-2695-fe0f.png
new file mode 100644
index 0000000000..1094999211
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fb-200d-2695-fe0f.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fb-200d-2696-fe0f.png b/img-microsoft-256/1f9d1-1f3fb-200d-2696-fe0f.png
new file mode 100644
index 0000000000..b52e0c3777
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fb-200d-2696-fe0f.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fb-200d-2708-fe0f.png b/img-microsoft-256/1f9d1-1f3fb-200d-2708-fe0f.png
new file mode 100644
index 0000000000..dcf11b8143
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fb-200d-2708-fe0f.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fb.png b/img-microsoft-256/1f9d1-1f3fb.png
new file mode 100644
index 0000000000..e371c59e08
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fb.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fc-200d-1f33e.png b/img-microsoft-256/1f9d1-1f3fc-200d-1f33e.png
new file mode 100644
index 0000000000..bb1dc6e7e9
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fc-200d-1f33e.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fc-200d-1f373.png b/img-microsoft-256/1f9d1-1f3fc-200d-1f373.png
new file mode 100644
index 0000000000..fbbdf7782a
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fc-200d-1f373.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fc-200d-1f37c.png b/img-microsoft-256/1f9d1-1f3fc-200d-1f37c.png
new file mode 100644
index 0000000000..33d26376e6
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fc-200d-1f37c.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fc-200d-1f384.png b/img-microsoft-256/1f9d1-1f3fc-200d-1f384.png
new file mode 100644
index 0000000000..310be546d1
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fc-200d-1f384.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fc-200d-1f393.png b/img-microsoft-256/1f9d1-1f3fc-200d-1f393.png
new file mode 100644
index 0000000000..a2cd0971b0
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fc-200d-1f393.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fc-200d-1f3a4.png b/img-microsoft-256/1f9d1-1f3fc-200d-1f3a4.png
new file mode 100644
index 0000000000..69921c71bc
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fc-200d-1f3a4.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fc-200d-1f3a8.png b/img-microsoft-256/1f9d1-1f3fc-200d-1f3a8.png
new file mode 100644
index 0000000000..9b1573fc0c
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fc-200d-1f3a8.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fc-200d-1f3eb.png b/img-microsoft-256/1f9d1-1f3fc-200d-1f3eb.png
new file mode 100644
index 0000000000..51fc405810
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fc-200d-1f3eb.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fc-200d-1f3ed.png b/img-microsoft-256/1f9d1-1f3fc-200d-1f3ed.png
new file mode 100644
index 0000000000..dd58d9f381
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fc-200d-1f3ed.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fc-200d-1f4bc.png b/img-microsoft-256/1f9d1-1f3fc-200d-1f4bc.png
new file mode 100644
index 0000000000..afebfc9d8c
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fc-200d-1f4bc.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fc-200d-1f527.png b/img-microsoft-256/1f9d1-1f3fc-200d-1f527.png
new file mode 100644
index 0000000000..faca89742a
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fc-200d-1f527.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fc-200d-1f52c.png b/img-microsoft-256/1f9d1-1f3fc-200d-1f52c.png
new file mode 100644
index 0000000000..3c847bcb7b
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fc-200d-1f52c.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fc-200d-1f680.png b/img-microsoft-256/1f9d1-1f3fc-200d-1f680.png
new file mode 100644
index 0000000000..c0ae7d50a8
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fc-200d-1f680.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fc-200d-1f692.png b/img-microsoft-256/1f9d1-1f3fc-200d-1f692.png
new file mode 100644
index 0000000000..a4e7b03efa
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fc-200d-1f692.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fc-200d-1f9af.png b/img-microsoft-256/1f9d1-1f3fc-200d-1f9af.png
new file mode 100644
index 0000000000..93922e44e2
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fc-200d-1f9af.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fc-200d-1f9b0.png b/img-microsoft-256/1f9d1-1f3fc-200d-1f9b0.png
new file mode 100644
index 0000000000..f85b6cdd58
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fc-200d-1f9b0.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fc-200d-1f9b1.png b/img-microsoft-256/1f9d1-1f3fc-200d-1f9b1.png
new file mode 100644
index 0000000000..c9af5df2c4
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fc-200d-1f9b1.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fc-200d-1f9b2.png b/img-microsoft-256/1f9d1-1f3fc-200d-1f9b2.png
new file mode 100644
index 0000000000..0727fd07e0
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fc-200d-1f9b2.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fc-200d-1f9b3.png b/img-microsoft-256/1f9d1-1f3fc-200d-1f9b3.png
new file mode 100644
index 0000000000..36c25895de
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fc-200d-1f9b3.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fc-200d-1f9bc.png b/img-microsoft-256/1f9d1-1f3fc-200d-1f9bc.png
new file mode 100644
index 0000000000..87f59efa42
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fc-200d-1f9bc.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fc-200d-1f9bd.png b/img-microsoft-256/1f9d1-1f3fc-200d-1f9bd.png
new file mode 100644
index 0000000000..19b410f132
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fc-200d-1f9bd.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fc-200d-2695-fe0f.png b/img-microsoft-256/1f9d1-1f3fc-200d-2695-fe0f.png
new file mode 100644
index 0000000000..8af3825191
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fc-200d-2695-fe0f.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fc-200d-2696-fe0f.png b/img-microsoft-256/1f9d1-1f3fc-200d-2696-fe0f.png
new file mode 100644
index 0000000000..5873969660
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fc-200d-2696-fe0f.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fc-200d-2708-fe0f.png b/img-microsoft-256/1f9d1-1f3fc-200d-2708-fe0f.png
new file mode 100644
index 0000000000..c7fbe2d3ff
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fc-200d-2708-fe0f.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fc.png b/img-microsoft-256/1f9d1-1f3fc.png
new file mode 100644
index 0000000000..84329b9abc
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fc.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fd-200d-1f33e.png b/img-microsoft-256/1f9d1-1f3fd-200d-1f33e.png
new file mode 100644
index 0000000000..40517c4403
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fd-200d-1f33e.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fd-200d-1f373.png b/img-microsoft-256/1f9d1-1f3fd-200d-1f373.png
new file mode 100644
index 0000000000..8dc5751f00
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fd-200d-1f373.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fd-200d-1f37c.png b/img-microsoft-256/1f9d1-1f3fd-200d-1f37c.png
new file mode 100644
index 0000000000..7869c3929e
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fd-200d-1f37c.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fd-200d-1f384.png b/img-microsoft-256/1f9d1-1f3fd-200d-1f384.png
new file mode 100644
index 0000000000..109d407980
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fd-200d-1f384.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fd-200d-1f393.png b/img-microsoft-256/1f9d1-1f3fd-200d-1f393.png
new file mode 100644
index 0000000000..432818bc4e
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fd-200d-1f393.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fd-200d-1f3a4.png b/img-microsoft-256/1f9d1-1f3fd-200d-1f3a4.png
new file mode 100644
index 0000000000..3c5772a5b7
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fd-200d-1f3a4.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fd-200d-1f3a8.png b/img-microsoft-256/1f9d1-1f3fd-200d-1f3a8.png
new file mode 100644
index 0000000000..55a86d967e
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fd-200d-1f3a8.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fd-200d-1f3eb.png b/img-microsoft-256/1f9d1-1f3fd-200d-1f3eb.png
new file mode 100644
index 0000000000..b0b387bb34
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fd-200d-1f3eb.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fd-200d-1f3ed.png b/img-microsoft-256/1f9d1-1f3fd-200d-1f3ed.png
new file mode 100644
index 0000000000..3c38db563f
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fd-200d-1f3ed.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fd-200d-1f4bc.png b/img-microsoft-256/1f9d1-1f3fd-200d-1f4bc.png
new file mode 100644
index 0000000000..3a02dd3e32
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fd-200d-1f4bc.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fd-200d-1f527.png b/img-microsoft-256/1f9d1-1f3fd-200d-1f527.png
new file mode 100644
index 0000000000..2a73a97ed5
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fd-200d-1f527.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fd-200d-1f52c.png b/img-microsoft-256/1f9d1-1f3fd-200d-1f52c.png
new file mode 100644
index 0000000000..d216b0d63a
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fd-200d-1f52c.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fd-200d-1f680.png b/img-microsoft-256/1f9d1-1f3fd-200d-1f680.png
new file mode 100644
index 0000000000..8ebadd5b6a
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fd-200d-1f680.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fd-200d-1f692.png b/img-microsoft-256/1f9d1-1f3fd-200d-1f692.png
new file mode 100644
index 0000000000..929f8d89d9
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fd-200d-1f692.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fd-200d-1f9af.png b/img-microsoft-256/1f9d1-1f3fd-200d-1f9af.png
new file mode 100644
index 0000000000..f3851cf569
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fd-200d-1f9af.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fd-200d-1f9b0.png b/img-microsoft-256/1f9d1-1f3fd-200d-1f9b0.png
new file mode 100644
index 0000000000..1eb8b2c759
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fd-200d-1f9b0.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fd-200d-1f9b1.png b/img-microsoft-256/1f9d1-1f3fd-200d-1f9b1.png
new file mode 100644
index 0000000000..fe29802c59
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fd-200d-1f9b1.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fd-200d-1f9b2.png b/img-microsoft-256/1f9d1-1f3fd-200d-1f9b2.png
new file mode 100644
index 0000000000..6be268c076
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fd-200d-1f9b2.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fd-200d-1f9b3.png b/img-microsoft-256/1f9d1-1f3fd-200d-1f9b3.png
new file mode 100644
index 0000000000..110c3bbf5f
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fd-200d-1f9b3.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fd-200d-1f9bc.png b/img-microsoft-256/1f9d1-1f3fd-200d-1f9bc.png
new file mode 100644
index 0000000000..6f55f4cccb
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fd-200d-1f9bc.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fd-200d-1f9bd.png b/img-microsoft-256/1f9d1-1f3fd-200d-1f9bd.png
new file mode 100644
index 0000000000..425bd3de5e
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fd-200d-1f9bd.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fd-200d-2695-fe0f.png b/img-microsoft-256/1f9d1-1f3fd-200d-2695-fe0f.png
new file mode 100644
index 0000000000..7f33397d03
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fd-200d-2695-fe0f.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fd-200d-2696-fe0f.png b/img-microsoft-256/1f9d1-1f3fd-200d-2696-fe0f.png
new file mode 100644
index 0000000000..0e65a7dcbf
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fd-200d-2696-fe0f.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fd-200d-2708-fe0f.png b/img-microsoft-256/1f9d1-1f3fd-200d-2708-fe0f.png
new file mode 100644
index 0000000000..ce9a74517d
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fd-200d-2708-fe0f.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fd.png b/img-microsoft-256/1f9d1-1f3fd.png
new file mode 100644
index 0000000000..0ee83ddf1a
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fd.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fe-200d-1f33e.png b/img-microsoft-256/1f9d1-1f3fe-200d-1f33e.png
new file mode 100644
index 0000000000..c33c9d9920
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fe-200d-1f33e.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fe-200d-1f373.png b/img-microsoft-256/1f9d1-1f3fe-200d-1f373.png
new file mode 100644
index 0000000000..92ab71148b
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fe-200d-1f373.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fe-200d-1f37c.png b/img-microsoft-256/1f9d1-1f3fe-200d-1f37c.png
new file mode 100644
index 0000000000..e6b70bef8c
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fe-200d-1f37c.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fe-200d-1f384.png b/img-microsoft-256/1f9d1-1f3fe-200d-1f384.png
new file mode 100644
index 0000000000..e04a33572d
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fe-200d-1f384.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fe-200d-1f393.png b/img-microsoft-256/1f9d1-1f3fe-200d-1f393.png
new file mode 100644
index 0000000000..ab39b9546c
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fe-200d-1f393.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fe-200d-1f3a4.png b/img-microsoft-256/1f9d1-1f3fe-200d-1f3a4.png
new file mode 100644
index 0000000000..19ce8637fe
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fe-200d-1f3a4.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fe-200d-1f3a8.png b/img-microsoft-256/1f9d1-1f3fe-200d-1f3a8.png
new file mode 100644
index 0000000000..e7d1dd212b
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fe-200d-1f3a8.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fe-200d-1f3eb.png b/img-microsoft-256/1f9d1-1f3fe-200d-1f3eb.png
new file mode 100644
index 0000000000..b56fda1a50
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fe-200d-1f3eb.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fe-200d-1f3ed.png b/img-microsoft-256/1f9d1-1f3fe-200d-1f3ed.png
new file mode 100644
index 0000000000..b49d247d64
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fe-200d-1f3ed.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fe-200d-1f4bc.png b/img-microsoft-256/1f9d1-1f3fe-200d-1f4bc.png
new file mode 100644
index 0000000000..1e73349705
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fe-200d-1f4bc.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fe-200d-1f527.png b/img-microsoft-256/1f9d1-1f3fe-200d-1f527.png
new file mode 100644
index 0000000000..a10b84b041
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fe-200d-1f527.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fe-200d-1f52c.png b/img-microsoft-256/1f9d1-1f3fe-200d-1f52c.png
new file mode 100644
index 0000000000..45d330ca1e
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fe-200d-1f52c.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fe-200d-1f680.png b/img-microsoft-256/1f9d1-1f3fe-200d-1f680.png
new file mode 100644
index 0000000000..40b4178c1a
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fe-200d-1f680.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fe-200d-1f692.png b/img-microsoft-256/1f9d1-1f3fe-200d-1f692.png
new file mode 100644
index 0000000000..a27a97e716
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fe-200d-1f692.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fe-200d-1f9af.png b/img-microsoft-256/1f9d1-1f3fe-200d-1f9af.png
new file mode 100644
index 0000000000..753ae506a7
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fe-200d-1f9af.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fe-200d-1f9b0.png b/img-microsoft-256/1f9d1-1f3fe-200d-1f9b0.png
new file mode 100644
index 0000000000..6aeb5a34a3
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fe-200d-1f9b0.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fe-200d-1f9b1.png b/img-microsoft-256/1f9d1-1f3fe-200d-1f9b1.png
new file mode 100644
index 0000000000..74d1168408
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fe-200d-1f9b1.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fe-200d-1f9b2.png b/img-microsoft-256/1f9d1-1f3fe-200d-1f9b2.png
new file mode 100644
index 0000000000..c4dba9a425
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fe-200d-1f9b2.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fe-200d-1f9b3.png b/img-microsoft-256/1f9d1-1f3fe-200d-1f9b3.png
new file mode 100644
index 0000000000..f1f567c676
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fe-200d-1f9b3.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fe-200d-1f9bc.png b/img-microsoft-256/1f9d1-1f3fe-200d-1f9bc.png
new file mode 100644
index 0000000000..610edf5bea
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fe-200d-1f9bc.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fe-200d-1f9bd.png b/img-microsoft-256/1f9d1-1f3fe-200d-1f9bd.png
new file mode 100644
index 0000000000..1a2b7edb7a
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fe-200d-1f9bd.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fe-200d-2695-fe0f.png b/img-microsoft-256/1f9d1-1f3fe-200d-2695-fe0f.png
new file mode 100644
index 0000000000..a661d00302
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fe-200d-2695-fe0f.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fe-200d-2696-fe0f.png b/img-microsoft-256/1f9d1-1f3fe-200d-2696-fe0f.png
new file mode 100644
index 0000000000..904cf916bf
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fe-200d-2696-fe0f.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fe-200d-2708-fe0f.png b/img-microsoft-256/1f9d1-1f3fe-200d-2708-fe0f.png
new file mode 100644
index 0000000000..ccafac641e
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fe-200d-2708-fe0f.png differ
diff --git a/img-microsoft-256/1f9d1-1f3fe.png b/img-microsoft-256/1f9d1-1f3fe.png
new file mode 100644
index 0000000000..4cef22df9d
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3fe.png differ
diff --git a/img-microsoft-256/1f9d1-1f3ff-200d-1f33e.png b/img-microsoft-256/1f9d1-1f3ff-200d-1f33e.png
new file mode 100644
index 0000000000..2745a6669b
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3ff-200d-1f33e.png differ
diff --git a/img-microsoft-256/1f9d1-1f3ff-200d-1f373.png b/img-microsoft-256/1f9d1-1f3ff-200d-1f373.png
new file mode 100644
index 0000000000..74a9a9ceb7
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3ff-200d-1f373.png differ
diff --git a/img-microsoft-256/1f9d1-1f3ff-200d-1f37c.png b/img-microsoft-256/1f9d1-1f3ff-200d-1f37c.png
new file mode 100644
index 0000000000..5b6526e5ab
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3ff-200d-1f37c.png differ
diff --git a/img-microsoft-256/1f9d1-1f3ff-200d-1f384.png b/img-microsoft-256/1f9d1-1f3ff-200d-1f384.png
new file mode 100644
index 0000000000..4023d6903c
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3ff-200d-1f384.png differ
diff --git a/img-microsoft-256/1f9d1-1f3ff-200d-1f393.png b/img-microsoft-256/1f9d1-1f3ff-200d-1f393.png
new file mode 100644
index 0000000000..ca48339c70
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3ff-200d-1f393.png differ
diff --git a/img-microsoft-256/1f9d1-1f3ff-200d-1f3a4.png b/img-microsoft-256/1f9d1-1f3ff-200d-1f3a4.png
new file mode 100644
index 0000000000..5a288229bc
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3ff-200d-1f3a4.png differ
diff --git a/img-microsoft-256/1f9d1-1f3ff-200d-1f3a8.png b/img-microsoft-256/1f9d1-1f3ff-200d-1f3a8.png
new file mode 100644
index 0000000000..260c2337fd
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3ff-200d-1f3a8.png differ
diff --git a/img-microsoft-256/1f9d1-1f3ff-200d-1f3eb.png b/img-microsoft-256/1f9d1-1f3ff-200d-1f3eb.png
new file mode 100644
index 0000000000..4ed3f57c43
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3ff-200d-1f3eb.png differ
diff --git a/img-microsoft-256/1f9d1-1f3ff-200d-1f3ed.png b/img-microsoft-256/1f9d1-1f3ff-200d-1f3ed.png
new file mode 100644
index 0000000000..58a3878dd5
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3ff-200d-1f3ed.png differ
diff --git a/img-microsoft-256/1f9d1-1f3ff-200d-1f4bc.png b/img-microsoft-256/1f9d1-1f3ff-200d-1f4bc.png
new file mode 100644
index 0000000000..dba89df54c
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3ff-200d-1f4bc.png differ
diff --git a/img-microsoft-256/1f9d1-1f3ff-200d-1f527.png b/img-microsoft-256/1f9d1-1f3ff-200d-1f527.png
new file mode 100644
index 0000000000..d1d0510d84
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3ff-200d-1f527.png differ
diff --git a/img-microsoft-256/1f9d1-1f3ff-200d-1f52c.png b/img-microsoft-256/1f9d1-1f3ff-200d-1f52c.png
new file mode 100644
index 0000000000..67e31c1b29
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3ff-200d-1f52c.png differ
diff --git a/img-microsoft-256/1f9d1-1f3ff-200d-1f680.png b/img-microsoft-256/1f9d1-1f3ff-200d-1f680.png
new file mode 100644
index 0000000000..611ca5bd8d
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3ff-200d-1f680.png differ
diff --git a/img-microsoft-256/1f9d1-1f3ff-200d-1f692.png b/img-microsoft-256/1f9d1-1f3ff-200d-1f692.png
new file mode 100644
index 0000000000..1428128335
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3ff-200d-1f692.png differ
diff --git a/img-microsoft-256/1f9d1-1f3ff-200d-1f9af.png b/img-microsoft-256/1f9d1-1f3ff-200d-1f9af.png
new file mode 100644
index 0000000000..af9961fd56
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3ff-200d-1f9af.png differ
diff --git a/img-microsoft-256/1f9d1-1f3ff-200d-1f9b0.png b/img-microsoft-256/1f9d1-1f3ff-200d-1f9b0.png
new file mode 100644
index 0000000000..23613fc603
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3ff-200d-1f9b0.png differ
diff --git a/img-microsoft-256/1f9d1-1f3ff-200d-1f9b1.png b/img-microsoft-256/1f9d1-1f3ff-200d-1f9b1.png
new file mode 100644
index 0000000000..7dc258aa6b
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3ff-200d-1f9b1.png differ
diff --git a/img-microsoft-256/1f9d1-1f3ff-200d-1f9b2.png b/img-microsoft-256/1f9d1-1f3ff-200d-1f9b2.png
new file mode 100644
index 0000000000..f636c21b1c
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3ff-200d-1f9b2.png differ
diff --git a/img-microsoft-256/1f9d1-1f3ff-200d-1f9b3.png b/img-microsoft-256/1f9d1-1f3ff-200d-1f9b3.png
new file mode 100644
index 0000000000..6d042b2d02
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3ff-200d-1f9b3.png differ
diff --git a/img-microsoft-256/1f9d1-1f3ff-200d-1f9bc.png b/img-microsoft-256/1f9d1-1f3ff-200d-1f9bc.png
new file mode 100644
index 0000000000..ddc5186566
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3ff-200d-1f9bc.png differ
diff --git a/img-microsoft-256/1f9d1-1f3ff-200d-1f9bd.png b/img-microsoft-256/1f9d1-1f3ff-200d-1f9bd.png
new file mode 100644
index 0000000000..be357933d2
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3ff-200d-1f9bd.png differ
diff --git a/img-microsoft-256/1f9d1-1f3ff-200d-2695-fe0f.png b/img-microsoft-256/1f9d1-1f3ff-200d-2695-fe0f.png
new file mode 100644
index 0000000000..5474f13ad4
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3ff-200d-2695-fe0f.png differ
diff --git a/img-microsoft-256/1f9d1-1f3ff-200d-2696-fe0f.png b/img-microsoft-256/1f9d1-1f3ff-200d-2696-fe0f.png
new file mode 100644
index 0000000000..7edb9edfa6
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3ff-200d-2696-fe0f.png differ
diff --git a/img-microsoft-256/1f9d1-1f3ff-200d-2708-fe0f.png b/img-microsoft-256/1f9d1-1f3ff-200d-2708-fe0f.png
new file mode 100644
index 0000000000..40aafad482
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3ff-200d-2708-fe0f.png differ
diff --git a/img-microsoft-256/1f9d1-1f3ff.png b/img-microsoft-256/1f9d1-1f3ff.png
new file mode 100644
index 0000000000..a827a68553
Binary files /dev/null and b/img-microsoft-256/1f9d1-1f3ff.png differ
diff --git a/img-microsoft-256/1f9d1-200d-1f33e.png b/img-microsoft-256/1f9d1-200d-1f33e.png
new file mode 100644
index 0000000000..b652fb6f28
Binary files /dev/null and b/img-microsoft-256/1f9d1-200d-1f33e.png differ
diff --git a/img-microsoft-256/1f9d1-200d-1f373.png b/img-microsoft-256/1f9d1-200d-1f373.png
new file mode 100644
index 0000000000..bda6cbcc08
Binary files /dev/null and b/img-microsoft-256/1f9d1-200d-1f373.png differ
diff --git a/img-microsoft-256/1f9d1-200d-1f37c.png b/img-microsoft-256/1f9d1-200d-1f37c.png
new file mode 100644
index 0000000000..b20ba9fdd3
Binary files /dev/null and b/img-microsoft-256/1f9d1-200d-1f37c.png differ
diff --git a/img-microsoft-256/1f9d1-200d-1f384.png b/img-microsoft-256/1f9d1-200d-1f384.png
new file mode 100644
index 0000000000..896cc4d014
Binary files /dev/null and b/img-microsoft-256/1f9d1-200d-1f384.png differ
diff --git a/img-microsoft-256/1f9d1-200d-1f393.png b/img-microsoft-256/1f9d1-200d-1f393.png
new file mode 100644
index 0000000000..1ffb79d333
Binary files /dev/null and b/img-microsoft-256/1f9d1-200d-1f393.png differ
diff --git a/img-microsoft-256/1f9d1-200d-1f3a4.png b/img-microsoft-256/1f9d1-200d-1f3a4.png
new file mode 100644
index 0000000000..a911a1b714
Binary files /dev/null and b/img-microsoft-256/1f9d1-200d-1f3a4.png differ
diff --git a/img-microsoft-256/1f9d1-200d-1f3a8.png b/img-microsoft-256/1f9d1-200d-1f3a8.png
new file mode 100644
index 0000000000..49a5a14ca2
Binary files /dev/null and b/img-microsoft-256/1f9d1-200d-1f3a8.png differ
diff --git a/img-microsoft-256/1f9d1-200d-1f3eb.png b/img-microsoft-256/1f9d1-200d-1f3eb.png
new file mode 100644
index 0000000000..ac622f5538
Binary files /dev/null and b/img-microsoft-256/1f9d1-200d-1f3eb.png differ
diff --git a/img-microsoft-256/1f9d1-200d-1f3ed.png b/img-microsoft-256/1f9d1-200d-1f3ed.png
new file mode 100644
index 0000000000..1af8998b87
Binary files /dev/null and b/img-microsoft-256/1f9d1-200d-1f3ed.png differ
diff --git a/img-microsoft-256/1f9d1-200d-1f4bc.png b/img-microsoft-256/1f9d1-200d-1f4bc.png
new file mode 100644
index 0000000000..ed4a11eaf1
Binary files /dev/null and b/img-microsoft-256/1f9d1-200d-1f4bc.png differ
diff --git a/img-microsoft-256/1f9d1-200d-1f527.png b/img-microsoft-256/1f9d1-200d-1f527.png
new file mode 100644
index 0000000000..23686f0cf5
Binary files /dev/null and b/img-microsoft-256/1f9d1-200d-1f527.png differ
diff --git a/img-microsoft-256/1f9d1-200d-1f52c.png b/img-microsoft-256/1f9d1-200d-1f52c.png
new file mode 100644
index 0000000000..9f3aee6569
Binary files /dev/null and b/img-microsoft-256/1f9d1-200d-1f52c.png differ
diff --git a/img-microsoft-256/1f9d1-200d-1f680.png b/img-microsoft-256/1f9d1-200d-1f680.png
new file mode 100644
index 0000000000..bc1616803e
Binary files /dev/null and b/img-microsoft-256/1f9d1-200d-1f680.png differ
diff --git a/img-microsoft-256/1f9d1-200d-1f692.png b/img-microsoft-256/1f9d1-200d-1f692.png
new file mode 100644
index 0000000000..882fd11823
Binary files /dev/null and b/img-microsoft-256/1f9d1-200d-1f692.png differ
diff --git a/img-microsoft-256/1f9d1-200d-1f9af.png b/img-microsoft-256/1f9d1-200d-1f9af.png
new file mode 100644
index 0000000000..30e181332b
Binary files /dev/null and b/img-microsoft-256/1f9d1-200d-1f9af.png differ
diff --git a/img-microsoft-256/1f9d1-200d-1f9b0.png b/img-microsoft-256/1f9d1-200d-1f9b0.png
new file mode 100644
index 0000000000..3d574d8392
Binary files /dev/null and b/img-microsoft-256/1f9d1-200d-1f9b0.png differ
diff --git a/img-microsoft-256/1f9d1-200d-1f9b1.png b/img-microsoft-256/1f9d1-200d-1f9b1.png
new file mode 100644
index 0000000000..50f90179d9
Binary files /dev/null and b/img-microsoft-256/1f9d1-200d-1f9b1.png differ
diff --git a/img-microsoft-256/1f9d1-200d-1f9b2.png b/img-microsoft-256/1f9d1-200d-1f9b2.png
new file mode 100644
index 0000000000..47575ad194
Binary files /dev/null and b/img-microsoft-256/1f9d1-200d-1f9b2.png differ
diff --git a/img-microsoft-256/1f9d1-200d-1f9b3.png b/img-microsoft-256/1f9d1-200d-1f9b3.png
new file mode 100644
index 0000000000..77543a29c6
Binary files /dev/null and b/img-microsoft-256/1f9d1-200d-1f9b3.png differ
diff --git a/img-microsoft-256/1f9d1-200d-1f9bc.png b/img-microsoft-256/1f9d1-200d-1f9bc.png
new file mode 100644
index 0000000000..1f5b1230a6
Binary files /dev/null and b/img-microsoft-256/1f9d1-200d-1f9bc.png differ
diff --git a/img-microsoft-256/1f9d1-200d-1f9bd.png b/img-microsoft-256/1f9d1-200d-1f9bd.png
new file mode 100644
index 0000000000..2ad83c7f79
Binary files /dev/null and b/img-microsoft-256/1f9d1-200d-1f9bd.png differ
diff --git a/img-microsoft-256/1f9d1-200d-2695-fe0f.png b/img-microsoft-256/1f9d1-200d-2695-fe0f.png
new file mode 100644
index 0000000000..c5d86352d1
Binary files /dev/null and b/img-microsoft-256/1f9d1-200d-2695-fe0f.png differ
diff --git a/img-microsoft-256/1f9d1-200d-2696-fe0f.png b/img-microsoft-256/1f9d1-200d-2696-fe0f.png
new file mode 100644
index 0000000000..831ad64e03
Binary files /dev/null and b/img-microsoft-256/1f9d1-200d-2696-fe0f.png differ
diff --git a/img-microsoft-256/1f9d1-200d-2708-fe0f.png b/img-microsoft-256/1f9d1-200d-2708-fe0f.png
new file mode 100644
index 0000000000..f67b8ddbfa
Binary files /dev/null and b/img-microsoft-256/1f9d1-200d-2708-fe0f.png differ
diff --git a/img-microsoft-256/1f9d1.png b/img-microsoft-256/1f9d1.png
new file mode 100644
index 0000000000..c5a9b55b78
Binary files /dev/null and b/img-microsoft-256/1f9d1.png differ
diff --git a/img-microsoft-256/1f9d2-1f3fb.png b/img-microsoft-256/1f9d2-1f3fb.png
new file mode 100644
index 0000000000..c16cb1c55c
Binary files /dev/null and b/img-microsoft-256/1f9d2-1f3fb.png differ
diff --git a/img-microsoft-256/1f9d2-1f3fc.png b/img-microsoft-256/1f9d2-1f3fc.png
new file mode 100644
index 0000000000..b249207154
Binary files /dev/null and b/img-microsoft-256/1f9d2-1f3fc.png differ
diff --git a/img-microsoft-256/1f9d2-1f3fd.png b/img-microsoft-256/1f9d2-1f3fd.png
new file mode 100644
index 0000000000..4960490eec
Binary files /dev/null and b/img-microsoft-256/1f9d2-1f3fd.png differ
diff --git a/img-microsoft-256/1f9d2-1f3fe.png b/img-microsoft-256/1f9d2-1f3fe.png
new file mode 100644
index 0000000000..5acdc74670
Binary files /dev/null and b/img-microsoft-256/1f9d2-1f3fe.png differ
diff --git a/img-microsoft-256/1f9d2-1f3ff.png b/img-microsoft-256/1f9d2-1f3ff.png
new file mode 100644
index 0000000000..3fd0fe96a5
Binary files /dev/null and b/img-microsoft-256/1f9d2-1f3ff.png differ
diff --git a/img-microsoft-256/1f9d2.png b/img-microsoft-256/1f9d2.png
new file mode 100644
index 0000000000..1147ee460c
Binary files /dev/null and b/img-microsoft-256/1f9d2.png differ
diff --git a/img-microsoft-256/1f9d3-1f3fb.png b/img-microsoft-256/1f9d3-1f3fb.png
new file mode 100644
index 0000000000..c54232da55
Binary files /dev/null and b/img-microsoft-256/1f9d3-1f3fb.png differ
diff --git a/img-microsoft-256/1f9d3-1f3fc.png b/img-microsoft-256/1f9d3-1f3fc.png
new file mode 100644
index 0000000000..48d0be44f0
Binary files /dev/null and b/img-microsoft-256/1f9d3-1f3fc.png differ
diff --git a/img-microsoft-256/1f9d3-1f3fd.png b/img-microsoft-256/1f9d3-1f3fd.png
new file mode 100644
index 0000000000..0a32db1ece
Binary files /dev/null and b/img-microsoft-256/1f9d3-1f3fd.png differ
diff --git a/img-microsoft-256/1f9d3-1f3fe.png b/img-microsoft-256/1f9d3-1f3fe.png
new file mode 100644
index 0000000000..415d5380a4
Binary files /dev/null and b/img-microsoft-256/1f9d3-1f3fe.png differ
diff --git a/img-microsoft-256/1f9d3-1f3ff.png b/img-microsoft-256/1f9d3-1f3ff.png
new file mode 100644
index 0000000000..9e27d0b6c4
Binary files /dev/null and b/img-microsoft-256/1f9d3-1f3ff.png differ
diff --git a/img-microsoft-256/1f9d3.png b/img-microsoft-256/1f9d3.png
new file mode 100644
index 0000000000..9d90e709d3
Binary files /dev/null and b/img-microsoft-256/1f9d3.png differ
diff --git a/img-microsoft-256/1f9d4-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f9d4-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..23a2d44da7
Binary files /dev/null and b/img-microsoft-256/1f9d4-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d4-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f9d4-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..3d8baef901
Binary files /dev/null and b/img-microsoft-256/1f9d4-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d4-1f3fb.png b/img-microsoft-256/1f9d4-1f3fb.png
new file mode 100644
index 0000000000..4b34644334
Binary files /dev/null and b/img-microsoft-256/1f9d4-1f3fb.png differ
diff --git a/img-microsoft-256/1f9d4-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f9d4-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..669e21a0dc
Binary files /dev/null and b/img-microsoft-256/1f9d4-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d4-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f9d4-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e4ff854240
Binary files /dev/null and b/img-microsoft-256/1f9d4-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d4-1f3fc.png b/img-microsoft-256/1f9d4-1f3fc.png
new file mode 100644
index 0000000000..918555ab5d
Binary files /dev/null and b/img-microsoft-256/1f9d4-1f3fc.png differ
diff --git a/img-microsoft-256/1f9d4-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f9d4-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..e27ab51c3d
Binary files /dev/null and b/img-microsoft-256/1f9d4-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d4-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f9d4-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..946995f397
Binary files /dev/null and b/img-microsoft-256/1f9d4-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d4-1f3fd.png b/img-microsoft-256/1f9d4-1f3fd.png
new file mode 100644
index 0000000000..738bcd519d
Binary files /dev/null and b/img-microsoft-256/1f9d4-1f3fd.png differ
diff --git a/img-microsoft-256/1f9d4-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f9d4-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..3200265d3b
Binary files /dev/null and b/img-microsoft-256/1f9d4-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d4-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f9d4-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..657961a255
Binary files /dev/null and b/img-microsoft-256/1f9d4-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d4-1f3fe.png b/img-microsoft-256/1f9d4-1f3fe.png
new file mode 100644
index 0000000000..82e4078e7c
Binary files /dev/null and b/img-microsoft-256/1f9d4-1f3fe.png differ
diff --git a/img-microsoft-256/1f9d4-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f9d4-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..2eba882721
Binary files /dev/null and b/img-microsoft-256/1f9d4-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d4-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f9d4-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..335e6b343f
Binary files /dev/null and b/img-microsoft-256/1f9d4-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d4-1f3ff.png b/img-microsoft-256/1f9d4-1f3ff.png
new file mode 100644
index 0000000000..9a4cdfcff0
Binary files /dev/null and b/img-microsoft-256/1f9d4-1f3ff.png differ
diff --git a/img-microsoft-256/1f9d4-200d-2640-fe0f.png b/img-microsoft-256/1f9d4-200d-2640-fe0f.png
new file mode 100644
index 0000000000..3fb70fa9f4
Binary files /dev/null and b/img-microsoft-256/1f9d4-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d4-200d-2642-fe0f.png b/img-microsoft-256/1f9d4-200d-2642-fe0f.png
new file mode 100644
index 0000000000..90be56d7f4
Binary files /dev/null and b/img-microsoft-256/1f9d4-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d4.png b/img-microsoft-256/1f9d4.png
new file mode 100644
index 0000000000..a616fbde53
Binary files /dev/null and b/img-microsoft-256/1f9d4.png differ
diff --git a/img-microsoft-256/1f9d5-1f3fb.png b/img-microsoft-256/1f9d5-1f3fb.png
new file mode 100644
index 0000000000..c61eeb2cf8
Binary files /dev/null and b/img-microsoft-256/1f9d5-1f3fb.png differ
diff --git a/img-microsoft-256/1f9d5-1f3fc.png b/img-microsoft-256/1f9d5-1f3fc.png
new file mode 100644
index 0000000000..ba7f5ed6d8
Binary files /dev/null and b/img-microsoft-256/1f9d5-1f3fc.png differ
diff --git a/img-microsoft-256/1f9d5-1f3fd.png b/img-microsoft-256/1f9d5-1f3fd.png
new file mode 100644
index 0000000000..e28d86d411
Binary files /dev/null and b/img-microsoft-256/1f9d5-1f3fd.png differ
diff --git a/img-microsoft-256/1f9d5-1f3fe.png b/img-microsoft-256/1f9d5-1f3fe.png
new file mode 100644
index 0000000000..d9a792b77f
Binary files /dev/null and b/img-microsoft-256/1f9d5-1f3fe.png differ
diff --git a/img-microsoft-256/1f9d5-1f3ff.png b/img-microsoft-256/1f9d5-1f3ff.png
new file mode 100644
index 0000000000..22e33579d3
Binary files /dev/null and b/img-microsoft-256/1f9d5-1f3ff.png differ
diff --git a/img-microsoft-256/1f9d5.png b/img-microsoft-256/1f9d5.png
new file mode 100644
index 0000000000..97bb48ef9d
Binary files /dev/null and b/img-microsoft-256/1f9d5.png differ
diff --git a/img-microsoft-256/1f9d6-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f9d6-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..7750bbf023
Binary files /dev/null and b/img-microsoft-256/1f9d6-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d6-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f9d6-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..fd6f733e90
Binary files /dev/null and b/img-microsoft-256/1f9d6-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d6-1f3fb.png b/img-microsoft-256/1f9d6-1f3fb.png
new file mode 100644
index 0000000000..8fb8b25ff2
Binary files /dev/null and b/img-microsoft-256/1f9d6-1f3fb.png differ
diff --git a/img-microsoft-256/1f9d6-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f9d6-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..992ef13f31
Binary files /dev/null and b/img-microsoft-256/1f9d6-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d6-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f9d6-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..0fbf9ce97d
Binary files /dev/null and b/img-microsoft-256/1f9d6-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d6-1f3fc.png b/img-microsoft-256/1f9d6-1f3fc.png
new file mode 100644
index 0000000000..13bc3644a4
Binary files /dev/null and b/img-microsoft-256/1f9d6-1f3fc.png differ
diff --git a/img-microsoft-256/1f9d6-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f9d6-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..a8fb8cd4c4
Binary files /dev/null and b/img-microsoft-256/1f9d6-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d6-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f9d6-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..9353717cf5
Binary files /dev/null and b/img-microsoft-256/1f9d6-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d6-1f3fd.png b/img-microsoft-256/1f9d6-1f3fd.png
new file mode 100644
index 0000000000..ac7fd1e993
Binary files /dev/null and b/img-microsoft-256/1f9d6-1f3fd.png differ
diff --git a/img-microsoft-256/1f9d6-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f9d6-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..6315f60885
Binary files /dev/null and b/img-microsoft-256/1f9d6-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d6-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f9d6-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d5398d41a1
Binary files /dev/null and b/img-microsoft-256/1f9d6-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d6-1f3fe.png b/img-microsoft-256/1f9d6-1f3fe.png
new file mode 100644
index 0000000000..3a4611879e
Binary files /dev/null and b/img-microsoft-256/1f9d6-1f3fe.png differ
diff --git a/img-microsoft-256/1f9d6-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f9d6-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..98c09c5d53
Binary files /dev/null and b/img-microsoft-256/1f9d6-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d6-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f9d6-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..2212f205e2
Binary files /dev/null and b/img-microsoft-256/1f9d6-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d6-1f3ff.png b/img-microsoft-256/1f9d6-1f3ff.png
new file mode 100644
index 0000000000..71e800989c
Binary files /dev/null and b/img-microsoft-256/1f9d6-1f3ff.png differ
diff --git a/img-microsoft-256/1f9d6-200d-2640-fe0f.png b/img-microsoft-256/1f9d6-200d-2640-fe0f.png
new file mode 100644
index 0000000000..985cbb4ae6
Binary files /dev/null and b/img-microsoft-256/1f9d6-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d6-200d-2642-fe0f.png b/img-microsoft-256/1f9d6-200d-2642-fe0f.png
new file mode 100644
index 0000000000..6d672ae04d
Binary files /dev/null and b/img-microsoft-256/1f9d6-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d6.png b/img-microsoft-256/1f9d6.png
new file mode 100644
index 0000000000..adc5b8f8bf
Binary files /dev/null and b/img-microsoft-256/1f9d6.png differ
diff --git a/img-microsoft-256/1f9d7-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f9d7-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..4b5997b6db
Binary files /dev/null and b/img-microsoft-256/1f9d7-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d7-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f9d7-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..665a3f91dd
Binary files /dev/null and b/img-microsoft-256/1f9d7-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d7-1f3fb.png b/img-microsoft-256/1f9d7-1f3fb.png
new file mode 100644
index 0000000000..57667abbd3
Binary files /dev/null and b/img-microsoft-256/1f9d7-1f3fb.png differ
diff --git a/img-microsoft-256/1f9d7-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f9d7-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..eacfa4be93
Binary files /dev/null and b/img-microsoft-256/1f9d7-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d7-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f9d7-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..8ef5ccd94f
Binary files /dev/null and b/img-microsoft-256/1f9d7-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d7-1f3fc.png b/img-microsoft-256/1f9d7-1f3fc.png
new file mode 100644
index 0000000000..1ee3f7760f
Binary files /dev/null and b/img-microsoft-256/1f9d7-1f3fc.png differ
diff --git a/img-microsoft-256/1f9d7-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f9d7-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..4ddf95d181
Binary files /dev/null and b/img-microsoft-256/1f9d7-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d7-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f9d7-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..77e705c69b
Binary files /dev/null and b/img-microsoft-256/1f9d7-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d7-1f3fd.png b/img-microsoft-256/1f9d7-1f3fd.png
new file mode 100644
index 0000000000..ad854266e8
Binary files /dev/null and b/img-microsoft-256/1f9d7-1f3fd.png differ
diff --git a/img-microsoft-256/1f9d7-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f9d7-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..7364cc47c6
Binary files /dev/null and b/img-microsoft-256/1f9d7-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d7-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f9d7-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..03c4ba8abb
Binary files /dev/null and b/img-microsoft-256/1f9d7-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d7-1f3fe.png b/img-microsoft-256/1f9d7-1f3fe.png
new file mode 100644
index 0000000000..abfac3818e
Binary files /dev/null and b/img-microsoft-256/1f9d7-1f3fe.png differ
diff --git a/img-microsoft-256/1f9d7-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f9d7-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..b4f3745209
Binary files /dev/null and b/img-microsoft-256/1f9d7-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d7-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f9d7-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a01f2cc9fe
Binary files /dev/null and b/img-microsoft-256/1f9d7-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d7-1f3ff.png b/img-microsoft-256/1f9d7-1f3ff.png
new file mode 100644
index 0000000000..6ecd692f8c
Binary files /dev/null and b/img-microsoft-256/1f9d7-1f3ff.png differ
diff --git a/img-microsoft-256/1f9d7-200d-2640-fe0f.png b/img-microsoft-256/1f9d7-200d-2640-fe0f.png
new file mode 100644
index 0000000000..17568be000
Binary files /dev/null and b/img-microsoft-256/1f9d7-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d7-200d-2642-fe0f.png b/img-microsoft-256/1f9d7-200d-2642-fe0f.png
new file mode 100644
index 0000000000..3e65b2f490
Binary files /dev/null and b/img-microsoft-256/1f9d7-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d7.png b/img-microsoft-256/1f9d7.png
new file mode 100644
index 0000000000..e327b489e7
Binary files /dev/null and b/img-microsoft-256/1f9d7.png differ
diff --git a/img-microsoft-256/1f9d8-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f9d8-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..167ccc30c5
Binary files /dev/null and b/img-microsoft-256/1f9d8-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d8-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f9d8-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..0814852019
Binary files /dev/null and b/img-microsoft-256/1f9d8-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d8-1f3fb.png b/img-microsoft-256/1f9d8-1f3fb.png
new file mode 100644
index 0000000000..c7c45c98be
Binary files /dev/null and b/img-microsoft-256/1f9d8-1f3fb.png differ
diff --git a/img-microsoft-256/1f9d8-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f9d8-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..5cbd15fdf0
Binary files /dev/null and b/img-microsoft-256/1f9d8-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d8-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f9d8-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..dc8b153d89
Binary files /dev/null and b/img-microsoft-256/1f9d8-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d8-1f3fc.png b/img-microsoft-256/1f9d8-1f3fc.png
new file mode 100644
index 0000000000..58642a9880
Binary files /dev/null and b/img-microsoft-256/1f9d8-1f3fc.png differ
diff --git a/img-microsoft-256/1f9d8-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f9d8-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..c100b0b93c
Binary files /dev/null and b/img-microsoft-256/1f9d8-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d8-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f9d8-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..96b114f580
Binary files /dev/null and b/img-microsoft-256/1f9d8-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d8-1f3fd.png b/img-microsoft-256/1f9d8-1f3fd.png
new file mode 100644
index 0000000000..7b69c349e6
Binary files /dev/null and b/img-microsoft-256/1f9d8-1f3fd.png differ
diff --git a/img-microsoft-256/1f9d8-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f9d8-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..0fa7aaf048
Binary files /dev/null and b/img-microsoft-256/1f9d8-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d8-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f9d8-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..9aa6944f9f
Binary files /dev/null and b/img-microsoft-256/1f9d8-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d8-1f3fe.png b/img-microsoft-256/1f9d8-1f3fe.png
new file mode 100644
index 0000000000..5a61f31f80
Binary files /dev/null and b/img-microsoft-256/1f9d8-1f3fe.png differ
diff --git a/img-microsoft-256/1f9d8-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f9d8-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..56d65f0a7d
Binary files /dev/null and b/img-microsoft-256/1f9d8-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d8-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f9d8-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..16d03f1b6a
Binary files /dev/null and b/img-microsoft-256/1f9d8-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d8-1f3ff.png b/img-microsoft-256/1f9d8-1f3ff.png
new file mode 100644
index 0000000000..7b5585c122
Binary files /dev/null and b/img-microsoft-256/1f9d8-1f3ff.png differ
diff --git a/img-microsoft-256/1f9d8-200d-2640-fe0f.png b/img-microsoft-256/1f9d8-200d-2640-fe0f.png
new file mode 100644
index 0000000000..ca5e68afb2
Binary files /dev/null and b/img-microsoft-256/1f9d8-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d8-200d-2642-fe0f.png b/img-microsoft-256/1f9d8-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a53c496598
Binary files /dev/null and b/img-microsoft-256/1f9d8-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d8.png b/img-microsoft-256/1f9d8.png
new file mode 100644
index 0000000000..62497b22ed
Binary files /dev/null and b/img-microsoft-256/1f9d8.png differ
diff --git a/img-microsoft-256/1f9d9-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f9d9-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..052f4e3e4d
Binary files /dev/null and b/img-microsoft-256/1f9d9-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d9-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f9d9-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d89a2e5ad5
Binary files /dev/null and b/img-microsoft-256/1f9d9-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d9-1f3fb.png b/img-microsoft-256/1f9d9-1f3fb.png
new file mode 100644
index 0000000000..ff14e4e07c
Binary files /dev/null and b/img-microsoft-256/1f9d9-1f3fb.png differ
diff --git a/img-microsoft-256/1f9d9-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f9d9-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..af84e5f4a3
Binary files /dev/null and b/img-microsoft-256/1f9d9-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d9-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f9d9-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..2f510e7043
Binary files /dev/null and b/img-microsoft-256/1f9d9-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d9-1f3fc.png b/img-microsoft-256/1f9d9-1f3fc.png
new file mode 100644
index 0000000000..6d97f02cdf
Binary files /dev/null and b/img-microsoft-256/1f9d9-1f3fc.png differ
diff --git a/img-microsoft-256/1f9d9-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f9d9-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..617eba3469
Binary files /dev/null and b/img-microsoft-256/1f9d9-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d9-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f9d9-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..b188703d2b
Binary files /dev/null and b/img-microsoft-256/1f9d9-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d9-1f3fd.png b/img-microsoft-256/1f9d9-1f3fd.png
new file mode 100644
index 0000000000..0ee3194368
Binary files /dev/null and b/img-microsoft-256/1f9d9-1f3fd.png differ
diff --git a/img-microsoft-256/1f9d9-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f9d9-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..5ee01c02b6
Binary files /dev/null and b/img-microsoft-256/1f9d9-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d9-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f9d9-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..eacd7c8303
Binary files /dev/null and b/img-microsoft-256/1f9d9-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d9-1f3fe.png b/img-microsoft-256/1f9d9-1f3fe.png
new file mode 100644
index 0000000000..611566f881
Binary files /dev/null and b/img-microsoft-256/1f9d9-1f3fe.png differ
diff --git a/img-microsoft-256/1f9d9-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f9d9-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..0196dc42aa
Binary files /dev/null and b/img-microsoft-256/1f9d9-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d9-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f9d9-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..4876d76086
Binary files /dev/null and b/img-microsoft-256/1f9d9-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d9-1f3ff.png b/img-microsoft-256/1f9d9-1f3ff.png
new file mode 100644
index 0000000000..dcee46d11c
Binary files /dev/null and b/img-microsoft-256/1f9d9-1f3ff.png differ
diff --git a/img-microsoft-256/1f9d9-200d-2640-fe0f.png b/img-microsoft-256/1f9d9-200d-2640-fe0f.png
new file mode 100644
index 0000000000..ca1371f6dc
Binary files /dev/null and b/img-microsoft-256/1f9d9-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9d9-200d-2642-fe0f.png b/img-microsoft-256/1f9d9-200d-2642-fe0f.png
new file mode 100644
index 0000000000..dcb025de67
Binary files /dev/null and b/img-microsoft-256/1f9d9-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9d9.png b/img-microsoft-256/1f9d9.png
new file mode 100644
index 0000000000..5e19187939
Binary files /dev/null and b/img-microsoft-256/1f9d9.png differ
diff --git a/img-microsoft-256/1f9da-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f9da-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..5f2d159c75
Binary files /dev/null and b/img-microsoft-256/1f9da-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9da-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f9da-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..ddfc1125ab
Binary files /dev/null and b/img-microsoft-256/1f9da-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9da-1f3fb.png b/img-microsoft-256/1f9da-1f3fb.png
new file mode 100644
index 0000000000..4cd0fcf965
Binary files /dev/null and b/img-microsoft-256/1f9da-1f3fb.png differ
diff --git a/img-microsoft-256/1f9da-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f9da-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..1f82d95753
Binary files /dev/null and b/img-microsoft-256/1f9da-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9da-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f9da-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..2cc5a88bcc
Binary files /dev/null and b/img-microsoft-256/1f9da-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9da-1f3fc.png b/img-microsoft-256/1f9da-1f3fc.png
new file mode 100644
index 0000000000..eb7d2c8fdd
Binary files /dev/null and b/img-microsoft-256/1f9da-1f3fc.png differ
diff --git a/img-microsoft-256/1f9da-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f9da-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..54adf0be98
Binary files /dev/null and b/img-microsoft-256/1f9da-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9da-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f9da-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..df6141caa1
Binary files /dev/null and b/img-microsoft-256/1f9da-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9da-1f3fd.png b/img-microsoft-256/1f9da-1f3fd.png
new file mode 100644
index 0000000000..2d2db16d67
Binary files /dev/null and b/img-microsoft-256/1f9da-1f3fd.png differ
diff --git a/img-microsoft-256/1f9da-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f9da-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..e8506046bf
Binary files /dev/null and b/img-microsoft-256/1f9da-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9da-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f9da-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..1f2f9bc37b
Binary files /dev/null and b/img-microsoft-256/1f9da-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9da-1f3fe.png b/img-microsoft-256/1f9da-1f3fe.png
new file mode 100644
index 0000000000..debdb9778c
Binary files /dev/null and b/img-microsoft-256/1f9da-1f3fe.png differ
diff --git a/img-microsoft-256/1f9da-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f9da-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..8aa70fc541
Binary files /dev/null and b/img-microsoft-256/1f9da-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9da-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f9da-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..3ee59e0b2f
Binary files /dev/null and b/img-microsoft-256/1f9da-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9da-1f3ff.png b/img-microsoft-256/1f9da-1f3ff.png
new file mode 100644
index 0000000000..39d4f75870
Binary files /dev/null and b/img-microsoft-256/1f9da-1f3ff.png differ
diff --git a/img-microsoft-256/1f9da-200d-2640-fe0f.png b/img-microsoft-256/1f9da-200d-2640-fe0f.png
new file mode 100644
index 0000000000..737ccc93dd
Binary files /dev/null and b/img-microsoft-256/1f9da-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9da-200d-2642-fe0f.png b/img-microsoft-256/1f9da-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a37fcaa280
Binary files /dev/null and b/img-microsoft-256/1f9da-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9da.png b/img-microsoft-256/1f9da.png
new file mode 100644
index 0000000000..20f8135d2f
Binary files /dev/null and b/img-microsoft-256/1f9da.png differ
diff --git a/img-microsoft-256/1f9db-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f9db-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..52251a36c5
Binary files /dev/null and b/img-microsoft-256/1f9db-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9db-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f9db-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..7961f7ae96
Binary files /dev/null and b/img-microsoft-256/1f9db-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9db-1f3fb.png b/img-microsoft-256/1f9db-1f3fb.png
new file mode 100644
index 0000000000..ae3aa8c63d
Binary files /dev/null and b/img-microsoft-256/1f9db-1f3fb.png differ
diff --git a/img-microsoft-256/1f9db-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f9db-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..a485e20e44
Binary files /dev/null and b/img-microsoft-256/1f9db-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9db-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f9db-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..c1075b0dc0
Binary files /dev/null and b/img-microsoft-256/1f9db-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9db-1f3fc.png b/img-microsoft-256/1f9db-1f3fc.png
new file mode 100644
index 0000000000..ba8ef04f4d
Binary files /dev/null and b/img-microsoft-256/1f9db-1f3fc.png differ
diff --git a/img-microsoft-256/1f9db-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f9db-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..184a0f98e3
Binary files /dev/null and b/img-microsoft-256/1f9db-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9db-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f9db-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..fa59a55933
Binary files /dev/null and b/img-microsoft-256/1f9db-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9db-1f3fd.png b/img-microsoft-256/1f9db-1f3fd.png
new file mode 100644
index 0000000000..294dfeba3f
Binary files /dev/null and b/img-microsoft-256/1f9db-1f3fd.png differ
diff --git a/img-microsoft-256/1f9db-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f9db-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..55c67bb508
Binary files /dev/null and b/img-microsoft-256/1f9db-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9db-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f9db-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..466f1f2245
Binary files /dev/null and b/img-microsoft-256/1f9db-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9db-1f3fe.png b/img-microsoft-256/1f9db-1f3fe.png
new file mode 100644
index 0000000000..cbff63e025
Binary files /dev/null and b/img-microsoft-256/1f9db-1f3fe.png differ
diff --git a/img-microsoft-256/1f9db-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f9db-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..1a46778fbb
Binary files /dev/null and b/img-microsoft-256/1f9db-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9db-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f9db-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..cdcc5d6599
Binary files /dev/null and b/img-microsoft-256/1f9db-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9db-1f3ff.png b/img-microsoft-256/1f9db-1f3ff.png
new file mode 100644
index 0000000000..86551bf7e7
Binary files /dev/null and b/img-microsoft-256/1f9db-1f3ff.png differ
diff --git a/img-microsoft-256/1f9db-200d-2640-fe0f.png b/img-microsoft-256/1f9db-200d-2640-fe0f.png
new file mode 100644
index 0000000000..632c5cea09
Binary files /dev/null and b/img-microsoft-256/1f9db-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9db-200d-2642-fe0f.png b/img-microsoft-256/1f9db-200d-2642-fe0f.png
new file mode 100644
index 0000000000..4f943abaa9
Binary files /dev/null and b/img-microsoft-256/1f9db-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9db.png b/img-microsoft-256/1f9db.png
new file mode 100644
index 0000000000..8fdc7ae249
Binary files /dev/null and b/img-microsoft-256/1f9db.png differ
diff --git a/img-microsoft-256/1f9dc-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f9dc-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..9feefe6646
Binary files /dev/null and b/img-microsoft-256/1f9dc-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9dc-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f9dc-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..8ec5b16a8b
Binary files /dev/null and b/img-microsoft-256/1f9dc-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9dc-1f3fb.png b/img-microsoft-256/1f9dc-1f3fb.png
new file mode 100644
index 0000000000..b50f0020f5
Binary files /dev/null and b/img-microsoft-256/1f9dc-1f3fb.png differ
diff --git a/img-microsoft-256/1f9dc-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f9dc-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..8de47e1761
Binary files /dev/null and b/img-microsoft-256/1f9dc-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9dc-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f9dc-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..9cf626f1ca
Binary files /dev/null and b/img-microsoft-256/1f9dc-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9dc-1f3fc.png b/img-microsoft-256/1f9dc-1f3fc.png
new file mode 100644
index 0000000000..b7cf17d1a4
Binary files /dev/null and b/img-microsoft-256/1f9dc-1f3fc.png differ
diff --git a/img-microsoft-256/1f9dc-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f9dc-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..c8e5fe4b9d
Binary files /dev/null and b/img-microsoft-256/1f9dc-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9dc-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f9dc-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a179092cb4
Binary files /dev/null and b/img-microsoft-256/1f9dc-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9dc-1f3fd.png b/img-microsoft-256/1f9dc-1f3fd.png
new file mode 100644
index 0000000000..d6eb3a432d
Binary files /dev/null and b/img-microsoft-256/1f9dc-1f3fd.png differ
diff --git a/img-microsoft-256/1f9dc-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f9dc-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..c4f291cf14
Binary files /dev/null and b/img-microsoft-256/1f9dc-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9dc-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f9dc-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..719ea9a406
Binary files /dev/null and b/img-microsoft-256/1f9dc-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9dc-1f3fe.png b/img-microsoft-256/1f9dc-1f3fe.png
new file mode 100644
index 0000000000..00b51a227f
Binary files /dev/null and b/img-microsoft-256/1f9dc-1f3fe.png differ
diff --git a/img-microsoft-256/1f9dc-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f9dc-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..e4b9e509ef
Binary files /dev/null and b/img-microsoft-256/1f9dc-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9dc-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f9dc-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..3e6109c0f4
Binary files /dev/null and b/img-microsoft-256/1f9dc-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9dc-1f3ff.png b/img-microsoft-256/1f9dc-1f3ff.png
new file mode 100644
index 0000000000..8a43de2120
Binary files /dev/null and b/img-microsoft-256/1f9dc-1f3ff.png differ
diff --git a/img-microsoft-256/1f9dc-200d-2640-fe0f.png b/img-microsoft-256/1f9dc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..db6976eb3d
Binary files /dev/null and b/img-microsoft-256/1f9dc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9dc-200d-2642-fe0f.png b/img-microsoft-256/1f9dc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f361b61679
Binary files /dev/null and b/img-microsoft-256/1f9dc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9dc.png b/img-microsoft-256/1f9dc.png
new file mode 100644
index 0000000000..7b623eeff7
Binary files /dev/null and b/img-microsoft-256/1f9dc.png differ
diff --git a/img-microsoft-256/1f9dd-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/1f9dd-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..4dbbcb5120
Binary files /dev/null and b/img-microsoft-256/1f9dd-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9dd-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/1f9dd-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f360e3b5ce
Binary files /dev/null and b/img-microsoft-256/1f9dd-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9dd-1f3fb.png b/img-microsoft-256/1f9dd-1f3fb.png
new file mode 100644
index 0000000000..6275d07697
Binary files /dev/null and b/img-microsoft-256/1f9dd-1f3fb.png differ
diff --git a/img-microsoft-256/1f9dd-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/1f9dd-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..abded4fe64
Binary files /dev/null and b/img-microsoft-256/1f9dd-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9dd-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/1f9dd-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..8cbd98de7b
Binary files /dev/null and b/img-microsoft-256/1f9dd-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9dd-1f3fc.png b/img-microsoft-256/1f9dd-1f3fc.png
new file mode 100644
index 0000000000..24b535f997
Binary files /dev/null and b/img-microsoft-256/1f9dd-1f3fc.png differ
diff --git a/img-microsoft-256/1f9dd-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/1f9dd-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..9ae0eeee95
Binary files /dev/null and b/img-microsoft-256/1f9dd-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9dd-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/1f9dd-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..657962794e
Binary files /dev/null and b/img-microsoft-256/1f9dd-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9dd-1f3fd.png b/img-microsoft-256/1f9dd-1f3fd.png
new file mode 100644
index 0000000000..552bcb4980
Binary files /dev/null and b/img-microsoft-256/1f9dd-1f3fd.png differ
diff --git a/img-microsoft-256/1f9dd-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/1f9dd-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..29c8f74d0f
Binary files /dev/null and b/img-microsoft-256/1f9dd-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9dd-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/1f9dd-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..c8d83172de
Binary files /dev/null and b/img-microsoft-256/1f9dd-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9dd-1f3fe.png b/img-microsoft-256/1f9dd-1f3fe.png
new file mode 100644
index 0000000000..ddcf9aa5d5
Binary files /dev/null and b/img-microsoft-256/1f9dd-1f3fe.png differ
diff --git a/img-microsoft-256/1f9dd-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/1f9dd-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..82ba4b3858
Binary files /dev/null and b/img-microsoft-256/1f9dd-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9dd-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/1f9dd-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..cc6adb576f
Binary files /dev/null and b/img-microsoft-256/1f9dd-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9dd-1f3ff.png b/img-microsoft-256/1f9dd-1f3ff.png
new file mode 100644
index 0000000000..c3e9ed61e5
Binary files /dev/null and b/img-microsoft-256/1f9dd-1f3ff.png differ
diff --git a/img-microsoft-256/1f9dd-200d-2640-fe0f.png b/img-microsoft-256/1f9dd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..154fadb48c
Binary files /dev/null and b/img-microsoft-256/1f9dd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9dd-200d-2642-fe0f.png b/img-microsoft-256/1f9dd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..c75c6f7cab
Binary files /dev/null and b/img-microsoft-256/1f9dd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9dd.png b/img-microsoft-256/1f9dd.png
new file mode 100644
index 0000000000..c7604e4946
Binary files /dev/null and b/img-microsoft-256/1f9dd.png differ
diff --git a/img-microsoft-256/1f9de-200d-2640-fe0f.png b/img-microsoft-256/1f9de-200d-2640-fe0f.png
new file mode 100644
index 0000000000..1a4f3b8dd5
Binary files /dev/null and b/img-microsoft-256/1f9de-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9de-200d-2642-fe0f.png b/img-microsoft-256/1f9de-200d-2642-fe0f.png
new file mode 100644
index 0000000000..4899b602ce
Binary files /dev/null and b/img-microsoft-256/1f9de-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9de.png b/img-microsoft-256/1f9de.png
new file mode 100644
index 0000000000..808b4b7176
Binary files /dev/null and b/img-microsoft-256/1f9de.png differ
diff --git a/img-microsoft-256/1f9df-200d-2640-fe0f.png b/img-microsoft-256/1f9df-200d-2640-fe0f.png
new file mode 100644
index 0000000000..8774882be3
Binary files /dev/null and b/img-microsoft-256/1f9df-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/1f9df-200d-2642-fe0f.png b/img-microsoft-256/1f9df-200d-2642-fe0f.png
new file mode 100644
index 0000000000..62d58bae85
Binary files /dev/null and b/img-microsoft-256/1f9df-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/1f9df.png b/img-microsoft-256/1f9df.png
new file mode 100644
index 0000000000..f4fd5ea129
Binary files /dev/null and b/img-microsoft-256/1f9df.png differ
diff --git a/img-microsoft-256/1f9e0.png b/img-microsoft-256/1f9e0.png
new file mode 100644
index 0000000000..e8d91c7ab1
Binary files /dev/null and b/img-microsoft-256/1f9e0.png differ
diff --git a/img-microsoft-256/1f9e1.png b/img-microsoft-256/1f9e1.png
new file mode 100644
index 0000000000..3805fc3e54
Binary files /dev/null and b/img-microsoft-256/1f9e1.png differ
diff --git a/img-microsoft-256/1f9e2.png b/img-microsoft-256/1f9e2.png
new file mode 100644
index 0000000000..efc8826889
Binary files /dev/null and b/img-microsoft-256/1f9e2.png differ
diff --git a/img-microsoft-256/1f9e3.png b/img-microsoft-256/1f9e3.png
new file mode 100644
index 0000000000..a33a339765
Binary files /dev/null and b/img-microsoft-256/1f9e3.png differ
diff --git a/img-microsoft-256/1f9e4.png b/img-microsoft-256/1f9e4.png
new file mode 100644
index 0000000000..78ba94a9e4
Binary files /dev/null and b/img-microsoft-256/1f9e4.png differ
diff --git a/img-microsoft-256/1f9e5.png b/img-microsoft-256/1f9e5.png
new file mode 100644
index 0000000000..69b749a00c
Binary files /dev/null and b/img-microsoft-256/1f9e5.png differ
diff --git a/img-microsoft-256/1f9e6.png b/img-microsoft-256/1f9e6.png
new file mode 100644
index 0000000000..17c37b7690
Binary files /dev/null and b/img-microsoft-256/1f9e6.png differ
diff --git a/img-microsoft-256/1f9e7.png b/img-microsoft-256/1f9e7.png
new file mode 100644
index 0000000000..c9029eaeef
Binary files /dev/null and b/img-microsoft-256/1f9e7.png differ
diff --git a/img-microsoft-256/1f9e8.png b/img-microsoft-256/1f9e8.png
new file mode 100644
index 0000000000..3485f18560
Binary files /dev/null and b/img-microsoft-256/1f9e8.png differ
diff --git a/img-microsoft-256/1f9e9.png b/img-microsoft-256/1f9e9.png
new file mode 100644
index 0000000000..f45c7eddf2
Binary files /dev/null and b/img-microsoft-256/1f9e9.png differ
diff --git a/img-microsoft-256/1f9ea.png b/img-microsoft-256/1f9ea.png
new file mode 100644
index 0000000000..96c5ba6b15
Binary files /dev/null and b/img-microsoft-256/1f9ea.png differ
diff --git a/img-microsoft-256/1f9eb.png b/img-microsoft-256/1f9eb.png
new file mode 100644
index 0000000000..f6f00ab913
Binary files /dev/null and b/img-microsoft-256/1f9eb.png differ
diff --git a/img-microsoft-256/1f9ec.png b/img-microsoft-256/1f9ec.png
new file mode 100644
index 0000000000..8b2d56a761
Binary files /dev/null and b/img-microsoft-256/1f9ec.png differ
diff --git a/img-microsoft-256/1f9ed.png b/img-microsoft-256/1f9ed.png
new file mode 100644
index 0000000000..b1b84e5dc4
Binary files /dev/null and b/img-microsoft-256/1f9ed.png differ
diff --git a/img-microsoft-256/1f9ee.png b/img-microsoft-256/1f9ee.png
new file mode 100644
index 0000000000..fddb92dd95
Binary files /dev/null and b/img-microsoft-256/1f9ee.png differ
diff --git a/img-microsoft-256/1f9ef.png b/img-microsoft-256/1f9ef.png
new file mode 100644
index 0000000000..d34a11954b
Binary files /dev/null and b/img-microsoft-256/1f9ef.png differ
diff --git a/img-microsoft-256/1f9f0.png b/img-microsoft-256/1f9f0.png
new file mode 100644
index 0000000000..98d210f614
Binary files /dev/null and b/img-microsoft-256/1f9f0.png differ
diff --git a/img-microsoft-256/1f9f1.png b/img-microsoft-256/1f9f1.png
new file mode 100644
index 0000000000..a84785f3ee
Binary files /dev/null and b/img-microsoft-256/1f9f1.png differ
diff --git a/img-microsoft-256/1f9f2.png b/img-microsoft-256/1f9f2.png
new file mode 100644
index 0000000000..cceb7a2ad3
Binary files /dev/null and b/img-microsoft-256/1f9f2.png differ
diff --git a/img-microsoft-256/1f9f3.png b/img-microsoft-256/1f9f3.png
new file mode 100644
index 0000000000..01815c36b6
Binary files /dev/null and b/img-microsoft-256/1f9f3.png differ
diff --git a/img-microsoft-256/1f9f4.png b/img-microsoft-256/1f9f4.png
new file mode 100644
index 0000000000..cf2cdb59ad
Binary files /dev/null and b/img-microsoft-256/1f9f4.png differ
diff --git a/img-microsoft-256/1f9f5.png b/img-microsoft-256/1f9f5.png
new file mode 100644
index 0000000000..a668afb056
Binary files /dev/null and b/img-microsoft-256/1f9f5.png differ
diff --git a/img-microsoft-256/1f9f6.png b/img-microsoft-256/1f9f6.png
new file mode 100644
index 0000000000..deb5eb157c
Binary files /dev/null and b/img-microsoft-256/1f9f6.png differ
diff --git a/img-microsoft-256/1f9f7.png b/img-microsoft-256/1f9f7.png
new file mode 100644
index 0000000000..812558dc05
Binary files /dev/null and b/img-microsoft-256/1f9f7.png differ
diff --git a/img-microsoft-256/1f9f8.png b/img-microsoft-256/1f9f8.png
new file mode 100644
index 0000000000..3628c21751
Binary files /dev/null and b/img-microsoft-256/1f9f8.png differ
diff --git a/img-microsoft-256/1f9f9.png b/img-microsoft-256/1f9f9.png
new file mode 100644
index 0000000000..9b4ee9b5cb
Binary files /dev/null and b/img-microsoft-256/1f9f9.png differ
diff --git a/img-microsoft-256/1f9fa.png b/img-microsoft-256/1f9fa.png
new file mode 100644
index 0000000000..02ed3c78b5
Binary files /dev/null and b/img-microsoft-256/1f9fa.png differ
diff --git a/img-microsoft-256/1f9fb.png b/img-microsoft-256/1f9fb.png
new file mode 100644
index 0000000000..d324736389
Binary files /dev/null and b/img-microsoft-256/1f9fb.png differ
diff --git a/img-microsoft-256/1f9fc.png b/img-microsoft-256/1f9fc.png
new file mode 100644
index 0000000000..f7d19f2ccb
Binary files /dev/null and b/img-microsoft-256/1f9fc.png differ
diff --git a/img-microsoft-256/1f9fd.png b/img-microsoft-256/1f9fd.png
new file mode 100644
index 0000000000..de191e8e10
Binary files /dev/null and b/img-microsoft-256/1f9fd.png differ
diff --git a/img-microsoft-256/1f9fe.png b/img-microsoft-256/1f9fe.png
new file mode 100644
index 0000000000..ff27789aa9
Binary files /dev/null and b/img-microsoft-256/1f9fe.png differ
diff --git a/img-microsoft-256/1f9ff.png b/img-microsoft-256/1f9ff.png
new file mode 100644
index 0000000000..00389805da
Binary files /dev/null and b/img-microsoft-256/1f9ff.png differ
diff --git a/img-microsoft-256/1fa70.png b/img-microsoft-256/1fa70.png
new file mode 100644
index 0000000000..ffd2fa1ec0
Binary files /dev/null and b/img-microsoft-256/1fa70.png differ
diff --git a/img-microsoft-256/1fa71.png b/img-microsoft-256/1fa71.png
new file mode 100644
index 0000000000..5fd9dc5cac
Binary files /dev/null and b/img-microsoft-256/1fa71.png differ
diff --git a/img-microsoft-256/1fa72.png b/img-microsoft-256/1fa72.png
new file mode 100644
index 0000000000..0dbaf00a6b
Binary files /dev/null and b/img-microsoft-256/1fa72.png differ
diff --git a/img-microsoft-256/1fa73.png b/img-microsoft-256/1fa73.png
new file mode 100644
index 0000000000..c8aa78102b
Binary files /dev/null and b/img-microsoft-256/1fa73.png differ
diff --git a/img-microsoft-256/1fa74.png b/img-microsoft-256/1fa74.png
new file mode 100644
index 0000000000..adf18da5a5
Binary files /dev/null and b/img-microsoft-256/1fa74.png differ
diff --git a/img-microsoft-256/1fa78.png b/img-microsoft-256/1fa78.png
new file mode 100644
index 0000000000..d924ffe69f
Binary files /dev/null and b/img-microsoft-256/1fa78.png differ
diff --git a/img-microsoft-256/1fa79.png b/img-microsoft-256/1fa79.png
new file mode 100644
index 0000000000..73f1005200
Binary files /dev/null and b/img-microsoft-256/1fa79.png differ
diff --git a/img-microsoft-256/1fa7a.png b/img-microsoft-256/1fa7a.png
new file mode 100644
index 0000000000..e7e5ff07a7
Binary files /dev/null and b/img-microsoft-256/1fa7a.png differ
diff --git a/img-microsoft-256/1fa7b.png b/img-microsoft-256/1fa7b.png
new file mode 100644
index 0000000000..6276830f94
Binary files /dev/null and b/img-microsoft-256/1fa7b.png differ
diff --git a/img-microsoft-256/1fa7c.png b/img-microsoft-256/1fa7c.png
new file mode 100644
index 0000000000..561a60f254
Binary files /dev/null and b/img-microsoft-256/1fa7c.png differ
diff --git a/img-microsoft-256/1fa80.png b/img-microsoft-256/1fa80.png
new file mode 100644
index 0000000000..063b8edb2c
Binary files /dev/null and b/img-microsoft-256/1fa80.png differ
diff --git a/img-microsoft-256/1fa81.png b/img-microsoft-256/1fa81.png
new file mode 100644
index 0000000000..f437a7b183
Binary files /dev/null and b/img-microsoft-256/1fa81.png differ
diff --git a/img-microsoft-256/1fa82.png b/img-microsoft-256/1fa82.png
new file mode 100644
index 0000000000..5bdbcc6512
Binary files /dev/null and b/img-microsoft-256/1fa82.png differ
diff --git a/img-microsoft-256/1fa83.png b/img-microsoft-256/1fa83.png
new file mode 100644
index 0000000000..854d2867ff
Binary files /dev/null and b/img-microsoft-256/1fa83.png differ
diff --git a/img-microsoft-256/1fa84.png b/img-microsoft-256/1fa84.png
new file mode 100644
index 0000000000..d5481e9498
Binary files /dev/null and b/img-microsoft-256/1fa84.png differ
diff --git a/img-microsoft-256/1fa85.png b/img-microsoft-256/1fa85.png
new file mode 100644
index 0000000000..6bb69c632c
Binary files /dev/null and b/img-microsoft-256/1fa85.png differ
diff --git a/img-microsoft-256/1fa86.png b/img-microsoft-256/1fa86.png
new file mode 100644
index 0000000000..cf2ade390f
Binary files /dev/null and b/img-microsoft-256/1fa86.png differ
diff --git a/img-microsoft-256/1fa90.png b/img-microsoft-256/1fa90.png
new file mode 100644
index 0000000000..4351fdc93a
Binary files /dev/null and b/img-microsoft-256/1fa90.png differ
diff --git a/img-microsoft-256/1fa91.png b/img-microsoft-256/1fa91.png
new file mode 100644
index 0000000000..6124bb4b2e
Binary files /dev/null and b/img-microsoft-256/1fa91.png differ
diff --git a/img-microsoft-256/1fa92.png b/img-microsoft-256/1fa92.png
new file mode 100644
index 0000000000..6c6687ee37
Binary files /dev/null and b/img-microsoft-256/1fa92.png differ
diff --git a/img-microsoft-256/1fa93.png b/img-microsoft-256/1fa93.png
new file mode 100644
index 0000000000..0b25548ed4
Binary files /dev/null and b/img-microsoft-256/1fa93.png differ
diff --git a/img-microsoft-256/1fa94.png b/img-microsoft-256/1fa94.png
new file mode 100644
index 0000000000..8f0fc0a84b
Binary files /dev/null and b/img-microsoft-256/1fa94.png differ
diff --git a/img-microsoft-256/1fa95.png b/img-microsoft-256/1fa95.png
new file mode 100644
index 0000000000..1b191a21d5
Binary files /dev/null and b/img-microsoft-256/1fa95.png differ
diff --git a/img-microsoft-256/1fa96.png b/img-microsoft-256/1fa96.png
new file mode 100644
index 0000000000..c31123bebe
Binary files /dev/null and b/img-microsoft-256/1fa96.png differ
diff --git a/img-microsoft-256/1fa97.png b/img-microsoft-256/1fa97.png
new file mode 100644
index 0000000000..1d90ccaabf
Binary files /dev/null and b/img-microsoft-256/1fa97.png differ
diff --git a/img-microsoft-256/1fa98.png b/img-microsoft-256/1fa98.png
new file mode 100644
index 0000000000..a8e5d1f9ca
Binary files /dev/null and b/img-microsoft-256/1fa98.png differ
diff --git a/img-microsoft-256/1fa99.png b/img-microsoft-256/1fa99.png
new file mode 100644
index 0000000000..246b48de42
Binary files /dev/null and b/img-microsoft-256/1fa99.png differ
diff --git a/img-microsoft-256/1fa9a.png b/img-microsoft-256/1fa9a.png
new file mode 100644
index 0000000000..7fb6b4719b
Binary files /dev/null and b/img-microsoft-256/1fa9a.png differ
diff --git a/img-microsoft-256/1fa9b.png b/img-microsoft-256/1fa9b.png
new file mode 100644
index 0000000000..04a125d9d2
Binary files /dev/null and b/img-microsoft-256/1fa9b.png differ
diff --git a/img-microsoft-256/1fa9c.png b/img-microsoft-256/1fa9c.png
new file mode 100644
index 0000000000..7dd570fe23
Binary files /dev/null and b/img-microsoft-256/1fa9c.png differ
diff --git a/img-microsoft-256/1fa9d.png b/img-microsoft-256/1fa9d.png
new file mode 100644
index 0000000000..741e5a6a87
Binary files /dev/null and b/img-microsoft-256/1fa9d.png differ
diff --git a/img-microsoft-256/1fa9e.png b/img-microsoft-256/1fa9e.png
new file mode 100644
index 0000000000..e85beaec28
Binary files /dev/null and b/img-microsoft-256/1fa9e.png differ
diff --git a/img-microsoft-256/1fa9f.png b/img-microsoft-256/1fa9f.png
new file mode 100644
index 0000000000..4d585dc13c
Binary files /dev/null and b/img-microsoft-256/1fa9f.png differ
diff --git a/img-microsoft-256/1faa0.png b/img-microsoft-256/1faa0.png
new file mode 100644
index 0000000000..922e6dcc97
Binary files /dev/null and b/img-microsoft-256/1faa0.png differ
diff --git a/img-microsoft-256/1faa1.png b/img-microsoft-256/1faa1.png
new file mode 100644
index 0000000000..5087cb6a56
Binary files /dev/null and b/img-microsoft-256/1faa1.png differ
diff --git a/img-microsoft-256/1faa2.png b/img-microsoft-256/1faa2.png
new file mode 100644
index 0000000000..b111b960ed
Binary files /dev/null and b/img-microsoft-256/1faa2.png differ
diff --git a/img-microsoft-256/1faa3.png b/img-microsoft-256/1faa3.png
new file mode 100644
index 0000000000..2c845d2b03
Binary files /dev/null and b/img-microsoft-256/1faa3.png differ
diff --git a/img-microsoft-256/1faa4.png b/img-microsoft-256/1faa4.png
new file mode 100644
index 0000000000..7121cd585e
Binary files /dev/null and b/img-microsoft-256/1faa4.png differ
diff --git a/img-microsoft-256/1faa5.png b/img-microsoft-256/1faa5.png
new file mode 100644
index 0000000000..a5f2bfa93f
Binary files /dev/null and b/img-microsoft-256/1faa5.png differ
diff --git a/img-microsoft-256/1faa6.png b/img-microsoft-256/1faa6.png
new file mode 100644
index 0000000000..05838e381b
Binary files /dev/null and b/img-microsoft-256/1faa6.png differ
diff --git a/img-microsoft-256/1faa7.png b/img-microsoft-256/1faa7.png
new file mode 100644
index 0000000000..7f7965f781
Binary files /dev/null and b/img-microsoft-256/1faa7.png differ
diff --git a/img-microsoft-256/1faa8.png b/img-microsoft-256/1faa8.png
new file mode 100644
index 0000000000..862355a70a
Binary files /dev/null and b/img-microsoft-256/1faa8.png differ
diff --git a/img-microsoft-256/1faa9.png b/img-microsoft-256/1faa9.png
new file mode 100644
index 0000000000..ca62e483d6
Binary files /dev/null and b/img-microsoft-256/1faa9.png differ
diff --git a/img-microsoft-256/1faaa.png b/img-microsoft-256/1faaa.png
new file mode 100644
index 0000000000..1e95affbba
Binary files /dev/null and b/img-microsoft-256/1faaa.png differ
diff --git a/img-microsoft-256/1faab.png b/img-microsoft-256/1faab.png
new file mode 100644
index 0000000000..9fa3fda711
Binary files /dev/null and b/img-microsoft-256/1faab.png differ
diff --git a/img-microsoft-256/1faac.png b/img-microsoft-256/1faac.png
new file mode 100644
index 0000000000..383399c9d6
Binary files /dev/null and b/img-microsoft-256/1faac.png differ
diff --git a/img-microsoft-256/1fab0.png b/img-microsoft-256/1fab0.png
new file mode 100644
index 0000000000..5142c6b1c5
Binary files /dev/null and b/img-microsoft-256/1fab0.png differ
diff --git a/img-microsoft-256/1fab1.png b/img-microsoft-256/1fab1.png
new file mode 100644
index 0000000000..09a2d29fe3
Binary files /dev/null and b/img-microsoft-256/1fab1.png differ
diff --git a/img-microsoft-256/1fab2.png b/img-microsoft-256/1fab2.png
new file mode 100644
index 0000000000..8db8ae703c
Binary files /dev/null and b/img-microsoft-256/1fab2.png differ
diff --git a/img-microsoft-256/1fab3.png b/img-microsoft-256/1fab3.png
new file mode 100644
index 0000000000..a32dd05a2e
Binary files /dev/null and b/img-microsoft-256/1fab3.png differ
diff --git a/img-microsoft-256/1fab4.png b/img-microsoft-256/1fab4.png
new file mode 100644
index 0000000000..1bdc4f1ba5
Binary files /dev/null and b/img-microsoft-256/1fab4.png differ
diff --git a/img-microsoft-256/1fab5.png b/img-microsoft-256/1fab5.png
new file mode 100644
index 0000000000..bf6d587782
Binary files /dev/null and b/img-microsoft-256/1fab5.png differ
diff --git a/img-microsoft-256/1fab6.png b/img-microsoft-256/1fab6.png
new file mode 100644
index 0000000000..e30f9213de
Binary files /dev/null and b/img-microsoft-256/1fab6.png differ
diff --git a/img-microsoft-256/1fab7.png b/img-microsoft-256/1fab7.png
new file mode 100644
index 0000000000..aad6692fac
Binary files /dev/null and b/img-microsoft-256/1fab7.png differ
diff --git a/img-microsoft-256/1fab8.png b/img-microsoft-256/1fab8.png
new file mode 100644
index 0000000000..5a66dcb699
Binary files /dev/null and b/img-microsoft-256/1fab8.png differ
diff --git a/img-microsoft-256/1fab9.png b/img-microsoft-256/1fab9.png
new file mode 100644
index 0000000000..98b59c2b05
Binary files /dev/null and b/img-microsoft-256/1fab9.png differ
diff --git a/img-microsoft-256/1faba.png b/img-microsoft-256/1faba.png
new file mode 100644
index 0000000000..0a1aeb0c48
Binary files /dev/null and b/img-microsoft-256/1faba.png differ
diff --git a/img-microsoft-256/1fac0.png b/img-microsoft-256/1fac0.png
new file mode 100644
index 0000000000..7a69f8c8ef
Binary files /dev/null and b/img-microsoft-256/1fac0.png differ
diff --git a/img-microsoft-256/1fac1.png b/img-microsoft-256/1fac1.png
new file mode 100644
index 0000000000..2db30e1a94
Binary files /dev/null and b/img-microsoft-256/1fac1.png differ
diff --git a/img-microsoft-256/1fac2.png b/img-microsoft-256/1fac2.png
new file mode 100644
index 0000000000..988865847f
Binary files /dev/null and b/img-microsoft-256/1fac2.png differ
diff --git a/img-microsoft-256/1fac3-1f3fb.png b/img-microsoft-256/1fac3-1f3fb.png
new file mode 100644
index 0000000000..a67a7900d7
Binary files /dev/null and b/img-microsoft-256/1fac3-1f3fb.png differ
diff --git a/img-microsoft-256/1fac3-1f3fc.png b/img-microsoft-256/1fac3-1f3fc.png
new file mode 100644
index 0000000000..9e14744c83
Binary files /dev/null and b/img-microsoft-256/1fac3-1f3fc.png differ
diff --git a/img-microsoft-256/1fac3-1f3fd.png b/img-microsoft-256/1fac3-1f3fd.png
new file mode 100644
index 0000000000..80d3281db0
Binary files /dev/null and b/img-microsoft-256/1fac3-1f3fd.png differ
diff --git a/img-microsoft-256/1fac3-1f3fe.png b/img-microsoft-256/1fac3-1f3fe.png
new file mode 100644
index 0000000000..7bafe755d1
Binary files /dev/null and b/img-microsoft-256/1fac3-1f3fe.png differ
diff --git a/img-microsoft-256/1fac3-1f3ff.png b/img-microsoft-256/1fac3-1f3ff.png
new file mode 100644
index 0000000000..cf0452c2c0
Binary files /dev/null and b/img-microsoft-256/1fac3-1f3ff.png differ
diff --git a/img-microsoft-256/1fac3.png b/img-microsoft-256/1fac3.png
new file mode 100644
index 0000000000..f5dcb68787
Binary files /dev/null and b/img-microsoft-256/1fac3.png differ
diff --git a/img-microsoft-256/1fac4-1f3fb.png b/img-microsoft-256/1fac4-1f3fb.png
new file mode 100644
index 0000000000..9a8938540f
Binary files /dev/null and b/img-microsoft-256/1fac4-1f3fb.png differ
diff --git a/img-microsoft-256/1fac4-1f3fc.png b/img-microsoft-256/1fac4-1f3fc.png
new file mode 100644
index 0000000000..2596ea5359
Binary files /dev/null and b/img-microsoft-256/1fac4-1f3fc.png differ
diff --git a/img-microsoft-256/1fac4-1f3fd.png b/img-microsoft-256/1fac4-1f3fd.png
new file mode 100644
index 0000000000..62cec16293
Binary files /dev/null and b/img-microsoft-256/1fac4-1f3fd.png differ
diff --git a/img-microsoft-256/1fac4-1f3fe.png b/img-microsoft-256/1fac4-1f3fe.png
new file mode 100644
index 0000000000..003a4bd357
Binary files /dev/null and b/img-microsoft-256/1fac4-1f3fe.png differ
diff --git a/img-microsoft-256/1fac4-1f3ff.png b/img-microsoft-256/1fac4-1f3ff.png
new file mode 100644
index 0000000000..def616410e
Binary files /dev/null and b/img-microsoft-256/1fac4-1f3ff.png differ
diff --git a/img-microsoft-256/1fac4.png b/img-microsoft-256/1fac4.png
new file mode 100644
index 0000000000..6d5a2028d3
Binary files /dev/null and b/img-microsoft-256/1fac4.png differ
diff --git a/img-microsoft-256/1fac5-1f3fb.png b/img-microsoft-256/1fac5-1f3fb.png
new file mode 100644
index 0000000000..af07928f39
Binary files /dev/null and b/img-microsoft-256/1fac5-1f3fb.png differ
diff --git a/img-microsoft-256/1fac5-1f3fc.png b/img-microsoft-256/1fac5-1f3fc.png
new file mode 100644
index 0000000000..df02043831
Binary files /dev/null and b/img-microsoft-256/1fac5-1f3fc.png differ
diff --git a/img-microsoft-256/1fac5-1f3fd.png b/img-microsoft-256/1fac5-1f3fd.png
new file mode 100644
index 0000000000..102a41e9ea
Binary files /dev/null and b/img-microsoft-256/1fac5-1f3fd.png differ
diff --git a/img-microsoft-256/1fac5-1f3fe.png b/img-microsoft-256/1fac5-1f3fe.png
new file mode 100644
index 0000000000..6775882dbb
Binary files /dev/null and b/img-microsoft-256/1fac5-1f3fe.png differ
diff --git a/img-microsoft-256/1fac5-1f3ff.png b/img-microsoft-256/1fac5-1f3ff.png
new file mode 100644
index 0000000000..2bc0cad2bf
Binary files /dev/null and b/img-microsoft-256/1fac5-1f3ff.png differ
diff --git a/img-microsoft-256/1fac5.png b/img-microsoft-256/1fac5.png
new file mode 100644
index 0000000000..9937bb2b98
Binary files /dev/null and b/img-microsoft-256/1fac5.png differ
diff --git a/img-microsoft-256/1fad0.png b/img-microsoft-256/1fad0.png
new file mode 100644
index 0000000000..2d652543be
Binary files /dev/null and b/img-microsoft-256/1fad0.png differ
diff --git a/img-microsoft-256/1fad1.png b/img-microsoft-256/1fad1.png
new file mode 100644
index 0000000000..ef7f9c7c56
Binary files /dev/null and b/img-microsoft-256/1fad1.png differ
diff --git a/img-microsoft-256/1fad2.png b/img-microsoft-256/1fad2.png
new file mode 100644
index 0000000000..dc957412a4
Binary files /dev/null and b/img-microsoft-256/1fad2.png differ
diff --git a/img-microsoft-256/1fad3.png b/img-microsoft-256/1fad3.png
new file mode 100644
index 0000000000..a144585daf
Binary files /dev/null and b/img-microsoft-256/1fad3.png differ
diff --git a/img-microsoft-256/1fad4.png b/img-microsoft-256/1fad4.png
new file mode 100644
index 0000000000..550b83ced1
Binary files /dev/null and b/img-microsoft-256/1fad4.png differ
diff --git a/img-microsoft-256/1fad5.png b/img-microsoft-256/1fad5.png
new file mode 100644
index 0000000000..7a06482362
Binary files /dev/null and b/img-microsoft-256/1fad5.png differ
diff --git a/img-microsoft-256/1fad6.png b/img-microsoft-256/1fad6.png
new file mode 100644
index 0000000000..18c3d1aa9c
Binary files /dev/null and b/img-microsoft-256/1fad6.png differ
diff --git a/img-microsoft-256/1fad7.png b/img-microsoft-256/1fad7.png
new file mode 100644
index 0000000000..0f8659bb0d
Binary files /dev/null and b/img-microsoft-256/1fad7.png differ
diff --git a/img-microsoft-256/1fad8.png b/img-microsoft-256/1fad8.png
new file mode 100644
index 0000000000..0158791dd6
Binary files /dev/null and b/img-microsoft-256/1fad8.png differ
diff --git a/img-microsoft-256/1fad9.png b/img-microsoft-256/1fad9.png
new file mode 100644
index 0000000000..d645cf8cb2
Binary files /dev/null and b/img-microsoft-256/1fad9.png differ
diff --git a/img-microsoft-256/1fae0.png b/img-microsoft-256/1fae0.png
new file mode 100644
index 0000000000..8bf26947b2
Binary files /dev/null and b/img-microsoft-256/1fae0.png differ
diff --git a/img-microsoft-256/1fae1.png b/img-microsoft-256/1fae1.png
new file mode 100644
index 0000000000..2852fd1a3f
Binary files /dev/null and b/img-microsoft-256/1fae1.png differ
diff --git a/img-microsoft-256/1fae2.png b/img-microsoft-256/1fae2.png
new file mode 100644
index 0000000000..d27e628c88
Binary files /dev/null and b/img-microsoft-256/1fae2.png differ
diff --git a/img-microsoft-256/1fae3.png b/img-microsoft-256/1fae3.png
new file mode 100644
index 0000000000..5c5df8dce1
Binary files /dev/null and b/img-microsoft-256/1fae3.png differ
diff --git a/img-microsoft-256/1fae4.png b/img-microsoft-256/1fae4.png
new file mode 100644
index 0000000000..342d6465a7
Binary files /dev/null and b/img-microsoft-256/1fae4.png differ
diff --git a/img-microsoft-256/1fae5.png b/img-microsoft-256/1fae5.png
new file mode 100644
index 0000000000..6dc6de8926
Binary files /dev/null and b/img-microsoft-256/1fae5.png differ
diff --git a/img-microsoft-256/1fae6.png b/img-microsoft-256/1fae6.png
new file mode 100644
index 0000000000..22abfcab9d
Binary files /dev/null and b/img-microsoft-256/1fae6.png differ
diff --git a/img-microsoft-256/1fae7.png b/img-microsoft-256/1fae7.png
new file mode 100644
index 0000000000..8662d4505d
Binary files /dev/null and b/img-microsoft-256/1fae7.png differ
diff --git a/img-microsoft-256/1faf0-1f3fb.png b/img-microsoft-256/1faf0-1f3fb.png
new file mode 100644
index 0000000000..892119235d
Binary files /dev/null and b/img-microsoft-256/1faf0-1f3fb.png differ
diff --git a/img-microsoft-256/1faf0-1f3fc.png b/img-microsoft-256/1faf0-1f3fc.png
new file mode 100644
index 0000000000..59646e4ac2
Binary files /dev/null and b/img-microsoft-256/1faf0-1f3fc.png differ
diff --git a/img-microsoft-256/1faf0-1f3fd.png b/img-microsoft-256/1faf0-1f3fd.png
new file mode 100644
index 0000000000..7788732fae
Binary files /dev/null and b/img-microsoft-256/1faf0-1f3fd.png differ
diff --git a/img-microsoft-256/1faf0-1f3fe.png b/img-microsoft-256/1faf0-1f3fe.png
new file mode 100644
index 0000000000..7d3554f275
Binary files /dev/null and b/img-microsoft-256/1faf0-1f3fe.png differ
diff --git a/img-microsoft-256/1faf0-1f3ff.png b/img-microsoft-256/1faf0-1f3ff.png
new file mode 100644
index 0000000000..a330087560
Binary files /dev/null and b/img-microsoft-256/1faf0-1f3ff.png differ
diff --git a/img-microsoft-256/1faf0.png b/img-microsoft-256/1faf0.png
new file mode 100644
index 0000000000..0fb792cde1
Binary files /dev/null and b/img-microsoft-256/1faf0.png differ
diff --git a/img-microsoft-256/1faf1-1f3fb.png b/img-microsoft-256/1faf1-1f3fb.png
new file mode 100644
index 0000000000..48bec3a2c5
Binary files /dev/null and b/img-microsoft-256/1faf1-1f3fb.png differ
diff --git a/img-microsoft-256/1faf1-1f3fc.png b/img-microsoft-256/1faf1-1f3fc.png
new file mode 100644
index 0000000000..9f92071a83
Binary files /dev/null and b/img-microsoft-256/1faf1-1f3fc.png differ
diff --git a/img-microsoft-256/1faf1-1f3fd.png b/img-microsoft-256/1faf1-1f3fd.png
new file mode 100644
index 0000000000..68aedd09ce
Binary files /dev/null and b/img-microsoft-256/1faf1-1f3fd.png differ
diff --git a/img-microsoft-256/1faf1-1f3fe.png b/img-microsoft-256/1faf1-1f3fe.png
new file mode 100644
index 0000000000..ed6b630ae2
Binary files /dev/null and b/img-microsoft-256/1faf1-1f3fe.png differ
diff --git a/img-microsoft-256/1faf1-1f3ff.png b/img-microsoft-256/1faf1-1f3ff.png
new file mode 100644
index 0000000000..af90fe4966
Binary files /dev/null and b/img-microsoft-256/1faf1-1f3ff.png differ
diff --git a/img-microsoft-256/1faf1.png b/img-microsoft-256/1faf1.png
new file mode 100644
index 0000000000..7cef7e3a5e
Binary files /dev/null and b/img-microsoft-256/1faf1.png differ
diff --git a/img-microsoft-256/1faf2-1f3fb.png b/img-microsoft-256/1faf2-1f3fb.png
new file mode 100644
index 0000000000..6e716cbb76
Binary files /dev/null and b/img-microsoft-256/1faf2-1f3fb.png differ
diff --git a/img-microsoft-256/1faf2-1f3fc.png b/img-microsoft-256/1faf2-1f3fc.png
new file mode 100644
index 0000000000..9793b79737
Binary files /dev/null and b/img-microsoft-256/1faf2-1f3fc.png differ
diff --git a/img-microsoft-256/1faf2-1f3fd.png b/img-microsoft-256/1faf2-1f3fd.png
new file mode 100644
index 0000000000..d104476036
Binary files /dev/null and b/img-microsoft-256/1faf2-1f3fd.png differ
diff --git a/img-microsoft-256/1faf2-1f3fe.png b/img-microsoft-256/1faf2-1f3fe.png
new file mode 100644
index 0000000000..4f252f8686
Binary files /dev/null and b/img-microsoft-256/1faf2-1f3fe.png differ
diff --git a/img-microsoft-256/1faf2-1f3ff.png b/img-microsoft-256/1faf2-1f3ff.png
new file mode 100644
index 0000000000..5b82b952a5
Binary files /dev/null and b/img-microsoft-256/1faf2-1f3ff.png differ
diff --git a/img-microsoft-256/1faf2.png b/img-microsoft-256/1faf2.png
new file mode 100644
index 0000000000..7d75e5222b
Binary files /dev/null and b/img-microsoft-256/1faf2.png differ
diff --git a/img-microsoft-256/1faf3-1f3fb.png b/img-microsoft-256/1faf3-1f3fb.png
new file mode 100644
index 0000000000..e3e651504d
Binary files /dev/null and b/img-microsoft-256/1faf3-1f3fb.png differ
diff --git a/img-microsoft-256/1faf3-1f3fc.png b/img-microsoft-256/1faf3-1f3fc.png
new file mode 100644
index 0000000000..e92df79b35
Binary files /dev/null and b/img-microsoft-256/1faf3-1f3fc.png differ
diff --git a/img-microsoft-256/1faf3-1f3fd.png b/img-microsoft-256/1faf3-1f3fd.png
new file mode 100644
index 0000000000..bbb0e4668d
Binary files /dev/null and b/img-microsoft-256/1faf3-1f3fd.png differ
diff --git a/img-microsoft-256/1faf3-1f3fe.png b/img-microsoft-256/1faf3-1f3fe.png
new file mode 100644
index 0000000000..58065602d0
Binary files /dev/null and b/img-microsoft-256/1faf3-1f3fe.png differ
diff --git a/img-microsoft-256/1faf3-1f3ff.png b/img-microsoft-256/1faf3-1f3ff.png
new file mode 100644
index 0000000000..e10699c6a9
Binary files /dev/null and b/img-microsoft-256/1faf3-1f3ff.png differ
diff --git a/img-microsoft-256/1faf3.png b/img-microsoft-256/1faf3.png
new file mode 100644
index 0000000000..8c456de466
Binary files /dev/null and b/img-microsoft-256/1faf3.png differ
diff --git a/img-microsoft-256/1faf4-1f3fb.png b/img-microsoft-256/1faf4-1f3fb.png
new file mode 100644
index 0000000000..9fa70baea8
Binary files /dev/null and b/img-microsoft-256/1faf4-1f3fb.png differ
diff --git a/img-microsoft-256/1faf4-1f3fc.png b/img-microsoft-256/1faf4-1f3fc.png
new file mode 100644
index 0000000000..36372e01b5
Binary files /dev/null and b/img-microsoft-256/1faf4-1f3fc.png differ
diff --git a/img-microsoft-256/1faf4-1f3fd.png b/img-microsoft-256/1faf4-1f3fd.png
new file mode 100644
index 0000000000..5050f4b1fd
Binary files /dev/null and b/img-microsoft-256/1faf4-1f3fd.png differ
diff --git a/img-microsoft-256/1faf4-1f3fe.png b/img-microsoft-256/1faf4-1f3fe.png
new file mode 100644
index 0000000000..006dc676b1
Binary files /dev/null and b/img-microsoft-256/1faf4-1f3fe.png differ
diff --git a/img-microsoft-256/1faf4-1f3ff.png b/img-microsoft-256/1faf4-1f3ff.png
new file mode 100644
index 0000000000..3fd2078035
Binary files /dev/null and b/img-microsoft-256/1faf4-1f3ff.png differ
diff --git a/img-microsoft-256/1faf4.png b/img-microsoft-256/1faf4.png
new file mode 100644
index 0000000000..4593cb62ae
Binary files /dev/null and b/img-microsoft-256/1faf4.png differ
diff --git a/img-microsoft-256/1faf5-1f3fb.png b/img-microsoft-256/1faf5-1f3fb.png
new file mode 100644
index 0000000000..3c63f5075a
Binary files /dev/null and b/img-microsoft-256/1faf5-1f3fb.png differ
diff --git a/img-microsoft-256/1faf5-1f3fc.png b/img-microsoft-256/1faf5-1f3fc.png
new file mode 100644
index 0000000000..0cd0bfabee
Binary files /dev/null and b/img-microsoft-256/1faf5-1f3fc.png differ
diff --git a/img-microsoft-256/1faf5-1f3fd.png b/img-microsoft-256/1faf5-1f3fd.png
new file mode 100644
index 0000000000..2eee12b6c9
Binary files /dev/null and b/img-microsoft-256/1faf5-1f3fd.png differ
diff --git a/img-microsoft-256/1faf5-1f3fe.png b/img-microsoft-256/1faf5-1f3fe.png
new file mode 100644
index 0000000000..c17dfaecbd
Binary files /dev/null and b/img-microsoft-256/1faf5-1f3fe.png differ
diff --git a/img-microsoft-256/1faf5-1f3ff.png b/img-microsoft-256/1faf5-1f3ff.png
new file mode 100644
index 0000000000..b21a4694c2
Binary files /dev/null and b/img-microsoft-256/1faf5-1f3ff.png differ
diff --git a/img-microsoft-256/1faf5.png b/img-microsoft-256/1faf5.png
new file mode 100644
index 0000000000..711dbf13bb
Binary files /dev/null and b/img-microsoft-256/1faf5.png differ
diff --git a/img-microsoft-256/1faf6-1f3fb.png b/img-microsoft-256/1faf6-1f3fb.png
new file mode 100644
index 0000000000..5fc4ab2d47
Binary files /dev/null and b/img-microsoft-256/1faf6-1f3fb.png differ
diff --git a/img-microsoft-256/1faf6-1f3fc.png b/img-microsoft-256/1faf6-1f3fc.png
new file mode 100644
index 0000000000..7389ceaeb8
Binary files /dev/null and b/img-microsoft-256/1faf6-1f3fc.png differ
diff --git a/img-microsoft-256/1faf6-1f3fd.png b/img-microsoft-256/1faf6-1f3fd.png
new file mode 100644
index 0000000000..8872d17161
Binary files /dev/null and b/img-microsoft-256/1faf6-1f3fd.png differ
diff --git a/img-microsoft-256/1faf6-1f3fe.png b/img-microsoft-256/1faf6-1f3fe.png
new file mode 100644
index 0000000000..fff70b99f3
Binary files /dev/null and b/img-microsoft-256/1faf6-1f3fe.png differ
diff --git a/img-microsoft-256/1faf6-1f3ff.png b/img-microsoft-256/1faf6-1f3ff.png
new file mode 100644
index 0000000000..add318d1b8
Binary files /dev/null and b/img-microsoft-256/1faf6-1f3ff.png differ
diff --git a/img-microsoft-256/1faf6.png b/img-microsoft-256/1faf6.png
new file mode 100644
index 0000000000..9be42d1f51
Binary files /dev/null and b/img-microsoft-256/1faf6.png differ
diff --git a/img-microsoft-256/203c-fe0f.png b/img-microsoft-256/203c-fe0f.png
new file mode 100644
index 0000000000..3666db3a4a
Binary files /dev/null and b/img-microsoft-256/203c-fe0f.png differ
diff --git a/img-microsoft-256/2049-fe0f.png b/img-microsoft-256/2049-fe0f.png
new file mode 100644
index 0000000000..4ba740ba5d
Binary files /dev/null and b/img-microsoft-256/2049-fe0f.png differ
diff --git a/img-microsoft-256/2122-fe0f.png b/img-microsoft-256/2122-fe0f.png
new file mode 100644
index 0000000000..596459a0f2
Binary files /dev/null and b/img-microsoft-256/2122-fe0f.png differ
diff --git a/img-microsoft-256/2139-fe0f.png b/img-microsoft-256/2139-fe0f.png
new file mode 100644
index 0000000000..02fbb08c4a
Binary files /dev/null and b/img-microsoft-256/2139-fe0f.png differ
diff --git a/img-microsoft-256/2194-fe0f.png b/img-microsoft-256/2194-fe0f.png
new file mode 100644
index 0000000000..c9632ca265
Binary files /dev/null and b/img-microsoft-256/2194-fe0f.png differ
diff --git a/img-microsoft-256/2195-fe0f.png b/img-microsoft-256/2195-fe0f.png
new file mode 100644
index 0000000000..336f34e106
Binary files /dev/null and b/img-microsoft-256/2195-fe0f.png differ
diff --git a/img-microsoft-256/2196-fe0f.png b/img-microsoft-256/2196-fe0f.png
new file mode 100644
index 0000000000..203999631d
Binary files /dev/null and b/img-microsoft-256/2196-fe0f.png differ
diff --git a/img-microsoft-256/2197-fe0f.png b/img-microsoft-256/2197-fe0f.png
new file mode 100644
index 0000000000..606c7ad8e3
Binary files /dev/null and b/img-microsoft-256/2197-fe0f.png differ
diff --git a/img-microsoft-256/2198-fe0f.png b/img-microsoft-256/2198-fe0f.png
new file mode 100644
index 0000000000..5282312742
Binary files /dev/null and b/img-microsoft-256/2198-fe0f.png differ
diff --git a/img-microsoft-256/2199-fe0f.png b/img-microsoft-256/2199-fe0f.png
new file mode 100644
index 0000000000..b0be639523
Binary files /dev/null and b/img-microsoft-256/2199-fe0f.png differ
diff --git a/img-microsoft-256/21a9-fe0f.png b/img-microsoft-256/21a9-fe0f.png
new file mode 100644
index 0000000000..4ad4f4307a
Binary files /dev/null and b/img-microsoft-256/21a9-fe0f.png differ
diff --git a/img-microsoft-256/21aa-fe0f.png b/img-microsoft-256/21aa-fe0f.png
new file mode 100644
index 0000000000..37ccfe299c
Binary files /dev/null and b/img-microsoft-256/21aa-fe0f.png differ
diff --git a/img-microsoft-256/231a.png b/img-microsoft-256/231a.png
new file mode 100644
index 0000000000..324b696f5b
Binary files /dev/null and b/img-microsoft-256/231a.png differ
diff --git a/img-microsoft-256/231b.png b/img-microsoft-256/231b.png
new file mode 100644
index 0000000000..e506847d13
Binary files /dev/null and b/img-microsoft-256/231b.png differ
diff --git a/img-microsoft-256/2328-fe0f.png b/img-microsoft-256/2328-fe0f.png
new file mode 100644
index 0000000000..a896be7fc6
Binary files /dev/null and b/img-microsoft-256/2328-fe0f.png differ
diff --git a/img-microsoft-256/23cf-fe0f.png b/img-microsoft-256/23cf-fe0f.png
new file mode 100644
index 0000000000..c719b138d6
Binary files /dev/null and b/img-microsoft-256/23cf-fe0f.png differ
diff --git a/img-microsoft-256/23e9.png b/img-microsoft-256/23e9.png
new file mode 100644
index 0000000000..fde2589983
Binary files /dev/null and b/img-microsoft-256/23e9.png differ
diff --git a/img-microsoft-256/23ea.png b/img-microsoft-256/23ea.png
new file mode 100644
index 0000000000..2e9ab7c448
Binary files /dev/null and b/img-microsoft-256/23ea.png differ
diff --git a/img-microsoft-256/23eb.png b/img-microsoft-256/23eb.png
new file mode 100644
index 0000000000..0b7bd47871
Binary files /dev/null and b/img-microsoft-256/23eb.png differ
diff --git a/img-microsoft-256/23ec.png b/img-microsoft-256/23ec.png
new file mode 100644
index 0000000000..bc237f213e
Binary files /dev/null and b/img-microsoft-256/23ec.png differ
diff --git a/img-microsoft-256/23ed-fe0f.png b/img-microsoft-256/23ed-fe0f.png
new file mode 100644
index 0000000000..376b7bf50d
Binary files /dev/null and b/img-microsoft-256/23ed-fe0f.png differ
diff --git a/img-microsoft-256/23ee-fe0f.png b/img-microsoft-256/23ee-fe0f.png
new file mode 100644
index 0000000000..0ae0fc129c
Binary files /dev/null and b/img-microsoft-256/23ee-fe0f.png differ
diff --git a/img-microsoft-256/23ef-fe0f.png b/img-microsoft-256/23ef-fe0f.png
new file mode 100644
index 0000000000..8dc1173ed8
Binary files /dev/null and b/img-microsoft-256/23ef-fe0f.png differ
diff --git a/img-microsoft-256/23f0.png b/img-microsoft-256/23f0.png
new file mode 100644
index 0000000000..a34ad6aeb5
Binary files /dev/null and b/img-microsoft-256/23f0.png differ
diff --git a/img-microsoft-256/23f1-fe0f.png b/img-microsoft-256/23f1-fe0f.png
new file mode 100644
index 0000000000..6428c56163
Binary files /dev/null and b/img-microsoft-256/23f1-fe0f.png differ
diff --git a/img-microsoft-256/23f2-fe0f.png b/img-microsoft-256/23f2-fe0f.png
new file mode 100644
index 0000000000..ae374df7f2
Binary files /dev/null and b/img-microsoft-256/23f2-fe0f.png differ
diff --git a/img-microsoft-256/23f3.png b/img-microsoft-256/23f3.png
new file mode 100644
index 0000000000..46d5575a87
Binary files /dev/null and b/img-microsoft-256/23f3.png differ
diff --git a/img-microsoft-256/23f8-fe0f.png b/img-microsoft-256/23f8-fe0f.png
new file mode 100644
index 0000000000..d3e578c493
Binary files /dev/null and b/img-microsoft-256/23f8-fe0f.png differ
diff --git a/img-microsoft-256/23f9-fe0f.png b/img-microsoft-256/23f9-fe0f.png
new file mode 100644
index 0000000000..21ca6cc88d
Binary files /dev/null and b/img-microsoft-256/23f9-fe0f.png differ
diff --git a/img-microsoft-256/23fa-fe0f.png b/img-microsoft-256/23fa-fe0f.png
new file mode 100644
index 0000000000..b9ab506605
Binary files /dev/null and b/img-microsoft-256/23fa-fe0f.png differ
diff --git a/img-microsoft-256/24c2-fe0f.png b/img-microsoft-256/24c2-fe0f.png
new file mode 100644
index 0000000000..7f0f2f2699
Binary files /dev/null and b/img-microsoft-256/24c2-fe0f.png differ
diff --git a/img-microsoft-256/25aa-fe0f.png b/img-microsoft-256/25aa-fe0f.png
new file mode 100644
index 0000000000..f0d98a9e28
Binary files /dev/null and b/img-microsoft-256/25aa-fe0f.png differ
diff --git a/img-microsoft-256/25ab-fe0f.png b/img-microsoft-256/25ab-fe0f.png
new file mode 100644
index 0000000000..3798267571
Binary files /dev/null and b/img-microsoft-256/25ab-fe0f.png differ
diff --git a/img-microsoft-256/25b6-fe0f.png b/img-microsoft-256/25b6-fe0f.png
new file mode 100644
index 0000000000..6903103e60
Binary files /dev/null and b/img-microsoft-256/25b6-fe0f.png differ
diff --git a/img-microsoft-256/25c0-fe0f.png b/img-microsoft-256/25c0-fe0f.png
new file mode 100644
index 0000000000..0f9ef2567a
Binary files /dev/null and b/img-microsoft-256/25c0-fe0f.png differ
diff --git a/img-microsoft-256/25fb-fe0f.png b/img-microsoft-256/25fb-fe0f.png
new file mode 100644
index 0000000000..15166748d6
Binary files /dev/null and b/img-microsoft-256/25fb-fe0f.png differ
diff --git a/img-microsoft-256/25fc-fe0f.png b/img-microsoft-256/25fc-fe0f.png
new file mode 100644
index 0000000000..8d6fe160a5
Binary files /dev/null and b/img-microsoft-256/25fc-fe0f.png differ
diff --git a/img-microsoft-256/25fd.png b/img-microsoft-256/25fd.png
new file mode 100644
index 0000000000..eedac2cc1d
Binary files /dev/null and b/img-microsoft-256/25fd.png differ
diff --git a/img-microsoft-256/25fe.png b/img-microsoft-256/25fe.png
new file mode 100644
index 0000000000..2389a46bbf
Binary files /dev/null and b/img-microsoft-256/25fe.png differ
diff --git a/img-microsoft-256/2600-fe0f.png b/img-microsoft-256/2600-fe0f.png
new file mode 100644
index 0000000000..26258a0cad
Binary files /dev/null and b/img-microsoft-256/2600-fe0f.png differ
diff --git a/img-microsoft-256/2601-fe0f.png b/img-microsoft-256/2601-fe0f.png
new file mode 100644
index 0000000000..a3a1de12dd
Binary files /dev/null and b/img-microsoft-256/2601-fe0f.png differ
diff --git a/img-microsoft-256/2602-fe0f.png b/img-microsoft-256/2602-fe0f.png
new file mode 100644
index 0000000000..c0f4598e2a
Binary files /dev/null and b/img-microsoft-256/2602-fe0f.png differ
diff --git a/img-microsoft-256/2603-fe0f.png b/img-microsoft-256/2603-fe0f.png
new file mode 100644
index 0000000000..6d4884cb4a
Binary files /dev/null and b/img-microsoft-256/2603-fe0f.png differ
diff --git a/img-microsoft-256/2604-fe0f.png b/img-microsoft-256/2604-fe0f.png
new file mode 100644
index 0000000000..0c1b51d25e
Binary files /dev/null and b/img-microsoft-256/2604-fe0f.png differ
diff --git a/img-microsoft-256/260e-fe0f.png b/img-microsoft-256/260e-fe0f.png
new file mode 100644
index 0000000000..39f9a38ba5
Binary files /dev/null and b/img-microsoft-256/260e-fe0f.png differ
diff --git a/img-microsoft-256/2611-fe0f.png b/img-microsoft-256/2611-fe0f.png
new file mode 100644
index 0000000000..2815f2cb10
Binary files /dev/null and b/img-microsoft-256/2611-fe0f.png differ
diff --git a/img-microsoft-256/2614.png b/img-microsoft-256/2614.png
new file mode 100644
index 0000000000..4a60963a14
Binary files /dev/null and b/img-microsoft-256/2614.png differ
diff --git a/img-microsoft-256/2615.png b/img-microsoft-256/2615.png
new file mode 100644
index 0000000000..4317ed5f1e
Binary files /dev/null and b/img-microsoft-256/2615.png differ
diff --git a/img-microsoft-256/2618-fe0f.png b/img-microsoft-256/2618-fe0f.png
new file mode 100644
index 0000000000..be4c4a79fc
Binary files /dev/null and b/img-microsoft-256/2618-fe0f.png differ
diff --git a/img-microsoft-256/261d-1f3fb.png b/img-microsoft-256/261d-1f3fb.png
new file mode 100644
index 0000000000..1bf8401a99
Binary files /dev/null and b/img-microsoft-256/261d-1f3fb.png differ
diff --git a/img-microsoft-256/261d-1f3fc.png b/img-microsoft-256/261d-1f3fc.png
new file mode 100644
index 0000000000..aa6c9d3a60
Binary files /dev/null and b/img-microsoft-256/261d-1f3fc.png differ
diff --git a/img-microsoft-256/261d-1f3fd.png b/img-microsoft-256/261d-1f3fd.png
new file mode 100644
index 0000000000..117d43da49
Binary files /dev/null and b/img-microsoft-256/261d-1f3fd.png differ
diff --git a/img-microsoft-256/261d-1f3fe.png b/img-microsoft-256/261d-1f3fe.png
new file mode 100644
index 0000000000..c509e2d300
Binary files /dev/null and b/img-microsoft-256/261d-1f3fe.png differ
diff --git a/img-microsoft-256/261d-1f3ff.png b/img-microsoft-256/261d-1f3ff.png
new file mode 100644
index 0000000000..b21a96ba95
Binary files /dev/null and b/img-microsoft-256/261d-1f3ff.png differ
diff --git a/img-microsoft-256/261d-fe0f.png b/img-microsoft-256/261d-fe0f.png
new file mode 100644
index 0000000000..b6a096d6cd
Binary files /dev/null and b/img-microsoft-256/261d-fe0f.png differ
diff --git a/img-microsoft-256/2620-fe0f.png b/img-microsoft-256/2620-fe0f.png
new file mode 100644
index 0000000000..b84a8d2932
Binary files /dev/null and b/img-microsoft-256/2620-fe0f.png differ
diff --git a/img-microsoft-256/2622-fe0f.png b/img-microsoft-256/2622-fe0f.png
new file mode 100644
index 0000000000..7fe6d2d84c
Binary files /dev/null and b/img-microsoft-256/2622-fe0f.png differ
diff --git a/img-microsoft-256/2623-fe0f.png b/img-microsoft-256/2623-fe0f.png
new file mode 100644
index 0000000000..a1af5021ea
Binary files /dev/null and b/img-microsoft-256/2623-fe0f.png differ
diff --git a/img-microsoft-256/2626-fe0f.png b/img-microsoft-256/2626-fe0f.png
new file mode 100644
index 0000000000..1eb1c1190e
Binary files /dev/null and b/img-microsoft-256/2626-fe0f.png differ
diff --git a/img-microsoft-256/262a-fe0f.png b/img-microsoft-256/262a-fe0f.png
new file mode 100644
index 0000000000..f13448590d
Binary files /dev/null and b/img-microsoft-256/262a-fe0f.png differ
diff --git a/img-microsoft-256/262e-fe0f.png b/img-microsoft-256/262e-fe0f.png
new file mode 100644
index 0000000000..d20a6d7e69
Binary files /dev/null and b/img-microsoft-256/262e-fe0f.png differ
diff --git a/img-microsoft-256/262f-fe0f.png b/img-microsoft-256/262f-fe0f.png
new file mode 100644
index 0000000000..84b12fd9ac
Binary files /dev/null and b/img-microsoft-256/262f-fe0f.png differ
diff --git a/img-microsoft-256/2638-fe0f.png b/img-microsoft-256/2638-fe0f.png
new file mode 100644
index 0000000000..1eab2d01c1
Binary files /dev/null and b/img-microsoft-256/2638-fe0f.png differ
diff --git a/img-microsoft-256/2639-fe0f.png b/img-microsoft-256/2639-fe0f.png
new file mode 100644
index 0000000000..8b1232de0d
Binary files /dev/null and b/img-microsoft-256/2639-fe0f.png differ
diff --git a/img-microsoft-256/263a-fe0f.png b/img-microsoft-256/263a-fe0f.png
new file mode 100644
index 0000000000..6e2ea7cc9a
Binary files /dev/null and b/img-microsoft-256/263a-fe0f.png differ
diff --git a/img-microsoft-256/2640-fe0f.png b/img-microsoft-256/2640-fe0f.png
new file mode 100644
index 0000000000..a0c45c1133
Binary files /dev/null and b/img-microsoft-256/2640-fe0f.png differ
diff --git a/img-microsoft-256/2642-fe0f.png b/img-microsoft-256/2642-fe0f.png
new file mode 100644
index 0000000000..2e9186d1db
Binary files /dev/null and b/img-microsoft-256/2642-fe0f.png differ
diff --git a/img-microsoft-256/2648.png b/img-microsoft-256/2648.png
new file mode 100644
index 0000000000..e4d28c1ae8
Binary files /dev/null and b/img-microsoft-256/2648.png differ
diff --git a/img-microsoft-256/2649.png b/img-microsoft-256/2649.png
new file mode 100644
index 0000000000..1719a7cf92
Binary files /dev/null and b/img-microsoft-256/2649.png differ
diff --git a/img-microsoft-256/264a.png b/img-microsoft-256/264a.png
new file mode 100644
index 0000000000..fce031cf14
Binary files /dev/null and b/img-microsoft-256/264a.png differ
diff --git a/img-microsoft-256/264b.png b/img-microsoft-256/264b.png
new file mode 100644
index 0000000000..e7b3a13ef0
Binary files /dev/null and b/img-microsoft-256/264b.png differ
diff --git a/img-microsoft-256/264c.png b/img-microsoft-256/264c.png
new file mode 100644
index 0000000000..5de47c45c0
Binary files /dev/null and b/img-microsoft-256/264c.png differ
diff --git a/img-microsoft-256/264d.png b/img-microsoft-256/264d.png
new file mode 100644
index 0000000000..a1fb26b250
Binary files /dev/null and b/img-microsoft-256/264d.png differ
diff --git a/img-microsoft-256/264e.png b/img-microsoft-256/264e.png
new file mode 100644
index 0000000000..0ea82cca88
Binary files /dev/null and b/img-microsoft-256/264e.png differ
diff --git a/img-microsoft-256/264f.png b/img-microsoft-256/264f.png
new file mode 100644
index 0000000000..1e261bd131
Binary files /dev/null and b/img-microsoft-256/264f.png differ
diff --git a/img-microsoft-256/2650.png b/img-microsoft-256/2650.png
new file mode 100644
index 0000000000..829408c847
Binary files /dev/null and b/img-microsoft-256/2650.png differ
diff --git a/img-microsoft-256/2651.png b/img-microsoft-256/2651.png
new file mode 100644
index 0000000000..2c4fe89a63
Binary files /dev/null and b/img-microsoft-256/2651.png differ
diff --git a/img-microsoft-256/2652.png b/img-microsoft-256/2652.png
new file mode 100644
index 0000000000..f27dccf688
Binary files /dev/null and b/img-microsoft-256/2652.png differ
diff --git a/img-microsoft-256/2653.png b/img-microsoft-256/2653.png
new file mode 100644
index 0000000000..509461a0c8
Binary files /dev/null and b/img-microsoft-256/2653.png differ
diff --git a/img-microsoft-256/265f-fe0f.png b/img-microsoft-256/265f-fe0f.png
new file mode 100644
index 0000000000..59588641f5
Binary files /dev/null and b/img-microsoft-256/265f-fe0f.png differ
diff --git a/img-microsoft-256/2660-fe0f.png b/img-microsoft-256/2660-fe0f.png
new file mode 100644
index 0000000000..3381ead920
Binary files /dev/null and b/img-microsoft-256/2660-fe0f.png differ
diff --git a/img-microsoft-256/2663-fe0f.png b/img-microsoft-256/2663-fe0f.png
new file mode 100644
index 0000000000..73fa7d1e9e
Binary files /dev/null and b/img-microsoft-256/2663-fe0f.png differ
diff --git a/img-microsoft-256/2665-fe0f.png b/img-microsoft-256/2665-fe0f.png
new file mode 100644
index 0000000000..b0105f8582
Binary files /dev/null and b/img-microsoft-256/2665-fe0f.png differ
diff --git a/img-microsoft-256/2666-fe0f.png b/img-microsoft-256/2666-fe0f.png
new file mode 100644
index 0000000000..1c5c61ae34
Binary files /dev/null and b/img-microsoft-256/2666-fe0f.png differ
diff --git a/img-microsoft-256/2668-fe0f.png b/img-microsoft-256/2668-fe0f.png
new file mode 100644
index 0000000000..823d90b792
Binary files /dev/null and b/img-microsoft-256/2668-fe0f.png differ
diff --git a/img-microsoft-256/267b-fe0f.png b/img-microsoft-256/267b-fe0f.png
new file mode 100644
index 0000000000..f96464d613
Binary files /dev/null and b/img-microsoft-256/267b-fe0f.png differ
diff --git a/img-microsoft-256/267e-fe0f.png b/img-microsoft-256/267e-fe0f.png
new file mode 100644
index 0000000000..1805d3a2fe
Binary files /dev/null and b/img-microsoft-256/267e-fe0f.png differ
diff --git a/img-microsoft-256/267f.png b/img-microsoft-256/267f.png
new file mode 100644
index 0000000000..9ee9a04fa6
Binary files /dev/null and b/img-microsoft-256/267f.png differ
diff --git a/img-microsoft-256/2692-fe0f.png b/img-microsoft-256/2692-fe0f.png
new file mode 100644
index 0000000000..053a0377c4
Binary files /dev/null and b/img-microsoft-256/2692-fe0f.png differ
diff --git a/img-microsoft-256/2693.png b/img-microsoft-256/2693.png
new file mode 100644
index 0000000000..b5964c30ee
Binary files /dev/null and b/img-microsoft-256/2693.png differ
diff --git a/img-microsoft-256/2694-fe0f.png b/img-microsoft-256/2694-fe0f.png
new file mode 100644
index 0000000000..fca3c96dc5
Binary files /dev/null and b/img-microsoft-256/2694-fe0f.png differ
diff --git a/img-microsoft-256/2695-fe0f.png b/img-microsoft-256/2695-fe0f.png
new file mode 100644
index 0000000000..670d37d3b6
Binary files /dev/null and b/img-microsoft-256/2695-fe0f.png differ
diff --git a/img-microsoft-256/2696-fe0f.png b/img-microsoft-256/2696-fe0f.png
new file mode 100644
index 0000000000..1591709536
Binary files /dev/null and b/img-microsoft-256/2696-fe0f.png differ
diff --git a/img-microsoft-256/2697-fe0f.png b/img-microsoft-256/2697-fe0f.png
new file mode 100644
index 0000000000..fd9ff6ecf6
Binary files /dev/null and b/img-microsoft-256/2697-fe0f.png differ
diff --git a/img-microsoft-256/2699-fe0f.png b/img-microsoft-256/2699-fe0f.png
new file mode 100644
index 0000000000..050340b76c
Binary files /dev/null and b/img-microsoft-256/2699-fe0f.png differ
diff --git a/img-microsoft-256/269b-fe0f.png b/img-microsoft-256/269b-fe0f.png
new file mode 100644
index 0000000000..754e180eb3
Binary files /dev/null and b/img-microsoft-256/269b-fe0f.png differ
diff --git a/img-microsoft-256/269c-fe0f.png b/img-microsoft-256/269c-fe0f.png
new file mode 100644
index 0000000000..6ea6306bf6
Binary files /dev/null and b/img-microsoft-256/269c-fe0f.png differ
diff --git a/img-microsoft-256/26a0-fe0f.png b/img-microsoft-256/26a0-fe0f.png
new file mode 100644
index 0000000000..38a27e8f03
Binary files /dev/null and b/img-microsoft-256/26a0-fe0f.png differ
diff --git a/img-microsoft-256/26a1.png b/img-microsoft-256/26a1.png
new file mode 100644
index 0000000000..aaca074a00
Binary files /dev/null and b/img-microsoft-256/26a1.png differ
diff --git a/img-microsoft-256/26a7-fe0f.png b/img-microsoft-256/26a7-fe0f.png
new file mode 100644
index 0000000000..ef2eac40d5
Binary files /dev/null and b/img-microsoft-256/26a7-fe0f.png differ
diff --git a/img-microsoft-256/26aa.png b/img-microsoft-256/26aa.png
new file mode 100644
index 0000000000..ed0c6600fc
Binary files /dev/null and b/img-microsoft-256/26aa.png differ
diff --git a/img-microsoft-256/26ab.png b/img-microsoft-256/26ab.png
new file mode 100644
index 0000000000..8140bbbd00
Binary files /dev/null and b/img-microsoft-256/26ab.png differ
diff --git a/img-microsoft-256/26b0-fe0f.png b/img-microsoft-256/26b0-fe0f.png
new file mode 100644
index 0000000000..8f09d949db
Binary files /dev/null and b/img-microsoft-256/26b0-fe0f.png differ
diff --git a/img-microsoft-256/26b1-fe0f.png b/img-microsoft-256/26b1-fe0f.png
new file mode 100644
index 0000000000..bac0177f57
Binary files /dev/null and b/img-microsoft-256/26b1-fe0f.png differ
diff --git a/img-microsoft-256/26bd.png b/img-microsoft-256/26bd.png
new file mode 100644
index 0000000000..e55518fc1f
Binary files /dev/null and b/img-microsoft-256/26bd.png differ
diff --git a/img-microsoft-256/26be.png b/img-microsoft-256/26be.png
new file mode 100644
index 0000000000..910fcca12b
Binary files /dev/null and b/img-microsoft-256/26be.png differ
diff --git a/img-microsoft-256/26c4.png b/img-microsoft-256/26c4.png
new file mode 100644
index 0000000000..be3ea89185
Binary files /dev/null and b/img-microsoft-256/26c4.png differ
diff --git a/img-microsoft-256/26c5.png b/img-microsoft-256/26c5.png
new file mode 100644
index 0000000000..b8b464806a
Binary files /dev/null and b/img-microsoft-256/26c5.png differ
diff --git a/img-microsoft-256/26c8-fe0f.png b/img-microsoft-256/26c8-fe0f.png
new file mode 100644
index 0000000000..91c240469f
Binary files /dev/null and b/img-microsoft-256/26c8-fe0f.png differ
diff --git a/img-microsoft-256/26ce.png b/img-microsoft-256/26ce.png
new file mode 100644
index 0000000000..243faed956
Binary files /dev/null and b/img-microsoft-256/26ce.png differ
diff --git a/img-microsoft-256/26cf-fe0f.png b/img-microsoft-256/26cf-fe0f.png
new file mode 100644
index 0000000000..93663b9e14
Binary files /dev/null and b/img-microsoft-256/26cf-fe0f.png differ
diff --git a/img-microsoft-256/26d1-fe0f.png b/img-microsoft-256/26d1-fe0f.png
new file mode 100644
index 0000000000..1a63a03a72
Binary files /dev/null and b/img-microsoft-256/26d1-fe0f.png differ
diff --git a/img-microsoft-256/26d3-fe0f.png b/img-microsoft-256/26d3-fe0f.png
new file mode 100644
index 0000000000..5e2fa8c6e2
Binary files /dev/null and b/img-microsoft-256/26d3-fe0f.png differ
diff --git a/img-microsoft-256/26d4.png b/img-microsoft-256/26d4.png
new file mode 100644
index 0000000000..9ab4e60167
Binary files /dev/null and b/img-microsoft-256/26d4.png differ
diff --git a/img-microsoft-256/26e9-fe0f.png b/img-microsoft-256/26e9-fe0f.png
new file mode 100644
index 0000000000..a48d35c1b9
Binary files /dev/null and b/img-microsoft-256/26e9-fe0f.png differ
diff --git a/img-microsoft-256/26ea.png b/img-microsoft-256/26ea.png
new file mode 100644
index 0000000000..4c61fbaf1f
Binary files /dev/null and b/img-microsoft-256/26ea.png differ
diff --git a/img-microsoft-256/26f0-fe0f.png b/img-microsoft-256/26f0-fe0f.png
new file mode 100644
index 0000000000..90be20dc7d
Binary files /dev/null and b/img-microsoft-256/26f0-fe0f.png differ
diff --git a/img-microsoft-256/26f1-fe0f.png b/img-microsoft-256/26f1-fe0f.png
new file mode 100644
index 0000000000..a50fd6133b
Binary files /dev/null and b/img-microsoft-256/26f1-fe0f.png differ
diff --git a/img-microsoft-256/26f2.png b/img-microsoft-256/26f2.png
new file mode 100644
index 0000000000..4eb33ff407
Binary files /dev/null and b/img-microsoft-256/26f2.png differ
diff --git a/img-microsoft-256/26f3.png b/img-microsoft-256/26f3.png
new file mode 100644
index 0000000000..b1df518687
Binary files /dev/null and b/img-microsoft-256/26f3.png differ
diff --git a/img-microsoft-256/26f4-fe0f.png b/img-microsoft-256/26f4-fe0f.png
new file mode 100644
index 0000000000..4bbf512ae7
Binary files /dev/null and b/img-microsoft-256/26f4-fe0f.png differ
diff --git a/img-microsoft-256/26f5.png b/img-microsoft-256/26f5.png
new file mode 100644
index 0000000000..2a715178ea
Binary files /dev/null and b/img-microsoft-256/26f5.png differ
diff --git a/img-microsoft-256/26f7-fe0f.png b/img-microsoft-256/26f7-fe0f.png
new file mode 100644
index 0000000000..e4b2f5b698
Binary files /dev/null and b/img-microsoft-256/26f7-fe0f.png differ
diff --git a/img-microsoft-256/26f8-fe0f.png b/img-microsoft-256/26f8-fe0f.png
new file mode 100644
index 0000000000..fa78578d6c
Binary files /dev/null and b/img-microsoft-256/26f8-fe0f.png differ
diff --git a/img-microsoft-256/26f9-1f3fb-200d-2640-fe0f.png b/img-microsoft-256/26f9-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..b0b9021aa5
Binary files /dev/null and b/img-microsoft-256/26f9-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/26f9-1f3fb-200d-2642-fe0f.png b/img-microsoft-256/26f9-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..9f5bb6ee72
Binary files /dev/null and b/img-microsoft-256/26f9-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/26f9-1f3fb.png b/img-microsoft-256/26f9-1f3fb.png
new file mode 100644
index 0000000000..347823dc09
Binary files /dev/null and b/img-microsoft-256/26f9-1f3fb.png differ
diff --git a/img-microsoft-256/26f9-1f3fc-200d-2640-fe0f.png b/img-microsoft-256/26f9-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..672aa7061e
Binary files /dev/null and b/img-microsoft-256/26f9-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/26f9-1f3fc-200d-2642-fe0f.png b/img-microsoft-256/26f9-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a482dc0b9a
Binary files /dev/null and b/img-microsoft-256/26f9-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/26f9-1f3fc.png b/img-microsoft-256/26f9-1f3fc.png
new file mode 100644
index 0000000000..3833ed588c
Binary files /dev/null and b/img-microsoft-256/26f9-1f3fc.png differ
diff --git a/img-microsoft-256/26f9-1f3fd-200d-2640-fe0f.png b/img-microsoft-256/26f9-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..b9aa40df34
Binary files /dev/null and b/img-microsoft-256/26f9-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/26f9-1f3fd-200d-2642-fe0f.png b/img-microsoft-256/26f9-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d9145442c7
Binary files /dev/null and b/img-microsoft-256/26f9-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/26f9-1f3fd.png b/img-microsoft-256/26f9-1f3fd.png
new file mode 100644
index 0000000000..f19c6cb5b4
Binary files /dev/null and b/img-microsoft-256/26f9-1f3fd.png differ
diff --git a/img-microsoft-256/26f9-1f3fe-200d-2640-fe0f.png b/img-microsoft-256/26f9-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..47b6f2c3cc
Binary files /dev/null and b/img-microsoft-256/26f9-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/26f9-1f3fe-200d-2642-fe0f.png b/img-microsoft-256/26f9-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..aa82921381
Binary files /dev/null and b/img-microsoft-256/26f9-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/26f9-1f3fe.png b/img-microsoft-256/26f9-1f3fe.png
new file mode 100644
index 0000000000..fd152c88c7
Binary files /dev/null and b/img-microsoft-256/26f9-1f3fe.png differ
diff --git a/img-microsoft-256/26f9-1f3ff-200d-2640-fe0f.png b/img-microsoft-256/26f9-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..bdde7dc997
Binary files /dev/null and b/img-microsoft-256/26f9-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/26f9-1f3ff-200d-2642-fe0f.png b/img-microsoft-256/26f9-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..eeee42bdd7
Binary files /dev/null and b/img-microsoft-256/26f9-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/26f9-1f3ff.png b/img-microsoft-256/26f9-1f3ff.png
new file mode 100644
index 0000000000..65b2ee7f84
Binary files /dev/null and b/img-microsoft-256/26f9-1f3ff.png differ
diff --git a/img-microsoft-256/26f9-fe0f-200d-2640-fe0f.png b/img-microsoft-256/26f9-fe0f-200d-2640-fe0f.png
new file mode 100644
index 0000000000..ed0355393e
Binary files /dev/null and b/img-microsoft-256/26f9-fe0f-200d-2640-fe0f.png differ
diff --git a/img-microsoft-256/26f9-fe0f-200d-2642-fe0f.png b/img-microsoft-256/26f9-fe0f-200d-2642-fe0f.png
new file mode 100644
index 0000000000..c548429b26
Binary files /dev/null and b/img-microsoft-256/26f9-fe0f-200d-2642-fe0f.png differ
diff --git a/img-microsoft-256/26f9-fe0f.png b/img-microsoft-256/26f9-fe0f.png
new file mode 100644
index 0000000000..de37df01aa
Binary files /dev/null and b/img-microsoft-256/26f9-fe0f.png differ
diff --git a/img-microsoft-256/26fa.png b/img-microsoft-256/26fa.png
new file mode 100644
index 0000000000..e16a88b734
Binary files /dev/null and b/img-microsoft-256/26fa.png differ
diff --git a/img-microsoft-256/26fd.png b/img-microsoft-256/26fd.png
new file mode 100644
index 0000000000..9a62843c8c
Binary files /dev/null and b/img-microsoft-256/26fd.png differ
diff --git a/img-microsoft-256/2702-fe0f.png b/img-microsoft-256/2702-fe0f.png
new file mode 100644
index 0000000000..481e0945f6
Binary files /dev/null and b/img-microsoft-256/2702-fe0f.png differ
diff --git a/img-microsoft-256/2705.png b/img-microsoft-256/2705.png
new file mode 100644
index 0000000000..3690e97e51
Binary files /dev/null and b/img-microsoft-256/2705.png differ
diff --git a/img-microsoft-256/2708-fe0f.png b/img-microsoft-256/2708-fe0f.png
new file mode 100644
index 0000000000..8a1bc42af8
Binary files /dev/null and b/img-microsoft-256/2708-fe0f.png differ
diff --git a/img-microsoft-256/2709-fe0f.png b/img-microsoft-256/2709-fe0f.png
new file mode 100644
index 0000000000..25a90b688a
Binary files /dev/null and b/img-microsoft-256/2709-fe0f.png differ
diff --git a/img-microsoft-256/270a-1f3fb.png b/img-microsoft-256/270a-1f3fb.png
new file mode 100644
index 0000000000..8c7f4bb498
Binary files /dev/null and b/img-microsoft-256/270a-1f3fb.png differ
diff --git a/img-microsoft-256/270a-1f3fc.png b/img-microsoft-256/270a-1f3fc.png
new file mode 100644
index 0000000000..88d18e0de7
Binary files /dev/null and b/img-microsoft-256/270a-1f3fc.png differ
diff --git a/img-microsoft-256/270a-1f3fd.png b/img-microsoft-256/270a-1f3fd.png
new file mode 100644
index 0000000000..5331a5a98d
Binary files /dev/null and b/img-microsoft-256/270a-1f3fd.png differ
diff --git a/img-microsoft-256/270a-1f3fe.png b/img-microsoft-256/270a-1f3fe.png
new file mode 100644
index 0000000000..7c4a9aada9
Binary files /dev/null and b/img-microsoft-256/270a-1f3fe.png differ
diff --git a/img-microsoft-256/270a-1f3ff.png b/img-microsoft-256/270a-1f3ff.png
new file mode 100644
index 0000000000..6de8c4ebf5
Binary files /dev/null and b/img-microsoft-256/270a-1f3ff.png differ
diff --git a/img-microsoft-256/270a.png b/img-microsoft-256/270a.png
new file mode 100644
index 0000000000..3ddfc5efe6
Binary files /dev/null and b/img-microsoft-256/270a.png differ
diff --git a/img-microsoft-256/270b-1f3fb.png b/img-microsoft-256/270b-1f3fb.png
new file mode 100644
index 0000000000..fba7dfa4a1
Binary files /dev/null and b/img-microsoft-256/270b-1f3fb.png differ
diff --git a/img-microsoft-256/270b-1f3fc.png b/img-microsoft-256/270b-1f3fc.png
new file mode 100644
index 0000000000..a023bf2d86
Binary files /dev/null and b/img-microsoft-256/270b-1f3fc.png differ
diff --git a/img-microsoft-256/270b-1f3fd.png b/img-microsoft-256/270b-1f3fd.png
new file mode 100644
index 0000000000..8348e6a4a3
Binary files /dev/null and b/img-microsoft-256/270b-1f3fd.png differ
diff --git a/img-microsoft-256/270b-1f3fe.png b/img-microsoft-256/270b-1f3fe.png
new file mode 100644
index 0000000000..448097765b
Binary files /dev/null and b/img-microsoft-256/270b-1f3fe.png differ
diff --git a/img-microsoft-256/270b-1f3ff.png b/img-microsoft-256/270b-1f3ff.png
new file mode 100644
index 0000000000..b9d98cbed9
Binary files /dev/null and b/img-microsoft-256/270b-1f3ff.png differ
diff --git a/img-microsoft-256/270b.png b/img-microsoft-256/270b.png
new file mode 100644
index 0000000000..743ea692dd
Binary files /dev/null and b/img-microsoft-256/270b.png differ
diff --git a/img-microsoft-256/270c-1f3fb.png b/img-microsoft-256/270c-1f3fb.png
new file mode 100644
index 0000000000..bd2421f862
Binary files /dev/null and b/img-microsoft-256/270c-1f3fb.png differ
diff --git a/img-microsoft-256/270c-1f3fc.png b/img-microsoft-256/270c-1f3fc.png
new file mode 100644
index 0000000000..5314336cec
Binary files /dev/null and b/img-microsoft-256/270c-1f3fc.png differ
diff --git a/img-microsoft-256/270c-1f3fd.png b/img-microsoft-256/270c-1f3fd.png
new file mode 100644
index 0000000000..e19a0d13f9
Binary files /dev/null and b/img-microsoft-256/270c-1f3fd.png differ
diff --git a/img-microsoft-256/270c-1f3fe.png b/img-microsoft-256/270c-1f3fe.png
new file mode 100644
index 0000000000..3a3a7d3d91
Binary files /dev/null and b/img-microsoft-256/270c-1f3fe.png differ
diff --git a/img-microsoft-256/270c-1f3ff.png b/img-microsoft-256/270c-1f3ff.png
new file mode 100644
index 0000000000..5c873a57ed
Binary files /dev/null and b/img-microsoft-256/270c-1f3ff.png differ
diff --git a/img-microsoft-256/270c-fe0f.png b/img-microsoft-256/270c-fe0f.png
new file mode 100644
index 0000000000..2e097548cf
Binary files /dev/null and b/img-microsoft-256/270c-fe0f.png differ
diff --git a/img-microsoft-256/270d-1f3fb.png b/img-microsoft-256/270d-1f3fb.png
new file mode 100644
index 0000000000..cab7cc126b
Binary files /dev/null and b/img-microsoft-256/270d-1f3fb.png differ
diff --git a/img-microsoft-256/270d-1f3fc.png b/img-microsoft-256/270d-1f3fc.png
new file mode 100644
index 0000000000..7c6adb52bd
Binary files /dev/null and b/img-microsoft-256/270d-1f3fc.png differ
diff --git a/img-microsoft-256/270d-1f3fd.png b/img-microsoft-256/270d-1f3fd.png
new file mode 100644
index 0000000000..bc549f808e
Binary files /dev/null and b/img-microsoft-256/270d-1f3fd.png differ
diff --git a/img-microsoft-256/270d-1f3fe.png b/img-microsoft-256/270d-1f3fe.png
new file mode 100644
index 0000000000..b6efc49518
Binary files /dev/null and b/img-microsoft-256/270d-1f3fe.png differ
diff --git a/img-microsoft-256/270d-1f3ff.png b/img-microsoft-256/270d-1f3ff.png
new file mode 100644
index 0000000000..bd9b73a3fe
Binary files /dev/null and b/img-microsoft-256/270d-1f3ff.png differ
diff --git a/img-microsoft-256/270d-fe0f.png b/img-microsoft-256/270d-fe0f.png
new file mode 100644
index 0000000000..3c8887d669
Binary files /dev/null and b/img-microsoft-256/270d-fe0f.png differ
diff --git a/img-microsoft-256/270f-fe0f.png b/img-microsoft-256/270f-fe0f.png
new file mode 100644
index 0000000000..54ec2a629f
Binary files /dev/null and b/img-microsoft-256/270f-fe0f.png differ
diff --git a/img-microsoft-256/2712-fe0f.png b/img-microsoft-256/2712-fe0f.png
new file mode 100644
index 0000000000..a05be81dd7
Binary files /dev/null and b/img-microsoft-256/2712-fe0f.png differ
diff --git a/img-microsoft-256/2714-fe0f.png b/img-microsoft-256/2714-fe0f.png
new file mode 100644
index 0000000000..2c15532c45
Binary files /dev/null and b/img-microsoft-256/2714-fe0f.png differ
diff --git a/img-microsoft-256/2716-fe0f.png b/img-microsoft-256/2716-fe0f.png
new file mode 100644
index 0000000000..89177ada7c
Binary files /dev/null and b/img-microsoft-256/2716-fe0f.png differ
diff --git a/img-microsoft-256/271d-fe0f.png b/img-microsoft-256/271d-fe0f.png
new file mode 100644
index 0000000000..5aa5ec4fd8
Binary files /dev/null and b/img-microsoft-256/271d-fe0f.png differ
diff --git a/img-microsoft-256/2721-fe0f.png b/img-microsoft-256/2721-fe0f.png
new file mode 100644
index 0000000000..39cfd78024
Binary files /dev/null and b/img-microsoft-256/2721-fe0f.png differ
diff --git a/img-microsoft-256/2728.png b/img-microsoft-256/2728.png
new file mode 100644
index 0000000000..b07ae32c5a
Binary files /dev/null and b/img-microsoft-256/2728.png differ
diff --git a/img-microsoft-256/2733-fe0f.png b/img-microsoft-256/2733-fe0f.png
new file mode 100644
index 0000000000..22d022ca82
Binary files /dev/null and b/img-microsoft-256/2733-fe0f.png differ
diff --git a/img-microsoft-256/2734-fe0f.png b/img-microsoft-256/2734-fe0f.png
new file mode 100644
index 0000000000..08b75f0462
Binary files /dev/null and b/img-microsoft-256/2734-fe0f.png differ
diff --git a/img-microsoft-256/2744-fe0f.png b/img-microsoft-256/2744-fe0f.png
new file mode 100644
index 0000000000..f080c72fc6
Binary files /dev/null and b/img-microsoft-256/2744-fe0f.png differ
diff --git a/img-microsoft-256/2747-fe0f.png b/img-microsoft-256/2747-fe0f.png
new file mode 100644
index 0000000000..2e0f127e1c
Binary files /dev/null and b/img-microsoft-256/2747-fe0f.png differ
diff --git a/img-microsoft-256/274c.png b/img-microsoft-256/274c.png
new file mode 100644
index 0000000000..8a5965e355
Binary files /dev/null and b/img-microsoft-256/274c.png differ
diff --git a/img-microsoft-256/274e.png b/img-microsoft-256/274e.png
new file mode 100644
index 0000000000..ad359c0b30
Binary files /dev/null and b/img-microsoft-256/274e.png differ
diff --git a/img-microsoft-256/2753.png b/img-microsoft-256/2753.png
new file mode 100644
index 0000000000..0ac084c4e2
Binary files /dev/null and b/img-microsoft-256/2753.png differ
diff --git a/img-microsoft-256/2754.png b/img-microsoft-256/2754.png
new file mode 100644
index 0000000000..5da458162f
Binary files /dev/null and b/img-microsoft-256/2754.png differ
diff --git a/img-microsoft-256/2755.png b/img-microsoft-256/2755.png
new file mode 100644
index 0000000000..cc38cc2401
Binary files /dev/null and b/img-microsoft-256/2755.png differ
diff --git a/img-microsoft-256/2757.png b/img-microsoft-256/2757.png
new file mode 100644
index 0000000000..b32eed6396
Binary files /dev/null and b/img-microsoft-256/2757.png differ
diff --git a/img-microsoft-256/2763-fe0f.png b/img-microsoft-256/2763-fe0f.png
new file mode 100644
index 0000000000..3b7302fc98
Binary files /dev/null and b/img-microsoft-256/2763-fe0f.png differ
diff --git a/img-microsoft-256/2764-fe0f-200d-1f525.png b/img-microsoft-256/2764-fe0f-200d-1f525.png
new file mode 100644
index 0000000000..538a08edac
Binary files /dev/null and b/img-microsoft-256/2764-fe0f-200d-1f525.png differ
diff --git a/img-microsoft-256/2764-fe0f-200d-1fa79.png b/img-microsoft-256/2764-fe0f-200d-1fa79.png
new file mode 100644
index 0000000000..b0937e917c
Binary files /dev/null and b/img-microsoft-256/2764-fe0f-200d-1fa79.png differ
diff --git a/img-microsoft-256/2764-fe0f.png b/img-microsoft-256/2764-fe0f.png
new file mode 100644
index 0000000000..6389f0a6c7
Binary files /dev/null and b/img-microsoft-256/2764-fe0f.png differ
diff --git a/img-microsoft-256/2795.png b/img-microsoft-256/2795.png
new file mode 100644
index 0000000000..0d6ea0b8a7
Binary files /dev/null and b/img-microsoft-256/2795.png differ
diff --git a/img-microsoft-256/2796.png b/img-microsoft-256/2796.png
new file mode 100644
index 0000000000..d8e4d6aac2
Binary files /dev/null and b/img-microsoft-256/2796.png differ
diff --git a/img-microsoft-256/2797.png b/img-microsoft-256/2797.png
new file mode 100644
index 0000000000..e61d01887f
Binary files /dev/null and b/img-microsoft-256/2797.png differ
diff --git a/img-microsoft-256/27a1-fe0f.png b/img-microsoft-256/27a1-fe0f.png
new file mode 100644
index 0000000000..3e0c0d485b
Binary files /dev/null and b/img-microsoft-256/27a1-fe0f.png differ
diff --git a/img-microsoft-256/27b0.png b/img-microsoft-256/27b0.png
new file mode 100644
index 0000000000..a473781599
Binary files /dev/null and b/img-microsoft-256/27b0.png differ
diff --git a/img-microsoft-256/27bf.png b/img-microsoft-256/27bf.png
new file mode 100644
index 0000000000..f0e49a17f8
Binary files /dev/null and b/img-microsoft-256/27bf.png differ
diff --git a/img-microsoft-256/2934-fe0f.png b/img-microsoft-256/2934-fe0f.png
new file mode 100644
index 0000000000..9d7dd4e403
Binary files /dev/null and b/img-microsoft-256/2934-fe0f.png differ
diff --git a/img-microsoft-256/2935-fe0f.png b/img-microsoft-256/2935-fe0f.png
new file mode 100644
index 0000000000..e86e547869
Binary files /dev/null and b/img-microsoft-256/2935-fe0f.png differ
diff --git a/img-microsoft-256/2b05-fe0f.png b/img-microsoft-256/2b05-fe0f.png
new file mode 100644
index 0000000000..2a931e266f
Binary files /dev/null and b/img-microsoft-256/2b05-fe0f.png differ
diff --git a/img-microsoft-256/2b06-fe0f.png b/img-microsoft-256/2b06-fe0f.png
new file mode 100644
index 0000000000..89f81e8c2e
Binary files /dev/null and b/img-microsoft-256/2b06-fe0f.png differ
diff --git a/img-microsoft-256/2b07-fe0f.png b/img-microsoft-256/2b07-fe0f.png
new file mode 100644
index 0000000000..0116da5019
Binary files /dev/null and b/img-microsoft-256/2b07-fe0f.png differ
diff --git a/img-microsoft-256/2b1b.png b/img-microsoft-256/2b1b.png
new file mode 100644
index 0000000000..359872e352
Binary files /dev/null and b/img-microsoft-256/2b1b.png differ
diff --git a/img-microsoft-256/2b1c.png b/img-microsoft-256/2b1c.png
new file mode 100644
index 0000000000..21f4402515
Binary files /dev/null and b/img-microsoft-256/2b1c.png differ
diff --git a/img-microsoft-256/2b50.png b/img-microsoft-256/2b50.png
new file mode 100644
index 0000000000..fd68271bae
Binary files /dev/null and b/img-microsoft-256/2b50.png differ
diff --git a/img-microsoft-256/2b55.png b/img-microsoft-256/2b55.png
new file mode 100644
index 0000000000..10edc4edc8
Binary files /dev/null and b/img-microsoft-256/2b55.png differ
diff --git a/img-microsoft-256/3030-fe0f.png b/img-microsoft-256/3030-fe0f.png
new file mode 100644
index 0000000000..10019f5349
Binary files /dev/null and b/img-microsoft-256/3030-fe0f.png differ
diff --git a/img-microsoft-256/303d-fe0f.png b/img-microsoft-256/303d-fe0f.png
new file mode 100644
index 0000000000..876e1c8d23
Binary files /dev/null and b/img-microsoft-256/303d-fe0f.png differ
diff --git a/img-microsoft-256/3297-fe0f.png b/img-microsoft-256/3297-fe0f.png
new file mode 100644
index 0000000000..2c617d7214
Binary files /dev/null and b/img-microsoft-256/3297-fe0f.png differ
diff --git a/img-microsoft-256/3299-fe0f.png b/img-microsoft-256/3299-fe0f.png
new file mode 100644
index 0000000000..b0d9a0b21c
Binary files /dev/null and b/img-microsoft-256/3299-fe0f.png differ
diff --git a/img-microsoft-64/0023-fe0f-20e3.png b/img-microsoft-64/0023-fe0f-20e3.png
new file mode 100644
index 0000000000..39299dcb9d
Binary files /dev/null and b/img-microsoft-64/0023-fe0f-20e3.png differ
diff --git a/img-microsoft-64/002a-fe0f-20e3.png b/img-microsoft-64/002a-fe0f-20e3.png
new file mode 100644
index 0000000000..4ed17be736
Binary files /dev/null and b/img-microsoft-64/002a-fe0f-20e3.png differ
diff --git a/img-microsoft-64/0030-fe0f-20e3.png b/img-microsoft-64/0030-fe0f-20e3.png
new file mode 100644
index 0000000000..82f6d60a91
Binary files /dev/null and b/img-microsoft-64/0030-fe0f-20e3.png differ
diff --git a/img-microsoft-64/0031-fe0f-20e3.png b/img-microsoft-64/0031-fe0f-20e3.png
new file mode 100644
index 0000000000..0bcf3aecb1
Binary files /dev/null and b/img-microsoft-64/0031-fe0f-20e3.png differ
diff --git a/img-microsoft-64/0032-fe0f-20e3.png b/img-microsoft-64/0032-fe0f-20e3.png
new file mode 100644
index 0000000000..6f135b1a0f
Binary files /dev/null and b/img-microsoft-64/0032-fe0f-20e3.png differ
diff --git a/img-microsoft-64/0033-fe0f-20e3.png b/img-microsoft-64/0033-fe0f-20e3.png
new file mode 100644
index 0000000000..31b41e40bc
Binary files /dev/null and b/img-microsoft-64/0033-fe0f-20e3.png differ
diff --git a/img-microsoft-64/0034-fe0f-20e3.png b/img-microsoft-64/0034-fe0f-20e3.png
new file mode 100644
index 0000000000..966b51277f
Binary files /dev/null and b/img-microsoft-64/0034-fe0f-20e3.png differ
diff --git a/img-microsoft-64/0035-fe0f-20e3.png b/img-microsoft-64/0035-fe0f-20e3.png
new file mode 100644
index 0000000000..8478265f3e
Binary files /dev/null and b/img-microsoft-64/0035-fe0f-20e3.png differ
diff --git a/img-microsoft-64/0036-fe0f-20e3.png b/img-microsoft-64/0036-fe0f-20e3.png
new file mode 100644
index 0000000000..fe946e3472
Binary files /dev/null and b/img-microsoft-64/0036-fe0f-20e3.png differ
diff --git a/img-microsoft-64/0037-fe0f-20e3.png b/img-microsoft-64/0037-fe0f-20e3.png
new file mode 100644
index 0000000000..c96d61ca6e
Binary files /dev/null and b/img-microsoft-64/0037-fe0f-20e3.png differ
diff --git a/img-microsoft-64/0038-fe0f-20e3.png b/img-microsoft-64/0038-fe0f-20e3.png
new file mode 100644
index 0000000000..ff949657f6
Binary files /dev/null and b/img-microsoft-64/0038-fe0f-20e3.png differ
diff --git a/img-microsoft-64/0039-fe0f-20e3.png b/img-microsoft-64/0039-fe0f-20e3.png
new file mode 100644
index 0000000000..2d33ecf145
Binary files /dev/null and b/img-microsoft-64/0039-fe0f-20e3.png differ
diff --git a/img-microsoft-64/00a9-fe0f.png b/img-microsoft-64/00a9-fe0f.png
new file mode 100644
index 0000000000..123dd197e1
Binary files /dev/null and b/img-microsoft-64/00a9-fe0f.png differ
diff --git a/img-microsoft-64/00ae-fe0f.png b/img-microsoft-64/00ae-fe0f.png
new file mode 100644
index 0000000000..72db711434
Binary files /dev/null and b/img-microsoft-64/00ae-fe0f.png differ
diff --git a/img-microsoft-64/1f004.png b/img-microsoft-64/1f004.png
new file mode 100644
index 0000000000..87fe8b5345
Binary files /dev/null and b/img-microsoft-64/1f004.png differ
diff --git a/img-microsoft-64/1f0cf.png b/img-microsoft-64/1f0cf.png
new file mode 100644
index 0000000000..73e68481c2
Binary files /dev/null and b/img-microsoft-64/1f0cf.png differ
diff --git a/img-microsoft-64/1f170-fe0f.png b/img-microsoft-64/1f170-fe0f.png
new file mode 100644
index 0000000000..c826a7b104
Binary files /dev/null and b/img-microsoft-64/1f170-fe0f.png differ
diff --git a/img-microsoft-64/1f171-fe0f.png b/img-microsoft-64/1f171-fe0f.png
new file mode 100644
index 0000000000..501148bf5a
Binary files /dev/null and b/img-microsoft-64/1f171-fe0f.png differ
diff --git a/img-microsoft-64/1f17e-fe0f.png b/img-microsoft-64/1f17e-fe0f.png
new file mode 100644
index 0000000000..19d1ccd0a2
Binary files /dev/null and b/img-microsoft-64/1f17e-fe0f.png differ
diff --git a/img-microsoft-64/1f17f-fe0f.png b/img-microsoft-64/1f17f-fe0f.png
new file mode 100644
index 0000000000..b9c6a6dc7d
Binary files /dev/null and b/img-microsoft-64/1f17f-fe0f.png differ
diff --git a/img-microsoft-64/1f18e.png b/img-microsoft-64/1f18e.png
new file mode 100644
index 0000000000..8c66c2f8d8
Binary files /dev/null and b/img-microsoft-64/1f18e.png differ
diff --git a/img-microsoft-64/1f191.png b/img-microsoft-64/1f191.png
new file mode 100644
index 0000000000..77a2cf4a76
Binary files /dev/null and b/img-microsoft-64/1f191.png differ
diff --git a/img-microsoft-64/1f192.png b/img-microsoft-64/1f192.png
new file mode 100644
index 0000000000..561495a690
Binary files /dev/null and b/img-microsoft-64/1f192.png differ
diff --git a/img-microsoft-64/1f193.png b/img-microsoft-64/1f193.png
new file mode 100644
index 0000000000..375e40f959
Binary files /dev/null and b/img-microsoft-64/1f193.png differ
diff --git a/img-microsoft-64/1f194.png b/img-microsoft-64/1f194.png
new file mode 100644
index 0000000000..3341af4f01
Binary files /dev/null and b/img-microsoft-64/1f194.png differ
diff --git a/img-microsoft-64/1f195.png b/img-microsoft-64/1f195.png
new file mode 100644
index 0000000000..b82f35eb66
Binary files /dev/null and b/img-microsoft-64/1f195.png differ
diff --git a/img-microsoft-64/1f196.png b/img-microsoft-64/1f196.png
new file mode 100644
index 0000000000..0f16577443
Binary files /dev/null and b/img-microsoft-64/1f196.png differ
diff --git a/img-microsoft-64/1f197.png b/img-microsoft-64/1f197.png
new file mode 100644
index 0000000000..fdfb8a8358
Binary files /dev/null and b/img-microsoft-64/1f197.png differ
diff --git a/img-microsoft-64/1f198.png b/img-microsoft-64/1f198.png
new file mode 100644
index 0000000000..66504c8e23
Binary files /dev/null and b/img-microsoft-64/1f198.png differ
diff --git a/img-microsoft-64/1f199.png b/img-microsoft-64/1f199.png
new file mode 100644
index 0000000000..ab17612f02
Binary files /dev/null and b/img-microsoft-64/1f199.png differ
diff --git a/img-microsoft-64/1f19a.png b/img-microsoft-64/1f19a.png
new file mode 100644
index 0000000000..31f550086b
Binary files /dev/null and b/img-microsoft-64/1f19a.png differ
diff --git a/img-microsoft-64/1f201.png b/img-microsoft-64/1f201.png
new file mode 100644
index 0000000000..ab2383ed33
Binary files /dev/null and b/img-microsoft-64/1f201.png differ
diff --git a/img-microsoft-64/1f202-fe0f.png b/img-microsoft-64/1f202-fe0f.png
new file mode 100644
index 0000000000..fbfc2c8d18
Binary files /dev/null and b/img-microsoft-64/1f202-fe0f.png differ
diff --git a/img-microsoft-64/1f21a.png b/img-microsoft-64/1f21a.png
new file mode 100644
index 0000000000..866cf0f517
Binary files /dev/null and b/img-microsoft-64/1f21a.png differ
diff --git a/img-microsoft-64/1f22f.png b/img-microsoft-64/1f22f.png
new file mode 100644
index 0000000000..7243f9f974
Binary files /dev/null and b/img-microsoft-64/1f22f.png differ
diff --git a/img-microsoft-64/1f232.png b/img-microsoft-64/1f232.png
new file mode 100644
index 0000000000..024d8fe9c1
Binary files /dev/null and b/img-microsoft-64/1f232.png differ
diff --git a/img-microsoft-64/1f233.png b/img-microsoft-64/1f233.png
new file mode 100644
index 0000000000..8aac7e792d
Binary files /dev/null and b/img-microsoft-64/1f233.png differ
diff --git a/img-microsoft-64/1f234.png b/img-microsoft-64/1f234.png
new file mode 100644
index 0000000000..809f689923
Binary files /dev/null and b/img-microsoft-64/1f234.png differ
diff --git a/img-microsoft-64/1f235.png b/img-microsoft-64/1f235.png
new file mode 100644
index 0000000000..4b7f05e2bc
Binary files /dev/null and b/img-microsoft-64/1f235.png differ
diff --git a/img-microsoft-64/1f236.png b/img-microsoft-64/1f236.png
new file mode 100644
index 0000000000..ded54c7a98
Binary files /dev/null and b/img-microsoft-64/1f236.png differ
diff --git a/img-microsoft-64/1f237-fe0f.png b/img-microsoft-64/1f237-fe0f.png
new file mode 100644
index 0000000000..2725c02a2b
Binary files /dev/null and b/img-microsoft-64/1f237-fe0f.png differ
diff --git a/img-microsoft-64/1f238.png b/img-microsoft-64/1f238.png
new file mode 100644
index 0000000000..96602d763a
Binary files /dev/null and b/img-microsoft-64/1f238.png differ
diff --git a/img-microsoft-64/1f239.png b/img-microsoft-64/1f239.png
new file mode 100644
index 0000000000..f76a4cc74a
Binary files /dev/null and b/img-microsoft-64/1f239.png differ
diff --git a/img-microsoft-64/1f23a.png b/img-microsoft-64/1f23a.png
new file mode 100644
index 0000000000..e557eac4d2
Binary files /dev/null and b/img-microsoft-64/1f23a.png differ
diff --git a/img-microsoft-64/1f250.png b/img-microsoft-64/1f250.png
new file mode 100644
index 0000000000..cf07323a93
Binary files /dev/null and b/img-microsoft-64/1f250.png differ
diff --git a/img-microsoft-64/1f251.png b/img-microsoft-64/1f251.png
new file mode 100644
index 0000000000..cf43b644d4
Binary files /dev/null and b/img-microsoft-64/1f251.png differ
diff --git a/img-microsoft-64/1f300.png b/img-microsoft-64/1f300.png
new file mode 100644
index 0000000000..293296ba9a
Binary files /dev/null and b/img-microsoft-64/1f300.png differ
diff --git a/img-microsoft-64/1f301.png b/img-microsoft-64/1f301.png
new file mode 100644
index 0000000000..9f3e2709d9
Binary files /dev/null and b/img-microsoft-64/1f301.png differ
diff --git a/img-microsoft-64/1f302.png b/img-microsoft-64/1f302.png
new file mode 100644
index 0000000000..81024479cb
Binary files /dev/null and b/img-microsoft-64/1f302.png differ
diff --git a/img-microsoft-64/1f303.png b/img-microsoft-64/1f303.png
new file mode 100644
index 0000000000..78f241ed41
Binary files /dev/null and b/img-microsoft-64/1f303.png differ
diff --git a/img-microsoft-64/1f304.png b/img-microsoft-64/1f304.png
new file mode 100644
index 0000000000..a65f2328e2
Binary files /dev/null and b/img-microsoft-64/1f304.png differ
diff --git a/img-microsoft-64/1f305.png b/img-microsoft-64/1f305.png
new file mode 100644
index 0000000000..4d084b25d3
Binary files /dev/null and b/img-microsoft-64/1f305.png differ
diff --git a/img-microsoft-64/1f306.png b/img-microsoft-64/1f306.png
new file mode 100644
index 0000000000..30c3949ea3
Binary files /dev/null and b/img-microsoft-64/1f306.png differ
diff --git a/img-microsoft-64/1f307.png b/img-microsoft-64/1f307.png
new file mode 100644
index 0000000000..21940399d4
Binary files /dev/null and b/img-microsoft-64/1f307.png differ
diff --git a/img-microsoft-64/1f308.png b/img-microsoft-64/1f308.png
new file mode 100644
index 0000000000..9997046d1f
Binary files /dev/null and b/img-microsoft-64/1f308.png differ
diff --git a/img-microsoft-64/1f309.png b/img-microsoft-64/1f309.png
new file mode 100644
index 0000000000..0120fc97fc
Binary files /dev/null and b/img-microsoft-64/1f309.png differ
diff --git a/img-microsoft-64/1f30a.png b/img-microsoft-64/1f30a.png
new file mode 100644
index 0000000000..c6b6dea76c
Binary files /dev/null and b/img-microsoft-64/1f30a.png differ
diff --git a/img-microsoft-64/1f30b.png b/img-microsoft-64/1f30b.png
new file mode 100644
index 0000000000..6704047358
Binary files /dev/null and b/img-microsoft-64/1f30b.png differ
diff --git a/img-microsoft-64/1f30c.png b/img-microsoft-64/1f30c.png
new file mode 100644
index 0000000000..60f3051312
Binary files /dev/null and b/img-microsoft-64/1f30c.png differ
diff --git a/img-microsoft-64/1f30d.png b/img-microsoft-64/1f30d.png
new file mode 100644
index 0000000000..caa0327fe9
Binary files /dev/null and b/img-microsoft-64/1f30d.png differ
diff --git a/img-microsoft-64/1f30e.png b/img-microsoft-64/1f30e.png
new file mode 100644
index 0000000000..a9125f2b68
Binary files /dev/null and b/img-microsoft-64/1f30e.png differ
diff --git a/img-microsoft-64/1f30f.png b/img-microsoft-64/1f30f.png
new file mode 100644
index 0000000000..067306476e
Binary files /dev/null and b/img-microsoft-64/1f30f.png differ
diff --git a/img-microsoft-64/1f310.png b/img-microsoft-64/1f310.png
new file mode 100644
index 0000000000..9cf6cb19f1
Binary files /dev/null and b/img-microsoft-64/1f310.png differ
diff --git a/img-microsoft-64/1f311.png b/img-microsoft-64/1f311.png
new file mode 100644
index 0000000000..e719699537
Binary files /dev/null and b/img-microsoft-64/1f311.png differ
diff --git a/img-microsoft-64/1f312.png b/img-microsoft-64/1f312.png
new file mode 100644
index 0000000000..c1a17c5b1d
Binary files /dev/null and b/img-microsoft-64/1f312.png differ
diff --git a/img-microsoft-64/1f313.png b/img-microsoft-64/1f313.png
new file mode 100644
index 0000000000..c28907df8d
Binary files /dev/null and b/img-microsoft-64/1f313.png differ
diff --git a/img-microsoft-64/1f314.png b/img-microsoft-64/1f314.png
new file mode 100644
index 0000000000..5cac5362c7
Binary files /dev/null and b/img-microsoft-64/1f314.png differ
diff --git a/img-microsoft-64/1f315.png b/img-microsoft-64/1f315.png
new file mode 100644
index 0000000000..c0778dfa8f
Binary files /dev/null and b/img-microsoft-64/1f315.png differ
diff --git a/img-microsoft-64/1f316.png b/img-microsoft-64/1f316.png
new file mode 100644
index 0000000000..e7036e44f6
Binary files /dev/null and b/img-microsoft-64/1f316.png differ
diff --git a/img-microsoft-64/1f317.png b/img-microsoft-64/1f317.png
new file mode 100644
index 0000000000..127b425480
Binary files /dev/null and b/img-microsoft-64/1f317.png differ
diff --git a/img-microsoft-64/1f318.png b/img-microsoft-64/1f318.png
new file mode 100644
index 0000000000..9f3fd2ba5b
Binary files /dev/null and b/img-microsoft-64/1f318.png differ
diff --git a/img-microsoft-64/1f319.png b/img-microsoft-64/1f319.png
new file mode 100644
index 0000000000..835ac004fc
Binary files /dev/null and b/img-microsoft-64/1f319.png differ
diff --git a/img-microsoft-64/1f31a.png b/img-microsoft-64/1f31a.png
new file mode 100644
index 0000000000..ef743bf91e
Binary files /dev/null and b/img-microsoft-64/1f31a.png differ
diff --git a/img-microsoft-64/1f31b.png b/img-microsoft-64/1f31b.png
new file mode 100644
index 0000000000..7039df0514
Binary files /dev/null and b/img-microsoft-64/1f31b.png differ
diff --git a/img-microsoft-64/1f31c.png b/img-microsoft-64/1f31c.png
new file mode 100644
index 0000000000..bc2e8628e3
Binary files /dev/null and b/img-microsoft-64/1f31c.png differ
diff --git a/img-microsoft-64/1f31d.png b/img-microsoft-64/1f31d.png
new file mode 100644
index 0000000000..649ecbfd6e
Binary files /dev/null and b/img-microsoft-64/1f31d.png differ
diff --git a/img-microsoft-64/1f31e.png b/img-microsoft-64/1f31e.png
new file mode 100644
index 0000000000..5ad49b80ef
Binary files /dev/null and b/img-microsoft-64/1f31e.png differ
diff --git a/img-microsoft-64/1f31f.png b/img-microsoft-64/1f31f.png
new file mode 100644
index 0000000000..b23364359c
Binary files /dev/null and b/img-microsoft-64/1f31f.png differ
diff --git a/img-microsoft-64/1f320.png b/img-microsoft-64/1f320.png
new file mode 100644
index 0000000000..ca90750866
Binary files /dev/null and b/img-microsoft-64/1f320.png differ
diff --git a/img-microsoft-64/1f321-fe0f.png b/img-microsoft-64/1f321-fe0f.png
new file mode 100644
index 0000000000..53faf6492a
Binary files /dev/null and b/img-microsoft-64/1f321-fe0f.png differ
diff --git a/img-microsoft-64/1f324-fe0f.png b/img-microsoft-64/1f324-fe0f.png
new file mode 100644
index 0000000000..f70aeec33d
Binary files /dev/null and b/img-microsoft-64/1f324-fe0f.png differ
diff --git a/img-microsoft-64/1f325-fe0f.png b/img-microsoft-64/1f325-fe0f.png
new file mode 100644
index 0000000000..6bfb2d1948
Binary files /dev/null and b/img-microsoft-64/1f325-fe0f.png differ
diff --git a/img-microsoft-64/1f326-fe0f.png b/img-microsoft-64/1f326-fe0f.png
new file mode 100644
index 0000000000..90186d666d
Binary files /dev/null and b/img-microsoft-64/1f326-fe0f.png differ
diff --git a/img-microsoft-64/1f327-fe0f.png b/img-microsoft-64/1f327-fe0f.png
new file mode 100644
index 0000000000..557c2a2909
Binary files /dev/null and b/img-microsoft-64/1f327-fe0f.png differ
diff --git a/img-microsoft-64/1f328-fe0f.png b/img-microsoft-64/1f328-fe0f.png
new file mode 100644
index 0000000000..a00708b0b1
Binary files /dev/null and b/img-microsoft-64/1f328-fe0f.png differ
diff --git a/img-microsoft-64/1f329-fe0f.png b/img-microsoft-64/1f329-fe0f.png
new file mode 100644
index 0000000000..4582d0bfb9
Binary files /dev/null and b/img-microsoft-64/1f329-fe0f.png differ
diff --git a/img-microsoft-64/1f32a-fe0f.png b/img-microsoft-64/1f32a-fe0f.png
new file mode 100644
index 0000000000..243555d76b
Binary files /dev/null and b/img-microsoft-64/1f32a-fe0f.png differ
diff --git a/img-microsoft-64/1f32b-fe0f.png b/img-microsoft-64/1f32b-fe0f.png
new file mode 100644
index 0000000000..3904e5a4c1
Binary files /dev/null and b/img-microsoft-64/1f32b-fe0f.png differ
diff --git a/img-microsoft-64/1f32c-fe0f.png b/img-microsoft-64/1f32c-fe0f.png
new file mode 100644
index 0000000000..666beea114
Binary files /dev/null and b/img-microsoft-64/1f32c-fe0f.png differ
diff --git a/img-microsoft-64/1f32d.png b/img-microsoft-64/1f32d.png
new file mode 100644
index 0000000000..d37f19a91b
Binary files /dev/null and b/img-microsoft-64/1f32d.png differ
diff --git a/img-microsoft-64/1f32e.png b/img-microsoft-64/1f32e.png
new file mode 100644
index 0000000000..85b8b8b937
Binary files /dev/null and b/img-microsoft-64/1f32e.png differ
diff --git a/img-microsoft-64/1f32f.png b/img-microsoft-64/1f32f.png
new file mode 100644
index 0000000000..5a6a08cfdb
Binary files /dev/null and b/img-microsoft-64/1f32f.png differ
diff --git a/img-microsoft-64/1f330.png b/img-microsoft-64/1f330.png
new file mode 100644
index 0000000000..15aeb8de5e
Binary files /dev/null and b/img-microsoft-64/1f330.png differ
diff --git a/img-microsoft-64/1f331.png b/img-microsoft-64/1f331.png
new file mode 100644
index 0000000000..b0a07d81c6
Binary files /dev/null and b/img-microsoft-64/1f331.png differ
diff --git a/img-microsoft-64/1f332.png b/img-microsoft-64/1f332.png
new file mode 100644
index 0000000000..72219bd5cb
Binary files /dev/null and b/img-microsoft-64/1f332.png differ
diff --git a/img-microsoft-64/1f333.png b/img-microsoft-64/1f333.png
new file mode 100644
index 0000000000..31babe1593
Binary files /dev/null and b/img-microsoft-64/1f333.png differ
diff --git a/img-microsoft-64/1f334.png b/img-microsoft-64/1f334.png
new file mode 100644
index 0000000000..1b17d96eff
Binary files /dev/null and b/img-microsoft-64/1f334.png differ
diff --git a/img-microsoft-64/1f335.png b/img-microsoft-64/1f335.png
new file mode 100644
index 0000000000..55eb446fe2
Binary files /dev/null and b/img-microsoft-64/1f335.png differ
diff --git a/img-microsoft-64/1f336-fe0f.png b/img-microsoft-64/1f336-fe0f.png
new file mode 100644
index 0000000000..feb6604c2e
Binary files /dev/null and b/img-microsoft-64/1f336-fe0f.png differ
diff --git a/img-microsoft-64/1f337.png b/img-microsoft-64/1f337.png
new file mode 100644
index 0000000000..8bd8463e8f
Binary files /dev/null and b/img-microsoft-64/1f337.png differ
diff --git a/img-microsoft-64/1f338.png b/img-microsoft-64/1f338.png
new file mode 100644
index 0000000000..a9d83ce619
Binary files /dev/null and b/img-microsoft-64/1f338.png differ
diff --git a/img-microsoft-64/1f339.png b/img-microsoft-64/1f339.png
new file mode 100644
index 0000000000..65d01fff03
Binary files /dev/null and b/img-microsoft-64/1f339.png differ
diff --git a/img-microsoft-64/1f33a.png b/img-microsoft-64/1f33a.png
new file mode 100644
index 0000000000..561aab264a
Binary files /dev/null and b/img-microsoft-64/1f33a.png differ
diff --git a/img-microsoft-64/1f33b.png b/img-microsoft-64/1f33b.png
new file mode 100644
index 0000000000..bef142763e
Binary files /dev/null and b/img-microsoft-64/1f33b.png differ
diff --git a/img-microsoft-64/1f33c.png b/img-microsoft-64/1f33c.png
new file mode 100644
index 0000000000..9d33eb8105
Binary files /dev/null and b/img-microsoft-64/1f33c.png differ
diff --git a/img-microsoft-64/1f33d.png b/img-microsoft-64/1f33d.png
new file mode 100644
index 0000000000..6879380ec8
Binary files /dev/null and b/img-microsoft-64/1f33d.png differ
diff --git a/img-microsoft-64/1f33e.png b/img-microsoft-64/1f33e.png
new file mode 100644
index 0000000000..406fb32305
Binary files /dev/null and b/img-microsoft-64/1f33e.png differ
diff --git a/img-microsoft-64/1f33f.png b/img-microsoft-64/1f33f.png
new file mode 100644
index 0000000000..8ca289c317
Binary files /dev/null and b/img-microsoft-64/1f33f.png differ
diff --git a/img-microsoft-64/1f340.png b/img-microsoft-64/1f340.png
new file mode 100644
index 0000000000..9e28c212eb
Binary files /dev/null and b/img-microsoft-64/1f340.png differ
diff --git a/img-microsoft-64/1f341.png b/img-microsoft-64/1f341.png
new file mode 100644
index 0000000000..110914e22b
Binary files /dev/null and b/img-microsoft-64/1f341.png differ
diff --git a/img-microsoft-64/1f342.png b/img-microsoft-64/1f342.png
new file mode 100644
index 0000000000..94f73016a3
Binary files /dev/null and b/img-microsoft-64/1f342.png differ
diff --git a/img-microsoft-64/1f343.png b/img-microsoft-64/1f343.png
new file mode 100644
index 0000000000..58b1836d9f
Binary files /dev/null and b/img-microsoft-64/1f343.png differ
diff --git a/img-microsoft-64/1f344.png b/img-microsoft-64/1f344.png
new file mode 100644
index 0000000000..c9204476fb
Binary files /dev/null and b/img-microsoft-64/1f344.png differ
diff --git a/img-microsoft-64/1f345.png b/img-microsoft-64/1f345.png
new file mode 100644
index 0000000000..7b9f4d0c31
Binary files /dev/null and b/img-microsoft-64/1f345.png differ
diff --git a/img-microsoft-64/1f346.png b/img-microsoft-64/1f346.png
new file mode 100644
index 0000000000..1ffcab2835
Binary files /dev/null and b/img-microsoft-64/1f346.png differ
diff --git a/img-microsoft-64/1f347.png b/img-microsoft-64/1f347.png
new file mode 100644
index 0000000000..00f17f8f79
Binary files /dev/null and b/img-microsoft-64/1f347.png differ
diff --git a/img-microsoft-64/1f348.png b/img-microsoft-64/1f348.png
new file mode 100644
index 0000000000..8cf2a4813f
Binary files /dev/null and b/img-microsoft-64/1f348.png differ
diff --git a/img-microsoft-64/1f349.png b/img-microsoft-64/1f349.png
new file mode 100644
index 0000000000..ca57ac1693
Binary files /dev/null and b/img-microsoft-64/1f349.png differ
diff --git a/img-microsoft-64/1f34a.png b/img-microsoft-64/1f34a.png
new file mode 100644
index 0000000000..6b69ccd48a
Binary files /dev/null and b/img-microsoft-64/1f34a.png differ
diff --git a/img-microsoft-64/1f34b.png b/img-microsoft-64/1f34b.png
new file mode 100644
index 0000000000..27bdede95a
Binary files /dev/null and b/img-microsoft-64/1f34b.png differ
diff --git a/img-microsoft-64/1f34c.png b/img-microsoft-64/1f34c.png
new file mode 100644
index 0000000000..09188cb586
Binary files /dev/null and b/img-microsoft-64/1f34c.png differ
diff --git a/img-microsoft-64/1f34d.png b/img-microsoft-64/1f34d.png
new file mode 100644
index 0000000000..a3e4a3bd20
Binary files /dev/null and b/img-microsoft-64/1f34d.png differ
diff --git a/img-microsoft-64/1f34e.png b/img-microsoft-64/1f34e.png
new file mode 100644
index 0000000000..171efea633
Binary files /dev/null and b/img-microsoft-64/1f34e.png differ
diff --git a/img-microsoft-64/1f34f.png b/img-microsoft-64/1f34f.png
new file mode 100644
index 0000000000..a5f1e5d2e2
Binary files /dev/null and b/img-microsoft-64/1f34f.png differ
diff --git a/img-microsoft-64/1f350.png b/img-microsoft-64/1f350.png
new file mode 100644
index 0000000000..ac874c9ee1
Binary files /dev/null and b/img-microsoft-64/1f350.png differ
diff --git a/img-microsoft-64/1f351.png b/img-microsoft-64/1f351.png
new file mode 100644
index 0000000000..31d49e1824
Binary files /dev/null and b/img-microsoft-64/1f351.png differ
diff --git a/img-microsoft-64/1f352.png b/img-microsoft-64/1f352.png
new file mode 100644
index 0000000000..85b8d82496
Binary files /dev/null and b/img-microsoft-64/1f352.png differ
diff --git a/img-microsoft-64/1f353.png b/img-microsoft-64/1f353.png
new file mode 100644
index 0000000000..330863423a
Binary files /dev/null and b/img-microsoft-64/1f353.png differ
diff --git a/img-microsoft-64/1f354.png b/img-microsoft-64/1f354.png
new file mode 100644
index 0000000000..19b775ba2c
Binary files /dev/null and b/img-microsoft-64/1f354.png differ
diff --git a/img-microsoft-64/1f355.png b/img-microsoft-64/1f355.png
new file mode 100644
index 0000000000..8a8f36ace9
Binary files /dev/null and b/img-microsoft-64/1f355.png differ
diff --git a/img-microsoft-64/1f356.png b/img-microsoft-64/1f356.png
new file mode 100644
index 0000000000..e1e7177529
Binary files /dev/null and b/img-microsoft-64/1f356.png differ
diff --git a/img-microsoft-64/1f357.png b/img-microsoft-64/1f357.png
new file mode 100644
index 0000000000..88fa06979e
Binary files /dev/null and b/img-microsoft-64/1f357.png differ
diff --git a/img-microsoft-64/1f358.png b/img-microsoft-64/1f358.png
new file mode 100644
index 0000000000..e24d554466
Binary files /dev/null and b/img-microsoft-64/1f358.png differ
diff --git a/img-microsoft-64/1f359.png b/img-microsoft-64/1f359.png
new file mode 100644
index 0000000000..c5387216a1
Binary files /dev/null and b/img-microsoft-64/1f359.png differ
diff --git a/img-microsoft-64/1f35a.png b/img-microsoft-64/1f35a.png
new file mode 100644
index 0000000000..0c4f4b998f
Binary files /dev/null and b/img-microsoft-64/1f35a.png differ
diff --git a/img-microsoft-64/1f35b.png b/img-microsoft-64/1f35b.png
new file mode 100644
index 0000000000..8c6962b98c
Binary files /dev/null and b/img-microsoft-64/1f35b.png differ
diff --git a/img-microsoft-64/1f35c.png b/img-microsoft-64/1f35c.png
new file mode 100644
index 0000000000..09e261ac1b
Binary files /dev/null and b/img-microsoft-64/1f35c.png differ
diff --git a/img-microsoft-64/1f35d.png b/img-microsoft-64/1f35d.png
new file mode 100644
index 0000000000..954db7af7f
Binary files /dev/null and b/img-microsoft-64/1f35d.png differ
diff --git a/img-microsoft-64/1f35e.png b/img-microsoft-64/1f35e.png
new file mode 100644
index 0000000000..c9693977dc
Binary files /dev/null and b/img-microsoft-64/1f35e.png differ
diff --git a/img-microsoft-64/1f35f.png b/img-microsoft-64/1f35f.png
new file mode 100644
index 0000000000..debb6fbd30
Binary files /dev/null and b/img-microsoft-64/1f35f.png differ
diff --git a/img-microsoft-64/1f360.png b/img-microsoft-64/1f360.png
new file mode 100644
index 0000000000..8777f54e7b
Binary files /dev/null and b/img-microsoft-64/1f360.png differ
diff --git a/img-microsoft-64/1f361.png b/img-microsoft-64/1f361.png
new file mode 100644
index 0000000000..7ee281a331
Binary files /dev/null and b/img-microsoft-64/1f361.png differ
diff --git a/img-microsoft-64/1f362.png b/img-microsoft-64/1f362.png
new file mode 100644
index 0000000000..c0299325f2
Binary files /dev/null and b/img-microsoft-64/1f362.png differ
diff --git a/img-microsoft-64/1f363.png b/img-microsoft-64/1f363.png
new file mode 100644
index 0000000000..0f317f2479
Binary files /dev/null and b/img-microsoft-64/1f363.png differ
diff --git a/img-microsoft-64/1f364.png b/img-microsoft-64/1f364.png
new file mode 100644
index 0000000000..eb4da2ed2e
Binary files /dev/null and b/img-microsoft-64/1f364.png differ
diff --git a/img-microsoft-64/1f365.png b/img-microsoft-64/1f365.png
new file mode 100644
index 0000000000..1838047fa3
Binary files /dev/null and b/img-microsoft-64/1f365.png differ
diff --git a/img-microsoft-64/1f366.png b/img-microsoft-64/1f366.png
new file mode 100644
index 0000000000..f568db0f11
Binary files /dev/null and b/img-microsoft-64/1f366.png differ
diff --git a/img-microsoft-64/1f367.png b/img-microsoft-64/1f367.png
new file mode 100644
index 0000000000..8e00421827
Binary files /dev/null and b/img-microsoft-64/1f367.png differ
diff --git a/img-microsoft-64/1f368.png b/img-microsoft-64/1f368.png
new file mode 100644
index 0000000000..9635be5cf1
Binary files /dev/null and b/img-microsoft-64/1f368.png differ
diff --git a/img-microsoft-64/1f369.png b/img-microsoft-64/1f369.png
new file mode 100644
index 0000000000..21ebfb38c1
Binary files /dev/null and b/img-microsoft-64/1f369.png differ
diff --git a/img-microsoft-64/1f36a.png b/img-microsoft-64/1f36a.png
new file mode 100644
index 0000000000..03be03ec28
Binary files /dev/null and b/img-microsoft-64/1f36a.png differ
diff --git a/img-microsoft-64/1f36b.png b/img-microsoft-64/1f36b.png
new file mode 100644
index 0000000000..95cf30d220
Binary files /dev/null and b/img-microsoft-64/1f36b.png differ
diff --git a/img-microsoft-64/1f36c.png b/img-microsoft-64/1f36c.png
new file mode 100644
index 0000000000..f2d55413ad
Binary files /dev/null and b/img-microsoft-64/1f36c.png differ
diff --git a/img-microsoft-64/1f36d.png b/img-microsoft-64/1f36d.png
new file mode 100644
index 0000000000..ead7386638
Binary files /dev/null and b/img-microsoft-64/1f36d.png differ
diff --git a/img-microsoft-64/1f36e.png b/img-microsoft-64/1f36e.png
new file mode 100644
index 0000000000..add1222b73
Binary files /dev/null and b/img-microsoft-64/1f36e.png differ
diff --git a/img-microsoft-64/1f36f.png b/img-microsoft-64/1f36f.png
new file mode 100644
index 0000000000..ec3b34c561
Binary files /dev/null and b/img-microsoft-64/1f36f.png differ
diff --git a/img-microsoft-64/1f370.png b/img-microsoft-64/1f370.png
new file mode 100644
index 0000000000..a8137abbbb
Binary files /dev/null and b/img-microsoft-64/1f370.png differ
diff --git a/img-microsoft-64/1f371.png b/img-microsoft-64/1f371.png
new file mode 100644
index 0000000000..d9a44372df
Binary files /dev/null and b/img-microsoft-64/1f371.png differ
diff --git a/img-microsoft-64/1f372.png b/img-microsoft-64/1f372.png
new file mode 100644
index 0000000000..4823574202
Binary files /dev/null and b/img-microsoft-64/1f372.png differ
diff --git a/img-microsoft-64/1f373.png b/img-microsoft-64/1f373.png
new file mode 100644
index 0000000000..22b826a586
Binary files /dev/null and b/img-microsoft-64/1f373.png differ
diff --git a/img-microsoft-64/1f374.png b/img-microsoft-64/1f374.png
new file mode 100644
index 0000000000..0a5dc84a25
Binary files /dev/null and b/img-microsoft-64/1f374.png differ
diff --git a/img-microsoft-64/1f375.png b/img-microsoft-64/1f375.png
new file mode 100644
index 0000000000..947bdcfc12
Binary files /dev/null and b/img-microsoft-64/1f375.png differ
diff --git a/img-microsoft-64/1f376.png b/img-microsoft-64/1f376.png
new file mode 100644
index 0000000000..6f6046491e
Binary files /dev/null and b/img-microsoft-64/1f376.png differ
diff --git a/img-microsoft-64/1f377.png b/img-microsoft-64/1f377.png
new file mode 100644
index 0000000000..aafb5b3526
Binary files /dev/null and b/img-microsoft-64/1f377.png differ
diff --git a/img-microsoft-64/1f378.png b/img-microsoft-64/1f378.png
new file mode 100644
index 0000000000..092ac14c3b
Binary files /dev/null and b/img-microsoft-64/1f378.png differ
diff --git a/img-microsoft-64/1f379.png b/img-microsoft-64/1f379.png
new file mode 100644
index 0000000000..51e82e206a
Binary files /dev/null and b/img-microsoft-64/1f379.png differ
diff --git a/img-microsoft-64/1f37a.png b/img-microsoft-64/1f37a.png
new file mode 100644
index 0000000000..6f81de073d
Binary files /dev/null and b/img-microsoft-64/1f37a.png differ
diff --git a/img-microsoft-64/1f37b.png b/img-microsoft-64/1f37b.png
new file mode 100644
index 0000000000..872f896583
Binary files /dev/null and b/img-microsoft-64/1f37b.png differ
diff --git a/img-microsoft-64/1f37c.png b/img-microsoft-64/1f37c.png
new file mode 100644
index 0000000000..153dc4ffdb
Binary files /dev/null and b/img-microsoft-64/1f37c.png differ
diff --git a/img-microsoft-64/1f37d-fe0f.png b/img-microsoft-64/1f37d-fe0f.png
new file mode 100644
index 0000000000..07e80561df
Binary files /dev/null and b/img-microsoft-64/1f37d-fe0f.png differ
diff --git a/img-microsoft-64/1f37e.png b/img-microsoft-64/1f37e.png
new file mode 100644
index 0000000000..b67987732f
Binary files /dev/null and b/img-microsoft-64/1f37e.png differ
diff --git a/img-microsoft-64/1f37f.png b/img-microsoft-64/1f37f.png
new file mode 100644
index 0000000000..be0676b6ee
Binary files /dev/null and b/img-microsoft-64/1f37f.png differ
diff --git a/img-microsoft-64/1f380.png b/img-microsoft-64/1f380.png
new file mode 100644
index 0000000000..26a6a92c3b
Binary files /dev/null and b/img-microsoft-64/1f380.png differ
diff --git a/img-microsoft-64/1f381.png b/img-microsoft-64/1f381.png
new file mode 100644
index 0000000000..09d100caf4
Binary files /dev/null and b/img-microsoft-64/1f381.png differ
diff --git a/img-microsoft-64/1f382.png b/img-microsoft-64/1f382.png
new file mode 100644
index 0000000000..cb1b48be14
Binary files /dev/null and b/img-microsoft-64/1f382.png differ
diff --git a/img-microsoft-64/1f383.png b/img-microsoft-64/1f383.png
new file mode 100644
index 0000000000..c56ec43344
Binary files /dev/null and b/img-microsoft-64/1f383.png differ
diff --git a/img-microsoft-64/1f384.png b/img-microsoft-64/1f384.png
new file mode 100644
index 0000000000..fa2b940105
Binary files /dev/null and b/img-microsoft-64/1f384.png differ
diff --git a/img-microsoft-64/1f385-1f3fb.png b/img-microsoft-64/1f385-1f3fb.png
new file mode 100644
index 0000000000..d5a2751876
Binary files /dev/null and b/img-microsoft-64/1f385-1f3fb.png differ
diff --git a/img-microsoft-64/1f385-1f3fc.png b/img-microsoft-64/1f385-1f3fc.png
new file mode 100644
index 0000000000..020960debf
Binary files /dev/null and b/img-microsoft-64/1f385-1f3fc.png differ
diff --git a/img-microsoft-64/1f385-1f3fd.png b/img-microsoft-64/1f385-1f3fd.png
new file mode 100644
index 0000000000..2c76252da6
Binary files /dev/null and b/img-microsoft-64/1f385-1f3fd.png differ
diff --git a/img-microsoft-64/1f385-1f3fe.png b/img-microsoft-64/1f385-1f3fe.png
new file mode 100644
index 0000000000..ed5e439fed
Binary files /dev/null and b/img-microsoft-64/1f385-1f3fe.png differ
diff --git a/img-microsoft-64/1f385-1f3ff.png b/img-microsoft-64/1f385-1f3ff.png
new file mode 100644
index 0000000000..20a7802274
Binary files /dev/null and b/img-microsoft-64/1f385-1f3ff.png differ
diff --git a/img-microsoft-64/1f385.png b/img-microsoft-64/1f385.png
new file mode 100644
index 0000000000..ef020beb09
Binary files /dev/null and b/img-microsoft-64/1f385.png differ
diff --git a/img-microsoft-64/1f386.png b/img-microsoft-64/1f386.png
new file mode 100644
index 0000000000..9ab3378cc7
Binary files /dev/null and b/img-microsoft-64/1f386.png differ
diff --git a/img-microsoft-64/1f387.png b/img-microsoft-64/1f387.png
new file mode 100644
index 0000000000..04cd555fad
Binary files /dev/null and b/img-microsoft-64/1f387.png differ
diff --git a/img-microsoft-64/1f388.png b/img-microsoft-64/1f388.png
new file mode 100644
index 0000000000..8fa9a66d74
Binary files /dev/null and b/img-microsoft-64/1f388.png differ
diff --git a/img-microsoft-64/1f389.png b/img-microsoft-64/1f389.png
new file mode 100644
index 0000000000..82abcbc7ff
Binary files /dev/null and b/img-microsoft-64/1f389.png differ
diff --git a/img-microsoft-64/1f38a.png b/img-microsoft-64/1f38a.png
new file mode 100644
index 0000000000..1d172c5f3a
Binary files /dev/null and b/img-microsoft-64/1f38a.png differ
diff --git a/img-microsoft-64/1f38b.png b/img-microsoft-64/1f38b.png
new file mode 100644
index 0000000000..30f4d17efe
Binary files /dev/null and b/img-microsoft-64/1f38b.png differ
diff --git a/img-microsoft-64/1f38c.png b/img-microsoft-64/1f38c.png
new file mode 100644
index 0000000000..fdf8c06476
Binary files /dev/null and b/img-microsoft-64/1f38c.png differ
diff --git a/img-microsoft-64/1f38d.png b/img-microsoft-64/1f38d.png
new file mode 100644
index 0000000000..55e43c5bc3
Binary files /dev/null and b/img-microsoft-64/1f38d.png differ
diff --git a/img-microsoft-64/1f38e.png b/img-microsoft-64/1f38e.png
new file mode 100644
index 0000000000..06f4b00ffc
Binary files /dev/null and b/img-microsoft-64/1f38e.png differ
diff --git a/img-microsoft-64/1f38f.png b/img-microsoft-64/1f38f.png
new file mode 100644
index 0000000000..6a6ae12e8a
Binary files /dev/null and b/img-microsoft-64/1f38f.png differ
diff --git a/img-microsoft-64/1f390.png b/img-microsoft-64/1f390.png
new file mode 100644
index 0000000000..ce014a6951
Binary files /dev/null and b/img-microsoft-64/1f390.png differ
diff --git a/img-microsoft-64/1f391.png b/img-microsoft-64/1f391.png
new file mode 100644
index 0000000000..00f6735876
Binary files /dev/null and b/img-microsoft-64/1f391.png differ
diff --git a/img-microsoft-64/1f392.png b/img-microsoft-64/1f392.png
new file mode 100644
index 0000000000..5b3630f6a3
Binary files /dev/null and b/img-microsoft-64/1f392.png differ
diff --git a/img-microsoft-64/1f393.png b/img-microsoft-64/1f393.png
new file mode 100644
index 0000000000..6cfa5d9368
Binary files /dev/null and b/img-microsoft-64/1f393.png differ
diff --git a/img-microsoft-64/1f396-fe0f.png b/img-microsoft-64/1f396-fe0f.png
new file mode 100644
index 0000000000..1df300b638
Binary files /dev/null and b/img-microsoft-64/1f396-fe0f.png differ
diff --git a/img-microsoft-64/1f397-fe0f.png b/img-microsoft-64/1f397-fe0f.png
new file mode 100644
index 0000000000..c10cad09a6
Binary files /dev/null and b/img-microsoft-64/1f397-fe0f.png differ
diff --git a/img-microsoft-64/1f399-fe0f.png b/img-microsoft-64/1f399-fe0f.png
new file mode 100644
index 0000000000..c022bcae0c
Binary files /dev/null and b/img-microsoft-64/1f399-fe0f.png differ
diff --git a/img-microsoft-64/1f39a-fe0f.png b/img-microsoft-64/1f39a-fe0f.png
new file mode 100644
index 0000000000..3df0c8da76
Binary files /dev/null and b/img-microsoft-64/1f39a-fe0f.png differ
diff --git a/img-microsoft-64/1f39b-fe0f.png b/img-microsoft-64/1f39b-fe0f.png
new file mode 100644
index 0000000000..321b671eb8
Binary files /dev/null and b/img-microsoft-64/1f39b-fe0f.png differ
diff --git a/img-microsoft-64/1f39e-fe0f.png b/img-microsoft-64/1f39e-fe0f.png
new file mode 100644
index 0000000000..fefd5ba1dc
Binary files /dev/null and b/img-microsoft-64/1f39e-fe0f.png differ
diff --git a/img-microsoft-64/1f39f-fe0f.png b/img-microsoft-64/1f39f-fe0f.png
new file mode 100644
index 0000000000..003ba41c96
Binary files /dev/null and b/img-microsoft-64/1f39f-fe0f.png differ
diff --git a/img-microsoft-64/1f3a0.png b/img-microsoft-64/1f3a0.png
new file mode 100644
index 0000000000..8bc2f22f12
Binary files /dev/null and b/img-microsoft-64/1f3a0.png differ
diff --git a/img-microsoft-64/1f3a1.png b/img-microsoft-64/1f3a1.png
new file mode 100644
index 0000000000..d0cacda7bd
Binary files /dev/null and b/img-microsoft-64/1f3a1.png differ
diff --git a/img-microsoft-64/1f3a2.png b/img-microsoft-64/1f3a2.png
new file mode 100644
index 0000000000..f9082877d3
Binary files /dev/null and b/img-microsoft-64/1f3a2.png differ
diff --git a/img-microsoft-64/1f3a3.png b/img-microsoft-64/1f3a3.png
new file mode 100644
index 0000000000..2fbbc083ae
Binary files /dev/null and b/img-microsoft-64/1f3a3.png differ
diff --git a/img-microsoft-64/1f3a4.png b/img-microsoft-64/1f3a4.png
new file mode 100644
index 0000000000..e75c2ff0e5
Binary files /dev/null and b/img-microsoft-64/1f3a4.png differ
diff --git a/img-microsoft-64/1f3a5.png b/img-microsoft-64/1f3a5.png
new file mode 100644
index 0000000000..8f69153f96
Binary files /dev/null and b/img-microsoft-64/1f3a5.png differ
diff --git a/img-microsoft-64/1f3a6.png b/img-microsoft-64/1f3a6.png
new file mode 100644
index 0000000000..5f0a26f367
Binary files /dev/null and b/img-microsoft-64/1f3a6.png differ
diff --git a/img-microsoft-64/1f3a7.png b/img-microsoft-64/1f3a7.png
new file mode 100644
index 0000000000..b67cd518aa
Binary files /dev/null and b/img-microsoft-64/1f3a7.png differ
diff --git a/img-microsoft-64/1f3a8.png b/img-microsoft-64/1f3a8.png
new file mode 100644
index 0000000000..d13a37e94f
Binary files /dev/null and b/img-microsoft-64/1f3a8.png differ
diff --git a/img-microsoft-64/1f3a9.png b/img-microsoft-64/1f3a9.png
new file mode 100644
index 0000000000..b759c4434e
Binary files /dev/null and b/img-microsoft-64/1f3a9.png differ
diff --git a/img-microsoft-64/1f3aa.png b/img-microsoft-64/1f3aa.png
new file mode 100644
index 0000000000..88428c17bc
Binary files /dev/null and b/img-microsoft-64/1f3aa.png differ
diff --git a/img-microsoft-64/1f3ab.png b/img-microsoft-64/1f3ab.png
new file mode 100644
index 0000000000..23ae693879
Binary files /dev/null and b/img-microsoft-64/1f3ab.png differ
diff --git a/img-microsoft-64/1f3ac.png b/img-microsoft-64/1f3ac.png
new file mode 100644
index 0000000000..2c79d92ecb
Binary files /dev/null and b/img-microsoft-64/1f3ac.png differ
diff --git a/img-microsoft-64/1f3ad.png b/img-microsoft-64/1f3ad.png
new file mode 100644
index 0000000000..2b3efcc6de
Binary files /dev/null and b/img-microsoft-64/1f3ad.png differ
diff --git a/img-microsoft-64/1f3af.png b/img-microsoft-64/1f3af.png
new file mode 100644
index 0000000000..9936e4d6a3
Binary files /dev/null and b/img-microsoft-64/1f3af.png differ
diff --git a/img-microsoft-64/1f3b0.png b/img-microsoft-64/1f3b0.png
new file mode 100644
index 0000000000..53f9804816
Binary files /dev/null and b/img-microsoft-64/1f3b0.png differ
diff --git a/img-microsoft-64/1f3b1.png b/img-microsoft-64/1f3b1.png
new file mode 100644
index 0000000000..319768c2d9
Binary files /dev/null and b/img-microsoft-64/1f3b1.png differ
diff --git a/img-microsoft-64/1f3b2.png b/img-microsoft-64/1f3b2.png
new file mode 100644
index 0000000000..936f503ed9
Binary files /dev/null and b/img-microsoft-64/1f3b2.png differ
diff --git a/img-microsoft-64/1f3b3.png b/img-microsoft-64/1f3b3.png
new file mode 100644
index 0000000000..4c7448d41d
Binary files /dev/null and b/img-microsoft-64/1f3b3.png differ
diff --git a/img-microsoft-64/1f3b4.png b/img-microsoft-64/1f3b4.png
new file mode 100644
index 0000000000..a72b3047c0
Binary files /dev/null and b/img-microsoft-64/1f3b4.png differ
diff --git a/img-microsoft-64/1f3b5.png b/img-microsoft-64/1f3b5.png
new file mode 100644
index 0000000000..ba38de851f
Binary files /dev/null and b/img-microsoft-64/1f3b5.png differ
diff --git a/img-microsoft-64/1f3b6.png b/img-microsoft-64/1f3b6.png
new file mode 100644
index 0000000000..cc61516d2e
Binary files /dev/null and b/img-microsoft-64/1f3b6.png differ
diff --git a/img-microsoft-64/1f3b7.png b/img-microsoft-64/1f3b7.png
new file mode 100644
index 0000000000..8fde62c4f1
Binary files /dev/null and b/img-microsoft-64/1f3b7.png differ
diff --git a/img-microsoft-64/1f3b8.png b/img-microsoft-64/1f3b8.png
new file mode 100644
index 0000000000..fdf7745bc0
Binary files /dev/null and b/img-microsoft-64/1f3b8.png differ
diff --git a/img-microsoft-64/1f3b9.png b/img-microsoft-64/1f3b9.png
new file mode 100644
index 0000000000..d14ef5e152
Binary files /dev/null and b/img-microsoft-64/1f3b9.png differ
diff --git a/img-microsoft-64/1f3ba.png b/img-microsoft-64/1f3ba.png
new file mode 100644
index 0000000000..f9fd523ad4
Binary files /dev/null and b/img-microsoft-64/1f3ba.png differ
diff --git a/img-microsoft-64/1f3bb.png b/img-microsoft-64/1f3bb.png
new file mode 100644
index 0000000000..6f8c0d1d9f
Binary files /dev/null and b/img-microsoft-64/1f3bb.png differ
diff --git a/img-microsoft-64/1f3bc.png b/img-microsoft-64/1f3bc.png
new file mode 100644
index 0000000000..e654c0be20
Binary files /dev/null and b/img-microsoft-64/1f3bc.png differ
diff --git a/img-microsoft-64/1f3bd.png b/img-microsoft-64/1f3bd.png
new file mode 100644
index 0000000000..72ceae9a9a
Binary files /dev/null and b/img-microsoft-64/1f3bd.png differ
diff --git a/img-microsoft-64/1f3be.png b/img-microsoft-64/1f3be.png
new file mode 100644
index 0000000000..f989538fd3
Binary files /dev/null and b/img-microsoft-64/1f3be.png differ
diff --git a/img-microsoft-64/1f3bf.png b/img-microsoft-64/1f3bf.png
new file mode 100644
index 0000000000..f1effb6613
Binary files /dev/null and b/img-microsoft-64/1f3bf.png differ
diff --git a/img-microsoft-64/1f3c0.png b/img-microsoft-64/1f3c0.png
new file mode 100644
index 0000000000..a824298b32
Binary files /dev/null and b/img-microsoft-64/1f3c0.png differ
diff --git a/img-microsoft-64/1f3c1.png b/img-microsoft-64/1f3c1.png
new file mode 100644
index 0000000000..f1d972c2c1
Binary files /dev/null and b/img-microsoft-64/1f3c1.png differ
diff --git a/img-microsoft-64/1f3c2-1f3fb.png b/img-microsoft-64/1f3c2-1f3fb.png
new file mode 100644
index 0000000000..9b9bdf7fa0
Binary files /dev/null and b/img-microsoft-64/1f3c2-1f3fb.png differ
diff --git a/img-microsoft-64/1f3c2-1f3fc.png b/img-microsoft-64/1f3c2-1f3fc.png
new file mode 100644
index 0000000000..09debefc53
Binary files /dev/null and b/img-microsoft-64/1f3c2-1f3fc.png differ
diff --git a/img-microsoft-64/1f3c2-1f3fd.png b/img-microsoft-64/1f3c2-1f3fd.png
new file mode 100644
index 0000000000..b7179fd819
Binary files /dev/null and b/img-microsoft-64/1f3c2-1f3fd.png differ
diff --git a/img-microsoft-64/1f3c2-1f3fe.png b/img-microsoft-64/1f3c2-1f3fe.png
new file mode 100644
index 0000000000..513e1b1e5c
Binary files /dev/null and b/img-microsoft-64/1f3c2-1f3fe.png differ
diff --git a/img-microsoft-64/1f3c2-1f3ff.png b/img-microsoft-64/1f3c2-1f3ff.png
new file mode 100644
index 0000000000..2f03b8dd0c
Binary files /dev/null and b/img-microsoft-64/1f3c2-1f3ff.png differ
diff --git a/img-microsoft-64/1f3c2.png b/img-microsoft-64/1f3c2.png
new file mode 100644
index 0000000000..cc4bcf1548
Binary files /dev/null and b/img-microsoft-64/1f3c2.png differ
diff --git a/img-microsoft-64/1f3c3-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f3c3-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..c7bc565d7c
Binary files /dev/null and b/img-microsoft-64/1f3c3-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3c3-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f3c3-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..5a4c6b0d5e
Binary files /dev/null and b/img-microsoft-64/1f3c3-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3c3-1f3fb.png b/img-microsoft-64/1f3c3-1f3fb.png
new file mode 100644
index 0000000000..ca8dad8c8e
Binary files /dev/null and b/img-microsoft-64/1f3c3-1f3fb.png differ
diff --git a/img-microsoft-64/1f3c3-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f3c3-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..ab8bd94ab4
Binary files /dev/null and b/img-microsoft-64/1f3c3-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3c3-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f3c3-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..454d677831
Binary files /dev/null and b/img-microsoft-64/1f3c3-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3c3-1f3fc.png b/img-microsoft-64/1f3c3-1f3fc.png
new file mode 100644
index 0000000000..cc82d33d25
Binary files /dev/null and b/img-microsoft-64/1f3c3-1f3fc.png differ
diff --git a/img-microsoft-64/1f3c3-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f3c3-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..594f5e69c3
Binary files /dev/null and b/img-microsoft-64/1f3c3-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3c3-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f3c3-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..0715719540
Binary files /dev/null and b/img-microsoft-64/1f3c3-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3c3-1f3fd.png b/img-microsoft-64/1f3c3-1f3fd.png
new file mode 100644
index 0000000000..44ff7560ab
Binary files /dev/null and b/img-microsoft-64/1f3c3-1f3fd.png differ
diff --git a/img-microsoft-64/1f3c3-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f3c3-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..b6f9327f5b
Binary files /dev/null and b/img-microsoft-64/1f3c3-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3c3-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f3c3-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..28dd3a5f86
Binary files /dev/null and b/img-microsoft-64/1f3c3-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3c3-1f3fe.png b/img-microsoft-64/1f3c3-1f3fe.png
new file mode 100644
index 0000000000..b0e763110c
Binary files /dev/null and b/img-microsoft-64/1f3c3-1f3fe.png differ
diff --git a/img-microsoft-64/1f3c3-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f3c3-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..7c5d60a640
Binary files /dev/null and b/img-microsoft-64/1f3c3-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3c3-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f3c3-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a3a0470220
Binary files /dev/null and b/img-microsoft-64/1f3c3-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3c3-1f3ff.png b/img-microsoft-64/1f3c3-1f3ff.png
new file mode 100644
index 0000000000..622d9665a7
Binary files /dev/null and b/img-microsoft-64/1f3c3-1f3ff.png differ
diff --git a/img-microsoft-64/1f3c3-200d-2640-fe0f.png b/img-microsoft-64/1f3c3-200d-2640-fe0f.png
new file mode 100644
index 0000000000..9d3f1de94d
Binary files /dev/null and b/img-microsoft-64/1f3c3-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3c3-200d-2642-fe0f.png b/img-microsoft-64/1f3c3-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d13376c8ca
Binary files /dev/null and b/img-microsoft-64/1f3c3-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3c3.png b/img-microsoft-64/1f3c3.png
new file mode 100644
index 0000000000..4a9f8e8ad1
Binary files /dev/null and b/img-microsoft-64/1f3c3.png differ
diff --git a/img-microsoft-64/1f3c4-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f3c4-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..91972f32a5
Binary files /dev/null and b/img-microsoft-64/1f3c4-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3c4-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f3c4-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a1dc7fa80e
Binary files /dev/null and b/img-microsoft-64/1f3c4-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3c4-1f3fb.png b/img-microsoft-64/1f3c4-1f3fb.png
new file mode 100644
index 0000000000..724f009fdd
Binary files /dev/null and b/img-microsoft-64/1f3c4-1f3fb.png differ
diff --git a/img-microsoft-64/1f3c4-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f3c4-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..d7b31a8fde
Binary files /dev/null and b/img-microsoft-64/1f3c4-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3c4-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f3c4-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e151019155
Binary files /dev/null and b/img-microsoft-64/1f3c4-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3c4-1f3fc.png b/img-microsoft-64/1f3c4-1f3fc.png
new file mode 100644
index 0000000000..7af68f858b
Binary files /dev/null and b/img-microsoft-64/1f3c4-1f3fc.png differ
diff --git a/img-microsoft-64/1f3c4-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f3c4-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..02942406b6
Binary files /dev/null and b/img-microsoft-64/1f3c4-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3c4-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f3c4-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..c773c7a58a
Binary files /dev/null and b/img-microsoft-64/1f3c4-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3c4-1f3fd.png b/img-microsoft-64/1f3c4-1f3fd.png
new file mode 100644
index 0000000000..8d93a7307c
Binary files /dev/null and b/img-microsoft-64/1f3c4-1f3fd.png differ
diff --git a/img-microsoft-64/1f3c4-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f3c4-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..7f20f5f2e9
Binary files /dev/null and b/img-microsoft-64/1f3c4-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3c4-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f3c4-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..db88e8d4ba
Binary files /dev/null and b/img-microsoft-64/1f3c4-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3c4-1f3fe.png b/img-microsoft-64/1f3c4-1f3fe.png
new file mode 100644
index 0000000000..de2265941e
Binary files /dev/null and b/img-microsoft-64/1f3c4-1f3fe.png differ
diff --git a/img-microsoft-64/1f3c4-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f3c4-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..6c22397297
Binary files /dev/null and b/img-microsoft-64/1f3c4-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3c4-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f3c4-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..1ae01cf998
Binary files /dev/null and b/img-microsoft-64/1f3c4-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3c4-1f3ff.png b/img-microsoft-64/1f3c4-1f3ff.png
new file mode 100644
index 0000000000..1dd0cbee97
Binary files /dev/null and b/img-microsoft-64/1f3c4-1f3ff.png differ
diff --git a/img-microsoft-64/1f3c4-200d-2640-fe0f.png b/img-microsoft-64/1f3c4-200d-2640-fe0f.png
new file mode 100644
index 0000000000..abe2600439
Binary files /dev/null and b/img-microsoft-64/1f3c4-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3c4-200d-2642-fe0f.png b/img-microsoft-64/1f3c4-200d-2642-fe0f.png
new file mode 100644
index 0000000000..7ce426058e
Binary files /dev/null and b/img-microsoft-64/1f3c4-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3c4.png b/img-microsoft-64/1f3c4.png
new file mode 100644
index 0000000000..039887633b
Binary files /dev/null and b/img-microsoft-64/1f3c4.png differ
diff --git a/img-microsoft-64/1f3c5.png b/img-microsoft-64/1f3c5.png
new file mode 100644
index 0000000000..5356198b99
Binary files /dev/null and b/img-microsoft-64/1f3c5.png differ
diff --git a/img-microsoft-64/1f3c6.png b/img-microsoft-64/1f3c6.png
new file mode 100644
index 0000000000..499845d789
Binary files /dev/null and b/img-microsoft-64/1f3c6.png differ
diff --git a/img-microsoft-64/1f3c7-1f3fb.png b/img-microsoft-64/1f3c7-1f3fb.png
new file mode 100644
index 0000000000..8cb31e9b5e
Binary files /dev/null and b/img-microsoft-64/1f3c7-1f3fb.png differ
diff --git a/img-microsoft-64/1f3c7-1f3fc.png b/img-microsoft-64/1f3c7-1f3fc.png
new file mode 100644
index 0000000000..a6bdca88e8
Binary files /dev/null and b/img-microsoft-64/1f3c7-1f3fc.png differ
diff --git a/img-microsoft-64/1f3c7-1f3fd.png b/img-microsoft-64/1f3c7-1f3fd.png
new file mode 100644
index 0000000000..1cff7e03fc
Binary files /dev/null and b/img-microsoft-64/1f3c7-1f3fd.png differ
diff --git a/img-microsoft-64/1f3c7-1f3fe.png b/img-microsoft-64/1f3c7-1f3fe.png
new file mode 100644
index 0000000000..b17c1d2d1e
Binary files /dev/null and b/img-microsoft-64/1f3c7-1f3fe.png differ
diff --git a/img-microsoft-64/1f3c7-1f3ff.png b/img-microsoft-64/1f3c7-1f3ff.png
new file mode 100644
index 0000000000..1f1b179f0c
Binary files /dev/null and b/img-microsoft-64/1f3c7-1f3ff.png differ
diff --git a/img-microsoft-64/1f3c7.png b/img-microsoft-64/1f3c7.png
new file mode 100644
index 0000000000..2a46bca53a
Binary files /dev/null and b/img-microsoft-64/1f3c7.png differ
diff --git a/img-microsoft-64/1f3c8.png b/img-microsoft-64/1f3c8.png
new file mode 100644
index 0000000000..c11595e186
Binary files /dev/null and b/img-microsoft-64/1f3c8.png differ
diff --git a/img-microsoft-64/1f3c9.png b/img-microsoft-64/1f3c9.png
new file mode 100644
index 0000000000..e7f6a3bfe4
Binary files /dev/null and b/img-microsoft-64/1f3c9.png differ
diff --git a/img-microsoft-64/1f3ca-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f3ca-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..a4f312c8b1
Binary files /dev/null and b/img-microsoft-64/1f3ca-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3ca-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f3ca-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..fe9d02b5f5
Binary files /dev/null and b/img-microsoft-64/1f3ca-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3ca-1f3fb.png b/img-microsoft-64/1f3ca-1f3fb.png
new file mode 100644
index 0000000000..ac305a2b85
Binary files /dev/null and b/img-microsoft-64/1f3ca-1f3fb.png differ
diff --git a/img-microsoft-64/1f3ca-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f3ca-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..e216557f47
Binary files /dev/null and b/img-microsoft-64/1f3ca-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3ca-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f3ca-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..31d1ea0b04
Binary files /dev/null and b/img-microsoft-64/1f3ca-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3ca-1f3fc.png b/img-microsoft-64/1f3ca-1f3fc.png
new file mode 100644
index 0000000000..5b8ed8182f
Binary files /dev/null and b/img-microsoft-64/1f3ca-1f3fc.png differ
diff --git a/img-microsoft-64/1f3ca-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f3ca-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..43c821c52a
Binary files /dev/null and b/img-microsoft-64/1f3ca-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3ca-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f3ca-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..ea4c858822
Binary files /dev/null and b/img-microsoft-64/1f3ca-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3ca-1f3fd.png b/img-microsoft-64/1f3ca-1f3fd.png
new file mode 100644
index 0000000000..2bed0eaa67
Binary files /dev/null and b/img-microsoft-64/1f3ca-1f3fd.png differ
diff --git a/img-microsoft-64/1f3ca-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f3ca-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..0c2a30a1a5
Binary files /dev/null and b/img-microsoft-64/1f3ca-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3ca-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f3ca-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d7aeca2174
Binary files /dev/null and b/img-microsoft-64/1f3ca-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3ca-1f3fe.png b/img-microsoft-64/1f3ca-1f3fe.png
new file mode 100644
index 0000000000..507c5160ad
Binary files /dev/null and b/img-microsoft-64/1f3ca-1f3fe.png differ
diff --git a/img-microsoft-64/1f3ca-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f3ca-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..8f6a44b485
Binary files /dev/null and b/img-microsoft-64/1f3ca-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3ca-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f3ca-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..48ace438d4
Binary files /dev/null and b/img-microsoft-64/1f3ca-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3ca-1f3ff.png b/img-microsoft-64/1f3ca-1f3ff.png
new file mode 100644
index 0000000000..a1a615aef8
Binary files /dev/null and b/img-microsoft-64/1f3ca-1f3ff.png differ
diff --git a/img-microsoft-64/1f3ca-200d-2640-fe0f.png b/img-microsoft-64/1f3ca-200d-2640-fe0f.png
new file mode 100644
index 0000000000..85b882da4b
Binary files /dev/null and b/img-microsoft-64/1f3ca-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3ca-200d-2642-fe0f.png b/img-microsoft-64/1f3ca-200d-2642-fe0f.png
new file mode 100644
index 0000000000..486f79eb40
Binary files /dev/null and b/img-microsoft-64/1f3ca-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3ca.png b/img-microsoft-64/1f3ca.png
new file mode 100644
index 0000000000..cb664408b4
Binary files /dev/null and b/img-microsoft-64/1f3ca.png differ
diff --git a/img-microsoft-64/1f3cb-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f3cb-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..be9dc18fd0
Binary files /dev/null and b/img-microsoft-64/1f3cb-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3cb-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f3cb-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e17a95159f
Binary files /dev/null and b/img-microsoft-64/1f3cb-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3cb-1f3fb.png b/img-microsoft-64/1f3cb-1f3fb.png
new file mode 100644
index 0000000000..225d460613
Binary files /dev/null and b/img-microsoft-64/1f3cb-1f3fb.png differ
diff --git a/img-microsoft-64/1f3cb-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f3cb-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..f897cb3e28
Binary files /dev/null and b/img-microsoft-64/1f3cb-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3cb-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f3cb-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e8ed219f1e
Binary files /dev/null and b/img-microsoft-64/1f3cb-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3cb-1f3fc.png b/img-microsoft-64/1f3cb-1f3fc.png
new file mode 100644
index 0000000000..f9a04371f2
Binary files /dev/null and b/img-microsoft-64/1f3cb-1f3fc.png differ
diff --git a/img-microsoft-64/1f3cb-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f3cb-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..67521f1ced
Binary files /dev/null and b/img-microsoft-64/1f3cb-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3cb-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f3cb-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..3f5f12dcd3
Binary files /dev/null and b/img-microsoft-64/1f3cb-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3cb-1f3fd.png b/img-microsoft-64/1f3cb-1f3fd.png
new file mode 100644
index 0000000000..2d4941ec89
Binary files /dev/null and b/img-microsoft-64/1f3cb-1f3fd.png differ
diff --git a/img-microsoft-64/1f3cb-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f3cb-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..fd1ae87e0f
Binary files /dev/null and b/img-microsoft-64/1f3cb-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3cb-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f3cb-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..aa16d70a9f
Binary files /dev/null and b/img-microsoft-64/1f3cb-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3cb-1f3fe.png b/img-microsoft-64/1f3cb-1f3fe.png
new file mode 100644
index 0000000000..20650333cb
Binary files /dev/null and b/img-microsoft-64/1f3cb-1f3fe.png differ
diff --git a/img-microsoft-64/1f3cb-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f3cb-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..8ef9cd9a47
Binary files /dev/null and b/img-microsoft-64/1f3cb-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3cb-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f3cb-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a2e8143367
Binary files /dev/null and b/img-microsoft-64/1f3cb-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3cb-1f3ff.png b/img-microsoft-64/1f3cb-1f3ff.png
new file mode 100644
index 0000000000..b9bb5e3d8d
Binary files /dev/null and b/img-microsoft-64/1f3cb-1f3ff.png differ
diff --git a/img-microsoft-64/1f3cb-fe0f-200d-2640-fe0f.png b/img-microsoft-64/1f3cb-fe0f-200d-2640-fe0f.png
new file mode 100644
index 0000000000..22b6c53ef3
Binary files /dev/null and b/img-microsoft-64/1f3cb-fe0f-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3cb-fe0f-200d-2642-fe0f.png b/img-microsoft-64/1f3cb-fe0f-200d-2642-fe0f.png
new file mode 100644
index 0000000000..16b5f3138c
Binary files /dev/null and b/img-microsoft-64/1f3cb-fe0f-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3cb-fe0f.png b/img-microsoft-64/1f3cb-fe0f.png
new file mode 100644
index 0000000000..9d5a562e5b
Binary files /dev/null and b/img-microsoft-64/1f3cb-fe0f.png differ
diff --git a/img-microsoft-64/1f3cc-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f3cc-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..bd594c9474
Binary files /dev/null and b/img-microsoft-64/1f3cc-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3cc-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f3cc-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d76fd6bbc1
Binary files /dev/null and b/img-microsoft-64/1f3cc-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3cc-1f3fb.png b/img-microsoft-64/1f3cc-1f3fb.png
new file mode 100644
index 0000000000..47a4bb9b22
Binary files /dev/null and b/img-microsoft-64/1f3cc-1f3fb.png differ
diff --git a/img-microsoft-64/1f3cc-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f3cc-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..10e159a4c2
Binary files /dev/null and b/img-microsoft-64/1f3cc-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3cc-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f3cc-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d083ee8550
Binary files /dev/null and b/img-microsoft-64/1f3cc-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3cc-1f3fc.png b/img-microsoft-64/1f3cc-1f3fc.png
new file mode 100644
index 0000000000..9d5a9c649e
Binary files /dev/null and b/img-microsoft-64/1f3cc-1f3fc.png differ
diff --git a/img-microsoft-64/1f3cc-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f3cc-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..2ce7b071ba
Binary files /dev/null and b/img-microsoft-64/1f3cc-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3cc-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f3cc-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..b0216fa79f
Binary files /dev/null and b/img-microsoft-64/1f3cc-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3cc-1f3fd.png b/img-microsoft-64/1f3cc-1f3fd.png
new file mode 100644
index 0000000000..1da66c56d8
Binary files /dev/null and b/img-microsoft-64/1f3cc-1f3fd.png differ
diff --git a/img-microsoft-64/1f3cc-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f3cc-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..81957cc00d
Binary files /dev/null and b/img-microsoft-64/1f3cc-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3cc-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f3cc-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..7323a91924
Binary files /dev/null and b/img-microsoft-64/1f3cc-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3cc-1f3fe.png b/img-microsoft-64/1f3cc-1f3fe.png
new file mode 100644
index 0000000000..9508d1a8cc
Binary files /dev/null and b/img-microsoft-64/1f3cc-1f3fe.png differ
diff --git a/img-microsoft-64/1f3cc-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f3cc-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..9e176f9ecd
Binary files /dev/null and b/img-microsoft-64/1f3cc-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3cc-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f3cc-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..de48232706
Binary files /dev/null and b/img-microsoft-64/1f3cc-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3cc-1f3ff.png b/img-microsoft-64/1f3cc-1f3ff.png
new file mode 100644
index 0000000000..173a748d17
Binary files /dev/null and b/img-microsoft-64/1f3cc-1f3ff.png differ
diff --git a/img-microsoft-64/1f3cc-fe0f-200d-2640-fe0f.png b/img-microsoft-64/1f3cc-fe0f-200d-2640-fe0f.png
new file mode 100644
index 0000000000..a6dd99d0bb
Binary files /dev/null and b/img-microsoft-64/1f3cc-fe0f-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f3cc-fe0f-200d-2642-fe0f.png b/img-microsoft-64/1f3cc-fe0f-200d-2642-fe0f.png
new file mode 100644
index 0000000000..c9555fcd4d
Binary files /dev/null and b/img-microsoft-64/1f3cc-fe0f-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f3cc-fe0f.png b/img-microsoft-64/1f3cc-fe0f.png
new file mode 100644
index 0000000000..273e7b229f
Binary files /dev/null and b/img-microsoft-64/1f3cc-fe0f.png differ
diff --git a/img-microsoft-64/1f3cd-fe0f.png b/img-microsoft-64/1f3cd-fe0f.png
new file mode 100644
index 0000000000..9fdf401cdc
Binary files /dev/null and b/img-microsoft-64/1f3cd-fe0f.png differ
diff --git a/img-microsoft-64/1f3ce-fe0f.png b/img-microsoft-64/1f3ce-fe0f.png
new file mode 100644
index 0000000000..ee99d9ae00
Binary files /dev/null and b/img-microsoft-64/1f3ce-fe0f.png differ
diff --git a/img-microsoft-64/1f3cf.png b/img-microsoft-64/1f3cf.png
new file mode 100644
index 0000000000..aef9eab294
Binary files /dev/null and b/img-microsoft-64/1f3cf.png differ
diff --git a/img-microsoft-64/1f3d0.png b/img-microsoft-64/1f3d0.png
new file mode 100644
index 0000000000..de6d278f28
Binary files /dev/null and b/img-microsoft-64/1f3d0.png differ
diff --git a/img-microsoft-64/1f3d1.png b/img-microsoft-64/1f3d1.png
new file mode 100644
index 0000000000..3acefc5d84
Binary files /dev/null and b/img-microsoft-64/1f3d1.png differ
diff --git a/img-microsoft-64/1f3d2.png b/img-microsoft-64/1f3d2.png
new file mode 100644
index 0000000000..df906f5d94
Binary files /dev/null and b/img-microsoft-64/1f3d2.png differ
diff --git a/img-microsoft-64/1f3d3.png b/img-microsoft-64/1f3d3.png
new file mode 100644
index 0000000000..f4e8ab81e6
Binary files /dev/null and b/img-microsoft-64/1f3d3.png differ
diff --git a/img-microsoft-64/1f3d4-fe0f.png b/img-microsoft-64/1f3d4-fe0f.png
new file mode 100644
index 0000000000..fe8202e522
Binary files /dev/null and b/img-microsoft-64/1f3d4-fe0f.png differ
diff --git a/img-microsoft-64/1f3d5-fe0f.png b/img-microsoft-64/1f3d5-fe0f.png
new file mode 100644
index 0000000000..521e4d2fe5
Binary files /dev/null and b/img-microsoft-64/1f3d5-fe0f.png differ
diff --git a/img-microsoft-64/1f3d6-fe0f.png b/img-microsoft-64/1f3d6-fe0f.png
new file mode 100644
index 0000000000..057525d3ab
Binary files /dev/null and b/img-microsoft-64/1f3d6-fe0f.png differ
diff --git a/img-microsoft-64/1f3d7-fe0f.png b/img-microsoft-64/1f3d7-fe0f.png
new file mode 100644
index 0000000000..8bc2595819
Binary files /dev/null and b/img-microsoft-64/1f3d7-fe0f.png differ
diff --git a/img-microsoft-64/1f3d8-fe0f.png b/img-microsoft-64/1f3d8-fe0f.png
new file mode 100644
index 0000000000..ed849fb75e
Binary files /dev/null and b/img-microsoft-64/1f3d8-fe0f.png differ
diff --git a/img-microsoft-64/1f3d9-fe0f.png b/img-microsoft-64/1f3d9-fe0f.png
new file mode 100644
index 0000000000..18375fecb5
Binary files /dev/null and b/img-microsoft-64/1f3d9-fe0f.png differ
diff --git a/img-microsoft-64/1f3da-fe0f.png b/img-microsoft-64/1f3da-fe0f.png
new file mode 100644
index 0000000000..0ce4f46df2
Binary files /dev/null and b/img-microsoft-64/1f3da-fe0f.png differ
diff --git a/img-microsoft-64/1f3db-fe0f.png b/img-microsoft-64/1f3db-fe0f.png
new file mode 100644
index 0000000000..1d70bdea64
Binary files /dev/null and b/img-microsoft-64/1f3db-fe0f.png differ
diff --git a/img-microsoft-64/1f3dc-fe0f.png b/img-microsoft-64/1f3dc-fe0f.png
new file mode 100644
index 0000000000..9bc0cf62a8
Binary files /dev/null and b/img-microsoft-64/1f3dc-fe0f.png differ
diff --git a/img-microsoft-64/1f3dd-fe0f.png b/img-microsoft-64/1f3dd-fe0f.png
new file mode 100644
index 0000000000..ec1beeb551
Binary files /dev/null and b/img-microsoft-64/1f3dd-fe0f.png differ
diff --git a/img-microsoft-64/1f3de-fe0f.png b/img-microsoft-64/1f3de-fe0f.png
new file mode 100644
index 0000000000..d0d67d5f69
Binary files /dev/null and b/img-microsoft-64/1f3de-fe0f.png differ
diff --git a/img-microsoft-64/1f3df-fe0f.png b/img-microsoft-64/1f3df-fe0f.png
new file mode 100644
index 0000000000..cdda377028
Binary files /dev/null and b/img-microsoft-64/1f3df-fe0f.png differ
diff --git a/img-microsoft-64/1f3e0.png b/img-microsoft-64/1f3e0.png
new file mode 100644
index 0000000000..a84da3ca3d
Binary files /dev/null and b/img-microsoft-64/1f3e0.png differ
diff --git a/img-microsoft-64/1f3e1.png b/img-microsoft-64/1f3e1.png
new file mode 100644
index 0000000000..da77b5a442
Binary files /dev/null and b/img-microsoft-64/1f3e1.png differ
diff --git a/img-microsoft-64/1f3e2.png b/img-microsoft-64/1f3e2.png
new file mode 100644
index 0000000000..e75d270940
Binary files /dev/null and b/img-microsoft-64/1f3e2.png differ
diff --git a/img-microsoft-64/1f3e3.png b/img-microsoft-64/1f3e3.png
new file mode 100644
index 0000000000..68d8880da5
Binary files /dev/null and b/img-microsoft-64/1f3e3.png differ
diff --git a/img-microsoft-64/1f3e4.png b/img-microsoft-64/1f3e4.png
new file mode 100644
index 0000000000..1372a04d22
Binary files /dev/null and b/img-microsoft-64/1f3e4.png differ
diff --git a/img-microsoft-64/1f3e5.png b/img-microsoft-64/1f3e5.png
new file mode 100644
index 0000000000..7c2d6ff314
Binary files /dev/null and b/img-microsoft-64/1f3e5.png differ
diff --git a/img-microsoft-64/1f3e6.png b/img-microsoft-64/1f3e6.png
new file mode 100644
index 0000000000..33d4f22a9e
Binary files /dev/null and b/img-microsoft-64/1f3e6.png differ
diff --git a/img-microsoft-64/1f3e7.png b/img-microsoft-64/1f3e7.png
new file mode 100644
index 0000000000..ec87372295
Binary files /dev/null and b/img-microsoft-64/1f3e7.png differ
diff --git a/img-microsoft-64/1f3e8.png b/img-microsoft-64/1f3e8.png
new file mode 100644
index 0000000000..3749a2202a
Binary files /dev/null and b/img-microsoft-64/1f3e8.png differ
diff --git a/img-microsoft-64/1f3e9.png b/img-microsoft-64/1f3e9.png
new file mode 100644
index 0000000000..f9187e1c99
Binary files /dev/null and b/img-microsoft-64/1f3e9.png differ
diff --git a/img-microsoft-64/1f3ea.png b/img-microsoft-64/1f3ea.png
new file mode 100644
index 0000000000..a19e40e32b
Binary files /dev/null and b/img-microsoft-64/1f3ea.png differ
diff --git a/img-microsoft-64/1f3eb.png b/img-microsoft-64/1f3eb.png
new file mode 100644
index 0000000000..4983b0360c
Binary files /dev/null and b/img-microsoft-64/1f3eb.png differ
diff --git a/img-microsoft-64/1f3ec.png b/img-microsoft-64/1f3ec.png
new file mode 100644
index 0000000000..ae9838c06a
Binary files /dev/null and b/img-microsoft-64/1f3ec.png differ
diff --git a/img-microsoft-64/1f3ed.png b/img-microsoft-64/1f3ed.png
new file mode 100644
index 0000000000..52a15ea7f7
Binary files /dev/null and b/img-microsoft-64/1f3ed.png differ
diff --git a/img-microsoft-64/1f3ee.png b/img-microsoft-64/1f3ee.png
new file mode 100644
index 0000000000..982bc71907
Binary files /dev/null and b/img-microsoft-64/1f3ee.png differ
diff --git a/img-microsoft-64/1f3ef.png b/img-microsoft-64/1f3ef.png
new file mode 100644
index 0000000000..964dfa706b
Binary files /dev/null and b/img-microsoft-64/1f3ef.png differ
diff --git a/img-microsoft-64/1f3f0.png b/img-microsoft-64/1f3f0.png
new file mode 100644
index 0000000000..b29e1a64b3
Binary files /dev/null and b/img-microsoft-64/1f3f0.png differ
diff --git a/img-microsoft-64/1f3f3-fe0f-200d-1f308.png b/img-microsoft-64/1f3f3-fe0f-200d-1f308.png
new file mode 100644
index 0000000000..21bb9ce9af
Binary files /dev/null and b/img-microsoft-64/1f3f3-fe0f-200d-1f308.png differ
diff --git a/img-microsoft-64/1f3f3-fe0f-200d-26a7-fe0f.png b/img-microsoft-64/1f3f3-fe0f-200d-26a7-fe0f.png
new file mode 100644
index 0000000000..c22af93d16
Binary files /dev/null and b/img-microsoft-64/1f3f3-fe0f-200d-26a7-fe0f.png differ
diff --git a/img-microsoft-64/1f3f3-fe0f.png b/img-microsoft-64/1f3f3-fe0f.png
new file mode 100644
index 0000000000..f73ad9e7a1
Binary files /dev/null and b/img-microsoft-64/1f3f3-fe0f.png differ
diff --git a/img-microsoft-64/1f3f4-200d-2620-fe0f.png b/img-microsoft-64/1f3f4-200d-2620-fe0f.png
new file mode 100644
index 0000000000..cef906a686
Binary files /dev/null and b/img-microsoft-64/1f3f4-200d-2620-fe0f.png differ
diff --git a/img-microsoft-64/1f3f4.png b/img-microsoft-64/1f3f4.png
new file mode 100644
index 0000000000..33e1f47755
Binary files /dev/null and b/img-microsoft-64/1f3f4.png differ
diff --git a/img-microsoft-64/1f3f5-fe0f.png b/img-microsoft-64/1f3f5-fe0f.png
new file mode 100644
index 0000000000..4beda689e7
Binary files /dev/null and b/img-microsoft-64/1f3f5-fe0f.png differ
diff --git a/img-microsoft-64/1f3f7-fe0f.png b/img-microsoft-64/1f3f7-fe0f.png
new file mode 100644
index 0000000000..c8c205215b
Binary files /dev/null and b/img-microsoft-64/1f3f7-fe0f.png differ
diff --git a/img-microsoft-64/1f3f8.png b/img-microsoft-64/1f3f8.png
new file mode 100644
index 0000000000..276756bc1e
Binary files /dev/null and b/img-microsoft-64/1f3f8.png differ
diff --git a/img-microsoft-64/1f3f9.png b/img-microsoft-64/1f3f9.png
new file mode 100644
index 0000000000..b325fab79b
Binary files /dev/null and b/img-microsoft-64/1f3f9.png differ
diff --git a/img-microsoft-64/1f3fa.png b/img-microsoft-64/1f3fa.png
new file mode 100644
index 0000000000..ad057abd8a
Binary files /dev/null and b/img-microsoft-64/1f3fa.png differ
diff --git a/img-microsoft-64/1f400.png b/img-microsoft-64/1f400.png
new file mode 100644
index 0000000000..68fa05df3e
Binary files /dev/null and b/img-microsoft-64/1f400.png differ
diff --git a/img-microsoft-64/1f401.png b/img-microsoft-64/1f401.png
new file mode 100644
index 0000000000..3620db5edf
Binary files /dev/null and b/img-microsoft-64/1f401.png differ
diff --git a/img-microsoft-64/1f402.png b/img-microsoft-64/1f402.png
new file mode 100644
index 0000000000..ffe74d3c8d
Binary files /dev/null and b/img-microsoft-64/1f402.png differ
diff --git a/img-microsoft-64/1f403.png b/img-microsoft-64/1f403.png
new file mode 100644
index 0000000000..6080026768
Binary files /dev/null and b/img-microsoft-64/1f403.png differ
diff --git a/img-microsoft-64/1f404.png b/img-microsoft-64/1f404.png
new file mode 100644
index 0000000000..9281fd58e5
Binary files /dev/null and b/img-microsoft-64/1f404.png differ
diff --git a/img-microsoft-64/1f405.png b/img-microsoft-64/1f405.png
new file mode 100644
index 0000000000..b6d3db9c2d
Binary files /dev/null and b/img-microsoft-64/1f405.png differ
diff --git a/img-microsoft-64/1f406.png b/img-microsoft-64/1f406.png
new file mode 100644
index 0000000000..0f882d412a
Binary files /dev/null and b/img-microsoft-64/1f406.png differ
diff --git a/img-microsoft-64/1f407.png b/img-microsoft-64/1f407.png
new file mode 100644
index 0000000000..6f5d0fdd5f
Binary files /dev/null and b/img-microsoft-64/1f407.png differ
diff --git a/img-microsoft-64/1f408-200d-2b1b.png b/img-microsoft-64/1f408-200d-2b1b.png
new file mode 100644
index 0000000000..b7c261f2d5
Binary files /dev/null and b/img-microsoft-64/1f408-200d-2b1b.png differ
diff --git a/img-microsoft-64/1f408.png b/img-microsoft-64/1f408.png
new file mode 100644
index 0000000000..811fdd3b8d
Binary files /dev/null and b/img-microsoft-64/1f408.png differ
diff --git a/img-microsoft-64/1f409.png b/img-microsoft-64/1f409.png
new file mode 100644
index 0000000000..a42d346185
Binary files /dev/null and b/img-microsoft-64/1f409.png differ
diff --git a/img-microsoft-64/1f40a.png b/img-microsoft-64/1f40a.png
new file mode 100644
index 0000000000..18c1fc81e1
Binary files /dev/null and b/img-microsoft-64/1f40a.png differ
diff --git a/img-microsoft-64/1f40b.png b/img-microsoft-64/1f40b.png
new file mode 100644
index 0000000000..84bcd6590e
Binary files /dev/null and b/img-microsoft-64/1f40b.png differ
diff --git a/img-microsoft-64/1f40c.png b/img-microsoft-64/1f40c.png
new file mode 100644
index 0000000000..a5685cfa9f
Binary files /dev/null and b/img-microsoft-64/1f40c.png differ
diff --git a/img-microsoft-64/1f40d.png b/img-microsoft-64/1f40d.png
new file mode 100644
index 0000000000..efd43f6d79
Binary files /dev/null and b/img-microsoft-64/1f40d.png differ
diff --git a/img-microsoft-64/1f40e.png b/img-microsoft-64/1f40e.png
new file mode 100644
index 0000000000..32e33859f6
Binary files /dev/null and b/img-microsoft-64/1f40e.png differ
diff --git a/img-microsoft-64/1f40f.png b/img-microsoft-64/1f40f.png
new file mode 100644
index 0000000000..7acca38771
Binary files /dev/null and b/img-microsoft-64/1f40f.png differ
diff --git a/img-microsoft-64/1f410.png b/img-microsoft-64/1f410.png
new file mode 100644
index 0000000000..98e976deff
Binary files /dev/null and b/img-microsoft-64/1f410.png differ
diff --git a/img-microsoft-64/1f411.png b/img-microsoft-64/1f411.png
new file mode 100644
index 0000000000..ae0f64c44f
Binary files /dev/null and b/img-microsoft-64/1f411.png differ
diff --git a/img-microsoft-64/1f412.png b/img-microsoft-64/1f412.png
new file mode 100644
index 0000000000..aa6a78e874
Binary files /dev/null and b/img-microsoft-64/1f412.png differ
diff --git a/img-microsoft-64/1f413.png b/img-microsoft-64/1f413.png
new file mode 100644
index 0000000000..3a3f7a4aab
Binary files /dev/null and b/img-microsoft-64/1f413.png differ
diff --git a/img-microsoft-64/1f414.png b/img-microsoft-64/1f414.png
new file mode 100644
index 0000000000..adcd37fece
Binary files /dev/null and b/img-microsoft-64/1f414.png differ
diff --git a/img-microsoft-64/1f415-200d-1f9ba.png b/img-microsoft-64/1f415-200d-1f9ba.png
new file mode 100644
index 0000000000..2c6ecf6839
Binary files /dev/null and b/img-microsoft-64/1f415-200d-1f9ba.png differ
diff --git a/img-microsoft-64/1f415.png b/img-microsoft-64/1f415.png
new file mode 100644
index 0000000000..c1a56d3e85
Binary files /dev/null and b/img-microsoft-64/1f415.png differ
diff --git a/img-microsoft-64/1f416.png b/img-microsoft-64/1f416.png
new file mode 100644
index 0000000000..04517f3192
Binary files /dev/null and b/img-microsoft-64/1f416.png differ
diff --git a/img-microsoft-64/1f417.png b/img-microsoft-64/1f417.png
new file mode 100644
index 0000000000..6cf0deb9f3
Binary files /dev/null and b/img-microsoft-64/1f417.png differ
diff --git a/img-microsoft-64/1f418.png b/img-microsoft-64/1f418.png
new file mode 100644
index 0000000000..6194c8f6cf
Binary files /dev/null and b/img-microsoft-64/1f418.png differ
diff --git a/img-microsoft-64/1f419.png b/img-microsoft-64/1f419.png
new file mode 100644
index 0000000000..79ee6dec34
Binary files /dev/null and b/img-microsoft-64/1f419.png differ
diff --git a/img-microsoft-64/1f41a.png b/img-microsoft-64/1f41a.png
new file mode 100644
index 0000000000..f4bd9a0885
Binary files /dev/null and b/img-microsoft-64/1f41a.png differ
diff --git a/img-microsoft-64/1f41b.png b/img-microsoft-64/1f41b.png
new file mode 100644
index 0000000000..3a73081b2c
Binary files /dev/null and b/img-microsoft-64/1f41b.png differ
diff --git a/img-microsoft-64/1f41c.png b/img-microsoft-64/1f41c.png
new file mode 100644
index 0000000000..100eb04439
Binary files /dev/null and b/img-microsoft-64/1f41c.png differ
diff --git a/img-microsoft-64/1f41d.png b/img-microsoft-64/1f41d.png
new file mode 100644
index 0000000000..73f8a7b974
Binary files /dev/null and b/img-microsoft-64/1f41d.png differ
diff --git a/img-microsoft-64/1f41e.png b/img-microsoft-64/1f41e.png
new file mode 100644
index 0000000000..b5dc11df05
Binary files /dev/null and b/img-microsoft-64/1f41e.png differ
diff --git a/img-microsoft-64/1f41f.png b/img-microsoft-64/1f41f.png
new file mode 100644
index 0000000000..3665b7ac59
Binary files /dev/null and b/img-microsoft-64/1f41f.png differ
diff --git a/img-microsoft-64/1f420.png b/img-microsoft-64/1f420.png
new file mode 100644
index 0000000000..327bf7a4be
Binary files /dev/null and b/img-microsoft-64/1f420.png differ
diff --git a/img-microsoft-64/1f421.png b/img-microsoft-64/1f421.png
new file mode 100644
index 0000000000..762bf1a9a4
Binary files /dev/null and b/img-microsoft-64/1f421.png differ
diff --git a/img-microsoft-64/1f422.png b/img-microsoft-64/1f422.png
new file mode 100644
index 0000000000..80b5d3c370
Binary files /dev/null and b/img-microsoft-64/1f422.png differ
diff --git a/img-microsoft-64/1f423.png b/img-microsoft-64/1f423.png
new file mode 100644
index 0000000000..b53875ca74
Binary files /dev/null and b/img-microsoft-64/1f423.png differ
diff --git a/img-microsoft-64/1f424.png b/img-microsoft-64/1f424.png
new file mode 100644
index 0000000000..f3e87897ec
Binary files /dev/null and b/img-microsoft-64/1f424.png differ
diff --git a/img-microsoft-64/1f425.png b/img-microsoft-64/1f425.png
new file mode 100644
index 0000000000..964e760c28
Binary files /dev/null and b/img-microsoft-64/1f425.png differ
diff --git a/img-microsoft-64/1f426.png b/img-microsoft-64/1f426.png
new file mode 100644
index 0000000000..c034836a56
Binary files /dev/null and b/img-microsoft-64/1f426.png differ
diff --git a/img-microsoft-64/1f427.png b/img-microsoft-64/1f427.png
new file mode 100644
index 0000000000..cd602093f2
Binary files /dev/null and b/img-microsoft-64/1f427.png differ
diff --git a/img-microsoft-64/1f428.png b/img-microsoft-64/1f428.png
new file mode 100644
index 0000000000..b6f44e4c06
Binary files /dev/null and b/img-microsoft-64/1f428.png differ
diff --git a/img-microsoft-64/1f429.png b/img-microsoft-64/1f429.png
new file mode 100644
index 0000000000..3f3e926bd0
Binary files /dev/null and b/img-microsoft-64/1f429.png differ
diff --git a/img-microsoft-64/1f42a.png b/img-microsoft-64/1f42a.png
new file mode 100644
index 0000000000..f004a7119d
Binary files /dev/null and b/img-microsoft-64/1f42a.png differ
diff --git a/img-microsoft-64/1f42b.png b/img-microsoft-64/1f42b.png
new file mode 100644
index 0000000000..937a16c7ef
Binary files /dev/null and b/img-microsoft-64/1f42b.png differ
diff --git a/img-microsoft-64/1f42c.png b/img-microsoft-64/1f42c.png
new file mode 100644
index 0000000000..2bedc26e18
Binary files /dev/null and b/img-microsoft-64/1f42c.png differ
diff --git a/img-microsoft-64/1f42d.png b/img-microsoft-64/1f42d.png
new file mode 100644
index 0000000000..e765508039
Binary files /dev/null and b/img-microsoft-64/1f42d.png differ
diff --git a/img-microsoft-64/1f42e.png b/img-microsoft-64/1f42e.png
new file mode 100644
index 0000000000..ce16116571
Binary files /dev/null and b/img-microsoft-64/1f42e.png differ
diff --git a/img-microsoft-64/1f42f.png b/img-microsoft-64/1f42f.png
new file mode 100644
index 0000000000..54ce1b8c9a
Binary files /dev/null and b/img-microsoft-64/1f42f.png differ
diff --git a/img-microsoft-64/1f430.png b/img-microsoft-64/1f430.png
new file mode 100644
index 0000000000..ee3069779a
Binary files /dev/null and b/img-microsoft-64/1f430.png differ
diff --git a/img-microsoft-64/1f431.png b/img-microsoft-64/1f431.png
new file mode 100644
index 0000000000..02c12d79f3
Binary files /dev/null and b/img-microsoft-64/1f431.png differ
diff --git a/img-microsoft-64/1f432.png b/img-microsoft-64/1f432.png
new file mode 100644
index 0000000000..874c70dfa1
Binary files /dev/null and b/img-microsoft-64/1f432.png differ
diff --git a/img-microsoft-64/1f433.png b/img-microsoft-64/1f433.png
new file mode 100644
index 0000000000..b60e79a706
Binary files /dev/null and b/img-microsoft-64/1f433.png differ
diff --git a/img-microsoft-64/1f434.png b/img-microsoft-64/1f434.png
new file mode 100644
index 0000000000..c00d2dcc12
Binary files /dev/null and b/img-microsoft-64/1f434.png differ
diff --git a/img-microsoft-64/1f435.png b/img-microsoft-64/1f435.png
new file mode 100644
index 0000000000..c47c337b21
Binary files /dev/null and b/img-microsoft-64/1f435.png differ
diff --git a/img-microsoft-64/1f436.png b/img-microsoft-64/1f436.png
new file mode 100644
index 0000000000..386991e5b4
Binary files /dev/null and b/img-microsoft-64/1f436.png differ
diff --git a/img-microsoft-64/1f437.png b/img-microsoft-64/1f437.png
new file mode 100644
index 0000000000..a86a232181
Binary files /dev/null and b/img-microsoft-64/1f437.png differ
diff --git a/img-microsoft-64/1f438.png b/img-microsoft-64/1f438.png
new file mode 100644
index 0000000000..8e9dee87f2
Binary files /dev/null and b/img-microsoft-64/1f438.png differ
diff --git a/img-microsoft-64/1f439.png b/img-microsoft-64/1f439.png
new file mode 100644
index 0000000000..e7955e77db
Binary files /dev/null and b/img-microsoft-64/1f439.png differ
diff --git a/img-microsoft-64/1f43a.png b/img-microsoft-64/1f43a.png
new file mode 100644
index 0000000000..d0424ff774
Binary files /dev/null and b/img-microsoft-64/1f43a.png differ
diff --git a/img-microsoft-64/1f43b-200d-2744-fe0f.png b/img-microsoft-64/1f43b-200d-2744-fe0f.png
new file mode 100644
index 0000000000..751d848951
Binary files /dev/null and b/img-microsoft-64/1f43b-200d-2744-fe0f.png differ
diff --git a/img-microsoft-64/1f43b.png b/img-microsoft-64/1f43b.png
new file mode 100644
index 0000000000..9184e0dbb8
Binary files /dev/null and b/img-microsoft-64/1f43b.png differ
diff --git a/img-microsoft-64/1f43c.png b/img-microsoft-64/1f43c.png
new file mode 100644
index 0000000000..64888dfcc7
Binary files /dev/null and b/img-microsoft-64/1f43c.png differ
diff --git a/img-microsoft-64/1f43d.png b/img-microsoft-64/1f43d.png
new file mode 100644
index 0000000000..9c7c75480b
Binary files /dev/null and b/img-microsoft-64/1f43d.png differ
diff --git a/img-microsoft-64/1f43e.png b/img-microsoft-64/1f43e.png
new file mode 100644
index 0000000000..8aa1aaf964
Binary files /dev/null and b/img-microsoft-64/1f43e.png differ
diff --git a/img-microsoft-64/1f43f-fe0f.png b/img-microsoft-64/1f43f-fe0f.png
new file mode 100644
index 0000000000..7c1056ba2c
Binary files /dev/null and b/img-microsoft-64/1f43f-fe0f.png differ
diff --git a/img-microsoft-64/1f440.png b/img-microsoft-64/1f440.png
new file mode 100644
index 0000000000..de706053e6
Binary files /dev/null and b/img-microsoft-64/1f440.png differ
diff --git a/img-microsoft-64/1f441-fe0f-200d-1f5e8-fe0f.png b/img-microsoft-64/1f441-fe0f-200d-1f5e8-fe0f.png
new file mode 100644
index 0000000000..51b94e1a1f
Binary files /dev/null and b/img-microsoft-64/1f441-fe0f-200d-1f5e8-fe0f.png differ
diff --git a/img-microsoft-64/1f441-fe0f.png b/img-microsoft-64/1f441-fe0f.png
new file mode 100644
index 0000000000..d2a7ef2064
Binary files /dev/null and b/img-microsoft-64/1f441-fe0f.png differ
diff --git a/img-microsoft-64/1f442-1f3fb.png b/img-microsoft-64/1f442-1f3fb.png
new file mode 100644
index 0000000000..420398ee8a
Binary files /dev/null and b/img-microsoft-64/1f442-1f3fb.png differ
diff --git a/img-microsoft-64/1f442-1f3fc.png b/img-microsoft-64/1f442-1f3fc.png
new file mode 100644
index 0000000000..679f864289
Binary files /dev/null and b/img-microsoft-64/1f442-1f3fc.png differ
diff --git a/img-microsoft-64/1f442-1f3fd.png b/img-microsoft-64/1f442-1f3fd.png
new file mode 100644
index 0000000000..d4e2b51606
Binary files /dev/null and b/img-microsoft-64/1f442-1f3fd.png differ
diff --git a/img-microsoft-64/1f442-1f3fe.png b/img-microsoft-64/1f442-1f3fe.png
new file mode 100644
index 0000000000..2eddc94e85
Binary files /dev/null and b/img-microsoft-64/1f442-1f3fe.png differ
diff --git a/img-microsoft-64/1f442-1f3ff.png b/img-microsoft-64/1f442-1f3ff.png
new file mode 100644
index 0000000000..a4a2428465
Binary files /dev/null and b/img-microsoft-64/1f442-1f3ff.png differ
diff --git a/img-microsoft-64/1f442.png b/img-microsoft-64/1f442.png
new file mode 100644
index 0000000000..02f10f7772
Binary files /dev/null and b/img-microsoft-64/1f442.png differ
diff --git a/img-microsoft-64/1f443-1f3fb.png b/img-microsoft-64/1f443-1f3fb.png
new file mode 100644
index 0000000000..aa35490cdb
Binary files /dev/null and b/img-microsoft-64/1f443-1f3fb.png differ
diff --git a/img-microsoft-64/1f443-1f3fc.png b/img-microsoft-64/1f443-1f3fc.png
new file mode 100644
index 0000000000..aac7c13249
Binary files /dev/null and b/img-microsoft-64/1f443-1f3fc.png differ
diff --git a/img-microsoft-64/1f443-1f3fd.png b/img-microsoft-64/1f443-1f3fd.png
new file mode 100644
index 0000000000..73030faf9c
Binary files /dev/null and b/img-microsoft-64/1f443-1f3fd.png differ
diff --git a/img-microsoft-64/1f443-1f3fe.png b/img-microsoft-64/1f443-1f3fe.png
new file mode 100644
index 0000000000..9a7073a4d6
Binary files /dev/null and b/img-microsoft-64/1f443-1f3fe.png differ
diff --git a/img-microsoft-64/1f443-1f3ff.png b/img-microsoft-64/1f443-1f3ff.png
new file mode 100644
index 0000000000..f53a425ac1
Binary files /dev/null and b/img-microsoft-64/1f443-1f3ff.png differ
diff --git a/img-microsoft-64/1f443.png b/img-microsoft-64/1f443.png
new file mode 100644
index 0000000000..b06bf0c80a
Binary files /dev/null and b/img-microsoft-64/1f443.png differ
diff --git a/img-microsoft-64/1f444.png b/img-microsoft-64/1f444.png
new file mode 100644
index 0000000000..125216a109
Binary files /dev/null and b/img-microsoft-64/1f444.png differ
diff --git a/img-microsoft-64/1f445.png b/img-microsoft-64/1f445.png
new file mode 100644
index 0000000000..6f0d4d9636
Binary files /dev/null and b/img-microsoft-64/1f445.png differ
diff --git a/img-microsoft-64/1f446-1f3fb.png b/img-microsoft-64/1f446-1f3fb.png
new file mode 100644
index 0000000000..3e75badb75
Binary files /dev/null and b/img-microsoft-64/1f446-1f3fb.png differ
diff --git a/img-microsoft-64/1f446-1f3fc.png b/img-microsoft-64/1f446-1f3fc.png
new file mode 100644
index 0000000000..4cf23092d9
Binary files /dev/null and b/img-microsoft-64/1f446-1f3fc.png differ
diff --git a/img-microsoft-64/1f446-1f3fd.png b/img-microsoft-64/1f446-1f3fd.png
new file mode 100644
index 0000000000..3c787006b5
Binary files /dev/null and b/img-microsoft-64/1f446-1f3fd.png differ
diff --git a/img-microsoft-64/1f446-1f3fe.png b/img-microsoft-64/1f446-1f3fe.png
new file mode 100644
index 0000000000..beba3412ba
Binary files /dev/null and b/img-microsoft-64/1f446-1f3fe.png differ
diff --git a/img-microsoft-64/1f446-1f3ff.png b/img-microsoft-64/1f446-1f3ff.png
new file mode 100644
index 0000000000..1c65736ca9
Binary files /dev/null and b/img-microsoft-64/1f446-1f3ff.png differ
diff --git a/img-microsoft-64/1f446.png b/img-microsoft-64/1f446.png
new file mode 100644
index 0000000000..d26544116a
Binary files /dev/null and b/img-microsoft-64/1f446.png differ
diff --git a/img-microsoft-64/1f447-1f3fb.png b/img-microsoft-64/1f447-1f3fb.png
new file mode 100644
index 0000000000..211db1c58d
Binary files /dev/null and b/img-microsoft-64/1f447-1f3fb.png differ
diff --git a/img-microsoft-64/1f447-1f3fc.png b/img-microsoft-64/1f447-1f3fc.png
new file mode 100644
index 0000000000..56d060498c
Binary files /dev/null and b/img-microsoft-64/1f447-1f3fc.png differ
diff --git a/img-microsoft-64/1f447-1f3fd.png b/img-microsoft-64/1f447-1f3fd.png
new file mode 100644
index 0000000000..4cf8de90a5
Binary files /dev/null and b/img-microsoft-64/1f447-1f3fd.png differ
diff --git a/img-microsoft-64/1f447-1f3fe.png b/img-microsoft-64/1f447-1f3fe.png
new file mode 100644
index 0000000000..97d2039ad7
Binary files /dev/null and b/img-microsoft-64/1f447-1f3fe.png differ
diff --git a/img-microsoft-64/1f447-1f3ff.png b/img-microsoft-64/1f447-1f3ff.png
new file mode 100644
index 0000000000..2b362362bb
Binary files /dev/null and b/img-microsoft-64/1f447-1f3ff.png differ
diff --git a/img-microsoft-64/1f447.png b/img-microsoft-64/1f447.png
new file mode 100644
index 0000000000..c3e3ee8b08
Binary files /dev/null and b/img-microsoft-64/1f447.png differ
diff --git a/img-microsoft-64/1f448-1f3fb.png b/img-microsoft-64/1f448-1f3fb.png
new file mode 100644
index 0000000000..3569b898db
Binary files /dev/null and b/img-microsoft-64/1f448-1f3fb.png differ
diff --git a/img-microsoft-64/1f448-1f3fc.png b/img-microsoft-64/1f448-1f3fc.png
new file mode 100644
index 0000000000..5ff139a0d1
Binary files /dev/null and b/img-microsoft-64/1f448-1f3fc.png differ
diff --git a/img-microsoft-64/1f448-1f3fd.png b/img-microsoft-64/1f448-1f3fd.png
new file mode 100644
index 0000000000..b26dffe953
Binary files /dev/null and b/img-microsoft-64/1f448-1f3fd.png differ
diff --git a/img-microsoft-64/1f448-1f3fe.png b/img-microsoft-64/1f448-1f3fe.png
new file mode 100644
index 0000000000..c56edd52c6
Binary files /dev/null and b/img-microsoft-64/1f448-1f3fe.png differ
diff --git a/img-microsoft-64/1f448-1f3ff.png b/img-microsoft-64/1f448-1f3ff.png
new file mode 100644
index 0000000000..6df40963b4
Binary files /dev/null and b/img-microsoft-64/1f448-1f3ff.png differ
diff --git a/img-microsoft-64/1f448.png b/img-microsoft-64/1f448.png
new file mode 100644
index 0000000000..f0759b7051
Binary files /dev/null and b/img-microsoft-64/1f448.png differ
diff --git a/img-microsoft-64/1f449-1f3fb.png b/img-microsoft-64/1f449-1f3fb.png
new file mode 100644
index 0000000000..5a538ada9a
Binary files /dev/null and b/img-microsoft-64/1f449-1f3fb.png differ
diff --git a/img-microsoft-64/1f449-1f3fc.png b/img-microsoft-64/1f449-1f3fc.png
new file mode 100644
index 0000000000..6abee02b71
Binary files /dev/null and b/img-microsoft-64/1f449-1f3fc.png differ
diff --git a/img-microsoft-64/1f449-1f3fd.png b/img-microsoft-64/1f449-1f3fd.png
new file mode 100644
index 0000000000..27b27aed44
Binary files /dev/null and b/img-microsoft-64/1f449-1f3fd.png differ
diff --git a/img-microsoft-64/1f449-1f3fe.png b/img-microsoft-64/1f449-1f3fe.png
new file mode 100644
index 0000000000..0030e9bb6f
Binary files /dev/null and b/img-microsoft-64/1f449-1f3fe.png differ
diff --git a/img-microsoft-64/1f449-1f3ff.png b/img-microsoft-64/1f449-1f3ff.png
new file mode 100644
index 0000000000..730121a1a3
Binary files /dev/null and b/img-microsoft-64/1f449-1f3ff.png differ
diff --git a/img-microsoft-64/1f449.png b/img-microsoft-64/1f449.png
new file mode 100644
index 0000000000..46f68eb4ad
Binary files /dev/null and b/img-microsoft-64/1f449.png differ
diff --git a/img-microsoft-64/1f44a-1f3fb.png b/img-microsoft-64/1f44a-1f3fb.png
new file mode 100644
index 0000000000..b7d4232905
Binary files /dev/null and b/img-microsoft-64/1f44a-1f3fb.png differ
diff --git a/img-microsoft-64/1f44a-1f3fc.png b/img-microsoft-64/1f44a-1f3fc.png
new file mode 100644
index 0000000000..263eced0d6
Binary files /dev/null and b/img-microsoft-64/1f44a-1f3fc.png differ
diff --git a/img-microsoft-64/1f44a-1f3fd.png b/img-microsoft-64/1f44a-1f3fd.png
new file mode 100644
index 0000000000..8294624538
Binary files /dev/null and b/img-microsoft-64/1f44a-1f3fd.png differ
diff --git a/img-microsoft-64/1f44a-1f3fe.png b/img-microsoft-64/1f44a-1f3fe.png
new file mode 100644
index 0000000000..bb4f24c9dd
Binary files /dev/null and b/img-microsoft-64/1f44a-1f3fe.png differ
diff --git a/img-microsoft-64/1f44a-1f3ff.png b/img-microsoft-64/1f44a-1f3ff.png
new file mode 100644
index 0000000000..cbe00389ab
Binary files /dev/null and b/img-microsoft-64/1f44a-1f3ff.png differ
diff --git a/img-microsoft-64/1f44a.png b/img-microsoft-64/1f44a.png
new file mode 100644
index 0000000000..83962deeb4
Binary files /dev/null and b/img-microsoft-64/1f44a.png differ
diff --git a/img-microsoft-64/1f44b-1f3fb.png b/img-microsoft-64/1f44b-1f3fb.png
new file mode 100644
index 0000000000..e9a00cd2c8
Binary files /dev/null and b/img-microsoft-64/1f44b-1f3fb.png differ
diff --git a/img-microsoft-64/1f44b-1f3fc.png b/img-microsoft-64/1f44b-1f3fc.png
new file mode 100644
index 0000000000..d44ea17928
Binary files /dev/null and b/img-microsoft-64/1f44b-1f3fc.png differ
diff --git a/img-microsoft-64/1f44b-1f3fd.png b/img-microsoft-64/1f44b-1f3fd.png
new file mode 100644
index 0000000000..b95e38eb82
Binary files /dev/null and b/img-microsoft-64/1f44b-1f3fd.png differ
diff --git a/img-microsoft-64/1f44b-1f3fe.png b/img-microsoft-64/1f44b-1f3fe.png
new file mode 100644
index 0000000000..d8e40f5bf1
Binary files /dev/null and b/img-microsoft-64/1f44b-1f3fe.png differ
diff --git a/img-microsoft-64/1f44b-1f3ff.png b/img-microsoft-64/1f44b-1f3ff.png
new file mode 100644
index 0000000000..104dcac80d
Binary files /dev/null and b/img-microsoft-64/1f44b-1f3ff.png differ
diff --git a/img-microsoft-64/1f44b.png b/img-microsoft-64/1f44b.png
new file mode 100644
index 0000000000..f17587495a
Binary files /dev/null and b/img-microsoft-64/1f44b.png differ
diff --git a/img-microsoft-64/1f44c-1f3fb.png b/img-microsoft-64/1f44c-1f3fb.png
new file mode 100644
index 0000000000..db392a7434
Binary files /dev/null and b/img-microsoft-64/1f44c-1f3fb.png differ
diff --git a/img-microsoft-64/1f44c-1f3fc.png b/img-microsoft-64/1f44c-1f3fc.png
new file mode 100644
index 0000000000..9f297ab047
Binary files /dev/null and b/img-microsoft-64/1f44c-1f3fc.png differ
diff --git a/img-microsoft-64/1f44c-1f3fd.png b/img-microsoft-64/1f44c-1f3fd.png
new file mode 100644
index 0000000000..aebc14bc2a
Binary files /dev/null and b/img-microsoft-64/1f44c-1f3fd.png differ
diff --git a/img-microsoft-64/1f44c-1f3fe.png b/img-microsoft-64/1f44c-1f3fe.png
new file mode 100644
index 0000000000..cbf7081ad5
Binary files /dev/null and b/img-microsoft-64/1f44c-1f3fe.png differ
diff --git a/img-microsoft-64/1f44c-1f3ff.png b/img-microsoft-64/1f44c-1f3ff.png
new file mode 100644
index 0000000000..63e42226ff
Binary files /dev/null and b/img-microsoft-64/1f44c-1f3ff.png differ
diff --git a/img-microsoft-64/1f44c.png b/img-microsoft-64/1f44c.png
new file mode 100644
index 0000000000..c179e1c487
Binary files /dev/null and b/img-microsoft-64/1f44c.png differ
diff --git a/img-microsoft-64/1f44d-1f3fb.png b/img-microsoft-64/1f44d-1f3fb.png
new file mode 100644
index 0000000000..abfd72c188
Binary files /dev/null and b/img-microsoft-64/1f44d-1f3fb.png differ
diff --git a/img-microsoft-64/1f44d-1f3fc.png b/img-microsoft-64/1f44d-1f3fc.png
new file mode 100644
index 0000000000..8875c13884
Binary files /dev/null and b/img-microsoft-64/1f44d-1f3fc.png differ
diff --git a/img-microsoft-64/1f44d-1f3fd.png b/img-microsoft-64/1f44d-1f3fd.png
new file mode 100644
index 0000000000..560bfbb736
Binary files /dev/null and b/img-microsoft-64/1f44d-1f3fd.png differ
diff --git a/img-microsoft-64/1f44d-1f3fe.png b/img-microsoft-64/1f44d-1f3fe.png
new file mode 100644
index 0000000000..f470c4ab5c
Binary files /dev/null and b/img-microsoft-64/1f44d-1f3fe.png differ
diff --git a/img-microsoft-64/1f44d-1f3ff.png b/img-microsoft-64/1f44d-1f3ff.png
new file mode 100644
index 0000000000..2146574108
Binary files /dev/null and b/img-microsoft-64/1f44d-1f3ff.png differ
diff --git a/img-microsoft-64/1f44d.png b/img-microsoft-64/1f44d.png
new file mode 100644
index 0000000000..737e3d9393
Binary files /dev/null and b/img-microsoft-64/1f44d.png differ
diff --git a/img-microsoft-64/1f44e-1f3fb.png b/img-microsoft-64/1f44e-1f3fb.png
new file mode 100644
index 0000000000..0d1d2a492d
Binary files /dev/null and b/img-microsoft-64/1f44e-1f3fb.png differ
diff --git a/img-microsoft-64/1f44e-1f3fc.png b/img-microsoft-64/1f44e-1f3fc.png
new file mode 100644
index 0000000000..37a85ef53d
Binary files /dev/null and b/img-microsoft-64/1f44e-1f3fc.png differ
diff --git a/img-microsoft-64/1f44e-1f3fd.png b/img-microsoft-64/1f44e-1f3fd.png
new file mode 100644
index 0000000000..990d9bc4b7
Binary files /dev/null and b/img-microsoft-64/1f44e-1f3fd.png differ
diff --git a/img-microsoft-64/1f44e-1f3fe.png b/img-microsoft-64/1f44e-1f3fe.png
new file mode 100644
index 0000000000..48f2687bcd
Binary files /dev/null and b/img-microsoft-64/1f44e-1f3fe.png differ
diff --git a/img-microsoft-64/1f44e-1f3ff.png b/img-microsoft-64/1f44e-1f3ff.png
new file mode 100644
index 0000000000..59a6657e96
Binary files /dev/null and b/img-microsoft-64/1f44e-1f3ff.png differ
diff --git a/img-microsoft-64/1f44e.png b/img-microsoft-64/1f44e.png
new file mode 100644
index 0000000000..41741d3678
Binary files /dev/null and b/img-microsoft-64/1f44e.png differ
diff --git a/img-microsoft-64/1f44f-1f3fb.png b/img-microsoft-64/1f44f-1f3fb.png
new file mode 100644
index 0000000000..2990136e7d
Binary files /dev/null and b/img-microsoft-64/1f44f-1f3fb.png differ
diff --git a/img-microsoft-64/1f44f-1f3fc.png b/img-microsoft-64/1f44f-1f3fc.png
new file mode 100644
index 0000000000..9743709401
Binary files /dev/null and b/img-microsoft-64/1f44f-1f3fc.png differ
diff --git a/img-microsoft-64/1f44f-1f3fd.png b/img-microsoft-64/1f44f-1f3fd.png
new file mode 100644
index 0000000000..c4929d0cb1
Binary files /dev/null and b/img-microsoft-64/1f44f-1f3fd.png differ
diff --git a/img-microsoft-64/1f44f-1f3fe.png b/img-microsoft-64/1f44f-1f3fe.png
new file mode 100644
index 0000000000..91dc2ca842
Binary files /dev/null and b/img-microsoft-64/1f44f-1f3fe.png differ
diff --git a/img-microsoft-64/1f44f-1f3ff.png b/img-microsoft-64/1f44f-1f3ff.png
new file mode 100644
index 0000000000..3c6544d7fa
Binary files /dev/null and b/img-microsoft-64/1f44f-1f3ff.png differ
diff --git a/img-microsoft-64/1f44f.png b/img-microsoft-64/1f44f.png
new file mode 100644
index 0000000000..2ae0d92fbc
Binary files /dev/null and b/img-microsoft-64/1f44f.png differ
diff --git a/img-microsoft-64/1f450-1f3fb.png b/img-microsoft-64/1f450-1f3fb.png
new file mode 100644
index 0000000000..83051157ab
Binary files /dev/null and b/img-microsoft-64/1f450-1f3fb.png differ
diff --git a/img-microsoft-64/1f450-1f3fc.png b/img-microsoft-64/1f450-1f3fc.png
new file mode 100644
index 0000000000..9a780c62cf
Binary files /dev/null and b/img-microsoft-64/1f450-1f3fc.png differ
diff --git a/img-microsoft-64/1f450-1f3fd.png b/img-microsoft-64/1f450-1f3fd.png
new file mode 100644
index 0000000000..33ddd0e653
Binary files /dev/null and b/img-microsoft-64/1f450-1f3fd.png differ
diff --git a/img-microsoft-64/1f450-1f3fe.png b/img-microsoft-64/1f450-1f3fe.png
new file mode 100644
index 0000000000..0dee745de4
Binary files /dev/null and b/img-microsoft-64/1f450-1f3fe.png differ
diff --git a/img-microsoft-64/1f450-1f3ff.png b/img-microsoft-64/1f450-1f3ff.png
new file mode 100644
index 0000000000..a099e27848
Binary files /dev/null and b/img-microsoft-64/1f450-1f3ff.png differ
diff --git a/img-microsoft-64/1f450.png b/img-microsoft-64/1f450.png
new file mode 100644
index 0000000000..9015c634bd
Binary files /dev/null and b/img-microsoft-64/1f450.png differ
diff --git a/img-microsoft-64/1f451.png b/img-microsoft-64/1f451.png
new file mode 100644
index 0000000000..a6b0a5a498
Binary files /dev/null and b/img-microsoft-64/1f451.png differ
diff --git a/img-microsoft-64/1f452.png b/img-microsoft-64/1f452.png
new file mode 100644
index 0000000000..20169fc6a2
Binary files /dev/null and b/img-microsoft-64/1f452.png differ
diff --git a/img-microsoft-64/1f453.png b/img-microsoft-64/1f453.png
new file mode 100644
index 0000000000..7b5ac9648e
Binary files /dev/null and b/img-microsoft-64/1f453.png differ
diff --git a/img-microsoft-64/1f454.png b/img-microsoft-64/1f454.png
new file mode 100644
index 0000000000..c44b15e29e
Binary files /dev/null and b/img-microsoft-64/1f454.png differ
diff --git a/img-microsoft-64/1f455.png b/img-microsoft-64/1f455.png
new file mode 100644
index 0000000000..17091071d3
Binary files /dev/null and b/img-microsoft-64/1f455.png differ
diff --git a/img-microsoft-64/1f456.png b/img-microsoft-64/1f456.png
new file mode 100644
index 0000000000..02521ff46b
Binary files /dev/null and b/img-microsoft-64/1f456.png differ
diff --git a/img-microsoft-64/1f457.png b/img-microsoft-64/1f457.png
new file mode 100644
index 0000000000..333d1a9989
Binary files /dev/null and b/img-microsoft-64/1f457.png differ
diff --git a/img-microsoft-64/1f458.png b/img-microsoft-64/1f458.png
new file mode 100644
index 0000000000..ad2d3b8aca
Binary files /dev/null and b/img-microsoft-64/1f458.png differ
diff --git a/img-microsoft-64/1f459.png b/img-microsoft-64/1f459.png
new file mode 100644
index 0000000000..e14fb4e1d2
Binary files /dev/null and b/img-microsoft-64/1f459.png differ
diff --git a/img-microsoft-64/1f45a.png b/img-microsoft-64/1f45a.png
new file mode 100644
index 0000000000..af03b12d3e
Binary files /dev/null and b/img-microsoft-64/1f45a.png differ
diff --git a/img-microsoft-64/1f45b.png b/img-microsoft-64/1f45b.png
new file mode 100644
index 0000000000..b9e6b0a2a2
Binary files /dev/null and b/img-microsoft-64/1f45b.png differ
diff --git a/img-microsoft-64/1f45c.png b/img-microsoft-64/1f45c.png
new file mode 100644
index 0000000000..339d57ecec
Binary files /dev/null and b/img-microsoft-64/1f45c.png differ
diff --git a/img-microsoft-64/1f45d.png b/img-microsoft-64/1f45d.png
new file mode 100644
index 0000000000..45541d356a
Binary files /dev/null and b/img-microsoft-64/1f45d.png differ
diff --git a/img-microsoft-64/1f45e.png b/img-microsoft-64/1f45e.png
new file mode 100644
index 0000000000..3617627ad5
Binary files /dev/null and b/img-microsoft-64/1f45e.png differ
diff --git a/img-microsoft-64/1f45f.png b/img-microsoft-64/1f45f.png
new file mode 100644
index 0000000000..360656ad60
Binary files /dev/null and b/img-microsoft-64/1f45f.png differ
diff --git a/img-microsoft-64/1f460.png b/img-microsoft-64/1f460.png
new file mode 100644
index 0000000000..7124288e29
Binary files /dev/null and b/img-microsoft-64/1f460.png differ
diff --git a/img-microsoft-64/1f461.png b/img-microsoft-64/1f461.png
new file mode 100644
index 0000000000..c801fb3289
Binary files /dev/null and b/img-microsoft-64/1f461.png differ
diff --git a/img-microsoft-64/1f462.png b/img-microsoft-64/1f462.png
new file mode 100644
index 0000000000..6d511430fa
Binary files /dev/null and b/img-microsoft-64/1f462.png differ
diff --git a/img-microsoft-64/1f463.png b/img-microsoft-64/1f463.png
new file mode 100644
index 0000000000..97a1c93475
Binary files /dev/null and b/img-microsoft-64/1f463.png differ
diff --git a/img-microsoft-64/1f464.png b/img-microsoft-64/1f464.png
new file mode 100644
index 0000000000..118aa3852c
Binary files /dev/null and b/img-microsoft-64/1f464.png differ
diff --git a/img-microsoft-64/1f465.png b/img-microsoft-64/1f465.png
new file mode 100644
index 0000000000..f05e1855d5
Binary files /dev/null and b/img-microsoft-64/1f465.png differ
diff --git a/img-microsoft-64/1f466-1f3fb.png b/img-microsoft-64/1f466-1f3fb.png
new file mode 100644
index 0000000000..08d8bd2477
Binary files /dev/null and b/img-microsoft-64/1f466-1f3fb.png differ
diff --git a/img-microsoft-64/1f466-1f3fc.png b/img-microsoft-64/1f466-1f3fc.png
new file mode 100644
index 0000000000..65154960ec
Binary files /dev/null and b/img-microsoft-64/1f466-1f3fc.png differ
diff --git a/img-microsoft-64/1f466-1f3fd.png b/img-microsoft-64/1f466-1f3fd.png
new file mode 100644
index 0000000000..165dbea589
Binary files /dev/null and b/img-microsoft-64/1f466-1f3fd.png differ
diff --git a/img-microsoft-64/1f466-1f3fe.png b/img-microsoft-64/1f466-1f3fe.png
new file mode 100644
index 0000000000..fa4558e4e9
Binary files /dev/null and b/img-microsoft-64/1f466-1f3fe.png differ
diff --git a/img-microsoft-64/1f466-1f3ff.png b/img-microsoft-64/1f466-1f3ff.png
new file mode 100644
index 0000000000..6d3c01b90d
Binary files /dev/null and b/img-microsoft-64/1f466-1f3ff.png differ
diff --git a/img-microsoft-64/1f466.png b/img-microsoft-64/1f466.png
new file mode 100644
index 0000000000..1602664181
Binary files /dev/null and b/img-microsoft-64/1f466.png differ
diff --git a/img-microsoft-64/1f467-1f3fb.png b/img-microsoft-64/1f467-1f3fb.png
new file mode 100644
index 0000000000..719265f1c4
Binary files /dev/null and b/img-microsoft-64/1f467-1f3fb.png differ
diff --git a/img-microsoft-64/1f467-1f3fc.png b/img-microsoft-64/1f467-1f3fc.png
new file mode 100644
index 0000000000..5e1a32767e
Binary files /dev/null and b/img-microsoft-64/1f467-1f3fc.png differ
diff --git a/img-microsoft-64/1f467-1f3fd.png b/img-microsoft-64/1f467-1f3fd.png
new file mode 100644
index 0000000000..d8fb2ec29a
Binary files /dev/null and b/img-microsoft-64/1f467-1f3fd.png differ
diff --git a/img-microsoft-64/1f467-1f3fe.png b/img-microsoft-64/1f467-1f3fe.png
new file mode 100644
index 0000000000..d86ca9f931
Binary files /dev/null and b/img-microsoft-64/1f467-1f3fe.png differ
diff --git a/img-microsoft-64/1f467-1f3ff.png b/img-microsoft-64/1f467-1f3ff.png
new file mode 100644
index 0000000000..d30a79e079
Binary files /dev/null and b/img-microsoft-64/1f467-1f3ff.png differ
diff --git a/img-microsoft-64/1f467.png b/img-microsoft-64/1f467.png
new file mode 100644
index 0000000000..be0f856965
Binary files /dev/null and b/img-microsoft-64/1f467.png differ
diff --git a/img-microsoft-64/1f468-1f3fb-200d-1f33e.png b/img-microsoft-64/1f468-1f3fb-200d-1f33e.png
new file mode 100644
index 0000000000..9822d25812
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fb-200d-1f33e.png differ
diff --git a/img-microsoft-64/1f468-1f3fb-200d-1f373.png b/img-microsoft-64/1f468-1f3fb-200d-1f373.png
new file mode 100644
index 0000000000..7409ce87eb
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fb-200d-1f373.png differ
diff --git a/img-microsoft-64/1f468-1f3fb-200d-1f37c.png b/img-microsoft-64/1f468-1f3fb-200d-1f37c.png
new file mode 100644
index 0000000000..3cc5957054
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fb-200d-1f37c.png differ
diff --git a/img-microsoft-64/1f468-1f3fb-200d-1f393.png b/img-microsoft-64/1f468-1f3fb-200d-1f393.png
new file mode 100644
index 0000000000..d96310b83b
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fb-200d-1f393.png differ
diff --git a/img-microsoft-64/1f468-1f3fb-200d-1f3a4.png b/img-microsoft-64/1f468-1f3fb-200d-1f3a4.png
new file mode 100644
index 0000000000..737c4dfc17
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fb-200d-1f3a4.png differ
diff --git a/img-microsoft-64/1f468-1f3fb-200d-1f3a8.png b/img-microsoft-64/1f468-1f3fb-200d-1f3a8.png
new file mode 100644
index 0000000000..8de2d8af97
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fb-200d-1f3a8.png differ
diff --git a/img-microsoft-64/1f468-1f3fb-200d-1f3eb.png b/img-microsoft-64/1f468-1f3fb-200d-1f3eb.png
new file mode 100644
index 0000000000..2068bf8941
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fb-200d-1f3eb.png differ
diff --git a/img-microsoft-64/1f468-1f3fb-200d-1f3ed.png b/img-microsoft-64/1f468-1f3fb-200d-1f3ed.png
new file mode 100644
index 0000000000..e7ae78935d
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fb-200d-1f3ed.png differ
diff --git a/img-microsoft-64/1f468-1f3fb-200d-1f4bc.png b/img-microsoft-64/1f468-1f3fb-200d-1f4bc.png
new file mode 100644
index 0000000000..8e6f2ec03a
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fb-200d-1f4bc.png differ
diff --git a/img-microsoft-64/1f468-1f3fb-200d-1f527.png b/img-microsoft-64/1f468-1f3fb-200d-1f527.png
new file mode 100644
index 0000000000..81b144b3b4
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fb-200d-1f527.png differ
diff --git a/img-microsoft-64/1f468-1f3fb-200d-1f52c.png b/img-microsoft-64/1f468-1f3fb-200d-1f52c.png
new file mode 100644
index 0000000000..35c0c9a952
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fb-200d-1f52c.png differ
diff --git a/img-microsoft-64/1f468-1f3fb-200d-1f680.png b/img-microsoft-64/1f468-1f3fb-200d-1f680.png
new file mode 100644
index 0000000000..3802b907ed
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fb-200d-1f680.png differ
diff --git a/img-microsoft-64/1f468-1f3fb-200d-1f692.png b/img-microsoft-64/1f468-1f3fb-200d-1f692.png
new file mode 100644
index 0000000000..16a61dc0ec
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fb-200d-1f692.png differ
diff --git a/img-microsoft-64/1f468-1f3fb-200d-1f9af.png b/img-microsoft-64/1f468-1f3fb-200d-1f9af.png
new file mode 100644
index 0000000000..99a9cf5653
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fb-200d-1f9af.png differ
diff --git a/img-microsoft-64/1f468-1f3fb-200d-1f9b0.png b/img-microsoft-64/1f468-1f3fb-200d-1f9b0.png
new file mode 100644
index 0000000000..e51fa1f2cf
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fb-200d-1f9b0.png differ
diff --git a/img-microsoft-64/1f468-1f3fb-200d-1f9b1.png b/img-microsoft-64/1f468-1f3fb-200d-1f9b1.png
new file mode 100644
index 0000000000..f83515c4a0
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fb-200d-1f9b1.png differ
diff --git a/img-microsoft-64/1f468-1f3fb-200d-1f9b2.png b/img-microsoft-64/1f468-1f3fb-200d-1f9b2.png
new file mode 100644
index 0000000000..b3759fcf9f
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fb-200d-1f9b2.png differ
diff --git a/img-microsoft-64/1f468-1f3fb-200d-1f9b3.png b/img-microsoft-64/1f468-1f3fb-200d-1f9b3.png
new file mode 100644
index 0000000000..6f1f29b9e7
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fb-200d-1f9b3.png differ
diff --git a/img-microsoft-64/1f468-1f3fb-200d-1f9bc.png b/img-microsoft-64/1f468-1f3fb-200d-1f9bc.png
new file mode 100644
index 0000000000..a1add21e3e
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fb-200d-1f9bc.png differ
diff --git a/img-microsoft-64/1f468-1f3fb-200d-1f9bd.png b/img-microsoft-64/1f468-1f3fb-200d-1f9bd.png
new file mode 100644
index 0000000000..e36d9a1560
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fb-200d-1f9bd.png differ
diff --git a/img-microsoft-64/1f468-1f3fb-200d-2695-fe0f.png b/img-microsoft-64/1f468-1f3fb-200d-2695-fe0f.png
new file mode 100644
index 0000000000..fa2f40b6ee
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fb-200d-2695-fe0f.png differ
diff --git a/img-microsoft-64/1f468-1f3fb-200d-2696-fe0f.png b/img-microsoft-64/1f468-1f3fb-200d-2696-fe0f.png
new file mode 100644
index 0000000000..8a77408b38
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fb-200d-2696-fe0f.png differ
diff --git a/img-microsoft-64/1f468-1f3fb-200d-2708-fe0f.png b/img-microsoft-64/1f468-1f3fb-200d-2708-fe0f.png
new file mode 100644
index 0000000000..44ff4c0455
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fb-200d-2708-fe0f.png differ
diff --git a/img-microsoft-64/1f468-1f3fb.png b/img-microsoft-64/1f468-1f3fb.png
new file mode 100644
index 0000000000..2302ea8542
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fb.png differ
diff --git a/img-microsoft-64/1f468-1f3fc-200d-1f33e.png b/img-microsoft-64/1f468-1f3fc-200d-1f33e.png
new file mode 100644
index 0000000000..224915889e
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fc-200d-1f33e.png differ
diff --git a/img-microsoft-64/1f468-1f3fc-200d-1f373.png b/img-microsoft-64/1f468-1f3fc-200d-1f373.png
new file mode 100644
index 0000000000..ac3833cebb
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fc-200d-1f373.png differ
diff --git a/img-microsoft-64/1f468-1f3fc-200d-1f37c.png b/img-microsoft-64/1f468-1f3fc-200d-1f37c.png
new file mode 100644
index 0000000000..edf70b7891
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fc-200d-1f37c.png differ
diff --git a/img-microsoft-64/1f468-1f3fc-200d-1f393.png b/img-microsoft-64/1f468-1f3fc-200d-1f393.png
new file mode 100644
index 0000000000..f7b2ef26cb
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fc-200d-1f393.png differ
diff --git a/img-microsoft-64/1f468-1f3fc-200d-1f3a4.png b/img-microsoft-64/1f468-1f3fc-200d-1f3a4.png
new file mode 100644
index 0000000000..4b30c6846f
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fc-200d-1f3a4.png differ
diff --git a/img-microsoft-64/1f468-1f3fc-200d-1f3a8.png b/img-microsoft-64/1f468-1f3fc-200d-1f3a8.png
new file mode 100644
index 0000000000..df346feaff
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fc-200d-1f3a8.png differ
diff --git a/img-microsoft-64/1f468-1f3fc-200d-1f3eb.png b/img-microsoft-64/1f468-1f3fc-200d-1f3eb.png
new file mode 100644
index 0000000000..402cea15c7
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fc-200d-1f3eb.png differ
diff --git a/img-microsoft-64/1f468-1f3fc-200d-1f3ed.png b/img-microsoft-64/1f468-1f3fc-200d-1f3ed.png
new file mode 100644
index 0000000000..841e06c146
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fc-200d-1f3ed.png differ
diff --git a/img-microsoft-64/1f468-1f3fc-200d-1f4bc.png b/img-microsoft-64/1f468-1f3fc-200d-1f4bc.png
new file mode 100644
index 0000000000..24fe21246e
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fc-200d-1f4bc.png differ
diff --git a/img-microsoft-64/1f468-1f3fc-200d-1f527.png b/img-microsoft-64/1f468-1f3fc-200d-1f527.png
new file mode 100644
index 0000000000..b7989fb86f
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fc-200d-1f527.png differ
diff --git a/img-microsoft-64/1f468-1f3fc-200d-1f52c.png b/img-microsoft-64/1f468-1f3fc-200d-1f52c.png
new file mode 100644
index 0000000000..8fae04efee
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fc-200d-1f52c.png differ
diff --git a/img-microsoft-64/1f468-1f3fc-200d-1f680.png b/img-microsoft-64/1f468-1f3fc-200d-1f680.png
new file mode 100644
index 0000000000..aa4c726d06
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fc-200d-1f680.png differ
diff --git a/img-microsoft-64/1f468-1f3fc-200d-1f692.png b/img-microsoft-64/1f468-1f3fc-200d-1f692.png
new file mode 100644
index 0000000000..ca40bbb94e
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fc-200d-1f692.png differ
diff --git a/img-microsoft-64/1f468-1f3fc-200d-1f9af.png b/img-microsoft-64/1f468-1f3fc-200d-1f9af.png
new file mode 100644
index 0000000000..3d4bd970eb
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fc-200d-1f9af.png differ
diff --git a/img-microsoft-64/1f468-1f3fc-200d-1f9b0.png b/img-microsoft-64/1f468-1f3fc-200d-1f9b0.png
new file mode 100644
index 0000000000..61a562ec2b
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fc-200d-1f9b0.png differ
diff --git a/img-microsoft-64/1f468-1f3fc-200d-1f9b1.png b/img-microsoft-64/1f468-1f3fc-200d-1f9b1.png
new file mode 100644
index 0000000000..48e1e37aa2
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fc-200d-1f9b1.png differ
diff --git a/img-microsoft-64/1f468-1f3fc-200d-1f9b2.png b/img-microsoft-64/1f468-1f3fc-200d-1f9b2.png
new file mode 100644
index 0000000000..e420282bd1
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fc-200d-1f9b2.png differ
diff --git a/img-microsoft-64/1f468-1f3fc-200d-1f9b3.png b/img-microsoft-64/1f468-1f3fc-200d-1f9b3.png
new file mode 100644
index 0000000000..5c41bd0db9
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fc-200d-1f9b3.png differ
diff --git a/img-microsoft-64/1f468-1f3fc-200d-1f9bc.png b/img-microsoft-64/1f468-1f3fc-200d-1f9bc.png
new file mode 100644
index 0000000000..7dd1ba378c
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fc-200d-1f9bc.png differ
diff --git a/img-microsoft-64/1f468-1f3fc-200d-1f9bd.png b/img-microsoft-64/1f468-1f3fc-200d-1f9bd.png
new file mode 100644
index 0000000000..4049770c44
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fc-200d-1f9bd.png differ
diff --git a/img-microsoft-64/1f468-1f3fc-200d-2695-fe0f.png b/img-microsoft-64/1f468-1f3fc-200d-2695-fe0f.png
new file mode 100644
index 0000000000..fda09863be
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fc-200d-2695-fe0f.png differ
diff --git a/img-microsoft-64/1f468-1f3fc-200d-2696-fe0f.png b/img-microsoft-64/1f468-1f3fc-200d-2696-fe0f.png
new file mode 100644
index 0000000000..3ae74950d9
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fc-200d-2696-fe0f.png differ
diff --git a/img-microsoft-64/1f468-1f3fc-200d-2708-fe0f.png b/img-microsoft-64/1f468-1f3fc-200d-2708-fe0f.png
new file mode 100644
index 0000000000..afdbc43ac7
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fc-200d-2708-fe0f.png differ
diff --git a/img-microsoft-64/1f468-1f3fc.png b/img-microsoft-64/1f468-1f3fc.png
new file mode 100644
index 0000000000..93e9b11de7
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fc.png differ
diff --git a/img-microsoft-64/1f468-1f3fd-200d-1f33e.png b/img-microsoft-64/1f468-1f3fd-200d-1f33e.png
new file mode 100644
index 0000000000..b6dbadee48
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fd-200d-1f33e.png differ
diff --git a/img-microsoft-64/1f468-1f3fd-200d-1f373.png b/img-microsoft-64/1f468-1f3fd-200d-1f373.png
new file mode 100644
index 0000000000..de2c4d135b
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fd-200d-1f373.png differ
diff --git a/img-microsoft-64/1f468-1f3fd-200d-1f37c.png b/img-microsoft-64/1f468-1f3fd-200d-1f37c.png
new file mode 100644
index 0000000000..a636d615e2
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fd-200d-1f37c.png differ
diff --git a/img-microsoft-64/1f468-1f3fd-200d-1f393.png b/img-microsoft-64/1f468-1f3fd-200d-1f393.png
new file mode 100644
index 0000000000..706cd17a17
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fd-200d-1f393.png differ
diff --git a/img-microsoft-64/1f468-1f3fd-200d-1f3a4.png b/img-microsoft-64/1f468-1f3fd-200d-1f3a4.png
new file mode 100644
index 0000000000..91be3bd17d
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fd-200d-1f3a4.png differ
diff --git a/img-microsoft-64/1f468-1f3fd-200d-1f3a8.png b/img-microsoft-64/1f468-1f3fd-200d-1f3a8.png
new file mode 100644
index 0000000000..64a27802fc
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fd-200d-1f3a8.png differ
diff --git a/img-microsoft-64/1f468-1f3fd-200d-1f3eb.png b/img-microsoft-64/1f468-1f3fd-200d-1f3eb.png
new file mode 100644
index 0000000000..0c107becb3
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fd-200d-1f3eb.png differ
diff --git a/img-microsoft-64/1f468-1f3fd-200d-1f3ed.png b/img-microsoft-64/1f468-1f3fd-200d-1f3ed.png
new file mode 100644
index 0000000000..eb26547f65
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fd-200d-1f3ed.png differ
diff --git a/img-microsoft-64/1f468-1f3fd-200d-1f4bc.png b/img-microsoft-64/1f468-1f3fd-200d-1f4bc.png
new file mode 100644
index 0000000000..1d5cd4ea0b
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fd-200d-1f4bc.png differ
diff --git a/img-microsoft-64/1f468-1f3fd-200d-1f527.png b/img-microsoft-64/1f468-1f3fd-200d-1f527.png
new file mode 100644
index 0000000000..b69fea1d4e
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fd-200d-1f527.png differ
diff --git a/img-microsoft-64/1f468-1f3fd-200d-1f52c.png b/img-microsoft-64/1f468-1f3fd-200d-1f52c.png
new file mode 100644
index 0000000000..227d2e3816
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fd-200d-1f52c.png differ
diff --git a/img-microsoft-64/1f468-1f3fd-200d-1f680.png b/img-microsoft-64/1f468-1f3fd-200d-1f680.png
new file mode 100644
index 0000000000..bba9cc0389
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fd-200d-1f680.png differ
diff --git a/img-microsoft-64/1f468-1f3fd-200d-1f692.png b/img-microsoft-64/1f468-1f3fd-200d-1f692.png
new file mode 100644
index 0000000000..1cb56a9028
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fd-200d-1f692.png differ
diff --git a/img-microsoft-64/1f468-1f3fd-200d-1f9af.png b/img-microsoft-64/1f468-1f3fd-200d-1f9af.png
new file mode 100644
index 0000000000..ed72261274
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fd-200d-1f9af.png differ
diff --git a/img-microsoft-64/1f468-1f3fd-200d-1f9b0.png b/img-microsoft-64/1f468-1f3fd-200d-1f9b0.png
new file mode 100644
index 0000000000..74dbbcd4c1
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fd-200d-1f9b0.png differ
diff --git a/img-microsoft-64/1f468-1f3fd-200d-1f9b1.png b/img-microsoft-64/1f468-1f3fd-200d-1f9b1.png
new file mode 100644
index 0000000000..349455af9d
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fd-200d-1f9b1.png differ
diff --git a/img-microsoft-64/1f468-1f3fd-200d-1f9b2.png b/img-microsoft-64/1f468-1f3fd-200d-1f9b2.png
new file mode 100644
index 0000000000..a6d1b5bc0a
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fd-200d-1f9b2.png differ
diff --git a/img-microsoft-64/1f468-1f3fd-200d-1f9b3.png b/img-microsoft-64/1f468-1f3fd-200d-1f9b3.png
new file mode 100644
index 0000000000..5c3ea9214b
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fd-200d-1f9b3.png differ
diff --git a/img-microsoft-64/1f468-1f3fd-200d-1f9bc.png b/img-microsoft-64/1f468-1f3fd-200d-1f9bc.png
new file mode 100644
index 0000000000..61d6b6f104
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fd-200d-1f9bc.png differ
diff --git a/img-microsoft-64/1f468-1f3fd-200d-1f9bd.png b/img-microsoft-64/1f468-1f3fd-200d-1f9bd.png
new file mode 100644
index 0000000000..ae9dd7c30c
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fd-200d-1f9bd.png differ
diff --git a/img-microsoft-64/1f468-1f3fd-200d-2695-fe0f.png b/img-microsoft-64/1f468-1f3fd-200d-2695-fe0f.png
new file mode 100644
index 0000000000..0efbc71586
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fd-200d-2695-fe0f.png differ
diff --git a/img-microsoft-64/1f468-1f3fd-200d-2696-fe0f.png b/img-microsoft-64/1f468-1f3fd-200d-2696-fe0f.png
new file mode 100644
index 0000000000..07e8a97cec
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fd-200d-2696-fe0f.png differ
diff --git a/img-microsoft-64/1f468-1f3fd-200d-2708-fe0f.png b/img-microsoft-64/1f468-1f3fd-200d-2708-fe0f.png
new file mode 100644
index 0000000000..5dfb84763a
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fd-200d-2708-fe0f.png differ
diff --git a/img-microsoft-64/1f468-1f3fd.png b/img-microsoft-64/1f468-1f3fd.png
new file mode 100644
index 0000000000..9c800d2de1
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fd.png differ
diff --git a/img-microsoft-64/1f468-1f3fe-200d-1f33e.png b/img-microsoft-64/1f468-1f3fe-200d-1f33e.png
new file mode 100644
index 0000000000..ba3b581118
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fe-200d-1f33e.png differ
diff --git a/img-microsoft-64/1f468-1f3fe-200d-1f373.png b/img-microsoft-64/1f468-1f3fe-200d-1f373.png
new file mode 100644
index 0000000000..eadea16b1c
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fe-200d-1f373.png differ
diff --git a/img-microsoft-64/1f468-1f3fe-200d-1f37c.png b/img-microsoft-64/1f468-1f3fe-200d-1f37c.png
new file mode 100644
index 0000000000..925c3390ce
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fe-200d-1f37c.png differ
diff --git a/img-microsoft-64/1f468-1f3fe-200d-1f393.png b/img-microsoft-64/1f468-1f3fe-200d-1f393.png
new file mode 100644
index 0000000000..4f77224d9c
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fe-200d-1f393.png differ
diff --git a/img-microsoft-64/1f468-1f3fe-200d-1f3a4.png b/img-microsoft-64/1f468-1f3fe-200d-1f3a4.png
new file mode 100644
index 0000000000..99c9dd360c
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fe-200d-1f3a4.png differ
diff --git a/img-microsoft-64/1f468-1f3fe-200d-1f3a8.png b/img-microsoft-64/1f468-1f3fe-200d-1f3a8.png
new file mode 100644
index 0000000000..56a31ad256
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fe-200d-1f3a8.png differ
diff --git a/img-microsoft-64/1f468-1f3fe-200d-1f3eb.png b/img-microsoft-64/1f468-1f3fe-200d-1f3eb.png
new file mode 100644
index 0000000000..9e837a004a
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fe-200d-1f3eb.png differ
diff --git a/img-microsoft-64/1f468-1f3fe-200d-1f3ed.png b/img-microsoft-64/1f468-1f3fe-200d-1f3ed.png
new file mode 100644
index 0000000000..96f01b297d
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fe-200d-1f3ed.png differ
diff --git a/img-microsoft-64/1f468-1f3fe-200d-1f4bc.png b/img-microsoft-64/1f468-1f3fe-200d-1f4bc.png
new file mode 100644
index 0000000000..b58c33e3b1
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fe-200d-1f4bc.png differ
diff --git a/img-microsoft-64/1f468-1f3fe-200d-1f527.png b/img-microsoft-64/1f468-1f3fe-200d-1f527.png
new file mode 100644
index 0000000000..4e1aab6e14
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fe-200d-1f527.png differ
diff --git a/img-microsoft-64/1f468-1f3fe-200d-1f52c.png b/img-microsoft-64/1f468-1f3fe-200d-1f52c.png
new file mode 100644
index 0000000000..9dfce63aad
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fe-200d-1f52c.png differ
diff --git a/img-microsoft-64/1f468-1f3fe-200d-1f680.png b/img-microsoft-64/1f468-1f3fe-200d-1f680.png
new file mode 100644
index 0000000000..363190091c
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fe-200d-1f680.png differ
diff --git a/img-microsoft-64/1f468-1f3fe-200d-1f692.png b/img-microsoft-64/1f468-1f3fe-200d-1f692.png
new file mode 100644
index 0000000000..c2d4d8447a
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fe-200d-1f692.png differ
diff --git a/img-microsoft-64/1f468-1f3fe-200d-1f9af.png b/img-microsoft-64/1f468-1f3fe-200d-1f9af.png
new file mode 100644
index 0000000000..fcbc3c4204
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fe-200d-1f9af.png differ
diff --git a/img-microsoft-64/1f468-1f3fe-200d-1f9b0.png b/img-microsoft-64/1f468-1f3fe-200d-1f9b0.png
new file mode 100644
index 0000000000..d8ba34ccc4
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fe-200d-1f9b0.png differ
diff --git a/img-microsoft-64/1f468-1f3fe-200d-1f9b1.png b/img-microsoft-64/1f468-1f3fe-200d-1f9b1.png
new file mode 100644
index 0000000000..711a14015f
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fe-200d-1f9b1.png differ
diff --git a/img-microsoft-64/1f468-1f3fe-200d-1f9b2.png b/img-microsoft-64/1f468-1f3fe-200d-1f9b2.png
new file mode 100644
index 0000000000..23f28042ef
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fe-200d-1f9b2.png differ
diff --git a/img-microsoft-64/1f468-1f3fe-200d-1f9b3.png b/img-microsoft-64/1f468-1f3fe-200d-1f9b3.png
new file mode 100644
index 0000000000..548b10d0a7
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fe-200d-1f9b3.png differ
diff --git a/img-microsoft-64/1f468-1f3fe-200d-1f9bc.png b/img-microsoft-64/1f468-1f3fe-200d-1f9bc.png
new file mode 100644
index 0000000000..f5c8f1f353
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fe-200d-1f9bc.png differ
diff --git a/img-microsoft-64/1f468-1f3fe-200d-1f9bd.png b/img-microsoft-64/1f468-1f3fe-200d-1f9bd.png
new file mode 100644
index 0000000000..be6477234c
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fe-200d-1f9bd.png differ
diff --git a/img-microsoft-64/1f468-1f3fe-200d-2695-fe0f.png b/img-microsoft-64/1f468-1f3fe-200d-2695-fe0f.png
new file mode 100644
index 0000000000..35d824583c
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fe-200d-2695-fe0f.png differ
diff --git a/img-microsoft-64/1f468-1f3fe-200d-2696-fe0f.png b/img-microsoft-64/1f468-1f3fe-200d-2696-fe0f.png
new file mode 100644
index 0000000000..4c41d7f7a5
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fe-200d-2696-fe0f.png differ
diff --git a/img-microsoft-64/1f468-1f3fe-200d-2708-fe0f.png b/img-microsoft-64/1f468-1f3fe-200d-2708-fe0f.png
new file mode 100644
index 0000000000..580933bd3d
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fe-200d-2708-fe0f.png differ
diff --git a/img-microsoft-64/1f468-1f3fe.png b/img-microsoft-64/1f468-1f3fe.png
new file mode 100644
index 0000000000..3929ff434b
Binary files /dev/null and b/img-microsoft-64/1f468-1f3fe.png differ
diff --git a/img-microsoft-64/1f468-1f3ff-200d-1f33e.png b/img-microsoft-64/1f468-1f3ff-200d-1f33e.png
new file mode 100644
index 0000000000..9ddba4b355
Binary files /dev/null and b/img-microsoft-64/1f468-1f3ff-200d-1f33e.png differ
diff --git a/img-microsoft-64/1f468-1f3ff-200d-1f373.png b/img-microsoft-64/1f468-1f3ff-200d-1f373.png
new file mode 100644
index 0000000000..01af1602ec
Binary files /dev/null and b/img-microsoft-64/1f468-1f3ff-200d-1f373.png differ
diff --git a/img-microsoft-64/1f468-1f3ff-200d-1f37c.png b/img-microsoft-64/1f468-1f3ff-200d-1f37c.png
new file mode 100644
index 0000000000..4c77cbf114
Binary files /dev/null and b/img-microsoft-64/1f468-1f3ff-200d-1f37c.png differ
diff --git a/img-microsoft-64/1f468-1f3ff-200d-1f393.png b/img-microsoft-64/1f468-1f3ff-200d-1f393.png
new file mode 100644
index 0000000000..2f266e67e4
Binary files /dev/null and b/img-microsoft-64/1f468-1f3ff-200d-1f393.png differ
diff --git a/img-microsoft-64/1f468-1f3ff-200d-1f3a4.png b/img-microsoft-64/1f468-1f3ff-200d-1f3a4.png
new file mode 100644
index 0000000000..aa3ed759c8
Binary files /dev/null and b/img-microsoft-64/1f468-1f3ff-200d-1f3a4.png differ
diff --git a/img-microsoft-64/1f468-1f3ff-200d-1f3a8.png b/img-microsoft-64/1f468-1f3ff-200d-1f3a8.png
new file mode 100644
index 0000000000..1b9d7288fc
Binary files /dev/null and b/img-microsoft-64/1f468-1f3ff-200d-1f3a8.png differ
diff --git a/img-microsoft-64/1f468-1f3ff-200d-1f3eb.png b/img-microsoft-64/1f468-1f3ff-200d-1f3eb.png
new file mode 100644
index 0000000000..e7b97a1e63
Binary files /dev/null and b/img-microsoft-64/1f468-1f3ff-200d-1f3eb.png differ
diff --git a/img-microsoft-64/1f468-1f3ff-200d-1f3ed.png b/img-microsoft-64/1f468-1f3ff-200d-1f3ed.png
new file mode 100644
index 0000000000..1cfb977ea7
Binary files /dev/null and b/img-microsoft-64/1f468-1f3ff-200d-1f3ed.png differ
diff --git a/img-microsoft-64/1f468-1f3ff-200d-1f4bc.png b/img-microsoft-64/1f468-1f3ff-200d-1f4bc.png
new file mode 100644
index 0000000000..1aaac68183
Binary files /dev/null and b/img-microsoft-64/1f468-1f3ff-200d-1f4bc.png differ
diff --git a/img-microsoft-64/1f468-1f3ff-200d-1f527.png b/img-microsoft-64/1f468-1f3ff-200d-1f527.png
new file mode 100644
index 0000000000..7883517b7e
Binary files /dev/null and b/img-microsoft-64/1f468-1f3ff-200d-1f527.png differ
diff --git a/img-microsoft-64/1f468-1f3ff-200d-1f52c.png b/img-microsoft-64/1f468-1f3ff-200d-1f52c.png
new file mode 100644
index 0000000000..a974389c79
Binary files /dev/null and b/img-microsoft-64/1f468-1f3ff-200d-1f52c.png differ
diff --git a/img-microsoft-64/1f468-1f3ff-200d-1f680.png b/img-microsoft-64/1f468-1f3ff-200d-1f680.png
new file mode 100644
index 0000000000..30ffc63300
Binary files /dev/null and b/img-microsoft-64/1f468-1f3ff-200d-1f680.png differ
diff --git a/img-microsoft-64/1f468-1f3ff-200d-1f692.png b/img-microsoft-64/1f468-1f3ff-200d-1f692.png
new file mode 100644
index 0000000000..e3efba5d2b
Binary files /dev/null and b/img-microsoft-64/1f468-1f3ff-200d-1f692.png differ
diff --git a/img-microsoft-64/1f468-1f3ff-200d-1f9af.png b/img-microsoft-64/1f468-1f3ff-200d-1f9af.png
new file mode 100644
index 0000000000..a19dc46491
Binary files /dev/null and b/img-microsoft-64/1f468-1f3ff-200d-1f9af.png differ
diff --git a/img-microsoft-64/1f468-1f3ff-200d-1f9b0.png b/img-microsoft-64/1f468-1f3ff-200d-1f9b0.png
new file mode 100644
index 0000000000..0eccd137b2
Binary files /dev/null and b/img-microsoft-64/1f468-1f3ff-200d-1f9b0.png differ
diff --git a/img-microsoft-64/1f468-1f3ff-200d-1f9b1.png b/img-microsoft-64/1f468-1f3ff-200d-1f9b1.png
new file mode 100644
index 0000000000..f258c15891
Binary files /dev/null and b/img-microsoft-64/1f468-1f3ff-200d-1f9b1.png differ
diff --git a/img-microsoft-64/1f468-1f3ff-200d-1f9b2.png b/img-microsoft-64/1f468-1f3ff-200d-1f9b2.png
new file mode 100644
index 0000000000..049e5357f0
Binary files /dev/null and b/img-microsoft-64/1f468-1f3ff-200d-1f9b2.png differ
diff --git a/img-microsoft-64/1f468-1f3ff-200d-1f9b3.png b/img-microsoft-64/1f468-1f3ff-200d-1f9b3.png
new file mode 100644
index 0000000000..cca55df644
Binary files /dev/null and b/img-microsoft-64/1f468-1f3ff-200d-1f9b3.png differ
diff --git a/img-microsoft-64/1f468-1f3ff-200d-1f9bc.png b/img-microsoft-64/1f468-1f3ff-200d-1f9bc.png
new file mode 100644
index 0000000000..e13312ba1c
Binary files /dev/null and b/img-microsoft-64/1f468-1f3ff-200d-1f9bc.png differ
diff --git a/img-microsoft-64/1f468-1f3ff-200d-1f9bd.png b/img-microsoft-64/1f468-1f3ff-200d-1f9bd.png
new file mode 100644
index 0000000000..fbbdc66013
Binary files /dev/null and b/img-microsoft-64/1f468-1f3ff-200d-1f9bd.png differ
diff --git a/img-microsoft-64/1f468-1f3ff-200d-2695-fe0f.png b/img-microsoft-64/1f468-1f3ff-200d-2695-fe0f.png
new file mode 100644
index 0000000000..e651fdd3d9
Binary files /dev/null and b/img-microsoft-64/1f468-1f3ff-200d-2695-fe0f.png differ
diff --git a/img-microsoft-64/1f468-1f3ff-200d-2696-fe0f.png b/img-microsoft-64/1f468-1f3ff-200d-2696-fe0f.png
new file mode 100644
index 0000000000..2e6689c654
Binary files /dev/null and b/img-microsoft-64/1f468-1f3ff-200d-2696-fe0f.png differ
diff --git a/img-microsoft-64/1f468-1f3ff-200d-2708-fe0f.png b/img-microsoft-64/1f468-1f3ff-200d-2708-fe0f.png
new file mode 100644
index 0000000000..8424360166
Binary files /dev/null and b/img-microsoft-64/1f468-1f3ff-200d-2708-fe0f.png differ
diff --git a/img-microsoft-64/1f468-1f3ff.png b/img-microsoft-64/1f468-1f3ff.png
new file mode 100644
index 0000000000..81964991cf
Binary files /dev/null and b/img-microsoft-64/1f468-1f3ff.png differ
diff --git a/img-microsoft-64/1f468-200d-1f33e.png b/img-microsoft-64/1f468-200d-1f33e.png
new file mode 100644
index 0000000000..9f487a8b4e
Binary files /dev/null and b/img-microsoft-64/1f468-200d-1f33e.png differ
diff --git a/img-microsoft-64/1f468-200d-1f373.png b/img-microsoft-64/1f468-200d-1f373.png
new file mode 100644
index 0000000000..91ff66a120
Binary files /dev/null and b/img-microsoft-64/1f468-200d-1f373.png differ
diff --git a/img-microsoft-64/1f468-200d-1f37c.png b/img-microsoft-64/1f468-200d-1f37c.png
new file mode 100644
index 0000000000..1610e986d3
Binary files /dev/null and b/img-microsoft-64/1f468-200d-1f37c.png differ
diff --git a/img-microsoft-64/1f468-200d-1f393.png b/img-microsoft-64/1f468-200d-1f393.png
new file mode 100644
index 0000000000..6b7248f845
Binary files /dev/null and b/img-microsoft-64/1f468-200d-1f393.png differ
diff --git a/img-microsoft-64/1f468-200d-1f3a4.png b/img-microsoft-64/1f468-200d-1f3a4.png
new file mode 100644
index 0000000000..257e73f635
Binary files /dev/null and b/img-microsoft-64/1f468-200d-1f3a4.png differ
diff --git a/img-microsoft-64/1f468-200d-1f3a8.png b/img-microsoft-64/1f468-200d-1f3a8.png
new file mode 100644
index 0000000000..af16dda882
Binary files /dev/null and b/img-microsoft-64/1f468-200d-1f3a8.png differ
diff --git a/img-microsoft-64/1f468-200d-1f3eb.png b/img-microsoft-64/1f468-200d-1f3eb.png
new file mode 100644
index 0000000000..dcf50d90f1
Binary files /dev/null and b/img-microsoft-64/1f468-200d-1f3eb.png differ
diff --git a/img-microsoft-64/1f468-200d-1f3ed.png b/img-microsoft-64/1f468-200d-1f3ed.png
new file mode 100644
index 0000000000..a02b386777
Binary files /dev/null and b/img-microsoft-64/1f468-200d-1f3ed.png differ
diff --git a/img-microsoft-64/1f468-200d-1f4bc.png b/img-microsoft-64/1f468-200d-1f4bc.png
new file mode 100644
index 0000000000..779d3f5c9a
Binary files /dev/null and b/img-microsoft-64/1f468-200d-1f4bc.png differ
diff --git a/img-microsoft-64/1f468-200d-1f527.png b/img-microsoft-64/1f468-200d-1f527.png
new file mode 100644
index 0000000000..255bbd8230
Binary files /dev/null and b/img-microsoft-64/1f468-200d-1f527.png differ
diff --git a/img-microsoft-64/1f468-200d-1f52c.png b/img-microsoft-64/1f468-200d-1f52c.png
new file mode 100644
index 0000000000..842594f17c
Binary files /dev/null and b/img-microsoft-64/1f468-200d-1f52c.png differ
diff --git a/img-microsoft-64/1f468-200d-1f680.png b/img-microsoft-64/1f468-200d-1f680.png
new file mode 100644
index 0000000000..a12eb865e3
Binary files /dev/null and b/img-microsoft-64/1f468-200d-1f680.png differ
diff --git a/img-microsoft-64/1f468-200d-1f692.png b/img-microsoft-64/1f468-200d-1f692.png
new file mode 100644
index 0000000000..712f4cc52b
Binary files /dev/null and b/img-microsoft-64/1f468-200d-1f692.png differ
diff --git a/img-microsoft-64/1f468-200d-1f9af.png b/img-microsoft-64/1f468-200d-1f9af.png
new file mode 100644
index 0000000000..e99897219d
Binary files /dev/null and b/img-microsoft-64/1f468-200d-1f9af.png differ
diff --git a/img-microsoft-64/1f468-200d-1f9b0.png b/img-microsoft-64/1f468-200d-1f9b0.png
new file mode 100644
index 0000000000..39ea75996e
Binary files /dev/null and b/img-microsoft-64/1f468-200d-1f9b0.png differ
diff --git a/img-microsoft-64/1f468-200d-1f9b1.png b/img-microsoft-64/1f468-200d-1f9b1.png
new file mode 100644
index 0000000000..3e0902cb9f
Binary files /dev/null and b/img-microsoft-64/1f468-200d-1f9b1.png differ
diff --git a/img-microsoft-64/1f468-200d-1f9b2.png b/img-microsoft-64/1f468-200d-1f9b2.png
new file mode 100644
index 0000000000..3babc24761
Binary files /dev/null and b/img-microsoft-64/1f468-200d-1f9b2.png differ
diff --git a/img-microsoft-64/1f468-200d-1f9b3.png b/img-microsoft-64/1f468-200d-1f9b3.png
new file mode 100644
index 0000000000..1481ad509b
Binary files /dev/null and b/img-microsoft-64/1f468-200d-1f9b3.png differ
diff --git a/img-microsoft-64/1f468-200d-1f9bc.png b/img-microsoft-64/1f468-200d-1f9bc.png
new file mode 100644
index 0000000000..ca15ef65b5
Binary files /dev/null and b/img-microsoft-64/1f468-200d-1f9bc.png differ
diff --git a/img-microsoft-64/1f468-200d-1f9bd.png b/img-microsoft-64/1f468-200d-1f9bd.png
new file mode 100644
index 0000000000..9deee98809
Binary files /dev/null and b/img-microsoft-64/1f468-200d-1f9bd.png differ
diff --git a/img-microsoft-64/1f468-200d-2695-fe0f.png b/img-microsoft-64/1f468-200d-2695-fe0f.png
new file mode 100644
index 0000000000..176d232297
Binary files /dev/null and b/img-microsoft-64/1f468-200d-2695-fe0f.png differ
diff --git a/img-microsoft-64/1f468-200d-2696-fe0f.png b/img-microsoft-64/1f468-200d-2696-fe0f.png
new file mode 100644
index 0000000000..d4650d9db7
Binary files /dev/null and b/img-microsoft-64/1f468-200d-2696-fe0f.png differ
diff --git a/img-microsoft-64/1f468-200d-2708-fe0f.png b/img-microsoft-64/1f468-200d-2708-fe0f.png
new file mode 100644
index 0000000000..315a594e0c
Binary files /dev/null and b/img-microsoft-64/1f468-200d-2708-fe0f.png differ
diff --git a/img-microsoft-64/1f468.png b/img-microsoft-64/1f468.png
new file mode 100644
index 0000000000..d88a238551
Binary files /dev/null and b/img-microsoft-64/1f468.png differ
diff --git a/img-microsoft-64/1f469-1f3fb-200d-1f33e.png b/img-microsoft-64/1f469-1f3fb-200d-1f33e.png
new file mode 100644
index 0000000000..5c020836f4
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fb-200d-1f33e.png differ
diff --git a/img-microsoft-64/1f469-1f3fb-200d-1f373.png b/img-microsoft-64/1f469-1f3fb-200d-1f373.png
new file mode 100644
index 0000000000..929563cb98
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fb-200d-1f373.png differ
diff --git a/img-microsoft-64/1f469-1f3fb-200d-1f37c.png b/img-microsoft-64/1f469-1f3fb-200d-1f37c.png
new file mode 100644
index 0000000000..a6cce087ba
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fb-200d-1f37c.png differ
diff --git a/img-microsoft-64/1f469-1f3fb-200d-1f393.png b/img-microsoft-64/1f469-1f3fb-200d-1f393.png
new file mode 100644
index 0000000000..3398765d08
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fb-200d-1f393.png differ
diff --git a/img-microsoft-64/1f469-1f3fb-200d-1f3a4.png b/img-microsoft-64/1f469-1f3fb-200d-1f3a4.png
new file mode 100644
index 0000000000..8bdac10573
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fb-200d-1f3a4.png differ
diff --git a/img-microsoft-64/1f469-1f3fb-200d-1f3a8.png b/img-microsoft-64/1f469-1f3fb-200d-1f3a8.png
new file mode 100644
index 0000000000..e215311316
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fb-200d-1f3a8.png differ
diff --git a/img-microsoft-64/1f469-1f3fb-200d-1f3eb.png b/img-microsoft-64/1f469-1f3fb-200d-1f3eb.png
new file mode 100644
index 0000000000..8660692a01
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fb-200d-1f3eb.png differ
diff --git a/img-microsoft-64/1f469-1f3fb-200d-1f3ed.png b/img-microsoft-64/1f469-1f3fb-200d-1f3ed.png
new file mode 100644
index 0000000000..6371a0bb98
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fb-200d-1f3ed.png differ
diff --git a/img-microsoft-64/1f469-1f3fb-200d-1f4bc.png b/img-microsoft-64/1f469-1f3fb-200d-1f4bc.png
new file mode 100644
index 0000000000..9ad0469fa2
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fb-200d-1f4bc.png differ
diff --git a/img-microsoft-64/1f469-1f3fb-200d-1f527.png b/img-microsoft-64/1f469-1f3fb-200d-1f527.png
new file mode 100644
index 0000000000..229ba34ae9
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fb-200d-1f527.png differ
diff --git a/img-microsoft-64/1f469-1f3fb-200d-1f52c.png b/img-microsoft-64/1f469-1f3fb-200d-1f52c.png
new file mode 100644
index 0000000000..ffa16dd3a5
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fb-200d-1f52c.png differ
diff --git a/img-microsoft-64/1f469-1f3fb-200d-1f680.png b/img-microsoft-64/1f469-1f3fb-200d-1f680.png
new file mode 100644
index 0000000000..c33264fee1
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fb-200d-1f680.png differ
diff --git a/img-microsoft-64/1f469-1f3fb-200d-1f692.png b/img-microsoft-64/1f469-1f3fb-200d-1f692.png
new file mode 100644
index 0000000000..86b60cac7b
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fb-200d-1f692.png differ
diff --git a/img-microsoft-64/1f469-1f3fb-200d-1f9af.png b/img-microsoft-64/1f469-1f3fb-200d-1f9af.png
new file mode 100644
index 0000000000..1313a263d3
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fb-200d-1f9af.png differ
diff --git a/img-microsoft-64/1f469-1f3fb-200d-1f9b0.png b/img-microsoft-64/1f469-1f3fb-200d-1f9b0.png
new file mode 100644
index 0000000000..4c67fd9f00
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fb-200d-1f9b0.png differ
diff --git a/img-microsoft-64/1f469-1f3fb-200d-1f9b1.png b/img-microsoft-64/1f469-1f3fb-200d-1f9b1.png
new file mode 100644
index 0000000000..4f6da530c6
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fb-200d-1f9b1.png differ
diff --git a/img-microsoft-64/1f469-1f3fb-200d-1f9b2.png b/img-microsoft-64/1f469-1f3fb-200d-1f9b2.png
new file mode 100644
index 0000000000..9b8b0e1ae6
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fb-200d-1f9b2.png differ
diff --git a/img-microsoft-64/1f469-1f3fb-200d-1f9b3.png b/img-microsoft-64/1f469-1f3fb-200d-1f9b3.png
new file mode 100644
index 0000000000..9bd2bf51be
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fb-200d-1f9b3.png differ
diff --git a/img-microsoft-64/1f469-1f3fb-200d-1f9bc.png b/img-microsoft-64/1f469-1f3fb-200d-1f9bc.png
new file mode 100644
index 0000000000..410dc67d6e
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fb-200d-1f9bc.png differ
diff --git a/img-microsoft-64/1f469-1f3fb-200d-1f9bd.png b/img-microsoft-64/1f469-1f3fb-200d-1f9bd.png
new file mode 100644
index 0000000000..d8b5787157
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fb-200d-1f9bd.png differ
diff --git a/img-microsoft-64/1f469-1f3fb-200d-2695-fe0f.png b/img-microsoft-64/1f469-1f3fb-200d-2695-fe0f.png
new file mode 100644
index 0000000000..f6c403fbcf
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fb-200d-2695-fe0f.png differ
diff --git a/img-microsoft-64/1f469-1f3fb-200d-2696-fe0f.png b/img-microsoft-64/1f469-1f3fb-200d-2696-fe0f.png
new file mode 100644
index 0000000000..84c6158e9a
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fb-200d-2696-fe0f.png differ
diff --git a/img-microsoft-64/1f469-1f3fb-200d-2708-fe0f.png b/img-microsoft-64/1f469-1f3fb-200d-2708-fe0f.png
new file mode 100644
index 0000000000..87c9c2eb9e
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fb-200d-2708-fe0f.png differ
diff --git a/img-microsoft-64/1f469-1f3fb.png b/img-microsoft-64/1f469-1f3fb.png
new file mode 100644
index 0000000000..d006a0130a
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fb.png differ
diff --git a/img-microsoft-64/1f469-1f3fc-200d-1f33e.png b/img-microsoft-64/1f469-1f3fc-200d-1f33e.png
new file mode 100644
index 0000000000..81c22c9431
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fc-200d-1f33e.png differ
diff --git a/img-microsoft-64/1f469-1f3fc-200d-1f373.png b/img-microsoft-64/1f469-1f3fc-200d-1f373.png
new file mode 100644
index 0000000000..bed4c9565b
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fc-200d-1f373.png differ
diff --git a/img-microsoft-64/1f469-1f3fc-200d-1f37c.png b/img-microsoft-64/1f469-1f3fc-200d-1f37c.png
new file mode 100644
index 0000000000..db45ae0541
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fc-200d-1f37c.png differ
diff --git a/img-microsoft-64/1f469-1f3fc-200d-1f393.png b/img-microsoft-64/1f469-1f3fc-200d-1f393.png
new file mode 100644
index 0000000000..c26e4ff798
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fc-200d-1f393.png differ
diff --git a/img-microsoft-64/1f469-1f3fc-200d-1f3a4.png b/img-microsoft-64/1f469-1f3fc-200d-1f3a4.png
new file mode 100644
index 0000000000..e88934c661
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fc-200d-1f3a4.png differ
diff --git a/img-microsoft-64/1f469-1f3fc-200d-1f3a8.png b/img-microsoft-64/1f469-1f3fc-200d-1f3a8.png
new file mode 100644
index 0000000000..6b53b7e381
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fc-200d-1f3a8.png differ
diff --git a/img-microsoft-64/1f469-1f3fc-200d-1f3eb.png b/img-microsoft-64/1f469-1f3fc-200d-1f3eb.png
new file mode 100644
index 0000000000..8751dc7e00
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fc-200d-1f3eb.png differ
diff --git a/img-microsoft-64/1f469-1f3fc-200d-1f3ed.png b/img-microsoft-64/1f469-1f3fc-200d-1f3ed.png
new file mode 100644
index 0000000000..9dd1b827b1
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fc-200d-1f3ed.png differ
diff --git a/img-microsoft-64/1f469-1f3fc-200d-1f4bc.png b/img-microsoft-64/1f469-1f3fc-200d-1f4bc.png
new file mode 100644
index 0000000000..1a5af3fd42
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fc-200d-1f4bc.png differ
diff --git a/img-microsoft-64/1f469-1f3fc-200d-1f527.png b/img-microsoft-64/1f469-1f3fc-200d-1f527.png
new file mode 100644
index 0000000000..d50d78f881
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fc-200d-1f527.png differ
diff --git a/img-microsoft-64/1f469-1f3fc-200d-1f52c.png b/img-microsoft-64/1f469-1f3fc-200d-1f52c.png
new file mode 100644
index 0000000000..bcd4467aba
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fc-200d-1f52c.png differ
diff --git a/img-microsoft-64/1f469-1f3fc-200d-1f680.png b/img-microsoft-64/1f469-1f3fc-200d-1f680.png
new file mode 100644
index 0000000000..ef66684e93
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fc-200d-1f680.png differ
diff --git a/img-microsoft-64/1f469-1f3fc-200d-1f692.png b/img-microsoft-64/1f469-1f3fc-200d-1f692.png
new file mode 100644
index 0000000000..189586d28a
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fc-200d-1f692.png differ
diff --git a/img-microsoft-64/1f469-1f3fc-200d-1f9af.png b/img-microsoft-64/1f469-1f3fc-200d-1f9af.png
new file mode 100644
index 0000000000..4a47e1745b
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fc-200d-1f9af.png differ
diff --git a/img-microsoft-64/1f469-1f3fc-200d-1f9b0.png b/img-microsoft-64/1f469-1f3fc-200d-1f9b0.png
new file mode 100644
index 0000000000..4805756dfa
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fc-200d-1f9b0.png differ
diff --git a/img-microsoft-64/1f469-1f3fc-200d-1f9b1.png b/img-microsoft-64/1f469-1f3fc-200d-1f9b1.png
new file mode 100644
index 0000000000..50965c091c
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fc-200d-1f9b1.png differ
diff --git a/img-microsoft-64/1f469-1f3fc-200d-1f9b2.png b/img-microsoft-64/1f469-1f3fc-200d-1f9b2.png
new file mode 100644
index 0000000000..cfa6b76290
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fc-200d-1f9b2.png differ
diff --git a/img-microsoft-64/1f469-1f3fc-200d-1f9b3.png b/img-microsoft-64/1f469-1f3fc-200d-1f9b3.png
new file mode 100644
index 0000000000..bf15849440
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fc-200d-1f9b3.png differ
diff --git a/img-microsoft-64/1f469-1f3fc-200d-1f9bc.png b/img-microsoft-64/1f469-1f3fc-200d-1f9bc.png
new file mode 100644
index 0000000000..63b9b7d81e
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fc-200d-1f9bc.png differ
diff --git a/img-microsoft-64/1f469-1f3fc-200d-1f9bd.png b/img-microsoft-64/1f469-1f3fc-200d-1f9bd.png
new file mode 100644
index 0000000000..5dc683deae
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fc-200d-1f9bd.png differ
diff --git a/img-microsoft-64/1f469-1f3fc-200d-2695-fe0f.png b/img-microsoft-64/1f469-1f3fc-200d-2695-fe0f.png
new file mode 100644
index 0000000000..64750aa7dc
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fc-200d-2695-fe0f.png differ
diff --git a/img-microsoft-64/1f469-1f3fc-200d-2696-fe0f.png b/img-microsoft-64/1f469-1f3fc-200d-2696-fe0f.png
new file mode 100644
index 0000000000..70fdb682bb
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fc-200d-2696-fe0f.png differ
diff --git a/img-microsoft-64/1f469-1f3fc-200d-2708-fe0f.png b/img-microsoft-64/1f469-1f3fc-200d-2708-fe0f.png
new file mode 100644
index 0000000000..e86589dd9f
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fc-200d-2708-fe0f.png differ
diff --git a/img-microsoft-64/1f469-1f3fc.png b/img-microsoft-64/1f469-1f3fc.png
new file mode 100644
index 0000000000..b375e6f01c
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fc.png differ
diff --git a/img-microsoft-64/1f469-1f3fd-200d-1f33e.png b/img-microsoft-64/1f469-1f3fd-200d-1f33e.png
new file mode 100644
index 0000000000..8a2ab1af04
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fd-200d-1f33e.png differ
diff --git a/img-microsoft-64/1f469-1f3fd-200d-1f373.png b/img-microsoft-64/1f469-1f3fd-200d-1f373.png
new file mode 100644
index 0000000000..3d1c46a9d3
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fd-200d-1f373.png differ
diff --git a/img-microsoft-64/1f469-1f3fd-200d-1f37c.png b/img-microsoft-64/1f469-1f3fd-200d-1f37c.png
new file mode 100644
index 0000000000..17fe85b223
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fd-200d-1f37c.png differ
diff --git a/img-microsoft-64/1f469-1f3fd-200d-1f393.png b/img-microsoft-64/1f469-1f3fd-200d-1f393.png
new file mode 100644
index 0000000000..79491a9cac
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fd-200d-1f393.png differ
diff --git a/img-microsoft-64/1f469-1f3fd-200d-1f3a4.png b/img-microsoft-64/1f469-1f3fd-200d-1f3a4.png
new file mode 100644
index 0000000000..a9804e2649
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fd-200d-1f3a4.png differ
diff --git a/img-microsoft-64/1f469-1f3fd-200d-1f3a8.png b/img-microsoft-64/1f469-1f3fd-200d-1f3a8.png
new file mode 100644
index 0000000000..8c3d275a52
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fd-200d-1f3a8.png differ
diff --git a/img-microsoft-64/1f469-1f3fd-200d-1f3eb.png b/img-microsoft-64/1f469-1f3fd-200d-1f3eb.png
new file mode 100644
index 0000000000..92e5873222
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fd-200d-1f3eb.png differ
diff --git a/img-microsoft-64/1f469-1f3fd-200d-1f3ed.png b/img-microsoft-64/1f469-1f3fd-200d-1f3ed.png
new file mode 100644
index 0000000000..1e384ac2f9
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fd-200d-1f3ed.png differ
diff --git a/img-microsoft-64/1f469-1f3fd-200d-1f4bc.png b/img-microsoft-64/1f469-1f3fd-200d-1f4bc.png
new file mode 100644
index 0000000000..d3d13af36b
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fd-200d-1f4bc.png differ
diff --git a/img-microsoft-64/1f469-1f3fd-200d-1f527.png b/img-microsoft-64/1f469-1f3fd-200d-1f527.png
new file mode 100644
index 0000000000..e3258bd4c2
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fd-200d-1f527.png differ
diff --git a/img-microsoft-64/1f469-1f3fd-200d-1f52c.png b/img-microsoft-64/1f469-1f3fd-200d-1f52c.png
new file mode 100644
index 0000000000..55513ac3a8
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fd-200d-1f52c.png differ
diff --git a/img-microsoft-64/1f469-1f3fd-200d-1f680.png b/img-microsoft-64/1f469-1f3fd-200d-1f680.png
new file mode 100644
index 0000000000..1b8fb69562
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fd-200d-1f680.png differ
diff --git a/img-microsoft-64/1f469-1f3fd-200d-1f692.png b/img-microsoft-64/1f469-1f3fd-200d-1f692.png
new file mode 100644
index 0000000000..2a43445b64
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fd-200d-1f692.png differ
diff --git a/img-microsoft-64/1f469-1f3fd-200d-1f9af.png b/img-microsoft-64/1f469-1f3fd-200d-1f9af.png
new file mode 100644
index 0000000000..9123cc0867
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fd-200d-1f9af.png differ
diff --git a/img-microsoft-64/1f469-1f3fd-200d-1f9b0.png b/img-microsoft-64/1f469-1f3fd-200d-1f9b0.png
new file mode 100644
index 0000000000..4639713d86
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fd-200d-1f9b0.png differ
diff --git a/img-microsoft-64/1f469-1f3fd-200d-1f9b1.png b/img-microsoft-64/1f469-1f3fd-200d-1f9b1.png
new file mode 100644
index 0000000000..1d5db6125a
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fd-200d-1f9b1.png differ
diff --git a/img-microsoft-64/1f469-1f3fd-200d-1f9b2.png b/img-microsoft-64/1f469-1f3fd-200d-1f9b2.png
new file mode 100644
index 0000000000..89e0818c73
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fd-200d-1f9b2.png differ
diff --git a/img-microsoft-64/1f469-1f3fd-200d-1f9b3.png b/img-microsoft-64/1f469-1f3fd-200d-1f9b3.png
new file mode 100644
index 0000000000..99d3e2fba3
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fd-200d-1f9b3.png differ
diff --git a/img-microsoft-64/1f469-1f3fd-200d-1f9bc.png b/img-microsoft-64/1f469-1f3fd-200d-1f9bc.png
new file mode 100644
index 0000000000..79a282d21f
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fd-200d-1f9bc.png differ
diff --git a/img-microsoft-64/1f469-1f3fd-200d-1f9bd.png b/img-microsoft-64/1f469-1f3fd-200d-1f9bd.png
new file mode 100644
index 0000000000..abe155d46a
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fd-200d-1f9bd.png differ
diff --git a/img-microsoft-64/1f469-1f3fd-200d-2695-fe0f.png b/img-microsoft-64/1f469-1f3fd-200d-2695-fe0f.png
new file mode 100644
index 0000000000..376b95bc4b
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fd-200d-2695-fe0f.png differ
diff --git a/img-microsoft-64/1f469-1f3fd-200d-2696-fe0f.png b/img-microsoft-64/1f469-1f3fd-200d-2696-fe0f.png
new file mode 100644
index 0000000000..adc7d92051
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fd-200d-2696-fe0f.png differ
diff --git a/img-microsoft-64/1f469-1f3fd-200d-2708-fe0f.png b/img-microsoft-64/1f469-1f3fd-200d-2708-fe0f.png
new file mode 100644
index 0000000000..694f371724
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fd-200d-2708-fe0f.png differ
diff --git a/img-microsoft-64/1f469-1f3fd.png b/img-microsoft-64/1f469-1f3fd.png
new file mode 100644
index 0000000000..29dd7d8f89
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fd.png differ
diff --git a/img-microsoft-64/1f469-1f3fe-200d-1f33e.png b/img-microsoft-64/1f469-1f3fe-200d-1f33e.png
new file mode 100644
index 0000000000..fd28d47f94
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fe-200d-1f33e.png differ
diff --git a/img-microsoft-64/1f469-1f3fe-200d-1f373.png b/img-microsoft-64/1f469-1f3fe-200d-1f373.png
new file mode 100644
index 0000000000..3faea5ea38
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fe-200d-1f373.png differ
diff --git a/img-microsoft-64/1f469-1f3fe-200d-1f37c.png b/img-microsoft-64/1f469-1f3fe-200d-1f37c.png
new file mode 100644
index 0000000000..738916baa1
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fe-200d-1f37c.png differ
diff --git a/img-microsoft-64/1f469-1f3fe-200d-1f393.png b/img-microsoft-64/1f469-1f3fe-200d-1f393.png
new file mode 100644
index 0000000000..f1a8a3c789
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fe-200d-1f393.png differ
diff --git a/img-microsoft-64/1f469-1f3fe-200d-1f3a4.png b/img-microsoft-64/1f469-1f3fe-200d-1f3a4.png
new file mode 100644
index 0000000000..c6770473df
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fe-200d-1f3a4.png differ
diff --git a/img-microsoft-64/1f469-1f3fe-200d-1f3a8.png b/img-microsoft-64/1f469-1f3fe-200d-1f3a8.png
new file mode 100644
index 0000000000..9eb6307fff
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fe-200d-1f3a8.png differ
diff --git a/img-microsoft-64/1f469-1f3fe-200d-1f3eb.png b/img-microsoft-64/1f469-1f3fe-200d-1f3eb.png
new file mode 100644
index 0000000000..88cf892f00
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fe-200d-1f3eb.png differ
diff --git a/img-microsoft-64/1f469-1f3fe-200d-1f3ed.png b/img-microsoft-64/1f469-1f3fe-200d-1f3ed.png
new file mode 100644
index 0000000000..959c1d51b0
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fe-200d-1f3ed.png differ
diff --git a/img-microsoft-64/1f469-1f3fe-200d-1f4bc.png b/img-microsoft-64/1f469-1f3fe-200d-1f4bc.png
new file mode 100644
index 0000000000..0e4bbca8d2
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fe-200d-1f4bc.png differ
diff --git a/img-microsoft-64/1f469-1f3fe-200d-1f527.png b/img-microsoft-64/1f469-1f3fe-200d-1f527.png
new file mode 100644
index 0000000000..f3ff0446db
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fe-200d-1f527.png differ
diff --git a/img-microsoft-64/1f469-1f3fe-200d-1f52c.png b/img-microsoft-64/1f469-1f3fe-200d-1f52c.png
new file mode 100644
index 0000000000..69a361502a
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fe-200d-1f52c.png differ
diff --git a/img-microsoft-64/1f469-1f3fe-200d-1f680.png b/img-microsoft-64/1f469-1f3fe-200d-1f680.png
new file mode 100644
index 0000000000..4a11cd7dc4
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fe-200d-1f680.png differ
diff --git a/img-microsoft-64/1f469-1f3fe-200d-1f692.png b/img-microsoft-64/1f469-1f3fe-200d-1f692.png
new file mode 100644
index 0000000000..09581a5e2b
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fe-200d-1f692.png differ
diff --git a/img-microsoft-64/1f469-1f3fe-200d-1f9af.png b/img-microsoft-64/1f469-1f3fe-200d-1f9af.png
new file mode 100644
index 0000000000..568dbbbd97
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fe-200d-1f9af.png differ
diff --git a/img-microsoft-64/1f469-1f3fe-200d-1f9b0.png b/img-microsoft-64/1f469-1f3fe-200d-1f9b0.png
new file mode 100644
index 0000000000..487c7e7928
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fe-200d-1f9b0.png differ
diff --git a/img-microsoft-64/1f469-1f3fe-200d-1f9b1.png b/img-microsoft-64/1f469-1f3fe-200d-1f9b1.png
new file mode 100644
index 0000000000..ce2ad79296
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fe-200d-1f9b1.png differ
diff --git a/img-microsoft-64/1f469-1f3fe-200d-1f9b2.png b/img-microsoft-64/1f469-1f3fe-200d-1f9b2.png
new file mode 100644
index 0000000000..ae56854742
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fe-200d-1f9b2.png differ
diff --git a/img-microsoft-64/1f469-1f3fe-200d-1f9b3.png b/img-microsoft-64/1f469-1f3fe-200d-1f9b3.png
new file mode 100644
index 0000000000..aec6b5b6ec
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fe-200d-1f9b3.png differ
diff --git a/img-microsoft-64/1f469-1f3fe-200d-1f9bc.png b/img-microsoft-64/1f469-1f3fe-200d-1f9bc.png
new file mode 100644
index 0000000000..ceb99b1635
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fe-200d-1f9bc.png differ
diff --git a/img-microsoft-64/1f469-1f3fe-200d-1f9bd.png b/img-microsoft-64/1f469-1f3fe-200d-1f9bd.png
new file mode 100644
index 0000000000..a9ca0bc701
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fe-200d-1f9bd.png differ
diff --git a/img-microsoft-64/1f469-1f3fe-200d-2695-fe0f.png b/img-microsoft-64/1f469-1f3fe-200d-2695-fe0f.png
new file mode 100644
index 0000000000..f1186ce155
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fe-200d-2695-fe0f.png differ
diff --git a/img-microsoft-64/1f469-1f3fe-200d-2696-fe0f.png b/img-microsoft-64/1f469-1f3fe-200d-2696-fe0f.png
new file mode 100644
index 0000000000..f930de6576
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fe-200d-2696-fe0f.png differ
diff --git a/img-microsoft-64/1f469-1f3fe-200d-2708-fe0f.png b/img-microsoft-64/1f469-1f3fe-200d-2708-fe0f.png
new file mode 100644
index 0000000000..e711136684
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fe-200d-2708-fe0f.png differ
diff --git a/img-microsoft-64/1f469-1f3fe.png b/img-microsoft-64/1f469-1f3fe.png
new file mode 100644
index 0000000000..001cd8460b
Binary files /dev/null and b/img-microsoft-64/1f469-1f3fe.png differ
diff --git a/img-microsoft-64/1f469-1f3ff-200d-1f33e.png b/img-microsoft-64/1f469-1f3ff-200d-1f33e.png
new file mode 100644
index 0000000000..5b20d1eaef
Binary files /dev/null and b/img-microsoft-64/1f469-1f3ff-200d-1f33e.png differ
diff --git a/img-microsoft-64/1f469-1f3ff-200d-1f373.png b/img-microsoft-64/1f469-1f3ff-200d-1f373.png
new file mode 100644
index 0000000000..9d26bd8a05
Binary files /dev/null and b/img-microsoft-64/1f469-1f3ff-200d-1f373.png differ
diff --git a/img-microsoft-64/1f469-1f3ff-200d-1f37c.png b/img-microsoft-64/1f469-1f3ff-200d-1f37c.png
new file mode 100644
index 0000000000..de234309b3
Binary files /dev/null and b/img-microsoft-64/1f469-1f3ff-200d-1f37c.png differ
diff --git a/img-microsoft-64/1f469-1f3ff-200d-1f393.png b/img-microsoft-64/1f469-1f3ff-200d-1f393.png
new file mode 100644
index 0000000000..3805504885
Binary files /dev/null and b/img-microsoft-64/1f469-1f3ff-200d-1f393.png differ
diff --git a/img-microsoft-64/1f469-1f3ff-200d-1f3a4.png b/img-microsoft-64/1f469-1f3ff-200d-1f3a4.png
new file mode 100644
index 0000000000..843b7d5d88
Binary files /dev/null and b/img-microsoft-64/1f469-1f3ff-200d-1f3a4.png differ
diff --git a/img-microsoft-64/1f469-1f3ff-200d-1f3a8.png b/img-microsoft-64/1f469-1f3ff-200d-1f3a8.png
new file mode 100644
index 0000000000..5c8a13902f
Binary files /dev/null and b/img-microsoft-64/1f469-1f3ff-200d-1f3a8.png differ
diff --git a/img-microsoft-64/1f469-1f3ff-200d-1f3eb.png b/img-microsoft-64/1f469-1f3ff-200d-1f3eb.png
new file mode 100644
index 0000000000..4e8afe5f85
Binary files /dev/null and b/img-microsoft-64/1f469-1f3ff-200d-1f3eb.png differ
diff --git a/img-microsoft-64/1f469-1f3ff-200d-1f3ed.png b/img-microsoft-64/1f469-1f3ff-200d-1f3ed.png
new file mode 100644
index 0000000000..59d3f028a6
Binary files /dev/null and b/img-microsoft-64/1f469-1f3ff-200d-1f3ed.png differ
diff --git a/img-microsoft-64/1f469-1f3ff-200d-1f4bc.png b/img-microsoft-64/1f469-1f3ff-200d-1f4bc.png
new file mode 100644
index 0000000000..61417384e9
Binary files /dev/null and b/img-microsoft-64/1f469-1f3ff-200d-1f4bc.png differ
diff --git a/img-microsoft-64/1f469-1f3ff-200d-1f527.png b/img-microsoft-64/1f469-1f3ff-200d-1f527.png
new file mode 100644
index 0000000000..5f0de1df70
Binary files /dev/null and b/img-microsoft-64/1f469-1f3ff-200d-1f527.png differ
diff --git a/img-microsoft-64/1f469-1f3ff-200d-1f52c.png b/img-microsoft-64/1f469-1f3ff-200d-1f52c.png
new file mode 100644
index 0000000000..6240c3e03b
Binary files /dev/null and b/img-microsoft-64/1f469-1f3ff-200d-1f52c.png differ
diff --git a/img-microsoft-64/1f469-1f3ff-200d-1f680.png b/img-microsoft-64/1f469-1f3ff-200d-1f680.png
new file mode 100644
index 0000000000..94d0d539fd
Binary files /dev/null and b/img-microsoft-64/1f469-1f3ff-200d-1f680.png differ
diff --git a/img-microsoft-64/1f469-1f3ff-200d-1f692.png b/img-microsoft-64/1f469-1f3ff-200d-1f692.png
new file mode 100644
index 0000000000..4af70bd68c
Binary files /dev/null and b/img-microsoft-64/1f469-1f3ff-200d-1f692.png differ
diff --git a/img-microsoft-64/1f469-1f3ff-200d-1f9af.png b/img-microsoft-64/1f469-1f3ff-200d-1f9af.png
new file mode 100644
index 0000000000..63d9f7405d
Binary files /dev/null and b/img-microsoft-64/1f469-1f3ff-200d-1f9af.png differ
diff --git a/img-microsoft-64/1f469-1f3ff-200d-1f9b0.png b/img-microsoft-64/1f469-1f3ff-200d-1f9b0.png
new file mode 100644
index 0000000000..0ad118be92
Binary files /dev/null and b/img-microsoft-64/1f469-1f3ff-200d-1f9b0.png differ
diff --git a/img-microsoft-64/1f469-1f3ff-200d-1f9b1.png b/img-microsoft-64/1f469-1f3ff-200d-1f9b1.png
new file mode 100644
index 0000000000..e503734f9d
Binary files /dev/null and b/img-microsoft-64/1f469-1f3ff-200d-1f9b1.png differ
diff --git a/img-microsoft-64/1f469-1f3ff-200d-1f9b2.png b/img-microsoft-64/1f469-1f3ff-200d-1f9b2.png
new file mode 100644
index 0000000000..3eab7c07ae
Binary files /dev/null and b/img-microsoft-64/1f469-1f3ff-200d-1f9b2.png differ
diff --git a/img-microsoft-64/1f469-1f3ff-200d-1f9b3.png b/img-microsoft-64/1f469-1f3ff-200d-1f9b3.png
new file mode 100644
index 0000000000..da8d46788e
Binary files /dev/null and b/img-microsoft-64/1f469-1f3ff-200d-1f9b3.png differ
diff --git a/img-microsoft-64/1f469-1f3ff-200d-1f9bc.png b/img-microsoft-64/1f469-1f3ff-200d-1f9bc.png
new file mode 100644
index 0000000000..f8864d339e
Binary files /dev/null and b/img-microsoft-64/1f469-1f3ff-200d-1f9bc.png differ
diff --git a/img-microsoft-64/1f469-1f3ff-200d-1f9bd.png b/img-microsoft-64/1f469-1f3ff-200d-1f9bd.png
new file mode 100644
index 0000000000..a367579d21
Binary files /dev/null and b/img-microsoft-64/1f469-1f3ff-200d-1f9bd.png differ
diff --git a/img-microsoft-64/1f469-1f3ff-200d-2695-fe0f.png b/img-microsoft-64/1f469-1f3ff-200d-2695-fe0f.png
new file mode 100644
index 0000000000..53b4a1d9fb
Binary files /dev/null and b/img-microsoft-64/1f469-1f3ff-200d-2695-fe0f.png differ
diff --git a/img-microsoft-64/1f469-1f3ff-200d-2696-fe0f.png b/img-microsoft-64/1f469-1f3ff-200d-2696-fe0f.png
new file mode 100644
index 0000000000..bf2b9cdb6c
Binary files /dev/null and b/img-microsoft-64/1f469-1f3ff-200d-2696-fe0f.png differ
diff --git a/img-microsoft-64/1f469-1f3ff-200d-2708-fe0f.png b/img-microsoft-64/1f469-1f3ff-200d-2708-fe0f.png
new file mode 100644
index 0000000000..7a3dacf6fc
Binary files /dev/null and b/img-microsoft-64/1f469-1f3ff-200d-2708-fe0f.png differ
diff --git a/img-microsoft-64/1f469-1f3ff.png b/img-microsoft-64/1f469-1f3ff.png
new file mode 100644
index 0000000000..4cfc450220
Binary files /dev/null and b/img-microsoft-64/1f469-1f3ff.png differ
diff --git a/img-microsoft-64/1f469-200d-1f33e.png b/img-microsoft-64/1f469-200d-1f33e.png
new file mode 100644
index 0000000000..66b6a41fa1
Binary files /dev/null and b/img-microsoft-64/1f469-200d-1f33e.png differ
diff --git a/img-microsoft-64/1f469-200d-1f373.png b/img-microsoft-64/1f469-200d-1f373.png
new file mode 100644
index 0000000000..89fddbec0f
Binary files /dev/null and b/img-microsoft-64/1f469-200d-1f373.png differ
diff --git a/img-microsoft-64/1f469-200d-1f37c.png b/img-microsoft-64/1f469-200d-1f37c.png
new file mode 100644
index 0000000000..6918e138d8
Binary files /dev/null and b/img-microsoft-64/1f469-200d-1f37c.png differ
diff --git a/img-microsoft-64/1f469-200d-1f393.png b/img-microsoft-64/1f469-200d-1f393.png
new file mode 100644
index 0000000000..1b6c9f9e77
Binary files /dev/null and b/img-microsoft-64/1f469-200d-1f393.png differ
diff --git a/img-microsoft-64/1f469-200d-1f3a4.png b/img-microsoft-64/1f469-200d-1f3a4.png
new file mode 100644
index 0000000000..59ac0f028f
Binary files /dev/null and b/img-microsoft-64/1f469-200d-1f3a4.png differ
diff --git a/img-microsoft-64/1f469-200d-1f3a8.png b/img-microsoft-64/1f469-200d-1f3a8.png
new file mode 100644
index 0000000000..6388b5137e
Binary files /dev/null and b/img-microsoft-64/1f469-200d-1f3a8.png differ
diff --git a/img-microsoft-64/1f469-200d-1f3eb.png b/img-microsoft-64/1f469-200d-1f3eb.png
new file mode 100644
index 0000000000..5ede785b6b
Binary files /dev/null and b/img-microsoft-64/1f469-200d-1f3eb.png differ
diff --git a/img-microsoft-64/1f469-200d-1f3ed.png b/img-microsoft-64/1f469-200d-1f3ed.png
new file mode 100644
index 0000000000..b7417b44fc
Binary files /dev/null and b/img-microsoft-64/1f469-200d-1f3ed.png differ
diff --git a/img-microsoft-64/1f469-200d-1f4bc.png b/img-microsoft-64/1f469-200d-1f4bc.png
new file mode 100644
index 0000000000..40b12ae849
Binary files /dev/null and b/img-microsoft-64/1f469-200d-1f4bc.png differ
diff --git a/img-microsoft-64/1f469-200d-1f527.png b/img-microsoft-64/1f469-200d-1f527.png
new file mode 100644
index 0000000000..b049393a38
Binary files /dev/null and b/img-microsoft-64/1f469-200d-1f527.png differ
diff --git a/img-microsoft-64/1f469-200d-1f52c.png b/img-microsoft-64/1f469-200d-1f52c.png
new file mode 100644
index 0000000000..ef6dec48d4
Binary files /dev/null and b/img-microsoft-64/1f469-200d-1f52c.png differ
diff --git a/img-microsoft-64/1f469-200d-1f680.png b/img-microsoft-64/1f469-200d-1f680.png
new file mode 100644
index 0000000000..3dea0d6771
Binary files /dev/null and b/img-microsoft-64/1f469-200d-1f680.png differ
diff --git a/img-microsoft-64/1f469-200d-1f692.png b/img-microsoft-64/1f469-200d-1f692.png
new file mode 100644
index 0000000000..6e8768141f
Binary files /dev/null and b/img-microsoft-64/1f469-200d-1f692.png differ
diff --git a/img-microsoft-64/1f469-200d-1f9af.png b/img-microsoft-64/1f469-200d-1f9af.png
new file mode 100644
index 0000000000..45c251e197
Binary files /dev/null and b/img-microsoft-64/1f469-200d-1f9af.png differ
diff --git a/img-microsoft-64/1f469-200d-1f9b0.png b/img-microsoft-64/1f469-200d-1f9b0.png
new file mode 100644
index 0000000000..85d1fca2d9
Binary files /dev/null and b/img-microsoft-64/1f469-200d-1f9b0.png differ
diff --git a/img-microsoft-64/1f469-200d-1f9b1.png b/img-microsoft-64/1f469-200d-1f9b1.png
new file mode 100644
index 0000000000..13946640d4
Binary files /dev/null and b/img-microsoft-64/1f469-200d-1f9b1.png differ
diff --git a/img-microsoft-64/1f469-200d-1f9b2.png b/img-microsoft-64/1f469-200d-1f9b2.png
new file mode 100644
index 0000000000..f51f65ffd8
Binary files /dev/null and b/img-microsoft-64/1f469-200d-1f9b2.png differ
diff --git a/img-microsoft-64/1f469-200d-1f9b3.png b/img-microsoft-64/1f469-200d-1f9b3.png
new file mode 100644
index 0000000000..5d06ff40bb
Binary files /dev/null and b/img-microsoft-64/1f469-200d-1f9b3.png differ
diff --git a/img-microsoft-64/1f469-200d-1f9bc.png b/img-microsoft-64/1f469-200d-1f9bc.png
new file mode 100644
index 0000000000..92a474db72
Binary files /dev/null and b/img-microsoft-64/1f469-200d-1f9bc.png differ
diff --git a/img-microsoft-64/1f469-200d-1f9bd.png b/img-microsoft-64/1f469-200d-1f9bd.png
new file mode 100644
index 0000000000..1e5f020e4c
Binary files /dev/null and b/img-microsoft-64/1f469-200d-1f9bd.png differ
diff --git a/img-microsoft-64/1f469-200d-2695-fe0f.png b/img-microsoft-64/1f469-200d-2695-fe0f.png
new file mode 100644
index 0000000000..bbf47ddef6
Binary files /dev/null and b/img-microsoft-64/1f469-200d-2695-fe0f.png differ
diff --git a/img-microsoft-64/1f469-200d-2696-fe0f.png b/img-microsoft-64/1f469-200d-2696-fe0f.png
new file mode 100644
index 0000000000..dbfc42bd46
Binary files /dev/null and b/img-microsoft-64/1f469-200d-2696-fe0f.png differ
diff --git a/img-microsoft-64/1f469-200d-2708-fe0f.png b/img-microsoft-64/1f469-200d-2708-fe0f.png
new file mode 100644
index 0000000000..0710804adf
Binary files /dev/null and b/img-microsoft-64/1f469-200d-2708-fe0f.png differ
diff --git a/img-microsoft-64/1f469.png b/img-microsoft-64/1f469.png
new file mode 100644
index 0000000000..7971a94cca
Binary files /dev/null and b/img-microsoft-64/1f469.png differ
diff --git a/img-microsoft-64/1f46e-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f46e-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..cceb913a10
Binary files /dev/null and b/img-microsoft-64/1f46e-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f46e-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f46e-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..0bba206e33
Binary files /dev/null and b/img-microsoft-64/1f46e-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f46e-1f3fb.png b/img-microsoft-64/1f46e-1f3fb.png
new file mode 100644
index 0000000000..ece4d64f84
Binary files /dev/null and b/img-microsoft-64/1f46e-1f3fb.png differ
diff --git a/img-microsoft-64/1f46e-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f46e-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..84d4a7d394
Binary files /dev/null and b/img-microsoft-64/1f46e-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f46e-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f46e-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..6c69683454
Binary files /dev/null and b/img-microsoft-64/1f46e-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f46e-1f3fc.png b/img-microsoft-64/1f46e-1f3fc.png
new file mode 100644
index 0000000000..485f5f5bb4
Binary files /dev/null and b/img-microsoft-64/1f46e-1f3fc.png differ
diff --git a/img-microsoft-64/1f46e-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f46e-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..b407868ea1
Binary files /dev/null and b/img-microsoft-64/1f46e-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f46e-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f46e-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..0cc808fa56
Binary files /dev/null and b/img-microsoft-64/1f46e-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f46e-1f3fd.png b/img-microsoft-64/1f46e-1f3fd.png
new file mode 100644
index 0000000000..d974720753
Binary files /dev/null and b/img-microsoft-64/1f46e-1f3fd.png differ
diff --git a/img-microsoft-64/1f46e-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f46e-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..2769d66e56
Binary files /dev/null and b/img-microsoft-64/1f46e-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f46e-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f46e-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..632a47cfde
Binary files /dev/null and b/img-microsoft-64/1f46e-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f46e-1f3fe.png b/img-microsoft-64/1f46e-1f3fe.png
new file mode 100644
index 0000000000..167f04f929
Binary files /dev/null and b/img-microsoft-64/1f46e-1f3fe.png differ
diff --git a/img-microsoft-64/1f46e-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f46e-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..e8b82b26cf
Binary files /dev/null and b/img-microsoft-64/1f46e-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f46e-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f46e-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a33cb680a7
Binary files /dev/null and b/img-microsoft-64/1f46e-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f46e-1f3ff.png b/img-microsoft-64/1f46e-1f3ff.png
new file mode 100644
index 0000000000..8f460538c5
Binary files /dev/null and b/img-microsoft-64/1f46e-1f3ff.png differ
diff --git a/img-microsoft-64/1f46e-200d-2640-fe0f.png b/img-microsoft-64/1f46e-200d-2640-fe0f.png
new file mode 100644
index 0000000000..e985b007c2
Binary files /dev/null and b/img-microsoft-64/1f46e-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f46e-200d-2642-fe0f.png b/img-microsoft-64/1f46e-200d-2642-fe0f.png
new file mode 100644
index 0000000000..8f9f25b782
Binary files /dev/null and b/img-microsoft-64/1f46e-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f46e.png b/img-microsoft-64/1f46e.png
new file mode 100644
index 0000000000..07396d761a
Binary files /dev/null and b/img-microsoft-64/1f46e.png differ
diff --git a/img-microsoft-64/1f46f-200d-2640-fe0f.png b/img-microsoft-64/1f46f-200d-2640-fe0f.png
new file mode 100644
index 0000000000..a496b5721e
Binary files /dev/null and b/img-microsoft-64/1f46f-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f46f-200d-2642-fe0f.png b/img-microsoft-64/1f46f-200d-2642-fe0f.png
new file mode 100644
index 0000000000..3731d70267
Binary files /dev/null and b/img-microsoft-64/1f46f-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f46f.png b/img-microsoft-64/1f46f.png
new file mode 100644
index 0000000000..cb4f1ccaef
Binary files /dev/null and b/img-microsoft-64/1f46f.png differ
diff --git a/img-microsoft-64/1f470-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f470-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..60d65a5379
Binary files /dev/null and b/img-microsoft-64/1f470-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f470-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f470-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..b25e469797
Binary files /dev/null and b/img-microsoft-64/1f470-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f470-1f3fb.png b/img-microsoft-64/1f470-1f3fb.png
new file mode 100644
index 0000000000..fee5ba7e1e
Binary files /dev/null and b/img-microsoft-64/1f470-1f3fb.png differ
diff --git a/img-microsoft-64/1f470-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f470-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..c0ca43762b
Binary files /dev/null and b/img-microsoft-64/1f470-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f470-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f470-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..4c25903472
Binary files /dev/null and b/img-microsoft-64/1f470-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f470-1f3fc.png b/img-microsoft-64/1f470-1f3fc.png
new file mode 100644
index 0000000000..f37ed7ec35
Binary files /dev/null and b/img-microsoft-64/1f470-1f3fc.png differ
diff --git a/img-microsoft-64/1f470-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f470-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..cbcdffd7d3
Binary files /dev/null and b/img-microsoft-64/1f470-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f470-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f470-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f89ebdd19b
Binary files /dev/null and b/img-microsoft-64/1f470-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f470-1f3fd.png b/img-microsoft-64/1f470-1f3fd.png
new file mode 100644
index 0000000000..40ecad4650
Binary files /dev/null and b/img-microsoft-64/1f470-1f3fd.png differ
diff --git a/img-microsoft-64/1f470-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f470-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..bb755fca65
Binary files /dev/null and b/img-microsoft-64/1f470-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f470-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f470-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f5a8d7312d
Binary files /dev/null and b/img-microsoft-64/1f470-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f470-1f3fe.png b/img-microsoft-64/1f470-1f3fe.png
new file mode 100644
index 0000000000..4bcf7367b3
Binary files /dev/null and b/img-microsoft-64/1f470-1f3fe.png differ
diff --git a/img-microsoft-64/1f470-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f470-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..9bdc0b1792
Binary files /dev/null and b/img-microsoft-64/1f470-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f470-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f470-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..3b53006286
Binary files /dev/null and b/img-microsoft-64/1f470-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f470-1f3ff.png b/img-microsoft-64/1f470-1f3ff.png
new file mode 100644
index 0000000000..cf2182aa6b
Binary files /dev/null and b/img-microsoft-64/1f470-1f3ff.png differ
diff --git a/img-microsoft-64/1f470-200d-2640-fe0f.png b/img-microsoft-64/1f470-200d-2640-fe0f.png
new file mode 100644
index 0000000000..565111ecfa
Binary files /dev/null and b/img-microsoft-64/1f470-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f470-200d-2642-fe0f.png b/img-microsoft-64/1f470-200d-2642-fe0f.png
new file mode 100644
index 0000000000..63a89823b1
Binary files /dev/null and b/img-microsoft-64/1f470-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f470.png b/img-microsoft-64/1f470.png
new file mode 100644
index 0000000000..23128b3363
Binary files /dev/null and b/img-microsoft-64/1f470.png differ
diff --git a/img-microsoft-64/1f471-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f471-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..cf4efeb859
Binary files /dev/null and b/img-microsoft-64/1f471-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f471-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f471-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..7ad02e7347
Binary files /dev/null and b/img-microsoft-64/1f471-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f471-1f3fb.png b/img-microsoft-64/1f471-1f3fb.png
new file mode 100644
index 0000000000..caec5b5fd5
Binary files /dev/null and b/img-microsoft-64/1f471-1f3fb.png differ
diff --git a/img-microsoft-64/1f471-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f471-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..95f241b350
Binary files /dev/null and b/img-microsoft-64/1f471-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f471-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f471-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..83d7071e77
Binary files /dev/null and b/img-microsoft-64/1f471-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f471-1f3fc.png b/img-microsoft-64/1f471-1f3fc.png
new file mode 100644
index 0000000000..cb155ae63a
Binary files /dev/null and b/img-microsoft-64/1f471-1f3fc.png differ
diff --git a/img-microsoft-64/1f471-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f471-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..8704fbd803
Binary files /dev/null and b/img-microsoft-64/1f471-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f471-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f471-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..af6ee62177
Binary files /dev/null and b/img-microsoft-64/1f471-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f471-1f3fd.png b/img-microsoft-64/1f471-1f3fd.png
new file mode 100644
index 0000000000..fe95a7c7d0
Binary files /dev/null and b/img-microsoft-64/1f471-1f3fd.png differ
diff --git a/img-microsoft-64/1f471-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f471-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..01c8c6ac6f
Binary files /dev/null and b/img-microsoft-64/1f471-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f471-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f471-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..6232abac8c
Binary files /dev/null and b/img-microsoft-64/1f471-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f471-1f3fe.png b/img-microsoft-64/1f471-1f3fe.png
new file mode 100644
index 0000000000..261535a8d8
Binary files /dev/null and b/img-microsoft-64/1f471-1f3fe.png differ
diff --git a/img-microsoft-64/1f471-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f471-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..3e58f90971
Binary files /dev/null and b/img-microsoft-64/1f471-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f471-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f471-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e10dbccb6b
Binary files /dev/null and b/img-microsoft-64/1f471-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f471-1f3ff.png b/img-microsoft-64/1f471-1f3ff.png
new file mode 100644
index 0000000000..dc77ea70aa
Binary files /dev/null and b/img-microsoft-64/1f471-1f3ff.png differ
diff --git a/img-microsoft-64/1f471-200d-2640-fe0f.png b/img-microsoft-64/1f471-200d-2640-fe0f.png
new file mode 100644
index 0000000000..d0465a36f7
Binary files /dev/null and b/img-microsoft-64/1f471-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f471-200d-2642-fe0f.png b/img-microsoft-64/1f471-200d-2642-fe0f.png
new file mode 100644
index 0000000000..96a7f20f7c
Binary files /dev/null and b/img-microsoft-64/1f471-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f471.png b/img-microsoft-64/1f471.png
new file mode 100644
index 0000000000..eb43a15adf
Binary files /dev/null and b/img-microsoft-64/1f471.png differ
diff --git a/img-microsoft-64/1f472-1f3fb.png b/img-microsoft-64/1f472-1f3fb.png
new file mode 100644
index 0000000000..9bdfcc193c
Binary files /dev/null and b/img-microsoft-64/1f472-1f3fb.png differ
diff --git a/img-microsoft-64/1f472-1f3fc.png b/img-microsoft-64/1f472-1f3fc.png
new file mode 100644
index 0000000000..d9407a163e
Binary files /dev/null and b/img-microsoft-64/1f472-1f3fc.png differ
diff --git a/img-microsoft-64/1f472-1f3fd.png b/img-microsoft-64/1f472-1f3fd.png
new file mode 100644
index 0000000000..ea7502bb72
Binary files /dev/null and b/img-microsoft-64/1f472-1f3fd.png differ
diff --git a/img-microsoft-64/1f472-1f3fe.png b/img-microsoft-64/1f472-1f3fe.png
new file mode 100644
index 0000000000..e8fffd8861
Binary files /dev/null and b/img-microsoft-64/1f472-1f3fe.png differ
diff --git a/img-microsoft-64/1f472-1f3ff.png b/img-microsoft-64/1f472-1f3ff.png
new file mode 100644
index 0000000000..656136bbec
Binary files /dev/null and b/img-microsoft-64/1f472-1f3ff.png differ
diff --git a/img-microsoft-64/1f472.png b/img-microsoft-64/1f472.png
new file mode 100644
index 0000000000..6f57d1ece7
Binary files /dev/null and b/img-microsoft-64/1f472.png differ
diff --git a/img-microsoft-64/1f473-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f473-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..a5b13b2b0c
Binary files /dev/null and b/img-microsoft-64/1f473-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f473-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f473-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..06c44dc93f
Binary files /dev/null and b/img-microsoft-64/1f473-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f473-1f3fb.png b/img-microsoft-64/1f473-1f3fb.png
new file mode 100644
index 0000000000..1b0d287d5e
Binary files /dev/null and b/img-microsoft-64/1f473-1f3fb.png differ
diff --git a/img-microsoft-64/1f473-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f473-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..061c02cc9d
Binary files /dev/null and b/img-microsoft-64/1f473-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f473-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f473-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..032f58024d
Binary files /dev/null and b/img-microsoft-64/1f473-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f473-1f3fc.png b/img-microsoft-64/1f473-1f3fc.png
new file mode 100644
index 0000000000..a01005d070
Binary files /dev/null and b/img-microsoft-64/1f473-1f3fc.png differ
diff --git a/img-microsoft-64/1f473-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f473-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..e343d9a962
Binary files /dev/null and b/img-microsoft-64/1f473-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f473-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f473-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f2729843cf
Binary files /dev/null and b/img-microsoft-64/1f473-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f473-1f3fd.png b/img-microsoft-64/1f473-1f3fd.png
new file mode 100644
index 0000000000..ebe28a3390
Binary files /dev/null and b/img-microsoft-64/1f473-1f3fd.png differ
diff --git a/img-microsoft-64/1f473-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f473-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..82d23c8b03
Binary files /dev/null and b/img-microsoft-64/1f473-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f473-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f473-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..31af11cd6e
Binary files /dev/null and b/img-microsoft-64/1f473-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f473-1f3fe.png b/img-microsoft-64/1f473-1f3fe.png
new file mode 100644
index 0000000000..5a336ff24d
Binary files /dev/null and b/img-microsoft-64/1f473-1f3fe.png differ
diff --git a/img-microsoft-64/1f473-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f473-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..d555d313c9
Binary files /dev/null and b/img-microsoft-64/1f473-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f473-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f473-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..84f562924c
Binary files /dev/null and b/img-microsoft-64/1f473-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f473-1f3ff.png b/img-microsoft-64/1f473-1f3ff.png
new file mode 100644
index 0000000000..f0d5906dc8
Binary files /dev/null and b/img-microsoft-64/1f473-1f3ff.png differ
diff --git a/img-microsoft-64/1f473-200d-2640-fe0f.png b/img-microsoft-64/1f473-200d-2640-fe0f.png
new file mode 100644
index 0000000000..969eb7f5a9
Binary files /dev/null and b/img-microsoft-64/1f473-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f473-200d-2642-fe0f.png b/img-microsoft-64/1f473-200d-2642-fe0f.png
new file mode 100644
index 0000000000..6b5a92298e
Binary files /dev/null and b/img-microsoft-64/1f473-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f473.png b/img-microsoft-64/1f473.png
new file mode 100644
index 0000000000..0ee169e535
Binary files /dev/null and b/img-microsoft-64/1f473.png differ
diff --git a/img-microsoft-64/1f474-1f3fb.png b/img-microsoft-64/1f474-1f3fb.png
new file mode 100644
index 0000000000..938600416c
Binary files /dev/null and b/img-microsoft-64/1f474-1f3fb.png differ
diff --git a/img-microsoft-64/1f474-1f3fc.png b/img-microsoft-64/1f474-1f3fc.png
new file mode 100644
index 0000000000..9c4647b6b9
Binary files /dev/null and b/img-microsoft-64/1f474-1f3fc.png differ
diff --git a/img-microsoft-64/1f474-1f3fd.png b/img-microsoft-64/1f474-1f3fd.png
new file mode 100644
index 0000000000..19b34ce1af
Binary files /dev/null and b/img-microsoft-64/1f474-1f3fd.png differ
diff --git a/img-microsoft-64/1f474-1f3fe.png b/img-microsoft-64/1f474-1f3fe.png
new file mode 100644
index 0000000000..9286d34f06
Binary files /dev/null and b/img-microsoft-64/1f474-1f3fe.png differ
diff --git a/img-microsoft-64/1f474-1f3ff.png b/img-microsoft-64/1f474-1f3ff.png
new file mode 100644
index 0000000000..3dc66ec8ab
Binary files /dev/null and b/img-microsoft-64/1f474-1f3ff.png differ
diff --git a/img-microsoft-64/1f474.png b/img-microsoft-64/1f474.png
new file mode 100644
index 0000000000..fa20c8ff9b
Binary files /dev/null and b/img-microsoft-64/1f474.png differ
diff --git a/img-microsoft-64/1f475-1f3fb.png b/img-microsoft-64/1f475-1f3fb.png
new file mode 100644
index 0000000000..109b12080e
Binary files /dev/null and b/img-microsoft-64/1f475-1f3fb.png differ
diff --git a/img-microsoft-64/1f475-1f3fc.png b/img-microsoft-64/1f475-1f3fc.png
new file mode 100644
index 0000000000..2e9fb600f8
Binary files /dev/null and b/img-microsoft-64/1f475-1f3fc.png differ
diff --git a/img-microsoft-64/1f475-1f3fd.png b/img-microsoft-64/1f475-1f3fd.png
new file mode 100644
index 0000000000..0debb7564d
Binary files /dev/null and b/img-microsoft-64/1f475-1f3fd.png differ
diff --git a/img-microsoft-64/1f475-1f3fe.png b/img-microsoft-64/1f475-1f3fe.png
new file mode 100644
index 0000000000..71cbac7730
Binary files /dev/null and b/img-microsoft-64/1f475-1f3fe.png differ
diff --git a/img-microsoft-64/1f475-1f3ff.png b/img-microsoft-64/1f475-1f3ff.png
new file mode 100644
index 0000000000..b6e1e6d791
Binary files /dev/null and b/img-microsoft-64/1f475-1f3ff.png differ
diff --git a/img-microsoft-64/1f475.png b/img-microsoft-64/1f475.png
new file mode 100644
index 0000000000..41dc4c68b7
Binary files /dev/null and b/img-microsoft-64/1f475.png differ
diff --git a/img-microsoft-64/1f476-1f3fb.png b/img-microsoft-64/1f476-1f3fb.png
new file mode 100644
index 0000000000..fe6d46267f
Binary files /dev/null and b/img-microsoft-64/1f476-1f3fb.png differ
diff --git a/img-microsoft-64/1f476-1f3fc.png b/img-microsoft-64/1f476-1f3fc.png
new file mode 100644
index 0000000000..b2c01278f3
Binary files /dev/null and b/img-microsoft-64/1f476-1f3fc.png differ
diff --git a/img-microsoft-64/1f476-1f3fd.png b/img-microsoft-64/1f476-1f3fd.png
new file mode 100644
index 0000000000..c259314f17
Binary files /dev/null and b/img-microsoft-64/1f476-1f3fd.png differ
diff --git a/img-microsoft-64/1f476-1f3fe.png b/img-microsoft-64/1f476-1f3fe.png
new file mode 100644
index 0000000000..35944b3993
Binary files /dev/null and b/img-microsoft-64/1f476-1f3fe.png differ
diff --git a/img-microsoft-64/1f476-1f3ff.png b/img-microsoft-64/1f476-1f3ff.png
new file mode 100644
index 0000000000..05edcf4af2
Binary files /dev/null and b/img-microsoft-64/1f476-1f3ff.png differ
diff --git a/img-microsoft-64/1f476.png b/img-microsoft-64/1f476.png
new file mode 100644
index 0000000000..02283d3579
Binary files /dev/null and b/img-microsoft-64/1f476.png differ
diff --git a/img-microsoft-64/1f477-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f477-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..57e59187b9
Binary files /dev/null and b/img-microsoft-64/1f477-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f477-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f477-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..2bbee4ba98
Binary files /dev/null and b/img-microsoft-64/1f477-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f477-1f3fb.png b/img-microsoft-64/1f477-1f3fb.png
new file mode 100644
index 0000000000..346a499664
Binary files /dev/null and b/img-microsoft-64/1f477-1f3fb.png differ
diff --git a/img-microsoft-64/1f477-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f477-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..65e0d6b699
Binary files /dev/null and b/img-microsoft-64/1f477-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f477-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f477-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..eb775e7eb6
Binary files /dev/null and b/img-microsoft-64/1f477-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f477-1f3fc.png b/img-microsoft-64/1f477-1f3fc.png
new file mode 100644
index 0000000000..e62607b879
Binary files /dev/null and b/img-microsoft-64/1f477-1f3fc.png differ
diff --git a/img-microsoft-64/1f477-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f477-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..4b7b5d53f2
Binary files /dev/null and b/img-microsoft-64/1f477-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f477-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f477-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..931e4f0e93
Binary files /dev/null and b/img-microsoft-64/1f477-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f477-1f3fd.png b/img-microsoft-64/1f477-1f3fd.png
new file mode 100644
index 0000000000..063399f4d9
Binary files /dev/null and b/img-microsoft-64/1f477-1f3fd.png differ
diff --git a/img-microsoft-64/1f477-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f477-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..9032cab332
Binary files /dev/null and b/img-microsoft-64/1f477-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f477-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f477-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..270517291f
Binary files /dev/null and b/img-microsoft-64/1f477-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f477-1f3fe.png b/img-microsoft-64/1f477-1f3fe.png
new file mode 100644
index 0000000000..f90b56e0c3
Binary files /dev/null and b/img-microsoft-64/1f477-1f3fe.png differ
diff --git a/img-microsoft-64/1f477-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f477-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..96446d473c
Binary files /dev/null and b/img-microsoft-64/1f477-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f477-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f477-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..b214fb769e
Binary files /dev/null and b/img-microsoft-64/1f477-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f477-1f3ff.png b/img-microsoft-64/1f477-1f3ff.png
new file mode 100644
index 0000000000..3feaba568d
Binary files /dev/null and b/img-microsoft-64/1f477-1f3ff.png differ
diff --git a/img-microsoft-64/1f477-200d-2640-fe0f.png b/img-microsoft-64/1f477-200d-2640-fe0f.png
new file mode 100644
index 0000000000..d10a159892
Binary files /dev/null and b/img-microsoft-64/1f477-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f477-200d-2642-fe0f.png b/img-microsoft-64/1f477-200d-2642-fe0f.png
new file mode 100644
index 0000000000..3b01c414c5
Binary files /dev/null and b/img-microsoft-64/1f477-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f477.png b/img-microsoft-64/1f477.png
new file mode 100644
index 0000000000..421d47616d
Binary files /dev/null and b/img-microsoft-64/1f477.png differ
diff --git a/img-microsoft-64/1f478-1f3fb.png b/img-microsoft-64/1f478-1f3fb.png
new file mode 100644
index 0000000000..eeac1b1dab
Binary files /dev/null and b/img-microsoft-64/1f478-1f3fb.png differ
diff --git a/img-microsoft-64/1f478-1f3fc.png b/img-microsoft-64/1f478-1f3fc.png
new file mode 100644
index 0000000000..adfe2325be
Binary files /dev/null and b/img-microsoft-64/1f478-1f3fc.png differ
diff --git a/img-microsoft-64/1f478-1f3fd.png b/img-microsoft-64/1f478-1f3fd.png
new file mode 100644
index 0000000000..0ccb3f8343
Binary files /dev/null and b/img-microsoft-64/1f478-1f3fd.png differ
diff --git a/img-microsoft-64/1f478-1f3fe.png b/img-microsoft-64/1f478-1f3fe.png
new file mode 100644
index 0000000000..2fa7d4dab5
Binary files /dev/null and b/img-microsoft-64/1f478-1f3fe.png differ
diff --git a/img-microsoft-64/1f478-1f3ff.png b/img-microsoft-64/1f478-1f3ff.png
new file mode 100644
index 0000000000..b34749ac63
Binary files /dev/null and b/img-microsoft-64/1f478-1f3ff.png differ
diff --git a/img-microsoft-64/1f478.png b/img-microsoft-64/1f478.png
new file mode 100644
index 0000000000..9b725aadbf
Binary files /dev/null and b/img-microsoft-64/1f478.png differ
diff --git a/img-microsoft-64/1f479.png b/img-microsoft-64/1f479.png
new file mode 100644
index 0000000000..a1ccfdc5e5
Binary files /dev/null and b/img-microsoft-64/1f479.png differ
diff --git a/img-microsoft-64/1f47a.png b/img-microsoft-64/1f47a.png
new file mode 100644
index 0000000000..a49e32fca7
Binary files /dev/null and b/img-microsoft-64/1f47a.png differ
diff --git a/img-microsoft-64/1f47b.png b/img-microsoft-64/1f47b.png
new file mode 100644
index 0000000000..065ee2836d
Binary files /dev/null and b/img-microsoft-64/1f47b.png differ
diff --git a/img-microsoft-64/1f47c-1f3fb.png b/img-microsoft-64/1f47c-1f3fb.png
new file mode 100644
index 0000000000..0695601b5e
Binary files /dev/null and b/img-microsoft-64/1f47c-1f3fb.png differ
diff --git a/img-microsoft-64/1f47c-1f3fc.png b/img-microsoft-64/1f47c-1f3fc.png
new file mode 100644
index 0000000000..1ad792c43e
Binary files /dev/null and b/img-microsoft-64/1f47c-1f3fc.png differ
diff --git a/img-microsoft-64/1f47c-1f3fd.png b/img-microsoft-64/1f47c-1f3fd.png
new file mode 100644
index 0000000000..b368c064ca
Binary files /dev/null and b/img-microsoft-64/1f47c-1f3fd.png differ
diff --git a/img-microsoft-64/1f47c-1f3fe.png b/img-microsoft-64/1f47c-1f3fe.png
new file mode 100644
index 0000000000..275d1661df
Binary files /dev/null and b/img-microsoft-64/1f47c-1f3fe.png differ
diff --git a/img-microsoft-64/1f47c-1f3ff.png b/img-microsoft-64/1f47c-1f3ff.png
new file mode 100644
index 0000000000..8d529cd5a1
Binary files /dev/null and b/img-microsoft-64/1f47c-1f3ff.png differ
diff --git a/img-microsoft-64/1f47c.png b/img-microsoft-64/1f47c.png
new file mode 100644
index 0000000000..a96222e509
Binary files /dev/null and b/img-microsoft-64/1f47c.png differ
diff --git a/img-microsoft-64/1f47d.png b/img-microsoft-64/1f47d.png
new file mode 100644
index 0000000000..7b4d54232b
Binary files /dev/null and b/img-microsoft-64/1f47d.png differ
diff --git a/img-microsoft-64/1f47e.png b/img-microsoft-64/1f47e.png
new file mode 100644
index 0000000000..9cf436116c
Binary files /dev/null and b/img-microsoft-64/1f47e.png differ
diff --git a/img-microsoft-64/1f47f.png b/img-microsoft-64/1f47f.png
new file mode 100644
index 0000000000..0ec4af76d8
Binary files /dev/null and b/img-microsoft-64/1f47f.png differ
diff --git a/img-microsoft-64/1f480.png b/img-microsoft-64/1f480.png
new file mode 100644
index 0000000000..3eb8486267
Binary files /dev/null and b/img-microsoft-64/1f480.png differ
diff --git a/img-microsoft-64/1f481-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f481-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..64d46ee67b
Binary files /dev/null and b/img-microsoft-64/1f481-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f481-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f481-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..16701b412f
Binary files /dev/null and b/img-microsoft-64/1f481-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f481-1f3fb.png b/img-microsoft-64/1f481-1f3fb.png
new file mode 100644
index 0000000000..3e7748453a
Binary files /dev/null and b/img-microsoft-64/1f481-1f3fb.png differ
diff --git a/img-microsoft-64/1f481-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f481-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..0b8d01d81f
Binary files /dev/null and b/img-microsoft-64/1f481-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f481-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f481-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..683b762a62
Binary files /dev/null and b/img-microsoft-64/1f481-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f481-1f3fc.png b/img-microsoft-64/1f481-1f3fc.png
new file mode 100644
index 0000000000..33635f5ca1
Binary files /dev/null and b/img-microsoft-64/1f481-1f3fc.png differ
diff --git a/img-microsoft-64/1f481-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f481-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..539f70be4c
Binary files /dev/null and b/img-microsoft-64/1f481-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f481-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f481-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a378b4cf40
Binary files /dev/null and b/img-microsoft-64/1f481-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f481-1f3fd.png b/img-microsoft-64/1f481-1f3fd.png
new file mode 100644
index 0000000000..3632bccd7e
Binary files /dev/null and b/img-microsoft-64/1f481-1f3fd.png differ
diff --git a/img-microsoft-64/1f481-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f481-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..a0188a02ea
Binary files /dev/null and b/img-microsoft-64/1f481-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f481-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f481-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..44b21cf640
Binary files /dev/null and b/img-microsoft-64/1f481-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f481-1f3fe.png b/img-microsoft-64/1f481-1f3fe.png
new file mode 100644
index 0000000000..b8998f7cf1
Binary files /dev/null and b/img-microsoft-64/1f481-1f3fe.png differ
diff --git a/img-microsoft-64/1f481-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f481-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..d70bf91fee
Binary files /dev/null and b/img-microsoft-64/1f481-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f481-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f481-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..bfe6ee114a
Binary files /dev/null and b/img-microsoft-64/1f481-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f481-1f3ff.png b/img-microsoft-64/1f481-1f3ff.png
new file mode 100644
index 0000000000..b91bd96ddf
Binary files /dev/null and b/img-microsoft-64/1f481-1f3ff.png differ
diff --git a/img-microsoft-64/1f481-200d-2640-fe0f.png b/img-microsoft-64/1f481-200d-2640-fe0f.png
new file mode 100644
index 0000000000..5bb2314846
Binary files /dev/null and b/img-microsoft-64/1f481-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f481-200d-2642-fe0f.png b/img-microsoft-64/1f481-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d2cb236d14
Binary files /dev/null and b/img-microsoft-64/1f481-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f481.png b/img-microsoft-64/1f481.png
new file mode 100644
index 0000000000..fa344d2c8a
Binary files /dev/null and b/img-microsoft-64/1f481.png differ
diff --git a/img-microsoft-64/1f482-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f482-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..53376e56bb
Binary files /dev/null and b/img-microsoft-64/1f482-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f482-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f482-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..02c07db4d5
Binary files /dev/null and b/img-microsoft-64/1f482-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f482-1f3fb.png b/img-microsoft-64/1f482-1f3fb.png
new file mode 100644
index 0000000000..bb9843751b
Binary files /dev/null and b/img-microsoft-64/1f482-1f3fb.png differ
diff --git a/img-microsoft-64/1f482-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f482-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..bcadb0b5e8
Binary files /dev/null and b/img-microsoft-64/1f482-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f482-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f482-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..9504807f7b
Binary files /dev/null and b/img-microsoft-64/1f482-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f482-1f3fc.png b/img-microsoft-64/1f482-1f3fc.png
new file mode 100644
index 0000000000..416e87cab0
Binary files /dev/null and b/img-microsoft-64/1f482-1f3fc.png differ
diff --git a/img-microsoft-64/1f482-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f482-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..123922f734
Binary files /dev/null and b/img-microsoft-64/1f482-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f482-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f482-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..8bcaf5a94b
Binary files /dev/null and b/img-microsoft-64/1f482-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f482-1f3fd.png b/img-microsoft-64/1f482-1f3fd.png
new file mode 100644
index 0000000000..cf2b1dec07
Binary files /dev/null and b/img-microsoft-64/1f482-1f3fd.png differ
diff --git a/img-microsoft-64/1f482-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f482-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..8ac63cda9e
Binary files /dev/null and b/img-microsoft-64/1f482-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f482-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f482-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..957d412db3
Binary files /dev/null and b/img-microsoft-64/1f482-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f482-1f3fe.png b/img-microsoft-64/1f482-1f3fe.png
new file mode 100644
index 0000000000..0a03b7b15f
Binary files /dev/null and b/img-microsoft-64/1f482-1f3fe.png differ
diff --git a/img-microsoft-64/1f482-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f482-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..38c7d2175b
Binary files /dev/null and b/img-microsoft-64/1f482-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f482-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f482-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..06f973c104
Binary files /dev/null and b/img-microsoft-64/1f482-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f482-1f3ff.png b/img-microsoft-64/1f482-1f3ff.png
new file mode 100644
index 0000000000..ea74078f4b
Binary files /dev/null and b/img-microsoft-64/1f482-1f3ff.png differ
diff --git a/img-microsoft-64/1f482-200d-2640-fe0f.png b/img-microsoft-64/1f482-200d-2640-fe0f.png
new file mode 100644
index 0000000000..937c7925bd
Binary files /dev/null and b/img-microsoft-64/1f482-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f482-200d-2642-fe0f.png b/img-microsoft-64/1f482-200d-2642-fe0f.png
new file mode 100644
index 0000000000..b2f14aba53
Binary files /dev/null and b/img-microsoft-64/1f482-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f482.png b/img-microsoft-64/1f482.png
new file mode 100644
index 0000000000..e7b7b6ae3a
Binary files /dev/null and b/img-microsoft-64/1f482.png differ
diff --git a/img-microsoft-64/1f483-1f3fb.png b/img-microsoft-64/1f483-1f3fb.png
new file mode 100644
index 0000000000..02dfe93dba
Binary files /dev/null and b/img-microsoft-64/1f483-1f3fb.png differ
diff --git a/img-microsoft-64/1f483-1f3fc.png b/img-microsoft-64/1f483-1f3fc.png
new file mode 100644
index 0000000000..04fe2fe46e
Binary files /dev/null and b/img-microsoft-64/1f483-1f3fc.png differ
diff --git a/img-microsoft-64/1f483-1f3fd.png b/img-microsoft-64/1f483-1f3fd.png
new file mode 100644
index 0000000000..587a1c49b0
Binary files /dev/null and b/img-microsoft-64/1f483-1f3fd.png differ
diff --git a/img-microsoft-64/1f483-1f3fe.png b/img-microsoft-64/1f483-1f3fe.png
new file mode 100644
index 0000000000..16fd5d138f
Binary files /dev/null and b/img-microsoft-64/1f483-1f3fe.png differ
diff --git a/img-microsoft-64/1f483-1f3ff.png b/img-microsoft-64/1f483-1f3ff.png
new file mode 100644
index 0000000000..6c32663e3a
Binary files /dev/null and b/img-microsoft-64/1f483-1f3ff.png differ
diff --git a/img-microsoft-64/1f483.png b/img-microsoft-64/1f483.png
new file mode 100644
index 0000000000..c8192cd279
Binary files /dev/null and b/img-microsoft-64/1f483.png differ
diff --git a/img-microsoft-64/1f484.png b/img-microsoft-64/1f484.png
new file mode 100644
index 0000000000..c99a3d7181
Binary files /dev/null and b/img-microsoft-64/1f484.png differ
diff --git a/img-microsoft-64/1f485-1f3fb.png b/img-microsoft-64/1f485-1f3fb.png
new file mode 100644
index 0000000000..698686c0a8
Binary files /dev/null and b/img-microsoft-64/1f485-1f3fb.png differ
diff --git a/img-microsoft-64/1f485-1f3fc.png b/img-microsoft-64/1f485-1f3fc.png
new file mode 100644
index 0000000000..befb7f1835
Binary files /dev/null and b/img-microsoft-64/1f485-1f3fc.png differ
diff --git a/img-microsoft-64/1f485-1f3fd.png b/img-microsoft-64/1f485-1f3fd.png
new file mode 100644
index 0000000000..01f8c9b861
Binary files /dev/null and b/img-microsoft-64/1f485-1f3fd.png differ
diff --git a/img-microsoft-64/1f485-1f3fe.png b/img-microsoft-64/1f485-1f3fe.png
new file mode 100644
index 0000000000..d6acd9804c
Binary files /dev/null and b/img-microsoft-64/1f485-1f3fe.png differ
diff --git a/img-microsoft-64/1f485-1f3ff.png b/img-microsoft-64/1f485-1f3ff.png
new file mode 100644
index 0000000000..3978ff0e5b
Binary files /dev/null and b/img-microsoft-64/1f485-1f3ff.png differ
diff --git a/img-microsoft-64/1f485.png b/img-microsoft-64/1f485.png
new file mode 100644
index 0000000000..de99467975
Binary files /dev/null and b/img-microsoft-64/1f485.png differ
diff --git a/img-microsoft-64/1f486-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f486-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..022e111ae9
Binary files /dev/null and b/img-microsoft-64/1f486-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f486-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f486-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..de572f1b35
Binary files /dev/null and b/img-microsoft-64/1f486-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f486-1f3fb.png b/img-microsoft-64/1f486-1f3fb.png
new file mode 100644
index 0000000000..7c78a1a9be
Binary files /dev/null and b/img-microsoft-64/1f486-1f3fb.png differ
diff --git a/img-microsoft-64/1f486-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f486-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..f31bc4d630
Binary files /dev/null and b/img-microsoft-64/1f486-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f486-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f486-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a3f6d63942
Binary files /dev/null and b/img-microsoft-64/1f486-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f486-1f3fc.png b/img-microsoft-64/1f486-1f3fc.png
new file mode 100644
index 0000000000..0e2bd0deac
Binary files /dev/null and b/img-microsoft-64/1f486-1f3fc.png differ
diff --git a/img-microsoft-64/1f486-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f486-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..106904053b
Binary files /dev/null and b/img-microsoft-64/1f486-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f486-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f486-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..68bb0ec489
Binary files /dev/null and b/img-microsoft-64/1f486-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f486-1f3fd.png b/img-microsoft-64/1f486-1f3fd.png
new file mode 100644
index 0000000000..cad2e9ffc4
Binary files /dev/null and b/img-microsoft-64/1f486-1f3fd.png differ
diff --git a/img-microsoft-64/1f486-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f486-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..52860a619c
Binary files /dev/null and b/img-microsoft-64/1f486-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f486-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f486-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..add2b11d5e
Binary files /dev/null and b/img-microsoft-64/1f486-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f486-1f3fe.png b/img-microsoft-64/1f486-1f3fe.png
new file mode 100644
index 0000000000..eee7190d43
Binary files /dev/null and b/img-microsoft-64/1f486-1f3fe.png differ
diff --git a/img-microsoft-64/1f486-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f486-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..0d2d84a2f2
Binary files /dev/null and b/img-microsoft-64/1f486-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f486-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f486-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..83b4036173
Binary files /dev/null and b/img-microsoft-64/1f486-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f486-1f3ff.png b/img-microsoft-64/1f486-1f3ff.png
new file mode 100644
index 0000000000..6273774d37
Binary files /dev/null and b/img-microsoft-64/1f486-1f3ff.png differ
diff --git a/img-microsoft-64/1f486-200d-2640-fe0f.png b/img-microsoft-64/1f486-200d-2640-fe0f.png
new file mode 100644
index 0000000000..7be0f3cfc5
Binary files /dev/null and b/img-microsoft-64/1f486-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f486-200d-2642-fe0f.png b/img-microsoft-64/1f486-200d-2642-fe0f.png
new file mode 100644
index 0000000000..ae5610ebec
Binary files /dev/null and b/img-microsoft-64/1f486-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f486.png b/img-microsoft-64/1f486.png
new file mode 100644
index 0000000000..115645ac80
Binary files /dev/null and b/img-microsoft-64/1f486.png differ
diff --git a/img-microsoft-64/1f487-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f487-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..f230bbfd76
Binary files /dev/null and b/img-microsoft-64/1f487-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f487-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f487-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f8f3fdcef7
Binary files /dev/null and b/img-microsoft-64/1f487-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f487-1f3fb.png b/img-microsoft-64/1f487-1f3fb.png
new file mode 100644
index 0000000000..096442ff49
Binary files /dev/null and b/img-microsoft-64/1f487-1f3fb.png differ
diff --git a/img-microsoft-64/1f487-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f487-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..8ce73d6bb9
Binary files /dev/null and b/img-microsoft-64/1f487-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f487-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f487-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..feacb39ab1
Binary files /dev/null and b/img-microsoft-64/1f487-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f487-1f3fc.png b/img-microsoft-64/1f487-1f3fc.png
new file mode 100644
index 0000000000..de33a4913c
Binary files /dev/null and b/img-microsoft-64/1f487-1f3fc.png differ
diff --git a/img-microsoft-64/1f487-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f487-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..7a970e767e
Binary files /dev/null and b/img-microsoft-64/1f487-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f487-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f487-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..079fa42078
Binary files /dev/null and b/img-microsoft-64/1f487-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f487-1f3fd.png b/img-microsoft-64/1f487-1f3fd.png
new file mode 100644
index 0000000000..44dad8ed4e
Binary files /dev/null and b/img-microsoft-64/1f487-1f3fd.png differ
diff --git a/img-microsoft-64/1f487-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f487-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..0023c594b1
Binary files /dev/null and b/img-microsoft-64/1f487-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f487-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f487-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..fb9198e1a5
Binary files /dev/null and b/img-microsoft-64/1f487-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f487-1f3fe.png b/img-microsoft-64/1f487-1f3fe.png
new file mode 100644
index 0000000000..5e261ebe9d
Binary files /dev/null and b/img-microsoft-64/1f487-1f3fe.png differ
diff --git a/img-microsoft-64/1f487-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f487-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..a88d670349
Binary files /dev/null and b/img-microsoft-64/1f487-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f487-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f487-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e2da85a824
Binary files /dev/null and b/img-microsoft-64/1f487-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f487-1f3ff.png b/img-microsoft-64/1f487-1f3ff.png
new file mode 100644
index 0000000000..a5d203fb4c
Binary files /dev/null and b/img-microsoft-64/1f487-1f3ff.png differ
diff --git a/img-microsoft-64/1f487-200d-2640-fe0f.png b/img-microsoft-64/1f487-200d-2640-fe0f.png
new file mode 100644
index 0000000000..87826e7b8c
Binary files /dev/null and b/img-microsoft-64/1f487-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f487-200d-2642-fe0f.png b/img-microsoft-64/1f487-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a02e1cba5b
Binary files /dev/null and b/img-microsoft-64/1f487-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f487.png b/img-microsoft-64/1f487.png
new file mode 100644
index 0000000000..57bfd3f7f0
Binary files /dev/null and b/img-microsoft-64/1f487.png differ
diff --git a/img-microsoft-64/1f488.png b/img-microsoft-64/1f488.png
new file mode 100644
index 0000000000..ed96ef42eb
Binary files /dev/null and b/img-microsoft-64/1f488.png differ
diff --git a/img-microsoft-64/1f489.png b/img-microsoft-64/1f489.png
new file mode 100644
index 0000000000..5fe7a77f25
Binary files /dev/null and b/img-microsoft-64/1f489.png differ
diff --git a/img-microsoft-64/1f48a.png b/img-microsoft-64/1f48a.png
new file mode 100644
index 0000000000..5dac8270be
Binary files /dev/null and b/img-microsoft-64/1f48a.png differ
diff --git a/img-microsoft-64/1f48b.png b/img-microsoft-64/1f48b.png
new file mode 100644
index 0000000000..92080d3698
Binary files /dev/null and b/img-microsoft-64/1f48b.png differ
diff --git a/img-microsoft-64/1f48c.png b/img-microsoft-64/1f48c.png
new file mode 100644
index 0000000000..926a1649f6
Binary files /dev/null and b/img-microsoft-64/1f48c.png differ
diff --git a/img-microsoft-64/1f48d.png b/img-microsoft-64/1f48d.png
new file mode 100644
index 0000000000..133fccde59
Binary files /dev/null and b/img-microsoft-64/1f48d.png differ
diff --git a/img-microsoft-64/1f48e.png b/img-microsoft-64/1f48e.png
new file mode 100644
index 0000000000..3d93ce841d
Binary files /dev/null and b/img-microsoft-64/1f48e.png differ
diff --git a/img-microsoft-64/1f490.png b/img-microsoft-64/1f490.png
new file mode 100644
index 0000000000..1873922b68
Binary files /dev/null and b/img-microsoft-64/1f490.png differ
diff --git a/img-microsoft-64/1f492.png b/img-microsoft-64/1f492.png
new file mode 100644
index 0000000000..aca752af58
Binary files /dev/null and b/img-microsoft-64/1f492.png differ
diff --git a/img-microsoft-64/1f493.png b/img-microsoft-64/1f493.png
new file mode 100644
index 0000000000..fef7300e5b
Binary files /dev/null and b/img-microsoft-64/1f493.png differ
diff --git a/img-microsoft-64/1f494.png b/img-microsoft-64/1f494.png
new file mode 100644
index 0000000000..e16b54f830
Binary files /dev/null and b/img-microsoft-64/1f494.png differ
diff --git a/img-microsoft-64/1f495.png b/img-microsoft-64/1f495.png
new file mode 100644
index 0000000000..bdf0f49667
Binary files /dev/null and b/img-microsoft-64/1f495.png differ
diff --git a/img-microsoft-64/1f496.png b/img-microsoft-64/1f496.png
new file mode 100644
index 0000000000..6b901a326b
Binary files /dev/null and b/img-microsoft-64/1f496.png differ
diff --git a/img-microsoft-64/1f497.png b/img-microsoft-64/1f497.png
new file mode 100644
index 0000000000..7e6487f953
Binary files /dev/null and b/img-microsoft-64/1f497.png differ
diff --git a/img-microsoft-64/1f498.png b/img-microsoft-64/1f498.png
new file mode 100644
index 0000000000..e79382708f
Binary files /dev/null and b/img-microsoft-64/1f498.png differ
diff --git a/img-microsoft-64/1f499.png b/img-microsoft-64/1f499.png
new file mode 100644
index 0000000000..69e27f8c67
Binary files /dev/null and b/img-microsoft-64/1f499.png differ
diff --git a/img-microsoft-64/1f49a.png b/img-microsoft-64/1f49a.png
new file mode 100644
index 0000000000..1df5ec44e6
Binary files /dev/null and b/img-microsoft-64/1f49a.png differ
diff --git a/img-microsoft-64/1f49b.png b/img-microsoft-64/1f49b.png
new file mode 100644
index 0000000000..397f2924be
Binary files /dev/null and b/img-microsoft-64/1f49b.png differ
diff --git a/img-microsoft-64/1f49c.png b/img-microsoft-64/1f49c.png
new file mode 100644
index 0000000000..1372197b39
Binary files /dev/null and b/img-microsoft-64/1f49c.png differ
diff --git a/img-microsoft-64/1f49d.png b/img-microsoft-64/1f49d.png
new file mode 100644
index 0000000000..28b7bb8bb7
Binary files /dev/null and b/img-microsoft-64/1f49d.png differ
diff --git a/img-microsoft-64/1f49e.png b/img-microsoft-64/1f49e.png
new file mode 100644
index 0000000000..72152efd98
Binary files /dev/null and b/img-microsoft-64/1f49e.png differ
diff --git a/img-microsoft-64/1f49f.png b/img-microsoft-64/1f49f.png
new file mode 100644
index 0000000000..037768d16d
Binary files /dev/null and b/img-microsoft-64/1f49f.png differ
diff --git a/img-microsoft-64/1f4a0.png b/img-microsoft-64/1f4a0.png
new file mode 100644
index 0000000000..bfd91e9e18
Binary files /dev/null and b/img-microsoft-64/1f4a0.png differ
diff --git a/img-microsoft-64/1f4a1.png b/img-microsoft-64/1f4a1.png
new file mode 100644
index 0000000000..ad9e48bd27
Binary files /dev/null and b/img-microsoft-64/1f4a1.png differ
diff --git a/img-microsoft-64/1f4a2.png b/img-microsoft-64/1f4a2.png
new file mode 100644
index 0000000000..321ddb5849
Binary files /dev/null and b/img-microsoft-64/1f4a2.png differ
diff --git a/img-microsoft-64/1f4a3.png b/img-microsoft-64/1f4a3.png
new file mode 100644
index 0000000000..f976713cb5
Binary files /dev/null and b/img-microsoft-64/1f4a3.png differ
diff --git a/img-microsoft-64/1f4a4.png b/img-microsoft-64/1f4a4.png
new file mode 100644
index 0000000000..551b3b7f07
Binary files /dev/null and b/img-microsoft-64/1f4a4.png differ
diff --git a/img-microsoft-64/1f4a5.png b/img-microsoft-64/1f4a5.png
new file mode 100644
index 0000000000..fb70e214d7
Binary files /dev/null and b/img-microsoft-64/1f4a5.png differ
diff --git a/img-microsoft-64/1f4a6.png b/img-microsoft-64/1f4a6.png
new file mode 100644
index 0000000000..a7b7c923a5
Binary files /dev/null and b/img-microsoft-64/1f4a6.png differ
diff --git a/img-microsoft-64/1f4a7.png b/img-microsoft-64/1f4a7.png
new file mode 100644
index 0000000000..fe57f2a961
Binary files /dev/null and b/img-microsoft-64/1f4a7.png differ
diff --git a/img-microsoft-64/1f4a8.png b/img-microsoft-64/1f4a8.png
new file mode 100644
index 0000000000..1b29fc8c57
Binary files /dev/null and b/img-microsoft-64/1f4a8.png differ
diff --git a/img-microsoft-64/1f4a9.png b/img-microsoft-64/1f4a9.png
new file mode 100644
index 0000000000..d79384b3af
Binary files /dev/null and b/img-microsoft-64/1f4a9.png differ
diff --git a/img-microsoft-64/1f4aa-1f3fb.png b/img-microsoft-64/1f4aa-1f3fb.png
new file mode 100644
index 0000000000..c9b91d40ca
Binary files /dev/null and b/img-microsoft-64/1f4aa-1f3fb.png differ
diff --git a/img-microsoft-64/1f4aa-1f3fc.png b/img-microsoft-64/1f4aa-1f3fc.png
new file mode 100644
index 0000000000..0ed1deec9a
Binary files /dev/null and b/img-microsoft-64/1f4aa-1f3fc.png differ
diff --git a/img-microsoft-64/1f4aa-1f3fd.png b/img-microsoft-64/1f4aa-1f3fd.png
new file mode 100644
index 0000000000..5e84e12f9d
Binary files /dev/null and b/img-microsoft-64/1f4aa-1f3fd.png differ
diff --git a/img-microsoft-64/1f4aa-1f3fe.png b/img-microsoft-64/1f4aa-1f3fe.png
new file mode 100644
index 0000000000..b1e5557c22
Binary files /dev/null and b/img-microsoft-64/1f4aa-1f3fe.png differ
diff --git a/img-microsoft-64/1f4aa-1f3ff.png b/img-microsoft-64/1f4aa-1f3ff.png
new file mode 100644
index 0000000000..7064139d12
Binary files /dev/null and b/img-microsoft-64/1f4aa-1f3ff.png differ
diff --git a/img-microsoft-64/1f4aa.png b/img-microsoft-64/1f4aa.png
new file mode 100644
index 0000000000..c85b82c9f8
Binary files /dev/null and b/img-microsoft-64/1f4aa.png differ
diff --git a/img-microsoft-64/1f4ab.png b/img-microsoft-64/1f4ab.png
new file mode 100644
index 0000000000..7b75d5ec15
Binary files /dev/null and b/img-microsoft-64/1f4ab.png differ
diff --git a/img-microsoft-64/1f4ac.png b/img-microsoft-64/1f4ac.png
new file mode 100644
index 0000000000..9448b328b3
Binary files /dev/null and b/img-microsoft-64/1f4ac.png differ
diff --git a/img-microsoft-64/1f4ad.png b/img-microsoft-64/1f4ad.png
new file mode 100644
index 0000000000..4a7c28c689
Binary files /dev/null and b/img-microsoft-64/1f4ad.png differ
diff --git a/img-microsoft-64/1f4ae.png b/img-microsoft-64/1f4ae.png
new file mode 100644
index 0000000000..7a6e4d1711
Binary files /dev/null and b/img-microsoft-64/1f4ae.png differ
diff --git a/img-microsoft-64/1f4af.png b/img-microsoft-64/1f4af.png
new file mode 100644
index 0000000000..e9ab3bc5c2
Binary files /dev/null and b/img-microsoft-64/1f4af.png differ
diff --git a/img-microsoft-64/1f4b0.png b/img-microsoft-64/1f4b0.png
new file mode 100644
index 0000000000..a8abab60c5
Binary files /dev/null and b/img-microsoft-64/1f4b0.png differ
diff --git a/img-microsoft-64/1f4b1.png b/img-microsoft-64/1f4b1.png
new file mode 100644
index 0000000000..210d9f51cc
Binary files /dev/null and b/img-microsoft-64/1f4b1.png differ
diff --git a/img-microsoft-64/1f4b2.png b/img-microsoft-64/1f4b2.png
new file mode 100644
index 0000000000..cf3785d54c
Binary files /dev/null and b/img-microsoft-64/1f4b2.png differ
diff --git a/img-microsoft-64/1f4b3.png b/img-microsoft-64/1f4b3.png
new file mode 100644
index 0000000000..e7ac583fc5
Binary files /dev/null and b/img-microsoft-64/1f4b3.png differ
diff --git a/img-microsoft-64/1f4b4.png b/img-microsoft-64/1f4b4.png
new file mode 100644
index 0000000000..f4adf40970
Binary files /dev/null and b/img-microsoft-64/1f4b4.png differ
diff --git a/img-microsoft-64/1f4b5.png b/img-microsoft-64/1f4b5.png
new file mode 100644
index 0000000000..51b769ec0f
Binary files /dev/null and b/img-microsoft-64/1f4b5.png differ
diff --git a/img-microsoft-64/1f4b6.png b/img-microsoft-64/1f4b6.png
new file mode 100644
index 0000000000..7358e73f15
Binary files /dev/null and b/img-microsoft-64/1f4b6.png differ
diff --git a/img-microsoft-64/1f4b7.png b/img-microsoft-64/1f4b7.png
new file mode 100644
index 0000000000..0528ee973d
Binary files /dev/null and b/img-microsoft-64/1f4b7.png differ
diff --git a/img-microsoft-64/1f4b8.png b/img-microsoft-64/1f4b8.png
new file mode 100644
index 0000000000..3263a4ae4c
Binary files /dev/null and b/img-microsoft-64/1f4b8.png differ
diff --git a/img-microsoft-64/1f4b9.png b/img-microsoft-64/1f4b9.png
new file mode 100644
index 0000000000..2b63eb2678
Binary files /dev/null and b/img-microsoft-64/1f4b9.png differ
diff --git a/img-microsoft-64/1f4ba.png b/img-microsoft-64/1f4ba.png
new file mode 100644
index 0000000000..2cb3980cd4
Binary files /dev/null and b/img-microsoft-64/1f4ba.png differ
diff --git a/img-microsoft-64/1f4bb.png b/img-microsoft-64/1f4bb.png
new file mode 100644
index 0000000000..d250a6881b
Binary files /dev/null and b/img-microsoft-64/1f4bb.png differ
diff --git a/img-microsoft-64/1f4bc.png b/img-microsoft-64/1f4bc.png
new file mode 100644
index 0000000000..2082385759
Binary files /dev/null and b/img-microsoft-64/1f4bc.png differ
diff --git a/img-microsoft-64/1f4bd.png b/img-microsoft-64/1f4bd.png
new file mode 100644
index 0000000000..52bedcc1f2
Binary files /dev/null and b/img-microsoft-64/1f4bd.png differ
diff --git a/img-microsoft-64/1f4be.png b/img-microsoft-64/1f4be.png
new file mode 100644
index 0000000000..6aa0f52dc6
Binary files /dev/null and b/img-microsoft-64/1f4be.png differ
diff --git a/img-microsoft-64/1f4bf.png b/img-microsoft-64/1f4bf.png
new file mode 100644
index 0000000000..f200bc1950
Binary files /dev/null and b/img-microsoft-64/1f4bf.png differ
diff --git a/img-microsoft-64/1f4c0.png b/img-microsoft-64/1f4c0.png
new file mode 100644
index 0000000000..bf009dffd5
Binary files /dev/null and b/img-microsoft-64/1f4c0.png differ
diff --git a/img-microsoft-64/1f4c1.png b/img-microsoft-64/1f4c1.png
new file mode 100644
index 0000000000..eb4e3a2c48
Binary files /dev/null and b/img-microsoft-64/1f4c1.png differ
diff --git a/img-microsoft-64/1f4c2.png b/img-microsoft-64/1f4c2.png
new file mode 100644
index 0000000000..89676bf5d5
Binary files /dev/null and b/img-microsoft-64/1f4c2.png differ
diff --git a/img-microsoft-64/1f4c3.png b/img-microsoft-64/1f4c3.png
new file mode 100644
index 0000000000..f59b68d665
Binary files /dev/null and b/img-microsoft-64/1f4c3.png differ
diff --git a/img-microsoft-64/1f4c4.png b/img-microsoft-64/1f4c4.png
new file mode 100644
index 0000000000..0a06b14870
Binary files /dev/null and b/img-microsoft-64/1f4c4.png differ
diff --git a/img-microsoft-64/1f4c5.png b/img-microsoft-64/1f4c5.png
new file mode 100644
index 0000000000..2bc6ca08f6
Binary files /dev/null and b/img-microsoft-64/1f4c5.png differ
diff --git a/img-microsoft-64/1f4c6.png b/img-microsoft-64/1f4c6.png
new file mode 100644
index 0000000000..01598d7912
Binary files /dev/null and b/img-microsoft-64/1f4c6.png differ
diff --git a/img-microsoft-64/1f4c7.png b/img-microsoft-64/1f4c7.png
new file mode 100644
index 0000000000..67dac3b3f2
Binary files /dev/null and b/img-microsoft-64/1f4c7.png differ
diff --git a/img-microsoft-64/1f4c8.png b/img-microsoft-64/1f4c8.png
new file mode 100644
index 0000000000..7dcb6bd1cf
Binary files /dev/null and b/img-microsoft-64/1f4c8.png differ
diff --git a/img-microsoft-64/1f4c9.png b/img-microsoft-64/1f4c9.png
new file mode 100644
index 0000000000..f1eec25e98
Binary files /dev/null and b/img-microsoft-64/1f4c9.png differ
diff --git a/img-microsoft-64/1f4ca.png b/img-microsoft-64/1f4ca.png
new file mode 100644
index 0000000000..7dcb61d749
Binary files /dev/null and b/img-microsoft-64/1f4ca.png differ
diff --git a/img-microsoft-64/1f4cb.png b/img-microsoft-64/1f4cb.png
new file mode 100644
index 0000000000..5a886a1f14
Binary files /dev/null and b/img-microsoft-64/1f4cb.png differ
diff --git a/img-microsoft-64/1f4cc.png b/img-microsoft-64/1f4cc.png
new file mode 100644
index 0000000000..a4e8c96da7
Binary files /dev/null and b/img-microsoft-64/1f4cc.png differ
diff --git a/img-microsoft-64/1f4cd.png b/img-microsoft-64/1f4cd.png
new file mode 100644
index 0000000000..b15590d23f
Binary files /dev/null and b/img-microsoft-64/1f4cd.png differ
diff --git a/img-microsoft-64/1f4cf.png b/img-microsoft-64/1f4cf.png
new file mode 100644
index 0000000000..92e43006d7
Binary files /dev/null and b/img-microsoft-64/1f4cf.png differ
diff --git a/img-microsoft-64/1f4d0.png b/img-microsoft-64/1f4d0.png
new file mode 100644
index 0000000000..60945e5b89
Binary files /dev/null and b/img-microsoft-64/1f4d0.png differ
diff --git a/img-microsoft-64/1f4d1.png b/img-microsoft-64/1f4d1.png
new file mode 100644
index 0000000000..7846912c92
Binary files /dev/null and b/img-microsoft-64/1f4d1.png differ
diff --git a/img-microsoft-64/1f4d2.png b/img-microsoft-64/1f4d2.png
new file mode 100644
index 0000000000..d6bbbfda14
Binary files /dev/null and b/img-microsoft-64/1f4d2.png differ
diff --git a/img-microsoft-64/1f4d3.png b/img-microsoft-64/1f4d3.png
new file mode 100644
index 0000000000..3a3c10d7d6
Binary files /dev/null and b/img-microsoft-64/1f4d3.png differ
diff --git a/img-microsoft-64/1f4d4.png b/img-microsoft-64/1f4d4.png
new file mode 100644
index 0000000000..f393ea4d61
Binary files /dev/null and b/img-microsoft-64/1f4d4.png differ
diff --git a/img-microsoft-64/1f4d5.png b/img-microsoft-64/1f4d5.png
new file mode 100644
index 0000000000..9ee0a486ea
Binary files /dev/null and b/img-microsoft-64/1f4d5.png differ
diff --git a/img-microsoft-64/1f4d6.png b/img-microsoft-64/1f4d6.png
new file mode 100644
index 0000000000..1d3e3db002
Binary files /dev/null and b/img-microsoft-64/1f4d6.png differ
diff --git a/img-microsoft-64/1f4d7.png b/img-microsoft-64/1f4d7.png
new file mode 100644
index 0000000000..493203ad2c
Binary files /dev/null and b/img-microsoft-64/1f4d7.png differ
diff --git a/img-microsoft-64/1f4d8.png b/img-microsoft-64/1f4d8.png
new file mode 100644
index 0000000000..06fc6b4076
Binary files /dev/null and b/img-microsoft-64/1f4d8.png differ
diff --git a/img-microsoft-64/1f4d9.png b/img-microsoft-64/1f4d9.png
new file mode 100644
index 0000000000..5548439f09
Binary files /dev/null and b/img-microsoft-64/1f4d9.png differ
diff --git a/img-microsoft-64/1f4da.png b/img-microsoft-64/1f4da.png
new file mode 100644
index 0000000000..bfc2b42e5c
Binary files /dev/null and b/img-microsoft-64/1f4da.png differ
diff --git a/img-microsoft-64/1f4db.png b/img-microsoft-64/1f4db.png
new file mode 100644
index 0000000000..66eb0df2fb
Binary files /dev/null and b/img-microsoft-64/1f4db.png differ
diff --git a/img-microsoft-64/1f4dc.png b/img-microsoft-64/1f4dc.png
new file mode 100644
index 0000000000..ba5440a365
Binary files /dev/null and b/img-microsoft-64/1f4dc.png differ
diff --git a/img-microsoft-64/1f4dd.png b/img-microsoft-64/1f4dd.png
new file mode 100644
index 0000000000..670ff431d3
Binary files /dev/null and b/img-microsoft-64/1f4dd.png differ
diff --git a/img-microsoft-64/1f4de.png b/img-microsoft-64/1f4de.png
new file mode 100644
index 0000000000..ab4f2966e2
Binary files /dev/null and b/img-microsoft-64/1f4de.png differ
diff --git a/img-microsoft-64/1f4df.png b/img-microsoft-64/1f4df.png
new file mode 100644
index 0000000000..f4e8141bf3
Binary files /dev/null and b/img-microsoft-64/1f4df.png differ
diff --git a/img-microsoft-64/1f4e0.png b/img-microsoft-64/1f4e0.png
new file mode 100644
index 0000000000..f5c4246abf
Binary files /dev/null and b/img-microsoft-64/1f4e0.png differ
diff --git a/img-microsoft-64/1f4e1.png b/img-microsoft-64/1f4e1.png
new file mode 100644
index 0000000000..da5884d1a1
Binary files /dev/null and b/img-microsoft-64/1f4e1.png differ
diff --git a/img-microsoft-64/1f4e2.png b/img-microsoft-64/1f4e2.png
new file mode 100644
index 0000000000..51972d4d22
Binary files /dev/null and b/img-microsoft-64/1f4e2.png differ
diff --git a/img-microsoft-64/1f4e3.png b/img-microsoft-64/1f4e3.png
new file mode 100644
index 0000000000..62124b4f71
Binary files /dev/null and b/img-microsoft-64/1f4e3.png differ
diff --git a/img-microsoft-64/1f4e4.png b/img-microsoft-64/1f4e4.png
new file mode 100644
index 0000000000..013c895b4d
Binary files /dev/null and b/img-microsoft-64/1f4e4.png differ
diff --git a/img-microsoft-64/1f4e5.png b/img-microsoft-64/1f4e5.png
new file mode 100644
index 0000000000..57b82e3f96
Binary files /dev/null and b/img-microsoft-64/1f4e5.png differ
diff --git a/img-microsoft-64/1f4e6.png b/img-microsoft-64/1f4e6.png
new file mode 100644
index 0000000000..c3e01ee622
Binary files /dev/null and b/img-microsoft-64/1f4e6.png differ
diff --git a/img-microsoft-64/1f4e7.png b/img-microsoft-64/1f4e7.png
new file mode 100644
index 0000000000..dff6e1f080
Binary files /dev/null and b/img-microsoft-64/1f4e7.png differ
diff --git a/img-microsoft-64/1f4e8.png b/img-microsoft-64/1f4e8.png
new file mode 100644
index 0000000000..c2e098c1b8
Binary files /dev/null and b/img-microsoft-64/1f4e8.png differ
diff --git a/img-microsoft-64/1f4e9.png b/img-microsoft-64/1f4e9.png
new file mode 100644
index 0000000000..5528479c88
Binary files /dev/null and b/img-microsoft-64/1f4e9.png differ
diff --git a/img-microsoft-64/1f4ea.png b/img-microsoft-64/1f4ea.png
new file mode 100644
index 0000000000..88cc9871ca
Binary files /dev/null and b/img-microsoft-64/1f4ea.png differ
diff --git a/img-microsoft-64/1f4eb.png b/img-microsoft-64/1f4eb.png
new file mode 100644
index 0000000000..30c645e393
Binary files /dev/null and b/img-microsoft-64/1f4eb.png differ
diff --git a/img-microsoft-64/1f4ec.png b/img-microsoft-64/1f4ec.png
new file mode 100644
index 0000000000..9231549dc4
Binary files /dev/null and b/img-microsoft-64/1f4ec.png differ
diff --git a/img-microsoft-64/1f4ed.png b/img-microsoft-64/1f4ed.png
new file mode 100644
index 0000000000..b1fa43ea28
Binary files /dev/null and b/img-microsoft-64/1f4ed.png differ
diff --git a/img-microsoft-64/1f4ee.png b/img-microsoft-64/1f4ee.png
new file mode 100644
index 0000000000..4385cba198
Binary files /dev/null and b/img-microsoft-64/1f4ee.png differ
diff --git a/img-microsoft-64/1f4ef.png b/img-microsoft-64/1f4ef.png
new file mode 100644
index 0000000000..01a6cfbb6e
Binary files /dev/null and b/img-microsoft-64/1f4ef.png differ
diff --git a/img-microsoft-64/1f4f0.png b/img-microsoft-64/1f4f0.png
new file mode 100644
index 0000000000..b1e782c53a
Binary files /dev/null and b/img-microsoft-64/1f4f0.png differ
diff --git a/img-microsoft-64/1f4f1.png b/img-microsoft-64/1f4f1.png
new file mode 100644
index 0000000000..95b29f9335
Binary files /dev/null and b/img-microsoft-64/1f4f1.png differ
diff --git a/img-microsoft-64/1f4f2.png b/img-microsoft-64/1f4f2.png
new file mode 100644
index 0000000000..ef5e5eb595
Binary files /dev/null and b/img-microsoft-64/1f4f2.png differ
diff --git a/img-microsoft-64/1f4f3.png b/img-microsoft-64/1f4f3.png
new file mode 100644
index 0000000000..1ffb90f532
Binary files /dev/null and b/img-microsoft-64/1f4f3.png differ
diff --git a/img-microsoft-64/1f4f4.png b/img-microsoft-64/1f4f4.png
new file mode 100644
index 0000000000..ce98769dc3
Binary files /dev/null and b/img-microsoft-64/1f4f4.png differ
diff --git a/img-microsoft-64/1f4f5.png b/img-microsoft-64/1f4f5.png
new file mode 100644
index 0000000000..b9ea5b7da3
Binary files /dev/null and b/img-microsoft-64/1f4f5.png differ
diff --git a/img-microsoft-64/1f4f6.png b/img-microsoft-64/1f4f6.png
new file mode 100644
index 0000000000..1e1bc57833
Binary files /dev/null and b/img-microsoft-64/1f4f6.png differ
diff --git a/img-microsoft-64/1f4f7.png b/img-microsoft-64/1f4f7.png
new file mode 100644
index 0000000000..deb834629e
Binary files /dev/null and b/img-microsoft-64/1f4f7.png differ
diff --git a/img-microsoft-64/1f4f8.png b/img-microsoft-64/1f4f8.png
new file mode 100644
index 0000000000..74d5cb5d86
Binary files /dev/null and b/img-microsoft-64/1f4f8.png differ
diff --git a/img-microsoft-64/1f4f9.png b/img-microsoft-64/1f4f9.png
new file mode 100644
index 0000000000..77c5d5260f
Binary files /dev/null and b/img-microsoft-64/1f4f9.png differ
diff --git a/img-microsoft-64/1f4fa.png b/img-microsoft-64/1f4fa.png
new file mode 100644
index 0000000000..64b4195603
Binary files /dev/null and b/img-microsoft-64/1f4fa.png differ
diff --git a/img-microsoft-64/1f4fb.png b/img-microsoft-64/1f4fb.png
new file mode 100644
index 0000000000..31a67f5541
Binary files /dev/null and b/img-microsoft-64/1f4fb.png differ
diff --git a/img-microsoft-64/1f4fc.png b/img-microsoft-64/1f4fc.png
new file mode 100644
index 0000000000..bee36f7cd1
Binary files /dev/null and b/img-microsoft-64/1f4fc.png differ
diff --git a/img-microsoft-64/1f4fd-fe0f.png b/img-microsoft-64/1f4fd-fe0f.png
new file mode 100644
index 0000000000..ad574f7f0f
Binary files /dev/null and b/img-microsoft-64/1f4fd-fe0f.png differ
diff --git a/img-microsoft-64/1f4ff.png b/img-microsoft-64/1f4ff.png
new file mode 100644
index 0000000000..00c76ebae9
Binary files /dev/null and b/img-microsoft-64/1f4ff.png differ
diff --git a/img-microsoft-64/1f500.png b/img-microsoft-64/1f500.png
new file mode 100644
index 0000000000..3845139ec0
Binary files /dev/null and b/img-microsoft-64/1f500.png differ
diff --git a/img-microsoft-64/1f501.png b/img-microsoft-64/1f501.png
new file mode 100644
index 0000000000..69b79a9e76
Binary files /dev/null and b/img-microsoft-64/1f501.png differ
diff --git a/img-microsoft-64/1f502.png b/img-microsoft-64/1f502.png
new file mode 100644
index 0000000000..ee3e891582
Binary files /dev/null and b/img-microsoft-64/1f502.png differ
diff --git a/img-microsoft-64/1f503.png b/img-microsoft-64/1f503.png
new file mode 100644
index 0000000000..9725026694
Binary files /dev/null and b/img-microsoft-64/1f503.png differ
diff --git a/img-microsoft-64/1f504.png b/img-microsoft-64/1f504.png
new file mode 100644
index 0000000000..99fe25e8ae
Binary files /dev/null and b/img-microsoft-64/1f504.png differ
diff --git a/img-microsoft-64/1f505.png b/img-microsoft-64/1f505.png
new file mode 100644
index 0000000000..3ef844b5b7
Binary files /dev/null and b/img-microsoft-64/1f505.png differ
diff --git a/img-microsoft-64/1f506.png b/img-microsoft-64/1f506.png
new file mode 100644
index 0000000000..2b597ba449
Binary files /dev/null and b/img-microsoft-64/1f506.png differ
diff --git a/img-microsoft-64/1f507.png b/img-microsoft-64/1f507.png
new file mode 100644
index 0000000000..1197fddee0
Binary files /dev/null and b/img-microsoft-64/1f507.png differ
diff --git a/img-microsoft-64/1f508.png b/img-microsoft-64/1f508.png
new file mode 100644
index 0000000000..8ce54ef94c
Binary files /dev/null and b/img-microsoft-64/1f508.png differ
diff --git a/img-microsoft-64/1f509.png b/img-microsoft-64/1f509.png
new file mode 100644
index 0000000000..d9d84e035d
Binary files /dev/null and b/img-microsoft-64/1f509.png differ
diff --git a/img-microsoft-64/1f50a.png b/img-microsoft-64/1f50a.png
new file mode 100644
index 0000000000..640a5176b0
Binary files /dev/null and b/img-microsoft-64/1f50a.png differ
diff --git a/img-microsoft-64/1f50b.png b/img-microsoft-64/1f50b.png
new file mode 100644
index 0000000000..ae94362d16
Binary files /dev/null and b/img-microsoft-64/1f50b.png differ
diff --git a/img-microsoft-64/1f50c.png b/img-microsoft-64/1f50c.png
new file mode 100644
index 0000000000..0e49a42773
Binary files /dev/null and b/img-microsoft-64/1f50c.png differ
diff --git a/img-microsoft-64/1f50d.png b/img-microsoft-64/1f50d.png
new file mode 100644
index 0000000000..1fc2790b25
Binary files /dev/null and b/img-microsoft-64/1f50d.png differ
diff --git a/img-microsoft-64/1f50e.png b/img-microsoft-64/1f50e.png
new file mode 100644
index 0000000000..3c16181e10
Binary files /dev/null and b/img-microsoft-64/1f50e.png differ
diff --git a/img-microsoft-64/1f50f.png b/img-microsoft-64/1f50f.png
new file mode 100644
index 0000000000..49ebad6b15
Binary files /dev/null and b/img-microsoft-64/1f50f.png differ
diff --git a/img-microsoft-64/1f510.png b/img-microsoft-64/1f510.png
new file mode 100644
index 0000000000..ef9dff3204
Binary files /dev/null and b/img-microsoft-64/1f510.png differ
diff --git a/img-microsoft-64/1f511.png b/img-microsoft-64/1f511.png
new file mode 100644
index 0000000000..62576ff39b
Binary files /dev/null and b/img-microsoft-64/1f511.png differ
diff --git a/img-microsoft-64/1f512.png b/img-microsoft-64/1f512.png
new file mode 100644
index 0000000000..f4a9f7787d
Binary files /dev/null and b/img-microsoft-64/1f512.png differ
diff --git a/img-microsoft-64/1f513.png b/img-microsoft-64/1f513.png
new file mode 100644
index 0000000000..99e22ae7e2
Binary files /dev/null and b/img-microsoft-64/1f513.png differ
diff --git a/img-microsoft-64/1f514.png b/img-microsoft-64/1f514.png
new file mode 100644
index 0000000000..c3ea58db7e
Binary files /dev/null and b/img-microsoft-64/1f514.png differ
diff --git a/img-microsoft-64/1f515.png b/img-microsoft-64/1f515.png
new file mode 100644
index 0000000000..a47a446838
Binary files /dev/null and b/img-microsoft-64/1f515.png differ
diff --git a/img-microsoft-64/1f516.png b/img-microsoft-64/1f516.png
new file mode 100644
index 0000000000..a8140c2965
Binary files /dev/null and b/img-microsoft-64/1f516.png differ
diff --git a/img-microsoft-64/1f517.png b/img-microsoft-64/1f517.png
new file mode 100644
index 0000000000..bea5fffdb2
Binary files /dev/null and b/img-microsoft-64/1f517.png differ
diff --git a/img-microsoft-64/1f518.png b/img-microsoft-64/1f518.png
new file mode 100644
index 0000000000..1448150ee8
Binary files /dev/null and b/img-microsoft-64/1f518.png differ
diff --git a/img-microsoft-64/1f519.png b/img-microsoft-64/1f519.png
new file mode 100644
index 0000000000..baa2330d97
Binary files /dev/null and b/img-microsoft-64/1f519.png differ
diff --git a/img-microsoft-64/1f51a.png b/img-microsoft-64/1f51a.png
new file mode 100644
index 0000000000..af39eda66f
Binary files /dev/null and b/img-microsoft-64/1f51a.png differ
diff --git a/img-microsoft-64/1f51b.png b/img-microsoft-64/1f51b.png
new file mode 100644
index 0000000000..67daeedb98
Binary files /dev/null and b/img-microsoft-64/1f51b.png differ
diff --git a/img-microsoft-64/1f51c.png b/img-microsoft-64/1f51c.png
new file mode 100644
index 0000000000..4a80e8fb20
Binary files /dev/null and b/img-microsoft-64/1f51c.png differ
diff --git a/img-microsoft-64/1f51d.png b/img-microsoft-64/1f51d.png
new file mode 100644
index 0000000000..3568f7c741
Binary files /dev/null and b/img-microsoft-64/1f51d.png differ
diff --git a/img-microsoft-64/1f51e.png b/img-microsoft-64/1f51e.png
new file mode 100644
index 0000000000..bd2ac695a7
Binary files /dev/null and b/img-microsoft-64/1f51e.png differ
diff --git a/img-microsoft-64/1f51f.png b/img-microsoft-64/1f51f.png
new file mode 100644
index 0000000000..742da9432f
Binary files /dev/null and b/img-microsoft-64/1f51f.png differ
diff --git a/img-microsoft-64/1f520.png b/img-microsoft-64/1f520.png
new file mode 100644
index 0000000000..9c31e603bc
Binary files /dev/null and b/img-microsoft-64/1f520.png differ
diff --git a/img-microsoft-64/1f521.png b/img-microsoft-64/1f521.png
new file mode 100644
index 0000000000..9123478183
Binary files /dev/null and b/img-microsoft-64/1f521.png differ
diff --git a/img-microsoft-64/1f522.png b/img-microsoft-64/1f522.png
new file mode 100644
index 0000000000..90cbb04a69
Binary files /dev/null and b/img-microsoft-64/1f522.png differ
diff --git a/img-microsoft-64/1f523.png b/img-microsoft-64/1f523.png
new file mode 100644
index 0000000000..9d43a6d4db
Binary files /dev/null and b/img-microsoft-64/1f523.png differ
diff --git a/img-microsoft-64/1f524.png b/img-microsoft-64/1f524.png
new file mode 100644
index 0000000000..e4474db475
Binary files /dev/null and b/img-microsoft-64/1f524.png differ
diff --git a/img-microsoft-64/1f525.png b/img-microsoft-64/1f525.png
new file mode 100644
index 0000000000..3bddf3f1a2
Binary files /dev/null and b/img-microsoft-64/1f525.png differ
diff --git a/img-microsoft-64/1f526.png b/img-microsoft-64/1f526.png
new file mode 100644
index 0000000000..cd941192d9
Binary files /dev/null and b/img-microsoft-64/1f526.png differ
diff --git a/img-microsoft-64/1f527.png b/img-microsoft-64/1f527.png
new file mode 100644
index 0000000000..79b2885d92
Binary files /dev/null and b/img-microsoft-64/1f527.png differ
diff --git a/img-microsoft-64/1f528.png b/img-microsoft-64/1f528.png
new file mode 100644
index 0000000000..2e9deafea2
Binary files /dev/null and b/img-microsoft-64/1f528.png differ
diff --git a/img-microsoft-64/1f529.png b/img-microsoft-64/1f529.png
new file mode 100644
index 0000000000..831d3a8a80
Binary files /dev/null and b/img-microsoft-64/1f529.png differ
diff --git a/img-microsoft-64/1f52a.png b/img-microsoft-64/1f52a.png
new file mode 100644
index 0000000000..1146d45c80
Binary files /dev/null and b/img-microsoft-64/1f52a.png differ
diff --git a/img-microsoft-64/1f52b.png b/img-microsoft-64/1f52b.png
new file mode 100644
index 0000000000..95bad7febc
Binary files /dev/null and b/img-microsoft-64/1f52b.png differ
diff --git a/img-microsoft-64/1f52c.png b/img-microsoft-64/1f52c.png
new file mode 100644
index 0000000000..3c2192ac35
Binary files /dev/null and b/img-microsoft-64/1f52c.png differ
diff --git a/img-microsoft-64/1f52d.png b/img-microsoft-64/1f52d.png
new file mode 100644
index 0000000000..b0b043a3fd
Binary files /dev/null and b/img-microsoft-64/1f52d.png differ
diff --git a/img-microsoft-64/1f52e.png b/img-microsoft-64/1f52e.png
new file mode 100644
index 0000000000..7b4ec3a42c
Binary files /dev/null and b/img-microsoft-64/1f52e.png differ
diff --git a/img-microsoft-64/1f52f.png b/img-microsoft-64/1f52f.png
new file mode 100644
index 0000000000..b74c2ec277
Binary files /dev/null and b/img-microsoft-64/1f52f.png differ
diff --git a/img-microsoft-64/1f530.png b/img-microsoft-64/1f530.png
new file mode 100644
index 0000000000..d8b83dc7f1
Binary files /dev/null and b/img-microsoft-64/1f530.png differ
diff --git a/img-microsoft-64/1f531.png b/img-microsoft-64/1f531.png
new file mode 100644
index 0000000000..ce09423a8b
Binary files /dev/null and b/img-microsoft-64/1f531.png differ
diff --git a/img-microsoft-64/1f532.png b/img-microsoft-64/1f532.png
new file mode 100644
index 0000000000..430339d943
Binary files /dev/null and b/img-microsoft-64/1f532.png differ
diff --git a/img-microsoft-64/1f533.png b/img-microsoft-64/1f533.png
new file mode 100644
index 0000000000..45e45fd969
Binary files /dev/null and b/img-microsoft-64/1f533.png differ
diff --git a/img-microsoft-64/1f534.png b/img-microsoft-64/1f534.png
new file mode 100644
index 0000000000..88caa9399e
Binary files /dev/null and b/img-microsoft-64/1f534.png differ
diff --git a/img-microsoft-64/1f535.png b/img-microsoft-64/1f535.png
new file mode 100644
index 0000000000..54538ad8e5
Binary files /dev/null and b/img-microsoft-64/1f535.png differ
diff --git a/img-microsoft-64/1f536.png b/img-microsoft-64/1f536.png
new file mode 100644
index 0000000000..1be9a4ac80
Binary files /dev/null and b/img-microsoft-64/1f536.png differ
diff --git a/img-microsoft-64/1f537.png b/img-microsoft-64/1f537.png
new file mode 100644
index 0000000000..fd434eeb73
Binary files /dev/null and b/img-microsoft-64/1f537.png differ
diff --git a/img-microsoft-64/1f538.png b/img-microsoft-64/1f538.png
new file mode 100644
index 0000000000..f1678fb45b
Binary files /dev/null and b/img-microsoft-64/1f538.png differ
diff --git a/img-microsoft-64/1f539.png b/img-microsoft-64/1f539.png
new file mode 100644
index 0000000000..da223f0453
Binary files /dev/null and b/img-microsoft-64/1f539.png differ
diff --git a/img-microsoft-64/1f53a.png b/img-microsoft-64/1f53a.png
new file mode 100644
index 0000000000..0bfca25842
Binary files /dev/null and b/img-microsoft-64/1f53a.png differ
diff --git a/img-microsoft-64/1f53b.png b/img-microsoft-64/1f53b.png
new file mode 100644
index 0000000000..e15af0d9f4
Binary files /dev/null and b/img-microsoft-64/1f53b.png differ
diff --git a/img-microsoft-64/1f53c.png b/img-microsoft-64/1f53c.png
new file mode 100644
index 0000000000..3932d111b2
Binary files /dev/null and b/img-microsoft-64/1f53c.png differ
diff --git a/img-microsoft-64/1f53d.png b/img-microsoft-64/1f53d.png
new file mode 100644
index 0000000000..6f3a78a8b2
Binary files /dev/null and b/img-microsoft-64/1f53d.png differ
diff --git a/img-microsoft-64/1f549-fe0f.png b/img-microsoft-64/1f549-fe0f.png
new file mode 100644
index 0000000000..878d183f39
Binary files /dev/null and b/img-microsoft-64/1f549-fe0f.png differ
diff --git a/img-microsoft-64/1f54a-fe0f.png b/img-microsoft-64/1f54a-fe0f.png
new file mode 100644
index 0000000000..6e76292b3a
Binary files /dev/null and b/img-microsoft-64/1f54a-fe0f.png differ
diff --git a/img-microsoft-64/1f54b.png b/img-microsoft-64/1f54b.png
new file mode 100644
index 0000000000..6b24c904b4
Binary files /dev/null and b/img-microsoft-64/1f54b.png differ
diff --git a/img-microsoft-64/1f54c.png b/img-microsoft-64/1f54c.png
new file mode 100644
index 0000000000..e3889cd682
Binary files /dev/null and b/img-microsoft-64/1f54c.png differ
diff --git a/img-microsoft-64/1f54d.png b/img-microsoft-64/1f54d.png
new file mode 100644
index 0000000000..eaae77ffed
Binary files /dev/null and b/img-microsoft-64/1f54d.png differ
diff --git a/img-microsoft-64/1f54e.png b/img-microsoft-64/1f54e.png
new file mode 100644
index 0000000000..73b66272bc
Binary files /dev/null and b/img-microsoft-64/1f54e.png differ
diff --git a/img-microsoft-64/1f550.png b/img-microsoft-64/1f550.png
new file mode 100644
index 0000000000..d387ebb7eb
Binary files /dev/null and b/img-microsoft-64/1f550.png differ
diff --git a/img-microsoft-64/1f551.png b/img-microsoft-64/1f551.png
new file mode 100644
index 0000000000..b15227ceae
Binary files /dev/null and b/img-microsoft-64/1f551.png differ
diff --git a/img-microsoft-64/1f552.png b/img-microsoft-64/1f552.png
new file mode 100644
index 0000000000..295a1050e2
Binary files /dev/null and b/img-microsoft-64/1f552.png differ
diff --git a/img-microsoft-64/1f553.png b/img-microsoft-64/1f553.png
new file mode 100644
index 0000000000..2fff0ff522
Binary files /dev/null and b/img-microsoft-64/1f553.png differ
diff --git a/img-microsoft-64/1f554.png b/img-microsoft-64/1f554.png
new file mode 100644
index 0000000000..1efce224a7
Binary files /dev/null and b/img-microsoft-64/1f554.png differ
diff --git a/img-microsoft-64/1f555.png b/img-microsoft-64/1f555.png
new file mode 100644
index 0000000000..851e853043
Binary files /dev/null and b/img-microsoft-64/1f555.png differ
diff --git a/img-microsoft-64/1f556.png b/img-microsoft-64/1f556.png
new file mode 100644
index 0000000000..4cf0690948
Binary files /dev/null and b/img-microsoft-64/1f556.png differ
diff --git a/img-microsoft-64/1f557.png b/img-microsoft-64/1f557.png
new file mode 100644
index 0000000000..c35c48e896
Binary files /dev/null and b/img-microsoft-64/1f557.png differ
diff --git a/img-microsoft-64/1f558.png b/img-microsoft-64/1f558.png
new file mode 100644
index 0000000000..f3044d95e0
Binary files /dev/null and b/img-microsoft-64/1f558.png differ
diff --git a/img-microsoft-64/1f559.png b/img-microsoft-64/1f559.png
new file mode 100644
index 0000000000..06a8caac84
Binary files /dev/null and b/img-microsoft-64/1f559.png differ
diff --git a/img-microsoft-64/1f55a.png b/img-microsoft-64/1f55a.png
new file mode 100644
index 0000000000..89e077af86
Binary files /dev/null and b/img-microsoft-64/1f55a.png differ
diff --git a/img-microsoft-64/1f55b.png b/img-microsoft-64/1f55b.png
new file mode 100644
index 0000000000..1a6e00d070
Binary files /dev/null and b/img-microsoft-64/1f55b.png differ
diff --git a/img-microsoft-64/1f55c.png b/img-microsoft-64/1f55c.png
new file mode 100644
index 0000000000..cd1121ca68
Binary files /dev/null and b/img-microsoft-64/1f55c.png differ
diff --git a/img-microsoft-64/1f55d.png b/img-microsoft-64/1f55d.png
new file mode 100644
index 0000000000..294648da7c
Binary files /dev/null and b/img-microsoft-64/1f55d.png differ
diff --git a/img-microsoft-64/1f55e.png b/img-microsoft-64/1f55e.png
new file mode 100644
index 0000000000..ad5b4bb73b
Binary files /dev/null and b/img-microsoft-64/1f55e.png differ
diff --git a/img-microsoft-64/1f55f.png b/img-microsoft-64/1f55f.png
new file mode 100644
index 0000000000..6962ab976a
Binary files /dev/null and b/img-microsoft-64/1f55f.png differ
diff --git a/img-microsoft-64/1f560.png b/img-microsoft-64/1f560.png
new file mode 100644
index 0000000000..237086db55
Binary files /dev/null and b/img-microsoft-64/1f560.png differ
diff --git a/img-microsoft-64/1f561.png b/img-microsoft-64/1f561.png
new file mode 100644
index 0000000000..8eb49e2727
Binary files /dev/null and b/img-microsoft-64/1f561.png differ
diff --git a/img-microsoft-64/1f562.png b/img-microsoft-64/1f562.png
new file mode 100644
index 0000000000..335a7c9f4a
Binary files /dev/null and b/img-microsoft-64/1f562.png differ
diff --git a/img-microsoft-64/1f563.png b/img-microsoft-64/1f563.png
new file mode 100644
index 0000000000..a3b8a9cb83
Binary files /dev/null and b/img-microsoft-64/1f563.png differ
diff --git a/img-microsoft-64/1f564.png b/img-microsoft-64/1f564.png
new file mode 100644
index 0000000000..c0f5c4b9fd
Binary files /dev/null and b/img-microsoft-64/1f564.png differ
diff --git a/img-microsoft-64/1f565.png b/img-microsoft-64/1f565.png
new file mode 100644
index 0000000000..4c82a5a7ac
Binary files /dev/null and b/img-microsoft-64/1f565.png differ
diff --git a/img-microsoft-64/1f566.png b/img-microsoft-64/1f566.png
new file mode 100644
index 0000000000..f63d94dbab
Binary files /dev/null and b/img-microsoft-64/1f566.png differ
diff --git a/img-microsoft-64/1f567.png b/img-microsoft-64/1f567.png
new file mode 100644
index 0000000000..1c5e7bcf97
Binary files /dev/null and b/img-microsoft-64/1f567.png differ
diff --git a/img-microsoft-64/1f56f-fe0f.png b/img-microsoft-64/1f56f-fe0f.png
new file mode 100644
index 0000000000..e848f1a460
Binary files /dev/null and b/img-microsoft-64/1f56f-fe0f.png differ
diff --git a/img-microsoft-64/1f570-fe0f.png b/img-microsoft-64/1f570-fe0f.png
new file mode 100644
index 0000000000..4066cdfb13
Binary files /dev/null and b/img-microsoft-64/1f570-fe0f.png differ
diff --git a/img-microsoft-64/1f573-fe0f.png b/img-microsoft-64/1f573-fe0f.png
new file mode 100644
index 0000000000..00d09a6c37
Binary files /dev/null and b/img-microsoft-64/1f573-fe0f.png differ
diff --git a/img-microsoft-64/1f574-1f3fb.png b/img-microsoft-64/1f574-1f3fb.png
new file mode 100644
index 0000000000..5e3faffd8c
Binary files /dev/null and b/img-microsoft-64/1f574-1f3fb.png differ
diff --git a/img-microsoft-64/1f574-1f3fc.png b/img-microsoft-64/1f574-1f3fc.png
new file mode 100644
index 0000000000..1181d54664
Binary files /dev/null and b/img-microsoft-64/1f574-1f3fc.png differ
diff --git a/img-microsoft-64/1f574-1f3fd.png b/img-microsoft-64/1f574-1f3fd.png
new file mode 100644
index 0000000000..74fc4effab
Binary files /dev/null and b/img-microsoft-64/1f574-1f3fd.png differ
diff --git a/img-microsoft-64/1f574-1f3fe.png b/img-microsoft-64/1f574-1f3fe.png
new file mode 100644
index 0000000000..8250b34b8f
Binary files /dev/null and b/img-microsoft-64/1f574-1f3fe.png differ
diff --git a/img-microsoft-64/1f574-1f3ff.png b/img-microsoft-64/1f574-1f3ff.png
new file mode 100644
index 0000000000..e60cab92d5
Binary files /dev/null and b/img-microsoft-64/1f574-1f3ff.png differ
diff --git a/img-microsoft-64/1f574-fe0f.png b/img-microsoft-64/1f574-fe0f.png
new file mode 100644
index 0000000000..8dff837da5
Binary files /dev/null and b/img-microsoft-64/1f574-fe0f.png differ
diff --git a/img-microsoft-64/1f575-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f575-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..8843d207c7
Binary files /dev/null and b/img-microsoft-64/1f575-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f575-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f575-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..cffa76a9a7
Binary files /dev/null and b/img-microsoft-64/1f575-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f575-1f3fb.png b/img-microsoft-64/1f575-1f3fb.png
new file mode 100644
index 0000000000..e54f1d06d0
Binary files /dev/null and b/img-microsoft-64/1f575-1f3fb.png differ
diff --git a/img-microsoft-64/1f575-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f575-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..61ca9ba620
Binary files /dev/null and b/img-microsoft-64/1f575-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f575-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f575-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..5e73852499
Binary files /dev/null and b/img-microsoft-64/1f575-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f575-1f3fc.png b/img-microsoft-64/1f575-1f3fc.png
new file mode 100644
index 0000000000..aa01701f73
Binary files /dev/null and b/img-microsoft-64/1f575-1f3fc.png differ
diff --git a/img-microsoft-64/1f575-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f575-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..0bb4de375e
Binary files /dev/null and b/img-microsoft-64/1f575-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f575-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f575-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f0ccd7083a
Binary files /dev/null and b/img-microsoft-64/1f575-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f575-1f3fd.png b/img-microsoft-64/1f575-1f3fd.png
new file mode 100644
index 0000000000..29862c2c5d
Binary files /dev/null and b/img-microsoft-64/1f575-1f3fd.png differ
diff --git a/img-microsoft-64/1f575-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f575-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..1db2c0f65d
Binary files /dev/null and b/img-microsoft-64/1f575-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f575-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f575-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..9e7f4644b5
Binary files /dev/null and b/img-microsoft-64/1f575-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f575-1f3fe.png b/img-microsoft-64/1f575-1f3fe.png
new file mode 100644
index 0000000000..e796094521
Binary files /dev/null and b/img-microsoft-64/1f575-1f3fe.png differ
diff --git a/img-microsoft-64/1f575-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f575-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..00d003c509
Binary files /dev/null and b/img-microsoft-64/1f575-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f575-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f575-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..864ee0f846
Binary files /dev/null and b/img-microsoft-64/1f575-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f575-1f3ff.png b/img-microsoft-64/1f575-1f3ff.png
new file mode 100644
index 0000000000..aad3a68ff8
Binary files /dev/null and b/img-microsoft-64/1f575-1f3ff.png differ
diff --git a/img-microsoft-64/1f575-fe0f-200d-2640-fe0f.png b/img-microsoft-64/1f575-fe0f-200d-2640-fe0f.png
new file mode 100644
index 0000000000..99492b77db
Binary files /dev/null and b/img-microsoft-64/1f575-fe0f-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f575-fe0f-200d-2642-fe0f.png b/img-microsoft-64/1f575-fe0f-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d3e81d98f6
Binary files /dev/null and b/img-microsoft-64/1f575-fe0f-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f575-fe0f.png b/img-microsoft-64/1f575-fe0f.png
new file mode 100644
index 0000000000..68b5b86311
Binary files /dev/null and b/img-microsoft-64/1f575-fe0f.png differ
diff --git a/img-microsoft-64/1f576-fe0f.png b/img-microsoft-64/1f576-fe0f.png
new file mode 100644
index 0000000000..ff65d808c6
Binary files /dev/null and b/img-microsoft-64/1f576-fe0f.png differ
diff --git a/img-microsoft-64/1f577-fe0f.png b/img-microsoft-64/1f577-fe0f.png
new file mode 100644
index 0000000000..b96d4227f5
Binary files /dev/null and b/img-microsoft-64/1f577-fe0f.png differ
diff --git a/img-microsoft-64/1f578-fe0f.png b/img-microsoft-64/1f578-fe0f.png
new file mode 100644
index 0000000000..ba3e8cfd69
Binary files /dev/null and b/img-microsoft-64/1f578-fe0f.png differ
diff --git a/img-microsoft-64/1f579-fe0f.png b/img-microsoft-64/1f579-fe0f.png
new file mode 100644
index 0000000000..768b9dac4b
Binary files /dev/null and b/img-microsoft-64/1f579-fe0f.png differ
diff --git a/img-microsoft-64/1f57a-1f3fb.png b/img-microsoft-64/1f57a-1f3fb.png
new file mode 100644
index 0000000000..042beabb8b
Binary files /dev/null and b/img-microsoft-64/1f57a-1f3fb.png differ
diff --git a/img-microsoft-64/1f57a-1f3fc.png b/img-microsoft-64/1f57a-1f3fc.png
new file mode 100644
index 0000000000..6d804db310
Binary files /dev/null and b/img-microsoft-64/1f57a-1f3fc.png differ
diff --git a/img-microsoft-64/1f57a-1f3fd.png b/img-microsoft-64/1f57a-1f3fd.png
new file mode 100644
index 0000000000..8a538fc0a2
Binary files /dev/null and b/img-microsoft-64/1f57a-1f3fd.png differ
diff --git a/img-microsoft-64/1f57a-1f3fe.png b/img-microsoft-64/1f57a-1f3fe.png
new file mode 100644
index 0000000000..164a72fd75
Binary files /dev/null and b/img-microsoft-64/1f57a-1f3fe.png differ
diff --git a/img-microsoft-64/1f57a-1f3ff.png b/img-microsoft-64/1f57a-1f3ff.png
new file mode 100644
index 0000000000..e435881e22
Binary files /dev/null and b/img-microsoft-64/1f57a-1f3ff.png differ
diff --git a/img-microsoft-64/1f57a.png b/img-microsoft-64/1f57a.png
new file mode 100644
index 0000000000..9016daac9d
Binary files /dev/null and b/img-microsoft-64/1f57a.png differ
diff --git a/img-microsoft-64/1f587-fe0f.png b/img-microsoft-64/1f587-fe0f.png
new file mode 100644
index 0000000000..e65d225504
Binary files /dev/null and b/img-microsoft-64/1f587-fe0f.png differ
diff --git a/img-microsoft-64/1f58a-fe0f.png b/img-microsoft-64/1f58a-fe0f.png
new file mode 100644
index 0000000000..d2f58c381d
Binary files /dev/null and b/img-microsoft-64/1f58a-fe0f.png differ
diff --git a/img-microsoft-64/1f58b-fe0f.png b/img-microsoft-64/1f58b-fe0f.png
new file mode 100644
index 0000000000..818da04c26
Binary files /dev/null and b/img-microsoft-64/1f58b-fe0f.png differ
diff --git a/img-microsoft-64/1f58c-fe0f.png b/img-microsoft-64/1f58c-fe0f.png
new file mode 100644
index 0000000000..029a3cd7cd
Binary files /dev/null and b/img-microsoft-64/1f58c-fe0f.png differ
diff --git a/img-microsoft-64/1f58d-fe0f.png b/img-microsoft-64/1f58d-fe0f.png
new file mode 100644
index 0000000000..caac7b4a25
Binary files /dev/null and b/img-microsoft-64/1f58d-fe0f.png differ
diff --git a/img-microsoft-64/1f590-1f3fb.png b/img-microsoft-64/1f590-1f3fb.png
new file mode 100644
index 0000000000..c07d545581
Binary files /dev/null and b/img-microsoft-64/1f590-1f3fb.png differ
diff --git a/img-microsoft-64/1f590-1f3fc.png b/img-microsoft-64/1f590-1f3fc.png
new file mode 100644
index 0000000000..7202b66687
Binary files /dev/null and b/img-microsoft-64/1f590-1f3fc.png differ
diff --git a/img-microsoft-64/1f590-1f3fd.png b/img-microsoft-64/1f590-1f3fd.png
new file mode 100644
index 0000000000..1f030f96df
Binary files /dev/null and b/img-microsoft-64/1f590-1f3fd.png differ
diff --git a/img-microsoft-64/1f590-1f3fe.png b/img-microsoft-64/1f590-1f3fe.png
new file mode 100644
index 0000000000..ef8c10fa41
Binary files /dev/null and b/img-microsoft-64/1f590-1f3fe.png differ
diff --git a/img-microsoft-64/1f590-1f3ff.png b/img-microsoft-64/1f590-1f3ff.png
new file mode 100644
index 0000000000..1e000651da
Binary files /dev/null and b/img-microsoft-64/1f590-1f3ff.png differ
diff --git a/img-microsoft-64/1f590-fe0f.png b/img-microsoft-64/1f590-fe0f.png
new file mode 100644
index 0000000000..f2ea18432f
Binary files /dev/null and b/img-microsoft-64/1f590-fe0f.png differ
diff --git a/img-microsoft-64/1f595-1f3fb.png b/img-microsoft-64/1f595-1f3fb.png
new file mode 100644
index 0000000000..9febf51bf7
Binary files /dev/null and b/img-microsoft-64/1f595-1f3fb.png differ
diff --git a/img-microsoft-64/1f595-1f3fc.png b/img-microsoft-64/1f595-1f3fc.png
new file mode 100644
index 0000000000..c7214a7967
Binary files /dev/null and b/img-microsoft-64/1f595-1f3fc.png differ
diff --git a/img-microsoft-64/1f595-1f3fd.png b/img-microsoft-64/1f595-1f3fd.png
new file mode 100644
index 0000000000..c075239515
Binary files /dev/null and b/img-microsoft-64/1f595-1f3fd.png differ
diff --git a/img-microsoft-64/1f595-1f3fe.png b/img-microsoft-64/1f595-1f3fe.png
new file mode 100644
index 0000000000..a4f1e2f9fa
Binary files /dev/null and b/img-microsoft-64/1f595-1f3fe.png differ
diff --git a/img-microsoft-64/1f595-1f3ff.png b/img-microsoft-64/1f595-1f3ff.png
new file mode 100644
index 0000000000..e2d28c1b90
Binary files /dev/null and b/img-microsoft-64/1f595-1f3ff.png differ
diff --git a/img-microsoft-64/1f595.png b/img-microsoft-64/1f595.png
new file mode 100644
index 0000000000..cd30edd7cd
Binary files /dev/null and b/img-microsoft-64/1f595.png differ
diff --git a/img-microsoft-64/1f596-1f3fb.png b/img-microsoft-64/1f596-1f3fb.png
new file mode 100644
index 0000000000..2deb6d17a1
Binary files /dev/null and b/img-microsoft-64/1f596-1f3fb.png differ
diff --git a/img-microsoft-64/1f596-1f3fc.png b/img-microsoft-64/1f596-1f3fc.png
new file mode 100644
index 0000000000..b65fb0e3d9
Binary files /dev/null and b/img-microsoft-64/1f596-1f3fc.png differ
diff --git a/img-microsoft-64/1f596-1f3fd.png b/img-microsoft-64/1f596-1f3fd.png
new file mode 100644
index 0000000000..d345321d36
Binary files /dev/null and b/img-microsoft-64/1f596-1f3fd.png differ
diff --git a/img-microsoft-64/1f596-1f3fe.png b/img-microsoft-64/1f596-1f3fe.png
new file mode 100644
index 0000000000..3e8cd5ea8a
Binary files /dev/null and b/img-microsoft-64/1f596-1f3fe.png differ
diff --git a/img-microsoft-64/1f596-1f3ff.png b/img-microsoft-64/1f596-1f3ff.png
new file mode 100644
index 0000000000..543aea7338
Binary files /dev/null and b/img-microsoft-64/1f596-1f3ff.png differ
diff --git a/img-microsoft-64/1f596.png b/img-microsoft-64/1f596.png
new file mode 100644
index 0000000000..cfcabe681d
Binary files /dev/null and b/img-microsoft-64/1f596.png differ
diff --git a/img-microsoft-64/1f5a4.png b/img-microsoft-64/1f5a4.png
new file mode 100644
index 0000000000..9b514aec84
Binary files /dev/null and b/img-microsoft-64/1f5a4.png differ
diff --git a/img-microsoft-64/1f5a5-fe0f.png b/img-microsoft-64/1f5a5-fe0f.png
new file mode 100644
index 0000000000..344005b8eb
Binary files /dev/null and b/img-microsoft-64/1f5a5-fe0f.png differ
diff --git a/img-microsoft-64/1f5a8-fe0f.png b/img-microsoft-64/1f5a8-fe0f.png
new file mode 100644
index 0000000000..531df6aef1
Binary files /dev/null and b/img-microsoft-64/1f5a8-fe0f.png differ
diff --git a/img-microsoft-64/1f5b1-fe0f.png b/img-microsoft-64/1f5b1-fe0f.png
new file mode 100644
index 0000000000..9dd22e3bf6
Binary files /dev/null and b/img-microsoft-64/1f5b1-fe0f.png differ
diff --git a/img-microsoft-64/1f5b2-fe0f.png b/img-microsoft-64/1f5b2-fe0f.png
new file mode 100644
index 0000000000..02c0c90360
Binary files /dev/null and b/img-microsoft-64/1f5b2-fe0f.png differ
diff --git a/img-microsoft-64/1f5bc-fe0f.png b/img-microsoft-64/1f5bc-fe0f.png
new file mode 100644
index 0000000000..34e251e4f9
Binary files /dev/null and b/img-microsoft-64/1f5bc-fe0f.png differ
diff --git a/img-microsoft-64/1f5c2-fe0f.png b/img-microsoft-64/1f5c2-fe0f.png
new file mode 100644
index 0000000000..00121c5a8e
Binary files /dev/null and b/img-microsoft-64/1f5c2-fe0f.png differ
diff --git a/img-microsoft-64/1f5c3-fe0f.png b/img-microsoft-64/1f5c3-fe0f.png
new file mode 100644
index 0000000000..854ad1fb5a
Binary files /dev/null and b/img-microsoft-64/1f5c3-fe0f.png differ
diff --git a/img-microsoft-64/1f5c4-fe0f.png b/img-microsoft-64/1f5c4-fe0f.png
new file mode 100644
index 0000000000..7ac8ca263a
Binary files /dev/null and b/img-microsoft-64/1f5c4-fe0f.png differ
diff --git a/img-microsoft-64/1f5d1-fe0f.png b/img-microsoft-64/1f5d1-fe0f.png
new file mode 100644
index 0000000000..090bdf55dd
Binary files /dev/null and b/img-microsoft-64/1f5d1-fe0f.png differ
diff --git a/img-microsoft-64/1f5d2-fe0f.png b/img-microsoft-64/1f5d2-fe0f.png
new file mode 100644
index 0000000000..2b2446d753
Binary files /dev/null and b/img-microsoft-64/1f5d2-fe0f.png differ
diff --git a/img-microsoft-64/1f5d3-fe0f.png b/img-microsoft-64/1f5d3-fe0f.png
new file mode 100644
index 0000000000..c2c88286e3
Binary files /dev/null and b/img-microsoft-64/1f5d3-fe0f.png differ
diff --git a/img-microsoft-64/1f5dc-fe0f.png b/img-microsoft-64/1f5dc-fe0f.png
new file mode 100644
index 0000000000..9da4b2086c
Binary files /dev/null and b/img-microsoft-64/1f5dc-fe0f.png differ
diff --git a/img-microsoft-64/1f5dd-fe0f.png b/img-microsoft-64/1f5dd-fe0f.png
new file mode 100644
index 0000000000..500579542c
Binary files /dev/null and b/img-microsoft-64/1f5dd-fe0f.png differ
diff --git a/img-microsoft-64/1f5de-fe0f.png b/img-microsoft-64/1f5de-fe0f.png
new file mode 100644
index 0000000000..550a050591
Binary files /dev/null and b/img-microsoft-64/1f5de-fe0f.png differ
diff --git a/img-microsoft-64/1f5e1-fe0f.png b/img-microsoft-64/1f5e1-fe0f.png
new file mode 100644
index 0000000000..28aa44302b
Binary files /dev/null and b/img-microsoft-64/1f5e1-fe0f.png differ
diff --git a/img-microsoft-64/1f5e3-fe0f.png b/img-microsoft-64/1f5e3-fe0f.png
new file mode 100644
index 0000000000..872081682d
Binary files /dev/null and b/img-microsoft-64/1f5e3-fe0f.png differ
diff --git a/img-microsoft-64/1f5e8-fe0f.png b/img-microsoft-64/1f5e8-fe0f.png
new file mode 100644
index 0000000000..c75c531974
Binary files /dev/null and b/img-microsoft-64/1f5e8-fe0f.png differ
diff --git a/img-microsoft-64/1f5ef-fe0f.png b/img-microsoft-64/1f5ef-fe0f.png
new file mode 100644
index 0000000000..407fdc04b6
Binary files /dev/null and b/img-microsoft-64/1f5ef-fe0f.png differ
diff --git a/img-microsoft-64/1f5f3-fe0f.png b/img-microsoft-64/1f5f3-fe0f.png
new file mode 100644
index 0000000000..66d49a2f6d
Binary files /dev/null and b/img-microsoft-64/1f5f3-fe0f.png differ
diff --git a/img-microsoft-64/1f5fa-fe0f.png b/img-microsoft-64/1f5fa-fe0f.png
new file mode 100644
index 0000000000..c1ec896156
Binary files /dev/null and b/img-microsoft-64/1f5fa-fe0f.png differ
diff --git a/img-microsoft-64/1f5fb.png b/img-microsoft-64/1f5fb.png
new file mode 100644
index 0000000000..560d400426
Binary files /dev/null and b/img-microsoft-64/1f5fb.png differ
diff --git a/img-microsoft-64/1f5fc.png b/img-microsoft-64/1f5fc.png
new file mode 100644
index 0000000000..53e2560060
Binary files /dev/null and b/img-microsoft-64/1f5fc.png differ
diff --git a/img-microsoft-64/1f5fd.png b/img-microsoft-64/1f5fd.png
new file mode 100644
index 0000000000..2647a36517
Binary files /dev/null and b/img-microsoft-64/1f5fd.png differ
diff --git a/img-microsoft-64/1f5fe.png b/img-microsoft-64/1f5fe.png
new file mode 100644
index 0000000000..ce47ecdfef
Binary files /dev/null and b/img-microsoft-64/1f5fe.png differ
diff --git a/img-microsoft-64/1f5ff.png b/img-microsoft-64/1f5ff.png
new file mode 100644
index 0000000000..2e73c6a89a
Binary files /dev/null and b/img-microsoft-64/1f5ff.png differ
diff --git a/img-microsoft-64/1f600.png b/img-microsoft-64/1f600.png
new file mode 100644
index 0000000000..cd2e9a7471
Binary files /dev/null and b/img-microsoft-64/1f600.png differ
diff --git a/img-microsoft-64/1f601.png b/img-microsoft-64/1f601.png
new file mode 100644
index 0000000000..6dfb97fb61
Binary files /dev/null and b/img-microsoft-64/1f601.png differ
diff --git a/img-microsoft-64/1f602.png b/img-microsoft-64/1f602.png
new file mode 100644
index 0000000000..7162cfe7f2
Binary files /dev/null and b/img-microsoft-64/1f602.png differ
diff --git a/img-microsoft-64/1f603.png b/img-microsoft-64/1f603.png
new file mode 100644
index 0000000000..3d9fc8626f
Binary files /dev/null and b/img-microsoft-64/1f603.png differ
diff --git a/img-microsoft-64/1f604.png b/img-microsoft-64/1f604.png
new file mode 100644
index 0000000000..2e3025b882
Binary files /dev/null and b/img-microsoft-64/1f604.png differ
diff --git a/img-microsoft-64/1f605.png b/img-microsoft-64/1f605.png
new file mode 100644
index 0000000000..24688ed59b
Binary files /dev/null and b/img-microsoft-64/1f605.png differ
diff --git a/img-microsoft-64/1f606.png b/img-microsoft-64/1f606.png
new file mode 100644
index 0000000000..fbfd285363
Binary files /dev/null and b/img-microsoft-64/1f606.png differ
diff --git a/img-microsoft-64/1f607.png b/img-microsoft-64/1f607.png
new file mode 100644
index 0000000000..2a9477aac4
Binary files /dev/null and b/img-microsoft-64/1f607.png differ
diff --git a/img-microsoft-64/1f608.png b/img-microsoft-64/1f608.png
new file mode 100644
index 0000000000..22bb6c35ba
Binary files /dev/null and b/img-microsoft-64/1f608.png differ
diff --git a/img-microsoft-64/1f609.png b/img-microsoft-64/1f609.png
new file mode 100644
index 0000000000..34bdae2128
Binary files /dev/null and b/img-microsoft-64/1f609.png differ
diff --git a/img-microsoft-64/1f60a.png b/img-microsoft-64/1f60a.png
new file mode 100644
index 0000000000..6a8108f7bc
Binary files /dev/null and b/img-microsoft-64/1f60a.png differ
diff --git a/img-microsoft-64/1f60b.png b/img-microsoft-64/1f60b.png
new file mode 100644
index 0000000000..e984ca761f
Binary files /dev/null and b/img-microsoft-64/1f60b.png differ
diff --git a/img-microsoft-64/1f60c.png b/img-microsoft-64/1f60c.png
new file mode 100644
index 0000000000..8472ac87f3
Binary files /dev/null and b/img-microsoft-64/1f60c.png differ
diff --git a/img-microsoft-64/1f60d.png b/img-microsoft-64/1f60d.png
new file mode 100644
index 0000000000..c2532d8e48
Binary files /dev/null and b/img-microsoft-64/1f60d.png differ
diff --git a/img-microsoft-64/1f60e.png b/img-microsoft-64/1f60e.png
new file mode 100644
index 0000000000..b6c4677fa6
Binary files /dev/null and b/img-microsoft-64/1f60e.png differ
diff --git a/img-microsoft-64/1f60f.png b/img-microsoft-64/1f60f.png
new file mode 100644
index 0000000000..7a4fd14e47
Binary files /dev/null and b/img-microsoft-64/1f60f.png differ
diff --git a/img-microsoft-64/1f610.png b/img-microsoft-64/1f610.png
new file mode 100644
index 0000000000..30dd90bb5a
Binary files /dev/null and b/img-microsoft-64/1f610.png differ
diff --git a/img-microsoft-64/1f611.png b/img-microsoft-64/1f611.png
new file mode 100644
index 0000000000..7b04f7b542
Binary files /dev/null and b/img-microsoft-64/1f611.png differ
diff --git a/img-microsoft-64/1f612.png b/img-microsoft-64/1f612.png
new file mode 100644
index 0000000000..3f86204f05
Binary files /dev/null and b/img-microsoft-64/1f612.png differ
diff --git a/img-microsoft-64/1f613.png b/img-microsoft-64/1f613.png
new file mode 100644
index 0000000000..2ea79a7b06
Binary files /dev/null and b/img-microsoft-64/1f613.png differ
diff --git a/img-microsoft-64/1f614.png b/img-microsoft-64/1f614.png
new file mode 100644
index 0000000000..b229939a95
Binary files /dev/null and b/img-microsoft-64/1f614.png differ
diff --git a/img-microsoft-64/1f615.png b/img-microsoft-64/1f615.png
new file mode 100644
index 0000000000..b2fa488c62
Binary files /dev/null and b/img-microsoft-64/1f615.png differ
diff --git a/img-microsoft-64/1f616.png b/img-microsoft-64/1f616.png
new file mode 100644
index 0000000000..b8e11a2108
Binary files /dev/null and b/img-microsoft-64/1f616.png differ
diff --git a/img-microsoft-64/1f617.png b/img-microsoft-64/1f617.png
new file mode 100644
index 0000000000..d0170cfe6d
Binary files /dev/null and b/img-microsoft-64/1f617.png differ
diff --git a/img-microsoft-64/1f618.png b/img-microsoft-64/1f618.png
new file mode 100644
index 0000000000..aa1711a40f
Binary files /dev/null and b/img-microsoft-64/1f618.png differ
diff --git a/img-microsoft-64/1f619.png b/img-microsoft-64/1f619.png
new file mode 100644
index 0000000000..53a1eb2a0e
Binary files /dev/null and b/img-microsoft-64/1f619.png differ
diff --git a/img-microsoft-64/1f61a.png b/img-microsoft-64/1f61a.png
new file mode 100644
index 0000000000..411a78118d
Binary files /dev/null and b/img-microsoft-64/1f61a.png differ
diff --git a/img-microsoft-64/1f61b.png b/img-microsoft-64/1f61b.png
new file mode 100644
index 0000000000..019ef102f3
Binary files /dev/null and b/img-microsoft-64/1f61b.png differ
diff --git a/img-microsoft-64/1f61c.png b/img-microsoft-64/1f61c.png
new file mode 100644
index 0000000000..02c15e921b
Binary files /dev/null and b/img-microsoft-64/1f61c.png differ
diff --git a/img-microsoft-64/1f61d.png b/img-microsoft-64/1f61d.png
new file mode 100644
index 0000000000..0ae71da7a1
Binary files /dev/null and b/img-microsoft-64/1f61d.png differ
diff --git a/img-microsoft-64/1f61e.png b/img-microsoft-64/1f61e.png
new file mode 100644
index 0000000000..92e1da5210
Binary files /dev/null and b/img-microsoft-64/1f61e.png differ
diff --git a/img-microsoft-64/1f61f.png b/img-microsoft-64/1f61f.png
new file mode 100644
index 0000000000..bbf9c6a95f
Binary files /dev/null and b/img-microsoft-64/1f61f.png differ
diff --git a/img-microsoft-64/1f620.png b/img-microsoft-64/1f620.png
new file mode 100644
index 0000000000..17965b057e
Binary files /dev/null and b/img-microsoft-64/1f620.png differ
diff --git a/img-microsoft-64/1f621.png b/img-microsoft-64/1f621.png
new file mode 100644
index 0000000000..31fa87c8a2
Binary files /dev/null and b/img-microsoft-64/1f621.png differ
diff --git a/img-microsoft-64/1f622.png b/img-microsoft-64/1f622.png
new file mode 100644
index 0000000000..624f5cd156
Binary files /dev/null and b/img-microsoft-64/1f622.png differ
diff --git a/img-microsoft-64/1f623.png b/img-microsoft-64/1f623.png
new file mode 100644
index 0000000000..1640c88f11
Binary files /dev/null and b/img-microsoft-64/1f623.png differ
diff --git a/img-microsoft-64/1f624.png b/img-microsoft-64/1f624.png
new file mode 100644
index 0000000000..c3f3f3e603
Binary files /dev/null and b/img-microsoft-64/1f624.png differ
diff --git a/img-microsoft-64/1f625.png b/img-microsoft-64/1f625.png
new file mode 100644
index 0000000000..44520d1697
Binary files /dev/null and b/img-microsoft-64/1f625.png differ
diff --git a/img-microsoft-64/1f626.png b/img-microsoft-64/1f626.png
new file mode 100644
index 0000000000..1eeb4af6b4
Binary files /dev/null and b/img-microsoft-64/1f626.png differ
diff --git a/img-microsoft-64/1f627.png b/img-microsoft-64/1f627.png
new file mode 100644
index 0000000000..564eb0983c
Binary files /dev/null and b/img-microsoft-64/1f627.png differ
diff --git a/img-microsoft-64/1f628.png b/img-microsoft-64/1f628.png
new file mode 100644
index 0000000000..55e4da3a3f
Binary files /dev/null and b/img-microsoft-64/1f628.png differ
diff --git a/img-microsoft-64/1f629.png b/img-microsoft-64/1f629.png
new file mode 100644
index 0000000000..1c5e32a2fa
Binary files /dev/null and b/img-microsoft-64/1f629.png differ
diff --git a/img-microsoft-64/1f62a.png b/img-microsoft-64/1f62a.png
new file mode 100644
index 0000000000..10d160bb4f
Binary files /dev/null and b/img-microsoft-64/1f62a.png differ
diff --git a/img-microsoft-64/1f62b.png b/img-microsoft-64/1f62b.png
new file mode 100644
index 0000000000..b18f58a06d
Binary files /dev/null and b/img-microsoft-64/1f62b.png differ
diff --git a/img-microsoft-64/1f62c.png b/img-microsoft-64/1f62c.png
new file mode 100644
index 0000000000..9421bad8ac
Binary files /dev/null and b/img-microsoft-64/1f62c.png differ
diff --git a/img-microsoft-64/1f62d.png b/img-microsoft-64/1f62d.png
new file mode 100644
index 0000000000..08e7af943c
Binary files /dev/null and b/img-microsoft-64/1f62d.png differ
diff --git a/img-microsoft-64/1f62e-200d-1f4a8.png b/img-microsoft-64/1f62e-200d-1f4a8.png
new file mode 100644
index 0000000000..370527abc7
Binary files /dev/null and b/img-microsoft-64/1f62e-200d-1f4a8.png differ
diff --git a/img-microsoft-64/1f62e.png b/img-microsoft-64/1f62e.png
new file mode 100644
index 0000000000..6717d14606
Binary files /dev/null and b/img-microsoft-64/1f62e.png differ
diff --git a/img-microsoft-64/1f62f.png b/img-microsoft-64/1f62f.png
new file mode 100644
index 0000000000..79fdd7a927
Binary files /dev/null and b/img-microsoft-64/1f62f.png differ
diff --git a/img-microsoft-64/1f630.png b/img-microsoft-64/1f630.png
new file mode 100644
index 0000000000..616631e4eb
Binary files /dev/null and b/img-microsoft-64/1f630.png differ
diff --git a/img-microsoft-64/1f631.png b/img-microsoft-64/1f631.png
new file mode 100644
index 0000000000..36796b1818
Binary files /dev/null and b/img-microsoft-64/1f631.png differ
diff --git a/img-microsoft-64/1f632.png b/img-microsoft-64/1f632.png
new file mode 100644
index 0000000000..faefccebe8
Binary files /dev/null and b/img-microsoft-64/1f632.png differ
diff --git a/img-microsoft-64/1f633.png b/img-microsoft-64/1f633.png
new file mode 100644
index 0000000000..e4b09a68e1
Binary files /dev/null and b/img-microsoft-64/1f633.png differ
diff --git a/img-microsoft-64/1f634.png b/img-microsoft-64/1f634.png
new file mode 100644
index 0000000000..df66edbe28
Binary files /dev/null and b/img-microsoft-64/1f634.png differ
diff --git a/img-microsoft-64/1f635-200d-1f4ab.png b/img-microsoft-64/1f635-200d-1f4ab.png
new file mode 100644
index 0000000000..c9eb3304a1
Binary files /dev/null and b/img-microsoft-64/1f635-200d-1f4ab.png differ
diff --git a/img-microsoft-64/1f635.png b/img-microsoft-64/1f635.png
new file mode 100644
index 0000000000..5c4b74b7b0
Binary files /dev/null and b/img-microsoft-64/1f635.png differ
diff --git a/img-microsoft-64/1f636-200d-1f32b-fe0f.png b/img-microsoft-64/1f636-200d-1f32b-fe0f.png
new file mode 100644
index 0000000000..9cc8aef288
Binary files /dev/null and b/img-microsoft-64/1f636-200d-1f32b-fe0f.png differ
diff --git a/img-microsoft-64/1f636.png b/img-microsoft-64/1f636.png
new file mode 100644
index 0000000000..2e9e4aa47e
Binary files /dev/null and b/img-microsoft-64/1f636.png differ
diff --git a/img-microsoft-64/1f637.png b/img-microsoft-64/1f637.png
new file mode 100644
index 0000000000..bba39f185c
Binary files /dev/null and b/img-microsoft-64/1f637.png differ
diff --git a/img-microsoft-64/1f638.png b/img-microsoft-64/1f638.png
new file mode 100644
index 0000000000..e5f8862bfb
Binary files /dev/null and b/img-microsoft-64/1f638.png differ
diff --git a/img-microsoft-64/1f639.png b/img-microsoft-64/1f639.png
new file mode 100644
index 0000000000..70687c5533
Binary files /dev/null and b/img-microsoft-64/1f639.png differ
diff --git a/img-microsoft-64/1f63a.png b/img-microsoft-64/1f63a.png
new file mode 100644
index 0000000000..02c12d79f3
Binary files /dev/null and b/img-microsoft-64/1f63a.png differ
diff --git a/img-microsoft-64/1f63b.png b/img-microsoft-64/1f63b.png
new file mode 100644
index 0000000000..b22250bbc5
Binary files /dev/null and b/img-microsoft-64/1f63b.png differ
diff --git a/img-microsoft-64/1f63c.png b/img-microsoft-64/1f63c.png
new file mode 100644
index 0000000000..7db75d787c
Binary files /dev/null and b/img-microsoft-64/1f63c.png differ
diff --git a/img-microsoft-64/1f63d.png b/img-microsoft-64/1f63d.png
new file mode 100644
index 0000000000..f565b5d834
Binary files /dev/null and b/img-microsoft-64/1f63d.png differ
diff --git a/img-microsoft-64/1f63e.png b/img-microsoft-64/1f63e.png
new file mode 100644
index 0000000000..94097d5b7e
Binary files /dev/null and b/img-microsoft-64/1f63e.png differ
diff --git a/img-microsoft-64/1f63f.png b/img-microsoft-64/1f63f.png
new file mode 100644
index 0000000000..69a88cb648
Binary files /dev/null and b/img-microsoft-64/1f63f.png differ
diff --git a/img-microsoft-64/1f640.png b/img-microsoft-64/1f640.png
new file mode 100644
index 0000000000..4a1c09783d
Binary files /dev/null and b/img-microsoft-64/1f640.png differ
diff --git a/img-microsoft-64/1f641.png b/img-microsoft-64/1f641.png
new file mode 100644
index 0000000000..9943b339ed
Binary files /dev/null and b/img-microsoft-64/1f641.png differ
diff --git a/img-microsoft-64/1f642.png b/img-microsoft-64/1f642.png
new file mode 100644
index 0000000000..a8b6fcd3a8
Binary files /dev/null and b/img-microsoft-64/1f642.png differ
diff --git a/img-microsoft-64/1f643.png b/img-microsoft-64/1f643.png
new file mode 100644
index 0000000000..b976cca2d8
Binary files /dev/null and b/img-microsoft-64/1f643.png differ
diff --git a/img-microsoft-64/1f644.png b/img-microsoft-64/1f644.png
new file mode 100644
index 0000000000..a98ebfdeb3
Binary files /dev/null and b/img-microsoft-64/1f644.png differ
diff --git a/img-microsoft-64/1f645-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f645-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..5c49c0f2cb
Binary files /dev/null and b/img-microsoft-64/1f645-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f645-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f645-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..ad2156331b
Binary files /dev/null and b/img-microsoft-64/1f645-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f645-1f3fb.png b/img-microsoft-64/1f645-1f3fb.png
new file mode 100644
index 0000000000..8f715f9929
Binary files /dev/null and b/img-microsoft-64/1f645-1f3fb.png differ
diff --git a/img-microsoft-64/1f645-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f645-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..6c25517b0c
Binary files /dev/null and b/img-microsoft-64/1f645-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f645-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f645-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..c7bef83050
Binary files /dev/null and b/img-microsoft-64/1f645-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f645-1f3fc.png b/img-microsoft-64/1f645-1f3fc.png
new file mode 100644
index 0000000000..cd43b46ecf
Binary files /dev/null and b/img-microsoft-64/1f645-1f3fc.png differ
diff --git a/img-microsoft-64/1f645-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f645-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..3e94f4b8c4
Binary files /dev/null and b/img-microsoft-64/1f645-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f645-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f645-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..9283644c56
Binary files /dev/null and b/img-microsoft-64/1f645-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f645-1f3fd.png b/img-microsoft-64/1f645-1f3fd.png
new file mode 100644
index 0000000000..945b79d219
Binary files /dev/null and b/img-microsoft-64/1f645-1f3fd.png differ
diff --git a/img-microsoft-64/1f645-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f645-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..32df5b1a08
Binary files /dev/null and b/img-microsoft-64/1f645-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f645-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f645-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..36dfd56856
Binary files /dev/null and b/img-microsoft-64/1f645-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f645-1f3fe.png b/img-microsoft-64/1f645-1f3fe.png
new file mode 100644
index 0000000000..fcfc24c7be
Binary files /dev/null and b/img-microsoft-64/1f645-1f3fe.png differ
diff --git a/img-microsoft-64/1f645-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f645-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..3d2927d8c1
Binary files /dev/null and b/img-microsoft-64/1f645-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f645-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f645-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..8b4c7f4276
Binary files /dev/null and b/img-microsoft-64/1f645-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f645-1f3ff.png b/img-microsoft-64/1f645-1f3ff.png
new file mode 100644
index 0000000000..07315d26ae
Binary files /dev/null and b/img-microsoft-64/1f645-1f3ff.png differ
diff --git a/img-microsoft-64/1f645-200d-2640-fe0f.png b/img-microsoft-64/1f645-200d-2640-fe0f.png
new file mode 100644
index 0000000000..2117c86eb2
Binary files /dev/null and b/img-microsoft-64/1f645-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f645-200d-2642-fe0f.png b/img-microsoft-64/1f645-200d-2642-fe0f.png
new file mode 100644
index 0000000000..56288d6b01
Binary files /dev/null and b/img-microsoft-64/1f645-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f645.png b/img-microsoft-64/1f645.png
new file mode 100644
index 0000000000..18ed035336
Binary files /dev/null and b/img-microsoft-64/1f645.png differ
diff --git a/img-microsoft-64/1f646-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f646-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..72d9798c8f
Binary files /dev/null and b/img-microsoft-64/1f646-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f646-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f646-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..86d2165564
Binary files /dev/null and b/img-microsoft-64/1f646-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f646-1f3fb.png b/img-microsoft-64/1f646-1f3fb.png
new file mode 100644
index 0000000000..a0163d44e1
Binary files /dev/null and b/img-microsoft-64/1f646-1f3fb.png differ
diff --git a/img-microsoft-64/1f646-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f646-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..cdc945c1d9
Binary files /dev/null and b/img-microsoft-64/1f646-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f646-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f646-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..6c652c919e
Binary files /dev/null and b/img-microsoft-64/1f646-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f646-1f3fc.png b/img-microsoft-64/1f646-1f3fc.png
new file mode 100644
index 0000000000..cb16ef6e89
Binary files /dev/null and b/img-microsoft-64/1f646-1f3fc.png differ
diff --git a/img-microsoft-64/1f646-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f646-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..c5688f2648
Binary files /dev/null and b/img-microsoft-64/1f646-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f646-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f646-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..641381c42e
Binary files /dev/null and b/img-microsoft-64/1f646-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f646-1f3fd.png b/img-microsoft-64/1f646-1f3fd.png
new file mode 100644
index 0000000000..dfdaaf3a05
Binary files /dev/null and b/img-microsoft-64/1f646-1f3fd.png differ
diff --git a/img-microsoft-64/1f646-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f646-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..20c7e1a394
Binary files /dev/null and b/img-microsoft-64/1f646-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f646-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f646-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..ef80f8dea8
Binary files /dev/null and b/img-microsoft-64/1f646-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f646-1f3fe.png b/img-microsoft-64/1f646-1f3fe.png
new file mode 100644
index 0000000000..6ecfcdcd58
Binary files /dev/null and b/img-microsoft-64/1f646-1f3fe.png differ
diff --git a/img-microsoft-64/1f646-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f646-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..91a64de573
Binary files /dev/null and b/img-microsoft-64/1f646-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f646-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f646-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f386b30911
Binary files /dev/null and b/img-microsoft-64/1f646-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f646-1f3ff.png b/img-microsoft-64/1f646-1f3ff.png
new file mode 100644
index 0000000000..42908adcf8
Binary files /dev/null and b/img-microsoft-64/1f646-1f3ff.png differ
diff --git a/img-microsoft-64/1f646-200d-2640-fe0f.png b/img-microsoft-64/1f646-200d-2640-fe0f.png
new file mode 100644
index 0000000000..1a58fec9d1
Binary files /dev/null and b/img-microsoft-64/1f646-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f646-200d-2642-fe0f.png b/img-microsoft-64/1f646-200d-2642-fe0f.png
new file mode 100644
index 0000000000..c63909c0c5
Binary files /dev/null and b/img-microsoft-64/1f646-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f646.png b/img-microsoft-64/1f646.png
new file mode 100644
index 0000000000..dc18f6f164
Binary files /dev/null and b/img-microsoft-64/1f646.png differ
diff --git a/img-microsoft-64/1f647-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f647-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..6c93c28a56
Binary files /dev/null and b/img-microsoft-64/1f647-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f647-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f647-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..2f53ee3740
Binary files /dev/null and b/img-microsoft-64/1f647-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f647-1f3fb.png b/img-microsoft-64/1f647-1f3fb.png
new file mode 100644
index 0000000000..f38d2c20cc
Binary files /dev/null and b/img-microsoft-64/1f647-1f3fb.png differ
diff --git a/img-microsoft-64/1f647-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f647-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..e8c9d0816b
Binary files /dev/null and b/img-microsoft-64/1f647-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f647-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f647-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..4d9f0ee919
Binary files /dev/null and b/img-microsoft-64/1f647-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f647-1f3fc.png b/img-microsoft-64/1f647-1f3fc.png
new file mode 100644
index 0000000000..35c837bb43
Binary files /dev/null and b/img-microsoft-64/1f647-1f3fc.png differ
diff --git a/img-microsoft-64/1f647-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f647-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..db28383617
Binary files /dev/null and b/img-microsoft-64/1f647-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f647-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f647-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..707c5f38c4
Binary files /dev/null and b/img-microsoft-64/1f647-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f647-1f3fd.png b/img-microsoft-64/1f647-1f3fd.png
new file mode 100644
index 0000000000..fbe3c8d261
Binary files /dev/null and b/img-microsoft-64/1f647-1f3fd.png differ
diff --git a/img-microsoft-64/1f647-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f647-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..b932c7da80
Binary files /dev/null and b/img-microsoft-64/1f647-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f647-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f647-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..322efa0f68
Binary files /dev/null and b/img-microsoft-64/1f647-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f647-1f3fe.png b/img-microsoft-64/1f647-1f3fe.png
new file mode 100644
index 0000000000..8bdd6361d4
Binary files /dev/null and b/img-microsoft-64/1f647-1f3fe.png differ
diff --git a/img-microsoft-64/1f647-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f647-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..8360b7bd1d
Binary files /dev/null and b/img-microsoft-64/1f647-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f647-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f647-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..771f28ad09
Binary files /dev/null and b/img-microsoft-64/1f647-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f647-1f3ff.png b/img-microsoft-64/1f647-1f3ff.png
new file mode 100644
index 0000000000..eec2ed2140
Binary files /dev/null and b/img-microsoft-64/1f647-1f3ff.png differ
diff --git a/img-microsoft-64/1f647-200d-2640-fe0f.png b/img-microsoft-64/1f647-200d-2640-fe0f.png
new file mode 100644
index 0000000000..2d31c4cd06
Binary files /dev/null and b/img-microsoft-64/1f647-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f647-200d-2642-fe0f.png b/img-microsoft-64/1f647-200d-2642-fe0f.png
new file mode 100644
index 0000000000..ba62c4a037
Binary files /dev/null and b/img-microsoft-64/1f647-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f647.png b/img-microsoft-64/1f647.png
new file mode 100644
index 0000000000..4458c78258
Binary files /dev/null and b/img-microsoft-64/1f647.png differ
diff --git a/img-microsoft-64/1f648.png b/img-microsoft-64/1f648.png
new file mode 100644
index 0000000000..28fafd563c
Binary files /dev/null and b/img-microsoft-64/1f648.png differ
diff --git a/img-microsoft-64/1f649.png b/img-microsoft-64/1f649.png
new file mode 100644
index 0000000000..85512b1021
Binary files /dev/null and b/img-microsoft-64/1f649.png differ
diff --git a/img-microsoft-64/1f64a.png b/img-microsoft-64/1f64a.png
new file mode 100644
index 0000000000..c7e8f060fc
Binary files /dev/null and b/img-microsoft-64/1f64a.png differ
diff --git a/img-microsoft-64/1f64b-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f64b-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..719845753a
Binary files /dev/null and b/img-microsoft-64/1f64b-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f64b-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f64b-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..b9d8fd6f1a
Binary files /dev/null and b/img-microsoft-64/1f64b-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f64b-1f3fb.png b/img-microsoft-64/1f64b-1f3fb.png
new file mode 100644
index 0000000000..c5db32b10a
Binary files /dev/null and b/img-microsoft-64/1f64b-1f3fb.png differ
diff --git a/img-microsoft-64/1f64b-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f64b-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..99aa9c6028
Binary files /dev/null and b/img-microsoft-64/1f64b-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f64b-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f64b-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..ee6ab12dc5
Binary files /dev/null and b/img-microsoft-64/1f64b-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f64b-1f3fc.png b/img-microsoft-64/1f64b-1f3fc.png
new file mode 100644
index 0000000000..740fda517e
Binary files /dev/null and b/img-microsoft-64/1f64b-1f3fc.png differ
diff --git a/img-microsoft-64/1f64b-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f64b-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..0ed234a464
Binary files /dev/null and b/img-microsoft-64/1f64b-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f64b-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f64b-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..ef136f2b42
Binary files /dev/null and b/img-microsoft-64/1f64b-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f64b-1f3fd.png b/img-microsoft-64/1f64b-1f3fd.png
new file mode 100644
index 0000000000..7bd2c09853
Binary files /dev/null and b/img-microsoft-64/1f64b-1f3fd.png differ
diff --git a/img-microsoft-64/1f64b-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f64b-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..7d290efc9e
Binary files /dev/null and b/img-microsoft-64/1f64b-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f64b-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f64b-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..3319135fb2
Binary files /dev/null and b/img-microsoft-64/1f64b-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f64b-1f3fe.png b/img-microsoft-64/1f64b-1f3fe.png
new file mode 100644
index 0000000000..16fdea46d3
Binary files /dev/null and b/img-microsoft-64/1f64b-1f3fe.png differ
diff --git a/img-microsoft-64/1f64b-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f64b-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..f7933b9e3d
Binary files /dev/null and b/img-microsoft-64/1f64b-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f64b-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f64b-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..18a8960bb1
Binary files /dev/null and b/img-microsoft-64/1f64b-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f64b-1f3ff.png b/img-microsoft-64/1f64b-1f3ff.png
new file mode 100644
index 0000000000..2dd356bef8
Binary files /dev/null and b/img-microsoft-64/1f64b-1f3ff.png differ
diff --git a/img-microsoft-64/1f64b-200d-2640-fe0f.png b/img-microsoft-64/1f64b-200d-2640-fe0f.png
new file mode 100644
index 0000000000..c855c4cf30
Binary files /dev/null and b/img-microsoft-64/1f64b-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f64b-200d-2642-fe0f.png b/img-microsoft-64/1f64b-200d-2642-fe0f.png
new file mode 100644
index 0000000000..4b1208bc3a
Binary files /dev/null and b/img-microsoft-64/1f64b-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f64b.png b/img-microsoft-64/1f64b.png
new file mode 100644
index 0000000000..b5dbad7108
Binary files /dev/null and b/img-microsoft-64/1f64b.png differ
diff --git a/img-microsoft-64/1f64c-1f3fb.png b/img-microsoft-64/1f64c-1f3fb.png
new file mode 100644
index 0000000000..9c09b09cdb
Binary files /dev/null and b/img-microsoft-64/1f64c-1f3fb.png differ
diff --git a/img-microsoft-64/1f64c-1f3fc.png b/img-microsoft-64/1f64c-1f3fc.png
new file mode 100644
index 0000000000..48a122a746
Binary files /dev/null and b/img-microsoft-64/1f64c-1f3fc.png differ
diff --git a/img-microsoft-64/1f64c-1f3fd.png b/img-microsoft-64/1f64c-1f3fd.png
new file mode 100644
index 0000000000..d5062a5cc4
Binary files /dev/null and b/img-microsoft-64/1f64c-1f3fd.png differ
diff --git a/img-microsoft-64/1f64c-1f3fe.png b/img-microsoft-64/1f64c-1f3fe.png
new file mode 100644
index 0000000000..b0dc5c9019
Binary files /dev/null and b/img-microsoft-64/1f64c-1f3fe.png differ
diff --git a/img-microsoft-64/1f64c-1f3ff.png b/img-microsoft-64/1f64c-1f3ff.png
new file mode 100644
index 0000000000..585f9f849c
Binary files /dev/null and b/img-microsoft-64/1f64c-1f3ff.png differ
diff --git a/img-microsoft-64/1f64c.png b/img-microsoft-64/1f64c.png
new file mode 100644
index 0000000000..b7410a229c
Binary files /dev/null and b/img-microsoft-64/1f64c.png differ
diff --git a/img-microsoft-64/1f64d-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f64d-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..b7d8352599
Binary files /dev/null and b/img-microsoft-64/1f64d-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f64d-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f64d-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..134cf8dd85
Binary files /dev/null and b/img-microsoft-64/1f64d-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f64d-1f3fb.png b/img-microsoft-64/1f64d-1f3fb.png
new file mode 100644
index 0000000000..7f49627369
Binary files /dev/null and b/img-microsoft-64/1f64d-1f3fb.png differ
diff --git a/img-microsoft-64/1f64d-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f64d-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..09cf6929f4
Binary files /dev/null and b/img-microsoft-64/1f64d-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f64d-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f64d-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..2f774f6412
Binary files /dev/null and b/img-microsoft-64/1f64d-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f64d-1f3fc.png b/img-microsoft-64/1f64d-1f3fc.png
new file mode 100644
index 0000000000..d4aa6a14e5
Binary files /dev/null and b/img-microsoft-64/1f64d-1f3fc.png differ
diff --git a/img-microsoft-64/1f64d-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f64d-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..b34317ed7a
Binary files /dev/null and b/img-microsoft-64/1f64d-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f64d-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f64d-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a6429b560b
Binary files /dev/null and b/img-microsoft-64/1f64d-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f64d-1f3fd.png b/img-microsoft-64/1f64d-1f3fd.png
new file mode 100644
index 0000000000..a9386834c6
Binary files /dev/null and b/img-microsoft-64/1f64d-1f3fd.png differ
diff --git a/img-microsoft-64/1f64d-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f64d-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..2a800159f3
Binary files /dev/null and b/img-microsoft-64/1f64d-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f64d-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f64d-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..beefb38c33
Binary files /dev/null and b/img-microsoft-64/1f64d-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f64d-1f3fe.png b/img-microsoft-64/1f64d-1f3fe.png
new file mode 100644
index 0000000000..8db64cbb29
Binary files /dev/null and b/img-microsoft-64/1f64d-1f3fe.png differ
diff --git a/img-microsoft-64/1f64d-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f64d-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..407cc00c2d
Binary files /dev/null and b/img-microsoft-64/1f64d-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f64d-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f64d-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..7fd1279965
Binary files /dev/null and b/img-microsoft-64/1f64d-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f64d-1f3ff.png b/img-microsoft-64/1f64d-1f3ff.png
new file mode 100644
index 0000000000..406b2d1e84
Binary files /dev/null and b/img-microsoft-64/1f64d-1f3ff.png differ
diff --git a/img-microsoft-64/1f64d-200d-2640-fe0f.png b/img-microsoft-64/1f64d-200d-2640-fe0f.png
new file mode 100644
index 0000000000..1ededf0fb5
Binary files /dev/null and b/img-microsoft-64/1f64d-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f64d-200d-2642-fe0f.png b/img-microsoft-64/1f64d-200d-2642-fe0f.png
new file mode 100644
index 0000000000..0b1252d419
Binary files /dev/null and b/img-microsoft-64/1f64d-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f64d.png b/img-microsoft-64/1f64d.png
new file mode 100644
index 0000000000..4192eb5686
Binary files /dev/null and b/img-microsoft-64/1f64d.png differ
diff --git a/img-microsoft-64/1f64e-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f64e-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..b04adb21cf
Binary files /dev/null and b/img-microsoft-64/1f64e-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f64e-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f64e-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d59cd0eb0a
Binary files /dev/null and b/img-microsoft-64/1f64e-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f64e-1f3fb.png b/img-microsoft-64/1f64e-1f3fb.png
new file mode 100644
index 0000000000..8452a8c28a
Binary files /dev/null and b/img-microsoft-64/1f64e-1f3fb.png differ
diff --git a/img-microsoft-64/1f64e-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f64e-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..254c4f853c
Binary files /dev/null and b/img-microsoft-64/1f64e-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f64e-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f64e-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..aa4bda44f0
Binary files /dev/null and b/img-microsoft-64/1f64e-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f64e-1f3fc.png b/img-microsoft-64/1f64e-1f3fc.png
new file mode 100644
index 0000000000..8b5e679644
Binary files /dev/null and b/img-microsoft-64/1f64e-1f3fc.png differ
diff --git a/img-microsoft-64/1f64e-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f64e-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..10bf176410
Binary files /dev/null and b/img-microsoft-64/1f64e-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f64e-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f64e-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..6134a2fb4c
Binary files /dev/null and b/img-microsoft-64/1f64e-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f64e-1f3fd.png b/img-microsoft-64/1f64e-1f3fd.png
new file mode 100644
index 0000000000..c9ca4edf2b
Binary files /dev/null and b/img-microsoft-64/1f64e-1f3fd.png differ
diff --git a/img-microsoft-64/1f64e-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f64e-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..5cc1022f69
Binary files /dev/null and b/img-microsoft-64/1f64e-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f64e-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f64e-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..4714d3a673
Binary files /dev/null and b/img-microsoft-64/1f64e-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f64e-1f3fe.png b/img-microsoft-64/1f64e-1f3fe.png
new file mode 100644
index 0000000000..7fbf0d9953
Binary files /dev/null and b/img-microsoft-64/1f64e-1f3fe.png differ
diff --git a/img-microsoft-64/1f64e-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f64e-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..fe6162c44e
Binary files /dev/null and b/img-microsoft-64/1f64e-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f64e-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f64e-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..349e1b5890
Binary files /dev/null and b/img-microsoft-64/1f64e-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f64e-1f3ff.png b/img-microsoft-64/1f64e-1f3ff.png
new file mode 100644
index 0000000000..00e75dd2e9
Binary files /dev/null and b/img-microsoft-64/1f64e-1f3ff.png differ
diff --git a/img-microsoft-64/1f64e-200d-2640-fe0f.png b/img-microsoft-64/1f64e-200d-2640-fe0f.png
new file mode 100644
index 0000000000..6d166584dd
Binary files /dev/null and b/img-microsoft-64/1f64e-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f64e-200d-2642-fe0f.png b/img-microsoft-64/1f64e-200d-2642-fe0f.png
new file mode 100644
index 0000000000..8147e312fb
Binary files /dev/null and b/img-microsoft-64/1f64e-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f64e.png b/img-microsoft-64/1f64e.png
new file mode 100644
index 0000000000..86c56d55c9
Binary files /dev/null and b/img-microsoft-64/1f64e.png differ
diff --git a/img-microsoft-64/1f64f-1f3fb.png b/img-microsoft-64/1f64f-1f3fb.png
new file mode 100644
index 0000000000..21ae28e3eb
Binary files /dev/null and b/img-microsoft-64/1f64f-1f3fb.png differ
diff --git a/img-microsoft-64/1f64f-1f3fc.png b/img-microsoft-64/1f64f-1f3fc.png
new file mode 100644
index 0000000000..e52c925866
Binary files /dev/null and b/img-microsoft-64/1f64f-1f3fc.png differ
diff --git a/img-microsoft-64/1f64f-1f3fd.png b/img-microsoft-64/1f64f-1f3fd.png
new file mode 100644
index 0000000000..0a7c7ac569
Binary files /dev/null and b/img-microsoft-64/1f64f-1f3fd.png differ
diff --git a/img-microsoft-64/1f64f-1f3fe.png b/img-microsoft-64/1f64f-1f3fe.png
new file mode 100644
index 0000000000..52a3a397c7
Binary files /dev/null and b/img-microsoft-64/1f64f-1f3fe.png differ
diff --git a/img-microsoft-64/1f64f-1f3ff.png b/img-microsoft-64/1f64f-1f3ff.png
new file mode 100644
index 0000000000..65a20d42a5
Binary files /dev/null and b/img-microsoft-64/1f64f-1f3ff.png differ
diff --git a/img-microsoft-64/1f64f.png b/img-microsoft-64/1f64f.png
new file mode 100644
index 0000000000..dc3d04e4e0
Binary files /dev/null and b/img-microsoft-64/1f64f.png differ
diff --git a/img-microsoft-64/1f680.png b/img-microsoft-64/1f680.png
new file mode 100644
index 0000000000..8eb59a7bd7
Binary files /dev/null and b/img-microsoft-64/1f680.png differ
diff --git a/img-microsoft-64/1f681.png b/img-microsoft-64/1f681.png
new file mode 100644
index 0000000000..953e6d56fa
Binary files /dev/null and b/img-microsoft-64/1f681.png differ
diff --git a/img-microsoft-64/1f682.png b/img-microsoft-64/1f682.png
new file mode 100644
index 0000000000..526aa940b2
Binary files /dev/null and b/img-microsoft-64/1f682.png differ
diff --git a/img-microsoft-64/1f683.png b/img-microsoft-64/1f683.png
new file mode 100644
index 0000000000..5341c09232
Binary files /dev/null and b/img-microsoft-64/1f683.png differ
diff --git a/img-microsoft-64/1f684.png b/img-microsoft-64/1f684.png
new file mode 100644
index 0000000000..62c49515bc
Binary files /dev/null and b/img-microsoft-64/1f684.png differ
diff --git a/img-microsoft-64/1f685.png b/img-microsoft-64/1f685.png
new file mode 100644
index 0000000000..65d0382196
Binary files /dev/null and b/img-microsoft-64/1f685.png differ
diff --git a/img-microsoft-64/1f686.png b/img-microsoft-64/1f686.png
new file mode 100644
index 0000000000..3cf7fcc3ef
Binary files /dev/null and b/img-microsoft-64/1f686.png differ
diff --git a/img-microsoft-64/1f687.png b/img-microsoft-64/1f687.png
new file mode 100644
index 0000000000..c97f667544
Binary files /dev/null and b/img-microsoft-64/1f687.png differ
diff --git a/img-microsoft-64/1f688.png b/img-microsoft-64/1f688.png
new file mode 100644
index 0000000000..f215120daa
Binary files /dev/null and b/img-microsoft-64/1f688.png differ
diff --git a/img-microsoft-64/1f689.png b/img-microsoft-64/1f689.png
new file mode 100644
index 0000000000..c5d059a905
Binary files /dev/null and b/img-microsoft-64/1f689.png differ
diff --git a/img-microsoft-64/1f68a.png b/img-microsoft-64/1f68a.png
new file mode 100644
index 0000000000..d119212d9a
Binary files /dev/null and b/img-microsoft-64/1f68a.png differ
diff --git a/img-microsoft-64/1f68b.png b/img-microsoft-64/1f68b.png
new file mode 100644
index 0000000000..f3ed6cd7e5
Binary files /dev/null and b/img-microsoft-64/1f68b.png differ
diff --git a/img-microsoft-64/1f68c.png b/img-microsoft-64/1f68c.png
new file mode 100644
index 0000000000..b0e52bd084
Binary files /dev/null and b/img-microsoft-64/1f68c.png differ
diff --git a/img-microsoft-64/1f68d.png b/img-microsoft-64/1f68d.png
new file mode 100644
index 0000000000..6f0ae5b64f
Binary files /dev/null and b/img-microsoft-64/1f68d.png differ
diff --git a/img-microsoft-64/1f68e.png b/img-microsoft-64/1f68e.png
new file mode 100644
index 0000000000..e822fe0cac
Binary files /dev/null and b/img-microsoft-64/1f68e.png differ
diff --git a/img-microsoft-64/1f68f.png b/img-microsoft-64/1f68f.png
new file mode 100644
index 0000000000..51330fd90e
Binary files /dev/null and b/img-microsoft-64/1f68f.png differ
diff --git a/img-microsoft-64/1f690.png b/img-microsoft-64/1f690.png
new file mode 100644
index 0000000000..730902403c
Binary files /dev/null and b/img-microsoft-64/1f690.png differ
diff --git a/img-microsoft-64/1f691.png b/img-microsoft-64/1f691.png
new file mode 100644
index 0000000000..f07c641fe4
Binary files /dev/null and b/img-microsoft-64/1f691.png differ
diff --git a/img-microsoft-64/1f692.png b/img-microsoft-64/1f692.png
new file mode 100644
index 0000000000..0537cb9bf7
Binary files /dev/null and b/img-microsoft-64/1f692.png differ
diff --git a/img-microsoft-64/1f693.png b/img-microsoft-64/1f693.png
new file mode 100644
index 0000000000..8a552fcca3
Binary files /dev/null and b/img-microsoft-64/1f693.png differ
diff --git a/img-microsoft-64/1f694.png b/img-microsoft-64/1f694.png
new file mode 100644
index 0000000000..7320a4aba4
Binary files /dev/null and b/img-microsoft-64/1f694.png differ
diff --git a/img-microsoft-64/1f695.png b/img-microsoft-64/1f695.png
new file mode 100644
index 0000000000..b7b8c9a5a8
Binary files /dev/null and b/img-microsoft-64/1f695.png differ
diff --git a/img-microsoft-64/1f696.png b/img-microsoft-64/1f696.png
new file mode 100644
index 0000000000..fb6dfc4f72
Binary files /dev/null and b/img-microsoft-64/1f696.png differ
diff --git a/img-microsoft-64/1f697.png b/img-microsoft-64/1f697.png
new file mode 100644
index 0000000000..a19b99d324
Binary files /dev/null and b/img-microsoft-64/1f697.png differ
diff --git a/img-microsoft-64/1f698.png b/img-microsoft-64/1f698.png
new file mode 100644
index 0000000000..6f10b24b08
Binary files /dev/null and b/img-microsoft-64/1f698.png differ
diff --git a/img-microsoft-64/1f699.png b/img-microsoft-64/1f699.png
new file mode 100644
index 0000000000..90f0ca081f
Binary files /dev/null and b/img-microsoft-64/1f699.png differ
diff --git a/img-microsoft-64/1f69a.png b/img-microsoft-64/1f69a.png
new file mode 100644
index 0000000000..9d81bb09ef
Binary files /dev/null and b/img-microsoft-64/1f69a.png differ
diff --git a/img-microsoft-64/1f69b.png b/img-microsoft-64/1f69b.png
new file mode 100644
index 0000000000..879268fa33
Binary files /dev/null and b/img-microsoft-64/1f69b.png differ
diff --git a/img-microsoft-64/1f69c.png b/img-microsoft-64/1f69c.png
new file mode 100644
index 0000000000..e71ff2da76
Binary files /dev/null and b/img-microsoft-64/1f69c.png differ
diff --git a/img-microsoft-64/1f69d.png b/img-microsoft-64/1f69d.png
new file mode 100644
index 0000000000..3a429cd1a1
Binary files /dev/null and b/img-microsoft-64/1f69d.png differ
diff --git a/img-microsoft-64/1f69e.png b/img-microsoft-64/1f69e.png
new file mode 100644
index 0000000000..cfdec3e284
Binary files /dev/null and b/img-microsoft-64/1f69e.png differ
diff --git a/img-microsoft-64/1f69f.png b/img-microsoft-64/1f69f.png
new file mode 100644
index 0000000000..40016e5f29
Binary files /dev/null and b/img-microsoft-64/1f69f.png differ
diff --git a/img-microsoft-64/1f6a0.png b/img-microsoft-64/1f6a0.png
new file mode 100644
index 0000000000..12815dc92c
Binary files /dev/null and b/img-microsoft-64/1f6a0.png differ
diff --git a/img-microsoft-64/1f6a1.png b/img-microsoft-64/1f6a1.png
new file mode 100644
index 0000000000..7fc6cadbe4
Binary files /dev/null and b/img-microsoft-64/1f6a1.png differ
diff --git a/img-microsoft-64/1f6a2.png b/img-microsoft-64/1f6a2.png
new file mode 100644
index 0000000000..b27d592e97
Binary files /dev/null and b/img-microsoft-64/1f6a2.png differ
diff --git a/img-microsoft-64/1f6a3-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f6a3-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..0cb01f8268
Binary files /dev/null and b/img-microsoft-64/1f6a3-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f6a3-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f6a3-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..60b8a2b95d
Binary files /dev/null and b/img-microsoft-64/1f6a3-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f6a3-1f3fb.png b/img-microsoft-64/1f6a3-1f3fb.png
new file mode 100644
index 0000000000..7ef5c56a34
Binary files /dev/null and b/img-microsoft-64/1f6a3-1f3fb.png differ
diff --git a/img-microsoft-64/1f6a3-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f6a3-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..1a3d262a42
Binary files /dev/null and b/img-microsoft-64/1f6a3-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f6a3-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f6a3-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..dee3cdea42
Binary files /dev/null and b/img-microsoft-64/1f6a3-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f6a3-1f3fc.png b/img-microsoft-64/1f6a3-1f3fc.png
new file mode 100644
index 0000000000..fafe92bd42
Binary files /dev/null and b/img-microsoft-64/1f6a3-1f3fc.png differ
diff --git a/img-microsoft-64/1f6a3-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f6a3-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..112e7ae9f9
Binary files /dev/null and b/img-microsoft-64/1f6a3-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f6a3-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f6a3-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..7c421008a2
Binary files /dev/null and b/img-microsoft-64/1f6a3-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f6a3-1f3fd.png b/img-microsoft-64/1f6a3-1f3fd.png
new file mode 100644
index 0000000000..8e773f3091
Binary files /dev/null and b/img-microsoft-64/1f6a3-1f3fd.png differ
diff --git a/img-microsoft-64/1f6a3-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f6a3-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..118d3a6de8
Binary files /dev/null and b/img-microsoft-64/1f6a3-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f6a3-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f6a3-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d3e7153476
Binary files /dev/null and b/img-microsoft-64/1f6a3-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f6a3-1f3fe.png b/img-microsoft-64/1f6a3-1f3fe.png
new file mode 100644
index 0000000000..6784273c44
Binary files /dev/null and b/img-microsoft-64/1f6a3-1f3fe.png differ
diff --git a/img-microsoft-64/1f6a3-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f6a3-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..a71b60a1c4
Binary files /dev/null and b/img-microsoft-64/1f6a3-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f6a3-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f6a3-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e0f106712e
Binary files /dev/null and b/img-microsoft-64/1f6a3-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f6a3-1f3ff.png b/img-microsoft-64/1f6a3-1f3ff.png
new file mode 100644
index 0000000000..99b37dae51
Binary files /dev/null and b/img-microsoft-64/1f6a3-1f3ff.png differ
diff --git a/img-microsoft-64/1f6a3-200d-2640-fe0f.png b/img-microsoft-64/1f6a3-200d-2640-fe0f.png
new file mode 100644
index 0000000000..00c151d635
Binary files /dev/null and b/img-microsoft-64/1f6a3-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f6a3-200d-2642-fe0f.png b/img-microsoft-64/1f6a3-200d-2642-fe0f.png
new file mode 100644
index 0000000000..587523a317
Binary files /dev/null and b/img-microsoft-64/1f6a3-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f6a3.png b/img-microsoft-64/1f6a3.png
new file mode 100644
index 0000000000..60b9892d04
Binary files /dev/null and b/img-microsoft-64/1f6a3.png differ
diff --git a/img-microsoft-64/1f6a4.png b/img-microsoft-64/1f6a4.png
new file mode 100644
index 0000000000..89ef1d8a69
Binary files /dev/null and b/img-microsoft-64/1f6a4.png differ
diff --git a/img-microsoft-64/1f6a5.png b/img-microsoft-64/1f6a5.png
new file mode 100644
index 0000000000..2b4af741c5
Binary files /dev/null and b/img-microsoft-64/1f6a5.png differ
diff --git a/img-microsoft-64/1f6a6.png b/img-microsoft-64/1f6a6.png
new file mode 100644
index 0000000000..4eb9b722b0
Binary files /dev/null and b/img-microsoft-64/1f6a6.png differ
diff --git a/img-microsoft-64/1f6a7.png b/img-microsoft-64/1f6a7.png
new file mode 100644
index 0000000000..f3c9d88bc8
Binary files /dev/null and b/img-microsoft-64/1f6a7.png differ
diff --git a/img-microsoft-64/1f6a8.png b/img-microsoft-64/1f6a8.png
new file mode 100644
index 0000000000..0e1e1a505b
Binary files /dev/null and b/img-microsoft-64/1f6a8.png differ
diff --git a/img-microsoft-64/1f6a9.png b/img-microsoft-64/1f6a9.png
new file mode 100644
index 0000000000..aa6ee13a66
Binary files /dev/null and b/img-microsoft-64/1f6a9.png differ
diff --git a/img-microsoft-64/1f6aa.png b/img-microsoft-64/1f6aa.png
new file mode 100644
index 0000000000..be23221492
Binary files /dev/null and b/img-microsoft-64/1f6aa.png differ
diff --git a/img-microsoft-64/1f6ab.png b/img-microsoft-64/1f6ab.png
new file mode 100644
index 0000000000..42b35c7368
Binary files /dev/null and b/img-microsoft-64/1f6ab.png differ
diff --git a/img-microsoft-64/1f6ac.png b/img-microsoft-64/1f6ac.png
new file mode 100644
index 0000000000..64f92751d4
Binary files /dev/null and b/img-microsoft-64/1f6ac.png differ
diff --git a/img-microsoft-64/1f6ad.png b/img-microsoft-64/1f6ad.png
new file mode 100644
index 0000000000..153e940051
Binary files /dev/null and b/img-microsoft-64/1f6ad.png differ
diff --git a/img-microsoft-64/1f6ae.png b/img-microsoft-64/1f6ae.png
new file mode 100644
index 0000000000..b275974250
Binary files /dev/null and b/img-microsoft-64/1f6ae.png differ
diff --git a/img-microsoft-64/1f6af.png b/img-microsoft-64/1f6af.png
new file mode 100644
index 0000000000..af9bfd1620
Binary files /dev/null and b/img-microsoft-64/1f6af.png differ
diff --git a/img-microsoft-64/1f6b0.png b/img-microsoft-64/1f6b0.png
new file mode 100644
index 0000000000..e59bb44be4
Binary files /dev/null and b/img-microsoft-64/1f6b0.png differ
diff --git a/img-microsoft-64/1f6b1.png b/img-microsoft-64/1f6b1.png
new file mode 100644
index 0000000000..8aa9187f65
Binary files /dev/null and b/img-microsoft-64/1f6b1.png differ
diff --git a/img-microsoft-64/1f6b2.png b/img-microsoft-64/1f6b2.png
new file mode 100644
index 0000000000..5d480ebc4a
Binary files /dev/null and b/img-microsoft-64/1f6b2.png differ
diff --git a/img-microsoft-64/1f6b3.png b/img-microsoft-64/1f6b3.png
new file mode 100644
index 0000000000..9831f50c46
Binary files /dev/null and b/img-microsoft-64/1f6b3.png differ
diff --git a/img-microsoft-64/1f6b4-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f6b4-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..37aa5bd4d9
Binary files /dev/null and b/img-microsoft-64/1f6b4-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f6b4-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f6b4-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d32793b395
Binary files /dev/null and b/img-microsoft-64/1f6b4-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f6b4-1f3fb.png b/img-microsoft-64/1f6b4-1f3fb.png
new file mode 100644
index 0000000000..af438d9bcb
Binary files /dev/null and b/img-microsoft-64/1f6b4-1f3fb.png differ
diff --git a/img-microsoft-64/1f6b4-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f6b4-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..757b41f18e
Binary files /dev/null and b/img-microsoft-64/1f6b4-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f6b4-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f6b4-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..c30b156dc5
Binary files /dev/null and b/img-microsoft-64/1f6b4-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f6b4-1f3fc.png b/img-microsoft-64/1f6b4-1f3fc.png
new file mode 100644
index 0000000000..6900087ad6
Binary files /dev/null and b/img-microsoft-64/1f6b4-1f3fc.png differ
diff --git a/img-microsoft-64/1f6b4-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f6b4-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..4fab239be3
Binary files /dev/null and b/img-microsoft-64/1f6b4-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f6b4-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f6b4-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..6b1a999317
Binary files /dev/null and b/img-microsoft-64/1f6b4-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f6b4-1f3fd.png b/img-microsoft-64/1f6b4-1f3fd.png
new file mode 100644
index 0000000000..b5110ba454
Binary files /dev/null and b/img-microsoft-64/1f6b4-1f3fd.png differ
diff --git a/img-microsoft-64/1f6b4-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f6b4-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..ee672371aa
Binary files /dev/null and b/img-microsoft-64/1f6b4-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f6b4-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f6b4-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..068f79c210
Binary files /dev/null and b/img-microsoft-64/1f6b4-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f6b4-1f3fe.png b/img-microsoft-64/1f6b4-1f3fe.png
new file mode 100644
index 0000000000..5db66aa1be
Binary files /dev/null and b/img-microsoft-64/1f6b4-1f3fe.png differ
diff --git a/img-microsoft-64/1f6b4-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f6b4-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..bca8ffc351
Binary files /dev/null and b/img-microsoft-64/1f6b4-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f6b4-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f6b4-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..31e94954c7
Binary files /dev/null and b/img-microsoft-64/1f6b4-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f6b4-1f3ff.png b/img-microsoft-64/1f6b4-1f3ff.png
new file mode 100644
index 0000000000..c348f161ed
Binary files /dev/null and b/img-microsoft-64/1f6b4-1f3ff.png differ
diff --git a/img-microsoft-64/1f6b4-200d-2640-fe0f.png b/img-microsoft-64/1f6b4-200d-2640-fe0f.png
new file mode 100644
index 0000000000..ccd5139fb6
Binary files /dev/null and b/img-microsoft-64/1f6b4-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f6b4-200d-2642-fe0f.png b/img-microsoft-64/1f6b4-200d-2642-fe0f.png
new file mode 100644
index 0000000000..2e403013c1
Binary files /dev/null and b/img-microsoft-64/1f6b4-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f6b4.png b/img-microsoft-64/1f6b4.png
new file mode 100644
index 0000000000..b4303bcd9f
Binary files /dev/null and b/img-microsoft-64/1f6b4.png differ
diff --git a/img-microsoft-64/1f6b5-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f6b5-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..58e63227a6
Binary files /dev/null and b/img-microsoft-64/1f6b5-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f6b5-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f6b5-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..39527a9c9a
Binary files /dev/null and b/img-microsoft-64/1f6b5-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f6b5-1f3fb.png b/img-microsoft-64/1f6b5-1f3fb.png
new file mode 100644
index 0000000000..453e31e4aa
Binary files /dev/null and b/img-microsoft-64/1f6b5-1f3fb.png differ
diff --git a/img-microsoft-64/1f6b5-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f6b5-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..bba23b8b5d
Binary files /dev/null and b/img-microsoft-64/1f6b5-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f6b5-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f6b5-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..4d537fe853
Binary files /dev/null and b/img-microsoft-64/1f6b5-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f6b5-1f3fc.png b/img-microsoft-64/1f6b5-1f3fc.png
new file mode 100644
index 0000000000..38387cebce
Binary files /dev/null and b/img-microsoft-64/1f6b5-1f3fc.png differ
diff --git a/img-microsoft-64/1f6b5-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f6b5-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..62d3b03630
Binary files /dev/null and b/img-microsoft-64/1f6b5-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f6b5-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f6b5-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..7675afaf7a
Binary files /dev/null and b/img-microsoft-64/1f6b5-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f6b5-1f3fd.png b/img-microsoft-64/1f6b5-1f3fd.png
new file mode 100644
index 0000000000..561e8800fe
Binary files /dev/null and b/img-microsoft-64/1f6b5-1f3fd.png differ
diff --git a/img-microsoft-64/1f6b5-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f6b5-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..290e1e8434
Binary files /dev/null and b/img-microsoft-64/1f6b5-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f6b5-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f6b5-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..c2c0b996aa
Binary files /dev/null and b/img-microsoft-64/1f6b5-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f6b5-1f3fe.png b/img-microsoft-64/1f6b5-1f3fe.png
new file mode 100644
index 0000000000..8819906c8c
Binary files /dev/null and b/img-microsoft-64/1f6b5-1f3fe.png differ
diff --git a/img-microsoft-64/1f6b5-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f6b5-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..9a1e41ace5
Binary files /dev/null and b/img-microsoft-64/1f6b5-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f6b5-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f6b5-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f2727c4644
Binary files /dev/null and b/img-microsoft-64/1f6b5-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f6b5-1f3ff.png b/img-microsoft-64/1f6b5-1f3ff.png
new file mode 100644
index 0000000000..15f97d1dcf
Binary files /dev/null and b/img-microsoft-64/1f6b5-1f3ff.png differ
diff --git a/img-microsoft-64/1f6b5-200d-2640-fe0f.png b/img-microsoft-64/1f6b5-200d-2640-fe0f.png
new file mode 100644
index 0000000000..e02b6c1fe5
Binary files /dev/null and b/img-microsoft-64/1f6b5-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f6b5-200d-2642-fe0f.png b/img-microsoft-64/1f6b5-200d-2642-fe0f.png
new file mode 100644
index 0000000000..692c0352f4
Binary files /dev/null and b/img-microsoft-64/1f6b5-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f6b5.png b/img-microsoft-64/1f6b5.png
new file mode 100644
index 0000000000..2522d8abbf
Binary files /dev/null and b/img-microsoft-64/1f6b5.png differ
diff --git a/img-microsoft-64/1f6b6-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f6b6-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..9c3289546e
Binary files /dev/null and b/img-microsoft-64/1f6b6-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f6b6-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f6b6-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..ee9b71c77e
Binary files /dev/null and b/img-microsoft-64/1f6b6-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f6b6-1f3fb.png b/img-microsoft-64/1f6b6-1f3fb.png
new file mode 100644
index 0000000000..acb2b263e1
Binary files /dev/null and b/img-microsoft-64/1f6b6-1f3fb.png differ
diff --git a/img-microsoft-64/1f6b6-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f6b6-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..3309d36c8d
Binary files /dev/null and b/img-microsoft-64/1f6b6-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f6b6-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f6b6-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..fbf1b60eef
Binary files /dev/null and b/img-microsoft-64/1f6b6-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f6b6-1f3fc.png b/img-microsoft-64/1f6b6-1f3fc.png
new file mode 100644
index 0000000000..6dcf31c5c0
Binary files /dev/null and b/img-microsoft-64/1f6b6-1f3fc.png differ
diff --git a/img-microsoft-64/1f6b6-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f6b6-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..c76b61ddea
Binary files /dev/null and b/img-microsoft-64/1f6b6-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f6b6-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f6b6-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..0af4458e2b
Binary files /dev/null and b/img-microsoft-64/1f6b6-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f6b6-1f3fd.png b/img-microsoft-64/1f6b6-1f3fd.png
new file mode 100644
index 0000000000..d2f04cf3a9
Binary files /dev/null and b/img-microsoft-64/1f6b6-1f3fd.png differ
diff --git a/img-microsoft-64/1f6b6-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f6b6-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..581109eda1
Binary files /dev/null and b/img-microsoft-64/1f6b6-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f6b6-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f6b6-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..7674b7ccce
Binary files /dev/null and b/img-microsoft-64/1f6b6-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f6b6-1f3fe.png b/img-microsoft-64/1f6b6-1f3fe.png
new file mode 100644
index 0000000000..eb2497e772
Binary files /dev/null and b/img-microsoft-64/1f6b6-1f3fe.png differ
diff --git a/img-microsoft-64/1f6b6-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f6b6-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..fc529e5cab
Binary files /dev/null and b/img-microsoft-64/1f6b6-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f6b6-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f6b6-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..b1684b3142
Binary files /dev/null and b/img-microsoft-64/1f6b6-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f6b6-1f3ff.png b/img-microsoft-64/1f6b6-1f3ff.png
new file mode 100644
index 0000000000..ff68d99e58
Binary files /dev/null and b/img-microsoft-64/1f6b6-1f3ff.png differ
diff --git a/img-microsoft-64/1f6b6-200d-2640-fe0f.png b/img-microsoft-64/1f6b6-200d-2640-fe0f.png
new file mode 100644
index 0000000000..0ba50a2b0d
Binary files /dev/null and b/img-microsoft-64/1f6b6-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f6b6-200d-2642-fe0f.png b/img-microsoft-64/1f6b6-200d-2642-fe0f.png
new file mode 100644
index 0000000000..1b721210b9
Binary files /dev/null and b/img-microsoft-64/1f6b6-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f6b6.png b/img-microsoft-64/1f6b6.png
new file mode 100644
index 0000000000..576bfc243e
Binary files /dev/null and b/img-microsoft-64/1f6b6.png differ
diff --git a/img-microsoft-64/1f6b7.png b/img-microsoft-64/1f6b7.png
new file mode 100644
index 0000000000..350d606ec4
Binary files /dev/null and b/img-microsoft-64/1f6b7.png differ
diff --git a/img-microsoft-64/1f6b8.png b/img-microsoft-64/1f6b8.png
new file mode 100644
index 0000000000..0584ca808f
Binary files /dev/null and b/img-microsoft-64/1f6b8.png differ
diff --git a/img-microsoft-64/1f6b9.png b/img-microsoft-64/1f6b9.png
new file mode 100644
index 0000000000..73a8847dbe
Binary files /dev/null and b/img-microsoft-64/1f6b9.png differ
diff --git a/img-microsoft-64/1f6ba.png b/img-microsoft-64/1f6ba.png
new file mode 100644
index 0000000000..391a26f74b
Binary files /dev/null and b/img-microsoft-64/1f6ba.png differ
diff --git a/img-microsoft-64/1f6bb.png b/img-microsoft-64/1f6bb.png
new file mode 100644
index 0000000000..c1630d3c23
Binary files /dev/null and b/img-microsoft-64/1f6bb.png differ
diff --git a/img-microsoft-64/1f6bc.png b/img-microsoft-64/1f6bc.png
new file mode 100644
index 0000000000..6577cdf1be
Binary files /dev/null and b/img-microsoft-64/1f6bc.png differ
diff --git a/img-microsoft-64/1f6bd.png b/img-microsoft-64/1f6bd.png
new file mode 100644
index 0000000000..e4c956b2cb
Binary files /dev/null and b/img-microsoft-64/1f6bd.png differ
diff --git a/img-microsoft-64/1f6be.png b/img-microsoft-64/1f6be.png
new file mode 100644
index 0000000000..ed795bd811
Binary files /dev/null and b/img-microsoft-64/1f6be.png differ
diff --git a/img-microsoft-64/1f6bf.png b/img-microsoft-64/1f6bf.png
new file mode 100644
index 0000000000..bf3b1a5ff9
Binary files /dev/null and b/img-microsoft-64/1f6bf.png differ
diff --git a/img-microsoft-64/1f6c0-1f3fb.png b/img-microsoft-64/1f6c0-1f3fb.png
new file mode 100644
index 0000000000..3e9047f638
Binary files /dev/null and b/img-microsoft-64/1f6c0-1f3fb.png differ
diff --git a/img-microsoft-64/1f6c0-1f3fc.png b/img-microsoft-64/1f6c0-1f3fc.png
new file mode 100644
index 0000000000..7d582a018f
Binary files /dev/null and b/img-microsoft-64/1f6c0-1f3fc.png differ
diff --git a/img-microsoft-64/1f6c0-1f3fd.png b/img-microsoft-64/1f6c0-1f3fd.png
new file mode 100644
index 0000000000..729c1162de
Binary files /dev/null and b/img-microsoft-64/1f6c0-1f3fd.png differ
diff --git a/img-microsoft-64/1f6c0-1f3fe.png b/img-microsoft-64/1f6c0-1f3fe.png
new file mode 100644
index 0000000000..2fcb3c1075
Binary files /dev/null and b/img-microsoft-64/1f6c0-1f3fe.png differ
diff --git a/img-microsoft-64/1f6c0-1f3ff.png b/img-microsoft-64/1f6c0-1f3ff.png
new file mode 100644
index 0000000000..9157fe064a
Binary files /dev/null and b/img-microsoft-64/1f6c0-1f3ff.png differ
diff --git a/img-microsoft-64/1f6c0.png b/img-microsoft-64/1f6c0.png
new file mode 100644
index 0000000000..8cb883c15c
Binary files /dev/null and b/img-microsoft-64/1f6c0.png differ
diff --git a/img-microsoft-64/1f6c1.png b/img-microsoft-64/1f6c1.png
new file mode 100644
index 0000000000..2f475a1f46
Binary files /dev/null and b/img-microsoft-64/1f6c1.png differ
diff --git a/img-microsoft-64/1f6c2.png b/img-microsoft-64/1f6c2.png
new file mode 100644
index 0000000000..81638ffafd
Binary files /dev/null and b/img-microsoft-64/1f6c2.png differ
diff --git a/img-microsoft-64/1f6c3.png b/img-microsoft-64/1f6c3.png
new file mode 100644
index 0000000000..331be48f71
Binary files /dev/null and b/img-microsoft-64/1f6c3.png differ
diff --git a/img-microsoft-64/1f6c4.png b/img-microsoft-64/1f6c4.png
new file mode 100644
index 0000000000..4c14d18ed3
Binary files /dev/null and b/img-microsoft-64/1f6c4.png differ
diff --git a/img-microsoft-64/1f6c5.png b/img-microsoft-64/1f6c5.png
new file mode 100644
index 0000000000..b24b4e0939
Binary files /dev/null and b/img-microsoft-64/1f6c5.png differ
diff --git a/img-microsoft-64/1f6cb-fe0f.png b/img-microsoft-64/1f6cb-fe0f.png
new file mode 100644
index 0000000000..ec92b468e0
Binary files /dev/null and b/img-microsoft-64/1f6cb-fe0f.png differ
diff --git a/img-microsoft-64/1f6cc-1f3fb.png b/img-microsoft-64/1f6cc-1f3fb.png
new file mode 100644
index 0000000000..a9eba56904
Binary files /dev/null and b/img-microsoft-64/1f6cc-1f3fb.png differ
diff --git a/img-microsoft-64/1f6cc-1f3fc.png b/img-microsoft-64/1f6cc-1f3fc.png
new file mode 100644
index 0000000000..5554f12f8f
Binary files /dev/null and b/img-microsoft-64/1f6cc-1f3fc.png differ
diff --git a/img-microsoft-64/1f6cc-1f3fd.png b/img-microsoft-64/1f6cc-1f3fd.png
new file mode 100644
index 0000000000..a1c937b5d8
Binary files /dev/null and b/img-microsoft-64/1f6cc-1f3fd.png differ
diff --git a/img-microsoft-64/1f6cc-1f3fe.png b/img-microsoft-64/1f6cc-1f3fe.png
new file mode 100644
index 0000000000..ae1abaa5cd
Binary files /dev/null and b/img-microsoft-64/1f6cc-1f3fe.png differ
diff --git a/img-microsoft-64/1f6cc-1f3ff.png b/img-microsoft-64/1f6cc-1f3ff.png
new file mode 100644
index 0000000000..86f74c7555
Binary files /dev/null and b/img-microsoft-64/1f6cc-1f3ff.png differ
diff --git a/img-microsoft-64/1f6cc.png b/img-microsoft-64/1f6cc.png
new file mode 100644
index 0000000000..18a947ad0e
Binary files /dev/null and b/img-microsoft-64/1f6cc.png differ
diff --git a/img-microsoft-64/1f6cd-fe0f.png b/img-microsoft-64/1f6cd-fe0f.png
new file mode 100644
index 0000000000..cee07f08a2
Binary files /dev/null and b/img-microsoft-64/1f6cd-fe0f.png differ
diff --git a/img-microsoft-64/1f6ce-fe0f.png b/img-microsoft-64/1f6ce-fe0f.png
new file mode 100644
index 0000000000..ed36d24cd3
Binary files /dev/null and b/img-microsoft-64/1f6ce-fe0f.png differ
diff --git a/img-microsoft-64/1f6cf-fe0f.png b/img-microsoft-64/1f6cf-fe0f.png
new file mode 100644
index 0000000000..c396c6641c
Binary files /dev/null and b/img-microsoft-64/1f6cf-fe0f.png differ
diff --git a/img-microsoft-64/1f6d0.png b/img-microsoft-64/1f6d0.png
new file mode 100644
index 0000000000..ac410c7c3d
Binary files /dev/null and b/img-microsoft-64/1f6d0.png differ
diff --git a/img-microsoft-64/1f6d1.png b/img-microsoft-64/1f6d1.png
new file mode 100644
index 0000000000..bbaad4c4d1
Binary files /dev/null and b/img-microsoft-64/1f6d1.png differ
diff --git a/img-microsoft-64/1f6d2.png b/img-microsoft-64/1f6d2.png
new file mode 100644
index 0000000000..28b67bc515
Binary files /dev/null and b/img-microsoft-64/1f6d2.png differ
diff --git a/img-microsoft-64/1f6d5.png b/img-microsoft-64/1f6d5.png
new file mode 100644
index 0000000000..e755c4319d
Binary files /dev/null and b/img-microsoft-64/1f6d5.png differ
diff --git a/img-microsoft-64/1f6d6.png b/img-microsoft-64/1f6d6.png
new file mode 100644
index 0000000000..3bff451760
Binary files /dev/null and b/img-microsoft-64/1f6d6.png differ
diff --git a/img-microsoft-64/1f6d7.png b/img-microsoft-64/1f6d7.png
new file mode 100644
index 0000000000..cd053ed149
Binary files /dev/null and b/img-microsoft-64/1f6d7.png differ
diff --git a/img-microsoft-64/1f6dd.png b/img-microsoft-64/1f6dd.png
new file mode 100644
index 0000000000..51884c0f66
Binary files /dev/null and b/img-microsoft-64/1f6dd.png differ
diff --git a/img-microsoft-64/1f6de.png b/img-microsoft-64/1f6de.png
new file mode 100644
index 0000000000..e996369e84
Binary files /dev/null and b/img-microsoft-64/1f6de.png differ
diff --git a/img-microsoft-64/1f6df.png b/img-microsoft-64/1f6df.png
new file mode 100644
index 0000000000..5c39d9344c
Binary files /dev/null and b/img-microsoft-64/1f6df.png differ
diff --git a/img-microsoft-64/1f6e0-fe0f.png b/img-microsoft-64/1f6e0-fe0f.png
new file mode 100644
index 0000000000..03d2f2492a
Binary files /dev/null and b/img-microsoft-64/1f6e0-fe0f.png differ
diff --git a/img-microsoft-64/1f6e1-fe0f.png b/img-microsoft-64/1f6e1-fe0f.png
new file mode 100644
index 0000000000..aaaca578ff
Binary files /dev/null and b/img-microsoft-64/1f6e1-fe0f.png differ
diff --git a/img-microsoft-64/1f6e2-fe0f.png b/img-microsoft-64/1f6e2-fe0f.png
new file mode 100644
index 0000000000..9ff9c28e65
Binary files /dev/null and b/img-microsoft-64/1f6e2-fe0f.png differ
diff --git a/img-microsoft-64/1f6e3-fe0f.png b/img-microsoft-64/1f6e3-fe0f.png
new file mode 100644
index 0000000000..67e40b47d9
Binary files /dev/null and b/img-microsoft-64/1f6e3-fe0f.png differ
diff --git a/img-microsoft-64/1f6e4-fe0f.png b/img-microsoft-64/1f6e4-fe0f.png
new file mode 100644
index 0000000000..38cd7941c9
Binary files /dev/null and b/img-microsoft-64/1f6e4-fe0f.png differ
diff --git a/img-microsoft-64/1f6e5-fe0f.png b/img-microsoft-64/1f6e5-fe0f.png
new file mode 100644
index 0000000000..6025c848bf
Binary files /dev/null and b/img-microsoft-64/1f6e5-fe0f.png differ
diff --git a/img-microsoft-64/1f6e9-fe0f.png b/img-microsoft-64/1f6e9-fe0f.png
new file mode 100644
index 0000000000..4bb9ee0f7c
Binary files /dev/null and b/img-microsoft-64/1f6e9-fe0f.png differ
diff --git a/img-microsoft-64/1f6eb.png b/img-microsoft-64/1f6eb.png
new file mode 100644
index 0000000000..4f3af66c4d
Binary files /dev/null and b/img-microsoft-64/1f6eb.png differ
diff --git a/img-microsoft-64/1f6ec.png b/img-microsoft-64/1f6ec.png
new file mode 100644
index 0000000000..604904cf5c
Binary files /dev/null and b/img-microsoft-64/1f6ec.png differ
diff --git a/img-microsoft-64/1f6f0-fe0f.png b/img-microsoft-64/1f6f0-fe0f.png
new file mode 100644
index 0000000000..1f493175fd
Binary files /dev/null and b/img-microsoft-64/1f6f0-fe0f.png differ
diff --git a/img-microsoft-64/1f6f3-fe0f.png b/img-microsoft-64/1f6f3-fe0f.png
new file mode 100644
index 0000000000..741be2aa9c
Binary files /dev/null and b/img-microsoft-64/1f6f3-fe0f.png differ
diff --git a/img-microsoft-64/1f6f4.png b/img-microsoft-64/1f6f4.png
new file mode 100644
index 0000000000..36b8007a8a
Binary files /dev/null and b/img-microsoft-64/1f6f4.png differ
diff --git a/img-microsoft-64/1f6f5.png b/img-microsoft-64/1f6f5.png
new file mode 100644
index 0000000000..f37f28931b
Binary files /dev/null and b/img-microsoft-64/1f6f5.png differ
diff --git a/img-microsoft-64/1f6f6.png b/img-microsoft-64/1f6f6.png
new file mode 100644
index 0000000000..65cd1c88e2
Binary files /dev/null and b/img-microsoft-64/1f6f6.png differ
diff --git a/img-microsoft-64/1f6f7.png b/img-microsoft-64/1f6f7.png
new file mode 100644
index 0000000000..07a1a508f1
Binary files /dev/null and b/img-microsoft-64/1f6f7.png differ
diff --git a/img-microsoft-64/1f6f8.png b/img-microsoft-64/1f6f8.png
new file mode 100644
index 0000000000..f2cd605bc7
Binary files /dev/null and b/img-microsoft-64/1f6f8.png differ
diff --git a/img-microsoft-64/1f6f9.png b/img-microsoft-64/1f6f9.png
new file mode 100644
index 0000000000..d220f50ef5
Binary files /dev/null and b/img-microsoft-64/1f6f9.png differ
diff --git a/img-microsoft-64/1f6fa.png b/img-microsoft-64/1f6fa.png
new file mode 100644
index 0000000000..29e71ec3ee
Binary files /dev/null and b/img-microsoft-64/1f6fa.png differ
diff --git a/img-microsoft-64/1f6fb.png b/img-microsoft-64/1f6fb.png
new file mode 100644
index 0000000000..22c7f91b2e
Binary files /dev/null and b/img-microsoft-64/1f6fb.png differ
diff --git a/img-microsoft-64/1f6fc.png b/img-microsoft-64/1f6fc.png
new file mode 100644
index 0000000000..f24c3af5eb
Binary files /dev/null and b/img-microsoft-64/1f6fc.png differ
diff --git a/img-microsoft-64/1f7e0.png b/img-microsoft-64/1f7e0.png
new file mode 100644
index 0000000000..bab6d1857d
Binary files /dev/null and b/img-microsoft-64/1f7e0.png differ
diff --git a/img-microsoft-64/1f7e1.png b/img-microsoft-64/1f7e1.png
new file mode 100644
index 0000000000..a8460d6a0a
Binary files /dev/null and b/img-microsoft-64/1f7e1.png differ
diff --git a/img-microsoft-64/1f7e2.png b/img-microsoft-64/1f7e2.png
new file mode 100644
index 0000000000..e2fde4c39c
Binary files /dev/null and b/img-microsoft-64/1f7e2.png differ
diff --git a/img-microsoft-64/1f7e3.png b/img-microsoft-64/1f7e3.png
new file mode 100644
index 0000000000..240e3db829
Binary files /dev/null and b/img-microsoft-64/1f7e3.png differ
diff --git a/img-microsoft-64/1f7e4.png b/img-microsoft-64/1f7e4.png
new file mode 100644
index 0000000000..1d5562c1d0
Binary files /dev/null and b/img-microsoft-64/1f7e4.png differ
diff --git a/img-microsoft-64/1f7e5.png b/img-microsoft-64/1f7e5.png
new file mode 100644
index 0000000000..3f12e062d0
Binary files /dev/null and b/img-microsoft-64/1f7e5.png differ
diff --git a/img-microsoft-64/1f7e6.png b/img-microsoft-64/1f7e6.png
new file mode 100644
index 0000000000..21498b1617
Binary files /dev/null and b/img-microsoft-64/1f7e6.png differ
diff --git a/img-microsoft-64/1f7e7.png b/img-microsoft-64/1f7e7.png
new file mode 100644
index 0000000000..9f68ce9834
Binary files /dev/null and b/img-microsoft-64/1f7e7.png differ
diff --git a/img-microsoft-64/1f7e8.png b/img-microsoft-64/1f7e8.png
new file mode 100644
index 0000000000..90eb81af1e
Binary files /dev/null and b/img-microsoft-64/1f7e8.png differ
diff --git a/img-microsoft-64/1f7e9.png b/img-microsoft-64/1f7e9.png
new file mode 100644
index 0000000000..1472b3c130
Binary files /dev/null and b/img-microsoft-64/1f7e9.png differ
diff --git a/img-microsoft-64/1f7ea.png b/img-microsoft-64/1f7ea.png
new file mode 100644
index 0000000000..4360f09248
Binary files /dev/null and b/img-microsoft-64/1f7ea.png differ
diff --git a/img-microsoft-64/1f7eb.png b/img-microsoft-64/1f7eb.png
new file mode 100644
index 0000000000..75720c2e36
Binary files /dev/null and b/img-microsoft-64/1f7eb.png differ
diff --git a/img-microsoft-64/1f7f0.png b/img-microsoft-64/1f7f0.png
new file mode 100644
index 0000000000..156db760fd
Binary files /dev/null and b/img-microsoft-64/1f7f0.png differ
diff --git a/img-microsoft-64/1f90c-1f3fb.png b/img-microsoft-64/1f90c-1f3fb.png
new file mode 100644
index 0000000000..96b399d814
Binary files /dev/null and b/img-microsoft-64/1f90c-1f3fb.png differ
diff --git a/img-microsoft-64/1f90c-1f3fc.png b/img-microsoft-64/1f90c-1f3fc.png
new file mode 100644
index 0000000000..3616cbb339
Binary files /dev/null and b/img-microsoft-64/1f90c-1f3fc.png differ
diff --git a/img-microsoft-64/1f90c-1f3fd.png b/img-microsoft-64/1f90c-1f3fd.png
new file mode 100644
index 0000000000..0ac234f5dc
Binary files /dev/null and b/img-microsoft-64/1f90c-1f3fd.png differ
diff --git a/img-microsoft-64/1f90c-1f3fe.png b/img-microsoft-64/1f90c-1f3fe.png
new file mode 100644
index 0000000000..3a7856cf2d
Binary files /dev/null and b/img-microsoft-64/1f90c-1f3fe.png differ
diff --git a/img-microsoft-64/1f90c-1f3ff.png b/img-microsoft-64/1f90c-1f3ff.png
new file mode 100644
index 0000000000..896c4e5e0a
Binary files /dev/null and b/img-microsoft-64/1f90c-1f3ff.png differ
diff --git a/img-microsoft-64/1f90c.png b/img-microsoft-64/1f90c.png
new file mode 100644
index 0000000000..acd666f22a
Binary files /dev/null and b/img-microsoft-64/1f90c.png differ
diff --git a/img-microsoft-64/1f90d.png b/img-microsoft-64/1f90d.png
new file mode 100644
index 0000000000..32e99a88ed
Binary files /dev/null and b/img-microsoft-64/1f90d.png differ
diff --git a/img-microsoft-64/1f90e.png b/img-microsoft-64/1f90e.png
new file mode 100644
index 0000000000..3bed219f68
Binary files /dev/null and b/img-microsoft-64/1f90e.png differ
diff --git a/img-microsoft-64/1f90f-1f3fb.png b/img-microsoft-64/1f90f-1f3fb.png
new file mode 100644
index 0000000000..102ae83ea8
Binary files /dev/null and b/img-microsoft-64/1f90f-1f3fb.png differ
diff --git a/img-microsoft-64/1f90f-1f3fc.png b/img-microsoft-64/1f90f-1f3fc.png
new file mode 100644
index 0000000000..c7d85c87cb
Binary files /dev/null and b/img-microsoft-64/1f90f-1f3fc.png differ
diff --git a/img-microsoft-64/1f90f-1f3fd.png b/img-microsoft-64/1f90f-1f3fd.png
new file mode 100644
index 0000000000..10f5506caa
Binary files /dev/null and b/img-microsoft-64/1f90f-1f3fd.png differ
diff --git a/img-microsoft-64/1f90f-1f3fe.png b/img-microsoft-64/1f90f-1f3fe.png
new file mode 100644
index 0000000000..5d3bf8a07d
Binary files /dev/null and b/img-microsoft-64/1f90f-1f3fe.png differ
diff --git a/img-microsoft-64/1f90f-1f3ff.png b/img-microsoft-64/1f90f-1f3ff.png
new file mode 100644
index 0000000000..bd794221f5
Binary files /dev/null and b/img-microsoft-64/1f90f-1f3ff.png differ
diff --git a/img-microsoft-64/1f90f.png b/img-microsoft-64/1f90f.png
new file mode 100644
index 0000000000..29f42bf916
Binary files /dev/null and b/img-microsoft-64/1f90f.png differ
diff --git a/img-microsoft-64/1f910.png b/img-microsoft-64/1f910.png
new file mode 100644
index 0000000000..9d36adb4ef
Binary files /dev/null and b/img-microsoft-64/1f910.png differ
diff --git a/img-microsoft-64/1f911.png b/img-microsoft-64/1f911.png
new file mode 100644
index 0000000000..3cc2c974e3
Binary files /dev/null and b/img-microsoft-64/1f911.png differ
diff --git a/img-microsoft-64/1f912.png b/img-microsoft-64/1f912.png
new file mode 100644
index 0000000000..92f83b0aee
Binary files /dev/null and b/img-microsoft-64/1f912.png differ
diff --git a/img-microsoft-64/1f913.png b/img-microsoft-64/1f913.png
new file mode 100644
index 0000000000..b81b6f9d75
Binary files /dev/null and b/img-microsoft-64/1f913.png differ
diff --git a/img-microsoft-64/1f914.png b/img-microsoft-64/1f914.png
new file mode 100644
index 0000000000..7ab8774710
Binary files /dev/null and b/img-microsoft-64/1f914.png differ
diff --git a/img-microsoft-64/1f915.png b/img-microsoft-64/1f915.png
new file mode 100644
index 0000000000..4d512bd93e
Binary files /dev/null and b/img-microsoft-64/1f915.png differ
diff --git a/img-microsoft-64/1f916.png b/img-microsoft-64/1f916.png
new file mode 100644
index 0000000000..dd5eac7fbb
Binary files /dev/null and b/img-microsoft-64/1f916.png differ
diff --git a/img-microsoft-64/1f917.png b/img-microsoft-64/1f917.png
new file mode 100644
index 0000000000..5e730441c6
Binary files /dev/null and b/img-microsoft-64/1f917.png differ
diff --git a/img-microsoft-64/1f918-1f3fb.png b/img-microsoft-64/1f918-1f3fb.png
new file mode 100644
index 0000000000..84427ec152
Binary files /dev/null and b/img-microsoft-64/1f918-1f3fb.png differ
diff --git a/img-microsoft-64/1f918-1f3fc.png b/img-microsoft-64/1f918-1f3fc.png
new file mode 100644
index 0000000000..7f09fb8b85
Binary files /dev/null and b/img-microsoft-64/1f918-1f3fc.png differ
diff --git a/img-microsoft-64/1f918-1f3fd.png b/img-microsoft-64/1f918-1f3fd.png
new file mode 100644
index 0000000000..ca006e25df
Binary files /dev/null and b/img-microsoft-64/1f918-1f3fd.png differ
diff --git a/img-microsoft-64/1f918-1f3fe.png b/img-microsoft-64/1f918-1f3fe.png
new file mode 100644
index 0000000000..b37fbcac8d
Binary files /dev/null and b/img-microsoft-64/1f918-1f3fe.png differ
diff --git a/img-microsoft-64/1f918-1f3ff.png b/img-microsoft-64/1f918-1f3ff.png
new file mode 100644
index 0000000000..99bf84973b
Binary files /dev/null and b/img-microsoft-64/1f918-1f3ff.png differ
diff --git a/img-microsoft-64/1f918.png b/img-microsoft-64/1f918.png
new file mode 100644
index 0000000000..629bb28374
Binary files /dev/null and b/img-microsoft-64/1f918.png differ
diff --git a/img-microsoft-64/1f919-1f3fb.png b/img-microsoft-64/1f919-1f3fb.png
new file mode 100644
index 0000000000..43df1b5a2b
Binary files /dev/null and b/img-microsoft-64/1f919-1f3fb.png differ
diff --git a/img-microsoft-64/1f919-1f3fc.png b/img-microsoft-64/1f919-1f3fc.png
new file mode 100644
index 0000000000..9ce6ec195a
Binary files /dev/null and b/img-microsoft-64/1f919-1f3fc.png differ
diff --git a/img-microsoft-64/1f919-1f3fd.png b/img-microsoft-64/1f919-1f3fd.png
new file mode 100644
index 0000000000..e32a153bc2
Binary files /dev/null and b/img-microsoft-64/1f919-1f3fd.png differ
diff --git a/img-microsoft-64/1f919-1f3fe.png b/img-microsoft-64/1f919-1f3fe.png
new file mode 100644
index 0000000000..34fcf210fa
Binary files /dev/null and b/img-microsoft-64/1f919-1f3fe.png differ
diff --git a/img-microsoft-64/1f919-1f3ff.png b/img-microsoft-64/1f919-1f3ff.png
new file mode 100644
index 0000000000..147bdaa761
Binary files /dev/null and b/img-microsoft-64/1f919-1f3ff.png differ
diff --git a/img-microsoft-64/1f919.png b/img-microsoft-64/1f919.png
new file mode 100644
index 0000000000..d0828a0e16
Binary files /dev/null and b/img-microsoft-64/1f919.png differ
diff --git a/img-microsoft-64/1f91a-1f3fb.png b/img-microsoft-64/1f91a-1f3fb.png
new file mode 100644
index 0000000000..563ea27c01
Binary files /dev/null and b/img-microsoft-64/1f91a-1f3fb.png differ
diff --git a/img-microsoft-64/1f91a-1f3fc.png b/img-microsoft-64/1f91a-1f3fc.png
new file mode 100644
index 0000000000..d492a40755
Binary files /dev/null and b/img-microsoft-64/1f91a-1f3fc.png differ
diff --git a/img-microsoft-64/1f91a-1f3fd.png b/img-microsoft-64/1f91a-1f3fd.png
new file mode 100644
index 0000000000..e8ef0044d8
Binary files /dev/null and b/img-microsoft-64/1f91a-1f3fd.png differ
diff --git a/img-microsoft-64/1f91a-1f3fe.png b/img-microsoft-64/1f91a-1f3fe.png
new file mode 100644
index 0000000000..7107f8b474
Binary files /dev/null and b/img-microsoft-64/1f91a-1f3fe.png differ
diff --git a/img-microsoft-64/1f91a-1f3ff.png b/img-microsoft-64/1f91a-1f3ff.png
new file mode 100644
index 0000000000..6fa65e3ff0
Binary files /dev/null and b/img-microsoft-64/1f91a-1f3ff.png differ
diff --git a/img-microsoft-64/1f91a.png b/img-microsoft-64/1f91a.png
new file mode 100644
index 0000000000..5730cfe300
Binary files /dev/null and b/img-microsoft-64/1f91a.png differ
diff --git a/img-microsoft-64/1f91b-1f3fb.png b/img-microsoft-64/1f91b-1f3fb.png
new file mode 100644
index 0000000000..10095562fa
Binary files /dev/null and b/img-microsoft-64/1f91b-1f3fb.png differ
diff --git a/img-microsoft-64/1f91b-1f3fc.png b/img-microsoft-64/1f91b-1f3fc.png
new file mode 100644
index 0000000000..6b6ae25364
Binary files /dev/null and b/img-microsoft-64/1f91b-1f3fc.png differ
diff --git a/img-microsoft-64/1f91b-1f3fd.png b/img-microsoft-64/1f91b-1f3fd.png
new file mode 100644
index 0000000000..fb3d9b8b71
Binary files /dev/null and b/img-microsoft-64/1f91b-1f3fd.png differ
diff --git a/img-microsoft-64/1f91b-1f3fe.png b/img-microsoft-64/1f91b-1f3fe.png
new file mode 100644
index 0000000000..eb5670cc2e
Binary files /dev/null and b/img-microsoft-64/1f91b-1f3fe.png differ
diff --git a/img-microsoft-64/1f91b-1f3ff.png b/img-microsoft-64/1f91b-1f3ff.png
new file mode 100644
index 0000000000..ead58d3ecd
Binary files /dev/null and b/img-microsoft-64/1f91b-1f3ff.png differ
diff --git a/img-microsoft-64/1f91b.png b/img-microsoft-64/1f91b.png
new file mode 100644
index 0000000000..98c0726dd7
Binary files /dev/null and b/img-microsoft-64/1f91b.png differ
diff --git a/img-microsoft-64/1f91c-1f3fb.png b/img-microsoft-64/1f91c-1f3fb.png
new file mode 100644
index 0000000000..adc191eccb
Binary files /dev/null and b/img-microsoft-64/1f91c-1f3fb.png differ
diff --git a/img-microsoft-64/1f91c-1f3fc.png b/img-microsoft-64/1f91c-1f3fc.png
new file mode 100644
index 0000000000..59d42998d5
Binary files /dev/null and b/img-microsoft-64/1f91c-1f3fc.png differ
diff --git a/img-microsoft-64/1f91c-1f3fd.png b/img-microsoft-64/1f91c-1f3fd.png
new file mode 100644
index 0000000000..1d218a053f
Binary files /dev/null and b/img-microsoft-64/1f91c-1f3fd.png differ
diff --git a/img-microsoft-64/1f91c-1f3fe.png b/img-microsoft-64/1f91c-1f3fe.png
new file mode 100644
index 0000000000..f74c6dc009
Binary files /dev/null and b/img-microsoft-64/1f91c-1f3fe.png differ
diff --git a/img-microsoft-64/1f91c-1f3ff.png b/img-microsoft-64/1f91c-1f3ff.png
new file mode 100644
index 0000000000..a2eda0a122
Binary files /dev/null and b/img-microsoft-64/1f91c-1f3ff.png differ
diff --git a/img-microsoft-64/1f91c.png b/img-microsoft-64/1f91c.png
new file mode 100644
index 0000000000..7e3249c1c4
Binary files /dev/null and b/img-microsoft-64/1f91c.png differ
diff --git a/img-microsoft-64/1f91d.png b/img-microsoft-64/1f91d.png
new file mode 100644
index 0000000000..3d0b2c3f65
Binary files /dev/null and b/img-microsoft-64/1f91d.png differ
diff --git a/img-microsoft-64/1f91e-1f3fb.png b/img-microsoft-64/1f91e-1f3fb.png
new file mode 100644
index 0000000000..985f8a5265
Binary files /dev/null and b/img-microsoft-64/1f91e-1f3fb.png differ
diff --git a/img-microsoft-64/1f91e-1f3fc.png b/img-microsoft-64/1f91e-1f3fc.png
new file mode 100644
index 0000000000..8c156e706e
Binary files /dev/null and b/img-microsoft-64/1f91e-1f3fc.png differ
diff --git a/img-microsoft-64/1f91e-1f3fd.png b/img-microsoft-64/1f91e-1f3fd.png
new file mode 100644
index 0000000000..4948b41ed9
Binary files /dev/null and b/img-microsoft-64/1f91e-1f3fd.png differ
diff --git a/img-microsoft-64/1f91e-1f3fe.png b/img-microsoft-64/1f91e-1f3fe.png
new file mode 100644
index 0000000000..9d8c55a105
Binary files /dev/null and b/img-microsoft-64/1f91e-1f3fe.png differ
diff --git a/img-microsoft-64/1f91e-1f3ff.png b/img-microsoft-64/1f91e-1f3ff.png
new file mode 100644
index 0000000000..9a97fca2ab
Binary files /dev/null and b/img-microsoft-64/1f91e-1f3ff.png differ
diff --git a/img-microsoft-64/1f91e.png b/img-microsoft-64/1f91e.png
new file mode 100644
index 0000000000..259b7709e3
Binary files /dev/null and b/img-microsoft-64/1f91e.png differ
diff --git a/img-microsoft-64/1f91f-1f3fb.png b/img-microsoft-64/1f91f-1f3fb.png
new file mode 100644
index 0000000000..8de52e61df
Binary files /dev/null and b/img-microsoft-64/1f91f-1f3fb.png differ
diff --git a/img-microsoft-64/1f91f-1f3fc.png b/img-microsoft-64/1f91f-1f3fc.png
new file mode 100644
index 0000000000..f94812a770
Binary files /dev/null and b/img-microsoft-64/1f91f-1f3fc.png differ
diff --git a/img-microsoft-64/1f91f-1f3fd.png b/img-microsoft-64/1f91f-1f3fd.png
new file mode 100644
index 0000000000..5c27051aa8
Binary files /dev/null and b/img-microsoft-64/1f91f-1f3fd.png differ
diff --git a/img-microsoft-64/1f91f-1f3fe.png b/img-microsoft-64/1f91f-1f3fe.png
new file mode 100644
index 0000000000..97d90a210f
Binary files /dev/null and b/img-microsoft-64/1f91f-1f3fe.png differ
diff --git a/img-microsoft-64/1f91f-1f3ff.png b/img-microsoft-64/1f91f-1f3ff.png
new file mode 100644
index 0000000000..b7fab6164b
Binary files /dev/null and b/img-microsoft-64/1f91f-1f3ff.png differ
diff --git a/img-microsoft-64/1f91f.png b/img-microsoft-64/1f91f.png
new file mode 100644
index 0000000000..08c8666190
Binary files /dev/null and b/img-microsoft-64/1f91f.png differ
diff --git a/img-microsoft-64/1f920.png b/img-microsoft-64/1f920.png
new file mode 100644
index 0000000000..fe402e4cce
Binary files /dev/null and b/img-microsoft-64/1f920.png differ
diff --git a/img-microsoft-64/1f921.png b/img-microsoft-64/1f921.png
new file mode 100644
index 0000000000..a1479358e1
Binary files /dev/null and b/img-microsoft-64/1f921.png differ
diff --git a/img-microsoft-64/1f922.png b/img-microsoft-64/1f922.png
new file mode 100644
index 0000000000..6c349c0020
Binary files /dev/null and b/img-microsoft-64/1f922.png differ
diff --git a/img-microsoft-64/1f923.png b/img-microsoft-64/1f923.png
new file mode 100644
index 0000000000..67129f0ed1
Binary files /dev/null and b/img-microsoft-64/1f923.png differ
diff --git a/img-microsoft-64/1f924.png b/img-microsoft-64/1f924.png
new file mode 100644
index 0000000000..7d966bfef4
Binary files /dev/null and b/img-microsoft-64/1f924.png differ
diff --git a/img-microsoft-64/1f925.png b/img-microsoft-64/1f925.png
new file mode 100644
index 0000000000..34e24e246d
Binary files /dev/null and b/img-microsoft-64/1f925.png differ
diff --git a/img-microsoft-64/1f926-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f926-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..1b5f04c11e
Binary files /dev/null and b/img-microsoft-64/1f926-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f926-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f926-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..ae04286b46
Binary files /dev/null and b/img-microsoft-64/1f926-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f926-1f3fb.png b/img-microsoft-64/1f926-1f3fb.png
new file mode 100644
index 0000000000..316fa50aaa
Binary files /dev/null and b/img-microsoft-64/1f926-1f3fb.png differ
diff --git a/img-microsoft-64/1f926-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f926-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..5e719b02b7
Binary files /dev/null and b/img-microsoft-64/1f926-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f926-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f926-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..02269f64af
Binary files /dev/null and b/img-microsoft-64/1f926-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f926-1f3fc.png b/img-microsoft-64/1f926-1f3fc.png
new file mode 100644
index 0000000000..79faa73357
Binary files /dev/null and b/img-microsoft-64/1f926-1f3fc.png differ
diff --git a/img-microsoft-64/1f926-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f926-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..c4334bac65
Binary files /dev/null and b/img-microsoft-64/1f926-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f926-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f926-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..cdb0128b3c
Binary files /dev/null and b/img-microsoft-64/1f926-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f926-1f3fd.png b/img-microsoft-64/1f926-1f3fd.png
new file mode 100644
index 0000000000..658d2f6ce7
Binary files /dev/null and b/img-microsoft-64/1f926-1f3fd.png differ
diff --git a/img-microsoft-64/1f926-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f926-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..264160f3ea
Binary files /dev/null and b/img-microsoft-64/1f926-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f926-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f926-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e06a3588f0
Binary files /dev/null and b/img-microsoft-64/1f926-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f926-1f3fe.png b/img-microsoft-64/1f926-1f3fe.png
new file mode 100644
index 0000000000..6460d40b4c
Binary files /dev/null and b/img-microsoft-64/1f926-1f3fe.png differ
diff --git a/img-microsoft-64/1f926-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f926-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..9ee7da162c
Binary files /dev/null and b/img-microsoft-64/1f926-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f926-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f926-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..dd63e8d0a8
Binary files /dev/null and b/img-microsoft-64/1f926-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f926-1f3ff.png b/img-microsoft-64/1f926-1f3ff.png
new file mode 100644
index 0000000000..95fafa7b86
Binary files /dev/null and b/img-microsoft-64/1f926-1f3ff.png differ
diff --git a/img-microsoft-64/1f926-200d-2640-fe0f.png b/img-microsoft-64/1f926-200d-2640-fe0f.png
new file mode 100644
index 0000000000..ae6469803d
Binary files /dev/null and b/img-microsoft-64/1f926-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f926-200d-2642-fe0f.png b/img-microsoft-64/1f926-200d-2642-fe0f.png
new file mode 100644
index 0000000000..955f0cdac3
Binary files /dev/null and b/img-microsoft-64/1f926-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f926.png b/img-microsoft-64/1f926.png
new file mode 100644
index 0000000000..251eb25694
Binary files /dev/null and b/img-microsoft-64/1f926.png differ
diff --git a/img-microsoft-64/1f927.png b/img-microsoft-64/1f927.png
new file mode 100644
index 0000000000..33ba3623bc
Binary files /dev/null and b/img-microsoft-64/1f927.png differ
diff --git a/img-microsoft-64/1f928.png b/img-microsoft-64/1f928.png
new file mode 100644
index 0000000000..6c412411dc
Binary files /dev/null and b/img-microsoft-64/1f928.png differ
diff --git a/img-microsoft-64/1f929.png b/img-microsoft-64/1f929.png
new file mode 100644
index 0000000000..9ea9a05fe0
Binary files /dev/null and b/img-microsoft-64/1f929.png differ
diff --git a/img-microsoft-64/1f92a.png b/img-microsoft-64/1f92a.png
new file mode 100644
index 0000000000..3a78c67fa0
Binary files /dev/null and b/img-microsoft-64/1f92a.png differ
diff --git a/img-microsoft-64/1f92b.png b/img-microsoft-64/1f92b.png
new file mode 100644
index 0000000000..1d42f9218b
Binary files /dev/null and b/img-microsoft-64/1f92b.png differ
diff --git a/img-microsoft-64/1f92c.png b/img-microsoft-64/1f92c.png
new file mode 100644
index 0000000000..062b443847
Binary files /dev/null and b/img-microsoft-64/1f92c.png differ
diff --git a/img-microsoft-64/1f92d.png b/img-microsoft-64/1f92d.png
new file mode 100644
index 0000000000..7ede42e145
Binary files /dev/null and b/img-microsoft-64/1f92d.png differ
diff --git a/img-microsoft-64/1f92e.png b/img-microsoft-64/1f92e.png
new file mode 100644
index 0000000000..d677d06a80
Binary files /dev/null and b/img-microsoft-64/1f92e.png differ
diff --git a/img-microsoft-64/1f92f.png b/img-microsoft-64/1f92f.png
new file mode 100644
index 0000000000..b07a89bdc7
Binary files /dev/null and b/img-microsoft-64/1f92f.png differ
diff --git a/img-microsoft-64/1f930-1f3fb.png b/img-microsoft-64/1f930-1f3fb.png
new file mode 100644
index 0000000000..c0859e011d
Binary files /dev/null and b/img-microsoft-64/1f930-1f3fb.png differ
diff --git a/img-microsoft-64/1f930-1f3fc.png b/img-microsoft-64/1f930-1f3fc.png
new file mode 100644
index 0000000000..2fed34eb60
Binary files /dev/null and b/img-microsoft-64/1f930-1f3fc.png differ
diff --git a/img-microsoft-64/1f930-1f3fd.png b/img-microsoft-64/1f930-1f3fd.png
new file mode 100644
index 0000000000..276b824cef
Binary files /dev/null and b/img-microsoft-64/1f930-1f3fd.png differ
diff --git a/img-microsoft-64/1f930-1f3fe.png b/img-microsoft-64/1f930-1f3fe.png
new file mode 100644
index 0000000000..81c755f541
Binary files /dev/null and b/img-microsoft-64/1f930-1f3fe.png differ
diff --git a/img-microsoft-64/1f930-1f3ff.png b/img-microsoft-64/1f930-1f3ff.png
new file mode 100644
index 0000000000..2a210eb3bb
Binary files /dev/null and b/img-microsoft-64/1f930-1f3ff.png differ
diff --git a/img-microsoft-64/1f930.png b/img-microsoft-64/1f930.png
new file mode 100644
index 0000000000..9b94104c14
Binary files /dev/null and b/img-microsoft-64/1f930.png differ
diff --git a/img-microsoft-64/1f931-1f3fb.png b/img-microsoft-64/1f931-1f3fb.png
new file mode 100644
index 0000000000..aa38c18c46
Binary files /dev/null and b/img-microsoft-64/1f931-1f3fb.png differ
diff --git a/img-microsoft-64/1f931-1f3fc.png b/img-microsoft-64/1f931-1f3fc.png
new file mode 100644
index 0000000000..ee1c5b6a67
Binary files /dev/null and b/img-microsoft-64/1f931-1f3fc.png differ
diff --git a/img-microsoft-64/1f931-1f3fd.png b/img-microsoft-64/1f931-1f3fd.png
new file mode 100644
index 0000000000..e67b44433b
Binary files /dev/null and b/img-microsoft-64/1f931-1f3fd.png differ
diff --git a/img-microsoft-64/1f931-1f3fe.png b/img-microsoft-64/1f931-1f3fe.png
new file mode 100644
index 0000000000..9278253693
Binary files /dev/null and b/img-microsoft-64/1f931-1f3fe.png differ
diff --git a/img-microsoft-64/1f931-1f3ff.png b/img-microsoft-64/1f931-1f3ff.png
new file mode 100644
index 0000000000..205b4785a7
Binary files /dev/null and b/img-microsoft-64/1f931-1f3ff.png differ
diff --git a/img-microsoft-64/1f931.png b/img-microsoft-64/1f931.png
new file mode 100644
index 0000000000..0e23e3d93d
Binary files /dev/null and b/img-microsoft-64/1f931.png differ
diff --git a/img-microsoft-64/1f932-1f3fb.png b/img-microsoft-64/1f932-1f3fb.png
new file mode 100644
index 0000000000..4aae21d3e4
Binary files /dev/null and b/img-microsoft-64/1f932-1f3fb.png differ
diff --git a/img-microsoft-64/1f932-1f3fc.png b/img-microsoft-64/1f932-1f3fc.png
new file mode 100644
index 0000000000..1e7520596a
Binary files /dev/null and b/img-microsoft-64/1f932-1f3fc.png differ
diff --git a/img-microsoft-64/1f932-1f3fd.png b/img-microsoft-64/1f932-1f3fd.png
new file mode 100644
index 0000000000..d770cbcc51
Binary files /dev/null and b/img-microsoft-64/1f932-1f3fd.png differ
diff --git a/img-microsoft-64/1f932-1f3fe.png b/img-microsoft-64/1f932-1f3fe.png
new file mode 100644
index 0000000000..927c5323bc
Binary files /dev/null and b/img-microsoft-64/1f932-1f3fe.png differ
diff --git a/img-microsoft-64/1f932-1f3ff.png b/img-microsoft-64/1f932-1f3ff.png
new file mode 100644
index 0000000000..a4f0a1a2d3
Binary files /dev/null and b/img-microsoft-64/1f932-1f3ff.png differ
diff --git a/img-microsoft-64/1f932.png b/img-microsoft-64/1f932.png
new file mode 100644
index 0000000000..014c6a4846
Binary files /dev/null and b/img-microsoft-64/1f932.png differ
diff --git a/img-microsoft-64/1f933-1f3fb.png b/img-microsoft-64/1f933-1f3fb.png
new file mode 100644
index 0000000000..c12164a695
Binary files /dev/null and b/img-microsoft-64/1f933-1f3fb.png differ
diff --git a/img-microsoft-64/1f933-1f3fc.png b/img-microsoft-64/1f933-1f3fc.png
new file mode 100644
index 0000000000..ebf621f014
Binary files /dev/null and b/img-microsoft-64/1f933-1f3fc.png differ
diff --git a/img-microsoft-64/1f933-1f3fd.png b/img-microsoft-64/1f933-1f3fd.png
new file mode 100644
index 0000000000..468b71f1ff
Binary files /dev/null and b/img-microsoft-64/1f933-1f3fd.png differ
diff --git a/img-microsoft-64/1f933-1f3fe.png b/img-microsoft-64/1f933-1f3fe.png
new file mode 100644
index 0000000000..b6d40fb651
Binary files /dev/null and b/img-microsoft-64/1f933-1f3fe.png differ
diff --git a/img-microsoft-64/1f933-1f3ff.png b/img-microsoft-64/1f933-1f3ff.png
new file mode 100644
index 0000000000..00f5a9068b
Binary files /dev/null and b/img-microsoft-64/1f933-1f3ff.png differ
diff --git a/img-microsoft-64/1f933.png b/img-microsoft-64/1f933.png
new file mode 100644
index 0000000000..60276c5645
Binary files /dev/null and b/img-microsoft-64/1f933.png differ
diff --git a/img-microsoft-64/1f934-1f3fb.png b/img-microsoft-64/1f934-1f3fb.png
new file mode 100644
index 0000000000..e3fc82bbb9
Binary files /dev/null and b/img-microsoft-64/1f934-1f3fb.png differ
diff --git a/img-microsoft-64/1f934-1f3fc.png b/img-microsoft-64/1f934-1f3fc.png
new file mode 100644
index 0000000000..5a226dc56d
Binary files /dev/null and b/img-microsoft-64/1f934-1f3fc.png differ
diff --git a/img-microsoft-64/1f934-1f3fd.png b/img-microsoft-64/1f934-1f3fd.png
new file mode 100644
index 0000000000..846bffbe31
Binary files /dev/null and b/img-microsoft-64/1f934-1f3fd.png differ
diff --git a/img-microsoft-64/1f934-1f3fe.png b/img-microsoft-64/1f934-1f3fe.png
new file mode 100644
index 0000000000..c7d57ee55c
Binary files /dev/null and b/img-microsoft-64/1f934-1f3fe.png differ
diff --git a/img-microsoft-64/1f934-1f3ff.png b/img-microsoft-64/1f934-1f3ff.png
new file mode 100644
index 0000000000..756de4d660
Binary files /dev/null and b/img-microsoft-64/1f934-1f3ff.png differ
diff --git a/img-microsoft-64/1f934.png b/img-microsoft-64/1f934.png
new file mode 100644
index 0000000000..0036d1745b
Binary files /dev/null and b/img-microsoft-64/1f934.png differ
diff --git a/img-microsoft-64/1f935-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f935-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..5df69c8cf5
Binary files /dev/null and b/img-microsoft-64/1f935-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f935-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f935-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e5685ffd77
Binary files /dev/null and b/img-microsoft-64/1f935-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f935-1f3fb.png b/img-microsoft-64/1f935-1f3fb.png
new file mode 100644
index 0000000000..ce7edec9f6
Binary files /dev/null and b/img-microsoft-64/1f935-1f3fb.png differ
diff --git a/img-microsoft-64/1f935-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f935-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..b1041a6c75
Binary files /dev/null and b/img-microsoft-64/1f935-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f935-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f935-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..1b6c34fb6a
Binary files /dev/null and b/img-microsoft-64/1f935-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f935-1f3fc.png b/img-microsoft-64/1f935-1f3fc.png
new file mode 100644
index 0000000000..2b0ef88423
Binary files /dev/null and b/img-microsoft-64/1f935-1f3fc.png differ
diff --git a/img-microsoft-64/1f935-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f935-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..f326db5958
Binary files /dev/null and b/img-microsoft-64/1f935-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f935-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f935-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..852940dbfc
Binary files /dev/null and b/img-microsoft-64/1f935-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f935-1f3fd.png b/img-microsoft-64/1f935-1f3fd.png
new file mode 100644
index 0000000000..1036e48887
Binary files /dev/null and b/img-microsoft-64/1f935-1f3fd.png differ
diff --git a/img-microsoft-64/1f935-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f935-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..60b8c2ae6c
Binary files /dev/null and b/img-microsoft-64/1f935-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f935-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f935-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..535715757c
Binary files /dev/null and b/img-microsoft-64/1f935-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f935-1f3fe.png b/img-microsoft-64/1f935-1f3fe.png
new file mode 100644
index 0000000000..9012ea14ce
Binary files /dev/null and b/img-microsoft-64/1f935-1f3fe.png differ
diff --git a/img-microsoft-64/1f935-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f935-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..8f431b56f5
Binary files /dev/null and b/img-microsoft-64/1f935-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f935-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f935-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..acdcd6051b
Binary files /dev/null and b/img-microsoft-64/1f935-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f935-1f3ff.png b/img-microsoft-64/1f935-1f3ff.png
new file mode 100644
index 0000000000..7375da5bb0
Binary files /dev/null and b/img-microsoft-64/1f935-1f3ff.png differ
diff --git a/img-microsoft-64/1f935-200d-2640-fe0f.png b/img-microsoft-64/1f935-200d-2640-fe0f.png
new file mode 100644
index 0000000000..f548ebbac5
Binary files /dev/null and b/img-microsoft-64/1f935-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f935-200d-2642-fe0f.png b/img-microsoft-64/1f935-200d-2642-fe0f.png
new file mode 100644
index 0000000000..c1bbbec94b
Binary files /dev/null and b/img-microsoft-64/1f935-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f935.png b/img-microsoft-64/1f935.png
new file mode 100644
index 0000000000..2ec3f5fa34
Binary files /dev/null and b/img-microsoft-64/1f935.png differ
diff --git a/img-microsoft-64/1f936-1f3fb.png b/img-microsoft-64/1f936-1f3fb.png
new file mode 100644
index 0000000000..936cd0d7c3
Binary files /dev/null and b/img-microsoft-64/1f936-1f3fb.png differ
diff --git a/img-microsoft-64/1f936-1f3fc.png b/img-microsoft-64/1f936-1f3fc.png
new file mode 100644
index 0000000000..013bb4d6e9
Binary files /dev/null and b/img-microsoft-64/1f936-1f3fc.png differ
diff --git a/img-microsoft-64/1f936-1f3fd.png b/img-microsoft-64/1f936-1f3fd.png
new file mode 100644
index 0000000000..0ebf5a89a8
Binary files /dev/null and b/img-microsoft-64/1f936-1f3fd.png differ
diff --git a/img-microsoft-64/1f936-1f3fe.png b/img-microsoft-64/1f936-1f3fe.png
new file mode 100644
index 0000000000..4296759433
Binary files /dev/null and b/img-microsoft-64/1f936-1f3fe.png differ
diff --git a/img-microsoft-64/1f936-1f3ff.png b/img-microsoft-64/1f936-1f3ff.png
new file mode 100644
index 0000000000..7dffd3626e
Binary files /dev/null and b/img-microsoft-64/1f936-1f3ff.png differ
diff --git a/img-microsoft-64/1f936.png b/img-microsoft-64/1f936.png
new file mode 100644
index 0000000000..1d24c5af5c
Binary files /dev/null and b/img-microsoft-64/1f936.png differ
diff --git a/img-microsoft-64/1f937-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f937-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..2152c6b13d
Binary files /dev/null and b/img-microsoft-64/1f937-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f937-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f937-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..4fd41f6df8
Binary files /dev/null and b/img-microsoft-64/1f937-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f937-1f3fb.png b/img-microsoft-64/1f937-1f3fb.png
new file mode 100644
index 0000000000..0dba630d27
Binary files /dev/null and b/img-microsoft-64/1f937-1f3fb.png differ
diff --git a/img-microsoft-64/1f937-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f937-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..b6efcad0f9
Binary files /dev/null and b/img-microsoft-64/1f937-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f937-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f937-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..b6845b6466
Binary files /dev/null and b/img-microsoft-64/1f937-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f937-1f3fc.png b/img-microsoft-64/1f937-1f3fc.png
new file mode 100644
index 0000000000..313ce10edd
Binary files /dev/null and b/img-microsoft-64/1f937-1f3fc.png differ
diff --git a/img-microsoft-64/1f937-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f937-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..7bcf73e168
Binary files /dev/null and b/img-microsoft-64/1f937-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f937-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f937-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..373f14e29c
Binary files /dev/null and b/img-microsoft-64/1f937-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f937-1f3fd.png b/img-microsoft-64/1f937-1f3fd.png
new file mode 100644
index 0000000000..415aea3b83
Binary files /dev/null and b/img-microsoft-64/1f937-1f3fd.png differ
diff --git a/img-microsoft-64/1f937-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f937-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..85c1829a31
Binary files /dev/null and b/img-microsoft-64/1f937-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f937-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f937-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a3f4cbbde5
Binary files /dev/null and b/img-microsoft-64/1f937-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f937-1f3fe.png b/img-microsoft-64/1f937-1f3fe.png
new file mode 100644
index 0000000000..ed5fc18060
Binary files /dev/null and b/img-microsoft-64/1f937-1f3fe.png differ
diff --git a/img-microsoft-64/1f937-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f937-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..7cdcf1a36a
Binary files /dev/null and b/img-microsoft-64/1f937-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f937-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f937-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..3a7259f320
Binary files /dev/null and b/img-microsoft-64/1f937-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f937-1f3ff.png b/img-microsoft-64/1f937-1f3ff.png
new file mode 100644
index 0000000000..8c30d28d1d
Binary files /dev/null and b/img-microsoft-64/1f937-1f3ff.png differ
diff --git a/img-microsoft-64/1f937-200d-2640-fe0f.png b/img-microsoft-64/1f937-200d-2640-fe0f.png
new file mode 100644
index 0000000000..9583ad9717
Binary files /dev/null and b/img-microsoft-64/1f937-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f937-200d-2642-fe0f.png b/img-microsoft-64/1f937-200d-2642-fe0f.png
new file mode 100644
index 0000000000..86a3577286
Binary files /dev/null and b/img-microsoft-64/1f937-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f937.png b/img-microsoft-64/1f937.png
new file mode 100644
index 0000000000..9ab51db90b
Binary files /dev/null and b/img-microsoft-64/1f937.png differ
diff --git a/img-microsoft-64/1f938-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f938-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..6dfeebbcef
Binary files /dev/null and b/img-microsoft-64/1f938-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f938-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f938-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..6782ac5871
Binary files /dev/null and b/img-microsoft-64/1f938-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f938-1f3fb.png b/img-microsoft-64/1f938-1f3fb.png
new file mode 100644
index 0000000000..d5645acf24
Binary files /dev/null and b/img-microsoft-64/1f938-1f3fb.png differ
diff --git a/img-microsoft-64/1f938-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f938-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..a4ddf1eb9a
Binary files /dev/null and b/img-microsoft-64/1f938-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f938-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f938-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..1182f34e15
Binary files /dev/null and b/img-microsoft-64/1f938-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f938-1f3fc.png b/img-microsoft-64/1f938-1f3fc.png
new file mode 100644
index 0000000000..a912f9503d
Binary files /dev/null and b/img-microsoft-64/1f938-1f3fc.png differ
diff --git a/img-microsoft-64/1f938-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f938-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..3f07aa7a7d
Binary files /dev/null and b/img-microsoft-64/1f938-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f938-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f938-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e9b9e14fab
Binary files /dev/null and b/img-microsoft-64/1f938-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f938-1f3fd.png b/img-microsoft-64/1f938-1f3fd.png
new file mode 100644
index 0000000000..b614848b2c
Binary files /dev/null and b/img-microsoft-64/1f938-1f3fd.png differ
diff --git a/img-microsoft-64/1f938-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f938-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..b0e4bcbba8
Binary files /dev/null and b/img-microsoft-64/1f938-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f938-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f938-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..9a4012d751
Binary files /dev/null and b/img-microsoft-64/1f938-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f938-1f3fe.png b/img-microsoft-64/1f938-1f3fe.png
new file mode 100644
index 0000000000..20ddc06296
Binary files /dev/null and b/img-microsoft-64/1f938-1f3fe.png differ
diff --git a/img-microsoft-64/1f938-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f938-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..6d01a77b7f
Binary files /dev/null and b/img-microsoft-64/1f938-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f938-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f938-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..635b470cc7
Binary files /dev/null and b/img-microsoft-64/1f938-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f938-1f3ff.png b/img-microsoft-64/1f938-1f3ff.png
new file mode 100644
index 0000000000..2bbc641c7e
Binary files /dev/null and b/img-microsoft-64/1f938-1f3ff.png differ
diff --git a/img-microsoft-64/1f938-200d-2640-fe0f.png b/img-microsoft-64/1f938-200d-2640-fe0f.png
new file mode 100644
index 0000000000..582b9dffb3
Binary files /dev/null and b/img-microsoft-64/1f938-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f938-200d-2642-fe0f.png b/img-microsoft-64/1f938-200d-2642-fe0f.png
new file mode 100644
index 0000000000..1bd2b67511
Binary files /dev/null and b/img-microsoft-64/1f938-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f938.png b/img-microsoft-64/1f938.png
new file mode 100644
index 0000000000..4fdf5da93f
Binary files /dev/null and b/img-microsoft-64/1f938.png differ
diff --git a/img-microsoft-64/1f939-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f939-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..9cd27a72e7
Binary files /dev/null and b/img-microsoft-64/1f939-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f939-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f939-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..7ce04ff5aa
Binary files /dev/null and b/img-microsoft-64/1f939-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f939-1f3fb.png b/img-microsoft-64/1f939-1f3fb.png
new file mode 100644
index 0000000000..1010703393
Binary files /dev/null and b/img-microsoft-64/1f939-1f3fb.png differ
diff --git a/img-microsoft-64/1f939-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f939-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..a5f389b3d3
Binary files /dev/null and b/img-microsoft-64/1f939-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f939-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f939-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..b4337d65c5
Binary files /dev/null and b/img-microsoft-64/1f939-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f939-1f3fc.png b/img-microsoft-64/1f939-1f3fc.png
new file mode 100644
index 0000000000..4ced4a2928
Binary files /dev/null and b/img-microsoft-64/1f939-1f3fc.png differ
diff --git a/img-microsoft-64/1f939-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f939-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..92c42360c2
Binary files /dev/null and b/img-microsoft-64/1f939-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f939-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f939-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..cd5a3cb41c
Binary files /dev/null and b/img-microsoft-64/1f939-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f939-1f3fd.png b/img-microsoft-64/1f939-1f3fd.png
new file mode 100644
index 0000000000..96e1db9c85
Binary files /dev/null and b/img-microsoft-64/1f939-1f3fd.png differ
diff --git a/img-microsoft-64/1f939-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f939-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..f28108343d
Binary files /dev/null and b/img-microsoft-64/1f939-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f939-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f939-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..8a199337cc
Binary files /dev/null and b/img-microsoft-64/1f939-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f939-1f3fe.png b/img-microsoft-64/1f939-1f3fe.png
new file mode 100644
index 0000000000..1934314dad
Binary files /dev/null and b/img-microsoft-64/1f939-1f3fe.png differ
diff --git a/img-microsoft-64/1f939-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f939-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..279508ed23
Binary files /dev/null and b/img-microsoft-64/1f939-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f939-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f939-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..7a93199f6c
Binary files /dev/null and b/img-microsoft-64/1f939-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f939-1f3ff.png b/img-microsoft-64/1f939-1f3ff.png
new file mode 100644
index 0000000000..16b70ec40b
Binary files /dev/null and b/img-microsoft-64/1f939-1f3ff.png differ
diff --git a/img-microsoft-64/1f939-200d-2640-fe0f.png b/img-microsoft-64/1f939-200d-2640-fe0f.png
new file mode 100644
index 0000000000..f3e0cf94b0
Binary files /dev/null and b/img-microsoft-64/1f939-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f939-200d-2642-fe0f.png b/img-microsoft-64/1f939-200d-2642-fe0f.png
new file mode 100644
index 0000000000..72a120411a
Binary files /dev/null and b/img-microsoft-64/1f939-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f939.png b/img-microsoft-64/1f939.png
new file mode 100644
index 0000000000..09207ddf64
Binary files /dev/null and b/img-microsoft-64/1f939.png differ
diff --git a/img-microsoft-64/1f93a.png b/img-microsoft-64/1f93a.png
new file mode 100644
index 0000000000..942041e82d
Binary files /dev/null and b/img-microsoft-64/1f93a.png differ
diff --git a/img-microsoft-64/1f93c-200d-2640-fe0f.png b/img-microsoft-64/1f93c-200d-2640-fe0f.png
new file mode 100644
index 0000000000..3acbee136c
Binary files /dev/null and b/img-microsoft-64/1f93c-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f93c-200d-2642-fe0f.png b/img-microsoft-64/1f93c-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e914297589
Binary files /dev/null and b/img-microsoft-64/1f93c-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f93c.png b/img-microsoft-64/1f93c.png
new file mode 100644
index 0000000000..a4ac5d8d53
Binary files /dev/null and b/img-microsoft-64/1f93c.png differ
diff --git a/img-microsoft-64/1f93d-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f93d-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..676851033b
Binary files /dev/null and b/img-microsoft-64/1f93d-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f93d-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f93d-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..2863386470
Binary files /dev/null and b/img-microsoft-64/1f93d-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f93d-1f3fb.png b/img-microsoft-64/1f93d-1f3fb.png
new file mode 100644
index 0000000000..8bf00821be
Binary files /dev/null and b/img-microsoft-64/1f93d-1f3fb.png differ
diff --git a/img-microsoft-64/1f93d-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f93d-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..ebf02402e5
Binary files /dev/null and b/img-microsoft-64/1f93d-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f93d-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f93d-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e8214867a4
Binary files /dev/null and b/img-microsoft-64/1f93d-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f93d-1f3fc.png b/img-microsoft-64/1f93d-1f3fc.png
new file mode 100644
index 0000000000..99e019fc33
Binary files /dev/null and b/img-microsoft-64/1f93d-1f3fc.png differ
diff --git a/img-microsoft-64/1f93d-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f93d-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..cbce93c88c
Binary files /dev/null and b/img-microsoft-64/1f93d-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f93d-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f93d-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..69137f9781
Binary files /dev/null and b/img-microsoft-64/1f93d-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f93d-1f3fd.png b/img-microsoft-64/1f93d-1f3fd.png
new file mode 100644
index 0000000000..cf610ea8eb
Binary files /dev/null and b/img-microsoft-64/1f93d-1f3fd.png differ
diff --git a/img-microsoft-64/1f93d-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f93d-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..f2d46b135d
Binary files /dev/null and b/img-microsoft-64/1f93d-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f93d-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f93d-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d6ed577e0a
Binary files /dev/null and b/img-microsoft-64/1f93d-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f93d-1f3fe.png b/img-microsoft-64/1f93d-1f3fe.png
new file mode 100644
index 0000000000..d27133a651
Binary files /dev/null and b/img-microsoft-64/1f93d-1f3fe.png differ
diff --git a/img-microsoft-64/1f93d-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f93d-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..c95630c75f
Binary files /dev/null and b/img-microsoft-64/1f93d-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f93d-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f93d-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..5fe52876f7
Binary files /dev/null and b/img-microsoft-64/1f93d-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f93d-1f3ff.png b/img-microsoft-64/1f93d-1f3ff.png
new file mode 100644
index 0000000000..434880fb41
Binary files /dev/null and b/img-microsoft-64/1f93d-1f3ff.png differ
diff --git a/img-microsoft-64/1f93d-200d-2640-fe0f.png b/img-microsoft-64/1f93d-200d-2640-fe0f.png
new file mode 100644
index 0000000000..640f4ebe25
Binary files /dev/null and b/img-microsoft-64/1f93d-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f93d-200d-2642-fe0f.png b/img-microsoft-64/1f93d-200d-2642-fe0f.png
new file mode 100644
index 0000000000..2d4dd9e0f4
Binary files /dev/null and b/img-microsoft-64/1f93d-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f93d.png b/img-microsoft-64/1f93d.png
new file mode 100644
index 0000000000..27ca7320e1
Binary files /dev/null and b/img-microsoft-64/1f93d.png differ
diff --git a/img-microsoft-64/1f93e-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f93e-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..a3be88b3d5
Binary files /dev/null and b/img-microsoft-64/1f93e-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f93e-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f93e-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..0e2090d4cc
Binary files /dev/null and b/img-microsoft-64/1f93e-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f93e-1f3fb.png b/img-microsoft-64/1f93e-1f3fb.png
new file mode 100644
index 0000000000..942e5686db
Binary files /dev/null and b/img-microsoft-64/1f93e-1f3fb.png differ
diff --git a/img-microsoft-64/1f93e-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f93e-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..c70273c938
Binary files /dev/null and b/img-microsoft-64/1f93e-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f93e-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f93e-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..674ccb2ef4
Binary files /dev/null and b/img-microsoft-64/1f93e-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f93e-1f3fc.png b/img-microsoft-64/1f93e-1f3fc.png
new file mode 100644
index 0000000000..ee0f9b1735
Binary files /dev/null and b/img-microsoft-64/1f93e-1f3fc.png differ
diff --git a/img-microsoft-64/1f93e-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f93e-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..4393a8a244
Binary files /dev/null and b/img-microsoft-64/1f93e-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f93e-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f93e-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..faf4c64b3c
Binary files /dev/null and b/img-microsoft-64/1f93e-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f93e-1f3fd.png b/img-microsoft-64/1f93e-1f3fd.png
new file mode 100644
index 0000000000..a353b743c1
Binary files /dev/null and b/img-microsoft-64/1f93e-1f3fd.png differ
diff --git a/img-microsoft-64/1f93e-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f93e-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..4234a7e603
Binary files /dev/null and b/img-microsoft-64/1f93e-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f93e-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f93e-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..afc5a18aa6
Binary files /dev/null and b/img-microsoft-64/1f93e-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f93e-1f3fe.png b/img-microsoft-64/1f93e-1f3fe.png
new file mode 100644
index 0000000000..ae534e8826
Binary files /dev/null and b/img-microsoft-64/1f93e-1f3fe.png differ
diff --git a/img-microsoft-64/1f93e-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f93e-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..03b221dec3
Binary files /dev/null and b/img-microsoft-64/1f93e-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f93e-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f93e-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..5ecda7f7fb
Binary files /dev/null and b/img-microsoft-64/1f93e-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f93e-1f3ff.png b/img-microsoft-64/1f93e-1f3ff.png
new file mode 100644
index 0000000000..b0657703fe
Binary files /dev/null and b/img-microsoft-64/1f93e-1f3ff.png differ
diff --git a/img-microsoft-64/1f93e-200d-2640-fe0f.png b/img-microsoft-64/1f93e-200d-2640-fe0f.png
new file mode 100644
index 0000000000..21a3e164c2
Binary files /dev/null and b/img-microsoft-64/1f93e-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f93e-200d-2642-fe0f.png b/img-microsoft-64/1f93e-200d-2642-fe0f.png
new file mode 100644
index 0000000000..01e9304988
Binary files /dev/null and b/img-microsoft-64/1f93e-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f93e.png b/img-microsoft-64/1f93e.png
new file mode 100644
index 0000000000..52ef1b223c
Binary files /dev/null and b/img-microsoft-64/1f93e.png differ
diff --git a/img-microsoft-64/1f93f.png b/img-microsoft-64/1f93f.png
new file mode 100644
index 0000000000..ae13b6f8e3
Binary files /dev/null and b/img-microsoft-64/1f93f.png differ
diff --git a/img-microsoft-64/1f940.png b/img-microsoft-64/1f940.png
new file mode 100644
index 0000000000..dbf3181927
Binary files /dev/null and b/img-microsoft-64/1f940.png differ
diff --git a/img-microsoft-64/1f941.png b/img-microsoft-64/1f941.png
new file mode 100644
index 0000000000..b6e6776e83
Binary files /dev/null and b/img-microsoft-64/1f941.png differ
diff --git a/img-microsoft-64/1f942.png b/img-microsoft-64/1f942.png
new file mode 100644
index 0000000000..833dfde22a
Binary files /dev/null and b/img-microsoft-64/1f942.png differ
diff --git a/img-microsoft-64/1f943.png b/img-microsoft-64/1f943.png
new file mode 100644
index 0000000000..c65434f0dd
Binary files /dev/null and b/img-microsoft-64/1f943.png differ
diff --git a/img-microsoft-64/1f944.png b/img-microsoft-64/1f944.png
new file mode 100644
index 0000000000..66a04355b1
Binary files /dev/null and b/img-microsoft-64/1f944.png differ
diff --git a/img-microsoft-64/1f945.png b/img-microsoft-64/1f945.png
new file mode 100644
index 0000000000..5992d83343
Binary files /dev/null and b/img-microsoft-64/1f945.png differ
diff --git a/img-microsoft-64/1f947.png b/img-microsoft-64/1f947.png
new file mode 100644
index 0000000000..7c14e84972
Binary files /dev/null and b/img-microsoft-64/1f947.png differ
diff --git a/img-microsoft-64/1f948.png b/img-microsoft-64/1f948.png
new file mode 100644
index 0000000000..52bcae2a4a
Binary files /dev/null and b/img-microsoft-64/1f948.png differ
diff --git a/img-microsoft-64/1f949.png b/img-microsoft-64/1f949.png
new file mode 100644
index 0000000000..06ddaa3395
Binary files /dev/null and b/img-microsoft-64/1f949.png differ
diff --git a/img-microsoft-64/1f94a.png b/img-microsoft-64/1f94a.png
new file mode 100644
index 0000000000..8a8fc46675
Binary files /dev/null and b/img-microsoft-64/1f94a.png differ
diff --git a/img-microsoft-64/1f94b.png b/img-microsoft-64/1f94b.png
new file mode 100644
index 0000000000..97b4f8a883
Binary files /dev/null and b/img-microsoft-64/1f94b.png differ
diff --git a/img-microsoft-64/1f94c.png b/img-microsoft-64/1f94c.png
new file mode 100644
index 0000000000..8f650f18f4
Binary files /dev/null and b/img-microsoft-64/1f94c.png differ
diff --git a/img-microsoft-64/1f94d.png b/img-microsoft-64/1f94d.png
new file mode 100644
index 0000000000..88a18c3d84
Binary files /dev/null and b/img-microsoft-64/1f94d.png differ
diff --git a/img-microsoft-64/1f94e.png b/img-microsoft-64/1f94e.png
new file mode 100644
index 0000000000..5756474d01
Binary files /dev/null and b/img-microsoft-64/1f94e.png differ
diff --git a/img-microsoft-64/1f94f.png b/img-microsoft-64/1f94f.png
new file mode 100644
index 0000000000..902ef3e52c
Binary files /dev/null and b/img-microsoft-64/1f94f.png differ
diff --git a/img-microsoft-64/1f950.png b/img-microsoft-64/1f950.png
new file mode 100644
index 0000000000..118b2981ad
Binary files /dev/null and b/img-microsoft-64/1f950.png differ
diff --git a/img-microsoft-64/1f951.png b/img-microsoft-64/1f951.png
new file mode 100644
index 0000000000..83011cf764
Binary files /dev/null and b/img-microsoft-64/1f951.png differ
diff --git a/img-microsoft-64/1f952.png b/img-microsoft-64/1f952.png
new file mode 100644
index 0000000000..12b39a1b57
Binary files /dev/null and b/img-microsoft-64/1f952.png differ
diff --git a/img-microsoft-64/1f953.png b/img-microsoft-64/1f953.png
new file mode 100644
index 0000000000..7d1d3f1e74
Binary files /dev/null and b/img-microsoft-64/1f953.png differ
diff --git a/img-microsoft-64/1f954.png b/img-microsoft-64/1f954.png
new file mode 100644
index 0000000000..9721ffed19
Binary files /dev/null and b/img-microsoft-64/1f954.png differ
diff --git a/img-microsoft-64/1f955.png b/img-microsoft-64/1f955.png
new file mode 100644
index 0000000000..c589a8d7da
Binary files /dev/null and b/img-microsoft-64/1f955.png differ
diff --git a/img-microsoft-64/1f956.png b/img-microsoft-64/1f956.png
new file mode 100644
index 0000000000..27028991d1
Binary files /dev/null and b/img-microsoft-64/1f956.png differ
diff --git a/img-microsoft-64/1f957.png b/img-microsoft-64/1f957.png
new file mode 100644
index 0000000000..d90f722bca
Binary files /dev/null and b/img-microsoft-64/1f957.png differ
diff --git a/img-microsoft-64/1f958.png b/img-microsoft-64/1f958.png
new file mode 100644
index 0000000000..9ed853bf46
Binary files /dev/null and b/img-microsoft-64/1f958.png differ
diff --git a/img-microsoft-64/1f959.png b/img-microsoft-64/1f959.png
new file mode 100644
index 0000000000..f2c570675d
Binary files /dev/null and b/img-microsoft-64/1f959.png differ
diff --git a/img-microsoft-64/1f95a.png b/img-microsoft-64/1f95a.png
new file mode 100644
index 0000000000..2ee5d004ec
Binary files /dev/null and b/img-microsoft-64/1f95a.png differ
diff --git a/img-microsoft-64/1f95b.png b/img-microsoft-64/1f95b.png
new file mode 100644
index 0000000000..973e6d33fa
Binary files /dev/null and b/img-microsoft-64/1f95b.png differ
diff --git a/img-microsoft-64/1f95c.png b/img-microsoft-64/1f95c.png
new file mode 100644
index 0000000000..5b940b5c92
Binary files /dev/null and b/img-microsoft-64/1f95c.png differ
diff --git a/img-microsoft-64/1f95d.png b/img-microsoft-64/1f95d.png
new file mode 100644
index 0000000000..e9769400f6
Binary files /dev/null and b/img-microsoft-64/1f95d.png differ
diff --git a/img-microsoft-64/1f95e.png b/img-microsoft-64/1f95e.png
new file mode 100644
index 0000000000..6ca8d035ed
Binary files /dev/null and b/img-microsoft-64/1f95e.png differ
diff --git a/img-microsoft-64/1f95f.png b/img-microsoft-64/1f95f.png
new file mode 100644
index 0000000000..652708a8bd
Binary files /dev/null and b/img-microsoft-64/1f95f.png differ
diff --git a/img-microsoft-64/1f960.png b/img-microsoft-64/1f960.png
new file mode 100644
index 0000000000..1e23ceb9dd
Binary files /dev/null and b/img-microsoft-64/1f960.png differ
diff --git a/img-microsoft-64/1f961.png b/img-microsoft-64/1f961.png
new file mode 100644
index 0000000000..91b9cbb0d9
Binary files /dev/null and b/img-microsoft-64/1f961.png differ
diff --git a/img-microsoft-64/1f962.png b/img-microsoft-64/1f962.png
new file mode 100644
index 0000000000..d72f86ff7c
Binary files /dev/null and b/img-microsoft-64/1f962.png differ
diff --git a/img-microsoft-64/1f963.png b/img-microsoft-64/1f963.png
new file mode 100644
index 0000000000..86b58ca878
Binary files /dev/null and b/img-microsoft-64/1f963.png differ
diff --git a/img-microsoft-64/1f964.png b/img-microsoft-64/1f964.png
new file mode 100644
index 0000000000..e09b0a1e71
Binary files /dev/null and b/img-microsoft-64/1f964.png differ
diff --git a/img-microsoft-64/1f965.png b/img-microsoft-64/1f965.png
new file mode 100644
index 0000000000..f813ac32a6
Binary files /dev/null and b/img-microsoft-64/1f965.png differ
diff --git a/img-microsoft-64/1f966.png b/img-microsoft-64/1f966.png
new file mode 100644
index 0000000000..030b667693
Binary files /dev/null and b/img-microsoft-64/1f966.png differ
diff --git a/img-microsoft-64/1f967.png b/img-microsoft-64/1f967.png
new file mode 100644
index 0000000000..86811502fa
Binary files /dev/null and b/img-microsoft-64/1f967.png differ
diff --git a/img-microsoft-64/1f968.png b/img-microsoft-64/1f968.png
new file mode 100644
index 0000000000..45ea09d299
Binary files /dev/null and b/img-microsoft-64/1f968.png differ
diff --git a/img-microsoft-64/1f969.png b/img-microsoft-64/1f969.png
new file mode 100644
index 0000000000..54c8b80846
Binary files /dev/null and b/img-microsoft-64/1f969.png differ
diff --git a/img-microsoft-64/1f96a.png b/img-microsoft-64/1f96a.png
new file mode 100644
index 0000000000..2254428ade
Binary files /dev/null and b/img-microsoft-64/1f96a.png differ
diff --git a/img-microsoft-64/1f96b.png b/img-microsoft-64/1f96b.png
new file mode 100644
index 0000000000..fb5c8d1338
Binary files /dev/null and b/img-microsoft-64/1f96b.png differ
diff --git a/img-microsoft-64/1f96c.png b/img-microsoft-64/1f96c.png
new file mode 100644
index 0000000000..0c3d03cbe7
Binary files /dev/null and b/img-microsoft-64/1f96c.png differ
diff --git a/img-microsoft-64/1f96d.png b/img-microsoft-64/1f96d.png
new file mode 100644
index 0000000000..76ed36e08d
Binary files /dev/null and b/img-microsoft-64/1f96d.png differ
diff --git a/img-microsoft-64/1f96e.png b/img-microsoft-64/1f96e.png
new file mode 100644
index 0000000000..544a28dfa4
Binary files /dev/null and b/img-microsoft-64/1f96e.png differ
diff --git a/img-microsoft-64/1f96f.png b/img-microsoft-64/1f96f.png
new file mode 100644
index 0000000000..04ff26ee1d
Binary files /dev/null and b/img-microsoft-64/1f96f.png differ
diff --git a/img-microsoft-64/1f970.png b/img-microsoft-64/1f970.png
new file mode 100644
index 0000000000..79d18d2a34
Binary files /dev/null and b/img-microsoft-64/1f970.png differ
diff --git a/img-microsoft-64/1f971.png b/img-microsoft-64/1f971.png
new file mode 100644
index 0000000000..f4fa08f9e4
Binary files /dev/null and b/img-microsoft-64/1f971.png differ
diff --git a/img-microsoft-64/1f972.png b/img-microsoft-64/1f972.png
new file mode 100644
index 0000000000..cdb8618f3b
Binary files /dev/null and b/img-microsoft-64/1f972.png differ
diff --git a/img-microsoft-64/1f973.png b/img-microsoft-64/1f973.png
new file mode 100644
index 0000000000..f09f5dd6a9
Binary files /dev/null and b/img-microsoft-64/1f973.png differ
diff --git a/img-microsoft-64/1f974.png b/img-microsoft-64/1f974.png
new file mode 100644
index 0000000000..d456b5bec0
Binary files /dev/null and b/img-microsoft-64/1f974.png differ
diff --git a/img-microsoft-64/1f975.png b/img-microsoft-64/1f975.png
new file mode 100644
index 0000000000..d0a0abc925
Binary files /dev/null and b/img-microsoft-64/1f975.png differ
diff --git a/img-microsoft-64/1f976.png b/img-microsoft-64/1f976.png
new file mode 100644
index 0000000000..a47fbccb58
Binary files /dev/null and b/img-microsoft-64/1f976.png differ
diff --git a/img-microsoft-64/1f977-1f3fb.png b/img-microsoft-64/1f977-1f3fb.png
new file mode 100644
index 0000000000..75899e232b
Binary files /dev/null and b/img-microsoft-64/1f977-1f3fb.png differ
diff --git a/img-microsoft-64/1f977-1f3fc.png b/img-microsoft-64/1f977-1f3fc.png
new file mode 100644
index 0000000000..b6159e73ef
Binary files /dev/null and b/img-microsoft-64/1f977-1f3fc.png differ
diff --git a/img-microsoft-64/1f977-1f3fd.png b/img-microsoft-64/1f977-1f3fd.png
new file mode 100644
index 0000000000..878267f433
Binary files /dev/null and b/img-microsoft-64/1f977-1f3fd.png differ
diff --git a/img-microsoft-64/1f977-1f3fe.png b/img-microsoft-64/1f977-1f3fe.png
new file mode 100644
index 0000000000..97874b6445
Binary files /dev/null and b/img-microsoft-64/1f977-1f3fe.png differ
diff --git a/img-microsoft-64/1f977-1f3ff.png b/img-microsoft-64/1f977-1f3ff.png
new file mode 100644
index 0000000000..b3915017c4
Binary files /dev/null and b/img-microsoft-64/1f977-1f3ff.png differ
diff --git a/img-microsoft-64/1f977.png b/img-microsoft-64/1f977.png
new file mode 100644
index 0000000000..5c72588162
Binary files /dev/null and b/img-microsoft-64/1f977.png differ
diff --git a/img-microsoft-64/1f978.png b/img-microsoft-64/1f978.png
new file mode 100644
index 0000000000..80aad79664
Binary files /dev/null and b/img-microsoft-64/1f978.png differ
diff --git a/img-microsoft-64/1f979.png b/img-microsoft-64/1f979.png
new file mode 100644
index 0000000000..8c1cfb23bf
Binary files /dev/null and b/img-microsoft-64/1f979.png differ
diff --git a/img-microsoft-64/1f97a.png b/img-microsoft-64/1f97a.png
new file mode 100644
index 0000000000..bbffce0129
Binary files /dev/null and b/img-microsoft-64/1f97a.png differ
diff --git a/img-microsoft-64/1f97b.png b/img-microsoft-64/1f97b.png
new file mode 100644
index 0000000000..ed3f71a512
Binary files /dev/null and b/img-microsoft-64/1f97b.png differ
diff --git a/img-microsoft-64/1f97c.png b/img-microsoft-64/1f97c.png
new file mode 100644
index 0000000000..4fc33d5fc1
Binary files /dev/null and b/img-microsoft-64/1f97c.png differ
diff --git a/img-microsoft-64/1f97d.png b/img-microsoft-64/1f97d.png
new file mode 100644
index 0000000000..3397a901d2
Binary files /dev/null and b/img-microsoft-64/1f97d.png differ
diff --git a/img-microsoft-64/1f97e.png b/img-microsoft-64/1f97e.png
new file mode 100644
index 0000000000..27329eea40
Binary files /dev/null and b/img-microsoft-64/1f97e.png differ
diff --git a/img-microsoft-64/1f97f.png b/img-microsoft-64/1f97f.png
new file mode 100644
index 0000000000..54d4be8308
Binary files /dev/null and b/img-microsoft-64/1f97f.png differ
diff --git a/img-microsoft-64/1f980.png b/img-microsoft-64/1f980.png
new file mode 100644
index 0000000000..76e284d8c5
Binary files /dev/null and b/img-microsoft-64/1f980.png differ
diff --git a/img-microsoft-64/1f981.png b/img-microsoft-64/1f981.png
new file mode 100644
index 0000000000..ecc164d218
Binary files /dev/null and b/img-microsoft-64/1f981.png differ
diff --git a/img-microsoft-64/1f982.png b/img-microsoft-64/1f982.png
new file mode 100644
index 0000000000..fbf6919c80
Binary files /dev/null and b/img-microsoft-64/1f982.png differ
diff --git a/img-microsoft-64/1f983.png b/img-microsoft-64/1f983.png
new file mode 100644
index 0000000000..e94cf19551
Binary files /dev/null and b/img-microsoft-64/1f983.png differ
diff --git a/img-microsoft-64/1f984.png b/img-microsoft-64/1f984.png
new file mode 100644
index 0000000000..9b1f7ca001
Binary files /dev/null and b/img-microsoft-64/1f984.png differ
diff --git a/img-microsoft-64/1f985.png b/img-microsoft-64/1f985.png
new file mode 100644
index 0000000000..a5c8cc6aae
Binary files /dev/null and b/img-microsoft-64/1f985.png differ
diff --git a/img-microsoft-64/1f986.png b/img-microsoft-64/1f986.png
new file mode 100644
index 0000000000..2232ee7750
Binary files /dev/null and b/img-microsoft-64/1f986.png differ
diff --git a/img-microsoft-64/1f987.png b/img-microsoft-64/1f987.png
new file mode 100644
index 0000000000..c6a052ea8e
Binary files /dev/null and b/img-microsoft-64/1f987.png differ
diff --git a/img-microsoft-64/1f988.png b/img-microsoft-64/1f988.png
new file mode 100644
index 0000000000..7f1cdccfa5
Binary files /dev/null and b/img-microsoft-64/1f988.png differ
diff --git a/img-microsoft-64/1f989.png b/img-microsoft-64/1f989.png
new file mode 100644
index 0000000000..82a843aa94
Binary files /dev/null and b/img-microsoft-64/1f989.png differ
diff --git a/img-microsoft-64/1f98a.png b/img-microsoft-64/1f98a.png
new file mode 100644
index 0000000000..ebef1ef2c7
Binary files /dev/null and b/img-microsoft-64/1f98a.png differ
diff --git a/img-microsoft-64/1f98b.png b/img-microsoft-64/1f98b.png
new file mode 100644
index 0000000000..9132a66774
Binary files /dev/null and b/img-microsoft-64/1f98b.png differ
diff --git a/img-microsoft-64/1f98c.png b/img-microsoft-64/1f98c.png
new file mode 100644
index 0000000000..f989d1cd3c
Binary files /dev/null and b/img-microsoft-64/1f98c.png differ
diff --git a/img-microsoft-64/1f98d.png b/img-microsoft-64/1f98d.png
new file mode 100644
index 0000000000..0c0f8d5265
Binary files /dev/null and b/img-microsoft-64/1f98d.png differ
diff --git a/img-microsoft-64/1f98e.png b/img-microsoft-64/1f98e.png
new file mode 100644
index 0000000000..7fb8abfd6d
Binary files /dev/null and b/img-microsoft-64/1f98e.png differ
diff --git a/img-microsoft-64/1f98f.png b/img-microsoft-64/1f98f.png
new file mode 100644
index 0000000000..0cfe32731d
Binary files /dev/null and b/img-microsoft-64/1f98f.png differ
diff --git a/img-microsoft-64/1f990.png b/img-microsoft-64/1f990.png
new file mode 100644
index 0000000000..3427bc4d1d
Binary files /dev/null and b/img-microsoft-64/1f990.png differ
diff --git a/img-microsoft-64/1f991.png b/img-microsoft-64/1f991.png
new file mode 100644
index 0000000000..9d4475f663
Binary files /dev/null and b/img-microsoft-64/1f991.png differ
diff --git a/img-microsoft-64/1f992.png b/img-microsoft-64/1f992.png
new file mode 100644
index 0000000000..b834a7ed3c
Binary files /dev/null and b/img-microsoft-64/1f992.png differ
diff --git a/img-microsoft-64/1f993.png b/img-microsoft-64/1f993.png
new file mode 100644
index 0000000000..a65c609de3
Binary files /dev/null and b/img-microsoft-64/1f993.png differ
diff --git a/img-microsoft-64/1f994.png b/img-microsoft-64/1f994.png
new file mode 100644
index 0000000000..45ed7ff5c9
Binary files /dev/null and b/img-microsoft-64/1f994.png differ
diff --git a/img-microsoft-64/1f995.png b/img-microsoft-64/1f995.png
new file mode 100644
index 0000000000..224f2ddd62
Binary files /dev/null and b/img-microsoft-64/1f995.png differ
diff --git a/img-microsoft-64/1f996.png b/img-microsoft-64/1f996.png
new file mode 100644
index 0000000000..1c63e1250e
Binary files /dev/null and b/img-microsoft-64/1f996.png differ
diff --git a/img-microsoft-64/1f997.png b/img-microsoft-64/1f997.png
new file mode 100644
index 0000000000..936b35d2a7
Binary files /dev/null and b/img-microsoft-64/1f997.png differ
diff --git a/img-microsoft-64/1f998.png b/img-microsoft-64/1f998.png
new file mode 100644
index 0000000000..aa49861c8e
Binary files /dev/null and b/img-microsoft-64/1f998.png differ
diff --git a/img-microsoft-64/1f999.png b/img-microsoft-64/1f999.png
new file mode 100644
index 0000000000..9302c26406
Binary files /dev/null and b/img-microsoft-64/1f999.png differ
diff --git a/img-microsoft-64/1f99a.png b/img-microsoft-64/1f99a.png
new file mode 100644
index 0000000000..0464d084b1
Binary files /dev/null and b/img-microsoft-64/1f99a.png differ
diff --git a/img-microsoft-64/1f99b.png b/img-microsoft-64/1f99b.png
new file mode 100644
index 0000000000..cb82b10904
Binary files /dev/null and b/img-microsoft-64/1f99b.png differ
diff --git a/img-microsoft-64/1f99c.png b/img-microsoft-64/1f99c.png
new file mode 100644
index 0000000000..ce48078e76
Binary files /dev/null and b/img-microsoft-64/1f99c.png differ
diff --git a/img-microsoft-64/1f99d.png b/img-microsoft-64/1f99d.png
new file mode 100644
index 0000000000..2fdc62fd72
Binary files /dev/null and b/img-microsoft-64/1f99d.png differ
diff --git a/img-microsoft-64/1f99e.png b/img-microsoft-64/1f99e.png
new file mode 100644
index 0000000000..bc4958cd6b
Binary files /dev/null and b/img-microsoft-64/1f99e.png differ
diff --git a/img-microsoft-64/1f99f.png b/img-microsoft-64/1f99f.png
new file mode 100644
index 0000000000..27bd2394dc
Binary files /dev/null and b/img-microsoft-64/1f99f.png differ
diff --git a/img-microsoft-64/1f9a0.png b/img-microsoft-64/1f9a0.png
new file mode 100644
index 0000000000..75af9d9f3c
Binary files /dev/null and b/img-microsoft-64/1f9a0.png differ
diff --git a/img-microsoft-64/1f9a1.png b/img-microsoft-64/1f9a1.png
new file mode 100644
index 0000000000..09c9573966
Binary files /dev/null and b/img-microsoft-64/1f9a1.png differ
diff --git a/img-microsoft-64/1f9a2.png b/img-microsoft-64/1f9a2.png
new file mode 100644
index 0000000000..e821b82a8c
Binary files /dev/null and b/img-microsoft-64/1f9a2.png differ
diff --git a/img-microsoft-64/1f9a3.png b/img-microsoft-64/1f9a3.png
new file mode 100644
index 0000000000..9b4e9bdb99
Binary files /dev/null and b/img-microsoft-64/1f9a3.png differ
diff --git a/img-microsoft-64/1f9a4.png b/img-microsoft-64/1f9a4.png
new file mode 100644
index 0000000000..8619221dbe
Binary files /dev/null and b/img-microsoft-64/1f9a4.png differ
diff --git a/img-microsoft-64/1f9a5.png b/img-microsoft-64/1f9a5.png
new file mode 100644
index 0000000000..99c7fbe90e
Binary files /dev/null and b/img-microsoft-64/1f9a5.png differ
diff --git a/img-microsoft-64/1f9a6.png b/img-microsoft-64/1f9a6.png
new file mode 100644
index 0000000000..fe23f135b9
Binary files /dev/null and b/img-microsoft-64/1f9a6.png differ
diff --git a/img-microsoft-64/1f9a7.png b/img-microsoft-64/1f9a7.png
new file mode 100644
index 0000000000..6471b22776
Binary files /dev/null and b/img-microsoft-64/1f9a7.png differ
diff --git a/img-microsoft-64/1f9a8.png b/img-microsoft-64/1f9a8.png
new file mode 100644
index 0000000000..f8ff3e7770
Binary files /dev/null and b/img-microsoft-64/1f9a8.png differ
diff --git a/img-microsoft-64/1f9a9.png b/img-microsoft-64/1f9a9.png
new file mode 100644
index 0000000000..2629251931
Binary files /dev/null and b/img-microsoft-64/1f9a9.png differ
diff --git a/img-microsoft-64/1f9aa.png b/img-microsoft-64/1f9aa.png
new file mode 100644
index 0000000000..bc70b37de6
Binary files /dev/null and b/img-microsoft-64/1f9aa.png differ
diff --git a/img-microsoft-64/1f9ab.png b/img-microsoft-64/1f9ab.png
new file mode 100644
index 0000000000..6492ca94c3
Binary files /dev/null and b/img-microsoft-64/1f9ab.png differ
diff --git a/img-microsoft-64/1f9ac.png b/img-microsoft-64/1f9ac.png
new file mode 100644
index 0000000000..4efb7cba28
Binary files /dev/null and b/img-microsoft-64/1f9ac.png differ
diff --git a/img-microsoft-64/1f9ad.png b/img-microsoft-64/1f9ad.png
new file mode 100644
index 0000000000..69d4da78e3
Binary files /dev/null and b/img-microsoft-64/1f9ad.png differ
diff --git a/img-microsoft-64/1f9ae.png b/img-microsoft-64/1f9ae.png
new file mode 100644
index 0000000000..606b021027
Binary files /dev/null and b/img-microsoft-64/1f9ae.png differ
diff --git a/img-microsoft-64/1f9af.png b/img-microsoft-64/1f9af.png
new file mode 100644
index 0000000000..d54074c5d5
Binary files /dev/null and b/img-microsoft-64/1f9af.png differ
diff --git a/img-microsoft-64/1f9b4.png b/img-microsoft-64/1f9b4.png
new file mode 100644
index 0000000000..609e03da04
Binary files /dev/null and b/img-microsoft-64/1f9b4.png differ
diff --git a/img-microsoft-64/1f9b5-1f3fb.png b/img-microsoft-64/1f9b5-1f3fb.png
new file mode 100644
index 0000000000..4a3f42ac2e
Binary files /dev/null and b/img-microsoft-64/1f9b5-1f3fb.png differ
diff --git a/img-microsoft-64/1f9b5-1f3fc.png b/img-microsoft-64/1f9b5-1f3fc.png
new file mode 100644
index 0000000000..f392534091
Binary files /dev/null and b/img-microsoft-64/1f9b5-1f3fc.png differ
diff --git a/img-microsoft-64/1f9b5-1f3fd.png b/img-microsoft-64/1f9b5-1f3fd.png
new file mode 100644
index 0000000000..fca362a017
Binary files /dev/null and b/img-microsoft-64/1f9b5-1f3fd.png differ
diff --git a/img-microsoft-64/1f9b5-1f3fe.png b/img-microsoft-64/1f9b5-1f3fe.png
new file mode 100644
index 0000000000..3375e83e25
Binary files /dev/null and b/img-microsoft-64/1f9b5-1f3fe.png differ
diff --git a/img-microsoft-64/1f9b5-1f3ff.png b/img-microsoft-64/1f9b5-1f3ff.png
new file mode 100644
index 0000000000..4f09af51a6
Binary files /dev/null and b/img-microsoft-64/1f9b5-1f3ff.png differ
diff --git a/img-microsoft-64/1f9b5.png b/img-microsoft-64/1f9b5.png
new file mode 100644
index 0000000000..0d840e0eb2
Binary files /dev/null and b/img-microsoft-64/1f9b5.png differ
diff --git a/img-microsoft-64/1f9b6-1f3fb.png b/img-microsoft-64/1f9b6-1f3fb.png
new file mode 100644
index 0000000000..4afd837f27
Binary files /dev/null and b/img-microsoft-64/1f9b6-1f3fb.png differ
diff --git a/img-microsoft-64/1f9b6-1f3fc.png b/img-microsoft-64/1f9b6-1f3fc.png
new file mode 100644
index 0000000000..753c80c7d2
Binary files /dev/null and b/img-microsoft-64/1f9b6-1f3fc.png differ
diff --git a/img-microsoft-64/1f9b6-1f3fd.png b/img-microsoft-64/1f9b6-1f3fd.png
new file mode 100644
index 0000000000..e1ddc753ea
Binary files /dev/null and b/img-microsoft-64/1f9b6-1f3fd.png differ
diff --git a/img-microsoft-64/1f9b6-1f3fe.png b/img-microsoft-64/1f9b6-1f3fe.png
new file mode 100644
index 0000000000..bda107a492
Binary files /dev/null and b/img-microsoft-64/1f9b6-1f3fe.png differ
diff --git a/img-microsoft-64/1f9b6-1f3ff.png b/img-microsoft-64/1f9b6-1f3ff.png
new file mode 100644
index 0000000000..ea0cf568c3
Binary files /dev/null and b/img-microsoft-64/1f9b6-1f3ff.png differ
diff --git a/img-microsoft-64/1f9b6.png b/img-microsoft-64/1f9b6.png
new file mode 100644
index 0000000000..e6d40bc2e9
Binary files /dev/null and b/img-microsoft-64/1f9b6.png differ
diff --git a/img-microsoft-64/1f9b7.png b/img-microsoft-64/1f9b7.png
new file mode 100644
index 0000000000..109d27c3fa
Binary files /dev/null and b/img-microsoft-64/1f9b7.png differ
diff --git a/img-microsoft-64/1f9b8-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f9b8-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..431d7ad4f1
Binary files /dev/null and b/img-microsoft-64/1f9b8-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9b8-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f9b8-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..91d820b742
Binary files /dev/null and b/img-microsoft-64/1f9b8-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9b8-1f3fb.png b/img-microsoft-64/1f9b8-1f3fb.png
new file mode 100644
index 0000000000..f3fefef5c7
Binary files /dev/null and b/img-microsoft-64/1f9b8-1f3fb.png differ
diff --git a/img-microsoft-64/1f9b8-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f9b8-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..733f1b0ca3
Binary files /dev/null and b/img-microsoft-64/1f9b8-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9b8-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f9b8-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..3a2e8183af
Binary files /dev/null and b/img-microsoft-64/1f9b8-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9b8-1f3fc.png b/img-microsoft-64/1f9b8-1f3fc.png
new file mode 100644
index 0000000000..24fd6246db
Binary files /dev/null and b/img-microsoft-64/1f9b8-1f3fc.png differ
diff --git a/img-microsoft-64/1f9b8-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f9b8-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..7610aace93
Binary files /dev/null and b/img-microsoft-64/1f9b8-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9b8-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f9b8-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..813fec8a9e
Binary files /dev/null and b/img-microsoft-64/1f9b8-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9b8-1f3fd.png b/img-microsoft-64/1f9b8-1f3fd.png
new file mode 100644
index 0000000000..2ddb307cb8
Binary files /dev/null and b/img-microsoft-64/1f9b8-1f3fd.png differ
diff --git a/img-microsoft-64/1f9b8-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f9b8-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..9d63bc5368
Binary files /dev/null and b/img-microsoft-64/1f9b8-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9b8-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f9b8-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e3cc170e5d
Binary files /dev/null and b/img-microsoft-64/1f9b8-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9b8-1f3fe.png b/img-microsoft-64/1f9b8-1f3fe.png
new file mode 100644
index 0000000000..c766d7d856
Binary files /dev/null and b/img-microsoft-64/1f9b8-1f3fe.png differ
diff --git a/img-microsoft-64/1f9b8-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f9b8-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..c17de91970
Binary files /dev/null and b/img-microsoft-64/1f9b8-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9b8-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f9b8-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..7844529e64
Binary files /dev/null and b/img-microsoft-64/1f9b8-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9b8-1f3ff.png b/img-microsoft-64/1f9b8-1f3ff.png
new file mode 100644
index 0000000000..cbcb0afac8
Binary files /dev/null and b/img-microsoft-64/1f9b8-1f3ff.png differ
diff --git a/img-microsoft-64/1f9b8-200d-2640-fe0f.png b/img-microsoft-64/1f9b8-200d-2640-fe0f.png
new file mode 100644
index 0000000000..4389578419
Binary files /dev/null and b/img-microsoft-64/1f9b8-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9b8-200d-2642-fe0f.png b/img-microsoft-64/1f9b8-200d-2642-fe0f.png
new file mode 100644
index 0000000000..04820ce82f
Binary files /dev/null and b/img-microsoft-64/1f9b8-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9b8.png b/img-microsoft-64/1f9b8.png
new file mode 100644
index 0000000000..3be3731b4c
Binary files /dev/null and b/img-microsoft-64/1f9b8.png differ
diff --git a/img-microsoft-64/1f9b9-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f9b9-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..e1a90311ff
Binary files /dev/null and b/img-microsoft-64/1f9b9-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9b9-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f9b9-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..8076c1e482
Binary files /dev/null and b/img-microsoft-64/1f9b9-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9b9-1f3fb.png b/img-microsoft-64/1f9b9-1f3fb.png
new file mode 100644
index 0000000000..3c0dbe6536
Binary files /dev/null and b/img-microsoft-64/1f9b9-1f3fb.png differ
diff --git a/img-microsoft-64/1f9b9-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f9b9-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..c5bc5fb8ae
Binary files /dev/null and b/img-microsoft-64/1f9b9-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9b9-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f9b9-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..779363079c
Binary files /dev/null and b/img-microsoft-64/1f9b9-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9b9-1f3fc.png b/img-microsoft-64/1f9b9-1f3fc.png
new file mode 100644
index 0000000000..e15cc6ec1c
Binary files /dev/null and b/img-microsoft-64/1f9b9-1f3fc.png differ
diff --git a/img-microsoft-64/1f9b9-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f9b9-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..4a7e93411a
Binary files /dev/null and b/img-microsoft-64/1f9b9-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9b9-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f9b9-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e6cb4df82c
Binary files /dev/null and b/img-microsoft-64/1f9b9-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9b9-1f3fd.png b/img-microsoft-64/1f9b9-1f3fd.png
new file mode 100644
index 0000000000..b5f59db232
Binary files /dev/null and b/img-microsoft-64/1f9b9-1f3fd.png differ
diff --git a/img-microsoft-64/1f9b9-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f9b9-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..4863273731
Binary files /dev/null and b/img-microsoft-64/1f9b9-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9b9-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f9b9-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..6b7bef6754
Binary files /dev/null and b/img-microsoft-64/1f9b9-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9b9-1f3fe.png b/img-microsoft-64/1f9b9-1f3fe.png
new file mode 100644
index 0000000000..1fd86126e6
Binary files /dev/null and b/img-microsoft-64/1f9b9-1f3fe.png differ
diff --git a/img-microsoft-64/1f9b9-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f9b9-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..1f7b38daf4
Binary files /dev/null and b/img-microsoft-64/1f9b9-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9b9-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f9b9-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f2a7468dd8
Binary files /dev/null and b/img-microsoft-64/1f9b9-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9b9-1f3ff.png b/img-microsoft-64/1f9b9-1f3ff.png
new file mode 100644
index 0000000000..c6b4fe5e47
Binary files /dev/null and b/img-microsoft-64/1f9b9-1f3ff.png differ
diff --git a/img-microsoft-64/1f9b9-200d-2640-fe0f.png b/img-microsoft-64/1f9b9-200d-2640-fe0f.png
new file mode 100644
index 0000000000..c9058bec2b
Binary files /dev/null and b/img-microsoft-64/1f9b9-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9b9-200d-2642-fe0f.png b/img-microsoft-64/1f9b9-200d-2642-fe0f.png
new file mode 100644
index 0000000000..84d347e214
Binary files /dev/null and b/img-microsoft-64/1f9b9-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9b9.png b/img-microsoft-64/1f9b9.png
new file mode 100644
index 0000000000..f7dc081c8f
Binary files /dev/null and b/img-microsoft-64/1f9b9.png differ
diff --git a/img-microsoft-64/1f9ba.png b/img-microsoft-64/1f9ba.png
new file mode 100644
index 0000000000..42cef7103e
Binary files /dev/null and b/img-microsoft-64/1f9ba.png differ
diff --git a/img-microsoft-64/1f9bb-1f3fb.png b/img-microsoft-64/1f9bb-1f3fb.png
new file mode 100644
index 0000000000..a7aeefaa44
Binary files /dev/null and b/img-microsoft-64/1f9bb-1f3fb.png differ
diff --git a/img-microsoft-64/1f9bb-1f3fc.png b/img-microsoft-64/1f9bb-1f3fc.png
new file mode 100644
index 0000000000..f3f35d4dfb
Binary files /dev/null and b/img-microsoft-64/1f9bb-1f3fc.png differ
diff --git a/img-microsoft-64/1f9bb-1f3fd.png b/img-microsoft-64/1f9bb-1f3fd.png
new file mode 100644
index 0000000000..e2670aca25
Binary files /dev/null and b/img-microsoft-64/1f9bb-1f3fd.png differ
diff --git a/img-microsoft-64/1f9bb-1f3fe.png b/img-microsoft-64/1f9bb-1f3fe.png
new file mode 100644
index 0000000000..5c6946704c
Binary files /dev/null and b/img-microsoft-64/1f9bb-1f3fe.png differ
diff --git a/img-microsoft-64/1f9bb-1f3ff.png b/img-microsoft-64/1f9bb-1f3ff.png
new file mode 100644
index 0000000000..f22894f361
Binary files /dev/null and b/img-microsoft-64/1f9bb-1f3ff.png differ
diff --git a/img-microsoft-64/1f9bb.png b/img-microsoft-64/1f9bb.png
new file mode 100644
index 0000000000..a44fcc87d1
Binary files /dev/null and b/img-microsoft-64/1f9bb.png differ
diff --git a/img-microsoft-64/1f9bc.png b/img-microsoft-64/1f9bc.png
new file mode 100644
index 0000000000..5879b8271d
Binary files /dev/null and b/img-microsoft-64/1f9bc.png differ
diff --git a/img-microsoft-64/1f9bd.png b/img-microsoft-64/1f9bd.png
new file mode 100644
index 0000000000..0ad42d454b
Binary files /dev/null and b/img-microsoft-64/1f9bd.png differ
diff --git a/img-microsoft-64/1f9be.png b/img-microsoft-64/1f9be.png
new file mode 100644
index 0000000000..177154f7ea
Binary files /dev/null and b/img-microsoft-64/1f9be.png differ
diff --git a/img-microsoft-64/1f9bf.png b/img-microsoft-64/1f9bf.png
new file mode 100644
index 0000000000..1fc7d3e79c
Binary files /dev/null and b/img-microsoft-64/1f9bf.png differ
diff --git a/img-microsoft-64/1f9c0.png b/img-microsoft-64/1f9c0.png
new file mode 100644
index 0000000000..f6eeeb1734
Binary files /dev/null and b/img-microsoft-64/1f9c0.png differ
diff --git a/img-microsoft-64/1f9c1.png b/img-microsoft-64/1f9c1.png
new file mode 100644
index 0000000000..dc70a9877c
Binary files /dev/null and b/img-microsoft-64/1f9c1.png differ
diff --git a/img-microsoft-64/1f9c2.png b/img-microsoft-64/1f9c2.png
new file mode 100644
index 0000000000..7333700f70
Binary files /dev/null and b/img-microsoft-64/1f9c2.png differ
diff --git a/img-microsoft-64/1f9c3.png b/img-microsoft-64/1f9c3.png
new file mode 100644
index 0000000000..27b1f8d47d
Binary files /dev/null and b/img-microsoft-64/1f9c3.png differ
diff --git a/img-microsoft-64/1f9c4.png b/img-microsoft-64/1f9c4.png
new file mode 100644
index 0000000000..404569f1dd
Binary files /dev/null and b/img-microsoft-64/1f9c4.png differ
diff --git a/img-microsoft-64/1f9c5.png b/img-microsoft-64/1f9c5.png
new file mode 100644
index 0000000000..b50edc156e
Binary files /dev/null and b/img-microsoft-64/1f9c5.png differ
diff --git a/img-microsoft-64/1f9c6.png b/img-microsoft-64/1f9c6.png
new file mode 100644
index 0000000000..82bf1e0b86
Binary files /dev/null and b/img-microsoft-64/1f9c6.png differ
diff --git a/img-microsoft-64/1f9c7.png b/img-microsoft-64/1f9c7.png
new file mode 100644
index 0000000000..84aece359e
Binary files /dev/null and b/img-microsoft-64/1f9c7.png differ
diff --git a/img-microsoft-64/1f9c8.png b/img-microsoft-64/1f9c8.png
new file mode 100644
index 0000000000..2736bd6743
Binary files /dev/null and b/img-microsoft-64/1f9c8.png differ
diff --git a/img-microsoft-64/1f9c9.png b/img-microsoft-64/1f9c9.png
new file mode 100644
index 0000000000..930e27b834
Binary files /dev/null and b/img-microsoft-64/1f9c9.png differ
diff --git a/img-microsoft-64/1f9ca.png b/img-microsoft-64/1f9ca.png
new file mode 100644
index 0000000000..112fe5d56f
Binary files /dev/null and b/img-microsoft-64/1f9ca.png differ
diff --git a/img-microsoft-64/1f9cb.png b/img-microsoft-64/1f9cb.png
new file mode 100644
index 0000000000..056daabfac
Binary files /dev/null and b/img-microsoft-64/1f9cb.png differ
diff --git a/img-microsoft-64/1f9cc.png b/img-microsoft-64/1f9cc.png
new file mode 100644
index 0000000000..baaf564a75
Binary files /dev/null and b/img-microsoft-64/1f9cc.png differ
diff --git a/img-microsoft-64/1f9cd-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f9cd-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..70ed87e1ac
Binary files /dev/null and b/img-microsoft-64/1f9cd-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9cd-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f9cd-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..ade3d586d5
Binary files /dev/null and b/img-microsoft-64/1f9cd-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9cd-1f3fb.png b/img-microsoft-64/1f9cd-1f3fb.png
new file mode 100644
index 0000000000..dfa9c34815
Binary files /dev/null and b/img-microsoft-64/1f9cd-1f3fb.png differ
diff --git a/img-microsoft-64/1f9cd-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f9cd-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..6af324860f
Binary files /dev/null and b/img-microsoft-64/1f9cd-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9cd-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f9cd-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..eb5c59d85a
Binary files /dev/null and b/img-microsoft-64/1f9cd-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9cd-1f3fc.png b/img-microsoft-64/1f9cd-1f3fc.png
new file mode 100644
index 0000000000..5e0eedbb4d
Binary files /dev/null and b/img-microsoft-64/1f9cd-1f3fc.png differ
diff --git a/img-microsoft-64/1f9cd-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f9cd-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..a2af2ea4d9
Binary files /dev/null and b/img-microsoft-64/1f9cd-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9cd-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f9cd-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..15bb94de2b
Binary files /dev/null and b/img-microsoft-64/1f9cd-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9cd-1f3fd.png b/img-microsoft-64/1f9cd-1f3fd.png
new file mode 100644
index 0000000000..29780f91b7
Binary files /dev/null and b/img-microsoft-64/1f9cd-1f3fd.png differ
diff --git a/img-microsoft-64/1f9cd-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f9cd-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..6d02069111
Binary files /dev/null and b/img-microsoft-64/1f9cd-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9cd-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f9cd-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..dd59f51e33
Binary files /dev/null and b/img-microsoft-64/1f9cd-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9cd-1f3fe.png b/img-microsoft-64/1f9cd-1f3fe.png
new file mode 100644
index 0000000000..fb609815ae
Binary files /dev/null and b/img-microsoft-64/1f9cd-1f3fe.png differ
diff --git a/img-microsoft-64/1f9cd-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f9cd-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..6c88e60fdf
Binary files /dev/null and b/img-microsoft-64/1f9cd-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9cd-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f9cd-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d55d5fb205
Binary files /dev/null and b/img-microsoft-64/1f9cd-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9cd-1f3ff.png b/img-microsoft-64/1f9cd-1f3ff.png
new file mode 100644
index 0000000000..e987e12841
Binary files /dev/null and b/img-microsoft-64/1f9cd-1f3ff.png differ
diff --git a/img-microsoft-64/1f9cd-200d-2640-fe0f.png b/img-microsoft-64/1f9cd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..36c4004753
Binary files /dev/null and b/img-microsoft-64/1f9cd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9cd-200d-2642-fe0f.png b/img-microsoft-64/1f9cd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f3b732bbc0
Binary files /dev/null and b/img-microsoft-64/1f9cd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9cd.png b/img-microsoft-64/1f9cd.png
new file mode 100644
index 0000000000..e9b9af4426
Binary files /dev/null and b/img-microsoft-64/1f9cd.png differ
diff --git a/img-microsoft-64/1f9ce-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f9ce-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..7624ad606d
Binary files /dev/null and b/img-microsoft-64/1f9ce-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9ce-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f9ce-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e643cde040
Binary files /dev/null and b/img-microsoft-64/1f9ce-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9ce-1f3fb.png b/img-microsoft-64/1f9ce-1f3fb.png
new file mode 100644
index 0000000000..a52c1ed30a
Binary files /dev/null and b/img-microsoft-64/1f9ce-1f3fb.png differ
diff --git a/img-microsoft-64/1f9ce-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f9ce-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..4fb8d33f25
Binary files /dev/null and b/img-microsoft-64/1f9ce-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9ce-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f9ce-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..2134133d7f
Binary files /dev/null and b/img-microsoft-64/1f9ce-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9ce-1f3fc.png b/img-microsoft-64/1f9ce-1f3fc.png
new file mode 100644
index 0000000000..72a86b58ea
Binary files /dev/null and b/img-microsoft-64/1f9ce-1f3fc.png differ
diff --git a/img-microsoft-64/1f9ce-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f9ce-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..b3d1d828b3
Binary files /dev/null and b/img-microsoft-64/1f9ce-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9ce-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f9ce-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..1e49717e02
Binary files /dev/null and b/img-microsoft-64/1f9ce-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9ce-1f3fd.png b/img-microsoft-64/1f9ce-1f3fd.png
new file mode 100644
index 0000000000..7d4f158b34
Binary files /dev/null and b/img-microsoft-64/1f9ce-1f3fd.png differ
diff --git a/img-microsoft-64/1f9ce-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f9ce-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..edb0fc9eec
Binary files /dev/null and b/img-microsoft-64/1f9ce-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9ce-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f9ce-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e37b6e948b
Binary files /dev/null and b/img-microsoft-64/1f9ce-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9ce-1f3fe.png b/img-microsoft-64/1f9ce-1f3fe.png
new file mode 100644
index 0000000000..2dff73765f
Binary files /dev/null and b/img-microsoft-64/1f9ce-1f3fe.png differ
diff --git a/img-microsoft-64/1f9ce-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f9ce-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..853e008aa2
Binary files /dev/null and b/img-microsoft-64/1f9ce-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9ce-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f9ce-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..930675e781
Binary files /dev/null and b/img-microsoft-64/1f9ce-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9ce-1f3ff.png b/img-microsoft-64/1f9ce-1f3ff.png
new file mode 100644
index 0000000000..276ee163ed
Binary files /dev/null and b/img-microsoft-64/1f9ce-1f3ff.png differ
diff --git a/img-microsoft-64/1f9ce-200d-2640-fe0f.png b/img-microsoft-64/1f9ce-200d-2640-fe0f.png
new file mode 100644
index 0000000000..caa603831d
Binary files /dev/null and b/img-microsoft-64/1f9ce-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9ce-200d-2642-fe0f.png b/img-microsoft-64/1f9ce-200d-2642-fe0f.png
new file mode 100644
index 0000000000..455156608d
Binary files /dev/null and b/img-microsoft-64/1f9ce-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9ce.png b/img-microsoft-64/1f9ce.png
new file mode 100644
index 0000000000..a9fbbb9e3d
Binary files /dev/null and b/img-microsoft-64/1f9ce.png differ
diff --git a/img-microsoft-64/1f9cf-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f9cf-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..6b8453aece
Binary files /dev/null and b/img-microsoft-64/1f9cf-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9cf-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f9cf-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..31ff3bec9d
Binary files /dev/null and b/img-microsoft-64/1f9cf-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9cf-1f3fb.png b/img-microsoft-64/1f9cf-1f3fb.png
new file mode 100644
index 0000000000..5cc4e1fe78
Binary files /dev/null and b/img-microsoft-64/1f9cf-1f3fb.png differ
diff --git a/img-microsoft-64/1f9cf-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f9cf-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..0c2302f76d
Binary files /dev/null and b/img-microsoft-64/1f9cf-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9cf-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f9cf-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..8f0c838220
Binary files /dev/null and b/img-microsoft-64/1f9cf-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9cf-1f3fc.png b/img-microsoft-64/1f9cf-1f3fc.png
new file mode 100644
index 0000000000..99131d2acf
Binary files /dev/null and b/img-microsoft-64/1f9cf-1f3fc.png differ
diff --git a/img-microsoft-64/1f9cf-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f9cf-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..0727cd3468
Binary files /dev/null and b/img-microsoft-64/1f9cf-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9cf-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f9cf-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..9b8ad894d6
Binary files /dev/null and b/img-microsoft-64/1f9cf-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9cf-1f3fd.png b/img-microsoft-64/1f9cf-1f3fd.png
new file mode 100644
index 0000000000..cff4390c17
Binary files /dev/null and b/img-microsoft-64/1f9cf-1f3fd.png differ
diff --git a/img-microsoft-64/1f9cf-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f9cf-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..8ee7be3a49
Binary files /dev/null and b/img-microsoft-64/1f9cf-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9cf-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f9cf-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d9e7cb6e03
Binary files /dev/null and b/img-microsoft-64/1f9cf-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9cf-1f3fe.png b/img-microsoft-64/1f9cf-1f3fe.png
new file mode 100644
index 0000000000..a9af384639
Binary files /dev/null and b/img-microsoft-64/1f9cf-1f3fe.png differ
diff --git a/img-microsoft-64/1f9cf-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f9cf-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..faade13e08
Binary files /dev/null and b/img-microsoft-64/1f9cf-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9cf-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f9cf-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..6f9b90e4c2
Binary files /dev/null and b/img-microsoft-64/1f9cf-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9cf-1f3ff.png b/img-microsoft-64/1f9cf-1f3ff.png
new file mode 100644
index 0000000000..c6dcc09f1f
Binary files /dev/null and b/img-microsoft-64/1f9cf-1f3ff.png differ
diff --git a/img-microsoft-64/1f9cf-200d-2640-fe0f.png b/img-microsoft-64/1f9cf-200d-2640-fe0f.png
new file mode 100644
index 0000000000..3adbb849b4
Binary files /dev/null and b/img-microsoft-64/1f9cf-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9cf-200d-2642-fe0f.png b/img-microsoft-64/1f9cf-200d-2642-fe0f.png
new file mode 100644
index 0000000000..099dc26b2a
Binary files /dev/null and b/img-microsoft-64/1f9cf-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9cf.png b/img-microsoft-64/1f9cf.png
new file mode 100644
index 0000000000..e589979c72
Binary files /dev/null and b/img-microsoft-64/1f9cf.png differ
diff --git a/img-microsoft-64/1f9d0.png b/img-microsoft-64/1f9d0.png
new file mode 100644
index 0000000000..0db7e0d206
Binary files /dev/null and b/img-microsoft-64/1f9d0.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fb-200d-1f33e.png b/img-microsoft-64/1f9d1-1f3fb-200d-1f33e.png
new file mode 100644
index 0000000000..e0af9a77de
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fb-200d-1f33e.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fb-200d-1f373.png b/img-microsoft-64/1f9d1-1f3fb-200d-1f373.png
new file mode 100644
index 0000000000..3e6d2bf292
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fb-200d-1f373.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fb-200d-1f37c.png b/img-microsoft-64/1f9d1-1f3fb-200d-1f37c.png
new file mode 100644
index 0000000000..e63424b4e0
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fb-200d-1f37c.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fb-200d-1f384.png b/img-microsoft-64/1f9d1-1f3fb-200d-1f384.png
new file mode 100644
index 0000000000..1c0be169ea
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fb-200d-1f384.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fb-200d-1f393.png b/img-microsoft-64/1f9d1-1f3fb-200d-1f393.png
new file mode 100644
index 0000000000..c6c958c872
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fb-200d-1f393.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fb-200d-1f3a4.png b/img-microsoft-64/1f9d1-1f3fb-200d-1f3a4.png
new file mode 100644
index 0000000000..f79f07a082
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fb-200d-1f3a4.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fb-200d-1f3a8.png b/img-microsoft-64/1f9d1-1f3fb-200d-1f3a8.png
new file mode 100644
index 0000000000..5436629c35
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fb-200d-1f3a8.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fb-200d-1f3eb.png b/img-microsoft-64/1f9d1-1f3fb-200d-1f3eb.png
new file mode 100644
index 0000000000..3d9669413f
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fb-200d-1f3eb.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fb-200d-1f3ed.png b/img-microsoft-64/1f9d1-1f3fb-200d-1f3ed.png
new file mode 100644
index 0000000000..55a387942d
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fb-200d-1f3ed.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fb-200d-1f4bc.png b/img-microsoft-64/1f9d1-1f3fb-200d-1f4bc.png
new file mode 100644
index 0000000000..a745d0699a
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fb-200d-1f4bc.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fb-200d-1f527.png b/img-microsoft-64/1f9d1-1f3fb-200d-1f527.png
new file mode 100644
index 0000000000..212b8d2cb4
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fb-200d-1f527.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fb-200d-1f52c.png b/img-microsoft-64/1f9d1-1f3fb-200d-1f52c.png
new file mode 100644
index 0000000000..4e4d173a4c
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fb-200d-1f52c.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fb-200d-1f680.png b/img-microsoft-64/1f9d1-1f3fb-200d-1f680.png
new file mode 100644
index 0000000000..2332f61049
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fb-200d-1f680.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fb-200d-1f692.png b/img-microsoft-64/1f9d1-1f3fb-200d-1f692.png
new file mode 100644
index 0000000000..ee0a99b59a
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fb-200d-1f692.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fb-200d-1f9af.png b/img-microsoft-64/1f9d1-1f3fb-200d-1f9af.png
new file mode 100644
index 0000000000..3fe3c7c023
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fb-200d-1f9af.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fb-200d-1f9b0.png b/img-microsoft-64/1f9d1-1f3fb-200d-1f9b0.png
new file mode 100644
index 0000000000..33b60394ac
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fb-200d-1f9b0.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fb-200d-1f9b1.png b/img-microsoft-64/1f9d1-1f3fb-200d-1f9b1.png
new file mode 100644
index 0000000000..c20ee2c177
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fb-200d-1f9b1.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fb-200d-1f9b2.png b/img-microsoft-64/1f9d1-1f3fb-200d-1f9b2.png
new file mode 100644
index 0000000000..5f45718a8c
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fb-200d-1f9b2.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fb-200d-1f9b3.png b/img-microsoft-64/1f9d1-1f3fb-200d-1f9b3.png
new file mode 100644
index 0000000000..bdefd82b32
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fb-200d-1f9b3.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fb-200d-1f9bc.png b/img-microsoft-64/1f9d1-1f3fb-200d-1f9bc.png
new file mode 100644
index 0000000000..5a8f75f5d9
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fb-200d-1f9bc.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fb-200d-1f9bd.png b/img-microsoft-64/1f9d1-1f3fb-200d-1f9bd.png
new file mode 100644
index 0000000000..7f43841cb1
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fb-200d-1f9bd.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fb-200d-2695-fe0f.png b/img-microsoft-64/1f9d1-1f3fb-200d-2695-fe0f.png
new file mode 100644
index 0000000000..8045f62b94
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fb-200d-2695-fe0f.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fb-200d-2696-fe0f.png b/img-microsoft-64/1f9d1-1f3fb-200d-2696-fe0f.png
new file mode 100644
index 0000000000..7800da48af
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fb-200d-2696-fe0f.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fb-200d-2708-fe0f.png b/img-microsoft-64/1f9d1-1f3fb-200d-2708-fe0f.png
new file mode 100644
index 0000000000..83a1b350c4
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fb-200d-2708-fe0f.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fb.png b/img-microsoft-64/1f9d1-1f3fb.png
new file mode 100644
index 0000000000..03f10c8e6f
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fb.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fc-200d-1f33e.png b/img-microsoft-64/1f9d1-1f3fc-200d-1f33e.png
new file mode 100644
index 0000000000..2a80db3cda
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fc-200d-1f33e.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fc-200d-1f373.png b/img-microsoft-64/1f9d1-1f3fc-200d-1f373.png
new file mode 100644
index 0000000000..12eba2de73
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fc-200d-1f373.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fc-200d-1f37c.png b/img-microsoft-64/1f9d1-1f3fc-200d-1f37c.png
new file mode 100644
index 0000000000..f413cf1aef
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fc-200d-1f37c.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fc-200d-1f384.png b/img-microsoft-64/1f9d1-1f3fc-200d-1f384.png
new file mode 100644
index 0000000000..dbf73d9b1d
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fc-200d-1f384.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fc-200d-1f393.png b/img-microsoft-64/1f9d1-1f3fc-200d-1f393.png
new file mode 100644
index 0000000000..951dcbfbbf
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fc-200d-1f393.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fc-200d-1f3a4.png b/img-microsoft-64/1f9d1-1f3fc-200d-1f3a4.png
new file mode 100644
index 0000000000..5f8d6385ed
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fc-200d-1f3a4.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fc-200d-1f3a8.png b/img-microsoft-64/1f9d1-1f3fc-200d-1f3a8.png
new file mode 100644
index 0000000000..bd912d7df5
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fc-200d-1f3a8.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fc-200d-1f3eb.png b/img-microsoft-64/1f9d1-1f3fc-200d-1f3eb.png
new file mode 100644
index 0000000000..c9226e5718
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fc-200d-1f3eb.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fc-200d-1f3ed.png b/img-microsoft-64/1f9d1-1f3fc-200d-1f3ed.png
new file mode 100644
index 0000000000..7d2171b929
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fc-200d-1f3ed.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fc-200d-1f4bc.png b/img-microsoft-64/1f9d1-1f3fc-200d-1f4bc.png
new file mode 100644
index 0000000000..a081fdb27a
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fc-200d-1f4bc.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fc-200d-1f527.png b/img-microsoft-64/1f9d1-1f3fc-200d-1f527.png
new file mode 100644
index 0000000000..749f9d2997
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fc-200d-1f527.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fc-200d-1f52c.png b/img-microsoft-64/1f9d1-1f3fc-200d-1f52c.png
new file mode 100644
index 0000000000..b46b0a3d73
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fc-200d-1f52c.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fc-200d-1f680.png b/img-microsoft-64/1f9d1-1f3fc-200d-1f680.png
new file mode 100644
index 0000000000..c277013814
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fc-200d-1f680.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fc-200d-1f692.png b/img-microsoft-64/1f9d1-1f3fc-200d-1f692.png
new file mode 100644
index 0000000000..608425a6fd
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fc-200d-1f692.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fc-200d-1f9af.png b/img-microsoft-64/1f9d1-1f3fc-200d-1f9af.png
new file mode 100644
index 0000000000..0e238b88ca
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fc-200d-1f9af.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fc-200d-1f9b0.png b/img-microsoft-64/1f9d1-1f3fc-200d-1f9b0.png
new file mode 100644
index 0000000000..2028e0cedc
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fc-200d-1f9b0.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fc-200d-1f9b1.png b/img-microsoft-64/1f9d1-1f3fc-200d-1f9b1.png
new file mode 100644
index 0000000000..32081d9402
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fc-200d-1f9b1.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fc-200d-1f9b2.png b/img-microsoft-64/1f9d1-1f3fc-200d-1f9b2.png
new file mode 100644
index 0000000000..e7f2c6beef
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fc-200d-1f9b2.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fc-200d-1f9b3.png b/img-microsoft-64/1f9d1-1f3fc-200d-1f9b3.png
new file mode 100644
index 0000000000..63f4597bb3
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fc-200d-1f9b3.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fc-200d-1f9bc.png b/img-microsoft-64/1f9d1-1f3fc-200d-1f9bc.png
new file mode 100644
index 0000000000..42182a6050
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fc-200d-1f9bc.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fc-200d-1f9bd.png b/img-microsoft-64/1f9d1-1f3fc-200d-1f9bd.png
new file mode 100644
index 0000000000..fc10f8a897
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fc-200d-1f9bd.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fc-200d-2695-fe0f.png b/img-microsoft-64/1f9d1-1f3fc-200d-2695-fe0f.png
new file mode 100644
index 0000000000..b2edaf2cbb
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fc-200d-2695-fe0f.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fc-200d-2696-fe0f.png b/img-microsoft-64/1f9d1-1f3fc-200d-2696-fe0f.png
new file mode 100644
index 0000000000..7afdea47cf
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fc-200d-2696-fe0f.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fc-200d-2708-fe0f.png b/img-microsoft-64/1f9d1-1f3fc-200d-2708-fe0f.png
new file mode 100644
index 0000000000..92cfcf30d1
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fc-200d-2708-fe0f.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fc.png b/img-microsoft-64/1f9d1-1f3fc.png
new file mode 100644
index 0000000000..45757c6e91
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fc.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fd-200d-1f33e.png b/img-microsoft-64/1f9d1-1f3fd-200d-1f33e.png
new file mode 100644
index 0000000000..f198ad231a
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fd-200d-1f33e.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fd-200d-1f373.png b/img-microsoft-64/1f9d1-1f3fd-200d-1f373.png
new file mode 100644
index 0000000000..13f4df2790
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fd-200d-1f373.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fd-200d-1f37c.png b/img-microsoft-64/1f9d1-1f3fd-200d-1f37c.png
new file mode 100644
index 0000000000..627ab2418a
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fd-200d-1f37c.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fd-200d-1f384.png b/img-microsoft-64/1f9d1-1f3fd-200d-1f384.png
new file mode 100644
index 0000000000..26b1d77cfe
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fd-200d-1f384.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fd-200d-1f393.png b/img-microsoft-64/1f9d1-1f3fd-200d-1f393.png
new file mode 100644
index 0000000000..abb4ea3b02
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fd-200d-1f393.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fd-200d-1f3a4.png b/img-microsoft-64/1f9d1-1f3fd-200d-1f3a4.png
new file mode 100644
index 0000000000..eac7c8f450
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fd-200d-1f3a4.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fd-200d-1f3a8.png b/img-microsoft-64/1f9d1-1f3fd-200d-1f3a8.png
new file mode 100644
index 0000000000..065359f614
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fd-200d-1f3a8.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fd-200d-1f3eb.png b/img-microsoft-64/1f9d1-1f3fd-200d-1f3eb.png
new file mode 100644
index 0000000000..ff7137aee2
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fd-200d-1f3eb.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fd-200d-1f3ed.png b/img-microsoft-64/1f9d1-1f3fd-200d-1f3ed.png
new file mode 100644
index 0000000000..b886763c49
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fd-200d-1f3ed.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fd-200d-1f4bc.png b/img-microsoft-64/1f9d1-1f3fd-200d-1f4bc.png
new file mode 100644
index 0000000000..cd16b57df4
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fd-200d-1f4bc.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fd-200d-1f527.png b/img-microsoft-64/1f9d1-1f3fd-200d-1f527.png
new file mode 100644
index 0000000000..8025a0ddc9
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fd-200d-1f527.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fd-200d-1f52c.png b/img-microsoft-64/1f9d1-1f3fd-200d-1f52c.png
new file mode 100644
index 0000000000..5f3afe0e13
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fd-200d-1f52c.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fd-200d-1f680.png b/img-microsoft-64/1f9d1-1f3fd-200d-1f680.png
new file mode 100644
index 0000000000..e217ac8437
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fd-200d-1f680.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fd-200d-1f692.png b/img-microsoft-64/1f9d1-1f3fd-200d-1f692.png
new file mode 100644
index 0000000000..d481312a8e
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fd-200d-1f692.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fd-200d-1f9af.png b/img-microsoft-64/1f9d1-1f3fd-200d-1f9af.png
new file mode 100644
index 0000000000..24ef7266ec
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fd-200d-1f9af.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fd-200d-1f9b0.png b/img-microsoft-64/1f9d1-1f3fd-200d-1f9b0.png
new file mode 100644
index 0000000000..9b47518ce6
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fd-200d-1f9b0.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fd-200d-1f9b1.png b/img-microsoft-64/1f9d1-1f3fd-200d-1f9b1.png
new file mode 100644
index 0000000000..4ee143cbaf
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fd-200d-1f9b1.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fd-200d-1f9b2.png b/img-microsoft-64/1f9d1-1f3fd-200d-1f9b2.png
new file mode 100644
index 0000000000..15771c8c76
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fd-200d-1f9b2.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fd-200d-1f9b3.png b/img-microsoft-64/1f9d1-1f3fd-200d-1f9b3.png
new file mode 100644
index 0000000000..e528515eff
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fd-200d-1f9b3.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fd-200d-1f9bc.png b/img-microsoft-64/1f9d1-1f3fd-200d-1f9bc.png
new file mode 100644
index 0000000000..1ddab3cd6a
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fd-200d-1f9bc.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fd-200d-1f9bd.png b/img-microsoft-64/1f9d1-1f3fd-200d-1f9bd.png
new file mode 100644
index 0000000000..e734ec3897
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fd-200d-1f9bd.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fd-200d-2695-fe0f.png b/img-microsoft-64/1f9d1-1f3fd-200d-2695-fe0f.png
new file mode 100644
index 0000000000..f300df740d
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fd-200d-2695-fe0f.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fd-200d-2696-fe0f.png b/img-microsoft-64/1f9d1-1f3fd-200d-2696-fe0f.png
new file mode 100644
index 0000000000..55afe784bb
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fd-200d-2696-fe0f.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fd-200d-2708-fe0f.png b/img-microsoft-64/1f9d1-1f3fd-200d-2708-fe0f.png
new file mode 100644
index 0000000000..451282fd91
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fd-200d-2708-fe0f.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fd.png b/img-microsoft-64/1f9d1-1f3fd.png
new file mode 100644
index 0000000000..4cd8b4c4e6
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fd.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fe-200d-1f33e.png b/img-microsoft-64/1f9d1-1f3fe-200d-1f33e.png
new file mode 100644
index 0000000000..2950efd912
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fe-200d-1f33e.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fe-200d-1f373.png b/img-microsoft-64/1f9d1-1f3fe-200d-1f373.png
new file mode 100644
index 0000000000..19efd82a00
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fe-200d-1f373.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fe-200d-1f37c.png b/img-microsoft-64/1f9d1-1f3fe-200d-1f37c.png
new file mode 100644
index 0000000000..69fdc991d7
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fe-200d-1f37c.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fe-200d-1f384.png b/img-microsoft-64/1f9d1-1f3fe-200d-1f384.png
new file mode 100644
index 0000000000..ca1ed236b4
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fe-200d-1f384.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fe-200d-1f393.png b/img-microsoft-64/1f9d1-1f3fe-200d-1f393.png
new file mode 100644
index 0000000000..ac19804f86
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fe-200d-1f393.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fe-200d-1f3a4.png b/img-microsoft-64/1f9d1-1f3fe-200d-1f3a4.png
new file mode 100644
index 0000000000..8decdcf9ab
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fe-200d-1f3a4.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fe-200d-1f3a8.png b/img-microsoft-64/1f9d1-1f3fe-200d-1f3a8.png
new file mode 100644
index 0000000000..b7d8f4c9f7
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fe-200d-1f3a8.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fe-200d-1f3eb.png b/img-microsoft-64/1f9d1-1f3fe-200d-1f3eb.png
new file mode 100644
index 0000000000..fe9d5c3c6e
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fe-200d-1f3eb.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fe-200d-1f3ed.png b/img-microsoft-64/1f9d1-1f3fe-200d-1f3ed.png
new file mode 100644
index 0000000000..b5f7f781ba
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fe-200d-1f3ed.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fe-200d-1f4bc.png b/img-microsoft-64/1f9d1-1f3fe-200d-1f4bc.png
new file mode 100644
index 0000000000..49641e5e16
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fe-200d-1f4bc.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fe-200d-1f527.png b/img-microsoft-64/1f9d1-1f3fe-200d-1f527.png
new file mode 100644
index 0000000000..e4608bf997
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fe-200d-1f527.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fe-200d-1f52c.png b/img-microsoft-64/1f9d1-1f3fe-200d-1f52c.png
new file mode 100644
index 0000000000..7037927ede
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fe-200d-1f52c.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fe-200d-1f680.png b/img-microsoft-64/1f9d1-1f3fe-200d-1f680.png
new file mode 100644
index 0000000000..1072d3076d
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fe-200d-1f680.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fe-200d-1f692.png b/img-microsoft-64/1f9d1-1f3fe-200d-1f692.png
new file mode 100644
index 0000000000..6d53f73724
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fe-200d-1f692.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fe-200d-1f9af.png b/img-microsoft-64/1f9d1-1f3fe-200d-1f9af.png
new file mode 100644
index 0000000000..0b231f855b
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fe-200d-1f9af.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fe-200d-1f9b0.png b/img-microsoft-64/1f9d1-1f3fe-200d-1f9b0.png
new file mode 100644
index 0000000000..0ec9725303
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fe-200d-1f9b0.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fe-200d-1f9b1.png b/img-microsoft-64/1f9d1-1f3fe-200d-1f9b1.png
new file mode 100644
index 0000000000..44250b779e
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fe-200d-1f9b1.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fe-200d-1f9b2.png b/img-microsoft-64/1f9d1-1f3fe-200d-1f9b2.png
new file mode 100644
index 0000000000..26cf855107
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fe-200d-1f9b2.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fe-200d-1f9b3.png b/img-microsoft-64/1f9d1-1f3fe-200d-1f9b3.png
new file mode 100644
index 0000000000..28f02d52a6
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fe-200d-1f9b3.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fe-200d-1f9bc.png b/img-microsoft-64/1f9d1-1f3fe-200d-1f9bc.png
new file mode 100644
index 0000000000..28e4ea2470
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fe-200d-1f9bc.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fe-200d-1f9bd.png b/img-microsoft-64/1f9d1-1f3fe-200d-1f9bd.png
new file mode 100644
index 0000000000..69cbdb780a
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fe-200d-1f9bd.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fe-200d-2695-fe0f.png b/img-microsoft-64/1f9d1-1f3fe-200d-2695-fe0f.png
new file mode 100644
index 0000000000..21cf244708
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fe-200d-2695-fe0f.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fe-200d-2696-fe0f.png b/img-microsoft-64/1f9d1-1f3fe-200d-2696-fe0f.png
new file mode 100644
index 0000000000..18e890dad7
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fe-200d-2696-fe0f.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fe-200d-2708-fe0f.png b/img-microsoft-64/1f9d1-1f3fe-200d-2708-fe0f.png
new file mode 100644
index 0000000000..fc4c7d4053
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fe-200d-2708-fe0f.png differ
diff --git a/img-microsoft-64/1f9d1-1f3fe.png b/img-microsoft-64/1f9d1-1f3fe.png
new file mode 100644
index 0000000000..0045391d9f
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3fe.png differ
diff --git a/img-microsoft-64/1f9d1-1f3ff-200d-1f33e.png b/img-microsoft-64/1f9d1-1f3ff-200d-1f33e.png
new file mode 100644
index 0000000000..1ad845e4dd
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3ff-200d-1f33e.png differ
diff --git a/img-microsoft-64/1f9d1-1f3ff-200d-1f373.png b/img-microsoft-64/1f9d1-1f3ff-200d-1f373.png
new file mode 100644
index 0000000000..afd36d290f
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3ff-200d-1f373.png differ
diff --git a/img-microsoft-64/1f9d1-1f3ff-200d-1f37c.png b/img-microsoft-64/1f9d1-1f3ff-200d-1f37c.png
new file mode 100644
index 0000000000..a273a0cdc4
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3ff-200d-1f37c.png differ
diff --git a/img-microsoft-64/1f9d1-1f3ff-200d-1f384.png b/img-microsoft-64/1f9d1-1f3ff-200d-1f384.png
new file mode 100644
index 0000000000..b2ee48dbfa
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3ff-200d-1f384.png differ
diff --git a/img-microsoft-64/1f9d1-1f3ff-200d-1f393.png b/img-microsoft-64/1f9d1-1f3ff-200d-1f393.png
new file mode 100644
index 0000000000..6ff4be22f9
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3ff-200d-1f393.png differ
diff --git a/img-microsoft-64/1f9d1-1f3ff-200d-1f3a4.png b/img-microsoft-64/1f9d1-1f3ff-200d-1f3a4.png
new file mode 100644
index 0000000000..0eef0e17cd
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3ff-200d-1f3a4.png differ
diff --git a/img-microsoft-64/1f9d1-1f3ff-200d-1f3a8.png b/img-microsoft-64/1f9d1-1f3ff-200d-1f3a8.png
new file mode 100644
index 0000000000..fb41dce93a
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3ff-200d-1f3a8.png differ
diff --git a/img-microsoft-64/1f9d1-1f3ff-200d-1f3eb.png b/img-microsoft-64/1f9d1-1f3ff-200d-1f3eb.png
new file mode 100644
index 0000000000..b4672da251
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3ff-200d-1f3eb.png differ
diff --git a/img-microsoft-64/1f9d1-1f3ff-200d-1f3ed.png b/img-microsoft-64/1f9d1-1f3ff-200d-1f3ed.png
new file mode 100644
index 0000000000..8d89a45ad2
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3ff-200d-1f3ed.png differ
diff --git a/img-microsoft-64/1f9d1-1f3ff-200d-1f4bc.png b/img-microsoft-64/1f9d1-1f3ff-200d-1f4bc.png
new file mode 100644
index 0000000000..aec488cda9
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3ff-200d-1f4bc.png differ
diff --git a/img-microsoft-64/1f9d1-1f3ff-200d-1f527.png b/img-microsoft-64/1f9d1-1f3ff-200d-1f527.png
new file mode 100644
index 0000000000..1e3046c3f8
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3ff-200d-1f527.png differ
diff --git a/img-microsoft-64/1f9d1-1f3ff-200d-1f52c.png b/img-microsoft-64/1f9d1-1f3ff-200d-1f52c.png
new file mode 100644
index 0000000000..ea33fd72db
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3ff-200d-1f52c.png differ
diff --git a/img-microsoft-64/1f9d1-1f3ff-200d-1f680.png b/img-microsoft-64/1f9d1-1f3ff-200d-1f680.png
new file mode 100644
index 0000000000..e16149ecbd
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3ff-200d-1f680.png differ
diff --git a/img-microsoft-64/1f9d1-1f3ff-200d-1f692.png b/img-microsoft-64/1f9d1-1f3ff-200d-1f692.png
new file mode 100644
index 0000000000..3aeef49fcf
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3ff-200d-1f692.png differ
diff --git a/img-microsoft-64/1f9d1-1f3ff-200d-1f9af.png b/img-microsoft-64/1f9d1-1f3ff-200d-1f9af.png
new file mode 100644
index 0000000000..dfd6caee78
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3ff-200d-1f9af.png differ
diff --git a/img-microsoft-64/1f9d1-1f3ff-200d-1f9b0.png b/img-microsoft-64/1f9d1-1f3ff-200d-1f9b0.png
new file mode 100644
index 0000000000..b370d6d84b
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3ff-200d-1f9b0.png differ
diff --git a/img-microsoft-64/1f9d1-1f3ff-200d-1f9b1.png b/img-microsoft-64/1f9d1-1f3ff-200d-1f9b1.png
new file mode 100644
index 0000000000..fc29f6c1b7
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3ff-200d-1f9b1.png differ
diff --git a/img-microsoft-64/1f9d1-1f3ff-200d-1f9b2.png b/img-microsoft-64/1f9d1-1f3ff-200d-1f9b2.png
new file mode 100644
index 0000000000..8c4967fc53
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3ff-200d-1f9b2.png differ
diff --git a/img-microsoft-64/1f9d1-1f3ff-200d-1f9b3.png b/img-microsoft-64/1f9d1-1f3ff-200d-1f9b3.png
new file mode 100644
index 0000000000..aefc09fa1b
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3ff-200d-1f9b3.png differ
diff --git a/img-microsoft-64/1f9d1-1f3ff-200d-1f9bc.png b/img-microsoft-64/1f9d1-1f3ff-200d-1f9bc.png
new file mode 100644
index 0000000000..715d07f70e
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3ff-200d-1f9bc.png differ
diff --git a/img-microsoft-64/1f9d1-1f3ff-200d-1f9bd.png b/img-microsoft-64/1f9d1-1f3ff-200d-1f9bd.png
new file mode 100644
index 0000000000..fdc5e97f1f
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3ff-200d-1f9bd.png differ
diff --git a/img-microsoft-64/1f9d1-1f3ff-200d-2695-fe0f.png b/img-microsoft-64/1f9d1-1f3ff-200d-2695-fe0f.png
new file mode 100644
index 0000000000..8569ad61e0
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3ff-200d-2695-fe0f.png differ
diff --git a/img-microsoft-64/1f9d1-1f3ff-200d-2696-fe0f.png b/img-microsoft-64/1f9d1-1f3ff-200d-2696-fe0f.png
new file mode 100644
index 0000000000..bca01fc399
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3ff-200d-2696-fe0f.png differ
diff --git a/img-microsoft-64/1f9d1-1f3ff-200d-2708-fe0f.png b/img-microsoft-64/1f9d1-1f3ff-200d-2708-fe0f.png
new file mode 100644
index 0000000000..3afaed14af
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3ff-200d-2708-fe0f.png differ
diff --git a/img-microsoft-64/1f9d1-1f3ff.png b/img-microsoft-64/1f9d1-1f3ff.png
new file mode 100644
index 0000000000..0cec912fac
Binary files /dev/null and b/img-microsoft-64/1f9d1-1f3ff.png differ
diff --git a/img-microsoft-64/1f9d1-200d-1f33e.png b/img-microsoft-64/1f9d1-200d-1f33e.png
new file mode 100644
index 0000000000..c1c2bc64bc
Binary files /dev/null and b/img-microsoft-64/1f9d1-200d-1f33e.png differ
diff --git a/img-microsoft-64/1f9d1-200d-1f373.png b/img-microsoft-64/1f9d1-200d-1f373.png
new file mode 100644
index 0000000000..e55ccbb440
Binary files /dev/null and b/img-microsoft-64/1f9d1-200d-1f373.png differ
diff --git a/img-microsoft-64/1f9d1-200d-1f37c.png b/img-microsoft-64/1f9d1-200d-1f37c.png
new file mode 100644
index 0000000000..4381e5f89e
Binary files /dev/null and b/img-microsoft-64/1f9d1-200d-1f37c.png differ
diff --git a/img-microsoft-64/1f9d1-200d-1f384.png b/img-microsoft-64/1f9d1-200d-1f384.png
new file mode 100644
index 0000000000..a86068f55a
Binary files /dev/null and b/img-microsoft-64/1f9d1-200d-1f384.png differ
diff --git a/img-microsoft-64/1f9d1-200d-1f393.png b/img-microsoft-64/1f9d1-200d-1f393.png
new file mode 100644
index 0000000000..77d2145e96
Binary files /dev/null and b/img-microsoft-64/1f9d1-200d-1f393.png differ
diff --git a/img-microsoft-64/1f9d1-200d-1f3a4.png b/img-microsoft-64/1f9d1-200d-1f3a4.png
new file mode 100644
index 0000000000..54dcbad1d4
Binary files /dev/null and b/img-microsoft-64/1f9d1-200d-1f3a4.png differ
diff --git a/img-microsoft-64/1f9d1-200d-1f3a8.png b/img-microsoft-64/1f9d1-200d-1f3a8.png
new file mode 100644
index 0000000000..2277b838ce
Binary files /dev/null and b/img-microsoft-64/1f9d1-200d-1f3a8.png differ
diff --git a/img-microsoft-64/1f9d1-200d-1f3eb.png b/img-microsoft-64/1f9d1-200d-1f3eb.png
new file mode 100644
index 0000000000..ce14ca1140
Binary files /dev/null and b/img-microsoft-64/1f9d1-200d-1f3eb.png differ
diff --git a/img-microsoft-64/1f9d1-200d-1f3ed.png b/img-microsoft-64/1f9d1-200d-1f3ed.png
new file mode 100644
index 0000000000..371134af5e
Binary files /dev/null and b/img-microsoft-64/1f9d1-200d-1f3ed.png differ
diff --git a/img-microsoft-64/1f9d1-200d-1f4bc.png b/img-microsoft-64/1f9d1-200d-1f4bc.png
new file mode 100644
index 0000000000..600691a78f
Binary files /dev/null and b/img-microsoft-64/1f9d1-200d-1f4bc.png differ
diff --git a/img-microsoft-64/1f9d1-200d-1f527.png b/img-microsoft-64/1f9d1-200d-1f527.png
new file mode 100644
index 0000000000..83f924f6a9
Binary files /dev/null and b/img-microsoft-64/1f9d1-200d-1f527.png differ
diff --git a/img-microsoft-64/1f9d1-200d-1f52c.png b/img-microsoft-64/1f9d1-200d-1f52c.png
new file mode 100644
index 0000000000..a21b65eb50
Binary files /dev/null and b/img-microsoft-64/1f9d1-200d-1f52c.png differ
diff --git a/img-microsoft-64/1f9d1-200d-1f680.png b/img-microsoft-64/1f9d1-200d-1f680.png
new file mode 100644
index 0000000000..bac614aef3
Binary files /dev/null and b/img-microsoft-64/1f9d1-200d-1f680.png differ
diff --git a/img-microsoft-64/1f9d1-200d-1f692.png b/img-microsoft-64/1f9d1-200d-1f692.png
new file mode 100644
index 0000000000..efd55013b2
Binary files /dev/null and b/img-microsoft-64/1f9d1-200d-1f692.png differ
diff --git a/img-microsoft-64/1f9d1-200d-1f9af.png b/img-microsoft-64/1f9d1-200d-1f9af.png
new file mode 100644
index 0000000000..98c660c073
Binary files /dev/null and b/img-microsoft-64/1f9d1-200d-1f9af.png differ
diff --git a/img-microsoft-64/1f9d1-200d-1f9b0.png b/img-microsoft-64/1f9d1-200d-1f9b0.png
new file mode 100644
index 0000000000..e476271c03
Binary files /dev/null and b/img-microsoft-64/1f9d1-200d-1f9b0.png differ
diff --git a/img-microsoft-64/1f9d1-200d-1f9b1.png b/img-microsoft-64/1f9d1-200d-1f9b1.png
new file mode 100644
index 0000000000..f4e2616a1c
Binary files /dev/null and b/img-microsoft-64/1f9d1-200d-1f9b1.png differ
diff --git a/img-microsoft-64/1f9d1-200d-1f9b2.png b/img-microsoft-64/1f9d1-200d-1f9b2.png
new file mode 100644
index 0000000000..cc80d29fa6
Binary files /dev/null and b/img-microsoft-64/1f9d1-200d-1f9b2.png differ
diff --git a/img-microsoft-64/1f9d1-200d-1f9b3.png b/img-microsoft-64/1f9d1-200d-1f9b3.png
new file mode 100644
index 0000000000..831bae162d
Binary files /dev/null and b/img-microsoft-64/1f9d1-200d-1f9b3.png differ
diff --git a/img-microsoft-64/1f9d1-200d-1f9bc.png b/img-microsoft-64/1f9d1-200d-1f9bc.png
new file mode 100644
index 0000000000..75061070f3
Binary files /dev/null and b/img-microsoft-64/1f9d1-200d-1f9bc.png differ
diff --git a/img-microsoft-64/1f9d1-200d-1f9bd.png b/img-microsoft-64/1f9d1-200d-1f9bd.png
new file mode 100644
index 0000000000..3004d5d9d5
Binary files /dev/null and b/img-microsoft-64/1f9d1-200d-1f9bd.png differ
diff --git a/img-microsoft-64/1f9d1-200d-2695-fe0f.png b/img-microsoft-64/1f9d1-200d-2695-fe0f.png
new file mode 100644
index 0000000000..798d019aaf
Binary files /dev/null and b/img-microsoft-64/1f9d1-200d-2695-fe0f.png differ
diff --git a/img-microsoft-64/1f9d1-200d-2696-fe0f.png b/img-microsoft-64/1f9d1-200d-2696-fe0f.png
new file mode 100644
index 0000000000..1a638bf4d3
Binary files /dev/null and b/img-microsoft-64/1f9d1-200d-2696-fe0f.png differ
diff --git a/img-microsoft-64/1f9d1-200d-2708-fe0f.png b/img-microsoft-64/1f9d1-200d-2708-fe0f.png
new file mode 100644
index 0000000000..6ea524032a
Binary files /dev/null and b/img-microsoft-64/1f9d1-200d-2708-fe0f.png differ
diff --git a/img-microsoft-64/1f9d1.png b/img-microsoft-64/1f9d1.png
new file mode 100644
index 0000000000..0e7a7b8b00
Binary files /dev/null and b/img-microsoft-64/1f9d1.png differ
diff --git a/img-microsoft-64/1f9d2-1f3fb.png b/img-microsoft-64/1f9d2-1f3fb.png
new file mode 100644
index 0000000000..422d1fc9e5
Binary files /dev/null and b/img-microsoft-64/1f9d2-1f3fb.png differ
diff --git a/img-microsoft-64/1f9d2-1f3fc.png b/img-microsoft-64/1f9d2-1f3fc.png
new file mode 100644
index 0000000000..f2d0fae5de
Binary files /dev/null and b/img-microsoft-64/1f9d2-1f3fc.png differ
diff --git a/img-microsoft-64/1f9d2-1f3fd.png b/img-microsoft-64/1f9d2-1f3fd.png
new file mode 100644
index 0000000000..feefaa031d
Binary files /dev/null and b/img-microsoft-64/1f9d2-1f3fd.png differ
diff --git a/img-microsoft-64/1f9d2-1f3fe.png b/img-microsoft-64/1f9d2-1f3fe.png
new file mode 100644
index 0000000000..78904f61d9
Binary files /dev/null and b/img-microsoft-64/1f9d2-1f3fe.png differ
diff --git a/img-microsoft-64/1f9d2-1f3ff.png b/img-microsoft-64/1f9d2-1f3ff.png
new file mode 100644
index 0000000000..43a08c68fe
Binary files /dev/null and b/img-microsoft-64/1f9d2-1f3ff.png differ
diff --git a/img-microsoft-64/1f9d2.png b/img-microsoft-64/1f9d2.png
new file mode 100644
index 0000000000..83f6528660
Binary files /dev/null and b/img-microsoft-64/1f9d2.png differ
diff --git a/img-microsoft-64/1f9d3-1f3fb.png b/img-microsoft-64/1f9d3-1f3fb.png
new file mode 100644
index 0000000000..ef9567bc65
Binary files /dev/null and b/img-microsoft-64/1f9d3-1f3fb.png differ
diff --git a/img-microsoft-64/1f9d3-1f3fc.png b/img-microsoft-64/1f9d3-1f3fc.png
new file mode 100644
index 0000000000..8fa2881838
Binary files /dev/null and b/img-microsoft-64/1f9d3-1f3fc.png differ
diff --git a/img-microsoft-64/1f9d3-1f3fd.png b/img-microsoft-64/1f9d3-1f3fd.png
new file mode 100644
index 0000000000..1c631e2155
Binary files /dev/null and b/img-microsoft-64/1f9d3-1f3fd.png differ
diff --git a/img-microsoft-64/1f9d3-1f3fe.png b/img-microsoft-64/1f9d3-1f3fe.png
new file mode 100644
index 0000000000..256467e5f1
Binary files /dev/null and b/img-microsoft-64/1f9d3-1f3fe.png differ
diff --git a/img-microsoft-64/1f9d3-1f3ff.png b/img-microsoft-64/1f9d3-1f3ff.png
new file mode 100644
index 0000000000..78de45e35a
Binary files /dev/null and b/img-microsoft-64/1f9d3-1f3ff.png differ
diff --git a/img-microsoft-64/1f9d3.png b/img-microsoft-64/1f9d3.png
new file mode 100644
index 0000000000..0f0e4cfef0
Binary files /dev/null and b/img-microsoft-64/1f9d3.png differ
diff --git a/img-microsoft-64/1f9d4-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f9d4-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..0170c6f891
Binary files /dev/null and b/img-microsoft-64/1f9d4-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d4-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f9d4-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..c6a8bce18f
Binary files /dev/null and b/img-microsoft-64/1f9d4-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d4-1f3fb.png b/img-microsoft-64/1f9d4-1f3fb.png
new file mode 100644
index 0000000000..ca8f080e7e
Binary files /dev/null and b/img-microsoft-64/1f9d4-1f3fb.png differ
diff --git a/img-microsoft-64/1f9d4-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f9d4-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..1a26c65fba
Binary files /dev/null and b/img-microsoft-64/1f9d4-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d4-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f9d4-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a02865d406
Binary files /dev/null and b/img-microsoft-64/1f9d4-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d4-1f3fc.png b/img-microsoft-64/1f9d4-1f3fc.png
new file mode 100644
index 0000000000..f2273fa087
Binary files /dev/null and b/img-microsoft-64/1f9d4-1f3fc.png differ
diff --git a/img-microsoft-64/1f9d4-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f9d4-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..2f8d97900b
Binary files /dev/null and b/img-microsoft-64/1f9d4-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d4-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f9d4-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..814e5d8f7d
Binary files /dev/null and b/img-microsoft-64/1f9d4-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d4-1f3fd.png b/img-microsoft-64/1f9d4-1f3fd.png
new file mode 100644
index 0000000000..5b5683ed35
Binary files /dev/null and b/img-microsoft-64/1f9d4-1f3fd.png differ
diff --git a/img-microsoft-64/1f9d4-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f9d4-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..bf7e4fb71f
Binary files /dev/null and b/img-microsoft-64/1f9d4-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d4-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f9d4-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..b791dfac09
Binary files /dev/null and b/img-microsoft-64/1f9d4-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d4-1f3fe.png b/img-microsoft-64/1f9d4-1f3fe.png
new file mode 100644
index 0000000000..2ea814ce4d
Binary files /dev/null and b/img-microsoft-64/1f9d4-1f3fe.png differ
diff --git a/img-microsoft-64/1f9d4-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f9d4-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..381f8ad499
Binary files /dev/null and b/img-microsoft-64/1f9d4-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d4-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f9d4-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..747fa20d08
Binary files /dev/null and b/img-microsoft-64/1f9d4-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d4-1f3ff.png b/img-microsoft-64/1f9d4-1f3ff.png
new file mode 100644
index 0000000000..ecaa7e5a11
Binary files /dev/null and b/img-microsoft-64/1f9d4-1f3ff.png differ
diff --git a/img-microsoft-64/1f9d4-200d-2640-fe0f.png b/img-microsoft-64/1f9d4-200d-2640-fe0f.png
new file mode 100644
index 0000000000..8d28231bee
Binary files /dev/null and b/img-microsoft-64/1f9d4-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d4-200d-2642-fe0f.png b/img-microsoft-64/1f9d4-200d-2642-fe0f.png
new file mode 100644
index 0000000000..134be5e539
Binary files /dev/null and b/img-microsoft-64/1f9d4-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d4.png b/img-microsoft-64/1f9d4.png
new file mode 100644
index 0000000000..1afd3bfe2d
Binary files /dev/null and b/img-microsoft-64/1f9d4.png differ
diff --git a/img-microsoft-64/1f9d5-1f3fb.png b/img-microsoft-64/1f9d5-1f3fb.png
new file mode 100644
index 0000000000..876ab5aa6c
Binary files /dev/null and b/img-microsoft-64/1f9d5-1f3fb.png differ
diff --git a/img-microsoft-64/1f9d5-1f3fc.png b/img-microsoft-64/1f9d5-1f3fc.png
new file mode 100644
index 0000000000..4ff056cecf
Binary files /dev/null and b/img-microsoft-64/1f9d5-1f3fc.png differ
diff --git a/img-microsoft-64/1f9d5-1f3fd.png b/img-microsoft-64/1f9d5-1f3fd.png
new file mode 100644
index 0000000000..f819a5dc22
Binary files /dev/null and b/img-microsoft-64/1f9d5-1f3fd.png differ
diff --git a/img-microsoft-64/1f9d5-1f3fe.png b/img-microsoft-64/1f9d5-1f3fe.png
new file mode 100644
index 0000000000..a31a592259
Binary files /dev/null and b/img-microsoft-64/1f9d5-1f3fe.png differ
diff --git a/img-microsoft-64/1f9d5-1f3ff.png b/img-microsoft-64/1f9d5-1f3ff.png
new file mode 100644
index 0000000000..e894155262
Binary files /dev/null and b/img-microsoft-64/1f9d5-1f3ff.png differ
diff --git a/img-microsoft-64/1f9d5.png b/img-microsoft-64/1f9d5.png
new file mode 100644
index 0000000000..a5d4d99d56
Binary files /dev/null and b/img-microsoft-64/1f9d5.png differ
diff --git a/img-microsoft-64/1f9d6-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f9d6-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..fc806c197e
Binary files /dev/null and b/img-microsoft-64/1f9d6-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d6-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f9d6-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..7b31ae19fe
Binary files /dev/null and b/img-microsoft-64/1f9d6-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d6-1f3fb.png b/img-microsoft-64/1f9d6-1f3fb.png
new file mode 100644
index 0000000000..8d661147c1
Binary files /dev/null and b/img-microsoft-64/1f9d6-1f3fb.png differ
diff --git a/img-microsoft-64/1f9d6-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f9d6-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..f4a8222ad8
Binary files /dev/null and b/img-microsoft-64/1f9d6-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d6-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f9d6-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..6d9057f15a
Binary files /dev/null and b/img-microsoft-64/1f9d6-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d6-1f3fc.png b/img-microsoft-64/1f9d6-1f3fc.png
new file mode 100644
index 0000000000..6d61178558
Binary files /dev/null and b/img-microsoft-64/1f9d6-1f3fc.png differ
diff --git a/img-microsoft-64/1f9d6-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f9d6-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..e174f1d8af
Binary files /dev/null and b/img-microsoft-64/1f9d6-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d6-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f9d6-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..9a1da7104f
Binary files /dev/null and b/img-microsoft-64/1f9d6-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d6-1f3fd.png b/img-microsoft-64/1f9d6-1f3fd.png
new file mode 100644
index 0000000000..cb3b2922f0
Binary files /dev/null and b/img-microsoft-64/1f9d6-1f3fd.png differ
diff --git a/img-microsoft-64/1f9d6-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f9d6-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..fab0bd9487
Binary files /dev/null and b/img-microsoft-64/1f9d6-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d6-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f9d6-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..51864eb24b
Binary files /dev/null and b/img-microsoft-64/1f9d6-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d6-1f3fe.png b/img-microsoft-64/1f9d6-1f3fe.png
new file mode 100644
index 0000000000..d7b677ee35
Binary files /dev/null and b/img-microsoft-64/1f9d6-1f3fe.png differ
diff --git a/img-microsoft-64/1f9d6-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f9d6-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..54dbcaec53
Binary files /dev/null and b/img-microsoft-64/1f9d6-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d6-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f9d6-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..78d6a5f52c
Binary files /dev/null and b/img-microsoft-64/1f9d6-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d6-1f3ff.png b/img-microsoft-64/1f9d6-1f3ff.png
new file mode 100644
index 0000000000..5a4c98d6d4
Binary files /dev/null and b/img-microsoft-64/1f9d6-1f3ff.png differ
diff --git a/img-microsoft-64/1f9d6-200d-2640-fe0f.png b/img-microsoft-64/1f9d6-200d-2640-fe0f.png
new file mode 100644
index 0000000000..83850a6820
Binary files /dev/null and b/img-microsoft-64/1f9d6-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d6-200d-2642-fe0f.png b/img-microsoft-64/1f9d6-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f635cd41d4
Binary files /dev/null and b/img-microsoft-64/1f9d6-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d6.png b/img-microsoft-64/1f9d6.png
new file mode 100644
index 0000000000..e32008c95e
Binary files /dev/null and b/img-microsoft-64/1f9d6.png differ
diff --git a/img-microsoft-64/1f9d7-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f9d7-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..0289ad5b16
Binary files /dev/null and b/img-microsoft-64/1f9d7-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d7-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f9d7-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d5347d8b28
Binary files /dev/null and b/img-microsoft-64/1f9d7-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d7-1f3fb.png b/img-microsoft-64/1f9d7-1f3fb.png
new file mode 100644
index 0000000000..87b057238d
Binary files /dev/null and b/img-microsoft-64/1f9d7-1f3fb.png differ
diff --git a/img-microsoft-64/1f9d7-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f9d7-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..213ab23631
Binary files /dev/null and b/img-microsoft-64/1f9d7-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d7-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f9d7-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..b115581597
Binary files /dev/null and b/img-microsoft-64/1f9d7-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d7-1f3fc.png b/img-microsoft-64/1f9d7-1f3fc.png
new file mode 100644
index 0000000000..f685747d45
Binary files /dev/null and b/img-microsoft-64/1f9d7-1f3fc.png differ
diff --git a/img-microsoft-64/1f9d7-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f9d7-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..5fccc18370
Binary files /dev/null and b/img-microsoft-64/1f9d7-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d7-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f9d7-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..dab01699c7
Binary files /dev/null and b/img-microsoft-64/1f9d7-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d7-1f3fd.png b/img-microsoft-64/1f9d7-1f3fd.png
new file mode 100644
index 0000000000..b00b6f6ba4
Binary files /dev/null and b/img-microsoft-64/1f9d7-1f3fd.png differ
diff --git a/img-microsoft-64/1f9d7-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f9d7-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..e17e7b3972
Binary files /dev/null and b/img-microsoft-64/1f9d7-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d7-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f9d7-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a913c96a63
Binary files /dev/null and b/img-microsoft-64/1f9d7-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d7-1f3fe.png b/img-microsoft-64/1f9d7-1f3fe.png
new file mode 100644
index 0000000000..73036c4c2b
Binary files /dev/null and b/img-microsoft-64/1f9d7-1f3fe.png differ
diff --git a/img-microsoft-64/1f9d7-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f9d7-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..7df817237c
Binary files /dev/null and b/img-microsoft-64/1f9d7-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d7-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f9d7-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..bc1ebb0b1d
Binary files /dev/null and b/img-microsoft-64/1f9d7-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d7-1f3ff.png b/img-microsoft-64/1f9d7-1f3ff.png
new file mode 100644
index 0000000000..36a7f753eb
Binary files /dev/null and b/img-microsoft-64/1f9d7-1f3ff.png differ
diff --git a/img-microsoft-64/1f9d7-200d-2640-fe0f.png b/img-microsoft-64/1f9d7-200d-2640-fe0f.png
new file mode 100644
index 0000000000..e2740971bf
Binary files /dev/null and b/img-microsoft-64/1f9d7-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d7-200d-2642-fe0f.png b/img-microsoft-64/1f9d7-200d-2642-fe0f.png
new file mode 100644
index 0000000000..1820e1cdd2
Binary files /dev/null and b/img-microsoft-64/1f9d7-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d7.png b/img-microsoft-64/1f9d7.png
new file mode 100644
index 0000000000..f1cfbf86f8
Binary files /dev/null and b/img-microsoft-64/1f9d7.png differ
diff --git a/img-microsoft-64/1f9d8-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f9d8-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..7c77439086
Binary files /dev/null and b/img-microsoft-64/1f9d8-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d8-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f9d8-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..2a770bee3e
Binary files /dev/null and b/img-microsoft-64/1f9d8-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d8-1f3fb.png b/img-microsoft-64/1f9d8-1f3fb.png
new file mode 100644
index 0000000000..62f3cfec99
Binary files /dev/null and b/img-microsoft-64/1f9d8-1f3fb.png differ
diff --git a/img-microsoft-64/1f9d8-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f9d8-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..57e2fcf55c
Binary files /dev/null and b/img-microsoft-64/1f9d8-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d8-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f9d8-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..eecd71bdca
Binary files /dev/null and b/img-microsoft-64/1f9d8-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d8-1f3fc.png b/img-microsoft-64/1f9d8-1f3fc.png
new file mode 100644
index 0000000000..6eb6806a26
Binary files /dev/null and b/img-microsoft-64/1f9d8-1f3fc.png differ
diff --git a/img-microsoft-64/1f9d8-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f9d8-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..3cbd7e4936
Binary files /dev/null and b/img-microsoft-64/1f9d8-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d8-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f9d8-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..2ac85aeee1
Binary files /dev/null and b/img-microsoft-64/1f9d8-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d8-1f3fd.png b/img-microsoft-64/1f9d8-1f3fd.png
new file mode 100644
index 0000000000..c4db248958
Binary files /dev/null and b/img-microsoft-64/1f9d8-1f3fd.png differ
diff --git a/img-microsoft-64/1f9d8-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f9d8-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..e0d959acad
Binary files /dev/null and b/img-microsoft-64/1f9d8-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d8-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f9d8-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f3bd6e8b37
Binary files /dev/null and b/img-microsoft-64/1f9d8-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d8-1f3fe.png b/img-microsoft-64/1f9d8-1f3fe.png
new file mode 100644
index 0000000000..a9e30dc29f
Binary files /dev/null and b/img-microsoft-64/1f9d8-1f3fe.png differ
diff --git a/img-microsoft-64/1f9d8-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f9d8-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..83623ade85
Binary files /dev/null and b/img-microsoft-64/1f9d8-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d8-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f9d8-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..5ad7511a0a
Binary files /dev/null and b/img-microsoft-64/1f9d8-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d8-1f3ff.png b/img-microsoft-64/1f9d8-1f3ff.png
new file mode 100644
index 0000000000..fc83f725db
Binary files /dev/null and b/img-microsoft-64/1f9d8-1f3ff.png differ
diff --git a/img-microsoft-64/1f9d8-200d-2640-fe0f.png b/img-microsoft-64/1f9d8-200d-2640-fe0f.png
new file mode 100644
index 0000000000..5d98cbedb8
Binary files /dev/null and b/img-microsoft-64/1f9d8-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d8-200d-2642-fe0f.png b/img-microsoft-64/1f9d8-200d-2642-fe0f.png
new file mode 100644
index 0000000000..518ee48de5
Binary files /dev/null and b/img-microsoft-64/1f9d8-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d8.png b/img-microsoft-64/1f9d8.png
new file mode 100644
index 0000000000..511eafcffa
Binary files /dev/null and b/img-microsoft-64/1f9d8.png differ
diff --git a/img-microsoft-64/1f9d9-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f9d9-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..e64bc192be
Binary files /dev/null and b/img-microsoft-64/1f9d9-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d9-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f9d9-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e486148e96
Binary files /dev/null and b/img-microsoft-64/1f9d9-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d9-1f3fb.png b/img-microsoft-64/1f9d9-1f3fb.png
new file mode 100644
index 0000000000..aaaf8e4a99
Binary files /dev/null and b/img-microsoft-64/1f9d9-1f3fb.png differ
diff --git a/img-microsoft-64/1f9d9-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f9d9-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..879452117e
Binary files /dev/null and b/img-microsoft-64/1f9d9-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d9-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f9d9-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..92fc8d0377
Binary files /dev/null and b/img-microsoft-64/1f9d9-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d9-1f3fc.png b/img-microsoft-64/1f9d9-1f3fc.png
new file mode 100644
index 0000000000..264478cda6
Binary files /dev/null and b/img-microsoft-64/1f9d9-1f3fc.png differ
diff --git a/img-microsoft-64/1f9d9-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f9d9-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..0190f7d040
Binary files /dev/null and b/img-microsoft-64/1f9d9-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d9-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f9d9-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..9af092f4dd
Binary files /dev/null and b/img-microsoft-64/1f9d9-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d9-1f3fd.png b/img-microsoft-64/1f9d9-1f3fd.png
new file mode 100644
index 0000000000..0f56b70ca2
Binary files /dev/null and b/img-microsoft-64/1f9d9-1f3fd.png differ
diff --git a/img-microsoft-64/1f9d9-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f9d9-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..e6ab36745a
Binary files /dev/null and b/img-microsoft-64/1f9d9-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d9-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f9d9-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f9e12db4ea
Binary files /dev/null and b/img-microsoft-64/1f9d9-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d9-1f3fe.png b/img-microsoft-64/1f9d9-1f3fe.png
new file mode 100644
index 0000000000..1b3da21c12
Binary files /dev/null and b/img-microsoft-64/1f9d9-1f3fe.png differ
diff --git a/img-microsoft-64/1f9d9-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f9d9-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..4a0f2920c9
Binary files /dev/null and b/img-microsoft-64/1f9d9-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d9-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f9d9-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..84e96b367f
Binary files /dev/null and b/img-microsoft-64/1f9d9-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d9-1f3ff.png b/img-microsoft-64/1f9d9-1f3ff.png
new file mode 100644
index 0000000000..a15841a200
Binary files /dev/null and b/img-microsoft-64/1f9d9-1f3ff.png differ
diff --git a/img-microsoft-64/1f9d9-200d-2640-fe0f.png b/img-microsoft-64/1f9d9-200d-2640-fe0f.png
new file mode 100644
index 0000000000..9e46346488
Binary files /dev/null and b/img-microsoft-64/1f9d9-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9d9-200d-2642-fe0f.png b/img-microsoft-64/1f9d9-200d-2642-fe0f.png
new file mode 100644
index 0000000000..c314cd6200
Binary files /dev/null and b/img-microsoft-64/1f9d9-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9d9.png b/img-microsoft-64/1f9d9.png
new file mode 100644
index 0000000000..723acafd40
Binary files /dev/null and b/img-microsoft-64/1f9d9.png differ
diff --git a/img-microsoft-64/1f9da-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f9da-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..b9be9093e1
Binary files /dev/null and b/img-microsoft-64/1f9da-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9da-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f9da-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..8ae856fd45
Binary files /dev/null and b/img-microsoft-64/1f9da-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9da-1f3fb.png b/img-microsoft-64/1f9da-1f3fb.png
new file mode 100644
index 0000000000..257429928e
Binary files /dev/null and b/img-microsoft-64/1f9da-1f3fb.png differ
diff --git a/img-microsoft-64/1f9da-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f9da-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..7d21e0dc91
Binary files /dev/null and b/img-microsoft-64/1f9da-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9da-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f9da-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..d8d777bb4d
Binary files /dev/null and b/img-microsoft-64/1f9da-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9da-1f3fc.png b/img-microsoft-64/1f9da-1f3fc.png
new file mode 100644
index 0000000000..e90219685d
Binary files /dev/null and b/img-microsoft-64/1f9da-1f3fc.png differ
diff --git a/img-microsoft-64/1f9da-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f9da-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..1107d8ac64
Binary files /dev/null and b/img-microsoft-64/1f9da-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9da-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f9da-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..5af7df85b4
Binary files /dev/null and b/img-microsoft-64/1f9da-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9da-1f3fd.png b/img-microsoft-64/1f9da-1f3fd.png
new file mode 100644
index 0000000000..3ddc13efaf
Binary files /dev/null and b/img-microsoft-64/1f9da-1f3fd.png differ
diff --git a/img-microsoft-64/1f9da-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f9da-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..c90ae1906d
Binary files /dev/null and b/img-microsoft-64/1f9da-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9da-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f9da-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..2694ca0ea3
Binary files /dev/null and b/img-microsoft-64/1f9da-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9da-1f3fe.png b/img-microsoft-64/1f9da-1f3fe.png
new file mode 100644
index 0000000000..3bb70cfd54
Binary files /dev/null and b/img-microsoft-64/1f9da-1f3fe.png differ
diff --git a/img-microsoft-64/1f9da-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f9da-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..3bb6fb58eb
Binary files /dev/null and b/img-microsoft-64/1f9da-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9da-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f9da-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..a343140cc8
Binary files /dev/null and b/img-microsoft-64/1f9da-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9da-1f3ff.png b/img-microsoft-64/1f9da-1f3ff.png
new file mode 100644
index 0000000000..d4eaf5f95a
Binary files /dev/null and b/img-microsoft-64/1f9da-1f3ff.png differ
diff --git a/img-microsoft-64/1f9da-200d-2640-fe0f.png b/img-microsoft-64/1f9da-200d-2640-fe0f.png
new file mode 100644
index 0000000000..29cd274219
Binary files /dev/null and b/img-microsoft-64/1f9da-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9da-200d-2642-fe0f.png b/img-microsoft-64/1f9da-200d-2642-fe0f.png
new file mode 100644
index 0000000000..de5fc3b56e
Binary files /dev/null and b/img-microsoft-64/1f9da-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9da.png b/img-microsoft-64/1f9da.png
new file mode 100644
index 0000000000..9e92ee1bb9
Binary files /dev/null and b/img-microsoft-64/1f9da.png differ
diff --git a/img-microsoft-64/1f9db-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f9db-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..fe17065031
Binary files /dev/null and b/img-microsoft-64/1f9db-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9db-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f9db-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..b74e388a42
Binary files /dev/null and b/img-microsoft-64/1f9db-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9db-1f3fb.png b/img-microsoft-64/1f9db-1f3fb.png
new file mode 100644
index 0000000000..c2eabdef2c
Binary files /dev/null and b/img-microsoft-64/1f9db-1f3fb.png differ
diff --git a/img-microsoft-64/1f9db-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f9db-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..536856492c
Binary files /dev/null and b/img-microsoft-64/1f9db-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9db-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f9db-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..89c36366d6
Binary files /dev/null and b/img-microsoft-64/1f9db-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9db-1f3fc.png b/img-microsoft-64/1f9db-1f3fc.png
new file mode 100644
index 0000000000..7519254d63
Binary files /dev/null and b/img-microsoft-64/1f9db-1f3fc.png differ
diff --git a/img-microsoft-64/1f9db-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f9db-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..5f868f824d
Binary files /dev/null and b/img-microsoft-64/1f9db-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9db-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f9db-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e711ed53f5
Binary files /dev/null and b/img-microsoft-64/1f9db-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9db-1f3fd.png b/img-microsoft-64/1f9db-1f3fd.png
new file mode 100644
index 0000000000..71fb33a904
Binary files /dev/null and b/img-microsoft-64/1f9db-1f3fd.png differ
diff --git a/img-microsoft-64/1f9db-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f9db-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..005811b0b4
Binary files /dev/null and b/img-microsoft-64/1f9db-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9db-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f9db-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..fea49d9716
Binary files /dev/null and b/img-microsoft-64/1f9db-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9db-1f3fe.png b/img-microsoft-64/1f9db-1f3fe.png
new file mode 100644
index 0000000000..d85338d1d5
Binary files /dev/null and b/img-microsoft-64/1f9db-1f3fe.png differ
diff --git a/img-microsoft-64/1f9db-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f9db-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..58e7e4e01a
Binary files /dev/null and b/img-microsoft-64/1f9db-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9db-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f9db-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..588a94b9bc
Binary files /dev/null and b/img-microsoft-64/1f9db-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9db-1f3ff.png b/img-microsoft-64/1f9db-1f3ff.png
new file mode 100644
index 0000000000..15b753f85a
Binary files /dev/null and b/img-microsoft-64/1f9db-1f3ff.png differ
diff --git a/img-microsoft-64/1f9db-200d-2640-fe0f.png b/img-microsoft-64/1f9db-200d-2640-fe0f.png
new file mode 100644
index 0000000000..db7d1fcd6e
Binary files /dev/null and b/img-microsoft-64/1f9db-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9db-200d-2642-fe0f.png b/img-microsoft-64/1f9db-200d-2642-fe0f.png
new file mode 100644
index 0000000000..8bd7fc0654
Binary files /dev/null and b/img-microsoft-64/1f9db-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9db.png b/img-microsoft-64/1f9db.png
new file mode 100644
index 0000000000..a55113117b
Binary files /dev/null and b/img-microsoft-64/1f9db.png differ
diff --git a/img-microsoft-64/1f9dc-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f9dc-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..ff6aa784f2
Binary files /dev/null and b/img-microsoft-64/1f9dc-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9dc-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f9dc-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..bd8ad51d5d
Binary files /dev/null and b/img-microsoft-64/1f9dc-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9dc-1f3fb.png b/img-microsoft-64/1f9dc-1f3fb.png
new file mode 100644
index 0000000000..8a01b25aca
Binary files /dev/null and b/img-microsoft-64/1f9dc-1f3fb.png differ
diff --git a/img-microsoft-64/1f9dc-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f9dc-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..2b8863a179
Binary files /dev/null and b/img-microsoft-64/1f9dc-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9dc-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f9dc-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..547153bb6c
Binary files /dev/null and b/img-microsoft-64/1f9dc-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9dc-1f3fc.png b/img-microsoft-64/1f9dc-1f3fc.png
new file mode 100644
index 0000000000..f21792d2ea
Binary files /dev/null and b/img-microsoft-64/1f9dc-1f3fc.png differ
diff --git a/img-microsoft-64/1f9dc-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f9dc-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..b81590cae6
Binary files /dev/null and b/img-microsoft-64/1f9dc-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9dc-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f9dc-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..328f2c1f5f
Binary files /dev/null and b/img-microsoft-64/1f9dc-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9dc-1f3fd.png b/img-microsoft-64/1f9dc-1f3fd.png
new file mode 100644
index 0000000000..ba0d379fac
Binary files /dev/null and b/img-microsoft-64/1f9dc-1f3fd.png differ
diff --git a/img-microsoft-64/1f9dc-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f9dc-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..2328815ea7
Binary files /dev/null and b/img-microsoft-64/1f9dc-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9dc-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f9dc-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..c1112d55c1
Binary files /dev/null and b/img-microsoft-64/1f9dc-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9dc-1f3fe.png b/img-microsoft-64/1f9dc-1f3fe.png
new file mode 100644
index 0000000000..164203886d
Binary files /dev/null and b/img-microsoft-64/1f9dc-1f3fe.png differ
diff --git a/img-microsoft-64/1f9dc-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f9dc-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..8acb3aab08
Binary files /dev/null and b/img-microsoft-64/1f9dc-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9dc-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f9dc-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..bc49266b3e
Binary files /dev/null and b/img-microsoft-64/1f9dc-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9dc-1f3ff.png b/img-microsoft-64/1f9dc-1f3ff.png
new file mode 100644
index 0000000000..90a5cf8686
Binary files /dev/null and b/img-microsoft-64/1f9dc-1f3ff.png differ
diff --git a/img-microsoft-64/1f9dc-200d-2640-fe0f.png b/img-microsoft-64/1f9dc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..65e1e1ac30
Binary files /dev/null and b/img-microsoft-64/1f9dc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9dc-200d-2642-fe0f.png b/img-microsoft-64/1f9dc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..313e765cb6
Binary files /dev/null and b/img-microsoft-64/1f9dc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9dc.png b/img-microsoft-64/1f9dc.png
new file mode 100644
index 0000000000..1d1ccd9bbb
Binary files /dev/null and b/img-microsoft-64/1f9dc.png differ
diff --git a/img-microsoft-64/1f9dd-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/1f9dd-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..19cd8fd026
Binary files /dev/null and b/img-microsoft-64/1f9dd-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9dd-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/1f9dd-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..0c9e948481
Binary files /dev/null and b/img-microsoft-64/1f9dd-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9dd-1f3fb.png b/img-microsoft-64/1f9dd-1f3fb.png
new file mode 100644
index 0000000000..af061c7b2e
Binary files /dev/null and b/img-microsoft-64/1f9dd-1f3fb.png differ
diff --git a/img-microsoft-64/1f9dd-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/1f9dd-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..ab009400f1
Binary files /dev/null and b/img-microsoft-64/1f9dd-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9dd-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/1f9dd-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..8626c524fb
Binary files /dev/null and b/img-microsoft-64/1f9dd-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9dd-1f3fc.png b/img-microsoft-64/1f9dd-1f3fc.png
new file mode 100644
index 0000000000..a6f2c8d5f9
Binary files /dev/null and b/img-microsoft-64/1f9dd-1f3fc.png differ
diff --git a/img-microsoft-64/1f9dd-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/1f9dd-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..5bd054f1ee
Binary files /dev/null and b/img-microsoft-64/1f9dd-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9dd-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/1f9dd-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..32c69afcf3
Binary files /dev/null and b/img-microsoft-64/1f9dd-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9dd-1f3fd.png b/img-microsoft-64/1f9dd-1f3fd.png
new file mode 100644
index 0000000000..08e85c3709
Binary files /dev/null and b/img-microsoft-64/1f9dd-1f3fd.png differ
diff --git a/img-microsoft-64/1f9dd-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/1f9dd-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..6786deae79
Binary files /dev/null and b/img-microsoft-64/1f9dd-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9dd-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/1f9dd-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..1b5e113cf6
Binary files /dev/null and b/img-microsoft-64/1f9dd-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9dd-1f3fe.png b/img-microsoft-64/1f9dd-1f3fe.png
new file mode 100644
index 0000000000..54204fd75b
Binary files /dev/null and b/img-microsoft-64/1f9dd-1f3fe.png differ
diff --git a/img-microsoft-64/1f9dd-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/1f9dd-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..93e0a30c35
Binary files /dev/null and b/img-microsoft-64/1f9dd-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9dd-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/1f9dd-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..763b21284f
Binary files /dev/null and b/img-microsoft-64/1f9dd-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9dd-1f3ff.png b/img-microsoft-64/1f9dd-1f3ff.png
new file mode 100644
index 0000000000..7b72f742fd
Binary files /dev/null and b/img-microsoft-64/1f9dd-1f3ff.png differ
diff --git a/img-microsoft-64/1f9dd-200d-2640-fe0f.png b/img-microsoft-64/1f9dd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..6f086d22af
Binary files /dev/null and b/img-microsoft-64/1f9dd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9dd-200d-2642-fe0f.png b/img-microsoft-64/1f9dd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..95ad021a49
Binary files /dev/null and b/img-microsoft-64/1f9dd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9dd.png b/img-microsoft-64/1f9dd.png
new file mode 100644
index 0000000000..3b870030e3
Binary files /dev/null and b/img-microsoft-64/1f9dd.png differ
diff --git a/img-microsoft-64/1f9de-200d-2640-fe0f.png b/img-microsoft-64/1f9de-200d-2640-fe0f.png
new file mode 100644
index 0000000000..f24d98eefe
Binary files /dev/null and b/img-microsoft-64/1f9de-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9de-200d-2642-fe0f.png b/img-microsoft-64/1f9de-200d-2642-fe0f.png
new file mode 100644
index 0000000000..e0fd470334
Binary files /dev/null and b/img-microsoft-64/1f9de-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9de.png b/img-microsoft-64/1f9de.png
new file mode 100644
index 0000000000..f1021e89a5
Binary files /dev/null and b/img-microsoft-64/1f9de.png differ
diff --git a/img-microsoft-64/1f9df-200d-2640-fe0f.png b/img-microsoft-64/1f9df-200d-2640-fe0f.png
new file mode 100644
index 0000000000..a1bdb8a259
Binary files /dev/null and b/img-microsoft-64/1f9df-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/1f9df-200d-2642-fe0f.png b/img-microsoft-64/1f9df-200d-2642-fe0f.png
new file mode 100644
index 0000000000..ca6edb5342
Binary files /dev/null and b/img-microsoft-64/1f9df-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/1f9df.png b/img-microsoft-64/1f9df.png
new file mode 100644
index 0000000000..8a0368eae6
Binary files /dev/null and b/img-microsoft-64/1f9df.png differ
diff --git a/img-microsoft-64/1f9e0.png b/img-microsoft-64/1f9e0.png
new file mode 100644
index 0000000000..ee70cf1e95
Binary files /dev/null and b/img-microsoft-64/1f9e0.png differ
diff --git a/img-microsoft-64/1f9e1.png b/img-microsoft-64/1f9e1.png
new file mode 100644
index 0000000000..a37b0ef929
Binary files /dev/null and b/img-microsoft-64/1f9e1.png differ
diff --git a/img-microsoft-64/1f9e2.png b/img-microsoft-64/1f9e2.png
new file mode 100644
index 0000000000..a76d243e52
Binary files /dev/null and b/img-microsoft-64/1f9e2.png differ
diff --git a/img-microsoft-64/1f9e3.png b/img-microsoft-64/1f9e3.png
new file mode 100644
index 0000000000..dd0d85e2bb
Binary files /dev/null and b/img-microsoft-64/1f9e3.png differ
diff --git a/img-microsoft-64/1f9e4.png b/img-microsoft-64/1f9e4.png
new file mode 100644
index 0000000000..6b209fbe28
Binary files /dev/null and b/img-microsoft-64/1f9e4.png differ
diff --git a/img-microsoft-64/1f9e5.png b/img-microsoft-64/1f9e5.png
new file mode 100644
index 0000000000..1919d5bcfb
Binary files /dev/null and b/img-microsoft-64/1f9e5.png differ
diff --git a/img-microsoft-64/1f9e6.png b/img-microsoft-64/1f9e6.png
new file mode 100644
index 0000000000..368406eb9a
Binary files /dev/null and b/img-microsoft-64/1f9e6.png differ
diff --git a/img-microsoft-64/1f9e7.png b/img-microsoft-64/1f9e7.png
new file mode 100644
index 0000000000..d5bd9bd444
Binary files /dev/null and b/img-microsoft-64/1f9e7.png differ
diff --git a/img-microsoft-64/1f9e8.png b/img-microsoft-64/1f9e8.png
new file mode 100644
index 0000000000..418f5bf81e
Binary files /dev/null and b/img-microsoft-64/1f9e8.png differ
diff --git a/img-microsoft-64/1f9e9.png b/img-microsoft-64/1f9e9.png
new file mode 100644
index 0000000000..b1b890c88f
Binary files /dev/null and b/img-microsoft-64/1f9e9.png differ
diff --git a/img-microsoft-64/1f9ea.png b/img-microsoft-64/1f9ea.png
new file mode 100644
index 0000000000..ad046cd3a8
Binary files /dev/null and b/img-microsoft-64/1f9ea.png differ
diff --git a/img-microsoft-64/1f9eb.png b/img-microsoft-64/1f9eb.png
new file mode 100644
index 0000000000..e7b53c94e0
Binary files /dev/null and b/img-microsoft-64/1f9eb.png differ
diff --git a/img-microsoft-64/1f9ec.png b/img-microsoft-64/1f9ec.png
new file mode 100644
index 0000000000..125dcda339
Binary files /dev/null and b/img-microsoft-64/1f9ec.png differ
diff --git a/img-microsoft-64/1f9ed.png b/img-microsoft-64/1f9ed.png
new file mode 100644
index 0000000000..cf3584b8ab
Binary files /dev/null and b/img-microsoft-64/1f9ed.png differ
diff --git a/img-microsoft-64/1f9ee.png b/img-microsoft-64/1f9ee.png
new file mode 100644
index 0000000000..465ff5d897
Binary files /dev/null and b/img-microsoft-64/1f9ee.png differ
diff --git a/img-microsoft-64/1f9ef.png b/img-microsoft-64/1f9ef.png
new file mode 100644
index 0000000000..5096b51ec9
Binary files /dev/null and b/img-microsoft-64/1f9ef.png differ
diff --git a/img-microsoft-64/1f9f0.png b/img-microsoft-64/1f9f0.png
new file mode 100644
index 0000000000..e6bcd98865
Binary files /dev/null and b/img-microsoft-64/1f9f0.png differ
diff --git a/img-microsoft-64/1f9f1.png b/img-microsoft-64/1f9f1.png
new file mode 100644
index 0000000000..ea4049fc9d
Binary files /dev/null and b/img-microsoft-64/1f9f1.png differ
diff --git a/img-microsoft-64/1f9f2.png b/img-microsoft-64/1f9f2.png
new file mode 100644
index 0000000000..97bd490496
Binary files /dev/null and b/img-microsoft-64/1f9f2.png differ
diff --git a/img-microsoft-64/1f9f3.png b/img-microsoft-64/1f9f3.png
new file mode 100644
index 0000000000..4761dabbdf
Binary files /dev/null and b/img-microsoft-64/1f9f3.png differ
diff --git a/img-microsoft-64/1f9f4.png b/img-microsoft-64/1f9f4.png
new file mode 100644
index 0000000000..056f60c6c2
Binary files /dev/null and b/img-microsoft-64/1f9f4.png differ
diff --git a/img-microsoft-64/1f9f5.png b/img-microsoft-64/1f9f5.png
new file mode 100644
index 0000000000..5064793917
Binary files /dev/null and b/img-microsoft-64/1f9f5.png differ
diff --git a/img-microsoft-64/1f9f6.png b/img-microsoft-64/1f9f6.png
new file mode 100644
index 0000000000..bfe82b2ca1
Binary files /dev/null and b/img-microsoft-64/1f9f6.png differ
diff --git a/img-microsoft-64/1f9f7.png b/img-microsoft-64/1f9f7.png
new file mode 100644
index 0000000000..7bfa477842
Binary files /dev/null and b/img-microsoft-64/1f9f7.png differ
diff --git a/img-microsoft-64/1f9f8.png b/img-microsoft-64/1f9f8.png
new file mode 100644
index 0000000000..b1ee61a338
Binary files /dev/null and b/img-microsoft-64/1f9f8.png differ
diff --git a/img-microsoft-64/1f9f9.png b/img-microsoft-64/1f9f9.png
new file mode 100644
index 0000000000..c4a500a035
Binary files /dev/null and b/img-microsoft-64/1f9f9.png differ
diff --git a/img-microsoft-64/1f9fa.png b/img-microsoft-64/1f9fa.png
new file mode 100644
index 0000000000..78e267ca34
Binary files /dev/null and b/img-microsoft-64/1f9fa.png differ
diff --git a/img-microsoft-64/1f9fb.png b/img-microsoft-64/1f9fb.png
new file mode 100644
index 0000000000..7f81f8988f
Binary files /dev/null and b/img-microsoft-64/1f9fb.png differ
diff --git a/img-microsoft-64/1f9fc.png b/img-microsoft-64/1f9fc.png
new file mode 100644
index 0000000000..9e707c6bf7
Binary files /dev/null and b/img-microsoft-64/1f9fc.png differ
diff --git a/img-microsoft-64/1f9fd.png b/img-microsoft-64/1f9fd.png
new file mode 100644
index 0000000000..c25f3a59a0
Binary files /dev/null and b/img-microsoft-64/1f9fd.png differ
diff --git a/img-microsoft-64/1f9fe.png b/img-microsoft-64/1f9fe.png
new file mode 100644
index 0000000000..bee74b1f20
Binary files /dev/null and b/img-microsoft-64/1f9fe.png differ
diff --git a/img-microsoft-64/1f9ff.png b/img-microsoft-64/1f9ff.png
new file mode 100644
index 0000000000..72f8d012af
Binary files /dev/null and b/img-microsoft-64/1f9ff.png differ
diff --git a/img-microsoft-64/1fa70.png b/img-microsoft-64/1fa70.png
new file mode 100644
index 0000000000..29084323d8
Binary files /dev/null and b/img-microsoft-64/1fa70.png differ
diff --git a/img-microsoft-64/1fa71.png b/img-microsoft-64/1fa71.png
new file mode 100644
index 0000000000..1dfc3dfecf
Binary files /dev/null and b/img-microsoft-64/1fa71.png differ
diff --git a/img-microsoft-64/1fa72.png b/img-microsoft-64/1fa72.png
new file mode 100644
index 0000000000..237558f2e5
Binary files /dev/null and b/img-microsoft-64/1fa72.png differ
diff --git a/img-microsoft-64/1fa73.png b/img-microsoft-64/1fa73.png
new file mode 100644
index 0000000000..2eb4a9a4c2
Binary files /dev/null and b/img-microsoft-64/1fa73.png differ
diff --git a/img-microsoft-64/1fa74.png b/img-microsoft-64/1fa74.png
new file mode 100644
index 0000000000..e2558b0efa
Binary files /dev/null and b/img-microsoft-64/1fa74.png differ
diff --git a/img-microsoft-64/1fa78.png b/img-microsoft-64/1fa78.png
new file mode 100644
index 0000000000..9fe5d6c5e2
Binary files /dev/null and b/img-microsoft-64/1fa78.png differ
diff --git a/img-microsoft-64/1fa79.png b/img-microsoft-64/1fa79.png
new file mode 100644
index 0000000000..17f4e1e011
Binary files /dev/null and b/img-microsoft-64/1fa79.png differ
diff --git a/img-microsoft-64/1fa7a.png b/img-microsoft-64/1fa7a.png
new file mode 100644
index 0000000000..2e23cc2953
Binary files /dev/null and b/img-microsoft-64/1fa7a.png differ
diff --git a/img-microsoft-64/1fa7b.png b/img-microsoft-64/1fa7b.png
new file mode 100644
index 0000000000..231e700db9
Binary files /dev/null and b/img-microsoft-64/1fa7b.png differ
diff --git a/img-microsoft-64/1fa7c.png b/img-microsoft-64/1fa7c.png
new file mode 100644
index 0000000000..42b949355c
Binary files /dev/null and b/img-microsoft-64/1fa7c.png differ
diff --git a/img-microsoft-64/1fa80.png b/img-microsoft-64/1fa80.png
new file mode 100644
index 0000000000..a0ec02f492
Binary files /dev/null and b/img-microsoft-64/1fa80.png differ
diff --git a/img-microsoft-64/1fa81.png b/img-microsoft-64/1fa81.png
new file mode 100644
index 0000000000..30f8c8e538
Binary files /dev/null and b/img-microsoft-64/1fa81.png differ
diff --git a/img-microsoft-64/1fa82.png b/img-microsoft-64/1fa82.png
new file mode 100644
index 0000000000..c3093770bd
Binary files /dev/null and b/img-microsoft-64/1fa82.png differ
diff --git a/img-microsoft-64/1fa83.png b/img-microsoft-64/1fa83.png
new file mode 100644
index 0000000000..77f3307e8c
Binary files /dev/null and b/img-microsoft-64/1fa83.png differ
diff --git a/img-microsoft-64/1fa84.png b/img-microsoft-64/1fa84.png
new file mode 100644
index 0000000000..41a927aa3e
Binary files /dev/null and b/img-microsoft-64/1fa84.png differ
diff --git a/img-microsoft-64/1fa85.png b/img-microsoft-64/1fa85.png
new file mode 100644
index 0000000000..5b5b2f8db0
Binary files /dev/null and b/img-microsoft-64/1fa85.png differ
diff --git a/img-microsoft-64/1fa86.png b/img-microsoft-64/1fa86.png
new file mode 100644
index 0000000000..f419acfd95
Binary files /dev/null and b/img-microsoft-64/1fa86.png differ
diff --git a/img-microsoft-64/1fa90.png b/img-microsoft-64/1fa90.png
new file mode 100644
index 0000000000..a9e40bb2d6
Binary files /dev/null and b/img-microsoft-64/1fa90.png differ
diff --git a/img-microsoft-64/1fa91.png b/img-microsoft-64/1fa91.png
new file mode 100644
index 0000000000..69d49d8102
Binary files /dev/null and b/img-microsoft-64/1fa91.png differ
diff --git a/img-microsoft-64/1fa92.png b/img-microsoft-64/1fa92.png
new file mode 100644
index 0000000000..b1115d115c
Binary files /dev/null and b/img-microsoft-64/1fa92.png differ
diff --git a/img-microsoft-64/1fa93.png b/img-microsoft-64/1fa93.png
new file mode 100644
index 0000000000..e8766ed90e
Binary files /dev/null and b/img-microsoft-64/1fa93.png differ
diff --git a/img-microsoft-64/1fa94.png b/img-microsoft-64/1fa94.png
new file mode 100644
index 0000000000..0f2e1d9a81
Binary files /dev/null and b/img-microsoft-64/1fa94.png differ
diff --git a/img-microsoft-64/1fa95.png b/img-microsoft-64/1fa95.png
new file mode 100644
index 0000000000..21d4f5d69d
Binary files /dev/null and b/img-microsoft-64/1fa95.png differ
diff --git a/img-microsoft-64/1fa96.png b/img-microsoft-64/1fa96.png
new file mode 100644
index 0000000000..29d6fb72dc
Binary files /dev/null and b/img-microsoft-64/1fa96.png differ
diff --git a/img-microsoft-64/1fa97.png b/img-microsoft-64/1fa97.png
new file mode 100644
index 0000000000..7f98e34cd4
Binary files /dev/null and b/img-microsoft-64/1fa97.png differ
diff --git a/img-microsoft-64/1fa98.png b/img-microsoft-64/1fa98.png
new file mode 100644
index 0000000000..7129c9e7e2
Binary files /dev/null and b/img-microsoft-64/1fa98.png differ
diff --git a/img-microsoft-64/1fa99.png b/img-microsoft-64/1fa99.png
new file mode 100644
index 0000000000..e903369574
Binary files /dev/null and b/img-microsoft-64/1fa99.png differ
diff --git a/img-microsoft-64/1fa9a.png b/img-microsoft-64/1fa9a.png
new file mode 100644
index 0000000000..c8e1d3af14
Binary files /dev/null and b/img-microsoft-64/1fa9a.png differ
diff --git a/img-microsoft-64/1fa9b.png b/img-microsoft-64/1fa9b.png
new file mode 100644
index 0000000000..6e3d5e48a5
Binary files /dev/null and b/img-microsoft-64/1fa9b.png differ
diff --git a/img-microsoft-64/1fa9c.png b/img-microsoft-64/1fa9c.png
new file mode 100644
index 0000000000..357e0547ee
Binary files /dev/null and b/img-microsoft-64/1fa9c.png differ
diff --git a/img-microsoft-64/1fa9d.png b/img-microsoft-64/1fa9d.png
new file mode 100644
index 0000000000..1f35c81728
Binary files /dev/null and b/img-microsoft-64/1fa9d.png differ
diff --git a/img-microsoft-64/1fa9e.png b/img-microsoft-64/1fa9e.png
new file mode 100644
index 0000000000..1c50579af6
Binary files /dev/null and b/img-microsoft-64/1fa9e.png differ
diff --git a/img-microsoft-64/1fa9f.png b/img-microsoft-64/1fa9f.png
new file mode 100644
index 0000000000..a490e435ce
Binary files /dev/null and b/img-microsoft-64/1fa9f.png differ
diff --git a/img-microsoft-64/1faa0.png b/img-microsoft-64/1faa0.png
new file mode 100644
index 0000000000..1b1cf76ec2
Binary files /dev/null and b/img-microsoft-64/1faa0.png differ
diff --git a/img-microsoft-64/1faa1.png b/img-microsoft-64/1faa1.png
new file mode 100644
index 0000000000..8b61eca9d5
Binary files /dev/null and b/img-microsoft-64/1faa1.png differ
diff --git a/img-microsoft-64/1faa2.png b/img-microsoft-64/1faa2.png
new file mode 100644
index 0000000000..ac133ad261
Binary files /dev/null and b/img-microsoft-64/1faa2.png differ
diff --git a/img-microsoft-64/1faa3.png b/img-microsoft-64/1faa3.png
new file mode 100644
index 0000000000..0efc09498e
Binary files /dev/null and b/img-microsoft-64/1faa3.png differ
diff --git a/img-microsoft-64/1faa4.png b/img-microsoft-64/1faa4.png
new file mode 100644
index 0000000000..3bd0bbfcd8
Binary files /dev/null and b/img-microsoft-64/1faa4.png differ
diff --git a/img-microsoft-64/1faa5.png b/img-microsoft-64/1faa5.png
new file mode 100644
index 0000000000..a87247e543
Binary files /dev/null and b/img-microsoft-64/1faa5.png differ
diff --git a/img-microsoft-64/1faa6.png b/img-microsoft-64/1faa6.png
new file mode 100644
index 0000000000..a2a610b895
Binary files /dev/null and b/img-microsoft-64/1faa6.png differ
diff --git a/img-microsoft-64/1faa7.png b/img-microsoft-64/1faa7.png
new file mode 100644
index 0000000000..35b0e59063
Binary files /dev/null and b/img-microsoft-64/1faa7.png differ
diff --git a/img-microsoft-64/1faa8.png b/img-microsoft-64/1faa8.png
new file mode 100644
index 0000000000..4bad176aa1
Binary files /dev/null and b/img-microsoft-64/1faa8.png differ
diff --git a/img-microsoft-64/1faa9.png b/img-microsoft-64/1faa9.png
new file mode 100644
index 0000000000..9cfecb9642
Binary files /dev/null and b/img-microsoft-64/1faa9.png differ
diff --git a/img-microsoft-64/1faaa.png b/img-microsoft-64/1faaa.png
new file mode 100644
index 0000000000..f8d09cb4c7
Binary files /dev/null and b/img-microsoft-64/1faaa.png differ
diff --git a/img-microsoft-64/1faab.png b/img-microsoft-64/1faab.png
new file mode 100644
index 0000000000..4ab212f5a7
Binary files /dev/null and b/img-microsoft-64/1faab.png differ
diff --git a/img-microsoft-64/1faac.png b/img-microsoft-64/1faac.png
new file mode 100644
index 0000000000..30b42735b9
Binary files /dev/null and b/img-microsoft-64/1faac.png differ
diff --git a/img-microsoft-64/1fab0.png b/img-microsoft-64/1fab0.png
new file mode 100644
index 0000000000..e4cc769c7a
Binary files /dev/null and b/img-microsoft-64/1fab0.png differ
diff --git a/img-microsoft-64/1fab1.png b/img-microsoft-64/1fab1.png
new file mode 100644
index 0000000000..bf0ef1ee13
Binary files /dev/null and b/img-microsoft-64/1fab1.png differ
diff --git a/img-microsoft-64/1fab2.png b/img-microsoft-64/1fab2.png
new file mode 100644
index 0000000000..9043bead98
Binary files /dev/null and b/img-microsoft-64/1fab2.png differ
diff --git a/img-microsoft-64/1fab3.png b/img-microsoft-64/1fab3.png
new file mode 100644
index 0000000000..1c5e24159e
Binary files /dev/null and b/img-microsoft-64/1fab3.png differ
diff --git a/img-microsoft-64/1fab4.png b/img-microsoft-64/1fab4.png
new file mode 100644
index 0000000000..36ca6c59e3
Binary files /dev/null and b/img-microsoft-64/1fab4.png differ
diff --git a/img-microsoft-64/1fab5.png b/img-microsoft-64/1fab5.png
new file mode 100644
index 0000000000..d72a16d580
Binary files /dev/null and b/img-microsoft-64/1fab5.png differ
diff --git a/img-microsoft-64/1fab6.png b/img-microsoft-64/1fab6.png
new file mode 100644
index 0000000000..d38b41c542
Binary files /dev/null and b/img-microsoft-64/1fab6.png differ
diff --git a/img-microsoft-64/1fab7.png b/img-microsoft-64/1fab7.png
new file mode 100644
index 0000000000..8e5dfc38bc
Binary files /dev/null and b/img-microsoft-64/1fab7.png differ
diff --git a/img-microsoft-64/1fab8.png b/img-microsoft-64/1fab8.png
new file mode 100644
index 0000000000..fab2256969
Binary files /dev/null and b/img-microsoft-64/1fab8.png differ
diff --git a/img-microsoft-64/1fab9.png b/img-microsoft-64/1fab9.png
new file mode 100644
index 0000000000..4fd17ab49a
Binary files /dev/null and b/img-microsoft-64/1fab9.png differ
diff --git a/img-microsoft-64/1faba.png b/img-microsoft-64/1faba.png
new file mode 100644
index 0000000000..e7c1494df8
Binary files /dev/null and b/img-microsoft-64/1faba.png differ
diff --git a/img-microsoft-64/1fac0.png b/img-microsoft-64/1fac0.png
new file mode 100644
index 0000000000..26b025924f
Binary files /dev/null and b/img-microsoft-64/1fac0.png differ
diff --git a/img-microsoft-64/1fac1.png b/img-microsoft-64/1fac1.png
new file mode 100644
index 0000000000..1fa15fa0c9
Binary files /dev/null and b/img-microsoft-64/1fac1.png differ
diff --git a/img-microsoft-64/1fac2.png b/img-microsoft-64/1fac2.png
new file mode 100644
index 0000000000..435a42700b
Binary files /dev/null and b/img-microsoft-64/1fac2.png differ
diff --git a/img-microsoft-64/1fac3-1f3fb.png b/img-microsoft-64/1fac3-1f3fb.png
new file mode 100644
index 0000000000..d42c86e9fa
Binary files /dev/null and b/img-microsoft-64/1fac3-1f3fb.png differ
diff --git a/img-microsoft-64/1fac3-1f3fc.png b/img-microsoft-64/1fac3-1f3fc.png
new file mode 100644
index 0000000000..989c182d31
Binary files /dev/null and b/img-microsoft-64/1fac3-1f3fc.png differ
diff --git a/img-microsoft-64/1fac3-1f3fd.png b/img-microsoft-64/1fac3-1f3fd.png
new file mode 100644
index 0000000000..87ff6ec0c9
Binary files /dev/null and b/img-microsoft-64/1fac3-1f3fd.png differ
diff --git a/img-microsoft-64/1fac3-1f3fe.png b/img-microsoft-64/1fac3-1f3fe.png
new file mode 100644
index 0000000000..57c747a1d8
Binary files /dev/null and b/img-microsoft-64/1fac3-1f3fe.png differ
diff --git a/img-microsoft-64/1fac3-1f3ff.png b/img-microsoft-64/1fac3-1f3ff.png
new file mode 100644
index 0000000000..40a5208446
Binary files /dev/null and b/img-microsoft-64/1fac3-1f3ff.png differ
diff --git a/img-microsoft-64/1fac3.png b/img-microsoft-64/1fac3.png
new file mode 100644
index 0000000000..9164b4e258
Binary files /dev/null and b/img-microsoft-64/1fac3.png differ
diff --git a/img-microsoft-64/1fac4-1f3fb.png b/img-microsoft-64/1fac4-1f3fb.png
new file mode 100644
index 0000000000..2a752332ad
Binary files /dev/null and b/img-microsoft-64/1fac4-1f3fb.png differ
diff --git a/img-microsoft-64/1fac4-1f3fc.png b/img-microsoft-64/1fac4-1f3fc.png
new file mode 100644
index 0000000000..4de082acda
Binary files /dev/null and b/img-microsoft-64/1fac4-1f3fc.png differ
diff --git a/img-microsoft-64/1fac4-1f3fd.png b/img-microsoft-64/1fac4-1f3fd.png
new file mode 100644
index 0000000000..9c0e192cdf
Binary files /dev/null and b/img-microsoft-64/1fac4-1f3fd.png differ
diff --git a/img-microsoft-64/1fac4-1f3fe.png b/img-microsoft-64/1fac4-1f3fe.png
new file mode 100644
index 0000000000..c4b25e9c48
Binary files /dev/null and b/img-microsoft-64/1fac4-1f3fe.png differ
diff --git a/img-microsoft-64/1fac4-1f3ff.png b/img-microsoft-64/1fac4-1f3ff.png
new file mode 100644
index 0000000000..333ae5d018
Binary files /dev/null and b/img-microsoft-64/1fac4-1f3ff.png differ
diff --git a/img-microsoft-64/1fac4.png b/img-microsoft-64/1fac4.png
new file mode 100644
index 0000000000..0f94cbc51e
Binary files /dev/null and b/img-microsoft-64/1fac4.png differ
diff --git a/img-microsoft-64/1fac5-1f3fb.png b/img-microsoft-64/1fac5-1f3fb.png
new file mode 100644
index 0000000000..337b986ee7
Binary files /dev/null and b/img-microsoft-64/1fac5-1f3fb.png differ
diff --git a/img-microsoft-64/1fac5-1f3fc.png b/img-microsoft-64/1fac5-1f3fc.png
new file mode 100644
index 0000000000..6135ff2135
Binary files /dev/null and b/img-microsoft-64/1fac5-1f3fc.png differ
diff --git a/img-microsoft-64/1fac5-1f3fd.png b/img-microsoft-64/1fac5-1f3fd.png
new file mode 100644
index 0000000000..4d2169392c
Binary files /dev/null and b/img-microsoft-64/1fac5-1f3fd.png differ
diff --git a/img-microsoft-64/1fac5-1f3fe.png b/img-microsoft-64/1fac5-1f3fe.png
new file mode 100644
index 0000000000..acc25aa457
Binary files /dev/null and b/img-microsoft-64/1fac5-1f3fe.png differ
diff --git a/img-microsoft-64/1fac5-1f3ff.png b/img-microsoft-64/1fac5-1f3ff.png
new file mode 100644
index 0000000000..18b44159a2
Binary files /dev/null and b/img-microsoft-64/1fac5-1f3ff.png differ
diff --git a/img-microsoft-64/1fac5.png b/img-microsoft-64/1fac5.png
new file mode 100644
index 0000000000..9bb2ec1a5a
Binary files /dev/null and b/img-microsoft-64/1fac5.png differ
diff --git a/img-microsoft-64/1fad0.png b/img-microsoft-64/1fad0.png
new file mode 100644
index 0000000000..a8e94a9942
Binary files /dev/null and b/img-microsoft-64/1fad0.png differ
diff --git a/img-microsoft-64/1fad1.png b/img-microsoft-64/1fad1.png
new file mode 100644
index 0000000000..f73408b173
Binary files /dev/null and b/img-microsoft-64/1fad1.png differ
diff --git a/img-microsoft-64/1fad2.png b/img-microsoft-64/1fad2.png
new file mode 100644
index 0000000000..82ab85cfe2
Binary files /dev/null and b/img-microsoft-64/1fad2.png differ
diff --git a/img-microsoft-64/1fad3.png b/img-microsoft-64/1fad3.png
new file mode 100644
index 0000000000..3fc4ba530f
Binary files /dev/null and b/img-microsoft-64/1fad3.png differ
diff --git a/img-microsoft-64/1fad4.png b/img-microsoft-64/1fad4.png
new file mode 100644
index 0000000000..fbef9d9013
Binary files /dev/null and b/img-microsoft-64/1fad4.png differ
diff --git a/img-microsoft-64/1fad5.png b/img-microsoft-64/1fad5.png
new file mode 100644
index 0000000000..2501d252e2
Binary files /dev/null and b/img-microsoft-64/1fad5.png differ
diff --git a/img-microsoft-64/1fad6.png b/img-microsoft-64/1fad6.png
new file mode 100644
index 0000000000..6b7a9a49f2
Binary files /dev/null and b/img-microsoft-64/1fad6.png differ
diff --git a/img-microsoft-64/1fad7.png b/img-microsoft-64/1fad7.png
new file mode 100644
index 0000000000..e49b31769f
Binary files /dev/null and b/img-microsoft-64/1fad7.png differ
diff --git a/img-microsoft-64/1fad8.png b/img-microsoft-64/1fad8.png
new file mode 100644
index 0000000000..607d5c6938
Binary files /dev/null and b/img-microsoft-64/1fad8.png differ
diff --git a/img-microsoft-64/1fad9.png b/img-microsoft-64/1fad9.png
new file mode 100644
index 0000000000..bc4d501fbf
Binary files /dev/null and b/img-microsoft-64/1fad9.png differ
diff --git a/img-microsoft-64/1fae0.png b/img-microsoft-64/1fae0.png
new file mode 100644
index 0000000000..80f410ccaa
Binary files /dev/null and b/img-microsoft-64/1fae0.png differ
diff --git a/img-microsoft-64/1fae1.png b/img-microsoft-64/1fae1.png
new file mode 100644
index 0000000000..4cd3d45893
Binary files /dev/null and b/img-microsoft-64/1fae1.png differ
diff --git a/img-microsoft-64/1fae2.png b/img-microsoft-64/1fae2.png
new file mode 100644
index 0000000000..7e5729f2b1
Binary files /dev/null and b/img-microsoft-64/1fae2.png differ
diff --git a/img-microsoft-64/1fae3.png b/img-microsoft-64/1fae3.png
new file mode 100644
index 0000000000..04be9ff6da
Binary files /dev/null and b/img-microsoft-64/1fae3.png differ
diff --git a/img-microsoft-64/1fae4.png b/img-microsoft-64/1fae4.png
new file mode 100644
index 0000000000..ad761a49c8
Binary files /dev/null and b/img-microsoft-64/1fae4.png differ
diff --git a/img-microsoft-64/1fae5.png b/img-microsoft-64/1fae5.png
new file mode 100644
index 0000000000..59d29a41d3
Binary files /dev/null and b/img-microsoft-64/1fae5.png differ
diff --git a/img-microsoft-64/1fae6.png b/img-microsoft-64/1fae6.png
new file mode 100644
index 0000000000..aff5c9e501
Binary files /dev/null and b/img-microsoft-64/1fae6.png differ
diff --git a/img-microsoft-64/1fae7.png b/img-microsoft-64/1fae7.png
new file mode 100644
index 0000000000..2f83754498
Binary files /dev/null and b/img-microsoft-64/1fae7.png differ
diff --git a/img-microsoft-64/1faf0-1f3fb.png b/img-microsoft-64/1faf0-1f3fb.png
new file mode 100644
index 0000000000..fb5545dbe3
Binary files /dev/null and b/img-microsoft-64/1faf0-1f3fb.png differ
diff --git a/img-microsoft-64/1faf0-1f3fc.png b/img-microsoft-64/1faf0-1f3fc.png
new file mode 100644
index 0000000000..dc1b1dd7fb
Binary files /dev/null and b/img-microsoft-64/1faf0-1f3fc.png differ
diff --git a/img-microsoft-64/1faf0-1f3fd.png b/img-microsoft-64/1faf0-1f3fd.png
new file mode 100644
index 0000000000..1be69379f5
Binary files /dev/null and b/img-microsoft-64/1faf0-1f3fd.png differ
diff --git a/img-microsoft-64/1faf0-1f3fe.png b/img-microsoft-64/1faf0-1f3fe.png
new file mode 100644
index 0000000000..af6cdac06d
Binary files /dev/null and b/img-microsoft-64/1faf0-1f3fe.png differ
diff --git a/img-microsoft-64/1faf0-1f3ff.png b/img-microsoft-64/1faf0-1f3ff.png
new file mode 100644
index 0000000000..303f61ac2a
Binary files /dev/null and b/img-microsoft-64/1faf0-1f3ff.png differ
diff --git a/img-microsoft-64/1faf0.png b/img-microsoft-64/1faf0.png
new file mode 100644
index 0000000000..f90866c4b1
Binary files /dev/null and b/img-microsoft-64/1faf0.png differ
diff --git a/img-microsoft-64/1faf1-1f3fb.png b/img-microsoft-64/1faf1-1f3fb.png
new file mode 100644
index 0000000000..9912486421
Binary files /dev/null and b/img-microsoft-64/1faf1-1f3fb.png differ
diff --git a/img-microsoft-64/1faf1-1f3fc.png b/img-microsoft-64/1faf1-1f3fc.png
new file mode 100644
index 0000000000..c734f9ecbe
Binary files /dev/null and b/img-microsoft-64/1faf1-1f3fc.png differ
diff --git a/img-microsoft-64/1faf1-1f3fd.png b/img-microsoft-64/1faf1-1f3fd.png
new file mode 100644
index 0000000000..579dfbdd25
Binary files /dev/null and b/img-microsoft-64/1faf1-1f3fd.png differ
diff --git a/img-microsoft-64/1faf1-1f3fe.png b/img-microsoft-64/1faf1-1f3fe.png
new file mode 100644
index 0000000000..f6f7344d3a
Binary files /dev/null and b/img-microsoft-64/1faf1-1f3fe.png differ
diff --git a/img-microsoft-64/1faf1-1f3ff.png b/img-microsoft-64/1faf1-1f3ff.png
new file mode 100644
index 0000000000..a2d239b573
Binary files /dev/null and b/img-microsoft-64/1faf1-1f3ff.png differ
diff --git a/img-microsoft-64/1faf1.png b/img-microsoft-64/1faf1.png
new file mode 100644
index 0000000000..ddb97f0aeb
Binary files /dev/null and b/img-microsoft-64/1faf1.png differ
diff --git a/img-microsoft-64/1faf2-1f3fb.png b/img-microsoft-64/1faf2-1f3fb.png
new file mode 100644
index 0000000000..1f7873b636
Binary files /dev/null and b/img-microsoft-64/1faf2-1f3fb.png differ
diff --git a/img-microsoft-64/1faf2-1f3fc.png b/img-microsoft-64/1faf2-1f3fc.png
new file mode 100644
index 0000000000..f58495d00e
Binary files /dev/null and b/img-microsoft-64/1faf2-1f3fc.png differ
diff --git a/img-microsoft-64/1faf2-1f3fd.png b/img-microsoft-64/1faf2-1f3fd.png
new file mode 100644
index 0000000000..75bbdab073
Binary files /dev/null and b/img-microsoft-64/1faf2-1f3fd.png differ
diff --git a/img-microsoft-64/1faf2-1f3fe.png b/img-microsoft-64/1faf2-1f3fe.png
new file mode 100644
index 0000000000..8c4025d176
Binary files /dev/null and b/img-microsoft-64/1faf2-1f3fe.png differ
diff --git a/img-microsoft-64/1faf2-1f3ff.png b/img-microsoft-64/1faf2-1f3ff.png
new file mode 100644
index 0000000000..3e63a85ed5
Binary files /dev/null and b/img-microsoft-64/1faf2-1f3ff.png differ
diff --git a/img-microsoft-64/1faf2.png b/img-microsoft-64/1faf2.png
new file mode 100644
index 0000000000..152eeee73f
Binary files /dev/null and b/img-microsoft-64/1faf2.png differ
diff --git a/img-microsoft-64/1faf3-1f3fb.png b/img-microsoft-64/1faf3-1f3fb.png
new file mode 100644
index 0000000000..ba3095f49c
Binary files /dev/null and b/img-microsoft-64/1faf3-1f3fb.png differ
diff --git a/img-microsoft-64/1faf3-1f3fc.png b/img-microsoft-64/1faf3-1f3fc.png
new file mode 100644
index 0000000000..80173f5744
Binary files /dev/null and b/img-microsoft-64/1faf3-1f3fc.png differ
diff --git a/img-microsoft-64/1faf3-1f3fd.png b/img-microsoft-64/1faf3-1f3fd.png
new file mode 100644
index 0000000000..1e60775cd0
Binary files /dev/null and b/img-microsoft-64/1faf3-1f3fd.png differ
diff --git a/img-microsoft-64/1faf3-1f3fe.png b/img-microsoft-64/1faf3-1f3fe.png
new file mode 100644
index 0000000000..6359a1a936
Binary files /dev/null and b/img-microsoft-64/1faf3-1f3fe.png differ
diff --git a/img-microsoft-64/1faf3-1f3ff.png b/img-microsoft-64/1faf3-1f3ff.png
new file mode 100644
index 0000000000..89553afcf2
Binary files /dev/null and b/img-microsoft-64/1faf3-1f3ff.png differ
diff --git a/img-microsoft-64/1faf3.png b/img-microsoft-64/1faf3.png
new file mode 100644
index 0000000000..0026d830f1
Binary files /dev/null and b/img-microsoft-64/1faf3.png differ
diff --git a/img-microsoft-64/1faf4-1f3fb.png b/img-microsoft-64/1faf4-1f3fb.png
new file mode 100644
index 0000000000..d887e880f4
Binary files /dev/null and b/img-microsoft-64/1faf4-1f3fb.png differ
diff --git a/img-microsoft-64/1faf4-1f3fc.png b/img-microsoft-64/1faf4-1f3fc.png
new file mode 100644
index 0000000000..ee11029056
Binary files /dev/null and b/img-microsoft-64/1faf4-1f3fc.png differ
diff --git a/img-microsoft-64/1faf4-1f3fd.png b/img-microsoft-64/1faf4-1f3fd.png
new file mode 100644
index 0000000000..0f58a8ca9e
Binary files /dev/null and b/img-microsoft-64/1faf4-1f3fd.png differ
diff --git a/img-microsoft-64/1faf4-1f3fe.png b/img-microsoft-64/1faf4-1f3fe.png
new file mode 100644
index 0000000000..9aff08d000
Binary files /dev/null and b/img-microsoft-64/1faf4-1f3fe.png differ
diff --git a/img-microsoft-64/1faf4-1f3ff.png b/img-microsoft-64/1faf4-1f3ff.png
new file mode 100644
index 0000000000..9bc98eec65
Binary files /dev/null and b/img-microsoft-64/1faf4-1f3ff.png differ
diff --git a/img-microsoft-64/1faf4.png b/img-microsoft-64/1faf4.png
new file mode 100644
index 0000000000..0ce44f06f6
Binary files /dev/null and b/img-microsoft-64/1faf4.png differ
diff --git a/img-microsoft-64/1faf5-1f3fb.png b/img-microsoft-64/1faf5-1f3fb.png
new file mode 100644
index 0000000000..02a79b46e7
Binary files /dev/null and b/img-microsoft-64/1faf5-1f3fb.png differ
diff --git a/img-microsoft-64/1faf5-1f3fc.png b/img-microsoft-64/1faf5-1f3fc.png
new file mode 100644
index 0000000000..e33a476b24
Binary files /dev/null and b/img-microsoft-64/1faf5-1f3fc.png differ
diff --git a/img-microsoft-64/1faf5-1f3fd.png b/img-microsoft-64/1faf5-1f3fd.png
new file mode 100644
index 0000000000..98c8e55740
Binary files /dev/null and b/img-microsoft-64/1faf5-1f3fd.png differ
diff --git a/img-microsoft-64/1faf5-1f3fe.png b/img-microsoft-64/1faf5-1f3fe.png
new file mode 100644
index 0000000000..9b988742c7
Binary files /dev/null and b/img-microsoft-64/1faf5-1f3fe.png differ
diff --git a/img-microsoft-64/1faf5-1f3ff.png b/img-microsoft-64/1faf5-1f3ff.png
new file mode 100644
index 0000000000..ad2df9e1cc
Binary files /dev/null and b/img-microsoft-64/1faf5-1f3ff.png differ
diff --git a/img-microsoft-64/1faf5.png b/img-microsoft-64/1faf5.png
new file mode 100644
index 0000000000..75b0c45665
Binary files /dev/null and b/img-microsoft-64/1faf5.png differ
diff --git a/img-microsoft-64/1faf6-1f3fb.png b/img-microsoft-64/1faf6-1f3fb.png
new file mode 100644
index 0000000000..104874bad7
Binary files /dev/null and b/img-microsoft-64/1faf6-1f3fb.png differ
diff --git a/img-microsoft-64/1faf6-1f3fc.png b/img-microsoft-64/1faf6-1f3fc.png
new file mode 100644
index 0000000000..126833aa61
Binary files /dev/null and b/img-microsoft-64/1faf6-1f3fc.png differ
diff --git a/img-microsoft-64/1faf6-1f3fd.png b/img-microsoft-64/1faf6-1f3fd.png
new file mode 100644
index 0000000000..df497b0b36
Binary files /dev/null and b/img-microsoft-64/1faf6-1f3fd.png differ
diff --git a/img-microsoft-64/1faf6-1f3fe.png b/img-microsoft-64/1faf6-1f3fe.png
new file mode 100644
index 0000000000..b0ecc253e3
Binary files /dev/null and b/img-microsoft-64/1faf6-1f3fe.png differ
diff --git a/img-microsoft-64/1faf6-1f3ff.png b/img-microsoft-64/1faf6-1f3ff.png
new file mode 100644
index 0000000000..17c6517854
Binary files /dev/null and b/img-microsoft-64/1faf6-1f3ff.png differ
diff --git a/img-microsoft-64/1faf6.png b/img-microsoft-64/1faf6.png
new file mode 100644
index 0000000000..07efcc75fa
Binary files /dev/null and b/img-microsoft-64/1faf6.png differ
diff --git a/img-microsoft-64/203c-fe0f.png b/img-microsoft-64/203c-fe0f.png
new file mode 100644
index 0000000000..a596463d8f
Binary files /dev/null and b/img-microsoft-64/203c-fe0f.png differ
diff --git a/img-microsoft-64/2049-fe0f.png b/img-microsoft-64/2049-fe0f.png
new file mode 100644
index 0000000000..ec72031973
Binary files /dev/null and b/img-microsoft-64/2049-fe0f.png differ
diff --git a/img-microsoft-64/2122-fe0f.png b/img-microsoft-64/2122-fe0f.png
new file mode 100644
index 0000000000..017e2e9e4a
Binary files /dev/null and b/img-microsoft-64/2122-fe0f.png differ
diff --git a/img-microsoft-64/2139-fe0f.png b/img-microsoft-64/2139-fe0f.png
new file mode 100644
index 0000000000..3e182dc7f8
Binary files /dev/null and b/img-microsoft-64/2139-fe0f.png differ
diff --git a/img-microsoft-64/2194-fe0f.png b/img-microsoft-64/2194-fe0f.png
new file mode 100644
index 0000000000..73eec95456
Binary files /dev/null and b/img-microsoft-64/2194-fe0f.png differ
diff --git a/img-microsoft-64/2195-fe0f.png b/img-microsoft-64/2195-fe0f.png
new file mode 100644
index 0000000000..2514111701
Binary files /dev/null and b/img-microsoft-64/2195-fe0f.png differ
diff --git a/img-microsoft-64/2196-fe0f.png b/img-microsoft-64/2196-fe0f.png
new file mode 100644
index 0000000000..f92dec475b
Binary files /dev/null and b/img-microsoft-64/2196-fe0f.png differ
diff --git a/img-microsoft-64/2197-fe0f.png b/img-microsoft-64/2197-fe0f.png
new file mode 100644
index 0000000000..b16c21e6d4
Binary files /dev/null and b/img-microsoft-64/2197-fe0f.png differ
diff --git a/img-microsoft-64/2198-fe0f.png b/img-microsoft-64/2198-fe0f.png
new file mode 100644
index 0000000000..dd71cd9f7c
Binary files /dev/null and b/img-microsoft-64/2198-fe0f.png differ
diff --git a/img-microsoft-64/2199-fe0f.png b/img-microsoft-64/2199-fe0f.png
new file mode 100644
index 0000000000..1d895775da
Binary files /dev/null and b/img-microsoft-64/2199-fe0f.png differ
diff --git a/img-microsoft-64/21a9-fe0f.png b/img-microsoft-64/21a9-fe0f.png
new file mode 100644
index 0000000000..4e7a4ce6e6
Binary files /dev/null and b/img-microsoft-64/21a9-fe0f.png differ
diff --git a/img-microsoft-64/21aa-fe0f.png b/img-microsoft-64/21aa-fe0f.png
new file mode 100644
index 0000000000..a6e79f0d92
Binary files /dev/null and b/img-microsoft-64/21aa-fe0f.png differ
diff --git a/img-microsoft-64/231a.png b/img-microsoft-64/231a.png
new file mode 100644
index 0000000000..862c840d5c
Binary files /dev/null and b/img-microsoft-64/231a.png differ
diff --git a/img-microsoft-64/231b.png b/img-microsoft-64/231b.png
new file mode 100644
index 0000000000..4d44e838f7
Binary files /dev/null and b/img-microsoft-64/231b.png differ
diff --git a/img-microsoft-64/2328-fe0f.png b/img-microsoft-64/2328-fe0f.png
new file mode 100644
index 0000000000..b100709705
Binary files /dev/null and b/img-microsoft-64/2328-fe0f.png differ
diff --git a/img-microsoft-64/23cf-fe0f.png b/img-microsoft-64/23cf-fe0f.png
new file mode 100644
index 0000000000..3bdd4a8f38
Binary files /dev/null and b/img-microsoft-64/23cf-fe0f.png differ
diff --git a/img-microsoft-64/23e9.png b/img-microsoft-64/23e9.png
new file mode 100644
index 0000000000..ec4074cd86
Binary files /dev/null and b/img-microsoft-64/23e9.png differ
diff --git a/img-microsoft-64/23ea.png b/img-microsoft-64/23ea.png
new file mode 100644
index 0000000000..a55ec6cee8
Binary files /dev/null and b/img-microsoft-64/23ea.png differ
diff --git a/img-microsoft-64/23eb.png b/img-microsoft-64/23eb.png
new file mode 100644
index 0000000000..f28b4604a3
Binary files /dev/null and b/img-microsoft-64/23eb.png differ
diff --git a/img-microsoft-64/23ec.png b/img-microsoft-64/23ec.png
new file mode 100644
index 0000000000..d9e2e279ff
Binary files /dev/null and b/img-microsoft-64/23ec.png differ
diff --git a/img-microsoft-64/23ed-fe0f.png b/img-microsoft-64/23ed-fe0f.png
new file mode 100644
index 0000000000..85040de288
Binary files /dev/null and b/img-microsoft-64/23ed-fe0f.png differ
diff --git a/img-microsoft-64/23ee-fe0f.png b/img-microsoft-64/23ee-fe0f.png
new file mode 100644
index 0000000000..cbc468d747
Binary files /dev/null and b/img-microsoft-64/23ee-fe0f.png differ
diff --git a/img-microsoft-64/23ef-fe0f.png b/img-microsoft-64/23ef-fe0f.png
new file mode 100644
index 0000000000..6ea053d99a
Binary files /dev/null and b/img-microsoft-64/23ef-fe0f.png differ
diff --git a/img-microsoft-64/23f0.png b/img-microsoft-64/23f0.png
new file mode 100644
index 0000000000..88e577232e
Binary files /dev/null and b/img-microsoft-64/23f0.png differ
diff --git a/img-microsoft-64/23f1-fe0f.png b/img-microsoft-64/23f1-fe0f.png
new file mode 100644
index 0000000000..b878d2673a
Binary files /dev/null and b/img-microsoft-64/23f1-fe0f.png differ
diff --git a/img-microsoft-64/23f2-fe0f.png b/img-microsoft-64/23f2-fe0f.png
new file mode 100644
index 0000000000..d46b5672bd
Binary files /dev/null and b/img-microsoft-64/23f2-fe0f.png differ
diff --git a/img-microsoft-64/23f3.png b/img-microsoft-64/23f3.png
new file mode 100644
index 0000000000..765b29f2c9
Binary files /dev/null and b/img-microsoft-64/23f3.png differ
diff --git a/img-microsoft-64/23f8-fe0f.png b/img-microsoft-64/23f8-fe0f.png
new file mode 100644
index 0000000000..dda8ee2624
Binary files /dev/null and b/img-microsoft-64/23f8-fe0f.png differ
diff --git a/img-microsoft-64/23f9-fe0f.png b/img-microsoft-64/23f9-fe0f.png
new file mode 100644
index 0000000000..ccf33a2f46
Binary files /dev/null and b/img-microsoft-64/23f9-fe0f.png differ
diff --git a/img-microsoft-64/23fa-fe0f.png b/img-microsoft-64/23fa-fe0f.png
new file mode 100644
index 0000000000..750d8def3b
Binary files /dev/null and b/img-microsoft-64/23fa-fe0f.png differ
diff --git a/img-microsoft-64/24c2-fe0f.png b/img-microsoft-64/24c2-fe0f.png
new file mode 100644
index 0000000000..8627f95db1
Binary files /dev/null and b/img-microsoft-64/24c2-fe0f.png differ
diff --git a/img-microsoft-64/25aa-fe0f.png b/img-microsoft-64/25aa-fe0f.png
new file mode 100644
index 0000000000..ee5601e32b
Binary files /dev/null and b/img-microsoft-64/25aa-fe0f.png differ
diff --git a/img-microsoft-64/25ab-fe0f.png b/img-microsoft-64/25ab-fe0f.png
new file mode 100644
index 0000000000..8fc780ac9b
Binary files /dev/null and b/img-microsoft-64/25ab-fe0f.png differ
diff --git a/img-microsoft-64/25b6-fe0f.png b/img-microsoft-64/25b6-fe0f.png
new file mode 100644
index 0000000000..d06a168c22
Binary files /dev/null and b/img-microsoft-64/25b6-fe0f.png differ
diff --git a/img-microsoft-64/25c0-fe0f.png b/img-microsoft-64/25c0-fe0f.png
new file mode 100644
index 0000000000..95147762c5
Binary files /dev/null and b/img-microsoft-64/25c0-fe0f.png differ
diff --git a/img-microsoft-64/25fb-fe0f.png b/img-microsoft-64/25fb-fe0f.png
new file mode 100644
index 0000000000..aa40680b66
Binary files /dev/null and b/img-microsoft-64/25fb-fe0f.png differ
diff --git a/img-microsoft-64/25fc-fe0f.png b/img-microsoft-64/25fc-fe0f.png
new file mode 100644
index 0000000000..306b0850c2
Binary files /dev/null and b/img-microsoft-64/25fc-fe0f.png differ
diff --git a/img-microsoft-64/25fd.png b/img-microsoft-64/25fd.png
new file mode 100644
index 0000000000..5858a28649
Binary files /dev/null and b/img-microsoft-64/25fd.png differ
diff --git a/img-microsoft-64/25fe.png b/img-microsoft-64/25fe.png
new file mode 100644
index 0000000000..528e1293e9
Binary files /dev/null and b/img-microsoft-64/25fe.png differ
diff --git a/img-microsoft-64/2600-fe0f.png b/img-microsoft-64/2600-fe0f.png
new file mode 100644
index 0000000000..3619cfd23c
Binary files /dev/null and b/img-microsoft-64/2600-fe0f.png differ
diff --git a/img-microsoft-64/2601-fe0f.png b/img-microsoft-64/2601-fe0f.png
new file mode 100644
index 0000000000..d49f1a76c5
Binary files /dev/null and b/img-microsoft-64/2601-fe0f.png differ
diff --git a/img-microsoft-64/2602-fe0f.png b/img-microsoft-64/2602-fe0f.png
new file mode 100644
index 0000000000..de4da446bc
Binary files /dev/null and b/img-microsoft-64/2602-fe0f.png differ
diff --git a/img-microsoft-64/2603-fe0f.png b/img-microsoft-64/2603-fe0f.png
new file mode 100644
index 0000000000..dce0c51831
Binary files /dev/null and b/img-microsoft-64/2603-fe0f.png differ
diff --git a/img-microsoft-64/2604-fe0f.png b/img-microsoft-64/2604-fe0f.png
new file mode 100644
index 0000000000..e69b167fa8
Binary files /dev/null and b/img-microsoft-64/2604-fe0f.png differ
diff --git a/img-microsoft-64/260e-fe0f.png b/img-microsoft-64/260e-fe0f.png
new file mode 100644
index 0000000000..bfdd02c8fc
Binary files /dev/null and b/img-microsoft-64/260e-fe0f.png differ
diff --git a/img-microsoft-64/2611-fe0f.png b/img-microsoft-64/2611-fe0f.png
new file mode 100644
index 0000000000..e04ac6e9ec
Binary files /dev/null and b/img-microsoft-64/2611-fe0f.png differ
diff --git a/img-microsoft-64/2614.png b/img-microsoft-64/2614.png
new file mode 100644
index 0000000000..9fc28e79a2
Binary files /dev/null and b/img-microsoft-64/2614.png differ
diff --git a/img-microsoft-64/2615.png b/img-microsoft-64/2615.png
new file mode 100644
index 0000000000..fb200ff162
Binary files /dev/null and b/img-microsoft-64/2615.png differ
diff --git a/img-microsoft-64/2618-fe0f.png b/img-microsoft-64/2618-fe0f.png
new file mode 100644
index 0000000000..f7a33f4090
Binary files /dev/null and b/img-microsoft-64/2618-fe0f.png differ
diff --git a/img-microsoft-64/261d-1f3fb.png b/img-microsoft-64/261d-1f3fb.png
new file mode 100644
index 0000000000..b82d927581
Binary files /dev/null and b/img-microsoft-64/261d-1f3fb.png differ
diff --git a/img-microsoft-64/261d-1f3fc.png b/img-microsoft-64/261d-1f3fc.png
new file mode 100644
index 0000000000..9e22877deb
Binary files /dev/null and b/img-microsoft-64/261d-1f3fc.png differ
diff --git a/img-microsoft-64/261d-1f3fd.png b/img-microsoft-64/261d-1f3fd.png
new file mode 100644
index 0000000000..6815647f9a
Binary files /dev/null and b/img-microsoft-64/261d-1f3fd.png differ
diff --git a/img-microsoft-64/261d-1f3fe.png b/img-microsoft-64/261d-1f3fe.png
new file mode 100644
index 0000000000..7b0eb74691
Binary files /dev/null and b/img-microsoft-64/261d-1f3fe.png differ
diff --git a/img-microsoft-64/261d-1f3ff.png b/img-microsoft-64/261d-1f3ff.png
new file mode 100644
index 0000000000..ed3e89c3ff
Binary files /dev/null and b/img-microsoft-64/261d-1f3ff.png differ
diff --git a/img-microsoft-64/261d-fe0f.png b/img-microsoft-64/261d-fe0f.png
new file mode 100644
index 0000000000..cb89145f6a
Binary files /dev/null and b/img-microsoft-64/261d-fe0f.png differ
diff --git a/img-microsoft-64/2620-fe0f.png b/img-microsoft-64/2620-fe0f.png
new file mode 100644
index 0000000000..c44aca201c
Binary files /dev/null and b/img-microsoft-64/2620-fe0f.png differ
diff --git a/img-microsoft-64/2622-fe0f.png b/img-microsoft-64/2622-fe0f.png
new file mode 100644
index 0000000000..2541f2d343
Binary files /dev/null and b/img-microsoft-64/2622-fe0f.png differ
diff --git a/img-microsoft-64/2623-fe0f.png b/img-microsoft-64/2623-fe0f.png
new file mode 100644
index 0000000000..aef3e6258a
Binary files /dev/null and b/img-microsoft-64/2623-fe0f.png differ
diff --git a/img-microsoft-64/2626-fe0f.png b/img-microsoft-64/2626-fe0f.png
new file mode 100644
index 0000000000..b6d2232a30
Binary files /dev/null and b/img-microsoft-64/2626-fe0f.png differ
diff --git a/img-microsoft-64/262a-fe0f.png b/img-microsoft-64/262a-fe0f.png
new file mode 100644
index 0000000000..d9d9a0a95d
Binary files /dev/null and b/img-microsoft-64/262a-fe0f.png differ
diff --git a/img-microsoft-64/262e-fe0f.png b/img-microsoft-64/262e-fe0f.png
new file mode 100644
index 0000000000..8803faf624
Binary files /dev/null and b/img-microsoft-64/262e-fe0f.png differ
diff --git a/img-microsoft-64/262f-fe0f.png b/img-microsoft-64/262f-fe0f.png
new file mode 100644
index 0000000000..2832b334bb
Binary files /dev/null and b/img-microsoft-64/262f-fe0f.png differ
diff --git a/img-microsoft-64/2638-fe0f.png b/img-microsoft-64/2638-fe0f.png
new file mode 100644
index 0000000000..68e070a98d
Binary files /dev/null and b/img-microsoft-64/2638-fe0f.png differ
diff --git a/img-microsoft-64/2639-fe0f.png b/img-microsoft-64/2639-fe0f.png
new file mode 100644
index 0000000000..629546869f
Binary files /dev/null and b/img-microsoft-64/2639-fe0f.png differ
diff --git a/img-microsoft-64/263a-fe0f.png b/img-microsoft-64/263a-fe0f.png
new file mode 100644
index 0000000000..402cb91135
Binary files /dev/null and b/img-microsoft-64/263a-fe0f.png differ
diff --git a/img-microsoft-64/2640-fe0f.png b/img-microsoft-64/2640-fe0f.png
new file mode 100644
index 0000000000..6258b5a974
Binary files /dev/null and b/img-microsoft-64/2640-fe0f.png differ
diff --git a/img-microsoft-64/2642-fe0f.png b/img-microsoft-64/2642-fe0f.png
new file mode 100644
index 0000000000..8de8681fc6
Binary files /dev/null and b/img-microsoft-64/2642-fe0f.png differ
diff --git a/img-microsoft-64/2648.png b/img-microsoft-64/2648.png
new file mode 100644
index 0000000000..e6a3e0ceb3
Binary files /dev/null and b/img-microsoft-64/2648.png differ
diff --git a/img-microsoft-64/2649.png b/img-microsoft-64/2649.png
new file mode 100644
index 0000000000..0e6ff6b46e
Binary files /dev/null and b/img-microsoft-64/2649.png differ
diff --git a/img-microsoft-64/264a.png b/img-microsoft-64/264a.png
new file mode 100644
index 0000000000..2b4342388b
Binary files /dev/null and b/img-microsoft-64/264a.png differ
diff --git a/img-microsoft-64/264b.png b/img-microsoft-64/264b.png
new file mode 100644
index 0000000000..e9387a24b0
Binary files /dev/null and b/img-microsoft-64/264b.png differ
diff --git a/img-microsoft-64/264c.png b/img-microsoft-64/264c.png
new file mode 100644
index 0000000000..a7f3d83f25
Binary files /dev/null and b/img-microsoft-64/264c.png differ
diff --git a/img-microsoft-64/264d.png b/img-microsoft-64/264d.png
new file mode 100644
index 0000000000..6d3e24e664
Binary files /dev/null and b/img-microsoft-64/264d.png differ
diff --git a/img-microsoft-64/264e.png b/img-microsoft-64/264e.png
new file mode 100644
index 0000000000..128634a539
Binary files /dev/null and b/img-microsoft-64/264e.png differ
diff --git a/img-microsoft-64/264f.png b/img-microsoft-64/264f.png
new file mode 100644
index 0000000000..ae1f3ff7f3
Binary files /dev/null and b/img-microsoft-64/264f.png differ
diff --git a/img-microsoft-64/2650.png b/img-microsoft-64/2650.png
new file mode 100644
index 0000000000..1c07815b6d
Binary files /dev/null and b/img-microsoft-64/2650.png differ
diff --git a/img-microsoft-64/2651.png b/img-microsoft-64/2651.png
new file mode 100644
index 0000000000..b457d31e86
Binary files /dev/null and b/img-microsoft-64/2651.png differ
diff --git a/img-microsoft-64/2652.png b/img-microsoft-64/2652.png
new file mode 100644
index 0000000000..91fec19ea4
Binary files /dev/null and b/img-microsoft-64/2652.png differ
diff --git a/img-microsoft-64/2653.png b/img-microsoft-64/2653.png
new file mode 100644
index 0000000000..8128148ca7
Binary files /dev/null and b/img-microsoft-64/2653.png differ
diff --git a/img-microsoft-64/265f-fe0f.png b/img-microsoft-64/265f-fe0f.png
new file mode 100644
index 0000000000..e189d7b36c
Binary files /dev/null and b/img-microsoft-64/265f-fe0f.png differ
diff --git a/img-microsoft-64/2660-fe0f.png b/img-microsoft-64/2660-fe0f.png
new file mode 100644
index 0000000000..8cb5c7d1f7
Binary files /dev/null and b/img-microsoft-64/2660-fe0f.png differ
diff --git a/img-microsoft-64/2663-fe0f.png b/img-microsoft-64/2663-fe0f.png
new file mode 100644
index 0000000000..03ee37764b
Binary files /dev/null and b/img-microsoft-64/2663-fe0f.png differ
diff --git a/img-microsoft-64/2665-fe0f.png b/img-microsoft-64/2665-fe0f.png
new file mode 100644
index 0000000000..c9e295f46a
Binary files /dev/null and b/img-microsoft-64/2665-fe0f.png differ
diff --git a/img-microsoft-64/2666-fe0f.png b/img-microsoft-64/2666-fe0f.png
new file mode 100644
index 0000000000..69cd8a5cbc
Binary files /dev/null and b/img-microsoft-64/2666-fe0f.png differ
diff --git a/img-microsoft-64/2668-fe0f.png b/img-microsoft-64/2668-fe0f.png
new file mode 100644
index 0000000000..fd494320b0
Binary files /dev/null and b/img-microsoft-64/2668-fe0f.png differ
diff --git a/img-microsoft-64/267b-fe0f.png b/img-microsoft-64/267b-fe0f.png
new file mode 100644
index 0000000000..28e61fce41
Binary files /dev/null and b/img-microsoft-64/267b-fe0f.png differ
diff --git a/img-microsoft-64/267e-fe0f.png b/img-microsoft-64/267e-fe0f.png
new file mode 100644
index 0000000000..f9de982722
Binary files /dev/null and b/img-microsoft-64/267e-fe0f.png differ
diff --git a/img-microsoft-64/267f.png b/img-microsoft-64/267f.png
new file mode 100644
index 0000000000..0b1bb8ae3f
Binary files /dev/null and b/img-microsoft-64/267f.png differ
diff --git a/img-microsoft-64/2692-fe0f.png b/img-microsoft-64/2692-fe0f.png
new file mode 100644
index 0000000000..3f28e41fd0
Binary files /dev/null and b/img-microsoft-64/2692-fe0f.png differ
diff --git a/img-microsoft-64/2693.png b/img-microsoft-64/2693.png
new file mode 100644
index 0000000000..723a9ac885
Binary files /dev/null and b/img-microsoft-64/2693.png differ
diff --git a/img-microsoft-64/2694-fe0f.png b/img-microsoft-64/2694-fe0f.png
new file mode 100644
index 0000000000..b1422ce314
Binary files /dev/null and b/img-microsoft-64/2694-fe0f.png differ
diff --git a/img-microsoft-64/2695-fe0f.png b/img-microsoft-64/2695-fe0f.png
new file mode 100644
index 0000000000..0b559a477d
Binary files /dev/null and b/img-microsoft-64/2695-fe0f.png differ
diff --git a/img-microsoft-64/2696-fe0f.png b/img-microsoft-64/2696-fe0f.png
new file mode 100644
index 0000000000..6274069607
Binary files /dev/null and b/img-microsoft-64/2696-fe0f.png differ
diff --git a/img-microsoft-64/2697-fe0f.png b/img-microsoft-64/2697-fe0f.png
new file mode 100644
index 0000000000..1313c42cb0
Binary files /dev/null and b/img-microsoft-64/2697-fe0f.png differ
diff --git a/img-microsoft-64/2699-fe0f.png b/img-microsoft-64/2699-fe0f.png
new file mode 100644
index 0000000000..b58bd1bee5
Binary files /dev/null and b/img-microsoft-64/2699-fe0f.png differ
diff --git a/img-microsoft-64/269b-fe0f.png b/img-microsoft-64/269b-fe0f.png
new file mode 100644
index 0000000000..438ff35578
Binary files /dev/null and b/img-microsoft-64/269b-fe0f.png differ
diff --git a/img-microsoft-64/269c-fe0f.png b/img-microsoft-64/269c-fe0f.png
new file mode 100644
index 0000000000..32e73c09d6
Binary files /dev/null and b/img-microsoft-64/269c-fe0f.png differ
diff --git a/img-microsoft-64/26a0-fe0f.png b/img-microsoft-64/26a0-fe0f.png
new file mode 100644
index 0000000000..c01f828c68
Binary files /dev/null and b/img-microsoft-64/26a0-fe0f.png differ
diff --git a/img-microsoft-64/26a1.png b/img-microsoft-64/26a1.png
new file mode 100644
index 0000000000..8c61b71e40
Binary files /dev/null and b/img-microsoft-64/26a1.png differ
diff --git a/img-microsoft-64/26a7-fe0f.png b/img-microsoft-64/26a7-fe0f.png
new file mode 100644
index 0000000000..4dc42d9cfa
Binary files /dev/null and b/img-microsoft-64/26a7-fe0f.png differ
diff --git a/img-microsoft-64/26aa.png b/img-microsoft-64/26aa.png
new file mode 100644
index 0000000000..9e750d3e0e
Binary files /dev/null and b/img-microsoft-64/26aa.png differ
diff --git a/img-microsoft-64/26ab.png b/img-microsoft-64/26ab.png
new file mode 100644
index 0000000000..4d07d546bc
Binary files /dev/null and b/img-microsoft-64/26ab.png differ
diff --git a/img-microsoft-64/26b0-fe0f.png b/img-microsoft-64/26b0-fe0f.png
new file mode 100644
index 0000000000..fc6203996b
Binary files /dev/null and b/img-microsoft-64/26b0-fe0f.png differ
diff --git a/img-microsoft-64/26b1-fe0f.png b/img-microsoft-64/26b1-fe0f.png
new file mode 100644
index 0000000000..8b51ea5633
Binary files /dev/null and b/img-microsoft-64/26b1-fe0f.png differ
diff --git a/img-microsoft-64/26bd.png b/img-microsoft-64/26bd.png
new file mode 100644
index 0000000000..4a560fe7c5
Binary files /dev/null and b/img-microsoft-64/26bd.png differ
diff --git a/img-microsoft-64/26be.png b/img-microsoft-64/26be.png
new file mode 100644
index 0000000000..97a55f2155
Binary files /dev/null and b/img-microsoft-64/26be.png differ
diff --git a/img-microsoft-64/26c4.png b/img-microsoft-64/26c4.png
new file mode 100644
index 0000000000..c02f3d6186
Binary files /dev/null and b/img-microsoft-64/26c4.png differ
diff --git a/img-microsoft-64/26c5.png b/img-microsoft-64/26c5.png
new file mode 100644
index 0000000000..e936f6f9e9
Binary files /dev/null and b/img-microsoft-64/26c5.png differ
diff --git a/img-microsoft-64/26c8-fe0f.png b/img-microsoft-64/26c8-fe0f.png
new file mode 100644
index 0000000000..88c36bfc04
Binary files /dev/null and b/img-microsoft-64/26c8-fe0f.png differ
diff --git a/img-microsoft-64/26ce.png b/img-microsoft-64/26ce.png
new file mode 100644
index 0000000000..f92c39ca3e
Binary files /dev/null and b/img-microsoft-64/26ce.png differ
diff --git a/img-microsoft-64/26cf-fe0f.png b/img-microsoft-64/26cf-fe0f.png
new file mode 100644
index 0000000000..d6ba993b64
Binary files /dev/null and b/img-microsoft-64/26cf-fe0f.png differ
diff --git a/img-microsoft-64/26d1-fe0f.png b/img-microsoft-64/26d1-fe0f.png
new file mode 100644
index 0000000000..95075c35c8
Binary files /dev/null and b/img-microsoft-64/26d1-fe0f.png differ
diff --git a/img-microsoft-64/26d3-fe0f.png b/img-microsoft-64/26d3-fe0f.png
new file mode 100644
index 0000000000..137b541ff5
Binary files /dev/null and b/img-microsoft-64/26d3-fe0f.png differ
diff --git a/img-microsoft-64/26d4.png b/img-microsoft-64/26d4.png
new file mode 100644
index 0000000000..4808f5fa9d
Binary files /dev/null and b/img-microsoft-64/26d4.png differ
diff --git a/img-microsoft-64/26e9-fe0f.png b/img-microsoft-64/26e9-fe0f.png
new file mode 100644
index 0000000000..92a441355f
Binary files /dev/null and b/img-microsoft-64/26e9-fe0f.png differ
diff --git a/img-microsoft-64/26ea.png b/img-microsoft-64/26ea.png
new file mode 100644
index 0000000000..cd98bcd9da
Binary files /dev/null and b/img-microsoft-64/26ea.png differ
diff --git a/img-microsoft-64/26f0-fe0f.png b/img-microsoft-64/26f0-fe0f.png
new file mode 100644
index 0000000000..bbb983020f
Binary files /dev/null and b/img-microsoft-64/26f0-fe0f.png differ
diff --git a/img-microsoft-64/26f1-fe0f.png b/img-microsoft-64/26f1-fe0f.png
new file mode 100644
index 0000000000..654124f866
Binary files /dev/null and b/img-microsoft-64/26f1-fe0f.png differ
diff --git a/img-microsoft-64/26f2.png b/img-microsoft-64/26f2.png
new file mode 100644
index 0000000000..f667df2729
Binary files /dev/null and b/img-microsoft-64/26f2.png differ
diff --git a/img-microsoft-64/26f3.png b/img-microsoft-64/26f3.png
new file mode 100644
index 0000000000..576ba4380f
Binary files /dev/null and b/img-microsoft-64/26f3.png differ
diff --git a/img-microsoft-64/26f4-fe0f.png b/img-microsoft-64/26f4-fe0f.png
new file mode 100644
index 0000000000..e8229bc796
Binary files /dev/null and b/img-microsoft-64/26f4-fe0f.png differ
diff --git a/img-microsoft-64/26f5.png b/img-microsoft-64/26f5.png
new file mode 100644
index 0000000000..9b52facde6
Binary files /dev/null and b/img-microsoft-64/26f5.png differ
diff --git a/img-microsoft-64/26f7-fe0f.png b/img-microsoft-64/26f7-fe0f.png
new file mode 100644
index 0000000000..5f85546cef
Binary files /dev/null and b/img-microsoft-64/26f7-fe0f.png differ
diff --git a/img-microsoft-64/26f8-fe0f.png b/img-microsoft-64/26f8-fe0f.png
new file mode 100644
index 0000000000..f1ca2b1f5f
Binary files /dev/null and b/img-microsoft-64/26f8-fe0f.png differ
diff --git a/img-microsoft-64/26f9-1f3fb-200d-2640-fe0f.png b/img-microsoft-64/26f9-1f3fb-200d-2640-fe0f.png
new file mode 100644
index 0000000000..2682143609
Binary files /dev/null and b/img-microsoft-64/26f9-1f3fb-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/26f9-1f3fb-200d-2642-fe0f.png b/img-microsoft-64/26f9-1f3fb-200d-2642-fe0f.png
new file mode 100644
index 0000000000..443b0691f4
Binary files /dev/null and b/img-microsoft-64/26f9-1f3fb-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/26f9-1f3fb.png b/img-microsoft-64/26f9-1f3fb.png
new file mode 100644
index 0000000000..aaf696221e
Binary files /dev/null and b/img-microsoft-64/26f9-1f3fb.png differ
diff --git a/img-microsoft-64/26f9-1f3fc-200d-2640-fe0f.png b/img-microsoft-64/26f9-1f3fc-200d-2640-fe0f.png
new file mode 100644
index 0000000000..8a1f84ef4d
Binary files /dev/null and b/img-microsoft-64/26f9-1f3fc-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/26f9-1f3fc-200d-2642-fe0f.png b/img-microsoft-64/26f9-1f3fc-200d-2642-fe0f.png
new file mode 100644
index 0000000000..1a03466bde
Binary files /dev/null and b/img-microsoft-64/26f9-1f3fc-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/26f9-1f3fc.png b/img-microsoft-64/26f9-1f3fc.png
new file mode 100644
index 0000000000..43f7f5b732
Binary files /dev/null and b/img-microsoft-64/26f9-1f3fc.png differ
diff --git a/img-microsoft-64/26f9-1f3fd-200d-2640-fe0f.png b/img-microsoft-64/26f9-1f3fd-200d-2640-fe0f.png
new file mode 100644
index 0000000000..0bb74e0b98
Binary files /dev/null and b/img-microsoft-64/26f9-1f3fd-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/26f9-1f3fd-200d-2642-fe0f.png b/img-microsoft-64/26f9-1f3fd-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f8c0429011
Binary files /dev/null and b/img-microsoft-64/26f9-1f3fd-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/26f9-1f3fd.png b/img-microsoft-64/26f9-1f3fd.png
new file mode 100644
index 0000000000..e58a154657
Binary files /dev/null and b/img-microsoft-64/26f9-1f3fd.png differ
diff --git a/img-microsoft-64/26f9-1f3fe-200d-2640-fe0f.png b/img-microsoft-64/26f9-1f3fe-200d-2640-fe0f.png
new file mode 100644
index 0000000000..d5b4f585f0
Binary files /dev/null and b/img-microsoft-64/26f9-1f3fe-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/26f9-1f3fe-200d-2642-fe0f.png b/img-microsoft-64/26f9-1f3fe-200d-2642-fe0f.png
new file mode 100644
index 0000000000..2b205577a1
Binary files /dev/null and b/img-microsoft-64/26f9-1f3fe-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/26f9-1f3fe.png b/img-microsoft-64/26f9-1f3fe.png
new file mode 100644
index 0000000000..08f1aecdf0
Binary files /dev/null and b/img-microsoft-64/26f9-1f3fe.png differ
diff --git a/img-microsoft-64/26f9-1f3ff-200d-2640-fe0f.png b/img-microsoft-64/26f9-1f3ff-200d-2640-fe0f.png
new file mode 100644
index 0000000000..89d847cb9b
Binary files /dev/null and b/img-microsoft-64/26f9-1f3ff-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/26f9-1f3ff-200d-2642-fe0f.png b/img-microsoft-64/26f9-1f3ff-200d-2642-fe0f.png
new file mode 100644
index 0000000000..fbb4dcb133
Binary files /dev/null and b/img-microsoft-64/26f9-1f3ff-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/26f9-1f3ff.png b/img-microsoft-64/26f9-1f3ff.png
new file mode 100644
index 0000000000..b23414e4b5
Binary files /dev/null and b/img-microsoft-64/26f9-1f3ff.png differ
diff --git a/img-microsoft-64/26f9-fe0f-200d-2640-fe0f.png b/img-microsoft-64/26f9-fe0f-200d-2640-fe0f.png
new file mode 100644
index 0000000000..1048002654
Binary files /dev/null and b/img-microsoft-64/26f9-fe0f-200d-2640-fe0f.png differ
diff --git a/img-microsoft-64/26f9-fe0f-200d-2642-fe0f.png b/img-microsoft-64/26f9-fe0f-200d-2642-fe0f.png
new file mode 100644
index 0000000000..f7b1193705
Binary files /dev/null and b/img-microsoft-64/26f9-fe0f-200d-2642-fe0f.png differ
diff --git a/img-microsoft-64/26f9-fe0f.png b/img-microsoft-64/26f9-fe0f.png
new file mode 100644
index 0000000000..8be93b796b
Binary files /dev/null and b/img-microsoft-64/26f9-fe0f.png differ
diff --git a/img-microsoft-64/26fa.png b/img-microsoft-64/26fa.png
new file mode 100644
index 0000000000..49071c27f3
Binary files /dev/null and b/img-microsoft-64/26fa.png differ
diff --git a/img-microsoft-64/26fd.png b/img-microsoft-64/26fd.png
new file mode 100644
index 0000000000..111e7491c9
Binary files /dev/null and b/img-microsoft-64/26fd.png differ
diff --git a/img-microsoft-64/2702-fe0f.png b/img-microsoft-64/2702-fe0f.png
new file mode 100644
index 0000000000..226f247109
Binary files /dev/null and b/img-microsoft-64/2702-fe0f.png differ
diff --git a/img-microsoft-64/2705.png b/img-microsoft-64/2705.png
new file mode 100644
index 0000000000..8dfb1e666c
Binary files /dev/null and b/img-microsoft-64/2705.png differ
diff --git a/img-microsoft-64/2708-fe0f.png b/img-microsoft-64/2708-fe0f.png
new file mode 100644
index 0000000000..5a26776d86
Binary files /dev/null and b/img-microsoft-64/2708-fe0f.png differ
diff --git a/img-microsoft-64/2709-fe0f.png b/img-microsoft-64/2709-fe0f.png
new file mode 100644
index 0000000000..90fa003e1b
Binary files /dev/null and b/img-microsoft-64/2709-fe0f.png differ
diff --git a/img-microsoft-64/270a-1f3fb.png b/img-microsoft-64/270a-1f3fb.png
new file mode 100644
index 0000000000..4310e648b6
Binary files /dev/null and b/img-microsoft-64/270a-1f3fb.png differ
diff --git a/img-microsoft-64/270a-1f3fc.png b/img-microsoft-64/270a-1f3fc.png
new file mode 100644
index 0000000000..beeeeb6a6e
Binary files /dev/null and b/img-microsoft-64/270a-1f3fc.png differ
diff --git a/img-microsoft-64/270a-1f3fd.png b/img-microsoft-64/270a-1f3fd.png
new file mode 100644
index 0000000000..82b1050000
Binary files /dev/null and b/img-microsoft-64/270a-1f3fd.png differ
diff --git a/img-microsoft-64/270a-1f3fe.png b/img-microsoft-64/270a-1f3fe.png
new file mode 100644
index 0000000000..6e921a538f
Binary files /dev/null and b/img-microsoft-64/270a-1f3fe.png differ
diff --git a/img-microsoft-64/270a-1f3ff.png b/img-microsoft-64/270a-1f3ff.png
new file mode 100644
index 0000000000..9c119ceb6b
Binary files /dev/null and b/img-microsoft-64/270a-1f3ff.png differ
diff --git a/img-microsoft-64/270a.png b/img-microsoft-64/270a.png
new file mode 100644
index 0000000000..476799d49b
Binary files /dev/null and b/img-microsoft-64/270a.png differ
diff --git a/img-microsoft-64/270b-1f3fb.png b/img-microsoft-64/270b-1f3fb.png
new file mode 100644
index 0000000000..3f6f1b6a15
Binary files /dev/null and b/img-microsoft-64/270b-1f3fb.png differ
diff --git a/img-microsoft-64/270b-1f3fc.png b/img-microsoft-64/270b-1f3fc.png
new file mode 100644
index 0000000000..7b524a5016
Binary files /dev/null and b/img-microsoft-64/270b-1f3fc.png differ
diff --git a/img-microsoft-64/270b-1f3fd.png b/img-microsoft-64/270b-1f3fd.png
new file mode 100644
index 0000000000..b8c8b19925
Binary files /dev/null and b/img-microsoft-64/270b-1f3fd.png differ
diff --git a/img-microsoft-64/270b-1f3fe.png b/img-microsoft-64/270b-1f3fe.png
new file mode 100644
index 0000000000..9b573784d2
Binary files /dev/null and b/img-microsoft-64/270b-1f3fe.png differ
diff --git a/img-microsoft-64/270b-1f3ff.png b/img-microsoft-64/270b-1f3ff.png
new file mode 100644
index 0000000000..14557b1ee5
Binary files /dev/null and b/img-microsoft-64/270b-1f3ff.png differ
diff --git a/img-microsoft-64/270b.png b/img-microsoft-64/270b.png
new file mode 100644
index 0000000000..dde3d0ef50
Binary files /dev/null and b/img-microsoft-64/270b.png differ
diff --git a/img-microsoft-64/270c-1f3fb.png b/img-microsoft-64/270c-1f3fb.png
new file mode 100644
index 0000000000..f142a7f09d
Binary files /dev/null and b/img-microsoft-64/270c-1f3fb.png differ
diff --git a/img-microsoft-64/270c-1f3fc.png b/img-microsoft-64/270c-1f3fc.png
new file mode 100644
index 0000000000..8d2795bfd6
Binary files /dev/null and b/img-microsoft-64/270c-1f3fc.png differ
diff --git a/img-microsoft-64/270c-1f3fd.png b/img-microsoft-64/270c-1f3fd.png
new file mode 100644
index 0000000000..d7d4fded6d
Binary files /dev/null and b/img-microsoft-64/270c-1f3fd.png differ
diff --git a/img-microsoft-64/270c-1f3fe.png b/img-microsoft-64/270c-1f3fe.png
new file mode 100644
index 0000000000..6e330389a3
Binary files /dev/null and b/img-microsoft-64/270c-1f3fe.png differ
diff --git a/img-microsoft-64/270c-1f3ff.png b/img-microsoft-64/270c-1f3ff.png
new file mode 100644
index 0000000000..9eb1f55052
Binary files /dev/null and b/img-microsoft-64/270c-1f3ff.png differ
diff --git a/img-microsoft-64/270c-fe0f.png b/img-microsoft-64/270c-fe0f.png
new file mode 100644
index 0000000000..c5ec7aa779
Binary files /dev/null and b/img-microsoft-64/270c-fe0f.png differ
diff --git a/img-microsoft-64/270d-1f3fb.png b/img-microsoft-64/270d-1f3fb.png
new file mode 100644
index 0000000000..aad7c34066
Binary files /dev/null and b/img-microsoft-64/270d-1f3fb.png differ
diff --git a/img-microsoft-64/270d-1f3fc.png b/img-microsoft-64/270d-1f3fc.png
new file mode 100644
index 0000000000..9dc0f5f6cc
Binary files /dev/null and b/img-microsoft-64/270d-1f3fc.png differ
diff --git a/img-microsoft-64/270d-1f3fd.png b/img-microsoft-64/270d-1f3fd.png
new file mode 100644
index 0000000000..cfd95a1966
Binary files /dev/null and b/img-microsoft-64/270d-1f3fd.png differ
diff --git a/img-microsoft-64/270d-1f3fe.png b/img-microsoft-64/270d-1f3fe.png
new file mode 100644
index 0000000000..8edaff59c8
Binary files /dev/null and b/img-microsoft-64/270d-1f3fe.png differ
diff --git a/img-microsoft-64/270d-1f3ff.png b/img-microsoft-64/270d-1f3ff.png
new file mode 100644
index 0000000000..0f8836c69f
Binary files /dev/null and b/img-microsoft-64/270d-1f3ff.png differ
diff --git a/img-microsoft-64/270d-fe0f.png b/img-microsoft-64/270d-fe0f.png
new file mode 100644
index 0000000000..9937325418
Binary files /dev/null and b/img-microsoft-64/270d-fe0f.png differ
diff --git a/img-microsoft-64/270f-fe0f.png b/img-microsoft-64/270f-fe0f.png
new file mode 100644
index 0000000000..b715b54ee6
Binary files /dev/null and b/img-microsoft-64/270f-fe0f.png differ
diff --git a/img-microsoft-64/2712-fe0f.png b/img-microsoft-64/2712-fe0f.png
new file mode 100644
index 0000000000..5faa85f870
Binary files /dev/null and b/img-microsoft-64/2712-fe0f.png differ
diff --git a/img-microsoft-64/2714-fe0f.png b/img-microsoft-64/2714-fe0f.png
new file mode 100644
index 0000000000..9059ef4b2d
Binary files /dev/null and b/img-microsoft-64/2714-fe0f.png differ
diff --git a/img-microsoft-64/2716-fe0f.png b/img-microsoft-64/2716-fe0f.png
new file mode 100644
index 0000000000..8be14fe508
Binary files /dev/null and b/img-microsoft-64/2716-fe0f.png differ
diff --git a/img-microsoft-64/271d-fe0f.png b/img-microsoft-64/271d-fe0f.png
new file mode 100644
index 0000000000..3eac072adc
Binary files /dev/null and b/img-microsoft-64/271d-fe0f.png differ
diff --git a/img-microsoft-64/2721-fe0f.png b/img-microsoft-64/2721-fe0f.png
new file mode 100644
index 0000000000..272ec33316
Binary files /dev/null and b/img-microsoft-64/2721-fe0f.png differ
diff --git a/img-microsoft-64/2728.png b/img-microsoft-64/2728.png
new file mode 100644
index 0000000000..5f5e0e1c97
Binary files /dev/null and b/img-microsoft-64/2728.png differ
diff --git a/img-microsoft-64/2733-fe0f.png b/img-microsoft-64/2733-fe0f.png
new file mode 100644
index 0000000000..a046c5cbaa
Binary files /dev/null and b/img-microsoft-64/2733-fe0f.png differ
diff --git a/img-microsoft-64/2734-fe0f.png b/img-microsoft-64/2734-fe0f.png
new file mode 100644
index 0000000000..dd7234feaf
Binary files /dev/null and b/img-microsoft-64/2734-fe0f.png differ
diff --git a/img-microsoft-64/2744-fe0f.png b/img-microsoft-64/2744-fe0f.png
new file mode 100644
index 0000000000..ab6e6a9da8
Binary files /dev/null and b/img-microsoft-64/2744-fe0f.png differ
diff --git a/img-microsoft-64/2747-fe0f.png b/img-microsoft-64/2747-fe0f.png
new file mode 100644
index 0000000000..fbd38d9c2d
Binary files /dev/null and b/img-microsoft-64/2747-fe0f.png differ
diff --git a/img-microsoft-64/274c.png b/img-microsoft-64/274c.png
new file mode 100644
index 0000000000..9796bf7b55
Binary files /dev/null and b/img-microsoft-64/274c.png differ
diff --git a/img-microsoft-64/274e.png b/img-microsoft-64/274e.png
new file mode 100644
index 0000000000..0814c680ce
Binary files /dev/null and b/img-microsoft-64/274e.png differ
diff --git a/img-microsoft-64/2753.png b/img-microsoft-64/2753.png
new file mode 100644
index 0000000000..5f5c8843e2
Binary files /dev/null and b/img-microsoft-64/2753.png differ
diff --git a/img-microsoft-64/2754.png b/img-microsoft-64/2754.png
new file mode 100644
index 0000000000..b4cba66d12
Binary files /dev/null and b/img-microsoft-64/2754.png differ
diff --git a/img-microsoft-64/2755.png b/img-microsoft-64/2755.png
new file mode 100644
index 0000000000..fbb7ad62d5
Binary files /dev/null and b/img-microsoft-64/2755.png differ
diff --git a/img-microsoft-64/2757.png b/img-microsoft-64/2757.png
new file mode 100644
index 0000000000..4bca2fe1cd
Binary files /dev/null and b/img-microsoft-64/2757.png differ
diff --git a/img-microsoft-64/2763-fe0f.png b/img-microsoft-64/2763-fe0f.png
new file mode 100644
index 0000000000..e0d869d4f8
Binary files /dev/null and b/img-microsoft-64/2763-fe0f.png differ
diff --git a/img-microsoft-64/2764-fe0f-200d-1f525.png b/img-microsoft-64/2764-fe0f-200d-1f525.png
new file mode 100644
index 0000000000..a16ce3fd2d
Binary files /dev/null and b/img-microsoft-64/2764-fe0f-200d-1f525.png differ
diff --git a/img-microsoft-64/2764-fe0f-200d-1fa79.png b/img-microsoft-64/2764-fe0f-200d-1fa79.png
new file mode 100644
index 0000000000..0cb97a3eae
Binary files /dev/null and b/img-microsoft-64/2764-fe0f-200d-1fa79.png differ
diff --git a/img-microsoft-64/2764-fe0f.png b/img-microsoft-64/2764-fe0f.png
new file mode 100644
index 0000000000..603e5a7a43
Binary files /dev/null and b/img-microsoft-64/2764-fe0f.png differ
diff --git a/img-microsoft-64/2795.png b/img-microsoft-64/2795.png
new file mode 100644
index 0000000000..8d36a56a0f
Binary files /dev/null and b/img-microsoft-64/2795.png differ
diff --git a/img-microsoft-64/2796.png b/img-microsoft-64/2796.png
new file mode 100644
index 0000000000..8c5fb318ec
Binary files /dev/null and b/img-microsoft-64/2796.png differ
diff --git a/img-microsoft-64/2797.png b/img-microsoft-64/2797.png
new file mode 100644
index 0000000000..3199c62a00
Binary files /dev/null and b/img-microsoft-64/2797.png differ
diff --git a/img-microsoft-64/27a1-fe0f.png b/img-microsoft-64/27a1-fe0f.png
new file mode 100644
index 0000000000..6ccc3e6c8f
Binary files /dev/null and b/img-microsoft-64/27a1-fe0f.png differ
diff --git a/img-microsoft-64/27b0.png b/img-microsoft-64/27b0.png
new file mode 100644
index 0000000000..8fa05e06ba
Binary files /dev/null and b/img-microsoft-64/27b0.png differ
diff --git a/img-microsoft-64/27bf.png b/img-microsoft-64/27bf.png
new file mode 100644
index 0000000000..2139ab4a30
Binary files /dev/null and b/img-microsoft-64/27bf.png differ
diff --git a/img-microsoft-64/2934-fe0f.png b/img-microsoft-64/2934-fe0f.png
new file mode 100644
index 0000000000..774d9d83fc
Binary files /dev/null and b/img-microsoft-64/2934-fe0f.png differ
diff --git a/img-microsoft-64/2935-fe0f.png b/img-microsoft-64/2935-fe0f.png
new file mode 100644
index 0000000000..7edee917ff
Binary files /dev/null and b/img-microsoft-64/2935-fe0f.png differ
diff --git a/img-microsoft-64/2b05-fe0f.png b/img-microsoft-64/2b05-fe0f.png
new file mode 100644
index 0000000000..72f1eb474e
Binary files /dev/null and b/img-microsoft-64/2b05-fe0f.png differ
diff --git a/img-microsoft-64/2b06-fe0f.png b/img-microsoft-64/2b06-fe0f.png
new file mode 100644
index 0000000000..7157c596ce
Binary files /dev/null and b/img-microsoft-64/2b06-fe0f.png differ
diff --git a/img-microsoft-64/2b07-fe0f.png b/img-microsoft-64/2b07-fe0f.png
new file mode 100644
index 0000000000..e8ac1a4c5f
Binary files /dev/null and b/img-microsoft-64/2b07-fe0f.png differ
diff --git a/img-microsoft-64/2b1b.png b/img-microsoft-64/2b1b.png
new file mode 100644
index 0000000000..42affd360d
Binary files /dev/null and b/img-microsoft-64/2b1b.png differ
diff --git a/img-microsoft-64/2b1c.png b/img-microsoft-64/2b1c.png
new file mode 100644
index 0000000000..1a17f4fcde
Binary files /dev/null and b/img-microsoft-64/2b1c.png differ
diff --git a/img-microsoft-64/2b50.png b/img-microsoft-64/2b50.png
new file mode 100644
index 0000000000..7f766e820a
Binary files /dev/null and b/img-microsoft-64/2b50.png differ
diff --git a/img-microsoft-64/2b55.png b/img-microsoft-64/2b55.png
new file mode 100644
index 0000000000..ba090c9437
Binary files /dev/null and b/img-microsoft-64/2b55.png differ
diff --git a/img-microsoft-64/3030-fe0f.png b/img-microsoft-64/3030-fe0f.png
new file mode 100644
index 0000000000..8dad6fffa2
Binary files /dev/null and b/img-microsoft-64/3030-fe0f.png differ
diff --git a/img-microsoft-64/303d-fe0f.png b/img-microsoft-64/303d-fe0f.png
new file mode 100644
index 0000000000..fe0bd5dd8a
Binary files /dev/null and b/img-microsoft-64/303d-fe0f.png differ
diff --git a/img-microsoft-64/3297-fe0f.png b/img-microsoft-64/3297-fe0f.png
new file mode 100644
index 0000000000..e6bcf00f42
Binary files /dev/null and b/img-microsoft-64/3297-fe0f.png differ
diff --git a/img-microsoft-64/3299-fe0f.png b/img-microsoft-64/3299-fe0f.png
new file mode 100644
index 0000000000..47d03b3904
Binary files /dev/null and b/img-microsoft-64/3299-fe0f.png differ
diff --git a/sheet_microsoft_16.png b/sheet_microsoft_16.png
new file mode 100644
index 0000000000..7f415f6027
Binary files /dev/null and b/sheet_microsoft_16.png differ
diff --git a/sheet_microsoft_20.png b/sheet_microsoft_20.png
new file mode 100644
index 0000000000..0e6502bda6
Binary files /dev/null and b/sheet_microsoft_20.png differ
diff --git a/sheet_microsoft_32.png b/sheet_microsoft_32.png
new file mode 100644
index 0000000000..be3e4d95b1
Binary files /dev/null and b/sheet_microsoft_32.png differ
diff --git a/sheet_microsoft_64.png b/sheet_microsoft_64.png
new file mode 100644
index 0000000000..2718361882
Binary files /dev/null and b/sheet_microsoft_64.png differ
diff --git a/sheets-clean/sheet_microsoft_16_clean.png b/sheets-clean/sheet_microsoft_16_clean.png
new file mode 100644
index 0000000000..309c8d2e4d
Binary files /dev/null and b/sheets-clean/sheet_microsoft_16_clean.png differ
diff --git a/sheets-clean/sheet_microsoft_20_clean.png b/sheets-clean/sheet_microsoft_20_clean.png
new file mode 100644
index 0000000000..3670b99c06
Binary files /dev/null and b/sheets-clean/sheet_microsoft_20_clean.png differ
diff --git a/sheets-clean/sheet_microsoft_32_clean.png b/sheets-clean/sheet_microsoft_32_clean.png
new file mode 100644
index 0000000000..c7cb9e8e41
Binary files /dev/null and b/sheets-clean/sheet_microsoft_32_clean.png differ
diff --git a/sheets-clean/sheet_microsoft_64_clean.png b/sheets-clean/sheet_microsoft_64_clean.png
new file mode 100644
index 0000000000..02025a9dfd
Binary files /dev/null and b/sheets-clean/sheet_microsoft_64_clean.png differ
diff --git a/sheets-indexed-128/sheet_microsoft_16_indexed_128.png b/sheets-indexed-128/sheet_microsoft_16_indexed_128.png
new file mode 100644
index 0000000000..eb213ddab5
Binary files /dev/null and b/sheets-indexed-128/sheet_microsoft_16_indexed_128.png differ
diff --git a/sheets-indexed-128/sheet_microsoft_20_indexed_128.png b/sheets-indexed-128/sheet_microsoft_20_indexed_128.png
new file mode 100644
index 0000000000..6588c55508
Binary files /dev/null and b/sheets-indexed-128/sheet_microsoft_20_indexed_128.png differ
diff --git a/sheets-indexed-128/sheet_microsoft_32_indexed_128.png b/sheets-indexed-128/sheet_microsoft_32_indexed_128.png
new file mode 100644
index 0000000000..4b5e565f04
Binary files /dev/null and b/sheets-indexed-128/sheet_microsoft_32_indexed_128.png differ
diff --git a/sheets-indexed-128/sheet_microsoft_64_indexed_128.png b/sheets-indexed-128/sheet_microsoft_64_indexed_128.png
new file mode 100644
index 0000000000..eac4a9c430
Binary files /dev/null and b/sheets-indexed-128/sheet_microsoft_64_indexed_128.png differ
diff --git a/sheets-indexed-256/sheet_microsoft_16_indexed_256.png b/sheets-indexed-256/sheet_microsoft_16_indexed_256.png
new file mode 100644
index 0000000000..0338ca3285
Binary files /dev/null and b/sheets-indexed-256/sheet_microsoft_16_indexed_256.png differ
diff --git a/sheets-indexed-256/sheet_microsoft_20_indexed_256.png b/sheets-indexed-256/sheet_microsoft_20_indexed_256.png
new file mode 100644
index 0000000000..0326558403
Binary files /dev/null and b/sheets-indexed-256/sheet_microsoft_20_indexed_256.png differ
diff --git a/sheets-indexed-256/sheet_microsoft_32_indexed_256.png b/sheets-indexed-256/sheet_microsoft_32_indexed_256.png
new file mode 100644
index 0000000000..0e21f7a109
Binary files /dev/null and b/sheets-indexed-256/sheet_microsoft_32_indexed_256.png differ
diff --git a/sheets-indexed-256/sheet_microsoft_64_indexed_256.png b/sheets-indexed-256/sheet_microsoft_64_indexed_256.png
new file mode 100644
index 0000000000..177c31b094
Binary files /dev/null and b/sheets-indexed-256/sheet_microsoft_64_indexed_256.png differ
diff --git a/table.htm b/table.htm
index 50dbc632ed..411ab2f452 100644
--- a/table.htm
+++ b/table.htm
@@ -60,6 +60,7 @@ Emoji Catalog
|
|
- |
+ |
#️⃣ |
hash key |
:hash: |
@@ -72,6 +73,7 @@ Emoji Catalog
|
|
- |
+ |
*️⃣ |
keycap: * |
:keycap_star: |
@@ -84,6 +86,7 @@ Emoji Catalog
|
|
- |
+ |
0️⃣ |
keycap 0 |
:zero: |
@@ -96,6 +99,7 @@ Emoji Catalog
|
|
- |
+ |
1️⃣ |
keycap 1 |
:one: |
@@ -108,6 +112,7 @@ Emoji Catalog
|
|
- |
+ |
2️⃣ |
keycap 2 |
:two: |
@@ -120,6 +125,7 @@ Emoji Catalog
|
|
- |
+ |
3️⃣ |
keycap 3 |
:three: |
@@ -132,6 +138,7 @@ Emoji Catalog
|
|
- |
+ |
4️⃣ |
keycap 4 |
:four: |
@@ -144,6 +151,7 @@ Emoji Catalog
|
|
- |
+ |
5️⃣ |
keycap 5 |
:five: |
@@ -156,6 +164,7 @@ Emoji Catalog
|
|
- |
+ |
6️⃣ |
keycap 6 |
:six: |
@@ -168,6 +177,7 @@ Emoji Catalog
|
|
- |
+ |
7️⃣ |
keycap 7 |
:seven: |
@@ -180,6 +190,7 @@ Emoji Catalog
|
|
- |
+ |
8️⃣ |
keycap 8 |
:eight: |
@@ -192,6 +203,7 @@ Emoji Catalog
|
|
- |
+ |
9️⃣ |
keycap 9 |
:nine: |
@@ -204,6 +216,7 @@ Emoji Catalog
|
|
- |
+ |
©️ |
copyright sign |
:copyright: |
@@ -216,6 +229,7 @@ Emoji Catalog
|
|
- |
+ |
®️ |
registered sign |
:registered: |
@@ -228,6 +242,7 @@ Emoji Catalog
|
|
|
+ |
🀄 |
mahjong tile red dragon |
:mahjong: |
@@ -240,6 +255,7 @@ Emoji Catalog
|
|
|
+ |
🃏 |
playing card black joker |
:black_joker: |
@@ -252,6 +268,7 @@ Emoji Catalog
|
|
|
+ |
🅰️ |
negative squared latin capital letter a |
:a: |
@@ -264,6 +281,7 @@ Emoji Catalog
|
|
|
+ |
🅱️ |
negative squared latin capital letter b |
:b: |
@@ -276,6 +294,7 @@ Emoji Catalog
|
|
|
+ |
🅾️ |
negative squared latin capital letter o |
:o2: |
@@ -288,6 +307,7 @@ Emoji Catalog
|
|
|
+ |
🅿️ |
negative squared latin capital letter p |
:parking: |
@@ -300,6 +320,7 @@ Emoji Catalog
|
|
|
+ |
🆎 |
negative squared ab |
:ab: |
@@ -312,6 +333,7 @@ Emoji Catalog
|
|
|
+ |
🆑 |
squared cl |
:cl: |
@@ -324,6 +346,7 @@ Emoji Catalog
|
|
|
+ |
🆒 |
squared cool |
:cool: |
@@ -336,6 +359,7 @@ Emoji Catalog
|
|
|
+ |
🆓 |
squared free |
:free: |
@@ -348,6 +372,7 @@ Emoji Catalog
|
|
|
+ |
🆔 |
squared id |
:id: |
@@ -360,6 +385,7 @@ Emoji Catalog
|
|
|
+ |
🆕 |
squared new |
:new: |
@@ -372,6 +398,7 @@ Emoji Catalog
|
|
|
+ |
🆖 |
squared ng |
:ng: |
@@ -384,6 +411,7 @@ Emoji Catalog
|
|
|
+ |
🆗 |
squared ok |
:ok: |
@@ -396,6 +424,7 @@ Emoji Catalog
|
|
|
+ |
🆘 |
squared sos |
:sos: |
@@ -408,6 +437,7 @@ Emoji Catalog
|
|
|
+ |
🆙 |
squared up with exclamation mark |
:up: |
@@ -420,6 +450,7 @@ Emoji Catalog
|
|
|
+ |
🆚 |
squared vs |
:vs: |
@@ -432,6 +463,7 @@ Emoji Catalog
|
|
|
+ - |
🇦🇨 |
ascension island flag |
:flag-ac: |
@@ -444,6 +476,7 @@ Emoji Catalog
|
|
|
+ - |
🇦🇩 |
andorra flag |
:flag-ad: |
@@ -456,6 +489,7 @@ Emoji Catalog
|
|
|
+ - |
🇦🇪 |
united arab emirates flag |
:flag-ae: |
@@ -468,6 +502,7 @@ Emoji Catalog
|
|
|
+ - |
🇦🇫 |
afghanistan flag |
:flag-af: |
@@ -480,6 +515,7 @@ Emoji Catalog
|
|
|
+ - |
🇦🇬 |
antigua & barbuda flag |
:flag-ag: |
@@ -492,6 +528,7 @@ Emoji Catalog
|
|
|
+ - |
🇦🇮 |
anguilla flag |
:flag-ai: |
@@ -504,6 +541,7 @@ Emoji Catalog
|
|
|
+ - |
🇦🇱 |
albania flag |
:flag-al: |
@@ -516,6 +554,7 @@ Emoji Catalog
|
|
|
+ - |
🇦🇲 |
armenia flag |
:flag-am: |
@@ -528,6 +567,7 @@ Emoji Catalog
|
|
|
+ - |
🇦🇴 |
angola flag |
:flag-ao: |
@@ -540,6 +580,7 @@ Emoji Catalog
|
|
|
+ - |
🇦🇶 |
antarctica flag |
:flag-aq: |
@@ -552,6 +593,7 @@ Emoji Catalog
|
|
|
+ - |
🇦🇷 |
argentina flag |
:flag-ar: |
@@ -564,6 +606,7 @@ Emoji Catalog
|
|
|
+ - |
🇦🇸 |
american samoa flag |
:flag-as: |
@@ -576,6 +619,7 @@ Emoji Catalog
|
|
|
+ - |
🇦🇹 |
austria flag |
:flag-at: |
@@ -588,6 +632,7 @@ Emoji Catalog
|
|
|
+ - |
🇦🇺 |
australia flag |
:flag-au: |
@@ -600,6 +645,7 @@ Emoji Catalog
|
|
|
+ - |
🇦🇼 |
aruba flag |
:flag-aw: |
@@ -612,6 +658,7 @@ Emoji Catalog
|
|
|
+ - |
🇦🇽 |
åland islands flag |
:flag-ax: |
@@ -624,6 +671,7 @@ Emoji Catalog
|
|
|
+ - |
🇦🇿 |
azerbaijan flag |
:flag-az: |
@@ -636,6 +684,7 @@ Emoji Catalog
|
|
|
+ - |
🇧🇦 |
bosnia & herzegovina flag |
:flag-ba: |
@@ -648,6 +697,7 @@ Emoji Catalog
|
|
|
+ - |
🇧🇧 |
barbados flag |
:flag-bb: |
@@ -660,6 +710,7 @@ Emoji Catalog
|
|
|
+ - |
🇧🇩 |
bangladesh flag |
:flag-bd: |
@@ -672,6 +723,7 @@ Emoji Catalog
|
|
|
+ - |
🇧🇪 |
belgium flag |
:flag-be: |
@@ -684,6 +736,7 @@ Emoji Catalog
|
|
|
+ - |
🇧🇫 |
burkina faso flag |
:flag-bf: |
@@ -696,6 +749,7 @@ Emoji Catalog
|
|
|
+ - |
🇧🇬 |
bulgaria flag |
:flag-bg: |
@@ -708,6 +762,7 @@ Emoji Catalog
|
|
|
+ - |
🇧🇭 |
bahrain flag |
:flag-bh: |
@@ -720,6 +775,7 @@ Emoji Catalog
|
|
|
+ - |
🇧🇮 |
burundi flag |
:flag-bi: |
@@ -732,6 +788,7 @@ Emoji Catalog
|
|
|
+ - |
🇧🇯 |
benin flag |
:flag-bj: |
@@ -744,6 +801,7 @@ Emoji Catalog
|
|
|
+ - |
🇧🇱 |
st. barthélemy flag |
:flag-bl: |
@@ -756,6 +814,7 @@ Emoji Catalog
|
|
|
+ - |
🇧🇲 |
bermuda flag |
:flag-bm: |
@@ -768,6 +827,7 @@ Emoji Catalog
|
|
|
+ - |
🇧🇳 |
brunei flag |
:flag-bn: |
@@ -780,6 +840,7 @@ Emoji Catalog
|
|
|
+ - |
🇧🇴 |
bolivia flag |
:flag-bo: |
@@ -792,6 +853,7 @@ Emoji Catalog
|
|
|
+ - |
🇧🇶 |
caribbean netherlands flag |
:flag-bq: |
@@ -804,6 +866,7 @@ Emoji Catalog
|
|
|
+ - |
🇧🇷 |
brazil flag |
:flag-br: |
@@ -816,6 +879,7 @@ Emoji Catalog
|
|
|
+ - |
🇧🇸 |
bahamas flag |
:flag-bs: |
@@ -828,6 +892,7 @@ Emoji Catalog
|
|
|
+ - |
🇧🇹 |
bhutan flag |
:flag-bt: |
@@ -840,6 +905,7 @@ Emoji Catalog
|
|
|
+ - |
🇧🇻 |
bouvet island flag |
:flag-bv: |
@@ -852,6 +918,7 @@ Emoji Catalog
|
|
|
+ - |
🇧🇼 |
botswana flag |
:flag-bw: |
@@ -864,6 +931,7 @@ Emoji Catalog
|
|
|
+ - |
🇧🇾 |
belarus flag |
:flag-by: |
@@ -876,6 +944,7 @@ Emoji Catalog
|
|
|
+ - |
🇧🇿 |
belize flag |
:flag-bz: |
@@ -888,6 +957,7 @@ Emoji Catalog
|
|
|
+ - |
🇨🇦 |
canada flag |
:flag-ca: |
@@ -900,6 +970,7 @@ Emoji Catalog
|
|
|
+ - |
🇨🇨 |
cocos (keeling) islands flag |
:flag-cc: |
@@ -912,6 +983,7 @@ Emoji Catalog
|
|
|
+ - |
🇨🇩 |
congo - kinshasa flag |
:flag-cd: |
@@ -924,6 +996,7 @@ Emoji Catalog
|
|
|
+ - |
🇨🇫 |
central african republic flag |
:flag-cf: |
@@ -936,6 +1009,7 @@ Emoji Catalog
|
|
|
+ - |
🇨🇬 |
congo - brazzaville flag |
:flag-cg: |
@@ -948,6 +1022,7 @@ Emoji Catalog
|
|
|
+ - |
🇨🇭 |
switzerland flag |
:flag-ch: |
@@ -960,6 +1035,7 @@ Emoji Catalog
|
|
|
+ - |
🇨🇮 |
côte d’ivoire flag |
:flag-ci: |
@@ -972,6 +1048,7 @@ Emoji Catalog
|
|
|
+ - |
🇨🇰 |
cook islands flag |
:flag-ck: |
@@ -984,6 +1061,7 @@ Emoji Catalog
|
|
|
+ - |
🇨🇱 |
chile flag |
:flag-cl: |
@@ -996,6 +1074,7 @@ Emoji Catalog
|
|
|
+ - |
🇨🇲 |
cameroon flag |
:flag-cm: |
@@ -1008,6 +1087,7 @@ Emoji Catalog
|
|
|
+ - |
🇨🇳 |
china flag |
:cn: |
@@ -1020,6 +1100,7 @@ Emoji Catalog
|
|
|
+ - |
🇨🇴 |
colombia flag |
:flag-co: |
@@ -1032,6 +1113,7 @@ Emoji Catalog
|
|
|
+ - |
🇨🇵 |
clipperton island flag |
:flag-cp: |
@@ -1044,6 +1126,7 @@ Emoji Catalog
|
|
|
+ - |
🇨🇷 |
costa rica flag |
:flag-cr: |
@@ -1056,6 +1139,7 @@ Emoji Catalog
|
|
|
+ - |
🇨🇺 |
cuba flag |
:flag-cu: |
@@ -1068,6 +1152,7 @@ Emoji Catalog
|
|
|
+ - |
🇨🇻 |
cape verde flag |
:flag-cv: |
@@ -1080,6 +1165,7 @@ Emoji Catalog
|
|
|
+ - |
🇨🇼 |
curaçao flag |
:flag-cw: |
@@ -1092,6 +1178,7 @@ Emoji Catalog
|
|
|
+ - |
🇨🇽 |
christmas island flag |
:flag-cx: |
@@ -1104,6 +1191,7 @@ Emoji Catalog
|
|
|
+ - |
🇨🇾 |
cyprus flag |
:flag-cy: |
@@ -1116,6 +1204,7 @@ Emoji Catalog
|
|
|
+ - |
🇨🇿 |
czechia flag |
:flag-cz: |
@@ -1128,6 +1217,7 @@ Emoji Catalog
|
|
|
+ - |
🇩🇪 |
germany flag |
:de: |
@@ -1140,6 +1230,7 @@ Emoji Catalog
|
|
|
+ - |
🇩🇬 |
diego garcia flag |
:flag-dg: |
@@ -1152,6 +1243,7 @@ Emoji Catalog
|
|
|
+ - |
🇩🇯 |
djibouti flag |
:flag-dj: |
@@ -1164,6 +1256,7 @@ Emoji Catalog
|
|
|
+ - |
🇩🇰 |
denmark flag |
:flag-dk: |
@@ -1176,6 +1269,7 @@ Emoji Catalog
|
|
|
+ - |
🇩🇲 |
dominica flag |
:flag-dm: |
@@ -1188,6 +1282,7 @@ Emoji Catalog
|
|
|
+ - |
🇩🇴 |
dominican republic flag |
:flag-do: |
@@ -1200,6 +1295,7 @@ Emoji Catalog
|
|
|
+ - |
🇩🇿 |
algeria flag |
:flag-dz: |
@@ -1212,6 +1308,7 @@ Emoji Catalog
|
|
|
+ - |
🇪🇦 |
ceuta & melilla flag |
:flag-ea: |
@@ -1224,6 +1321,7 @@ Emoji Catalog
|
|
|
+ - |
🇪🇨 |
ecuador flag |
:flag-ec: |
@@ -1236,6 +1334,7 @@ Emoji Catalog
|
|
|
+ - |
🇪🇪 |
estonia flag |
:flag-ee: |
@@ -1248,6 +1347,7 @@ Emoji Catalog
|
|
|
+ - |
🇪🇬 |
egypt flag |
:flag-eg: |
@@ -1260,6 +1360,7 @@ Emoji Catalog
|
|
|
+ - |
🇪🇭 |
western sahara flag |
:flag-eh: |
@@ -1272,6 +1373,7 @@ Emoji Catalog
|
|
|
+ - |
🇪🇷 |
eritrea flag |
:flag-er: |
@@ -1284,6 +1386,7 @@ Emoji Catalog
|
|
|
+ - |
🇪🇸 |
spain flag |
:es: |
@@ -1296,6 +1399,7 @@ Emoji Catalog
|
|
|
+ - |
🇪🇹 |
ethiopia flag |
:flag-et: |
@@ -1308,6 +1412,7 @@ Emoji Catalog
|
|
|
+ - |
🇪🇺 |
european union flag |
:flag-eu: |
@@ -1320,6 +1425,7 @@ Emoji Catalog
|
|
|
+ - |
🇫🇮 |
finland flag |
:flag-fi: |
@@ -1332,6 +1438,7 @@ Emoji Catalog
|
|
|
+ - |
🇫🇯 |
fiji flag |
:flag-fj: |
@@ -1344,6 +1451,7 @@ Emoji Catalog
|
|
|
+ - |
🇫🇰 |
falkland islands flag |
:flag-fk: |
@@ -1356,6 +1464,7 @@ Emoji Catalog
|
|
|
+ - |
🇫🇲 |
micronesia flag |
:flag-fm: |
@@ -1368,6 +1477,7 @@ Emoji Catalog
|
|
|
+ - |
🇫🇴 |
faroe islands flag |
:flag-fo: |
@@ -1380,6 +1490,7 @@ Emoji Catalog
|
|
|
+ - |
🇫🇷 |
france flag |
:fr: |
@@ -1392,6 +1503,7 @@ Emoji Catalog
|
|
|
+ - |
🇬🇦 |
gabon flag |
:flag-ga: |
@@ -1404,6 +1516,7 @@ Emoji Catalog
|
|
|
+ - |
🇬🇧 |
united kingdom flag |
:gb: |
@@ -1416,6 +1529,7 @@ Emoji Catalog
|
|
|
+ - |
🇬🇩 |
grenada flag |
:flag-gd: |
@@ -1428,6 +1542,7 @@ Emoji Catalog
|
|
|
+ - |
🇬🇪 |
georgia flag |
:flag-ge: |
@@ -1440,6 +1555,7 @@ Emoji Catalog
|
|
|
+ - |
🇬🇫 |
french guiana flag |
:flag-gf: |
@@ -1452,6 +1568,7 @@ Emoji Catalog
|
|
|
+ - |
🇬🇬 |
guernsey flag |
:flag-gg: |
@@ -1464,6 +1581,7 @@ Emoji Catalog
|
|
|
+ - |
🇬🇭 |
ghana flag |
:flag-gh: |
@@ -1476,6 +1594,7 @@ Emoji Catalog
|
|
|
+ - |
🇬🇮 |
gibraltar flag |
:flag-gi: |
@@ -1488,6 +1607,7 @@ Emoji Catalog
|
|
|
+ - |
🇬🇱 |
greenland flag |
:flag-gl: |
@@ -1500,6 +1620,7 @@ Emoji Catalog
|
|
|
+ - |
🇬🇲 |
gambia flag |
:flag-gm: |
@@ -1512,6 +1633,7 @@ Emoji Catalog
|
|
|
+ - |
🇬🇳 |
guinea flag |
:flag-gn: |
@@ -1524,6 +1646,7 @@ Emoji Catalog
|
|
|
+ - |
🇬🇵 |
guadeloupe flag |
:flag-gp: |
@@ -1536,6 +1659,7 @@ Emoji Catalog
|
|
|
+ - |
🇬🇶 |
equatorial guinea flag |
:flag-gq: |
@@ -1548,6 +1672,7 @@ Emoji Catalog
|
|
|
+ - |
🇬🇷 |
greece flag |
:flag-gr: |
@@ -1560,6 +1685,7 @@ Emoji Catalog
|
|
|
+ - |
🇬🇸 |
south georgia & south sandwich islands flag |
:flag-gs: |
@@ -1572,6 +1698,7 @@ Emoji Catalog
|
|
|
+ - |
🇬🇹 |
guatemala flag |
:flag-gt: |
@@ -1584,6 +1711,7 @@ Emoji Catalog
|
|
|
+ - |
🇬🇺 |
guam flag |
:flag-gu: |
@@ -1596,6 +1724,7 @@ Emoji Catalog
|
|
|
+ - |
🇬🇼 |
guinea-bissau flag |
:flag-gw: |
@@ -1608,6 +1737,7 @@ Emoji Catalog
|
|
|
+ - |
🇬🇾 |
guyana flag |
:flag-gy: |
@@ -1620,6 +1750,7 @@ Emoji Catalog
|
|
|
+ - |
🇭🇰 |
hong kong sar china flag |
:flag-hk: |
@@ -1632,6 +1763,7 @@ Emoji Catalog
|
|
|
+ - |
🇭🇲 |
heard & mcdonald islands flag |
:flag-hm: |
@@ -1644,6 +1776,7 @@ Emoji Catalog
|
|
|
+ - |
🇭🇳 |
honduras flag |
:flag-hn: |
@@ -1656,6 +1789,7 @@ Emoji Catalog
|
|
|
+ - |
🇭🇷 |
croatia flag |
:flag-hr: |
@@ -1668,6 +1802,7 @@ Emoji Catalog
|
|
|
+ - |
🇭🇹 |
haiti flag |
:flag-ht: |
@@ -1680,6 +1815,7 @@ Emoji Catalog
|
|
|
+ - |
🇭🇺 |
hungary flag |
:flag-hu: |
@@ -1692,6 +1828,7 @@ Emoji Catalog
|
|
|
+ - |
🇮🇨 |
canary islands flag |
:flag-ic: |
@@ -1704,6 +1841,7 @@ Emoji Catalog
|
|
|
+ - |
🇮🇩 |
indonesia flag |
:flag-id: |
@@ -1716,6 +1854,7 @@ Emoji Catalog
|
|
|
+ - |
🇮🇪 |
ireland flag |
:flag-ie: |
@@ -1728,6 +1867,7 @@ Emoji Catalog
|
|
|
+ - |
🇮🇱 |
israel flag |
:flag-il: |
@@ -1740,6 +1880,7 @@ Emoji Catalog
|
|
|
+ - |
🇮🇲 |
isle of man flag |
:flag-im: |
@@ -1752,6 +1893,7 @@ Emoji Catalog
|
|
|
+ - |
🇮🇳 |
india flag |
:flag-in: |
@@ -1764,6 +1906,7 @@ Emoji Catalog
|
|
|
+ - |
🇮🇴 |
british indian ocean territory flag |
:flag-io: |
@@ -1776,6 +1919,7 @@ Emoji Catalog
|
|
|
+ - |
🇮🇶 |
iraq flag |
:flag-iq: |
@@ -1788,6 +1932,7 @@ Emoji Catalog
|
|
|
+ - |
🇮🇷 |
iran flag |
:flag-ir: |
@@ -1800,6 +1945,7 @@ Emoji Catalog
|
|
|
+ - |
🇮🇸 |
iceland flag |
:flag-is: |
@@ -1812,6 +1958,7 @@ Emoji Catalog
|
|
|
+ - |
🇮🇹 |
italy flag |
:it: |
@@ -1824,6 +1971,7 @@ Emoji Catalog
|
|
|
+ - |
🇯🇪 |
jersey flag |
:flag-je: |
@@ -1836,6 +1984,7 @@ Emoji Catalog
|
|
|
+ - |
🇯🇲 |
jamaica flag |
:flag-jm: |
@@ -1848,6 +1997,7 @@ Emoji Catalog
|
|
|
+ - |
🇯🇴 |
jordan flag |
:flag-jo: |
@@ -1860,6 +2010,7 @@ Emoji Catalog
|
|
|
+ - |
🇯🇵 |
japan flag |
:jp: |
@@ -1872,6 +2023,7 @@ Emoji Catalog
|
|
|
+ - |
🇰🇪 |
kenya flag |
:flag-ke: |
@@ -1884,6 +2036,7 @@ Emoji Catalog
|
|
|
+ - |
🇰🇬 |
kyrgyzstan flag |
:flag-kg: |
@@ -1896,6 +2049,7 @@ Emoji Catalog
|
|
|
+ - |
🇰🇭 |
cambodia flag |
:flag-kh: |
@@ -1908,6 +2062,7 @@ Emoji Catalog
|
|
|
+ - |
🇰🇮 |
kiribati flag |
:flag-ki: |
@@ -1920,6 +2075,7 @@ Emoji Catalog
|
|
|
+ - |
🇰🇲 |
comoros flag |
:flag-km: |
@@ -1932,6 +2088,7 @@ Emoji Catalog
|
|
|
+ - |
🇰🇳 |
st. kitts & nevis flag |
:flag-kn: |
@@ -1944,6 +2101,7 @@ Emoji Catalog
|
|
|
+ - |
🇰🇵 |
north korea flag |
:flag-kp: |
@@ -1956,6 +2114,7 @@ Emoji Catalog
|
|
|
+ - |
🇰🇷 |
south korea flag |
:kr: |
@@ -1968,6 +2127,7 @@ Emoji Catalog
|
|
|
+ - |
🇰🇼 |
kuwait flag |
:flag-kw: |
@@ -1980,6 +2140,7 @@ Emoji Catalog
|
|
|
+ - |
🇰🇾 |
cayman islands flag |
:flag-ky: |
@@ -1992,6 +2153,7 @@ Emoji Catalog
|
|
|
+ - |
🇰🇿 |
kazakhstan flag |
:flag-kz: |
@@ -2004,6 +2166,7 @@ Emoji Catalog
|
|
|
+ - |
🇱🇦 |
laos flag |
:flag-la: |
@@ -2016,6 +2179,7 @@ Emoji Catalog
|
|
|
+ - |
🇱🇧 |
lebanon flag |
:flag-lb: |
@@ -2028,6 +2192,7 @@ Emoji Catalog
|
|
|
+ - |
🇱🇨 |
st. lucia flag |
:flag-lc: |
@@ -2040,6 +2205,7 @@ Emoji Catalog
|
|
|
+ - |
🇱🇮 |
liechtenstein flag |
:flag-li: |
@@ -2052,6 +2218,7 @@ Emoji Catalog
|
|
|
+ - |
🇱🇰 |
sri lanka flag |
:flag-lk: |
@@ -2064,6 +2231,7 @@ Emoji Catalog
|
|
|
+ - |
🇱🇷 |
liberia flag |
:flag-lr: |
@@ -2076,6 +2244,7 @@ Emoji Catalog
|
|
|
+ - |
🇱🇸 |
lesotho flag |
:flag-ls: |
@@ -2088,6 +2257,7 @@ Emoji Catalog
|
|
|
+ - |
🇱🇹 |
lithuania flag |
:flag-lt: |
@@ -2100,6 +2270,7 @@ Emoji Catalog
|
|
|
+ - |
🇱🇺 |
luxembourg flag |
:flag-lu: |
@@ -2112,6 +2283,7 @@ Emoji Catalog
|
|
|
+ - |
🇱🇻 |
latvia flag |
:flag-lv: |
@@ -2124,6 +2296,7 @@ Emoji Catalog
|
|
|
+ - |
🇱🇾 |
libya flag |
:flag-ly: |
@@ -2136,6 +2309,7 @@ Emoji Catalog
|
|
|
+ - |
🇲🇦 |
morocco flag |
:flag-ma: |
@@ -2148,6 +2322,7 @@ Emoji Catalog
|
|
|
+ - |
🇲🇨 |
monaco flag |
:flag-mc: |
@@ -2160,6 +2335,7 @@ Emoji Catalog
|
|
|
+ - |
🇲🇩 |
moldova flag |
:flag-md: |
@@ -2172,6 +2348,7 @@ Emoji Catalog
|
|
|
+ - |
🇲🇪 |
montenegro flag |
:flag-me: |
@@ -2184,6 +2361,7 @@ Emoji Catalog
|
|
|
+ - |
🇲🇫 |
st. martin flag |
:flag-mf: |
@@ -2196,6 +2374,7 @@ Emoji Catalog
|
|
|
+ - |
🇲🇬 |
madagascar flag |
:flag-mg: |
@@ -2208,6 +2387,7 @@ Emoji Catalog
|
|
|
+ - |
🇲🇭 |
marshall islands flag |
:flag-mh: |
@@ -2220,6 +2400,7 @@ Emoji Catalog
|
|
|
+ - |
🇲🇰 |
north macedonia flag |
:flag-mk: |
@@ -2232,6 +2413,7 @@ Emoji Catalog
|
|
|
+ - |
🇲🇱 |
mali flag |
:flag-ml: |
@@ -2244,6 +2426,7 @@ Emoji Catalog
|
|
|
+ - |
🇲🇲 |
myanmar (burma) flag |
:flag-mm: |
@@ -2256,6 +2439,7 @@ Emoji Catalog
|
|
|
+ - |
🇲🇳 |
mongolia flag |
:flag-mn: |
@@ -2268,6 +2452,7 @@ Emoji Catalog
|
|
|
+ - |
🇲🇴 |
macao sar china flag |
:flag-mo: |
@@ -2280,6 +2465,7 @@ Emoji Catalog
|
|
|
+ - |
🇲🇵 |
northern mariana islands flag |
:flag-mp: |
@@ -2292,6 +2478,7 @@ Emoji Catalog
|
|
|
+ - |
🇲🇶 |
martinique flag |
:flag-mq: |
@@ -2304,6 +2491,7 @@ Emoji Catalog
|
|
|
+ - |
🇲🇷 |
mauritania flag |
:flag-mr: |
@@ -2316,6 +2504,7 @@ Emoji Catalog
|
|
|
+ - |
🇲🇸 |
montserrat flag |
:flag-ms: |
@@ -2328,6 +2517,7 @@ Emoji Catalog
|
|
|
+ - |
🇲🇹 |
malta flag |
:flag-mt: |
@@ -2340,6 +2530,7 @@ Emoji Catalog
|
|
|
+ - |
🇲🇺 |
mauritius flag |
:flag-mu: |
@@ -2352,6 +2543,7 @@ Emoji Catalog
|
|
|
+ - |
🇲🇻 |
maldives flag |
:flag-mv: |
@@ -2364,6 +2556,7 @@ Emoji Catalog
|
|
|
+ - |
🇲🇼 |
malawi flag |
:flag-mw: |
@@ -2376,6 +2569,7 @@ Emoji Catalog
|
|
|
+ - |
🇲🇽 |
mexico flag |
:flag-mx: |
@@ -2388,6 +2582,7 @@ Emoji Catalog
|
|
|
+ - |
🇲🇾 |
malaysia flag |
:flag-my: |
@@ -2400,6 +2595,7 @@ Emoji Catalog
|
|
|
+ - |
🇲🇿 |
mozambique flag |
:flag-mz: |
@@ -2412,6 +2608,7 @@ Emoji Catalog
|
|
|
+ - |
🇳🇦 |
namibia flag |
:flag-na: |
@@ -2424,6 +2621,7 @@ Emoji Catalog
|
|
|
+ - |
🇳🇨 |
new caledonia flag |
:flag-nc: |
@@ -2436,6 +2634,7 @@ Emoji Catalog
|
|
|
+ - |
🇳🇪 |
niger flag |
:flag-ne: |
@@ -2448,6 +2647,7 @@ Emoji Catalog
|
|
|
+ - |
🇳🇫 |
norfolk island flag |
:flag-nf: |
@@ -2460,6 +2660,7 @@ Emoji Catalog
|
|
|
+ - |
🇳🇬 |
nigeria flag |
:flag-ng: |
@@ -2472,6 +2673,7 @@ Emoji Catalog
|
|
|
+ - |
🇳🇮 |
nicaragua flag |
:flag-ni: |
@@ -2484,6 +2686,7 @@ Emoji Catalog
|
|
|
+ - |
🇳🇱 |
netherlands flag |
:flag-nl: |
@@ -2496,6 +2699,7 @@ Emoji Catalog
|
|
|
+ - |
🇳🇴 |
norway flag |
:flag-no: |
@@ -2508,6 +2712,7 @@ Emoji Catalog
|
|
|
+ - |
🇳🇵 |
nepal flag |
:flag-np: |
@@ -2520,6 +2725,7 @@ Emoji Catalog
|
|
|
+ - |
🇳🇷 |
nauru flag |
:flag-nr: |
@@ -2532,6 +2738,7 @@ Emoji Catalog
|
|
|
+ - |
🇳🇺 |
niue flag |
:flag-nu: |
@@ -2544,6 +2751,7 @@ Emoji Catalog
|
|
|
+ - |
🇳🇿 |
new zealand flag |
:flag-nz: |
@@ -2556,6 +2764,7 @@ Emoji Catalog
|
|
|
+ - |
🇴🇲 |
oman flag |
:flag-om: |
@@ -2568,6 +2777,7 @@ Emoji Catalog
|
|
|
+ - |
🇵🇦 |
panama flag |
:flag-pa: |
@@ -2580,6 +2790,7 @@ Emoji Catalog
|
|
|
+ - |
🇵🇪 |
peru flag |
:flag-pe: |
@@ -2592,6 +2803,7 @@ Emoji Catalog
|
|
|
+ - |
🇵🇫 |
french polynesia flag |
:flag-pf: |
@@ -2604,6 +2816,7 @@ Emoji Catalog
|
|
|
+ - |
🇵🇬 |
papua new guinea flag |
:flag-pg: |
@@ -2616,6 +2829,7 @@ Emoji Catalog
|
|
|
+ - |
🇵🇭 |
philippines flag |
:flag-ph: |
@@ -2628,6 +2842,7 @@ Emoji Catalog
|
|
|
+ - |
🇵🇰 |
pakistan flag |
:flag-pk: |
@@ -2640,6 +2855,7 @@ Emoji Catalog
|
|
|
+ - |
🇵🇱 |
poland flag |
:flag-pl: |
@@ -2652,6 +2868,7 @@ Emoji Catalog
|
|
|
+ - |
🇵🇲 |
st. pierre & miquelon flag |
:flag-pm: |
@@ -2664,6 +2881,7 @@ Emoji Catalog
|
|
|
+ - |
🇵🇳 |
pitcairn islands flag |
:flag-pn: |
@@ -2676,6 +2894,7 @@ Emoji Catalog
|
|
|
+ - |
🇵🇷 |
puerto rico flag |
:flag-pr: |
@@ -2688,6 +2907,7 @@ Emoji Catalog
|
|
|
+ - |
🇵🇸 |
palestinian territories flag |
:flag-ps: |
@@ -2700,6 +2920,7 @@ Emoji Catalog
|
|
|
+ - |
🇵🇹 |
portugal flag |
:flag-pt: |
@@ -2712,6 +2933,7 @@ Emoji Catalog
|
|
|
+ - |
🇵🇼 |
palau flag |
:flag-pw: |
@@ -2724,6 +2946,7 @@ Emoji Catalog
|
|
|
+ - |
🇵🇾 |
paraguay flag |
:flag-py: |
@@ -2736,6 +2959,7 @@ Emoji Catalog
|
|
|
+ - |
🇶🇦 |
qatar flag |
:flag-qa: |
@@ -2748,6 +2972,7 @@ Emoji Catalog
|
|
|
+ - |
🇷🇪 |
réunion flag |
:flag-re: |
@@ -2760,6 +2985,7 @@ Emoji Catalog
|
|
|
+ - |
🇷🇴 |
romania flag |
:flag-ro: |
@@ -2772,6 +2998,7 @@ Emoji Catalog
|
|
|
+ - |
🇷🇸 |
serbia flag |
:flag-rs: |
@@ -2784,6 +3011,7 @@ Emoji Catalog
|
|
|
+ - |
🇷🇺 |
russia flag |
:ru: |
@@ -2796,6 +3024,7 @@ Emoji Catalog
|
|
|
+ - |
🇷🇼 |
rwanda flag |
:flag-rw: |
@@ -2808,6 +3037,7 @@ Emoji Catalog
|
|
|
+ - |
🇸🇦 |
saudi arabia flag |
:flag-sa: |
@@ -2820,6 +3050,7 @@ Emoji Catalog
|
|
|
+ - |
🇸🇧 |
solomon islands flag |
:flag-sb: |
@@ -2832,6 +3063,7 @@ Emoji Catalog
|
|
|
+ - |
🇸🇨 |
seychelles flag |
:flag-sc: |
@@ -2844,6 +3076,7 @@ Emoji Catalog
|
|
|
+ - |
🇸🇩 |
sudan flag |
:flag-sd: |
@@ -2856,6 +3089,7 @@ Emoji Catalog
|
|
|
+ - |
🇸🇪 |
sweden flag |
:flag-se: |
@@ -2868,6 +3102,7 @@ Emoji Catalog
|
|
|
+ - |
🇸🇬 |
singapore flag |
:flag-sg: |
@@ -2880,6 +3115,7 @@ Emoji Catalog
|
|
|
+ - |
🇸🇭 |
st. helena flag |
:flag-sh: |
@@ -2892,6 +3128,7 @@ Emoji Catalog
|
|
|
+ - |
🇸🇮 |
slovenia flag |
:flag-si: |
@@ -2904,6 +3141,7 @@ Emoji Catalog
|
|
|
+ - |
🇸🇯 |
svalbard & jan mayen flag |
:flag-sj: |
@@ -2916,6 +3154,7 @@ Emoji Catalog
|
|
|
+ - |
🇸🇰 |
slovakia flag |
:flag-sk: |
@@ -2928,6 +3167,7 @@ Emoji Catalog
|
|
|
+ - |
🇸🇱 |
sierra leone flag |
:flag-sl: |
@@ -2940,6 +3180,7 @@ Emoji Catalog
|
|
|
+ - |
🇸🇲 |
san marino flag |
:flag-sm: |
@@ -2952,6 +3193,7 @@ Emoji Catalog
|
|
|
+ - |
🇸🇳 |
senegal flag |
:flag-sn: |
@@ -2964,6 +3206,7 @@ Emoji Catalog
|
|
|
+ - |
🇸🇴 |
somalia flag |
:flag-so: |
@@ -2976,6 +3219,7 @@ Emoji Catalog
|
|
|
+ - |
🇸🇷 |
suriname flag |
:flag-sr: |
@@ -2988,6 +3232,7 @@ Emoji Catalog
|
|
|
+ - |
🇸🇸 |
south sudan flag |
:flag-ss: |
@@ -3000,6 +3245,7 @@ Emoji Catalog
|
|
|
+ - |
🇸🇹 |
são tomé & príncipe flag |
:flag-st: |
@@ -3012,6 +3258,7 @@ Emoji Catalog
|
|
|
+ - |
🇸🇻 |
el salvador flag |
:flag-sv: |
@@ -3024,6 +3271,7 @@ Emoji Catalog
|
|
|
+ - |
🇸🇽 |
sint maarten flag |
:flag-sx: |
@@ -3036,6 +3284,7 @@ Emoji Catalog
|
|
|
+ - |
🇸🇾 |
syria flag |
:flag-sy: |
@@ -3048,6 +3297,7 @@ Emoji Catalog
|
|
|
+ - |
🇸🇿 |
eswatini flag |
:flag-sz: |
@@ -3060,6 +3310,7 @@ Emoji Catalog
|
|
|
+ - |
🇹🇦 |
tristan da cunha flag |
:flag-ta: |
@@ -3072,6 +3323,7 @@ Emoji Catalog
|
|
|
+ - |
🇹🇨 |
turks & caicos islands flag |
:flag-tc: |
@@ -3084,6 +3336,7 @@ Emoji Catalog
|
|
|
+ - |
🇹🇩 |
chad flag |
:flag-td: |
@@ -3096,6 +3349,7 @@ Emoji Catalog
|
|
|
+ - |
🇹🇫 |
french southern territories flag |
:flag-tf: |
@@ -3108,6 +3362,7 @@ Emoji Catalog
|
|
|
+ - |
🇹🇬 |
togo flag |
:flag-tg: |
@@ -3120,6 +3375,7 @@ Emoji Catalog
|
|
|
+ - |
🇹🇭 |
thailand flag |
:flag-th: |
@@ -3132,6 +3388,7 @@ Emoji Catalog
|
|
|
+ - |
🇹🇯 |
tajikistan flag |
:flag-tj: |
@@ -3144,6 +3401,7 @@ Emoji Catalog
|
|
|
+ - |
🇹🇰 |
tokelau flag |
:flag-tk: |
@@ -3156,6 +3414,7 @@ Emoji Catalog
|
|
|
+ - |
🇹🇱 |
timor-leste flag |
:flag-tl: |
@@ -3168,6 +3427,7 @@ Emoji Catalog
|
|
|
+ - |
🇹🇲 |
turkmenistan flag |
:flag-tm: |
@@ -3180,6 +3440,7 @@ Emoji Catalog
|
|
|
+ - |
🇹🇳 |
tunisia flag |
:flag-tn: |
@@ -3192,6 +3453,7 @@ Emoji Catalog
|
|
|
+ - |
🇹🇴 |
tonga flag |
:flag-to: |
@@ -3204,6 +3466,7 @@ Emoji Catalog
|
|
|
+ - |
🇹🇷 |
turkey flag |
:flag-tr: |
@@ -3216,6 +3479,7 @@ Emoji Catalog
|
|
|
+ - |
🇹🇹 |
trinidad & tobago flag |
:flag-tt: |
@@ -3228,6 +3492,7 @@ Emoji Catalog
|
|
|
+ - |
🇹🇻 |
tuvalu flag |
:flag-tv: |
@@ -3240,6 +3505,7 @@ Emoji Catalog
|
|
|
+ - |
🇹🇼 |
taiwan flag |
:flag-tw: |
@@ -3252,6 +3518,7 @@ Emoji Catalog
|
|
|
+ - |
🇹🇿 |
tanzania flag |
:flag-tz: |
@@ -3264,6 +3531,7 @@ Emoji Catalog
|
|
|
+ - |
🇺🇦 |
ukraine flag |
:flag-ua: |
@@ -3276,6 +3544,7 @@ Emoji Catalog
|
|
|
+ - |
🇺🇬 |
uganda flag |
:flag-ug: |
@@ -3288,6 +3557,7 @@ Emoji Catalog
|
|
|
+ - |
🇺🇲 |
u.s. outlying islands flag |
:flag-um: |
@@ -3300,6 +3570,7 @@ Emoji Catalog
|
|
|
+ - |
🇺🇳 |
united nations flag |
:flag-un: |
@@ -3312,6 +3583,7 @@ Emoji Catalog
|
|
|
+ - |
🇺🇸 |
united states flag |
:us: |
@@ -3324,6 +3596,7 @@ Emoji Catalog
|
|
|
+ - |
🇺🇾 |
uruguay flag |
:flag-uy: |
@@ -3336,6 +3609,7 @@ Emoji Catalog
|
|
|
+ - |
🇺🇿 |
uzbekistan flag |
:flag-uz: |
@@ -3348,6 +3622,7 @@ Emoji Catalog
|
|
|
+ - |
🇻🇦 |
vatican city flag |
:flag-va: |
@@ -3360,6 +3635,7 @@ Emoji Catalog
|
|
|
+ - |
🇻🇨 |
st. vincent & grenadines flag |
:flag-vc: |
@@ -3372,6 +3648,7 @@ Emoji Catalog
|
|
|
+ - |
🇻🇪 |
venezuela flag |
:flag-ve: |
@@ -3384,6 +3661,7 @@ Emoji Catalog
|
|
|
+ - |
🇻🇬 |
british virgin islands flag |
:flag-vg: |
@@ -3396,6 +3674,7 @@ Emoji Catalog
|
|
|
+ - |
🇻🇮 |
u.s. virgin islands flag |
:flag-vi: |
@@ -3408,6 +3687,7 @@ Emoji Catalog
|
|
|
+ - |
🇻🇳 |
vietnam flag |
:flag-vn: |
@@ -3420,6 +3700,7 @@ Emoji Catalog
|
|
|
+ - |
🇻🇺 |
vanuatu flag |
:flag-vu: |
@@ -3432,6 +3713,7 @@ Emoji Catalog
|
|
|
+ - |
🇼🇫 |
wallis & futuna flag |
:flag-wf: |
@@ -3444,6 +3726,7 @@ Emoji Catalog
|
|
|
+ - |
🇼🇸 |
samoa flag |
:flag-ws: |
@@ -3456,6 +3739,7 @@ Emoji Catalog
|
|
|
+ - |
🇽🇰 |
kosovo flag |
:flag-xk: |
@@ -3468,6 +3752,7 @@ Emoji Catalog
|
|
|
+ - |
🇾🇪 |
yemen flag |
:flag-ye: |
@@ -3480,6 +3765,7 @@ Emoji Catalog
|
|
|
+ - |
🇾🇹 |
mayotte flag |
:flag-yt: |
@@ -3492,6 +3778,7 @@ Emoji Catalog
|
|
|
+ - |
🇿🇦 |
south africa flag |
:flag-za: |
@@ -3504,6 +3791,7 @@ Emoji Catalog
|
|
|
+ - |
🇿🇲 |
zambia flag |
:flag-zm: |
@@ -3516,6 +3804,7 @@ Emoji Catalog
|
|
|
+ - |
🇿🇼 |
zimbabwe flag |
:flag-zw: |
@@ -3528,6 +3817,7 @@ Emoji Catalog
|
|
|
+ |
🈁 |
squared katakana koko |
:koko: |
@@ -3540,6 +3830,7 @@ Emoji Catalog
|
|
|
+ |
🈂️ |
squared katakana sa |
:sa: |
@@ -3552,6 +3843,7 @@ Emoji Catalog
|
|
|
+ |
🈚 |
squared cjk unified ideograph-7121 |
:u7121: |
@@ -3564,6 +3856,7 @@ Emoji Catalog
|
|
|
+ |
🈯 |
squared cjk unified ideograph-6307 |
:u6307: |
@@ -3576,6 +3869,7 @@ Emoji Catalog
|
|
|
+ |
🈲 |
squared cjk unified ideograph-7981 |
:u7981: |
@@ -3588,6 +3882,7 @@ Emoji Catalog
|
|
|
+ |
🈳 |
squared cjk unified ideograph-7a7a |
:u7a7a: |
@@ -3600,6 +3895,7 @@ Emoji Catalog
|
|
|
+ |
🈴 |
squared cjk unified ideograph-5408 |
:u5408: |
@@ -3612,6 +3908,7 @@ Emoji Catalog
|
|
|
+ |
🈵 |
squared cjk unified ideograph-6e80 |
:u6e80: |
@@ -3624,6 +3921,7 @@ Emoji Catalog
|
|
|
+ |
🈶 |
squared cjk unified ideograph-6709 |
:u6709: |
@@ -3636,6 +3934,7 @@ Emoji Catalog
|
|
|
+ |
🈷️ |
squared cjk unified ideograph-6708 |
:u6708: |
@@ -3648,6 +3947,7 @@ Emoji Catalog
|
|
|
+ |
🈸 |
squared cjk unified ideograph-7533 |
:u7533: |
@@ -3660,6 +3960,7 @@ Emoji Catalog
|
|
|
+ |
🈹 |
squared cjk unified ideograph-5272 |
:u5272: |
@@ -3672,6 +3973,7 @@ Emoji Catalog
|
|
|
+ |
🈺 |
squared cjk unified ideograph-55b6 |
:u55b6: |
@@ -3684,6 +3986,7 @@ Emoji Catalog
|
|
|
+ |
🉐 |
circled ideograph advantage |
:ideograph_advantage: |
@@ -3696,6 +3999,7 @@ Emoji Catalog
|
|
|
+ |
🉑 |
circled ideograph accept |
:accept: |
@@ -3708,6 +4012,7 @@ Emoji Catalog
|
|
|
+ |
🌀 |
cyclone |
:cyclone: |
@@ -3720,6 +4025,7 @@ Emoji Catalog
|
|
|
+ |
🌁 |
foggy |
:foggy: |
@@ -3732,6 +4038,7 @@ Emoji Catalog
|
|
|
+ |
🌂 |
closed umbrella |
:closed_umbrella: |
@@ -3744,6 +4051,7 @@ Emoji Catalog
|
|
|
+ |
🌃 |
night with stars |
:night_with_stars: |
@@ -3756,6 +4064,7 @@ Emoji Catalog
|
|
|
+ |
🌄 |
sunrise over mountains |
:sunrise_over_mountains: |
@@ -3768,6 +4077,7 @@ Emoji Catalog
|
|
|
+ |
🌅 |
sunrise |
:sunrise: |
@@ -3780,6 +4090,7 @@ Emoji Catalog
|
|
|
+ |
🌆 |
cityscape at dusk |
:city_sunset: |
@@ -3792,6 +4103,7 @@ Emoji Catalog
|
|
|
+ |
🌇 |
sunset over buildings |
:city_sunrise: |
@@ -3804,6 +4116,7 @@ Emoji Catalog
|
|
|
+ |
🌈 |
rainbow |
:rainbow: |
@@ -3816,6 +4129,7 @@ Emoji Catalog
|
|
|
+ |
🌉 |
bridge at night |
:bridge_at_night: |
@@ -3828,6 +4142,7 @@ Emoji Catalog
|
|
|
+ |
🌊 |
water wave |
:ocean: |
@@ -3840,6 +4155,7 @@ Emoji Catalog
|
|
|
+ |
🌋 |
volcano |
:volcano: |
@@ -3852,6 +4168,7 @@ Emoji Catalog
|
|
|
+ |
🌌 |
milky way |
:milky_way: |
@@ -3864,6 +4181,7 @@ Emoji Catalog
|
|
|
+ |
🌍 |
earth globe europe-africa |
:earth_africa: |
@@ -3876,6 +4194,7 @@ Emoji Catalog
|
|
|
+ |
🌎 |
earth globe americas |
:earth_americas: |
@@ -3888,6 +4207,7 @@ Emoji Catalog
|
|
|
+ |
🌏 |
earth globe asia-australia |
:earth_asia: |
@@ -3900,6 +4220,7 @@ Emoji Catalog
|
|
|
+ |
🌐 |
globe with meridians |
:globe_with_meridians: |
@@ -3912,6 +4233,7 @@ Emoji Catalog
|
|
|
+ |
🌑 |
new moon symbol |
:new_moon: |
@@ -3924,6 +4246,7 @@ Emoji Catalog
|
|
|
+ |
🌒 |
waxing crescent moon symbol |
:waxing_crescent_moon: |
@@ -3936,6 +4259,7 @@ Emoji Catalog
|
|
|
+ |
🌓 |
first quarter moon symbol |
:first_quarter_moon: |
@@ -3948,6 +4272,7 @@ Emoji Catalog
|
|
|
+ |
🌔 |
waxing gibbous moon symbol |
:moon: |
@@ -3960,6 +4285,7 @@ Emoji Catalog
|
|
|
+ |
🌕 |
full moon symbol |
:full_moon: |
@@ -3972,6 +4298,7 @@ Emoji Catalog
|
|
|
+ |
🌖 |
waning gibbous moon symbol |
:waning_gibbous_moon: |
@@ -3984,6 +4311,7 @@ Emoji Catalog
|
|
|
+ |
🌗 |
last quarter moon symbol |
:last_quarter_moon: |
@@ -3996,6 +4324,7 @@ Emoji Catalog
|
|
|
+ |
🌘 |
waning crescent moon symbol |
:waning_crescent_moon: |
@@ -4008,6 +4337,7 @@ Emoji Catalog
|
|
|
+ |
🌙 |
crescent moon |
:crescent_moon: |
@@ -4020,6 +4350,7 @@ Emoji Catalog
|
|
|
+ |
🌚 |
new moon with face |
:new_moon_with_face: |
@@ -4032,6 +4363,7 @@ Emoji Catalog
|
|
|
+ |
🌛 |
first quarter moon with face |
:first_quarter_moon_with_face: |
@@ -4044,6 +4376,7 @@ Emoji Catalog
|
|
|
+ |
🌜 |
last quarter moon with face |
:last_quarter_moon_with_face: |
@@ -4056,6 +4389,7 @@ Emoji Catalog
|
|
|
+ |
🌝 |
full moon with face |
:full_moon_with_face: |
@@ -4068,6 +4402,7 @@ Emoji Catalog
|
|
|
+ |
🌞 |
sun with face |
:sun_with_face: |
@@ -4080,6 +4415,7 @@ Emoji Catalog
|
|
|
+ |
🌟 |
glowing star |
:star2: |
@@ -4092,6 +4428,7 @@ Emoji Catalog
|
|
|
+ |
🌠 |
shooting star |
:stars: |
@@ -4104,6 +4441,7 @@ Emoji Catalog
|
|
|
+ |
🌡️ |
thermometer |
:thermometer: |
@@ -4116,6 +4454,7 @@ Emoji Catalog
|
|
|
+ |
🌤️ |
sun behind small cloud |
:mostly_sunny: |
@@ -4128,6 +4467,7 @@ Emoji Catalog
|
|
|
+ |
🌥️ |
sun behind large cloud |
:barely_sunny: |
@@ -4140,6 +4480,7 @@ Emoji Catalog
|
|
|
+ |
🌦️ |
sun behind rain cloud |
:partly_sunny_rain: |
@@ -4152,6 +4493,7 @@ Emoji Catalog
|
|
|
+ |
🌧️ |
cloud with rain |
:rain_cloud: |
@@ -4164,6 +4506,7 @@ Emoji Catalog
|
|
|
+ |
🌨️ |
cloud with snow |
:snow_cloud: |
@@ -4176,6 +4519,7 @@ Emoji Catalog
|
|
|
+ |
🌩️ |
cloud with lightning |
:lightning: |
@@ -4188,6 +4532,7 @@ Emoji Catalog
|
|
|
+ |
🌪️ |
tornado |
:tornado: |
@@ -4200,6 +4545,7 @@ Emoji Catalog
|
|
|
+ |
🌫️ |
fog |
:fog: |
@@ -4212,6 +4558,7 @@ Emoji Catalog
|
|
|
+ |
🌬️ |
wind face |
:wind_blowing_face: |
@@ -4224,6 +4571,7 @@ Emoji Catalog
|
|
|
+ |
🌭 |
hot dog |
:hotdog: |
@@ -4236,6 +4584,7 @@ Emoji Catalog
|
|
|
+ |
🌮 |
taco |
:taco: |
@@ -4248,6 +4597,7 @@ Emoji Catalog
|
|
|
+ |
🌯 |
burrito |
:burrito: |
@@ -4260,6 +4610,7 @@ Emoji Catalog
|
|
|
+ |
🌰 |
chestnut |
:chestnut: |
@@ -4272,6 +4623,7 @@ Emoji Catalog
|
|
|
+ |
🌱 |
seedling |
:seedling: |
@@ -4284,6 +4636,7 @@ Emoji Catalog
|
|
|
+ |
🌲 |
evergreen tree |
:evergreen_tree: |
@@ -4296,6 +4649,7 @@ Emoji Catalog
|
|
|
+ |
🌳 |
deciduous tree |
:deciduous_tree: |
@@ -4308,6 +4662,7 @@ Emoji Catalog
|
|
|
+ |
🌴 |
palm tree |
:palm_tree: |
@@ -4320,6 +4675,7 @@ Emoji Catalog
|
|
|
+ |
🌵 |
cactus |
:cactus: |
@@ -4332,6 +4688,7 @@ Emoji Catalog
|
|
|
+ |
🌶️ |
hot pepper |
:hot_pepper: |
@@ -4344,6 +4701,7 @@ Emoji Catalog
|
|
|
+ |
🌷 |
tulip |
:tulip: |
@@ -4356,6 +4714,7 @@ Emoji Catalog
|
|
|
+ |
🌸 |
cherry blossom |
:cherry_blossom: |
@@ -4368,6 +4727,7 @@ Emoji Catalog
|
|
|
+ |
🌹 |
rose |
:rose: |
@@ -4380,6 +4740,7 @@ Emoji Catalog
|
|
|
+ |
🌺 |
hibiscus |
:hibiscus: |
@@ -4392,6 +4753,7 @@ Emoji Catalog
|
|
|
+ |
🌻 |
sunflower |
:sunflower: |
@@ -4404,6 +4766,7 @@ Emoji Catalog
|
|
|
+ |
🌼 |
blossom |
:blossom: |
@@ -4416,6 +4779,7 @@ Emoji Catalog
|
|
|
+ |
🌽 |
ear of maize |
:corn: |
@@ -4428,6 +4792,7 @@ Emoji Catalog
|
|
|
+ |
🌾 |
ear of rice |
:ear_of_rice: |
@@ -4440,6 +4805,7 @@ Emoji Catalog
|
|
|
+ |
🌿 |
herb |
:herb: |
@@ -4452,6 +4818,7 @@ Emoji Catalog
|
|
|
+ |
🍀 |
four leaf clover |
:four_leaf_clover: |
@@ -4464,6 +4831,7 @@ Emoji Catalog
|
|
|
+ |
🍁 |
maple leaf |
:maple_leaf: |
@@ -4476,6 +4844,7 @@ Emoji Catalog
|
|
|
+ |
🍂 |
fallen leaf |
:fallen_leaf: |
@@ -4488,6 +4857,7 @@ Emoji Catalog
|
|
|
+ |
🍃 |
leaf fluttering in wind |
:leaves: |
@@ -4500,6 +4870,7 @@ Emoji Catalog
|
|
|
+ |
🍄 |
mushroom |
:mushroom: |
@@ -4512,6 +4883,7 @@ Emoji Catalog
|
|
|
+ |
🍅 |
tomato |
:tomato: |
@@ -4524,6 +4896,7 @@ Emoji Catalog
|
|
|
+ |
🍆 |
aubergine |
:eggplant: |
@@ -4536,6 +4909,7 @@ Emoji Catalog
|
|
|
+ |
🍇 |
grapes |
:grapes: |
@@ -4548,6 +4922,7 @@ Emoji Catalog
|
|
|
+ |
🍈 |
melon |
:melon: |
@@ -4560,6 +4935,7 @@ Emoji Catalog
|
|
|
+ |
🍉 |
watermelon |
:watermelon: |
@@ -4572,6 +4948,7 @@ Emoji Catalog
|
|
|
+ |
🍊 |
tangerine |
:tangerine: |
@@ -4584,6 +4961,7 @@ Emoji Catalog
|
|
|
+ |
🍋 |
lemon |
:lemon: |
@@ -4596,6 +4974,7 @@ Emoji Catalog
|
|
|
+ |
🍌 |
banana |
:banana: |
@@ -4608,6 +4987,7 @@ Emoji Catalog
|
|
|
+ |
🍍 |
pineapple |
:pineapple: |
@@ -4620,6 +5000,7 @@ Emoji Catalog
|
|
|
+ |
🍎 |
red apple |
:apple: |
@@ -4632,6 +5013,7 @@ Emoji Catalog
|
|
|
+ |
🍏 |
green apple |
:green_apple: |
@@ -4644,6 +5026,7 @@ Emoji Catalog
|
|
|
+ |
🍐 |
pear |
:pear: |
@@ -4656,6 +5039,7 @@ Emoji Catalog
|
|
|
+ |
🍑 |
peach |
:peach: |
@@ -4668,6 +5052,7 @@ Emoji Catalog
|
|
|
+ |
🍒 |
cherries |
:cherries: |
@@ -4680,6 +5065,7 @@ Emoji Catalog
|
|
|
+ |
🍓 |
strawberry |
:strawberry: |
@@ -4692,6 +5078,7 @@ Emoji Catalog
|
|
|
+ |
🍔 |
hamburger |
:hamburger: |
@@ -4704,6 +5091,7 @@ Emoji Catalog
|
|
|
+ |
🍕 |
slice of pizza |
:pizza: |
@@ -4716,6 +5104,7 @@ Emoji Catalog
|
|
|
+ |
🍖 |
meat on bone |
:meat_on_bone: |
@@ -4728,6 +5117,7 @@ Emoji Catalog
|
|
|
+ |
🍗 |
poultry leg |
:poultry_leg: |
@@ -4740,6 +5130,7 @@ Emoji Catalog
|
|
|
+ |
🍘 |
rice cracker |
:rice_cracker: |
@@ -4752,6 +5143,7 @@ Emoji Catalog
|
|
|
+ |
🍙 |
rice ball |
:rice_ball: |
@@ -4764,6 +5156,7 @@ Emoji Catalog
|
|
|
+ |
🍚 |
cooked rice |
:rice: |
@@ -4776,6 +5169,7 @@ Emoji Catalog
|
|
|
+ |
🍛 |
curry and rice |
:curry: |
@@ -4788,6 +5182,7 @@ Emoji Catalog
|
|
|
+ |
🍜 |
steaming bowl |
:ramen: |
@@ -4800,6 +5195,7 @@ Emoji Catalog
|
|
|
+ |
🍝 |
spaghetti |
:spaghetti: |
@@ -4812,6 +5208,7 @@ Emoji Catalog
|
|
|
+ |
🍞 |
bread |
:bread: |
@@ -4824,6 +5221,7 @@ Emoji Catalog
|
|
|
+ |
🍟 |
french fries |
:fries: |
@@ -4836,6 +5234,7 @@ Emoji Catalog
|
|
|
+ |
🍠 |
roasted sweet potato |
:sweet_potato: |
@@ -4848,6 +5247,7 @@ Emoji Catalog
|
|
|
+ |
🍡 |
dango |
:dango: |
@@ -4860,6 +5260,7 @@ Emoji Catalog
|
|
|
+ |
🍢 |
oden |
:oden: |
@@ -4872,6 +5273,7 @@ Emoji Catalog
|
|
|
+ |
🍣 |
sushi |
:sushi: |
@@ -4884,6 +5286,7 @@ Emoji Catalog
|
|
|
+ |
🍤 |
fried shrimp |
:fried_shrimp: |
@@ -4896,6 +5299,7 @@ Emoji Catalog
|
|
|
+ |
🍥 |
fish cake with swirl design |
:fish_cake: |
@@ -4908,6 +5312,7 @@ Emoji Catalog
|
|
|
+ |
🍦 |
soft ice cream |
:icecream: |
@@ -4920,6 +5325,7 @@ Emoji Catalog
|
|
|
+ |
🍧 |
shaved ice |
:shaved_ice: |
@@ -4932,6 +5338,7 @@ Emoji Catalog
|
|
|
+ |
🍨 |
ice cream |
:ice_cream: |
@@ -4944,6 +5351,7 @@ Emoji Catalog
|
|
|
+ |
🍩 |
doughnut |
:doughnut: |
@@ -4956,6 +5364,7 @@ Emoji Catalog
|
|
|
+ |
🍪 |
cookie |
:cookie: |
@@ -4968,6 +5377,7 @@ Emoji Catalog
|
|
|
+ |
🍫 |
chocolate bar |
:chocolate_bar: |
@@ -4980,6 +5390,7 @@ Emoji Catalog
|
|
|
+ |
🍬 |
candy |
:candy: |
@@ -4992,6 +5403,7 @@ Emoji Catalog
|
|
|
+ |
🍭 |
lollipop |
:lollipop: |
@@ -5004,6 +5416,7 @@ Emoji Catalog
|
|
|
+ |
🍮 |
custard |
:custard: |
@@ -5016,6 +5429,7 @@ Emoji Catalog
|
|
|
+ |
🍯 |
honey pot |
:honey_pot: |
@@ -5028,6 +5442,7 @@ Emoji Catalog
|
|
|
+ |
🍰 |
shortcake |
:cake: |
@@ -5040,6 +5455,7 @@ Emoji Catalog
|
|
|
+ |
🍱 |
bento box |
:bento: |
@@ -5052,6 +5468,7 @@ Emoji Catalog
|
|
|
+ |
🍲 |
pot of food |
:stew: |
@@ -5064,6 +5481,7 @@ Emoji Catalog
|
|
|
+ |
🍳 |
cooking |
:fried_egg: |
@@ -5076,6 +5494,7 @@ Emoji Catalog
|
|
|
+ |
🍴 |
fork and knife |
:fork_and_knife: |
@@ -5088,6 +5507,7 @@ Emoji Catalog
|
|
|
+ |
🍵 |
teacup without handle |
:tea: |
@@ -5100,6 +5520,7 @@ Emoji Catalog
|
|
|
+ |
🍶 |
sake bottle and cup |
:sake: |
@@ -5112,6 +5533,7 @@ Emoji Catalog
|
|
|
+ |
🍷 |
wine glass |
:wine_glass: |
@@ -5124,6 +5546,7 @@ Emoji Catalog
|
|
|
+ |
🍸 |
cocktail glass |
:cocktail: |
@@ -5136,6 +5559,7 @@ Emoji Catalog
|
|
|
+ |
🍹 |
tropical drink |
:tropical_drink: |
@@ -5148,6 +5572,7 @@ Emoji Catalog
|
|
|
+ |
🍺 |
beer mug |
:beer: |
@@ -5160,6 +5585,7 @@ Emoji Catalog
|
|
|
+ |
🍻 |
clinking beer mugs |
:beers: |
@@ -5172,6 +5598,7 @@ Emoji Catalog
|
|
|
+ |
🍼 |
baby bottle |
:baby_bottle: |
@@ -5184,6 +5611,7 @@ Emoji Catalog
|
|
|
+ |
🍽️ |
fork and knife with plate |
:knife_fork_plate: |
@@ -5196,6 +5624,7 @@ Emoji Catalog
|
|
|
+ |
🍾 |
bottle with popping cork |
:champagne: |
@@ -5208,6 +5637,7 @@ Emoji Catalog
|
|
|
+ |
🍿 |
popcorn |
:popcorn: |
@@ -5220,6 +5650,7 @@ Emoji Catalog
|
|
|
+ |
🎀 |
ribbon |
:ribbon: |
@@ -5232,6 +5663,7 @@ Emoji Catalog
|
|
|
+ |
🎁 |
wrapped present |
:gift: |
@@ -5244,6 +5676,7 @@ Emoji Catalog
|
|
|
+ |
🎂 |
birthday cake |
:birthday: |
@@ -5256,6 +5689,7 @@ Emoji Catalog
|
|
|
+ |
🎃 |
jack-o-lantern |
:jack_o_lantern: |
@@ -5268,6 +5702,7 @@ Emoji Catalog
|
|
|
+ |
🎄 |
christmas tree |
:christmas_tree: |
@@ -5280,6 +5715,7 @@ Emoji Catalog
|
|
|
+ |
🎅 |
father christmas |
:santa: |
@@ -5292,6 +5728,7 @@ Emoji Catalog
|
|
|
+ |
🎆 |
fireworks |
:fireworks: |
@@ -5304,6 +5741,7 @@ Emoji Catalog
|
|
|
+ |
🎇 |
firework sparkler |
:sparkler: |
@@ -5316,6 +5754,7 @@ Emoji Catalog
|
|
|
+ |
🎈 |
balloon |
:balloon: |
@@ -5328,6 +5767,7 @@ Emoji Catalog
|
|
|
+ |
🎉 |
party popper |
:tada: |
@@ -5340,6 +5780,7 @@ Emoji Catalog
|
|
|
+ |
🎊 |
confetti ball |
:confetti_ball: |
@@ -5352,6 +5793,7 @@ Emoji Catalog
|
|
|
+ |
🎋 |
tanabata tree |
:tanabata_tree: |
@@ -5364,6 +5806,7 @@ Emoji Catalog
|
|
|
+ |
🎌 |
crossed flags |
:crossed_flags: |
@@ -5376,6 +5819,7 @@ Emoji Catalog
|
|
|
+ |
🎍 |
pine decoration |
:bamboo: |
@@ -5388,6 +5832,7 @@ Emoji Catalog
|
|
|
+ |
🎎 |
japanese dolls |
:dolls: |
@@ -5400,6 +5845,7 @@ Emoji Catalog
|
|
|
+ |
🎏 |
carp streamer |
:flags: |
@@ -5412,6 +5858,7 @@ Emoji Catalog
|
|
|
+ |
🎐 |
wind chime |
:wind_chime: |
@@ -5424,6 +5871,7 @@ Emoji Catalog
|
|
|
+ |
🎑 |
moon viewing ceremony |
:rice_scene: |
@@ -5436,6 +5884,7 @@ Emoji Catalog
|
|
|
+ |
🎒 |
school satchel |
:school_satchel: |
@@ -5448,6 +5897,7 @@ Emoji Catalog
|
|
|
+ |
🎓 |
graduation cap |
:mortar_board: |
@@ -5460,6 +5910,7 @@ Emoji Catalog
|
|
|
+ |
🎖️ |
military medal |
:medal: |
@@ -5472,6 +5923,7 @@ Emoji Catalog
|
|
|
+ |
🎗️ |
reminder ribbon |
:reminder_ribbon: |
@@ -5484,6 +5936,7 @@ Emoji Catalog
|
|
|
+ |
🎙️ |
studio microphone |
:studio_microphone: |
@@ -5496,6 +5949,7 @@ Emoji Catalog
|
|
|
+ |
🎚️ |
level slider |
:level_slider: |
@@ -5508,6 +5962,7 @@ Emoji Catalog
|
|
|
+ |
🎛️ |
control knobs |
:control_knobs: |
@@ -5520,6 +5975,7 @@ Emoji Catalog
|
|
|
+ |
🎞️ |
film frames |
:film_frames: |
@@ -5532,6 +5988,7 @@ Emoji Catalog
|
|
|
+ |
🎟️ |
admission tickets |
:admission_tickets: |
@@ -5544,6 +6001,7 @@ Emoji Catalog
|
|
|
+ |
🎠 |
carousel horse |
:carousel_horse: |
@@ -5556,6 +6014,7 @@ Emoji Catalog
|
|
|
+ |
🎡 |
ferris wheel |
:ferris_wheel: |
@@ -5568,6 +6027,7 @@ Emoji Catalog
|
|
|
+ |
🎢 |
roller coaster |
:roller_coaster: |
@@ -5580,6 +6040,7 @@ Emoji Catalog
|
|
|
+ |
🎣 |
fishing pole and fish |
:fishing_pole_and_fish: |
@@ -5592,6 +6053,7 @@ Emoji Catalog
|
|
|
+ |
🎤 |
microphone |
:microphone: |
@@ -5604,6 +6066,7 @@ Emoji Catalog
|
|
|
+ |
🎥 |
movie camera |
:movie_camera: |
@@ -5616,6 +6079,7 @@ Emoji Catalog
|
|
|
+ |
🎦 |
cinema |
:cinema: |
@@ -5628,6 +6092,7 @@ Emoji Catalog
|
|
|
+ |
🎧 |
headphone |
:headphones: |
@@ -5640,6 +6105,7 @@ Emoji Catalog
|
|
|
+ |
🎨 |
artist palette |
:art: |
@@ -5652,6 +6118,7 @@ Emoji Catalog
|
|
|
+ |
🎩 |
top hat |
:tophat: |
@@ -5664,6 +6131,7 @@ Emoji Catalog
|
|
|
+ |
🎪 |
circus tent |
:circus_tent: |
@@ -5676,6 +6144,7 @@ Emoji Catalog
|
|
|
+ |
🎫 |
ticket |
:ticket: |
@@ -5688,6 +6157,7 @@ Emoji Catalog
|
|
|
+ |
🎬 |
clapper board |
:clapper: |
@@ -5700,6 +6170,7 @@ Emoji Catalog
|
|
|
+ |
🎭 |
performing arts |
:performing_arts: |
@@ -5712,6 +6183,7 @@ Emoji Catalog
|
|
|
+ - |
🎮 |
video game |
:video_game: |
@@ -5724,6 +6196,7 @@ Emoji Catalog
|
|
|
+ |
🎯 |
direct hit |
:dart: |
@@ -5736,6 +6209,7 @@ Emoji Catalog
|
|
|
+ |
🎰 |
slot machine |
:slot_machine: |
@@ -5748,6 +6222,7 @@ Emoji Catalog
|
|
|
+ |
🎱 |
billiards |
:8ball: |
@@ -5760,6 +6235,7 @@ Emoji Catalog
|
|
|
+ |
🎲 |
game die |
:game_die: |
@@ -5772,6 +6248,7 @@ Emoji Catalog
|
|
|
+ |
🎳 |
bowling |
:bowling: |
@@ -5784,6 +6261,7 @@ Emoji Catalog
|
|
|
+ |
🎴 |
flower playing cards |
:flower_playing_cards: |
@@ -5796,6 +6274,7 @@ Emoji Catalog
|
|
|
+ |
🎵 |
musical note |
:musical_note: |
@@ -5808,6 +6287,7 @@ Emoji Catalog
|
|
|
+ |
🎶 |
multiple musical notes |
:notes: |
@@ -5820,6 +6300,7 @@ Emoji Catalog
|
|
|
+ |
🎷 |
saxophone |
:saxophone: |
@@ -5832,6 +6313,7 @@ Emoji Catalog
|
|
|
+ |
🎸 |
guitar |
:guitar: |
@@ -5844,6 +6326,7 @@ Emoji Catalog
|
|
|
+ |
🎹 |
musical keyboard |
:musical_keyboard: |
@@ -5856,6 +6339,7 @@ Emoji Catalog
|
|
|
+ |
🎺 |
trumpet |
:trumpet: |
@@ -5868,6 +6352,7 @@ Emoji Catalog
|
|
|
+ |
🎻 |
violin |
:violin: |
@@ -5880,6 +6365,7 @@ Emoji Catalog
|
|
|
+ |
🎼 |
musical score |
:musical_score: |
@@ -5892,6 +6378,7 @@ Emoji Catalog
|
|
|
+ |
🎽 |
running shirt with sash |
:running_shirt_with_sash: |
@@ -5904,6 +6391,7 @@ Emoji Catalog
|
|
|
+ |
🎾 |
tennis racquet and ball |
:tennis: |
@@ -5916,6 +6404,7 @@ Emoji Catalog
|
|
|
+ |
🎿 |
ski and ski boot |
:ski: |
@@ -5928,6 +6417,7 @@ Emoji Catalog
|
|
|
+ |
🏀 |
basketball and hoop |
:basketball: |
@@ -5940,6 +6430,7 @@ Emoji Catalog
|
|
|
+ |
🏁 |
chequered flag |
:checkered_flag: |
@@ -5952,6 +6443,7 @@ Emoji Catalog
|
|
|
+ |
🏂 |
snowboarder |
:snowboarder: |
@@ -5964,6 +6456,7 @@ Emoji Catalog
|
|
|
+ |
🏃♀️ |
woman running |
:woman-running: |
@@ -5976,6 +6469,7 @@ Emoji Catalog
|
|
|
+ |
🏃♂️ |
man running |
:man-running: |
@@ -5988,6 +6482,7 @@ Emoji Catalog
|
|
|
+ |
🏃 |
runner |
:runner: |
@@ -6000,6 +6495,7 @@ Emoji Catalog
|
|
|
+ |
🏄♀️ |
woman surfing |
:woman-surfing: |
@@ -6012,6 +6508,7 @@ Emoji Catalog
|
|
|
+ |
🏄♂️ |
man surfing |
:man-surfing: |
@@ -6024,6 +6521,7 @@ Emoji Catalog
|
|
|
+ |
🏄 |
surfer |
:surfer: |
@@ -6036,6 +6534,7 @@ Emoji Catalog
|
|
|
+ |
🏅 |
sports medal |
:sports_medal: |
@@ -6048,6 +6547,7 @@ Emoji Catalog
|
|
|
+ |
🏆 |
trophy |
:trophy: |
@@ -6060,6 +6560,7 @@ Emoji Catalog
|
|
|
+ |
🏇 |
horse racing |
:horse_racing: |
@@ -6072,6 +6573,7 @@ Emoji Catalog
|
|
|
+ |
🏈 |
american football |
:football: |
@@ -6084,6 +6586,7 @@ Emoji Catalog
|
|
|
+ |
🏉 |
rugby football |
:rugby_football: |
@@ -6096,6 +6599,7 @@ Emoji Catalog
|
|
|
+ |
🏊♀️ |
woman swimming |
:woman-swimming: |
@@ -6108,6 +6612,7 @@ Emoji Catalog
|
|
|
+ |
🏊♂️ |
man swimming |
:man-swimming: |
@@ -6120,6 +6625,7 @@ Emoji Catalog
|
|
|
+ |
🏊 |
swimmer |
:swimmer: |
@@ -6132,6 +6638,7 @@ Emoji Catalog
|
|
- |
+ |
🏋️♀️ |
woman lifting weights |
:woman-lifting-weights: |
@@ -6144,6 +6651,7 @@ Emoji Catalog
|
|
- |
+ |
🏋️♂️ |
man lifting weights |
:man-lifting-weights: |
@@ -6156,6 +6664,7 @@ Emoji Catalog
|
|
|
+ |
🏋️ |
person lifting weights |
:weight_lifter: |
@@ -6168,6 +6677,7 @@ Emoji Catalog
|
|
- |
+ |
🏌️♀️ |
woman golfing |
:woman-golfing: |
@@ -6180,6 +6690,7 @@ Emoji Catalog
|
|
- |
+ |
🏌️♂️ |
man golfing |
:man-golfing: |
@@ -6192,6 +6703,7 @@ Emoji Catalog
|
|
|
+ |
🏌️ |
person golfing |
:golfer: |
@@ -6204,6 +6716,7 @@ Emoji Catalog
|
|
|
+ |
🏍️ |
motorcycle |
:racing_motorcycle: |
@@ -6216,6 +6729,7 @@ Emoji Catalog
|
|
|
+ |
🏎️ |
racing car |
:racing_car: |
@@ -6228,6 +6742,7 @@ Emoji Catalog
|
|
|
+ |
🏏 |
cricket bat and ball |
:cricket_bat_and_ball: |
@@ -6240,6 +6755,7 @@ Emoji Catalog
|
|
|
+ |
🏐 |
volleyball |
:volleyball: |
@@ -6252,6 +6768,7 @@ Emoji Catalog
|
|
|
+ |
🏑 |
field hockey stick and ball |
:field_hockey_stick_and_ball: |
@@ -6264,6 +6781,7 @@ Emoji Catalog
|
|
|
+ |
🏒 |
ice hockey stick and puck |
:ice_hockey_stick_and_puck: |
@@ -6276,6 +6794,7 @@ Emoji Catalog
|
|
|
+ |
🏓 |
table tennis paddle and ball |
:table_tennis_paddle_and_ball: |
@@ -6288,6 +6807,7 @@ Emoji Catalog
|
|
|
+ |
🏔️ |
snow-capped mountain |
:snow_capped_mountain: |
@@ -6300,6 +6820,7 @@ Emoji Catalog
|
|
|
+ |
🏕️ |
camping |
:camping: |
@@ -6312,6 +6833,7 @@ Emoji Catalog
|
|
|
+ |
🏖️ |
beach with umbrella |
:beach_with_umbrella: |
@@ -6324,6 +6846,7 @@ Emoji Catalog
|
|
|
+ |
🏗️ |
building construction |
:building_construction: |
@@ -6336,6 +6859,7 @@ Emoji Catalog
|
|
|
+ |
🏘️ |
houses |
:house_buildings: |
@@ -6348,6 +6872,7 @@ Emoji Catalog
|
|
|
+ |
🏙️ |
cityscape |
:cityscape: |
@@ -6360,6 +6885,7 @@ Emoji Catalog
|
|
|
+ |
🏚️ |
derelict house |
:derelict_house_building: |
@@ -6372,6 +6898,7 @@ Emoji Catalog
|
|
|
+ |
🏛️ |
classical building |
:classical_building: |
@@ -6384,6 +6911,7 @@ Emoji Catalog
|
|
|
+ |
🏜️ |
desert |
:desert: |
@@ -6396,6 +6924,7 @@ Emoji Catalog
|
|
|
+ |
🏝️ |
desert island |
:desert_island: |
@@ -6408,6 +6937,7 @@ Emoji Catalog
|
|
|
+ |
🏞️ |
national park |
:national_park: |
@@ -6420,6 +6950,7 @@ Emoji Catalog
|
|
|
+ |
🏟️ |
stadium |
:stadium: |
@@ -6432,6 +6963,7 @@ Emoji Catalog
|
|
|
+ |
🏠 |
house building |
:house: |
@@ -6444,6 +6976,7 @@ Emoji Catalog
|
|
|
+ |
🏡 |
house with garden |
:house_with_garden: |
@@ -6456,6 +6989,7 @@ Emoji Catalog
|
|
|
+ |
🏢 |
office building |
:office: |
@@ -6468,6 +7002,7 @@ Emoji Catalog
|
|
|
+ |
🏣 |
japanese post office |
:post_office: |
@@ -6480,6 +7015,7 @@ Emoji Catalog
|
|
|
+ |
🏤 |
european post office |
:european_post_office: |
@@ -6492,6 +7028,7 @@ Emoji Catalog
|
|
|
+ |
🏥 |
hospital |
:hospital: |
@@ -6504,6 +7041,7 @@ Emoji Catalog
|
|
|
+ |
🏦 |
bank |
:bank: |
@@ -6516,6 +7054,7 @@ Emoji Catalog
|
|
|
+ |
🏧 |
automated teller machine |
:atm: |
@@ -6528,6 +7067,7 @@ Emoji Catalog
|
|
|
+ |
🏨 |
hotel |
:hotel: |
@@ -6540,6 +7080,7 @@ Emoji Catalog
|
|
|
+ |
🏩 |
love hotel |
:love_hotel: |
@@ -6552,6 +7093,7 @@ Emoji Catalog
|
|
|
+ |
🏪 |
convenience store |
:convenience_store: |
@@ -6564,6 +7106,7 @@ Emoji Catalog
|
|
|
+ |
🏫 |
school |
:school: |
@@ -6576,6 +7119,7 @@ Emoji Catalog
|
|
|
+ |
🏬 |
department store |
:department_store: |
@@ -6588,6 +7132,7 @@ Emoji Catalog
|
|
|
+ |
🏭 |
factory |
:factory: |
@@ -6600,6 +7145,7 @@ Emoji Catalog
|
|
|
+ |
🏮 |
izakaya lantern |
:izakaya_lantern: |
@@ -6612,6 +7158,7 @@ Emoji Catalog
|
|
|
+ |
🏯 |
japanese castle |
:japanese_castle: |
@@ -6624,6 +7171,7 @@ Emoji Catalog
|
|
|
+ |
🏰 |
european castle |
:european_castle: |
@@ -6636,6 +7184,7 @@ Emoji Catalog
|
|
|
+ |
🏳️🌈 |
rainbow flag |
:rainbow-flag: |
@@ -6648,6 +7197,7 @@ Emoji Catalog
|
|
- |
+ |
🏳️⚧️ |
transgender flag |
:transgender_flag: |
@@ -6660,6 +7210,7 @@ Emoji Catalog
|
|
|
+ |
🏳️ |
white flag |
:waving_white_flag: |
@@ -6672,6 +7223,7 @@ Emoji Catalog
|
|
|
+ |
🏴☠️ |
pirate flag |
:pirate_flag: |
@@ -6684,6 +7236,7 @@ Emoji Catalog
|
|
|
+ - |
🏴 |
england flag |
:flag-england: |
@@ -6696,6 +7249,7 @@ Emoji Catalog
|
|
|
+ - |
🏴 |
scotland flag |
:flag-scotland: |
@@ -6708,6 +7262,7 @@ Emoji Catalog
|
|
|
+ - |
🏴 |
wales flag |
:flag-wales: |
@@ -6720,6 +7275,7 @@ Emoji Catalog
|
|
|
+ |
🏴 |
waving black flag |
:waving_black_flag: |
@@ -6732,6 +7288,7 @@ Emoji Catalog
|
|
|
+ |
🏵️ |
rosette |
:rosette: |
@@ -6744,6 +7301,7 @@ Emoji Catalog
|
|
|
+ |
🏷️ |
label |
:label: |
@@ -6756,6 +7314,7 @@ Emoji Catalog
|
|
|
+ |
🏸 |
badminton racquet and shuttlecock |
:badminton_racquet_and_shuttlecock: |
@@ -6768,6 +7327,7 @@ Emoji Catalog
|
|
|
+ |
🏹 |
bow and arrow |
:bow_and_arrow: |
@@ -6780,6 +7340,7 @@ Emoji Catalog
|
|
|
+ |
🏺 |
amphora |
:amphora: |
@@ -6792,6 +7353,7 @@ Emoji Catalog
|
|
|
+ - |
🏻 |
emoji modifier fitzpatrick type-1-2 |
:skin-tone-2: |
@@ -6804,6 +7366,7 @@ Emoji Catalog
|
|
|
+ - |
🏼 |
emoji modifier fitzpatrick type-3 |
:skin-tone-3: |
@@ -6816,6 +7379,7 @@ Emoji Catalog
|
|
|
+ - |
🏽 |
emoji modifier fitzpatrick type-4 |
:skin-tone-4: |
@@ -6828,6 +7392,7 @@ Emoji Catalog
|
|
|
+ - |
🏾 |
emoji modifier fitzpatrick type-5 |
:skin-tone-5: |
@@ -6840,6 +7405,7 @@ Emoji Catalog
|
|
|
+ - |
🏿 |
emoji modifier fitzpatrick type-6 |
:skin-tone-6: |
@@ -6852,6 +7418,7 @@ Emoji Catalog
|
|
|
+ |
🐀 |
rat |
:rat: |
@@ -6864,6 +7431,7 @@ Emoji Catalog
|
|
|
+ |
🐁 |
mouse |
:mouse2: |
@@ -6876,6 +7444,7 @@ Emoji Catalog
|
|
|
+ |
🐂 |
ox |
:ox: |
@@ -6888,6 +7457,7 @@ Emoji Catalog
|
|
|
+ |
🐃 |
water buffalo |
:water_buffalo: |
@@ -6900,6 +7470,7 @@ Emoji Catalog
|
|
|
+ |
🐄 |
cow |
:cow2: |
@@ -6912,6 +7483,7 @@ Emoji Catalog
|
|
|
+ |
🐅 |
tiger |
:tiger2: |
@@ -6924,6 +7496,7 @@ Emoji Catalog
|
|
|
+ |
🐆 |
leopard |
:leopard: |
@@ -6936,6 +7509,7 @@ Emoji Catalog
|
|
|
+ |
🐇 |
rabbit |
:rabbit2: |
@@ -6948,6 +7522,7 @@ Emoji Catalog
|
|
|
+ |
🐈⬛ |
black cat |
:black_cat: |
@@ -6960,6 +7535,7 @@ Emoji Catalog
|
|
|
+ |
🐈 |
cat |
:cat2: |
@@ -6972,6 +7548,7 @@ Emoji Catalog
|
|
|
+ |
🐉 |
dragon |
:dragon: |
@@ -6984,6 +7561,7 @@ Emoji Catalog
|
|
|
+ |
🐊 |
crocodile |
:crocodile: |
@@ -6996,6 +7574,7 @@ Emoji Catalog
|
|
|
+ |
🐋 |
whale |
:whale2: |
@@ -7008,6 +7587,7 @@ Emoji Catalog
|
|
|
+ |
🐌 |
snail |
:snail: |
@@ -7020,6 +7600,7 @@ Emoji Catalog
|
|
|
+ |
🐍 |
snake |
:snake: |
@@ -7032,6 +7613,7 @@ Emoji Catalog
|
|
|
+ |
🐎 |
horse |
:racehorse: |
@@ -7044,6 +7626,7 @@ Emoji Catalog
|
|
|
+ |
🐏 |
ram |
:ram: |
@@ -7056,6 +7639,7 @@ Emoji Catalog
|
|
|
+ |
🐐 |
goat |
:goat: |
@@ -7068,6 +7652,7 @@ Emoji Catalog
|
|
|
+ |
🐑 |
sheep |
:sheep: |
@@ -7080,6 +7665,7 @@ Emoji Catalog
|
|
|
+ |
🐒 |
monkey |
:monkey: |
@@ -7092,6 +7678,7 @@ Emoji Catalog
|
|
|
+ |
🐓 |
rooster |
:rooster: |
@@ -7104,6 +7691,7 @@ Emoji Catalog
|
|
|
+ |
🐔 |
chicken |
:chicken: |
@@ -7116,6 +7704,7 @@ Emoji Catalog
|
|
|
+ |
🐕🦺 |
service dog |
:service_dog: |
@@ -7128,6 +7717,7 @@ Emoji Catalog
|
|
|
+ |
🐕 |
dog |
:dog2: |
@@ -7140,6 +7730,7 @@ Emoji Catalog
|
|
|
+ |
🐖 |
pig |
:pig2: |
@@ -7152,6 +7743,7 @@ Emoji Catalog
|
|
|
+ |
🐗 |
boar |
:boar: |
@@ -7164,6 +7756,7 @@ Emoji Catalog
|
|
|
+ |
🐘 |
elephant |
:elephant: |
@@ -7176,6 +7769,7 @@ Emoji Catalog
|
|
|
+ |
🐙 |
octopus |
:octopus: |
@@ -7188,6 +7782,7 @@ Emoji Catalog
|
|
|
+ |
🐚 |
spiral shell |
:shell: |
@@ -7200,6 +7795,7 @@ Emoji Catalog
|
|
|
+ |
🐛 |
bug |
:bug: |
@@ -7212,6 +7808,7 @@ Emoji Catalog
|
|
|
+ |
🐜 |
ant |
:ant: |
@@ -7224,6 +7821,7 @@ Emoji Catalog
|
|
|
+ |
🐝 |
honeybee |
:bee: |
@@ -7236,6 +7834,7 @@ Emoji Catalog
|
|
|
+ |
🐞 |
lady beetle |
:ladybug: |
@@ -7248,6 +7847,7 @@ Emoji Catalog
|
|
|
+ |
🐟 |
fish |
:fish: |
@@ -7260,6 +7860,7 @@ Emoji Catalog
|
|
|
+ |
🐠 |
tropical fish |
:tropical_fish: |
@@ -7272,6 +7873,7 @@ Emoji Catalog
|
|
|
+ |
🐡 |
blowfish |
:blowfish: |
@@ -7284,6 +7886,7 @@ Emoji Catalog
|
|
|
+ |
🐢 |
turtle |
:turtle: |
@@ -7296,6 +7899,7 @@ Emoji Catalog
|
|
|
+ |
🐣 |
hatching chick |
:hatching_chick: |
@@ -7308,6 +7912,7 @@ Emoji Catalog
|
|
|
+ |
🐤 |
baby chick |
:baby_chick: |
@@ -7320,6 +7925,7 @@ Emoji Catalog
|
|
|
+ |
🐥 |
front-facing baby chick |
:hatched_chick: |
@@ -7332,6 +7938,7 @@ Emoji Catalog
|
- |
- |
+ - |
🐦⬛ |
black bird |
:black_bird: |
@@ -7344,6 +7951,7 @@ Emoji Catalog
|
|
|
+ |
🐦 |
bird |
:bird: |
@@ -7356,6 +7964,7 @@ Emoji Catalog
|
|
|
+ |
🐧 |
penguin |
:penguin: |
@@ -7368,6 +7977,7 @@ Emoji Catalog
|
|
|
+ |
🐨 |
koala |
:koala: |
@@ -7380,6 +7990,7 @@ Emoji Catalog
|
|
|
+ |
🐩 |
poodle |
:poodle: |
@@ -7392,6 +8003,7 @@ Emoji Catalog
|
|
|
+ |
🐪 |
dromedary camel |
:dromedary_camel: |
@@ -7404,6 +8016,7 @@ Emoji Catalog
|
|
|
+ |
🐫 |
bactrian camel |
:camel: |
@@ -7416,6 +8029,7 @@ Emoji Catalog
|
|
|
+ |
🐬 |
dolphin |
:dolphin: |
@@ -7428,6 +8042,7 @@ Emoji Catalog
|
|
|
+ |
🐭 |
mouse face |
:mouse: |
@@ -7440,6 +8055,7 @@ Emoji Catalog
|
|
|
+ |
🐮 |
cow face |
:cow: |
@@ -7452,6 +8068,7 @@ Emoji Catalog
|
|
|
+ |
🐯 |
tiger face |
:tiger: |
@@ -7464,6 +8081,7 @@ Emoji Catalog
|
|
|
+ |
🐰 |
rabbit face |
:rabbit: |
@@ -7476,6 +8094,7 @@ Emoji Catalog
|
|
|
+ |
🐱 |
cat face |
:cat: |
@@ -7488,6 +8107,7 @@ Emoji Catalog
|
|
|
+ |
🐲 |
dragon face |
:dragon_face: |
@@ -7500,6 +8120,7 @@ Emoji Catalog
|
|
|
+ |
🐳 |
spouting whale |
:whale: |
@@ -7512,6 +8133,7 @@ Emoji Catalog
|
|
|
+ |
🐴 |
horse face |
:horse: |
@@ -7524,6 +8146,7 @@ Emoji Catalog
|
|
|
+ |
🐵 |
monkey face |
:monkey_face: |
@@ -7536,6 +8159,7 @@ Emoji Catalog
|
|
|
+ |
🐶 |
dog face |
:dog: |
@@ -7548,6 +8172,7 @@ Emoji Catalog
|
|
|
+ |
🐷 |
pig face |
:pig: |
@@ -7560,6 +8185,7 @@ Emoji Catalog
|
|
|
+ |
🐸 |
frog face |
:frog: |
@@ -7572,6 +8198,7 @@ Emoji Catalog
|
|
|
+ |
🐹 |
hamster face |
:hamster: |
@@ -7584,6 +8211,7 @@ Emoji Catalog
|
|
|
+ |
🐺 |
wolf face |
:wolf: |
@@ -7596,6 +8224,7 @@ Emoji Catalog
|
|
|
+ |
🐻❄️ |
polar bear |
:polar_bear: |
@@ -7608,6 +8237,7 @@ Emoji Catalog
|
|
|
+ |
🐻 |
bear face |
:bear: |
@@ -7620,6 +8250,7 @@ Emoji Catalog
|
|
|
+ |
🐼 |
panda face |
:panda_face: |
@@ -7632,6 +8263,7 @@ Emoji Catalog
|
|
|
+ |
🐽 |
pig nose |
:pig_nose: |
@@ -7644,6 +8276,7 @@ Emoji Catalog
|
|
|
+ |
🐾 |
paw prints |
:feet: |
@@ -7656,6 +8289,7 @@ Emoji Catalog
|
|
|
+ |
🐿️ |
chipmunk |
:chipmunk: |
@@ -7668,6 +8302,7 @@ Emoji Catalog
|
|
|
+ |
👀 |
eyes |
:eyes: |
@@ -7680,6 +8315,7 @@ Emoji Catalog
|
|
- |
+ |
👁️🗨️ |
eye in speech bubble |
:eye-in-speech-bubble: |
@@ -7692,6 +8328,7 @@ Emoji Catalog
|
|
|
+ |
👁️ |
eye |
:eye: |
@@ -7704,6 +8341,7 @@ Emoji Catalog
|
|
|
+ |
👂 |
ear |
:ear: |
@@ -7716,6 +8354,7 @@ Emoji Catalog
|
|
|
+ |
👃 |
nose |
:nose: |
@@ -7728,6 +8367,7 @@ Emoji Catalog
|
|
|
+ |
👄 |
mouth |
:lips: |
@@ -7740,6 +8380,7 @@ Emoji Catalog
|
|
|
+ |
👅 |
tongue |
:tongue: |
@@ -7752,6 +8393,7 @@ Emoji Catalog
|
|
|
+ |
👆 |
white up pointing backhand index |
:point_up_2: |
@@ -7764,6 +8406,7 @@ Emoji Catalog
|
|
|
+ |
👇 |
white down pointing backhand index |
:point_down: |
@@ -7776,6 +8419,7 @@ Emoji Catalog
|
|
|
+ |
👈 |
white left pointing backhand index |
:point_left: |
@@ -7788,6 +8432,7 @@ Emoji Catalog
|
|
|
+ |
👉 |
white right pointing backhand index |
:point_right: |
@@ -7800,6 +8445,7 @@ Emoji Catalog
|
|
|
+ |
👊 |
fisted hand sign |
:facepunch: |
@@ -7812,6 +8458,7 @@ Emoji Catalog
|
|
|
+ |
👋 |
waving hand sign |
:wave: |
@@ -7824,6 +8471,7 @@ Emoji Catalog
|
|
|
+ |
👌 |
ok hand sign |
:ok_hand: |
@@ -7836,6 +8484,7 @@ Emoji Catalog
|
|
|
+ |
👍 |
thumbs up sign |
:+1: |
@@ -7848,6 +8497,7 @@ Emoji Catalog
|
|
|
+ |
👎 |
thumbs down sign |
:-1: |
@@ -7860,6 +8510,7 @@ Emoji Catalog
|
|
|
+ |
👏 |
clapping hands sign |
:clap: |
@@ -7872,6 +8523,7 @@ Emoji Catalog
|
|
|
+ |
👐 |
open hands sign |
:open_hands: |
@@ -7884,6 +8536,7 @@ Emoji Catalog
|
|
|
+ |
👑 |
crown |
:crown: |
@@ -7896,6 +8549,7 @@ Emoji Catalog
|
|
|
+ |
👒 |
womans hat |
:womans_hat: |
@@ -7908,6 +8562,7 @@ Emoji Catalog
|
|
|
+ |
👓 |
eyeglasses |
:eyeglasses: |
@@ -7920,6 +8575,7 @@ Emoji Catalog
|
|
|
+ |
👔 |
necktie |
:necktie: |
@@ -7932,6 +8588,7 @@ Emoji Catalog
|
|
|
+ |
👕 |
t-shirt |
:shirt: |
@@ -7944,6 +8601,7 @@ Emoji Catalog
|
|
|
+ |
👖 |
jeans |
:jeans: |
@@ -7956,6 +8614,7 @@ Emoji Catalog
|
|
|
+ |
👗 |
dress |
:dress: |
@@ -7968,6 +8627,7 @@ Emoji Catalog
|
|
|
+ |
👘 |
kimono |
:kimono: |
@@ -7980,6 +8640,7 @@ Emoji Catalog
|
|
|
+ |
👙 |
bikini |
:bikini: |
@@ -7992,6 +8653,7 @@ Emoji Catalog
|
|
|
+ |
👚 |
womans clothes |
:womans_clothes: |
@@ -8004,6 +8666,7 @@ Emoji Catalog
|
|
|
+ |
👛 |
purse |
:purse: |
@@ -8016,6 +8679,7 @@ Emoji Catalog
|
|
|
+ |
👜 |
handbag |
:handbag: |
@@ -8028,6 +8692,7 @@ Emoji Catalog
|
|
|
+ |
👝 |
pouch |
:pouch: |
@@ -8040,6 +8705,7 @@ Emoji Catalog
|
|
|
+ |
👞 |
mans shoe |
:mans_shoe: |
@@ -8052,6 +8718,7 @@ Emoji Catalog
|
|
|
+ |
👟 |
athletic shoe |
:athletic_shoe: |
@@ -8064,6 +8731,7 @@ Emoji Catalog
|
|
|
+ |
👠 |
high-heeled shoe |
:high_heel: |
@@ -8076,6 +8744,7 @@ Emoji Catalog
|
|
|
+ |
👡 |
womans sandal |
:sandal: |
@@ -8088,6 +8757,7 @@ Emoji Catalog
|
|
|
+ |
👢 |
womans boots |
:boot: |
@@ -8100,6 +8770,7 @@ Emoji Catalog
|
|
|
+ |
👣 |
footprints |
:footprints: |
@@ -8112,6 +8783,7 @@ Emoji Catalog
|
|
|
+ |
👤 |
bust in silhouette |
:bust_in_silhouette: |
@@ -8124,6 +8796,7 @@ Emoji Catalog
|
|
|
+ |
👥 |
busts in silhouette |
:busts_in_silhouette: |
@@ -8136,6 +8809,7 @@ Emoji Catalog
|
|
|
+ |
👦 |
boy |
:boy: |
@@ -8148,6 +8822,7 @@ Emoji Catalog
|
|
|
+ |
👧 |
girl |
:girl: |
@@ -8160,6 +8835,7 @@ Emoji Catalog
|
|
|
+ |
👨🌾 |
man farmer |
:male-farmer: |
@@ -8172,6 +8848,7 @@ Emoji Catalog
|
|
|
+ |
👨🍳 |
man cook |
:male-cook: |
@@ -8184,6 +8861,7 @@ Emoji Catalog
|
|
|
+ |
👨🍼 |
man feeding baby |
:man_feeding_baby: |
@@ -8196,6 +8874,7 @@ Emoji Catalog
|
|
|
+ |
👨🎓 |
man student |
:male-student: |
@@ -8208,6 +8887,7 @@ Emoji Catalog
|
|
|
+ |
👨🎤 |
man singer |
:male-singer: |
@@ -8220,6 +8900,7 @@ Emoji Catalog
|
|
|
+ |
👨🎨 |
man artist |
:male-artist: |
@@ -8232,6 +8913,7 @@ Emoji Catalog
|
|
|
+ |
👨🏫 |
man teacher |
:male-teacher: |
@@ -8244,6 +8926,7 @@ Emoji Catalog
|
|
|
+ |
👨🏭 |
man factory worker |
:male-factory-worker: |
@@ -8256,6 +8939,7 @@ Emoji Catalog
|
|
|
+ - |
👨👦👦 |
family: man, boy, boy |
:man-boy-boy: |
@@ -8268,6 +8952,7 @@ Emoji Catalog
|
|
|
+ - |
👨👦 |
family: man, boy |
:man-boy: |
@@ -8280,6 +8965,7 @@ Emoji Catalog
|
|
|
+ - |
👨👧👦 |
family: man, girl, boy |
:man-girl-boy: |
@@ -8292,6 +8978,7 @@ Emoji Catalog
|
|
|
+ - |
👨👧👧 |
family: man, girl, girl |
:man-girl-girl: |
@@ -8304,6 +8991,7 @@ Emoji Catalog
|
|
|
+ - |
👨👧 |
family: man, girl |
:man-girl: |
@@ -8316,6 +9004,7 @@ Emoji Catalog
|
|
|
+ - |
👨👨👦 |
family: man, man, boy |
:man-man-boy: |
@@ -8328,6 +9017,7 @@ Emoji Catalog
|
|
|
+ - |
👨👨👦👦 |
family: man, man, boy, boy |
:man-man-boy-boy: |
@@ -8340,6 +9030,7 @@ Emoji Catalog
|
|
|
+ - |
👨👨👧 |
family: man, man, girl |
:man-man-girl: |
@@ -8352,6 +9043,7 @@ Emoji Catalog
|
|
|
+ - |
👨👨👧👦 |
family: man, man, girl, boy |
:man-man-girl-boy: |
@@ -8364,6 +9056,7 @@ Emoji Catalog
|
|
|
+ - |
👨👨👧👧 |
family: man, man, girl, girl |
:man-man-girl-girl: |
@@ -8376,6 +9069,7 @@ Emoji Catalog
|
|
|
+ - |
👨👩👦 |
family: man, woman, boy |
:man-woman-boy: |
@@ -8388,6 +9082,7 @@ Emoji Catalog
|
|
|
+ - |
👨👩👦👦 |
family: man, woman, boy, boy |
:man-woman-boy-boy: |
@@ -8400,6 +9095,7 @@ Emoji Catalog
|
|
|
+ - |
👨👩👧 |
family: man, woman, girl |
:man-woman-girl: |
@@ -8412,6 +9108,7 @@ Emoji Catalog
|
|
|
+ - |
👨👩👧👦 |
family: man, woman, girl, boy |
:man-woman-girl-boy: |
@@ -8424,6 +9121,7 @@ Emoji Catalog
|
|
|
+ - |
👨👩👧👧 |
family: man, woman, girl, girl |
:man-woman-girl-girl: |
@@ -8436,6 +9134,7 @@ Emoji Catalog
|
|
|
+ - |
👨💻 |
man technologist |
:male-technologist: |
@@ -8448,6 +9147,7 @@ Emoji Catalog
|
|
|
+ |
👨💼 |
man office worker |
:male-office-worker: |
@@ -8460,6 +9160,7 @@ Emoji Catalog
|
|
|
+ |
👨🔧 |
man mechanic |
:male-mechanic: |
@@ -8472,6 +9173,7 @@ Emoji Catalog
|
|
|
+ |
👨🔬 |
man scientist |
:male-scientist: |
@@ -8484,6 +9186,7 @@ Emoji Catalog
|
|
|
+ |
👨🚀 |
man astronaut |
:male-astronaut: |
@@ -8496,6 +9199,7 @@ Emoji Catalog
|
|
|
+ |
👨🚒 |
man firefighter |
:male-firefighter: |
@@ -8508,6 +9212,7 @@ Emoji Catalog
|
|
|
+ |
👨🦯 |
man with white cane |
:man_with_probing_cane: |
@@ -8520,6 +9225,7 @@ Emoji Catalog
|
|
|
+ |
👨🦰 |
man: red hair |
:red_haired_man: |
@@ -8532,6 +9238,7 @@ Emoji Catalog
|
|
|
+ |
👨🦱 |
man: curly hair |
:curly_haired_man: |
@@ -8544,6 +9251,7 @@ Emoji Catalog
|
|
|
+ |
👨🦲 |
man: bald |
:bald_man: |
@@ -8556,6 +9264,7 @@ Emoji Catalog
|
|
|
+ |
👨🦳 |
man: white hair |
:white_haired_man: |
@@ -8568,6 +9277,7 @@ Emoji Catalog
|
|
|
+ |
👨🦼 |
man in motorized wheelchair |
:man_in_motorized_wheelchair: |
@@ -8580,6 +9290,7 @@ Emoji Catalog
|
|
|
+ |
👨🦽 |
man in manual wheelchair |
:man_in_manual_wheelchair: |
@@ -8592,6 +9303,7 @@ Emoji Catalog
|
|
|
+ |
👨⚕️ |
man health worker |
:male-doctor: |
@@ -8604,6 +9316,7 @@ Emoji Catalog
|
|
|
+ |
👨⚖️ |
man judge |
:male-judge: |
@@ -8616,6 +9329,7 @@ Emoji Catalog
|
|
|
+ |
👨✈️ |
man pilot |
:male-pilot: |
@@ -8628,6 +9342,7 @@ Emoji Catalog
|
|
|
+ - |
👨❤️👨 |
couple with heart: man, man |
:man-heart-man: |
@@ -8640,6 +9355,7 @@ Emoji Catalog
|
|
|
+ - |
👨❤️💋👨 |
kiss: man, man |
:man-kiss-man: |
@@ -8652,6 +9368,7 @@ Emoji Catalog
|
|
|
+ |
👨 |
man |
:man: |
@@ -8664,6 +9381,7 @@ Emoji Catalog
|
|
|
+ |
👩🌾 |
woman farmer |
:female-farmer: |
@@ -8676,6 +9394,7 @@ Emoji Catalog
|
|
|
+ |
👩🍳 |
woman cook |
:female-cook: |
@@ -8688,6 +9407,7 @@ Emoji Catalog
|
|
|
+ |
👩🍼 |
woman feeding baby |
:woman_feeding_baby: |
@@ -8700,6 +9420,7 @@ Emoji Catalog
|
|
|
+ |
👩🎓 |
woman student |
:female-student: |
@@ -8712,6 +9433,7 @@ Emoji Catalog
|
|
|
+ |
👩🎤 |
woman singer |
:female-singer: |
@@ -8724,6 +9446,7 @@ Emoji Catalog
|
|
|
+ |
👩🎨 |
woman artist |
:female-artist: |
@@ -8736,6 +9459,7 @@ Emoji Catalog
|
|
|
+ |
👩🏫 |
woman teacher |
:female-teacher: |
@@ -8748,6 +9472,7 @@ Emoji Catalog
|
|
|
+ |
👩🏭 |
woman factory worker |
:female-factory-worker: |
@@ -8760,6 +9485,7 @@ Emoji Catalog
|
|
|
+ - |
👩👦👦 |
family: woman, boy, boy |
:woman-boy-boy: |
@@ -8772,6 +9498,7 @@ Emoji Catalog
|
|
|
+ - |
👩👦 |
family: woman, boy |
:woman-boy: |
@@ -8784,6 +9511,7 @@ Emoji Catalog
|
|
|
+ - |
👩👧👦 |
family: woman, girl, boy |
:woman-girl-boy: |
@@ -8796,6 +9524,7 @@ Emoji Catalog
|
|
|
+ - |
👩👧👧 |
family: woman, girl, girl |
:woman-girl-girl: |
@@ -8808,6 +9537,7 @@ Emoji Catalog
|
|
|
+ - |
👩👧 |
family: woman, girl |
:woman-girl: |
@@ -8820,6 +9550,7 @@ Emoji Catalog
|
|
|
+ - |
👩👩👦 |
family: woman, woman, boy |
:woman-woman-boy: |
@@ -8832,6 +9563,7 @@ Emoji Catalog
|
|
|
+ - |
👩👩👦👦 |
family: woman, woman, boy, boy |
:woman-woman-boy-boy: |
@@ -8844,6 +9576,7 @@ Emoji Catalog
|
|
|
+ - |
👩👩👧 |
family: woman, woman, girl |
:woman-woman-girl: |
@@ -8856,6 +9589,7 @@ Emoji Catalog
|
|
|
+ - |
👩👩👧👦 |
family: woman, woman, girl, boy |
:woman-woman-girl-boy: |
@@ -8868,6 +9602,7 @@ Emoji Catalog
|
|
|
+ - |
👩👩👧👧 |
family: woman, woman, girl, girl |
:woman-woman-girl-girl: |
@@ -8880,6 +9615,7 @@ Emoji Catalog
|
|
|
+ - |
👩💻 |
woman technologist |
:female-technologist: |
@@ -8892,6 +9628,7 @@ Emoji Catalog
|
|
|
+ |
👩💼 |
woman office worker |
:female-office-worker: |
@@ -8904,6 +9641,7 @@ Emoji Catalog
|
|
|
+ |
👩🔧 |
woman mechanic |
:female-mechanic: |
@@ -8916,6 +9654,7 @@ Emoji Catalog
|
|
|
+ |
👩🔬 |
woman scientist |
:female-scientist: |
@@ -8928,6 +9667,7 @@ Emoji Catalog
|
|
|
+ |
👩🚀 |
woman astronaut |
:female-astronaut: |
@@ -8940,6 +9680,7 @@ Emoji Catalog
|
|
|
+ |
👩🚒 |
woman firefighter |
:female-firefighter: |
@@ -8952,6 +9693,7 @@ Emoji Catalog
|
|
|
+ |
👩🦯 |
woman with white cane |
:woman_with_probing_cane: |
@@ -8964,6 +9706,7 @@ Emoji Catalog
|
|
|
+ |
👩🦰 |
woman: red hair |
:red_haired_woman: |
@@ -8976,6 +9719,7 @@ Emoji Catalog
|
|
|
+ |
👩🦱 |
woman: curly hair |
:curly_haired_woman: |
@@ -8988,6 +9732,7 @@ Emoji Catalog
|
|
|
+ |
👩🦲 |
woman: bald |
:bald_woman: |
@@ -9000,6 +9745,7 @@ Emoji Catalog
|
|
|
+ |
👩🦳 |
woman: white hair |
:white_haired_woman: |
@@ -9012,6 +9758,7 @@ Emoji Catalog
|
|
|
+ |
👩🦼 |
woman in motorized wheelchair |
:woman_in_motorized_wheelchair: |
@@ -9024,6 +9771,7 @@ Emoji Catalog
|
|
|
+ |
👩🦽 |
woman in manual wheelchair |
:woman_in_manual_wheelchair: |
@@ -9036,6 +9784,7 @@ Emoji Catalog
|
|
|
+ |
👩⚕️ |
woman health worker |
:female-doctor: |
@@ -9048,6 +9797,7 @@ Emoji Catalog
|
|
|
+ |
👩⚖️ |
woman judge |
:female-judge: |
@@ -9060,6 +9810,7 @@ Emoji Catalog
|
|
|
+ |
👩✈️ |
woman pilot |
:female-pilot: |
@@ -9072,6 +9823,7 @@ Emoji Catalog
|
|
|
+ - |
👩❤️👨 |
couple with heart: woman, man |
:woman-heart-man: |
@@ -9084,6 +9836,7 @@ Emoji Catalog
|
|
|
+ - |
👩❤️👩 |
couple with heart: woman, woman |
:woman-heart-woman: |
@@ -9096,6 +9849,7 @@ Emoji Catalog
|
|
|
+ - |
👩❤️💋👨 |
kiss: woman, man |
:woman-kiss-man: |
@@ -9108,6 +9862,7 @@ Emoji Catalog
|
|
|
+ - |
👩❤️💋👩 |
kiss: woman, woman |
:woman-kiss-woman: |
@@ -9120,6 +9875,7 @@ Emoji Catalog
|
|
|
+ |
👩 |
woman |
:woman: |
@@ -9132,6 +9888,7 @@ Emoji Catalog
|
|
|
+ - |
👪 |
family |
:family: |
@@ -9144,6 +9901,7 @@ Emoji Catalog
|
|
|
+ - |
👫 |
man and woman holding hands |
:man_and_woman_holding_hands: |
@@ -9156,6 +9914,7 @@ Emoji Catalog
|
|
|
+ - |
👬 |
two men holding hands |
:two_men_holding_hands: |
@@ -9168,6 +9927,7 @@ Emoji Catalog
|
|
|
+ - |
👭 |
two women holding hands |
:two_women_holding_hands: |
@@ -9180,6 +9940,7 @@ Emoji Catalog
|
|
|
+ |
👮♀️ |
woman police officer |
:female-police-officer: |
@@ -9192,6 +9953,7 @@ Emoji Catalog
|
|
|
+ |
👮♂️ |
man police officer |
:male-police-officer: |
@@ -9204,6 +9966,7 @@ Emoji Catalog
|
|
|
+ |
👮 |
police officer |
:cop: |
@@ -9216,6 +9979,7 @@ Emoji Catalog
|
|
|
+ |
👯♀️ |
women with bunny ears |
:women-with-bunny-ears-partying: |
@@ -9228,6 +9992,7 @@ Emoji Catalog
|
|
|
+ |
👯♂️ |
men with bunny ears |
:men-with-bunny-ears-partying: |
@@ -9240,6 +10005,7 @@ Emoji Catalog
|
|
|
+ |
👯 |
woman with bunny ears |
:dancers: |
@@ -9252,6 +10018,7 @@ Emoji Catalog
|
|
|
+ |
👰♀️ |
woman with veil |
:woman_with_veil: |
@@ -9264,6 +10031,7 @@ Emoji Catalog
|
|
|
+ |
👰♂️ |
man with veil |
:man_with_veil: |
@@ -9276,6 +10044,7 @@ Emoji Catalog
|
|
|
+ |
👰 |
bride with veil |
:bride_with_veil: |
@@ -9288,6 +10057,7 @@ Emoji Catalog
|
|
|
+ |
👱♀️ |
woman: blond hair |
:blond-haired-woman: |
@@ -9300,6 +10070,7 @@ Emoji Catalog
|
|
|
+ |
👱♂️ |
man: blond hair |
:blond-haired-man: |
@@ -9312,6 +10083,7 @@ Emoji Catalog
|
|
|
+ |
👱 |
person with blond hair |
:person_with_blond_hair: |
@@ -9324,6 +10096,7 @@ Emoji Catalog
|
|
|
+ |
👲 |
man with gua pi mao |
:man_with_gua_pi_mao: |
@@ -9336,6 +10109,7 @@ Emoji Catalog
|
|
|
+ |
👳♀️ |
woman wearing turban |
:woman-wearing-turban: |
@@ -9348,6 +10122,7 @@ Emoji Catalog
|
|
|
+ |
👳♂️ |
man wearing turban |
:man-wearing-turban: |
@@ -9360,6 +10135,7 @@ Emoji Catalog
|
|
|
+ |
👳 |
man with turban |
:man_with_turban: |
@@ -9372,6 +10148,7 @@ Emoji Catalog
|
|
|
+ |
👴 |
older man |
:older_man: |
@@ -9384,6 +10161,7 @@ Emoji Catalog
|
|
|
+ |
👵 |
older woman |
:older_woman: |
@@ -9396,6 +10174,7 @@ Emoji Catalog
|
|
|
+ |
👶 |
baby |
:baby: |
@@ -9408,6 +10187,7 @@ Emoji Catalog
|
|
|
+ |
👷♀️ |
woman construction worker |
:female-construction-worker: |
@@ -9420,6 +10200,7 @@ Emoji Catalog
|
|
|
+ |
👷♂️ |
man construction worker |
:male-construction-worker: |
@@ -9432,6 +10213,7 @@ Emoji Catalog
|
|
|
+ |
👷 |
construction worker |
:construction_worker: |
@@ -9444,6 +10226,7 @@ Emoji Catalog
|
|
|
+ |
👸 |
princess |
:princess: |
@@ -9456,6 +10239,7 @@ Emoji Catalog
|
|
|
+ |
👹 |
japanese ogre |
:japanese_ogre: |
@@ -9468,6 +10252,7 @@ Emoji Catalog
|
|
|
+ |
👺 |
japanese goblin |
:japanese_goblin: |
@@ -9480,6 +10265,7 @@ Emoji Catalog
|
|
|
+ |
👻 |
ghost |
:ghost: |
@@ -9492,6 +10278,7 @@ Emoji Catalog
|
|
|
+ |
👼 |
baby angel |
:angel: |
@@ -9504,6 +10291,7 @@ Emoji Catalog
|
|
|
+ |
👽 |
extraterrestrial alien |
:alien: |
@@ -9516,6 +10304,7 @@ Emoji Catalog
|
|
|
+ |
👾 |
alien monster |
:space_invader: |
@@ -9528,6 +10317,7 @@ Emoji Catalog
|
|
|
+ |
👿 |
imp |
:imp: |
@@ -9540,6 +10330,7 @@ Emoji Catalog
|
|
|
+ |
💀 |
skull |
:skull: |
@@ -9552,6 +10343,7 @@ Emoji Catalog
|
|
|
+ |
💁♀️ |
woman tipping hand |
:woman-tipping-hand: |
@@ -9564,6 +10356,7 @@ Emoji Catalog
|
|
|
+ |
💁♂️ |
man tipping hand |
:man-tipping-hand: |
@@ -9576,6 +10369,7 @@ Emoji Catalog
|
|
|
+ |
💁 |
information desk person |
:information_desk_person: |
@@ -9588,6 +10382,7 @@ Emoji Catalog
|
|
|
+ |
💂♀️ |
woman guard |
:female-guard: |
@@ -9600,6 +10395,7 @@ Emoji Catalog
|
|
|
+ |
💂♂️ |
man guard |
:male-guard: |
@@ -9612,6 +10408,7 @@ Emoji Catalog
|
|
|
+ |
💂 |
guardsman |
:guardsman: |
@@ -9624,6 +10421,7 @@ Emoji Catalog
|
|
|
+ |
💃 |
dancer |
:dancer: |
@@ -9636,6 +10434,7 @@ Emoji Catalog
|
|
|
+ |
💄 |
lipstick |
:lipstick: |
@@ -9648,6 +10447,7 @@ Emoji Catalog
|
|
|
+ |
💅 |
nail polish |
:nail_care: |
@@ -9660,6 +10460,7 @@ Emoji Catalog
|
|
|
+ |
💆♀️ |
woman getting massage |
:woman-getting-massage: |
@@ -9672,6 +10473,7 @@ Emoji Catalog
|
|
|
+ |
💆♂️ |
man getting massage |
:man-getting-massage: |
@@ -9684,6 +10486,7 @@ Emoji Catalog
|
|
|
+ |
💆 |
face massage |
:massage: |
@@ -9696,6 +10499,7 @@ Emoji Catalog
|
|
|
+ |
💇♀️ |
woman getting haircut |
:woman-getting-haircut: |
@@ -9708,6 +10512,7 @@ Emoji Catalog
|
|
|
+ |
💇♂️ |
man getting haircut |
:man-getting-haircut: |
@@ -9720,6 +10525,7 @@ Emoji Catalog
|
|
|
+ |
💇 |
haircut |
:haircut: |
@@ -9732,6 +10538,7 @@ Emoji Catalog
|
|
|
+ |
💈 |
barber pole |
:barber: |
@@ -9744,6 +10551,7 @@ Emoji Catalog
|
|
|
+ |
💉 |
syringe |
:syringe: |
@@ -9756,6 +10564,7 @@ Emoji Catalog
|
|
|
+ |
💊 |
pill |
:pill: |
@@ -9768,6 +10577,7 @@ Emoji Catalog
|
|
|
+ |
💋 |
kiss mark |
:kiss: |
@@ -9780,6 +10590,7 @@ Emoji Catalog
|
|
|
+ |
💌 |
love letter |
:love_letter: |
@@ -9792,6 +10603,7 @@ Emoji Catalog
|
|
|
+ |
💍 |
ring |
:ring: |
@@ -9804,6 +10616,7 @@ Emoji Catalog
|
|
|
+ |
💎 |
gem stone |
:gem: |
@@ -9816,6 +10629,7 @@ Emoji Catalog
|
|
|
+ - |
💏 |
kiss |
:couplekiss: |
@@ -9828,6 +10642,7 @@ Emoji Catalog
|
|
|
+ |
💐 |
bouquet |
:bouquet: |
@@ -9840,6 +10655,7 @@ Emoji Catalog
|
|
|
+ - |
💑 |
couple with heart |
:couple_with_heart: |
@@ -9852,6 +10668,7 @@ Emoji Catalog
|
|
|
+ |
💒 |
wedding |
:wedding: |
@@ -9864,6 +10681,7 @@ Emoji Catalog
|
|
|
+ |
💓 |
beating heart |
:heartbeat: |
@@ -9876,6 +10694,7 @@ Emoji Catalog
|
|
|
+ |
💔 |
broken heart |
:broken_heart: |
@@ -9888,6 +10707,7 @@ Emoji Catalog
|
|
|
+ |
💕 |
two hearts |
:two_hearts: |
@@ -9900,6 +10720,7 @@ Emoji Catalog
|
|
|
+ |
💖 |
sparkling heart |
:sparkling_heart: |
@@ -9912,6 +10733,7 @@ Emoji Catalog
|
|
|
+ |
💗 |
growing heart |
:heartpulse: |
@@ -9924,6 +10746,7 @@ Emoji Catalog
|
|
|
+ |
💘 |
heart with arrow |
:cupid: |
@@ -9936,6 +10759,7 @@ Emoji Catalog
|
|
|
+ |
💙 |
blue heart |
:blue_heart: |
@@ -9948,6 +10772,7 @@ Emoji Catalog
|
|
|
+ |
💚 |
green heart |
:green_heart: |
@@ -9960,6 +10785,7 @@ Emoji Catalog
|
|
|
+ |
💛 |
yellow heart |
:yellow_heart: |
@@ -9972,6 +10798,7 @@ Emoji Catalog
|
|
|
+ |
💜 |
purple heart |
:purple_heart: |
@@ -9984,6 +10811,7 @@ Emoji Catalog
|
|
|
+ |
💝 |
heart with ribbon |
:gift_heart: |
@@ -9996,6 +10824,7 @@ Emoji Catalog
|
|
|
+ |
💞 |
revolving hearts |
:revolving_hearts: |
@@ -10008,6 +10837,7 @@ Emoji Catalog
|
|
|
+ |
💟 |
heart decoration |
:heart_decoration: |
@@ -10020,6 +10850,7 @@ Emoji Catalog
|
|
|
+ |
💠 |
diamond shape with a dot inside |
:diamond_shape_with_a_dot_inside: |
@@ -10032,6 +10863,7 @@ Emoji Catalog
|
|
|
+ |
💡 |
electric light bulb |
:bulb: |
@@ -10044,6 +10876,7 @@ Emoji Catalog
|
|
|
+ |
💢 |
anger symbol |
:anger: |
@@ -10056,6 +10889,7 @@ Emoji Catalog
|
|
|
+ |
💣 |
bomb |
:bomb: |
@@ -10068,6 +10902,7 @@ Emoji Catalog
|
|
|
+ |
💤 |
sleeping symbol |
:zzz: |
@@ -10080,6 +10915,7 @@ Emoji Catalog
|
|
|
+ |
💥 |
collision symbol |
:boom: |
@@ -10092,6 +10928,7 @@ Emoji Catalog
|
|
|
+ |
💦 |
splashing sweat symbol |
:sweat_drops: |
@@ -10104,6 +10941,7 @@ Emoji Catalog
|
|
|
+ |
💧 |
droplet |
:droplet: |
@@ -10116,6 +10954,7 @@ Emoji Catalog
|
|
|
+ |
💨 |
dash symbol |
:dash: |
@@ -10128,6 +10967,7 @@ Emoji Catalog
|
|
|
+ |
💩 |
pile of poo |
:hankey: |
@@ -10140,6 +10980,7 @@ Emoji Catalog
|
|
|
+ |
💪 |
flexed biceps |
:muscle: |
@@ -10152,6 +10993,7 @@ Emoji Catalog
|
|
|
+ |
💫 |
dizzy symbol |
:dizzy: |
@@ -10164,6 +11006,7 @@ Emoji Catalog
|
|
|
+ |
💬 |
speech balloon |
:speech_balloon: |
@@ -10176,6 +11019,7 @@ Emoji Catalog
|
|
|
+ |
💭 |
thought balloon |
:thought_balloon: |
@@ -10188,6 +11032,7 @@ Emoji Catalog
|
|
|
+ |
💮 |
white flower |
:white_flower: |
@@ -10200,6 +11045,7 @@ Emoji Catalog
|
|
|
+ |
💯 |
hundred points symbol |
:100: |
@@ -10212,6 +11058,7 @@ Emoji Catalog
|
|
|
+ |
💰 |
money bag |
:moneybag: |
@@ -10224,6 +11071,7 @@ Emoji Catalog
|
|
|
+ |
💱 |
currency exchange |
:currency_exchange: |
@@ -10236,6 +11084,7 @@ Emoji Catalog
|
|
|
+ |
💲 |
heavy dollar sign |
:heavy_dollar_sign: |
@@ -10248,6 +11097,7 @@ Emoji Catalog
|
|
|
+ |
💳 |
credit card |
:credit_card: |
@@ -10260,6 +11110,7 @@ Emoji Catalog
|
|
|
+ |
💴 |
banknote with yen sign |
:yen: |
@@ -10272,6 +11123,7 @@ Emoji Catalog
|
|
|
+ |
💵 |
banknote with dollar sign |
:dollar: |
@@ -10284,6 +11136,7 @@ Emoji Catalog
|
|
|
+ |
💶 |
banknote with euro sign |
:euro: |
@@ -10296,6 +11149,7 @@ Emoji Catalog
|
|
|
+ |
💷 |
banknote with pound sign |
:pound: |
@@ -10308,6 +11162,7 @@ Emoji Catalog
|
|
|
+ |
💸 |
money with wings |
:money_with_wings: |
@@ -10320,6 +11175,7 @@ Emoji Catalog
|
|
|
+ |
💹 |
chart with upwards trend and yen sign |
:chart: |
@@ -10332,6 +11188,7 @@ Emoji Catalog
|
|
|
+ |
💺 |
seat |
:seat: |
@@ -10344,6 +11201,7 @@ Emoji Catalog
|
|
|
+ |
💻 |
personal computer |
:computer: |
@@ -10356,6 +11214,7 @@ Emoji Catalog
|
|
|
+ |
💼 |
briefcase |
:briefcase: |
@@ -10368,6 +11227,7 @@ Emoji Catalog
|
|
|
+ |
💽 |
minidisc |
:minidisc: |
@@ -10380,6 +11240,7 @@ Emoji Catalog
|
|
|
+ |
💾 |
floppy disk |
:floppy_disk: |
@@ -10392,6 +11253,7 @@ Emoji Catalog
|
|
|
+ |
💿 |
optical disc |
:cd: |
@@ -10404,6 +11266,7 @@ Emoji Catalog
|
|
|
+ |
📀 |
dvd |
:dvd: |
@@ -10416,6 +11279,7 @@ Emoji Catalog
|
|
|
+ |
📁 |
file folder |
:file_folder: |
@@ -10428,6 +11292,7 @@ Emoji Catalog
|
|
|
+ |
📂 |
open file folder |
:open_file_folder: |
@@ -10440,6 +11305,7 @@ Emoji Catalog
|
|
|
+ |
📃 |
page with curl |
:page_with_curl: |
@@ -10452,6 +11318,7 @@ Emoji Catalog
|
|
|
+ |
📄 |
page facing up |
:page_facing_up: |
@@ -10464,6 +11331,7 @@ Emoji Catalog
|
|
|
+ |
📅 |
calendar |
:date: |
@@ -10476,6 +11344,7 @@ Emoji Catalog
|
|
|
+ |
📆 |
tear-off calendar |
:calendar: |
@@ -10488,6 +11357,7 @@ Emoji Catalog
|
|
|
+ |
📇 |
card index |
:card_index: |
@@ -10500,6 +11370,7 @@ Emoji Catalog
|
|
|
+ |
📈 |
chart with upwards trend |
:chart_with_upwards_trend: |
@@ -10512,6 +11383,7 @@ Emoji Catalog
|
|
|
+ |
📉 |
chart with downwards trend |
:chart_with_downwards_trend: |
@@ -10524,6 +11396,7 @@ Emoji Catalog
|
|
|
+ |
📊 |
bar chart |
:bar_chart: |
@@ -10536,6 +11409,7 @@ Emoji Catalog
|
|
|
+ |
📋 |
clipboard |
:clipboard: |
@@ -10548,6 +11422,7 @@ Emoji Catalog
|
|
|
+ |
📌 |
pushpin |
:pushpin: |
@@ -10560,6 +11435,7 @@ Emoji Catalog
|
|
|
+ |
📍 |
round pushpin |
:round_pushpin: |
@@ -10572,6 +11448,7 @@ Emoji Catalog
|
|
|
+ - |
📎 |
paperclip |
:paperclip: |
@@ -10584,6 +11461,7 @@ Emoji Catalog
|
|
|
+ |
📏 |
straight ruler |
:straight_ruler: |
@@ -10596,6 +11474,7 @@ Emoji Catalog
|
|
|
+ |
📐 |
triangular ruler |
:triangular_ruler: |
@@ -10608,6 +11487,7 @@ Emoji Catalog
|
|
|
+ |
📑 |
bookmark tabs |
:bookmark_tabs: |
@@ -10620,6 +11500,7 @@ Emoji Catalog
|
|
|
+ |
📒 |
ledger |
:ledger: |
@@ -10632,6 +11513,7 @@ Emoji Catalog
|
|
|
+ |
📓 |
notebook |
:notebook: |
@@ -10644,6 +11526,7 @@ Emoji Catalog
|
|
|
+ |
📔 |
notebook with decorative cover |
:notebook_with_decorative_cover: |
@@ -10656,6 +11539,7 @@ Emoji Catalog
|
|
|
+ |
📕 |
closed book |
:closed_book: |
@@ -10668,6 +11552,7 @@ Emoji Catalog
|
|
|
+ |
📖 |
open book |
:book: |
@@ -10680,6 +11565,7 @@ Emoji Catalog
|
|
|
+ |
📗 |
green book |
:green_book: |
@@ -10692,6 +11578,7 @@ Emoji Catalog
|
|
|
+ |
📘 |
blue book |
:blue_book: |
@@ -10704,6 +11591,7 @@ Emoji Catalog
|
|
|
+ |
📙 |
orange book |
:orange_book: |
@@ -10716,6 +11604,7 @@ Emoji Catalog
|
|
|
+ |
📚 |
books |
:books: |
@@ -10728,6 +11617,7 @@ Emoji Catalog
|
|
|
+ |
📛 |
name badge |
:name_badge: |
@@ -10740,6 +11630,7 @@ Emoji Catalog
|
|
|
+ |
📜 |
scroll |
:scroll: |
@@ -10752,6 +11643,7 @@ Emoji Catalog
|
|
|
+ |
📝 |
memo |
:memo: |
@@ -10764,6 +11656,7 @@ Emoji Catalog
|
|
|
+ |
📞 |
telephone receiver |
:telephone_receiver: |
@@ -10776,6 +11669,7 @@ Emoji Catalog
|
|
|
+ |
📟 |
pager |
:pager: |
@@ -10788,6 +11682,7 @@ Emoji Catalog
|
|
|
+ |
📠 |
fax machine |
:fax: |
@@ -10800,6 +11695,7 @@ Emoji Catalog
|
|
|
+ |
📡 |
satellite antenna |
:satellite_antenna: |
@@ -10812,6 +11708,7 @@ Emoji Catalog
|
|
|
+ |
📢 |
public address loudspeaker |
:loudspeaker: |
@@ -10824,6 +11721,7 @@ Emoji Catalog
|
|
|
+ |
📣 |
cheering megaphone |
:mega: |
@@ -10836,6 +11734,7 @@ Emoji Catalog
|
|
|
+ |
📤 |
outbox tray |
:outbox_tray: |
@@ -10848,6 +11747,7 @@ Emoji Catalog
|
|
|
+ |
📥 |
inbox tray |
:inbox_tray: |
@@ -10860,6 +11760,7 @@ Emoji Catalog
|
|
|
+ |
📦 |
package |
:package: |
@@ -10872,6 +11773,7 @@ Emoji Catalog
|
|
|
+ |
📧 |
e-mail symbol |
:e-mail: |
@@ -10884,6 +11786,7 @@ Emoji Catalog
|
|
|
+ |
📨 |
incoming envelope |
:incoming_envelope: |
@@ -10896,6 +11799,7 @@ Emoji Catalog
|
|
|
+ |
📩 |
envelope with downwards arrow above |
:envelope_with_arrow: |
@@ -10908,6 +11812,7 @@ Emoji Catalog
|
|
|
+ |
📪 |
closed mailbox with lowered flag |
:mailbox_closed: |
@@ -10920,6 +11825,7 @@ Emoji Catalog
|
|
|
+ |
📫 |
closed mailbox with raised flag |
:mailbox: |
@@ -10932,6 +11838,7 @@ Emoji Catalog
|
|
|
+ |
📬 |
open mailbox with raised flag |
:mailbox_with_mail: |
@@ -10944,6 +11851,7 @@ Emoji Catalog
|
|
|
+ |
📭 |
open mailbox with lowered flag |
:mailbox_with_no_mail: |
@@ -10956,6 +11864,7 @@ Emoji Catalog
|
|
|
+ |
📮 |
postbox |
:postbox: |
@@ -10968,6 +11877,7 @@ Emoji Catalog
|
|
|
+ |
📯 |
postal horn |
:postal_horn: |
@@ -10980,6 +11890,7 @@ Emoji Catalog
|
|
|
+ |
📰 |
newspaper |
:newspaper: |
@@ -10992,6 +11903,7 @@ Emoji Catalog
|
|
|
+ |
📱 |
mobile phone |
:iphone: |
@@ -11004,6 +11916,7 @@ Emoji Catalog
|
|
|
+ |
📲 |
mobile phone with rightwards arrow at left |
:calling: |
@@ -11016,6 +11929,7 @@ Emoji Catalog
|
|
|
+ |
📳 |
vibration mode |
:vibration_mode: |
@@ -11028,6 +11942,7 @@ Emoji Catalog
|
|
|
+ |
📴 |
mobile phone off |
:mobile_phone_off: |
@@ -11040,6 +11955,7 @@ Emoji Catalog
|
|
|
+ |
📵 |
no mobile phones |
:no_mobile_phones: |
@@ -11052,6 +11968,7 @@ Emoji Catalog
|
|
|
+ |
📶 |
antenna with bars |
:signal_strength: |
@@ -11064,6 +11981,7 @@ Emoji Catalog
|
|
|
+ |
📷 |
camera |
:camera: |
@@ -11076,6 +11994,7 @@ Emoji Catalog
|
|
|
+ |
📸 |
camera with flash |
:camera_with_flash: |
@@ -11088,6 +12007,7 @@ Emoji Catalog
|
|
|
+ |
📹 |
video camera |
:video_camera: |
@@ -11100,6 +12020,7 @@ Emoji Catalog
|
|
|
+ |
📺 |
television |
:tv: |
@@ -11112,6 +12033,7 @@ Emoji Catalog
|
|
|
+ |
📻 |
radio |
:radio: |
@@ -11124,6 +12046,7 @@ Emoji Catalog
|
|
|
+ |
📼 |
videocassette |
:vhs: |
@@ -11136,6 +12059,7 @@ Emoji Catalog
|
|
|
+ |
📽️ |
film projector |
:film_projector: |
@@ -11148,6 +12072,7 @@ Emoji Catalog
|
|
|
+ |
📿 |
prayer beads |
:prayer_beads: |
@@ -11160,6 +12085,7 @@ Emoji Catalog
|
|
|
+ |
🔀 |
twisted rightwards arrows |
:twisted_rightwards_arrows: |
@@ -11172,6 +12098,7 @@ Emoji Catalog
|
|
|
+ |
🔁 |
clockwise rightwards and leftwards open circle arrows |
:repeat: |
@@ -11184,6 +12111,7 @@ Emoji Catalog
|
|
|
+ |
🔂 |
clockwise rightwards and leftwards open circle arrows with circled one overlay |
:repeat_one: |
@@ -11196,6 +12124,7 @@ Emoji Catalog
|
|
|
+ |
🔃 |
clockwise downwards and upwards open circle arrows |
:arrows_clockwise: |
@@ -11208,6 +12137,7 @@ Emoji Catalog
|
|
|
+ |
🔄 |
anticlockwise downwards and upwards open circle arrows |
:arrows_counterclockwise: |
@@ -11220,6 +12150,7 @@ Emoji Catalog
|
|
|
+ |
🔅 |
low brightness symbol |
:low_brightness: |
@@ -11232,6 +12163,7 @@ Emoji Catalog
|
|
|
+ |
🔆 |
high brightness symbol |
:high_brightness: |
@@ -11244,6 +12176,7 @@ Emoji Catalog
|
|
|
+ |
🔇 |
speaker with cancellation stroke |
:mute: |
@@ -11256,6 +12189,7 @@ Emoji Catalog
|
|
|
+ |
🔈 |
speaker |
:speaker: |
@@ -11268,6 +12202,7 @@ Emoji Catalog
|
|
|
+ |
🔉 |
speaker with one sound wave |
:sound: |
@@ -11280,6 +12215,7 @@ Emoji Catalog
|
|
|
+ |
🔊 |
speaker with three sound waves |
:loud_sound: |
@@ -11292,6 +12228,7 @@ Emoji Catalog
|
|
|
+ |
🔋 |
battery |
:battery: |
@@ -11304,6 +12241,7 @@ Emoji Catalog
|
|
|
+ |
🔌 |
electric plug |
:electric_plug: |
@@ -11316,6 +12254,7 @@ Emoji Catalog
|
|
|
+ |
🔍 |
left-pointing magnifying glass |
:mag: |
@@ -11328,6 +12267,7 @@ Emoji Catalog
|
|
|
+ |
🔎 |
right-pointing magnifying glass |
:mag_right: |
@@ -11340,6 +12280,7 @@ Emoji Catalog
|
|
|
+ |
🔏 |
lock with ink pen |
:lock_with_ink_pen: |
@@ -11352,6 +12293,7 @@ Emoji Catalog
|
|
|
+ |
🔐 |
closed lock with key |
:closed_lock_with_key: |
@@ -11364,6 +12306,7 @@ Emoji Catalog
|
|
|
+ |
🔑 |
key |
:key: |
@@ -11376,6 +12319,7 @@ Emoji Catalog
|
|
|
+ |
🔒 |
lock |
:lock: |
@@ -11388,6 +12332,7 @@ Emoji Catalog
|
|
|
+ |
🔓 |
open lock |
:unlock: |
@@ -11400,6 +12345,7 @@ Emoji Catalog
|
|
|
+ |
🔔 |
bell |
:bell: |
@@ -11412,6 +12358,7 @@ Emoji Catalog
|
|
|
+ |
🔕 |
bell with cancellation stroke |
:no_bell: |
@@ -11424,6 +12371,7 @@ Emoji Catalog
|
|
|
+ |
🔖 |
bookmark |
:bookmark: |
@@ -11436,6 +12384,7 @@ Emoji Catalog
|
|
|
+ |
🔗 |
link symbol |
:link: |
@@ -11448,6 +12397,7 @@ Emoji Catalog
|
|
|
+ |
🔘 |
radio button |
:radio_button: |
@@ -11460,6 +12410,7 @@ Emoji Catalog
|
|
|
+ |
🔙 |
back with leftwards arrow above |
:back: |
@@ -11472,6 +12423,7 @@ Emoji Catalog
|
|
|
+ |
🔚 |
end with leftwards arrow above |
:end: |
@@ -11484,6 +12436,7 @@ Emoji Catalog
|
|
|
+ |
🔛 |
on with exclamation mark with left right arrow above |
:on: |
@@ -11496,6 +12449,7 @@ Emoji Catalog
|
|
|
+ |
🔜 |
soon with rightwards arrow above |
:soon: |
@@ -11508,6 +12462,7 @@ Emoji Catalog
|
|
|
+ |
🔝 |
top with upwards arrow above |
:top: |
@@ -11520,6 +12475,7 @@ Emoji Catalog
|
|
|
+ |
🔞 |
no one under eighteen symbol |
:underage: |
@@ -11532,6 +12488,7 @@ Emoji Catalog
|
|
|
+ |
🔟 |
keycap ten |
:keycap_ten: |
@@ -11544,6 +12501,7 @@ Emoji Catalog
|
|
|
+ |
🔠 |
input symbol for latin capital letters |
:capital_abcd: |
@@ -11556,6 +12514,7 @@ Emoji Catalog
|
|
|
+ |
🔡 |
input symbol for latin small letters |
:abcd: |
@@ -11568,6 +12527,7 @@ Emoji Catalog
|
|
|
+ |
🔢 |
input symbol for numbers |
:1234: |
@@ -11580,6 +12540,7 @@ Emoji Catalog
|
|
|
+ |
🔣 |
input symbol for symbols |
:symbols: |
@@ -11592,6 +12553,7 @@ Emoji Catalog
|
|
|
+ |
🔤 |
input symbol for latin letters |
:abc: |
@@ -11604,6 +12566,7 @@ Emoji Catalog
|
|
|
+ |
🔥 |
fire |
:fire: |
@@ -11616,6 +12579,7 @@ Emoji Catalog
|
|
|
+ |
🔦 |
electric torch |
:flashlight: |
@@ -11628,6 +12592,7 @@ Emoji Catalog
|
|
|
+ |
🔧 |
wrench |
:wrench: |
@@ -11640,6 +12605,7 @@ Emoji Catalog
|
|
|
+ |
🔨 |
hammer |
:hammer: |
@@ -11652,6 +12618,7 @@ Emoji Catalog
|
|
|
+ |
🔩 |
nut and bolt |
:nut_and_bolt: |
@@ -11664,6 +12631,7 @@ Emoji Catalog
|
|
|
+ |
🔪 |
hocho |
:hocho: |
@@ -11676,6 +12644,7 @@ Emoji Catalog
|
|
|
+ |
🔫 |
pistol |
:gun: |
@@ -11688,6 +12657,7 @@ Emoji Catalog
|
|
|
+ |
🔬 |
microscope |
:microscope: |
@@ -11700,6 +12670,7 @@ Emoji Catalog
|
|
|
+ |
🔭 |
telescope |
:telescope: |
@@ -11712,6 +12683,7 @@ Emoji Catalog
|
|
|
+ |
🔮 |
crystal ball |
:crystal_ball: |
@@ -11724,6 +12696,7 @@ Emoji Catalog
|
|
|
+ |
🔯 |
six pointed star with middle dot |
:six_pointed_star: |
@@ -11736,6 +12709,7 @@ Emoji Catalog
|
|
|
+ |
🔰 |
japanese symbol for beginner |
:beginner: |
@@ -11748,6 +12722,7 @@ Emoji Catalog
|
|
|
+ |
🔱 |
trident emblem |
:trident: |
@@ -11760,6 +12735,7 @@ Emoji Catalog
|
|
|
+ |
🔲 |
black square button |
:black_square_button: |
@@ -11772,6 +12748,7 @@ Emoji Catalog
|
|
|
+ |
🔳 |
white square button |
:white_square_button: |
@@ -11784,6 +12761,7 @@ Emoji Catalog
|
|
|
+ |
🔴 |
large red circle |
:red_circle: |
@@ -11796,6 +12774,7 @@ Emoji Catalog
|
|
|
+ |
🔵 |
large blue circle |
:large_blue_circle: |
@@ -11808,6 +12787,7 @@ Emoji Catalog
|
|
|
+ |
🔶 |
large orange diamond |
:large_orange_diamond: |
@@ -11820,6 +12800,7 @@ Emoji Catalog
|
|
|
+ |
🔷 |
large blue diamond |
:large_blue_diamond: |
@@ -11832,6 +12813,7 @@ Emoji Catalog
|
|
|
+ |
🔸 |
small orange diamond |
:small_orange_diamond: |
@@ -11844,6 +12826,7 @@ Emoji Catalog
|
|
|
+ |
🔹 |
small blue diamond |
:small_blue_diamond: |
@@ -11856,6 +12839,7 @@ Emoji Catalog
|
|
|
+ |
🔺 |
up-pointing red triangle |
:small_red_triangle: |
@@ -11868,6 +12852,7 @@ Emoji Catalog
|
|
|
+ |
🔻 |
down-pointing red triangle |
:small_red_triangle_down: |
@@ -11880,6 +12865,7 @@ Emoji Catalog
|
|
|
+ |
🔼 |
up-pointing small red triangle |
:arrow_up_small: |
@@ -11892,6 +12878,7 @@ Emoji Catalog
|
|
|
+ |
🔽 |
down-pointing small red triangle |
:arrow_down_small: |
@@ -11904,6 +12891,7 @@ Emoji Catalog
|
|
|
+ |
🕉️ |
om |
:om_symbol: |
@@ -11916,6 +12904,7 @@ Emoji Catalog
|
|
|
+ |
🕊️ |
dove |
:dove_of_peace: |
@@ -11928,6 +12917,7 @@ Emoji Catalog
|
|
|
+ |
🕋 |
kaaba |
:kaaba: |
@@ -11940,6 +12930,7 @@ Emoji Catalog
|
|
|
+ |
🕌 |
mosque |
:mosque: |
@@ -11952,6 +12943,7 @@ Emoji Catalog
|
|
|
+ |
🕍 |
synagogue |
:synagogue: |
@@ -11964,6 +12956,7 @@ Emoji Catalog
|
|
|
+ |
🕎 |
menorah with nine branches |
:menorah_with_nine_branches: |
@@ -11976,6 +12969,7 @@ Emoji Catalog
|
|
|
+ |
🕐 |
clock face one oclock |
:clock1: |
@@ -11988,6 +12982,7 @@ Emoji Catalog
|
|
|
+ |
🕑 |
clock face two oclock |
:clock2: |
@@ -12000,6 +12995,7 @@ Emoji Catalog
|
|
|
+ |
🕒 |
clock face three oclock |
:clock3: |
@@ -12012,6 +13008,7 @@ Emoji Catalog
|
|
|
+ |
🕓 |
clock face four oclock |
:clock4: |
@@ -12024,6 +13021,7 @@ Emoji Catalog
|
|
|
+ |
🕔 |
clock face five oclock |
:clock5: |
@@ -12036,6 +13034,7 @@ Emoji Catalog
|
|
|
+ |
🕕 |
clock face six oclock |
:clock6: |
@@ -12048,6 +13047,7 @@ Emoji Catalog
|
|
|
+ |
🕖 |
clock face seven oclock |
:clock7: |
@@ -12060,6 +13060,7 @@ Emoji Catalog
|
|
|
+ |
🕗 |
clock face eight oclock |
:clock8: |
@@ -12072,6 +13073,7 @@ Emoji Catalog
|
|
|
+ |
🕘 |
clock face nine oclock |
:clock9: |
@@ -12084,6 +13086,7 @@ Emoji Catalog
|
|
|
+ |
🕙 |
clock face ten oclock |
:clock10: |
@@ -12096,6 +13099,7 @@ Emoji Catalog
|
|
|
+ |
🕚 |
clock face eleven oclock |
:clock11: |
@@ -12108,6 +13112,7 @@ Emoji Catalog
|
|
|
+ |
🕛 |
clock face twelve oclock |
:clock12: |
@@ -12120,6 +13125,7 @@ Emoji Catalog
|
|
|
+ |
🕜 |
clock face one-thirty |
:clock130: |
@@ -12132,6 +13138,7 @@ Emoji Catalog
|
|
|
+ |
🕝 |
clock face two-thirty |
:clock230: |
@@ -12144,6 +13151,7 @@ Emoji Catalog
|
|
|
+ |
🕞 |
clock face three-thirty |
:clock330: |
@@ -12156,6 +13164,7 @@ Emoji Catalog
|
|
|
+ |
🕟 |
clock face four-thirty |
:clock430: |
@@ -12168,6 +13177,7 @@ Emoji Catalog
|
|
|
+ |
🕠 |
clock face five-thirty |
:clock530: |
@@ -12180,6 +13190,7 @@ Emoji Catalog
|
|
|
+ |
🕡 |
clock face six-thirty |
:clock630: |
@@ -12192,6 +13203,7 @@ Emoji Catalog
|
|
|
+ |
🕢 |
clock face seven-thirty |
:clock730: |
@@ -12204,6 +13216,7 @@ Emoji Catalog
|
|
|
+ |
🕣 |
clock face eight-thirty |
:clock830: |
@@ -12216,6 +13229,7 @@ Emoji Catalog
|
|
|
+ |
🕤 |
clock face nine-thirty |
:clock930: |
@@ -12228,6 +13242,7 @@ Emoji Catalog
|
|
|
+ |
🕥 |
clock face ten-thirty |
:clock1030: |
@@ -12240,6 +13255,7 @@ Emoji Catalog
|
|
|
+ |
🕦 |
clock face eleven-thirty |
:clock1130: |
@@ -12252,6 +13268,7 @@ Emoji Catalog
|
|
|
+ |
🕧 |
clock face twelve-thirty |
:clock1230: |
@@ -12264,6 +13281,7 @@ Emoji Catalog
|
|
|
+ |
🕯️ |
candle |
:candle: |
@@ -12276,6 +13294,7 @@ Emoji Catalog
|
|
|
+ |
🕰️ |
mantelpiece clock |
:mantelpiece_clock: |
@@ -12288,6 +13307,7 @@ Emoji Catalog
|
|
|
+ |
🕳️ |
hole |
:hole: |
@@ -12300,6 +13320,7 @@ Emoji Catalog
|
|
|
+ |
🕴️ |
person in suit levitating |
:man_in_business_suit_levitating: |
@@ -12312,6 +13333,7 @@ Emoji Catalog
|
|
- |
+ |
🕵️♀️ |
woman detective |
:female-detective: |
@@ -12324,6 +13346,7 @@ Emoji Catalog
|
|
- |
+ |
🕵️♂️ |
man detective |
:male-detective: |
@@ -12336,6 +13359,7 @@ Emoji Catalog
|
|
|
+ |
🕵️ |
detective |
:sleuth_or_spy: |
@@ -12348,6 +13372,7 @@ Emoji Catalog
|
|
|
+ |
🕶️ |
sunglasses |
:dark_sunglasses: |
@@ -12360,6 +13385,7 @@ Emoji Catalog
|
|
|
+ |
🕷️ |
spider |
:spider: |
@@ -12372,6 +13398,7 @@ Emoji Catalog
|
|
|
+ |
🕸️ |
spider web |
:spider_web: |
@@ -12384,6 +13411,7 @@ Emoji Catalog
|
|
|
+ |
🕹️ |
joystick |
:joystick: |
@@ -12396,6 +13424,7 @@ Emoji Catalog
|
|
|
+ |
🕺 |
man dancing |
:man_dancing: |
@@ -12408,6 +13437,7 @@ Emoji Catalog
|
|
|
+ |
🖇️ |
linked paperclips |
:linked_paperclips: |
@@ -12420,6 +13450,7 @@ Emoji Catalog
|
|
|
+ |
🖊️ |
pen |
:lower_left_ballpoint_pen: |
@@ -12432,6 +13463,7 @@ Emoji Catalog
|
|
|
+ |
🖋️ |
fountain pen |
:lower_left_fountain_pen: |
@@ -12444,6 +13476,7 @@ Emoji Catalog
|
|
|
+ |
🖌️ |
paintbrush |
:lower_left_paintbrush: |
@@ -12456,6 +13489,7 @@ Emoji Catalog
|
|
|
+ |
🖍️ |
crayon |
:lower_left_crayon: |
@@ -12468,6 +13502,7 @@ Emoji Catalog
|
|
|
+ |
🖐️ |
hand with fingers splayed |
:raised_hand_with_fingers_splayed: |
@@ -12480,6 +13515,7 @@ Emoji Catalog
|
|
|
+ |
🖕 |
reversed hand with middle finger extended |
:middle_finger: |
@@ -12492,6 +13528,7 @@ Emoji Catalog
|
|
|
+ |
🖖 |
raised hand with part between middle and ring fingers |
:spock-hand: |
@@ -12504,6 +13541,7 @@ Emoji Catalog
|
|
|
+ |
🖤 |
black heart |
:black_heart: |
@@ -12516,6 +13554,7 @@ Emoji Catalog
|
|
|
+ |
🖥️ |
desktop computer |
:desktop_computer: |
@@ -12528,6 +13567,7 @@ Emoji Catalog
|
|
|
+ |
🖨️ |
printer |
:printer: |
@@ -12540,6 +13580,7 @@ Emoji Catalog
|
|
|
+ |
🖱️ |
computer mouse |
:three_button_mouse: |
@@ -12552,6 +13593,7 @@ Emoji Catalog
|
|
|
+ |
🖲️ |
trackball |
:trackball: |
@@ -12564,6 +13606,7 @@ Emoji Catalog
|
|
|
+ |
🖼️ |
framed picture |
:frame_with_picture: |
@@ -12576,6 +13619,7 @@ Emoji Catalog
|
|
|
+ |
🗂️ |
card index dividers |
:card_index_dividers: |
@@ -12588,6 +13632,7 @@ Emoji Catalog
|
|
|
+ |
🗃️ |
card file box |
:card_file_box: |
@@ -12600,6 +13645,7 @@ Emoji Catalog
|
|
|
+ |
🗄️ |
file cabinet |
:file_cabinet: |
@@ -12612,6 +13658,7 @@ Emoji Catalog
|
|
|
+ |
🗑️ |
wastebasket |
:wastebasket: |
@@ -12624,6 +13671,7 @@ Emoji Catalog
|
|
|
+ |
🗒️ |
spiral notepad |
:spiral_note_pad: |
@@ -12636,6 +13684,7 @@ Emoji Catalog
|
|
|
+ |
🗓️ |
spiral calendar |
:spiral_calendar_pad: |
@@ -12648,6 +13697,7 @@ Emoji Catalog
|
|
|
+ |
🗜️ |
clamp |
:compression: |
@@ -12660,6 +13710,7 @@ Emoji Catalog
|
|
|
+ |
🗝️ |
old key |
:old_key: |
@@ -12672,6 +13723,7 @@ Emoji Catalog
|
|
|
+ |
🗞️ |
rolled-up newspaper |
:rolled_up_newspaper: |
@@ -12684,6 +13736,7 @@ Emoji Catalog
|
|
|
+ |
🗡️ |
dagger |
:dagger_knife: |
@@ -12696,6 +13749,7 @@ Emoji Catalog
|
|
|
+ |
🗣️ |
speaking head |
:speaking_head_in_silhouette: |
@@ -12708,6 +13762,7 @@ Emoji Catalog
|
|
|
+ |
🗨️ |
left speech bubble |
:left_speech_bubble: |
@@ -12720,6 +13775,7 @@ Emoji Catalog
|
|
|
+ |
🗯️ |
right anger bubble |
:right_anger_bubble: |
@@ -12732,6 +13788,7 @@ Emoji Catalog
|
|
|
+ |
🗳️ |
ballot box with ballot |
:ballot_box_with_ballot: |
@@ -12744,6 +13801,7 @@ Emoji Catalog
|
|
|
+ |
🗺️ |
world map |
:world_map: |
@@ -12756,6 +13814,7 @@ Emoji Catalog
|
|
|
+ |
🗻 |
mount fuji |
:mount_fuji: |
@@ -12768,6 +13827,7 @@ Emoji Catalog
|
|
|
+ |
🗼 |
tokyo tower |
:tokyo_tower: |
@@ -12780,6 +13840,7 @@ Emoji Catalog
|
|
|
+ |
🗽 |
statue of liberty |
:statue_of_liberty: |
@@ -12792,6 +13853,7 @@ Emoji Catalog
|
|
|
+ |
🗾 |
silhouette of japan |
:japan: |
@@ -12804,6 +13866,7 @@ Emoji Catalog
|
|
|
+ |
🗿 |
moyai |
:moyai: |
@@ -12816,6 +13879,7 @@ Emoji Catalog
|
|
|
+ |
😀 |
grinning face |
:grinning: |
@@ -12828,6 +13892,7 @@ Emoji Catalog
|
|
|
+ |
😁 |
grinning face with smiling eyes |
:grin: |
@@ -12840,6 +13905,7 @@ Emoji Catalog
|
|
|
+ |
😂 |
face with tears of joy |
:joy: |
@@ -12852,6 +13918,7 @@ Emoji Catalog
|
|
|
+ |
😃 |
smiling face with open mouth |
:smiley: |
@@ -12864,6 +13931,7 @@ Emoji Catalog
|
|
|
+ |
😄 |
smiling face with open mouth and smiling eyes |
:smile: |
@@ -12876,6 +13944,7 @@ Emoji Catalog
|
|
|
+ |
😅 |
smiling face with open mouth and cold sweat |
:sweat_smile: |
@@ -12888,6 +13957,7 @@ Emoji Catalog
|
|
|
+ |
😆 |
smiling face with open mouth and tightly-closed eyes |
:laughing: |
@@ -12900,6 +13970,7 @@ Emoji Catalog
|
|
|
+ |
😇 |
smiling face with halo |
:innocent: |
@@ -12912,6 +13983,7 @@ Emoji Catalog
|
|
|
+ |
😈 |
smiling face with horns |
:smiling_imp: |
@@ -12924,6 +13996,7 @@ Emoji Catalog
|
|
|
+ |
😉 |
winking face |
:wink: |
@@ -12936,6 +14009,7 @@ Emoji Catalog
|
|
|
+ |
😊 |
smiling face with smiling eyes |
:blush: |
@@ -12948,6 +14022,7 @@ Emoji Catalog
|
|
|
+ |
😋 |
face savouring delicious food |
:yum: |
@@ -12960,6 +14035,7 @@ Emoji Catalog
|
|
|
+ |
😌 |
relieved face |
:relieved: |
@@ -12972,6 +14048,7 @@ Emoji Catalog
|
|
|
+ |
😍 |
smiling face with heart-shaped eyes |
:heart_eyes: |
@@ -12984,6 +14061,7 @@ Emoji Catalog
|
|
|
+ |
😎 |
smiling face with sunglasses |
:sunglasses: |
@@ -12996,6 +14074,7 @@ Emoji Catalog
|
|
|
+ |
😏 |
smirking face |
:smirk: |
@@ -13008,6 +14087,7 @@ Emoji Catalog
|
|
|
+ |
😐 |
neutral face |
:neutral_face: |
@@ -13020,6 +14100,7 @@ Emoji Catalog
|
|
|
+ |
😑 |
expressionless face |
:expressionless: |
@@ -13032,6 +14113,7 @@ Emoji Catalog
|
|
|
+ |
😒 |
unamused face |
:unamused: |
@@ -13044,6 +14126,7 @@ Emoji Catalog
|
|
|
+ |
😓 |
face with cold sweat |
:sweat: |
@@ -13056,6 +14139,7 @@ Emoji Catalog
|
|
|
+ |
😔 |
pensive face |
:pensive: |
@@ -13068,6 +14152,7 @@ Emoji Catalog
|
|
|
+ |
😕 |
confused face |
:confused: |
@@ -13080,6 +14165,7 @@ Emoji Catalog
|
|
|
+ |
😖 |
confounded face |
:confounded: |
@@ -13092,6 +14178,7 @@ Emoji Catalog
|
|
|
+ |
😗 |
kissing face |
:kissing: |
@@ -13104,6 +14191,7 @@ Emoji Catalog
|
|
|
+ |
😘 |
face throwing a kiss |
:kissing_heart: |
@@ -13116,6 +14204,7 @@ Emoji Catalog
|
|
|
+ |
😙 |
kissing face with smiling eyes |
:kissing_smiling_eyes: |
@@ -13128,6 +14217,7 @@ Emoji Catalog
|
|
|
+ |
😚 |
kissing face with closed eyes |
:kissing_closed_eyes: |
@@ -13140,6 +14230,7 @@ Emoji Catalog
|
|
|
+ |
😛 |
face with stuck-out tongue |
:stuck_out_tongue: |
@@ -13152,6 +14243,7 @@ Emoji Catalog
|
|
|
+ |
😜 |
face with stuck-out tongue and winking eye |
:stuck_out_tongue_winking_eye: |
@@ -13164,6 +14256,7 @@ Emoji Catalog
|
|
|
+ |
😝 |
face with stuck-out tongue and tightly-closed eyes |
:stuck_out_tongue_closed_eyes: |
@@ -13176,6 +14269,7 @@ Emoji Catalog
|
|
|
+ |
😞 |
disappointed face |
:disappointed: |
@@ -13188,6 +14282,7 @@ Emoji Catalog
|
|
|
+ |
😟 |
worried face |
:worried: |
@@ -13200,6 +14295,7 @@ Emoji Catalog
|
|
|
+ |
😠 |
angry face |
:angry: |
@@ -13212,6 +14308,7 @@ Emoji Catalog
|
|
|
+ |
😡 |
pouting face |
:rage: |
@@ -13224,6 +14321,7 @@ Emoji Catalog
|
|
|
+ |
😢 |
crying face |
:cry: |
@@ -13236,6 +14334,7 @@ Emoji Catalog
|
|
|
+ |
😣 |
persevering face |
:persevere: |
@@ -13248,6 +14347,7 @@ Emoji Catalog
|
|
|
+ |
😤 |
face with look of triumph |
:triumph: |
@@ -13260,6 +14360,7 @@ Emoji Catalog
|
|
|
+ |
😥 |
disappointed but relieved face |
:disappointed_relieved: |
@@ -13272,6 +14373,7 @@ Emoji Catalog
|
|
|
+ |
😦 |
frowning face with open mouth |
:frowning: |
@@ -13284,6 +14386,7 @@ Emoji Catalog
|
|
|
+ |
😧 |
anguished face |
:anguished: |
@@ -13296,6 +14399,7 @@ Emoji Catalog
|
|
|
+ |
😨 |
fearful face |
:fearful: |
@@ -13308,6 +14412,7 @@ Emoji Catalog
|
|
|
+ |
😩 |
weary face |
:weary: |
@@ -13320,6 +14425,7 @@ Emoji Catalog
|
|
|
+ |
😪 |
sleepy face |
:sleepy: |
@@ -13332,6 +14438,7 @@ Emoji Catalog
|
|
|
+ |
😫 |
tired face |
:tired_face: |
@@ -13344,6 +14451,7 @@ Emoji Catalog
|
|
|
+ |
😬 |
grimacing face |
:grimacing: |
@@ -13356,6 +14464,7 @@ Emoji Catalog
|
|
|
+ |
😭 |
loudly crying face |
:sob: |
@@ -13368,6 +14477,7 @@ Emoji Catalog
|
|
|
+ |
😮💨 |
face exhaling |
:face_exhaling: |
@@ -13380,6 +14490,7 @@ Emoji Catalog
|
|
|
+ |
😮 |
face with open mouth |
:open_mouth: |
@@ -13392,6 +14503,7 @@ Emoji Catalog
|
|
|
+ |
😯 |
hushed face |
:hushed: |
@@ -13404,6 +14516,7 @@ Emoji Catalog
|
|
|
+ |
😰 |
face with open mouth and cold sweat |
:cold_sweat: |
@@ -13416,6 +14529,7 @@ Emoji Catalog
|
|
|
+ |
😱 |
face screaming in fear |
:scream: |
@@ -13428,6 +14542,7 @@ Emoji Catalog
|
|
|
+ |
😲 |
astonished face |
:astonished: |
@@ -13440,6 +14555,7 @@ Emoji Catalog
|
|
|
+ |
😳 |
flushed face |
:flushed: |
@@ -13452,6 +14568,7 @@ Emoji Catalog
|
|
|
+ |
😴 |
sleeping face |
:sleeping: |
@@ -13464,6 +14581,7 @@ Emoji Catalog
|
|
|
+ |
😵💫 |
face with spiral eyes |
:face_with_spiral_eyes: |
@@ -13476,6 +14594,7 @@ Emoji Catalog
|
|
|
+ |
😵 |
dizzy face |
:dizzy_face: |
@@ -13488,6 +14607,7 @@ Emoji Catalog
|
|
|
+ |
😶🌫️ |
face in clouds |
:face_in_clouds: |
@@ -13500,6 +14620,7 @@ Emoji Catalog
|
|
|
+ |
😶 |
face without mouth |
:no_mouth: |
@@ -13512,6 +14633,7 @@ Emoji Catalog
|
|
|
+ |
😷 |
face with medical mask |
:mask: |
@@ -13524,6 +14646,7 @@ Emoji Catalog
|
|
|
+ |
😸 |
grinning cat face with smiling eyes |
:smile_cat: |
@@ -13536,6 +14659,7 @@ Emoji Catalog
|
|
|
+ |
😹 |
cat face with tears of joy |
:joy_cat: |
@@ -13548,6 +14672,7 @@ Emoji Catalog
|
|
|
+ |
😺 |
smiling cat face with open mouth |
:smiley_cat: |
@@ -13560,6 +14685,7 @@ Emoji Catalog
|
|
|
+ |
😻 |
smiling cat face with heart-shaped eyes |
:heart_eyes_cat: |
@@ -13572,6 +14698,7 @@ Emoji Catalog
|
|
|
+ |
😼 |
cat face with wry smile |
:smirk_cat: |
@@ -13584,6 +14711,7 @@ Emoji Catalog
|
|
|
+ |
😽 |
kissing cat face with closed eyes |
:kissing_cat: |
@@ -13596,6 +14724,7 @@ Emoji Catalog
|
|
|
+ |
😾 |
pouting cat face |
:pouting_cat: |
@@ -13608,6 +14737,7 @@ Emoji Catalog
|
|
|
+ |
😿 |
crying cat face |
:crying_cat_face: |
@@ -13620,6 +14750,7 @@ Emoji Catalog
|
|
|
+ |
🙀 |
weary cat face |
:scream_cat: |
@@ -13632,6 +14763,7 @@ Emoji Catalog
|
|
|
+ |
🙁 |
slightly frowning face |
:slightly_frowning_face: |
@@ -13644,6 +14776,7 @@ Emoji Catalog
|
|
|
+ |
🙂 |
slightly smiling face |
:slightly_smiling_face: |
@@ -13656,6 +14789,7 @@ Emoji Catalog
|
|
|
+ |
🙃 |
upside-down face |
:upside_down_face: |
@@ -13668,6 +14802,7 @@ Emoji Catalog
|
|
|
+ |
🙄 |
face with rolling eyes |
:face_with_rolling_eyes: |
@@ -13680,6 +14815,7 @@ Emoji Catalog
|
|
|
+ |
🙅♀️ |
woman gesturing no |
:woman-gesturing-no: |
@@ -13692,6 +14828,7 @@ Emoji Catalog
|
|
|
+ |
🙅♂️ |
man gesturing no |
:man-gesturing-no: |
@@ -13704,6 +14841,7 @@ Emoji Catalog
|
|
|
+ |
🙅 |
face with no good gesture |
:no_good: |
@@ -13716,6 +14854,7 @@ Emoji Catalog
|
|
|
+ |
🙆♀️ |
woman gesturing ok |
:woman-gesturing-ok: |
@@ -13728,6 +14867,7 @@ Emoji Catalog
|
|
|
+ |
🙆♂️ |
man gesturing ok |
:man-gesturing-ok: |
@@ -13740,6 +14880,7 @@ Emoji Catalog
|
|
|
+ |
🙆 |
face with ok gesture |
:ok_woman: |
@@ -13752,6 +14893,7 @@ Emoji Catalog
|
|
|
+ |
🙇♀️ |
woman bowing |
:woman-bowing: |
@@ -13764,6 +14906,7 @@ Emoji Catalog
|
|
|
+ |
🙇♂️ |
man bowing |
:man-bowing: |
@@ -13776,6 +14919,7 @@ Emoji Catalog
|
|
|
+ |
🙇 |
person bowing deeply |
:bow: |
@@ -13788,6 +14932,7 @@ Emoji Catalog
|
|
|
+ |
🙈 |
see-no-evil monkey |
:see_no_evil: |
@@ -13800,6 +14945,7 @@ Emoji Catalog
|
|
|
+ |
🙉 |
hear-no-evil monkey |
:hear_no_evil: |
@@ -13812,6 +14958,7 @@ Emoji Catalog
|
|
|
+ |
🙊 |
speak-no-evil monkey |
:speak_no_evil: |
@@ -13824,6 +14971,7 @@ Emoji Catalog
|
|
|
+ |
🙋♀️ |
woman raising hand |
:woman-raising-hand: |
@@ -13836,6 +14984,7 @@ Emoji Catalog
|
|
|
+ |
🙋♂️ |
man raising hand |
:man-raising-hand: |
@@ -13848,6 +14997,7 @@ Emoji Catalog
|
|
|
+ |
🙋 |
happy person raising one hand |
:raising_hand: |
@@ -13860,6 +15010,7 @@ Emoji Catalog
|
|
|
+ |
🙌 |
person raising both hands in celebration |
:raised_hands: |
@@ -13872,6 +15023,7 @@ Emoji Catalog
|
|
|
+ |
🙍♀️ |
woman frowning |
:woman-frowning: |
@@ -13884,6 +15036,7 @@ Emoji Catalog
|
|
|
+ |
🙍♂️ |
man frowning |
:man-frowning: |
@@ -13896,6 +15049,7 @@ Emoji Catalog
|
|
|
+ |
🙍 |
person frowning |
:person_frowning: |
@@ -13908,6 +15062,7 @@ Emoji Catalog
|
|
|
+ |
🙎♀️ |
woman pouting |
:woman-pouting: |
@@ -13920,6 +15075,7 @@ Emoji Catalog
|
|
|
+ |
🙎♂️ |
man pouting |
:man-pouting: |
@@ -13932,6 +15088,7 @@ Emoji Catalog
|
|
|
+ |
🙎 |
person with pouting face |
:person_with_pouting_face: |
@@ -13944,6 +15101,7 @@ Emoji Catalog
|
|
|
+ |
🙏 |
person with folded hands |
:pray: |
@@ -13956,6 +15114,7 @@ Emoji Catalog
|
|
|
+ |
🚀 |
rocket |
:rocket: |
@@ -13968,6 +15127,7 @@ Emoji Catalog
|
|
|
+ |
🚁 |
helicopter |
:helicopter: |
@@ -13980,6 +15140,7 @@ Emoji Catalog
|
|
|
+ |
🚂 |
steam locomotive |
:steam_locomotive: |
@@ -13992,6 +15153,7 @@ Emoji Catalog
|
|
|
+ |
🚃 |
railway car |
:railway_car: |
@@ -14004,6 +15166,7 @@ Emoji Catalog
|
|
|
+ |
🚄 |
high-speed train |
:bullettrain_side: |
@@ -14016,6 +15179,7 @@ Emoji Catalog
|
|
|
+ |
🚅 |
high-speed train with bullet nose |
:bullettrain_front: |
@@ -14028,6 +15192,7 @@ Emoji Catalog
|
|
|
+ |
🚆 |
train |
:train2: |
@@ -14040,6 +15205,7 @@ Emoji Catalog
|
|
|
+ |
🚇 |
metro |
:metro: |
@@ -14052,6 +15218,7 @@ Emoji Catalog
|
|
|
+ |
🚈 |
light rail |
:light_rail: |
@@ -14064,6 +15231,7 @@ Emoji Catalog
|
|
|
+ |
🚉 |
station |
:station: |
@@ -14076,6 +15244,7 @@ Emoji Catalog
|
|
|
+ |
🚊 |
tram |
:tram: |
@@ -14088,6 +15257,7 @@ Emoji Catalog
|
|
|
+ |
🚋 |
tram car |
:train: |
@@ -14100,6 +15270,7 @@ Emoji Catalog
|
|
|
+ |
🚌 |
bus |
:bus: |
@@ -14112,6 +15283,7 @@ Emoji Catalog
|
|
|
+ |
🚍 |
oncoming bus |
:oncoming_bus: |
@@ -14124,6 +15296,7 @@ Emoji Catalog
|
|
|
+ |
🚎 |
trolleybus |
:trolleybus: |
@@ -14136,6 +15309,7 @@ Emoji Catalog
|
|
|
+ |
🚏 |
bus stop |
:busstop: |
@@ -14148,6 +15322,7 @@ Emoji Catalog
|
|
|
+ |
🚐 |
minibus |
:minibus: |
@@ -14160,6 +15335,7 @@ Emoji Catalog
|
|
|
+ |
🚑 |
ambulance |
:ambulance: |
@@ -14172,6 +15348,7 @@ Emoji Catalog
|
|
|
+ |
🚒 |
fire engine |
:fire_engine: |
@@ -14184,6 +15361,7 @@ Emoji Catalog
|
|
|
+ |
🚓 |
police car |
:police_car: |
@@ -14196,6 +15374,7 @@ Emoji Catalog
|
|
|
+ |
🚔 |
oncoming police car |
:oncoming_police_car: |
@@ -14208,6 +15387,7 @@ Emoji Catalog
|
|
|
+ |
🚕 |
taxi |
:taxi: |
@@ -14220,6 +15400,7 @@ Emoji Catalog
|
|
|
+ |
🚖 |
oncoming taxi |
:oncoming_taxi: |
@@ -14232,6 +15413,7 @@ Emoji Catalog
|
|
|
+ |
🚗 |
automobile |
:car: |
@@ -14244,6 +15426,7 @@ Emoji Catalog
|
|
|
+ |
🚘 |
oncoming automobile |
:oncoming_automobile: |
@@ -14256,6 +15439,7 @@ Emoji Catalog
|
|
|
+ |
🚙 |
recreational vehicle |
:blue_car: |
@@ -14268,6 +15452,7 @@ Emoji Catalog
|
|
|
+ |
🚚 |
delivery truck |
:truck: |
@@ -14280,6 +15465,7 @@ Emoji Catalog
|
|
|
+ |
🚛 |
articulated lorry |
:articulated_lorry: |
@@ -14292,6 +15478,7 @@ Emoji Catalog
|
|
|
+ |
🚜 |
tractor |
:tractor: |
@@ -14304,6 +15491,7 @@ Emoji Catalog
|
|
|
+ |
🚝 |
monorail |
:monorail: |
@@ -14316,6 +15504,7 @@ Emoji Catalog
|
|
|
+ |
🚞 |
mountain railway |
:mountain_railway: |
@@ -14328,6 +15517,7 @@ Emoji Catalog
|
|
|
+ |
🚟 |
suspension railway |
:suspension_railway: |
@@ -14340,6 +15530,7 @@ Emoji Catalog
|
|
|
+ |
🚠 |
mountain cableway |
:mountain_cableway: |
@@ -14352,6 +15543,7 @@ Emoji Catalog
|
|
|
+ |
🚡 |
aerial tramway |
:aerial_tramway: |
@@ -14364,6 +15556,7 @@ Emoji Catalog
|
|
|
+ |
🚢 |
ship |
:ship: |
@@ -14376,6 +15569,7 @@ Emoji Catalog
|
|
|
+ |
🚣♀️ |
woman rowing boat |
:woman-rowing-boat: |
@@ -14388,6 +15582,7 @@ Emoji Catalog
|
|
|
+ |
🚣♂️ |
man rowing boat |
:man-rowing-boat: |
@@ -14400,6 +15595,7 @@ Emoji Catalog
|
|
|
+ |
🚣 |
rowboat |
:rowboat: |
@@ -14412,6 +15608,7 @@ Emoji Catalog
|
|
|
+ |
🚤 |
speedboat |
:speedboat: |
@@ -14424,6 +15621,7 @@ Emoji Catalog
|
|
|
+ |
🚥 |
horizontal traffic light |
:traffic_light: |
@@ -14436,6 +15634,7 @@ Emoji Catalog
|
|
|
+ |
🚦 |
vertical traffic light |
:vertical_traffic_light: |
@@ -14448,6 +15647,7 @@ Emoji Catalog
|
|
|
+ |
🚧 |
construction sign |
:construction: |
@@ -14460,6 +15660,7 @@ Emoji Catalog
|
|
|
+ |
🚨 |
police cars revolving light |
:rotating_light: |
@@ -14472,6 +15673,7 @@ Emoji Catalog
|
|
|
+ |
🚩 |
triangular flag on post |
:triangular_flag_on_post: |
@@ -14484,6 +15686,7 @@ Emoji Catalog
|
|
|
+ |
🚪 |
door |
:door: |
@@ -14496,6 +15699,7 @@ Emoji Catalog
|
|
|
+ |
🚫 |
no entry sign |
:no_entry_sign: |
@@ -14508,6 +15712,7 @@ Emoji Catalog
|
|
|
+ |
🚬 |
smoking symbol |
:smoking: |
@@ -14520,6 +15725,7 @@ Emoji Catalog
|
|
|
+ |
🚭 |
no smoking symbol |
:no_smoking: |
@@ -14532,6 +15738,7 @@ Emoji Catalog
|
|
|
+ |
🚮 |
put litter in its place symbol |
:put_litter_in_its_place: |
@@ -14544,6 +15751,7 @@ Emoji Catalog
|
|
|
+ |
🚯 |
do not litter symbol |
:do_not_litter: |
@@ -14556,6 +15764,7 @@ Emoji Catalog
|
|
|
+ |
🚰 |
potable water symbol |
:potable_water: |
@@ -14568,6 +15777,7 @@ Emoji Catalog
|
|
|
+ |
🚱 |
non-potable water symbol |
:non-potable_water: |
@@ -14580,6 +15790,7 @@ Emoji Catalog
|
|
|
+ |
🚲 |
bicycle |
:bike: |
@@ -14592,6 +15803,7 @@ Emoji Catalog
|
|
|
+ |
🚳 |
no bicycles |
:no_bicycles: |
@@ -14604,6 +15816,7 @@ Emoji Catalog
|
|
|
+ |
🚴♀️ |
woman biking |
:woman-biking: |
@@ -14616,6 +15829,7 @@ Emoji Catalog
|
|
|
+ |
🚴♂️ |
man biking |
:man-biking: |
@@ -14628,6 +15842,7 @@ Emoji Catalog
|
|
|
+ |
🚴 |
bicyclist |
:bicyclist: |
@@ -14640,6 +15855,7 @@ Emoji Catalog
|
|
|
+ |
🚵♀️ |
woman mountain biking |
:woman-mountain-biking: |
@@ -14652,6 +15868,7 @@ Emoji Catalog
|
|
|
+ |
🚵♂️ |
man mountain biking |
:man-mountain-biking: |
@@ -14664,6 +15881,7 @@ Emoji Catalog
|
|
|
+ |
🚵 |
mountain bicyclist |
:mountain_bicyclist: |
@@ -14676,6 +15894,7 @@ Emoji Catalog
|
|
|
+ |
🚶♀️ |
woman walking |
:woman-walking: |
@@ -14688,6 +15907,7 @@ Emoji Catalog
|
|
|
+ |
🚶♂️ |
man walking |
:man-walking: |
@@ -14700,6 +15920,7 @@ Emoji Catalog
|
|
|
+ |
🚶 |
pedestrian |
:walking: |
@@ -14712,6 +15933,7 @@ Emoji Catalog
|
|
|
+ |
🚷 |
no pedestrians |
:no_pedestrians: |
@@ -14724,6 +15946,7 @@ Emoji Catalog
|
|
|
+ |
🚸 |
children crossing |
:children_crossing: |
@@ -14736,6 +15959,7 @@ Emoji Catalog
|
|
|
+ |
🚹 |
mens symbol |
:mens: |
@@ -14748,6 +15972,7 @@ Emoji Catalog
|
|
|
+ |
🚺 |
womens symbol |
:womens: |
@@ -14760,6 +15985,7 @@ Emoji Catalog
|
|
|
+ |
🚻 |
restroom |
:restroom: |
@@ -14772,6 +15998,7 @@ Emoji Catalog
|
|
|
+ |
🚼 |
baby symbol |
:baby_symbol: |
@@ -14784,6 +16011,7 @@ Emoji Catalog
|
|
|
+ |
🚽 |
toilet |
:toilet: |
@@ -14796,6 +16024,7 @@ Emoji Catalog
|
|
|
+ |
🚾 |
water closet |
:wc: |
@@ -14808,6 +16037,7 @@ Emoji Catalog
|
|
|
+ |
🚿 |
shower |
:shower: |
@@ -14820,6 +16050,7 @@ Emoji Catalog
|
|
|
+ |
🛀 |
bath |
:bath: |
@@ -14832,6 +16063,7 @@ Emoji Catalog
|
|
|
+ |
🛁 |
bathtub |
:bathtub: |
@@ -14844,6 +16076,7 @@ Emoji Catalog
|
|
|
+ |
🛂 |
passport control |
:passport_control: |
@@ -14856,6 +16089,7 @@ Emoji Catalog
|
|
|
+ |
🛃 |
customs |
:customs: |
@@ -14868,6 +16102,7 @@ Emoji Catalog
|
|
|
+ |
🛄 |
baggage claim |
:baggage_claim: |
@@ -14880,6 +16115,7 @@ Emoji Catalog
|
|
|
+ |
🛅 |
left luggage |
:left_luggage: |
@@ -14892,6 +16128,7 @@ Emoji Catalog
|
|
|
+ |
🛋️ |
couch and lamp |
:couch_and_lamp: |
@@ -14904,6 +16141,7 @@ Emoji Catalog
|
|
|
+ |
🛌 |
sleeping accommodation |
:sleeping_accommodation: |
@@ -14916,6 +16154,7 @@ Emoji Catalog
|
|
|
+ |
🛍️ |
shopping bags |
:shopping_bags: |
@@ -14928,6 +16167,7 @@ Emoji Catalog
|
|
|
+ |
🛎️ |
bellhop bell |
:bellhop_bell: |
@@ -14940,6 +16180,7 @@ Emoji Catalog
|
|
|
+ |
🛏️ |
bed |
:bed: |
@@ -14952,6 +16193,7 @@ Emoji Catalog
|
|
|
+ |
🛐 |
place of worship |
:place_of_worship: |
@@ -14964,6 +16206,7 @@ Emoji Catalog
|
|
|
+ |
🛑 |
octagonal sign |
:octagonal_sign: |
@@ -14976,6 +16219,7 @@ Emoji Catalog
|
|
|
+ |
🛒 |
shopping trolley |
:shopping_trolley: |
@@ -14988,6 +16232,7 @@ Emoji Catalog
|
|
|
+ |
🛕 |
hindu temple |
:hindu_temple: |
@@ -15000,6 +16245,7 @@ Emoji Catalog
|
|
|
+ |
🛖 |
hut |
:hut: |
@@ -15012,6 +16258,7 @@ Emoji Catalog
|
|
|
+ |
🛗 |
elevator |
:elevator: |
@@ -15024,6 +16271,7 @@ Emoji Catalog
|
- |
- |
+ - |
🛜 |
wireless |
:wireless: |
@@ -15036,6 +16284,7 @@ Emoji Catalog
|
|
|
+ |
🛝 |
playground slide |
:playground_slide: |
@@ -15048,6 +16297,7 @@ Emoji Catalog
|
|
|
+ |
🛞 |
wheel |
:wheel: |
@@ -15060,6 +16310,7 @@ Emoji Catalog
|
|
|
+ |
🛟 |
ring buoy |
:ring_buoy: |
@@ -15072,6 +16323,7 @@ Emoji Catalog
|
|
|
+ |
🛠️ |
hammer and wrench |
:hammer_and_wrench: |
@@ -15084,6 +16336,7 @@ Emoji Catalog
|
|
|
+ |
🛡️ |
shield |
:shield: |
@@ -15096,6 +16349,7 @@ Emoji Catalog
|
|
|
+ |
🛢️ |
oil drum |
:oil_drum: |
@@ -15108,6 +16362,7 @@ Emoji Catalog
|
|
|
+ |
🛣️ |
motorway |
:motorway: |
@@ -15120,6 +16375,7 @@ Emoji Catalog
|
|
|
+ |
🛤️ |
railway track |
:railway_track: |
@@ -15132,6 +16388,7 @@ Emoji Catalog
|
|
|
+ |
🛥️ |
motor boat |
:motor_boat: |
@@ -15144,6 +16401,7 @@ Emoji Catalog
|
|
|
+ |
🛩️ |
small airplane |
:small_airplane: |
@@ -15156,6 +16414,7 @@ Emoji Catalog
|
|
|
+ |
🛫 |
airplane departure |
:airplane_departure: |
@@ -15168,6 +16427,7 @@ Emoji Catalog
|
|
|
+ |
🛬 |
airplane arriving |
:airplane_arriving: |
@@ -15180,6 +16440,7 @@ Emoji Catalog
|
|
|
+ |
🛰️ |
satellite |
:satellite: |
@@ -15192,6 +16453,7 @@ Emoji Catalog
|
|
|
+ |
🛳️ |
passenger ship |
:passenger_ship: |
@@ -15204,6 +16466,7 @@ Emoji Catalog
|
|
|
+ |
🛴 |
scooter |
:scooter: |
@@ -15216,6 +16479,7 @@ Emoji Catalog
|
|
|
+ |
🛵 |
motor scooter |
:motor_scooter: |
@@ -15228,6 +16492,7 @@ Emoji Catalog
|
|
|
+ |
🛶 |
canoe |
:canoe: |
@@ -15240,6 +16505,7 @@ Emoji Catalog
|
|
|
+ |
🛷 |
sled |
:sled: |
@@ -15252,6 +16518,7 @@ Emoji Catalog
|
|
|
+ |
🛸 |
flying saucer |
:flying_saucer: |
@@ -15264,6 +16531,7 @@ Emoji Catalog
|
|
|
+ |
🛹 |
skateboard |
:skateboard: |
@@ -15276,6 +16544,7 @@ Emoji Catalog
|
|
|
+ |
🛺 |
auto rickshaw |
:auto_rickshaw: |
@@ -15288,6 +16557,7 @@ Emoji Catalog
|
|
|
+ |
🛻 |
pickup truck |
:pickup_truck: |
@@ -15300,6 +16570,7 @@ Emoji Catalog
|
|
|
+ |
🛼 |
roller skate |
:roller_skate: |
@@ -15312,6 +16583,7 @@ Emoji Catalog
|
|
|
+ |
🟠 |
large orange circle |
:large_orange_circle: |
@@ -15324,6 +16596,7 @@ Emoji Catalog
|
|
|
+ |
🟡 |
large yellow circle |
:large_yellow_circle: |
@@ -15336,6 +16609,7 @@ Emoji Catalog
|
|
|
+ |
🟢 |
large green circle |
:large_green_circle: |
@@ -15348,6 +16622,7 @@ Emoji Catalog
|
|
|
+ |
🟣 |
large purple circle |
:large_purple_circle: |
@@ -15360,6 +16635,7 @@ Emoji Catalog
|
|
|
+ |
🟤 |
large brown circle |
:large_brown_circle: |
@@ -15372,6 +16648,7 @@ Emoji Catalog
|
|
|
+ |
🟥 |
large red square |
:large_red_square: |
@@ -15384,6 +16661,7 @@ Emoji Catalog
|
|
|
+ |
🟦 |
large blue square |
:large_blue_square: |
@@ -15396,6 +16674,7 @@ Emoji Catalog
|
|
|
+ |
🟧 |
large orange square |
:large_orange_square: |
@@ -15408,6 +16687,7 @@ Emoji Catalog
|
|
|
+ |
🟨 |
large yellow square |
:large_yellow_square: |
@@ -15420,6 +16700,7 @@ Emoji Catalog
|
|
|
+ |
🟩 |
large green square |
:large_green_square: |
@@ -15432,6 +16713,7 @@ Emoji Catalog
|
|
|
+ |
🟪 |
large purple square |
:large_purple_square: |
@@ -15444,6 +16726,7 @@ Emoji Catalog
|
|
|
+ |
🟫 |
large brown square |
:large_brown_square: |
@@ -15456,6 +16739,7 @@ Emoji Catalog
|
|
|
+ |
🟰 |
heavy equals sign |
:heavy_equals_sign: |
@@ -15468,6 +16752,7 @@ Emoji Catalog
|
|
|
+ |
🤌 |
pinched fingers |
:pinched_fingers: |
@@ -15480,6 +16765,7 @@ Emoji Catalog
|
|
|
+ |
🤍 |
white heart |
:white_heart: |
@@ -15492,6 +16778,7 @@ Emoji Catalog
|
|
|
+ |
🤎 |
brown heart |
:brown_heart: |
@@ -15504,6 +16791,7 @@ Emoji Catalog
|
|
|
+ |
🤏 |
pinching hand |
:pinching_hand: |
@@ -15516,6 +16804,7 @@ Emoji Catalog
|
|
|
+ |
🤐 |
zipper-mouth face |
:zipper_mouth_face: |
@@ -15528,6 +16817,7 @@ Emoji Catalog
|
|
|
+ |
🤑 |
money-mouth face |
:money_mouth_face: |
@@ -15540,6 +16830,7 @@ Emoji Catalog
|
|
|
+ |
🤒 |
face with thermometer |
:face_with_thermometer: |
@@ -15552,6 +16843,7 @@ Emoji Catalog
|
|
|
+ |
🤓 |
nerd face |
:nerd_face: |
@@ -15564,6 +16856,7 @@ Emoji Catalog
|
|
|
+ |
🤔 |
thinking face |
:thinking_face: |
@@ -15576,6 +16869,7 @@ Emoji Catalog
|
|
|
+ |
🤕 |
face with head-bandage |
:face_with_head_bandage: |
@@ -15588,6 +16882,7 @@ Emoji Catalog
|
|
|
+ |
🤖 |
robot face |
:robot_face: |
@@ -15600,6 +16895,7 @@ Emoji Catalog
|
|
|
+ |
🤗 |
hugging face |
:hugging_face: |
@@ -15612,6 +16908,7 @@ Emoji Catalog
|
|
|
+ |
🤘 |
sign of the horns |
:the_horns: |
@@ -15624,6 +16921,7 @@ Emoji Catalog
|
|
|
+ |
🤙 |
call me hand |
:call_me_hand: |
@@ -15636,6 +16934,7 @@ Emoji Catalog
|
|
|
+ |
🤚 |
raised back of hand |
:raised_back_of_hand: |
@@ -15648,6 +16947,7 @@ Emoji Catalog
|
|
|
+ |
🤛 |
left-facing fist |
:left-facing_fist: |
@@ -15660,6 +16960,7 @@ Emoji Catalog
|
|
|
+ |
🤜 |
right-facing fist |
:right-facing_fist: |
@@ -15672,6 +16973,7 @@ Emoji Catalog
|
|
|
+ |
🤝 |
handshake |
:handshake: |
@@ -15684,6 +16986,7 @@ Emoji Catalog
|
|
|
+ |
🤞 |
hand with index and middle fingers crossed |
:crossed_fingers: |
@@ -15696,6 +16999,7 @@ Emoji Catalog
|
|
|
+ |
🤟 |
i love you hand sign |
:i_love_you_hand_sign: |
@@ -15708,6 +17012,7 @@ Emoji Catalog
|
|
|
+ |
🤠 |
face with cowboy hat |
:face_with_cowboy_hat: |
@@ -15720,6 +17025,7 @@ Emoji Catalog
|
|
|
+ |
🤡 |
clown face |
:clown_face: |
@@ -15732,6 +17038,7 @@ Emoji Catalog
|
|
|
+ |
🤢 |
nauseated face |
:nauseated_face: |
@@ -15744,6 +17051,7 @@ Emoji Catalog
|
|
|
+ |
🤣 |
rolling on the floor laughing |
:rolling_on_the_floor_laughing: |
@@ -15756,6 +17064,7 @@ Emoji Catalog
|
|
|
+ |
🤤 |
drooling face |
:drooling_face: |
@@ -15768,6 +17077,7 @@ Emoji Catalog
|
|
|
+ |
🤥 |
lying face |
:lying_face: |
@@ -15780,6 +17090,7 @@ Emoji Catalog
|
|
|
+ |
🤦♀️ |
woman facepalming |
:woman-facepalming: |
@@ -15792,6 +17103,7 @@ Emoji Catalog
|
|
|
+ |
🤦♂️ |
man facepalming |
:man-facepalming: |
@@ -15804,6 +17116,7 @@ Emoji Catalog
|
|
|
+ |
🤦 |
face palm |
:face_palm: |
@@ -15816,6 +17129,7 @@ Emoji Catalog
|
|
|
+ |
🤧 |
sneezing face |
:sneezing_face: |
@@ -15828,6 +17142,7 @@ Emoji Catalog
|
|
|
+ |
🤨 |
face with one eyebrow raised |
:face_with_raised_eyebrow: |
@@ -15840,6 +17155,7 @@ Emoji Catalog
|
|
|
+ |
🤩 |
grinning face with star eyes |
:star-struck: |
@@ -15852,6 +17168,7 @@ Emoji Catalog
|
|
|
+ |
🤪 |
grinning face with one large and one small eye |
:zany_face: |
@@ -15864,6 +17181,7 @@ Emoji Catalog
|
|
|
+ |
🤫 |
face with finger covering closed lips |
:shushing_face: |
@@ -15876,6 +17194,7 @@ Emoji Catalog
|
|
|
+ |
🤬 |
serious face with symbols covering mouth |
:face_with_symbols_on_mouth: |
@@ -15888,6 +17207,7 @@ Emoji Catalog
|
|
|
+ |
🤭 |
smiling face with smiling eyes and hand covering mouth |
:face_with_hand_over_mouth: |
@@ -15900,6 +17220,7 @@ Emoji Catalog
|
|
|
+ |
🤮 |
face with open mouth vomiting |
:face_vomiting: |
@@ -15912,6 +17233,7 @@ Emoji Catalog
|
|
|
+ |
🤯 |
shocked face with exploding head |
:exploding_head: |
@@ -15924,6 +17246,7 @@ Emoji Catalog
|
|
|
+ |
🤰 |
pregnant woman |
:pregnant_woman: |
@@ -15936,6 +17259,7 @@ Emoji Catalog
|
|
|
+ |
🤱 |
breast-feeding |
:breast-feeding: |
@@ -15948,6 +17272,7 @@ Emoji Catalog
|
|
|
+ |
🤲 |
palms up together |
:palms_up_together: |
@@ -15960,6 +17285,7 @@ Emoji Catalog
|
|
|
+ |
🤳 |
selfie |
:selfie: |
@@ -15972,6 +17298,7 @@ Emoji Catalog
|
|
|
+ |
🤴 |
prince |
:prince: |
@@ -15984,6 +17311,7 @@ Emoji Catalog
|
|
|
+ |
🤵♀️ |
woman in tuxedo |
:woman_in_tuxedo: |
@@ -15996,6 +17324,7 @@ Emoji Catalog
|
|
|
+ |
🤵♂️ |
man in tuxedo |
:man_in_tuxedo: |
@@ -16008,6 +17337,7 @@ Emoji Catalog
|
|
|
+ |
🤵 |
man in tuxedo |
:person_in_tuxedo: |
@@ -16020,6 +17350,7 @@ Emoji Catalog
|
|
|
+ |
🤶 |
mother christmas |
:mrs_claus: |
@@ -16032,6 +17363,7 @@ Emoji Catalog
|
|
|
+ |
🤷♀️ |
woman shrugging |
:woman-shrugging: |
@@ -16044,6 +17376,7 @@ Emoji Catalog
|
|
|
+ |
🤷♂️ |
man shrugging |
:man-shrugging: |
@@ -16056,6 +17389,7 @@ Emoji Catalog
|
|
|
+ |
🤷 |
shrug |
:shrug: |
@@ -16068,6 +17402,7 @@ Emoji Catalog
|
|
|
+ |
🤸♀️ |
woman cartwheeling |
:woman-cartwheeling: |
@@ -16080,6 +17415,7 @@ Emoji Catalog
|
|
|
+ |
🤸♂️ |
man cartwheeling |
:man-cartwheeling: |
@@ -16092,6 +17428,7 @@ Emoji Catalog
|
|
|
+ |
🤸 |
person doing cartwheel |
:person_doing_cartwheel: |
@@ -16104,6 +17441,7 @@ Emoji Catalog
|
|
|
+ |
🤹♀️ |
woman juggling |
:woman-juggling: |
@@ -16116,6 +17454,7 @@ Emoji Catalog
|
|
|
+ |
🤹♂️ |
man juggling |
:man-juggling: |
@@ -16128,6 +17467,7 @@ Emoji Catalog
|
|
|
+ |
🤹 |
juggling |
:juggling: |
@@ -16140,6 +17480,7 @@ Emoji Catalog
|
|
|
+ |
🤺 |
fencer |
:fencer: |
@@ -16152,6 +17493,7 @@ Emoji Catalog
|
|
|
+ |
🤼♀️ |
women wrestling |
:woman-wrestling: |
@@ -16164,6 +17506,7 @@ Emoji Catalog
|
|
|
+ |
🤼♂️ |
men wrestling |
:man-wrestling: |
@@ -16176,6 +17519,7 @@ Emoji Catalog
|
|
|
+ |
🤼 |
wrestlers |
:wrestlers: |
@@ -16188,6 +17532,7 @@ Emoji Catalog
|
|
|
+ |
🤽♀️ |
woman playing water polo |
:woman-playing-water-polo: |
@@ -16200,6 +17545,7 @@ Emoji Catalog
|
|
|
+ |
🤽♂️ |
man playing water polo |
:man-playing-water-polo: |
@@ -16212,6 +17558,7 @@ Emoji Catalog
|
|
|
+ |
🤽 |
water polo |
:water_polo: |
@@ -16224,6 +17571,7 @@ Emoji Catalog
|
|
|
+ |
🤾♀️ |
woman playing handball |
:woman-playing-handball: |
@@ -16236,6 +17584,7 @@ Emoji Catalog
|
|
|
+ |
🤾♂️ |
man playing handball |
:man-playing-handball: |
@@ -16248,6 +17597,7 @@ Emoji Catalog
|
|
|
+ |
🤾 |
handball |
:handball: |
@@ -16260,6 +17610,7 @@ Emoji Catalog
|
|
|
+ |
🤿 |
diving mask |
:diving_mask: |
@@ -16272,6 +17623,7 @@ Emoji Catalog
|
|
|
+ |
🥀 |
wilted flower |
:wilted_flower: |
@@ -16284,6 +17636,7 @@ Emoji Catalog
|
|
|
+ |
🥁 |
drum with drumsticks |
:drum_with_drumsticks: |
@@ -16296,6 +17649,7 @@ Emoji Catalog
|
|
|
+ |
🥂 |
clinking glasses |
:clinking_glasses: |
@@ -16308,6 +17662,7 @@ Emoji Catalog
|
|
|
+ |
🥃 |
tumbler glass |
:tumbler_glass: |
@@ -16320,6 +17675,7 @@ Emoji Catalog
|
|
|
+ |
🥄 |
spoon |
:spoon: |
@@ -16332,6 +17688,7 @@ Emoji Catalog
|
|
|
+ |
🥅 |
goal net |
:goal_net: |
@@ -16344,6 +17701,7 @@ Emoji Catalog
|
|
|
+ |
🥇 |
first place medal |
:first_place_medal: |
@@ -16356,6 +17714,7 @@ Emoji Catalog
|
|
|
+ |
🥈 |
second place medal |
:second_place_medal: |
@@ -16368,6 +17727,7 @@ Emoji Catalog
|
|
|
+ |
🥉 |
third place medal |
:third_place_medal: |
@@ -16380,6 +17740,7 @@ Emoji Catalog
|
|
|
+ |
🥊 |
boxing glove |
:boxing_glove: |
@@ -16392,6 +17753,7 @@ Emoji Catalog
|
|
|
+ |
🥋 |
martial arts uniform |
:martial_arts_uniform: |
@@ -16404,6 +17766,7 @@ Emoji Catalog
|
|
|
+ |
🥌 |
curling stone |
:curling_stone: |
@@ -16416,6 +17779,7 @@ Emoji Catalog
|
|
|
+ |
🥍 |
lacrosse stick and ball |
:lacrosse: |
@@ -16428,6 +17792,7 @@ Emoji Catalog
|
|
|
+ |
🥎 |
softball |
:softball: |
@@ -16440,6 +17805,7 @@ Emoji Catalog
|
|
|
+ |
🥏 |
flying disc |
:flying_disc: |
@@ -16452,6 +17818,7 @@ Emoji Catalog
|
|
|
+ |
🥐 |
croissant |
:croissant: |
@@ -16464,6 +17831,7 @@ Emoji Catalog
|
|
|
+ |
🥑 |
avocado |
:avocado: |
@@ -16476,6 +17844,7 @@ Emoji Catalog
|
|
|
+ |
🥒 |
cucumber |
:cucumber: |
@@ -16488,6 +17857,7 @@ Emoji Catalog
|
|
|
+ |
🥓 |
bacon |
:bacon: |
@@ -16500,6 +17870,7 @@ Emoji Catalog
|
|
|
+ |
🥔 |
potato |
:potato: |
@@ -16512,6 +17883,7 @@ Emoji Catalog
|
|
|
+ |
🥕 |
carrot |
:carrot: |
@@ -16524,6 +17896,7 @@ Emoji Catalog
|
|
|
+ |
🥖 |
baguette bread |
:baguette_bread: |
@@ -16536,6 +17909,7 @@ Emoji Catalog
|
|
|
+ |
🥗 |
green salad |
:green_salad: |
@@ -16548,6 +17922,7 @@ Emoji Catalog
|
|
|
+ |
🥘 |
shallow pan of food |
:shallow_pan_of_food: |
@@ -16560,6 +17935,7 @@ Emoji Catalog
|
|
|
+ |
🥙 |
stuffed flatbread |
:stuffed_flatbread: |
@@ -16572,6 +17948,7 @@ Emoji Catalog
|
|
|
+ |
🥚 |
egg |
:egg: |
@@ -16584,6 +17961,7 @@ Emoji Catalog
|
|
|
+ |
🥛 |
glass of milk |
:glass_of_milk: |
@@ -16596,6 +17974,7 @@ Emoji Catalog
|
|
|
+ |
🥜 |
peanuts |
:peanuts: |
@@ -16608,6 +17987,7 @@ Emoji Catalog
|
|
|
+ |
🥝 |
kiwifruit |
:kiwifruit: |
@@ -16620,6 +18000,7 @@ Emoji Catalog
|
|
|
+ |
🥞 |
pancakes |
:pancakes: |
@@ -16632,6 +18013,7 @@ Emoji Catalog
|
|
|
+ |
🥟 |
dumpling |
:dumpling: |
@@ -16644,6 +18026,7 @@ Emoji Catalog
|
|
|
+ |
🥠 |
fortune cookie |
:fortune_cookie: |
@@ -16656,6 +18039,7 @@ Emoji Catalog
|
|
|
+ |
🥡 |
takeout box |
:takeout_box: |
@@ -16668,6 +18052,7 @@ Emoji Catalog
|
|
|
+ |
🥢 |
chopsticks |
:chopsticks: |
@@ -16680,6 +18065,7 @@ Emoji Catalog
|
|
|
+ |
🥣 |
bowl with spoon |
:bowl_with_spoon: |
@@ -16692,6 +18078,7 @@ Emoji Catalog
|
|
|
+ |
🥤 |
cup with straw |
:cup_with_straw: |
@@ -16704,6 +18091,7 @@ Emoji Catalog
|
|
|
+ |
🥥 |
coconut |
:coconut: |
@@ -16716,6 +18104,7 @@ Emoji Catalog
|
|
|
+ |
🥦 |
broccoli |
:broccoli: |
@@ -16728,6 +18117,7 @@ Emoji Catalog
|
|
|
+ |
🥧 |
pie |
:pie: |
@@ -16740,6 +18130,7 @@ Emoji Catalog
|
|
|
+ |
🥨 |
pretzel |
:pretzel: |
@@ -16752,6 +18143,7 @@ Emoji Catalog
|
|
|
+ |
🥩 |
cut of meat |
:cut_of_meat: |
@@ -16764,6 +18156,7 @@ Emoji Catalog
|
|
|
+ |
🥪 |
sandwich |
:sandwich: |
@@ -16776,6 +18169,7 @@ Emoji Catalog
|
|
|
+ |
🥫 |
canned food |
:canned_food: |
@@ -16788,6 +18182,7 @@ Emoji Catalog
|
|
|
+ |
🥬 |
leafy green |
:leafy_green: |
@@ -16800,6 +18195,7 @@ Emoji Catalog
|
|
|
+ |
🥭 |
mango |
:mango: |
@@ -16812,6 +18208,7 @@ Emoji Catalog
|
|
|
+ |
🥮 |
moon cake |
:moon_cake: |
@@ -16824,6 +18221,7 @@ Emoji Catalog
|
|
|
+ |
🥯 |
bagel |
:bagel: |
@@ -16836,6 +18234,7 @@ Emoji Catalog
|
|
|
+ |
🥰 |
smiling face with smiling eyes and three hearts |
:smiling_face_with_3_hearts: |
@@ -16848,6 +18247,7 @@ Emoji Catalog
|
|
|
+ |
🥱 |
yawning face |
:yawning_face: |
@@ -16860,6 +18260,7 @@ Emoji Catalog
|
|
|
+ |
🥲 |
smiling face with tear |
:smiling_face_with_tear: |
@@ -16872,6 +18273,7 @@ Emoji Catalog
|
|
|
+ |
🥳 |
face with party horn and party hat |
:partying_face: |
@@ -16884,6 +18286,7 @@ Emoji Catalog
|
|
|
+ |
🥴 |
face with uneven eyes and wavy mouth |
:woozy_face: |
@@ -16896,6 +18299,7 @@ Emoji Catalog
|
|
|
+ |
🥵 |
overheated face |
:hot_face: |
@@ -16908,6 +18312,7 @@ Emoji Catalog
|
|
|
+ |
🥶 |
freezing face |
:cold_face: |
@@ -16920,6 +18325,7 @@ Emoji Catalog
|
|
|
+ |
🥷 |
ninja |
:ninja: |
@@ -16932,6 +18338,7 @@ Emoji Catalog
|
|
|
+ |
🥸 |
disguised face |
:disguised_face: |
@@ -16944,6 +18351,7 @@ Emoji Catalog
|
|
|
+ |
🥹 |
face holding back tears |
:face_holding_back_tears: |
@@ -16956,6 +18364,7 @@ Emoji Catalog
|
|
|
+ |
🥺 |
face with pleading eyes |
:pleading_face: |
@@ -16968,6 +18377,7 @@ Emoji Catalog
|
|
|
+ |
🥻 |
sari |
:sari: |
@@ -16980,6 +18390,7 @@ Emoji Catalog
|
|
|
+ |
🥼 |
lab coat |
:lab_coat: |
@@ -16992,6 +18403,7 @@ Emoji Catalog
|
|
|
+ |
🥽 |
goggles |
:goggles: |
@@ -17004,6 +18416,7 @@ Emoji Catalog
|
|
|
+ |
🥾 |
hiking boot |
:hiking_boot: |
@@ -17016,6 +18429,7 @@ Emoji Catalog
|
|
|
+ |
🥿 |
flat shoe |
:womans_flat_shoe: |
@@ -17028,6 +18442,7 @@ Emoji Catalog
|
|
|
+ |
🦀 |
crab |
:crab: |
@@ -17040,6 +18455,7 @@ Emoji Catalog
|
|
|
+ |
🦁 |
lion face |
:lion_face: |
@@ -17052,6 +18468,7 @@ Emoji Catalog
|
|
|
+ |
🦂 |
scorpion |
:scorpion: |
@@ -17064,6 +18481,7 @@ Emoji Catalog
|
|
|
+ |
🦃 |
turkey |
:turkey: |
@@ -17076,6 +18494,7 @@ Emoji Catalog
|
|
|
+ |
🦄 |
unicorn face |
:unicorn_face: |
@@ -17088,6 +18507,7 @@ Emoji Catalog
|
|
|
+ |
🦅 |
eagle |
:eagle: |
@@ -17100,6 +18520,7 @@ Emoji Catalog
|
|
|
+ |
🦆 |
duck |
:duck: |
@@ -17112,6 +18533,7 @@ Emoji Catalog
|
|
|
+ |
🦇 |
bat |
:bat: |
@@ -17124,6 +18546,7 @@ Emoji Catalog
|
|
|
+ |
🦈 |
shark |
:shark: |
@@ -17136,6 +18559,7 @@ Emoji Catalog
|
|
|
+ |
🦉 |
owl |
:owl: |
@@ -17148,6 +18572,7 @@ Emoji Catalog
|
|
|
+ |
🦊 |
fox face |
:fox_face: |
@@ -17160,6 +18585,7 @@ Emoji Catalog
|
|
|
+ |
🦋 |
butterfly |
:butterfly: |
@@ -17172,6 +18598,7 @@ Emoji Catalog
|
|
|
+ |
🦌 |
deer |
:deer: |
@@ -17184,6 +18611,7 @@ Emoji Catalog
|
|
|
+ |
🦍 |
gorilla |
:gorilla: |
@@ -17196,6 +18624,7 @@ Emoji Catalog
|
|
|
+ |
🦎 |
lizard |
:lizard: |
@@ -17208,6 +18637,7 @@ Emoji Catalog
|
|
|
+ |
🦏 |
rhinoceros |
:rhinoceros: |
@@ -17220,6 +18650,7 @@ Emoji Catalog
|
|
|
+ |
🦐 |
shrimp |
:shrimp: |
@@ -17232,6 +18663,7 @@ Emoji Catalog
|
|
|
+ |
🦑 |
squid |
:squid: |
@@ -17244,6 +18676,7 @@ Emoji Catalog
|
|
|
+ |
🦒 |
giraffe face |
:giraffe_face: |
@@ -17256,6 +18689,7 @@ Emoji Catalog
|
|
|
+ |
🦓 |
zebra face |
:zebra_face: |
@@ -17268,6 +18702,7 @@ Emoji Catalog
|
|
|
+ |
🦔 |
hedgehog |
:hedgehog: |
@@ -17280,6 +18715,7 @@ Emoji Catalog
|
|
|
+ |
🦕 |
sauropod |
:sauropod: |
@@ -17292,6 +18728,7 @@ Emoji Catalog
|
|
|
+ |
🦖 |
t-rex |
:t-rex: |
@@ -17304,6 +18741,7 @@ Emoji Catalog
|
|
|
+ |
🦗 |
cricket |
:cricket: |
@@ -17316,6 +18754,7 @@ Emoji Catalog
|
|
|
+ |
🦘 |
kangaroo |
:kangaroo: |
@@ -17328,6 +18767,7 @@ Emoji Catalog
|
|
|
+ |
🦙 |
llama |
:llama: |
@@ -17340,6 +18780,7 @@ Emoji Catalog
|
|
|
+ |
🦚 |
peacock |
:peacock: |
@@ -17352,6 +18793,7 @@ Emoji Catalog
|
|
|
+ |
🦛 |
hippopotamus |
:hippopotamus: |
@@ -17364,6 +18806,7 @@ Emoji Catalog
|
|
|
+ |
🦜 |
parrot |
:parrot: |
@@ -17376,6 +18819,7 @@ Emoji Catalog
|
|
|
+ |
🦝 |
raccoon |
:raccoon: |
@@ -17388,6 +18832,7 @@ Emoji Catalog
|
|
|
+ |
🦞 |
lobster |
:lobster: |
@@ -17400,6 +18845,7 @@ Emoji Catalog
|
|
|
+ |
🦟 |
mosquito |
:mosquito: |
@@ -17412,6 +18858,7 @@ Emoji Catalog
|
|
|
+ |
🦠 |
microbe |
:microbe: |
@@ -17424,6 +18871,7 @@ Emoji Catalog
|
|
|
+ |
🦡 |
badger |
:badger: |
@@ -17436,6 +18884,7 @@ Emoji Catalog
|
|
|
+ |
🦢 |
swan |
:swan: |
@@ -17448,6 +18897,7 @@ Emoji Catalog
|
|
|
+ |
🦣 |
mammoth |
:mammoth: |
@@ -17460,6 +18910,7 @@ Emoji Catalog
|
|
|
+ |
🦤 |
dodo |
:dodo: |
@@ -17472,6 +18923,7 @@ Emoji Catalog
|
|
|
+ |
🦥 |
sloth |
:sloth: |
@@ -17484,6 +18936,7 @@ Emoji Catalog
|
|
|
+ |
🦦 |
otter |
:otter: |
@@ -17496,6 +18949,7 @@ Emoji Catalog
|
|
|
+ |
🦧 |
orangutan |
:orangutan: |
@@ -17508,6 +18962,7 @@ Emoji Catalog
|
|
|
+ |
🦨 |
skunk |
:skunk: |
@@ -17520,6 +18975,7 @@ Emoji Catalog
|
|
|
+ |
🦩 |
flamingo |
:flamingo: |
@@ -17532,6 +18988,7 @@ Emoji Catalog
|
|
|
+ |
🦪 |
oyster |
:oyster: |
@@ -17544,6 +19001,7 @@ Emoji Catalog
|
|
|
+ |
🦫 |
beaver |
:beaver: |
@@ -17556,6 +19014,7 @@ Emoji Catalog
|
|
|
+ |
🦬 |
bison |
:bison: |
@@ -17568,6 +19027,7 @@ Emoji Catalog
|
|
|
+ |
🦭 |
seal |
:seal: |
@@ -17580,6 +19040,7 @@ Emoji Catalog
|
|
|
+ |
🦮 |
guide dog |
:guide_dog: |
@@ -17592,6 +19053,7 @@ Emoji Catalog
|
|
|
+ |
🦯 |
probing cane |
:probing_cane: |
@@ -17604,6 +19066,7 @@ Emoji Catalog
|
|
|
+ |
🦴 |
bone |
:bone: |
@@ -17616,6 +19079,7 @@ Emoji Catalog
|
|
|
+ |
🦵 |
leg |
:leg: |
@@ -17628,6 +19092,7 @@ Emoji Catalog
|
|
|
+ |
🦶 |
foot |
:foot: |
@@ -17640,6 +19105,7 @@ Emoji Catalog
|
|
|
+ |
🦷 |
tooth |
:tooth: |
@@ -17652,6 +19118,7 @@ Emoji Catalog
|
|
|
+ |
🦸♀️ |
woman superhero |
:female_superhero: |
@@ -17664,6 +19131,7 @@ Emoji Catalog
|
|
|
+ |
🦸♂️ |
man superhero |
:male_superhero: |
@@ -17676,6 +19144,7 @@ Emoji Catalog
|
|
|
+ |
🦸 |
superhero |
:superhero: |
@@ -17688,6 +19157,7 @@ Emoji Catalog
|
|
|
+ |
🦹♀️ |
woman supervillain |
:female_supervillain: |
@@ -17700,6 +19170,7 @@ Emoji Catalog
|
|
|
+ |
🦹♂️ |
man supervillain |
:male_supervillain: |
@@ -17712,6 +19183,7 @@ Emoji Catalog
|
|
|
+ |
🦹 |
supervillain |
:supervillain: |
@@ -17724,6 +19196,7 @@ Emoji Catalog
|
|
|
+ |
🦺 |
safety vest |
:safety_vest: |
@@ -17736,6 +19209,7 @@ Emoji Catalog
|
|
|
+ |
🦻 |
ear with hearing aid |
:ear_with_hearing_aid: |
@@ -17748,6 +19222,7 @@ Emoji Catalog
|
|
|
+ |
🦼 |
motorized wheelchair |
:motorized_wheelchair: |
@@ -17760,6 +19235,7 @@ Emoji Catalog
|
|
|
+ |
🦽 |
manual wheelchair |
:manual_wheelchair: |
@@ -17772,6 +19248,7 @@ Emoji Catalog
|
|
|
+ |
🦾 |
mechanical arm |
:mechanical_arm: |
@@ -17784,6 +19261,7 @@ Emoji Catalog
|
|
|
+ |
🦿 |
mechanical leg |
:mechanical_leg: |
@@ -17796,6 +19274,7 @@ Emoji Catalog
|
|
|
+ |
🧀 |
cheese wedge |
:cheese_wedge: |
@@ -17808,6 +19287,7 @@ Emoji Catalog
|
|
|
+ |
🧁 |
cupcake |
:cupcake: |
@@ -17820,6 +19300,7 @@ Emoji Catalog
|
|
|
+ |
🧂 |
salt shaker |
:salt: |
@@ -17832,6 +19313,7 @@ Emoji Catalog
|
|
|
+ |
🧃 |
beverage box |
:beverage_box: |
@@ -17844,6 +19326,7 @@ Emoji Catalog
|
|
|
+ |
🧄 |
garlic |
:garlic: |
@@ -17856,6 +19339,7 @@ Emoji Catalog
|
|
|
+ |
🧅 |
onion |
:onion: |
@@ -17868,6 +19352,7 @@ Emoji Catalog
|
|
|
+ |
🧆 |
falafel |
:falafel: |
@@ -17880,6 +19365,7 @@ Emoji Catalog
|
|
|
+ |
🧇 |
waffle |
:waffle: |
@@ -17892,6 +19378,7 @@ Emoji Catalog
|
|
|
+ |
🧈 |
butter |
:butter: |
@@ -17904,6 +19391,7 @@ Emoji Catalog
|
|
|
+ |
🧉 |
mate drink |
:mate_drink: |
@@ -17916,6 +19404,7 @@ Emoji Catalog
|
|
|
+ |
🧊 |
ice cube |
:ice_cube: |
@@ -17928,6 +19417,7 @@ Emoji Catalog
|
|
|
+ |
🧋 |
bubble tea |
:bubble_tea: |
@@ -17940,6 +19430,7 @@ Emoji Catalog
|
|
|
+ |
🧌 |
troll |
:troll: |
@@ -17952,6 +19443,7 @@ Emoji Catalog
|
|
|
+ |
🧍♀️ |
woman standing |
:woman_standing: |
@@ -17964,6 +19456,7 @@ Emoji Catalog
|
|
|
+ |
🧍♂️ |
man standing |
:man_standing: |
@@ -17976,6 +19469,7 @@ Emoji Catalog
|
|
|
+ |
🧍 |
standing person |
:standing_person: |
@@ -17988,6 +19482,7 @@ Emoji Catalog
|
|
|
+ |
🧎♀️ |
woman kneeling |
:woman_kneeling: |
@@ -18000,6 +19495,7 @@ Emoji Catalog
|
|
|
+ |
🧎♂️ |
man kneeling |
:man_kneeling: |
@@ -18012,6 +19508,7 @@ Emoji Catalog
|
|
|
+ |
🧎 |
kneeling person |
:kneeling_person: |
@@ -18024,6 +19521,7 @@ Emoji Catalog
|
|
|
+ |
🧏♀️ |
deaf woman |
:deaf_woman: |
@@ -18036,6 +19534,7 @@ Emoji Catalog
|
|
|
+ |
🧏♂️ |
deaf man |
:deaf_man: |
@@ -18048,6 +19547,7 @@ Emoji Catalog
|
|
|
+ |
🧏 |
deaf person |
:deaf_person: |
@@ -18060,6 +19560,7 @@ Emoji Catalog
|
|
|
+ |
🧐 |
face with monocle |
:face_with_monocle: |
@@ -18072,6 +19573,7 @@ Emoji Catalog
|
|
|
+ |
🧑🌾 |
farmer |
:farmer: |
@@ -18084,6 +19586,7 @@ Emoji Catalog
|
|
|
+ |
🧑🍳 |
cook |
:cook: |
@@ -18096,6 +19599,7 @@ Emoji Catalog
|
|
|
+ |
🧑🍼 |
person feeding baby |
:person_feeding_baby: |
@@ -18108,6 +19612,7 @@ Emoji Catalog
|
|
|
+ |
🧑🎄 |
mx claus |
:mx_claus: |
@@ -18120,6 +19625,7 @@ Emoji Catalog
|
|
|
+ |
🧑🎓 |
student |
:student: |
@@ -18132,6 +19638,7 @@ Emoji Catalog
|
|
|
+ |
🧑🎤 |
singer |
:singer: |
@@ -18144,6 +19651,7 @@ Emoji Catalog
|
|
|
+ |
🧑🎨 |
artist |
:artist: |
@@ -18156,6 +19664,7 @@ Emoji Catalog
|
|
|
+ |
🧑🏫 |
teacher |
:teacher: |
@@ -18168,6 +19677,7 @@ Emoji Catalog
|
|
|
+ |
🧑🏭 |
factory worker |
:factory_worker: |
@@ -18180,6 +19690,7 @@ Emoji Catalog
|
|
|
+ - |
🧑💻 |
technologist |
:technologist: |
@@ -18192,6 +19703,7 @@ Emoji Catalog
|
|
|
+ |
🧑💼 |
office worker |
:office_worker: |
@@ -18204,6 +19716,7 @@ Emoji Catalog
|
|
|
+ |
🧑🔧 |
mechanic |
:mechanic: |
@@ -18216,6 +19729,7 @@ Emoji Catalog
|
|
|
+ |
🧑🔬 |
scientist |
:scientist: |
@@ -18228,6 +19742,7 @@ Emoji Catalog
|
|
|
+ |
🧑🚀 |
astronaut |
:astronaut: |
@@ -18240,6 +19755,7 @@ Emoji Catalog
|
|
|
+ |
🧑🚒 |
firefighter |
:firefighter: |
@@ -18252,6 +19768,7 @@ Emoji Catalog
|
|
|
+ - |
🧑🤝🧑 |
people holding hands |
:people_holding_hands: |
@@ -18264,6 +19781,7 @@ Emoji Catalog
|
|
|
+ |
🧑🦯 |
person with white cane |
:person_with_probing_cane: |
@@ -18276,6 +19794,7 @@ Emoji Catalog
|
|
|
+ |
🧑🦰 |
person: red hair |
:red_haired_person: |
@@ -18288,6 +19807,7 @@ Emoji Catalog
|
|
|
+ |
🧑🦱 |
person: curly hair |
:curly_haired_person: |
@@ -18300,6 +19820,7 @@ Emoji Catalog
|
|
|
+ |
🧑🦲 |
person: bald |
:bald_person: |
@@ -18312,6 +19833,7 @@ Emoji Catalog
|
|
|
+ |
🧑🦳 |
person: white hair |
:white_haired_person: |
@@ -18324,6 +19846,7 @@ Emoji Catalog
|
|
|
+ |
🧑🦼 |
person in motorized wheelchair |
:person_in_motorized_wheelchair: |
@@ -18336,6 +19859,7 @@ Emoji Catalog
|
|
|
+ |
🧑🦽 |
person in manual wheelchair |
:person_in_manual_wheelchair: |
@@ -18348,6 +19872,7 @@ Emoji Catalog
|
|
|
+ |
🧑⚕️ |
health worker |
:health_worker: |
@@ -18360,6 +19885,7 @@ Emoji Catalog
|
|
|
+ |
🧑⚖️ |
judge |
:judge: |
@@ -18372,6 +19898,7 @@ Emoji Catalog
|
|
|
+ |
🧑✈️ |
pilot |
:pilot: |
@@ -18384,6 +19911,7 @@ Emoji Catalog
|
|
|
+ |
🧑 |
adult |
:adult: |
@@ -18396,6 +19924,7 @@ Emoji Catalog
|
|
|
+ |
🧒 |
child |
:child: |
@@ -18408,6 +19937,7 @@ Emoji Catalog
|
|
|
+ |
🧓 |
older adult |
:older_adult: |
@@ -18420,6 +19950,7 @@ Emoji Catalog
|
|
|
+ |
🧔♀️ |
woman: beard |
:woman_with_beard: |
@@ -18432,6 +19963,7 @@ Emoji Catalog
|
|
|
+ |
🧔♂️ |
man: beard |
:man_with_beard: |
@@ -18444,6 +19976,7 @@ Emoji Catalog
|
|
|
+ |
🧔 |
bearded person |
:bearded_person: |
@@ -18456,6 +19989,7 @@ Emoji Catalog
|
|
|
+ |
🧕 |
person with headscarf |
:person_with_headscarf: |
@@ -18468,6 +20002,7 @@ Emoji Catalog
|
|
|
+ |
🧖♀️ |
woman in steamy room |
:woman_in_steamy_room: |
@@ -18480,6 +20015,7 @@ Emoji Catalog
|
|
|
+ |
🧖♂️ |
man in steamy room |
:man_in_steamy_room: |
@@ -18492,6 +20028,7 @@ Emoji Catalog
|
|
|
+ |
🧖 |
person in steamy room |
:person_in_steamy_room: |
@@ -18504,6 +20041,7 @@ Emoji Catalog
|
|
|
+ |
🧗♀️ |
woman climbing |
:woman_climbing: |
@@ -18516,6 +20054,7 @@ Emoji Catalog
|
|
|
+ |
🧗♂️ |
man climbing |
:man_climbing: |
@@ -18528,6 +20067,7 @@ Emoji Catalog
|
|
|
+ |
🧗 |
person climbing |
:person_climbing: |
@@ -18540,6 +20080,7 @@ Emoji Catalog
|
|
|
+ |
🧘♀️ |
woman in lotus position |
:woman_in_lotus_position: |
@@ -18552,6 +20093,7 @@ Emoji Catalog
|
|
|
+ |
🧘♂️ |
man in lotus position |
:man_in_lotus_position: |
@@ -18564,6 +20106,7 @@ Emoji Catalog
|
|
|
+ |
🧘 |
person in lotus position |
:person_in_lotus_position: |
@@ -18576,6 +20119,7 @@ Emoji Catalog
|
|
|
+ |
🧙♀️ |
woman mage |
:female_mage: |
@@ -18588,6 +20132,7 @@ Emoji Catalog
|
|
|
+ |
🧙♂️ |
man mage |
:male_mage: |
@@ -18600,6 +20145,7 @@ Emoji Catalog
|
|
|
+ |
🧙 |
mage |
:mage: |
@@ -18612,6 +20158,7 @@ Emoji Catalog
|
|
|
+ |
🧚♀️ |
woman fairy |
:female_fairy: |
@@ -18624,6 +20171,7 @@ Emoji Catalog
|
|
|
+ |
🧚♂️ |
man fairy |
:male_fairy: |
@@ -18636,6 +20184,7 @@ Emoji Catalog
|
|
|
+ |
🧚 |
fairy |
:fairy: |
@@ -18648,6 +20197,7 @@ Emoji Catalog
|
|
|
+ |
🧛♀️ |
woman vampire |
:female_vampire: |
@@ -18660,6 +20210,7 @@ Emoji Catalog
|
|
|
+ |
🧛♂️ |
man vampire |
:male_vampire: |
@@ -18672,6 +20223,7 @@ Emoji Catalog
|
|
|
+ |
🧛 |
vampire |
:vampire: |
@@ -18684,6 +20236,7 @@ Emoji Catalog
|
|
|
+ |
🧜♀️ |
mermaid |
:mermaid: |
@@ -18696,6 +20249,7 @@ Emoji Catalog
|
|
|
+ |
🧜♂️ |
merman |
:merman: |
@@ -18708,6 +20262,7 @@ Emoji Catalog
|
|
|
+ |
🧜 |
merperson |
:merperson: |
@@ -18720,6 +20275,7 @@ Emoji Catalog
|
|
|
+ |
🧝♀️ |
woman elf |
:female_elf: |
@@ -18732,6 +20288,7 @@ Emoji Catalog
|
|
|
+ |
🧝♂️ |
man elf |
:male_elf: |
@@ -18744,6 +20301,7 @@ Emoji Catalog
|
|
|
+ |
🧝 |
elf |
:elf: |
@@ -18756,6 +20314,7 @@ Emoji Catalog
|
|
|
+ |
🧞♀️ |
woman genie |
:female_genie: |
@@ -18768,6 +20327,7 @@ Emoji Catalog
|
|
|
+ |
🧞♂️ |
man genie |
:male_genie: |
@@ -18780,6 +20340,7 @@ Emoji Catalog
|
|
|
+ |
🧞 |
genie |
:genie: |
@@ -18792,6 +20353,7 @@ Emoji Catalog
|
|
|
+ |
🧟♀️ |
woman zombie |
:female_zombie: |
@@ -18804,6 +20366,7 @@ Emoji Catalog
|
|
|
+ |
🧟♂️ |
man zombie |
:male_zombie: |
@@ -18816,6 +20379,7 @@ Emoji Catalog
|
|
|
+ |
🧟 |
zombie |
:zombie: |
@@ -18828,6 +20392,7 @@ Emoji Catalog
|
|
|
+ |
🧠 |
brain |
:brain: |
@@ -18840,6 +20405,7 @@ Emoji Catalog
|
|
|
+ |
🧡 |
orange heart |
:orange_heart: |
@@ -18852,6 +20418,7 @@ Emoji Catalog
|
|
|
+ |
🧢 |
billed cap |
:billed_cap: |
@@ -18864,6 +20431,7 @@ Emoji Catalog
|
|
|
+ |
🧣 |
scarf |
:scarf: |
@@ -18876,6 +20444,7 @@ Emoji Catalog
|
|
|
+ |
🧤 |
gloves |
:gloves: |
@@ -18888,6 +20457,7 @@ Emoji Catalog
|
|
|
+ |
🧥 |
coat |
:coat: |
@@ -18900,6 +20470,7 @@ Emoji Catalog
|
|
|
+ |
🧦 |
socks |
:socks: |
@@ -18912,6 +20483,7 @@ Emoji Catalog
|
|
|
+ |
🧧 |
red gift envelope |
:red_envelope: |
@@ -18924,6 +20496,7 @@ Emoji Catalog
|
|
|
+ |
🧨 |
firecracker |
:firecracker: |
@@ -18936,6 +20509,7 @@ Emoji Catalog
|
|
|
+ |
🧩 |
jigsaw puzzle piece |
:jigsaw: |
@@ -18948,6 +20522,7 @@ Emoji Catalog
|
|
|
+ |
🧪 |
test tube |
:test_tube: |
@@ -18960,6 +20535,7 @@ Emoji Catalog
|
|
|
+ |
🧫 |
petri dish |
:petri_dish: |
@@ -18972,6 +20548,7 @@ Emoji Catalog
|
|
|
+ |
🧬 |
dna double helix |
:dna: |
@@ -18984,6 +20561,7 @@ Emoji Catalog
|
|
|
+ |
🧭 |
compass |
:compass: |
@@ -18996,6 +20574,7 @@ Emoji Catalog
|
|
|
+ |
🧮 |
abacus |
:abacus: |
@@ -19008,6 +20587,7 @@ Emoji Catalog
|
|
|
+ |
🧯 |
fire extinguisher |
:fire_extinguisher: |
@@ -19020,6 +20600,7 @@ Emoji Catalog
|
|
|
+ |
🧰 |
toolbox |
:toolbox: |
@@ -19032,6 +20613,7 @@ Emoji Catalog
|
|
|
+ |
🧱 |
brick |
:bricks: |
@@ -19044,6 +20626,7 @@ Emoji Catalog
|
|
|
+ |
🧲 |
magnet |
:magnet: |
@@ -19056,6 +20639,7 @@ Emoji Catalog
|
|
|
+ |
🧳 |
luggage |
:luggage: |
@@ -19068,6 +20652,7 @@ Emoji Catalog
|
|
|
+ |
🧴 |
lotion bottle |
:lotion_bottle: |
@@ -19080,6 +20665,7 @@ Emoji Catalog
|
|
|
+ |
🧵 |
spool of thread |
:thread: |
@@ -19092,6 +20678,7 @@ Emoji Catalog
|
|
|
+ |
🧶 |
ball of yarn |
:yarn: |
@@ -19104,6 +20691,7 @@ Emoji Catalog
|
|
|
+ |
🧷 |
safety pin |
:safety_pin: |
@@ -19116,6 +20704,7 @@ Emoji Catalog
|
|
|
+ |
🧸 |
teddy bear |
:teddy_bear: |
@@ -19128,6 +20717,7 @@ Emoji Catalog
|
|
|
+ |
🧹 |
broom |
:broom: |
@@ -19140,6 +20730,7 @@ Emoji Catalog
|
|
|
+ |
🧺 |
basket |
:basket: |
@@ -19152,6 +20743,7 @@ Emoji Catalog
|
|
|
+ |
🧻 |
roll of paper |
:roll_of_paper: |
@@ -19164,6 +20756,7 @@ Emoji Catalog
|
|
|
+ |
🧼 |
bar of soap |
:soap: |
@@ -19176,6 +20769,7 @@ Emoji Catalog
|
|
|
+ |
🧽 |
sponge |
:sponge: |
@@ -19188,6 +20782,7 @@ Emoji Catalog
|
|
|
+ |
🧾 |
receipt |
:receipt: |
@@ -19200,6 +20795,7 @@ Emoji Catalog
|
|
|
+ |
🧿 |
nazar amulet |
:nazar_amulet: |
@@ -19212,6 +20808,7 @@ Emoji Catalog
|
|
|
+ |
🩰 |
ballet shoes |
:ballet_shoes: |
@@ -19224,6 +20821,7 @@ Emoji Catalog
|
|
|
+ |
🩱 |
one-piece swimsuit |
:one-piece_swimsuit: |
@@ -19236,6 +20834,7 @@ Emoji Catalog
|
|
|
+ |
🩲 |
briefs |
:briefs: |
@@ -19248,6 +20847,7 @@ Emoji Catalog
|
|
|
+ |
🩳 |
shorts |
:shorts: |
@@ -19260,6 +20860,7 @@ Emoji Catalog
|
|
|
+ |
🩴 |
thong sandal |
:thong_sandal: |
@@ -19272,6 +20873,7 @@ Emoji Catalog
|
- |
- |
+ - |
🩵 |
light blue heart |
:light_blue_heart: |
@@ -19284,6 +20886,7 @@ Emoji Catalog
|
- |
- |
+ - |
🩶 |
grey heart |
:grey_heart: |
@@ -19296,6 +20899,7 @@ Emoji Catalog
|
- |
- |
+ - |
🩷 |
pink heart |
:pink_heart: |
@@ -19308,6 +20912,7 @@ Emoji Catalog
|
|
|
+ |
🩸 |
drop of blood |
:drop_of_blood: |
@@ -19320,6 +20925,7 @@ Emoji Catalog
|
|
|
+ |
🩹 |
adhesive bandage |
:adhesive_bandage: |
@@ -19332,6 +20938,7 @@ Emoji Catalog
|
|
|
+ |
🩺 |
stethoscope |
:stethoscope: |
@@ -19344,6 +20951,7 @@ Emoji Catalog
|
|
|
+ |
🩻 |
x-ray |
:x-ray: |
@@ -19356,6 +20964,7 @@ Emoji Catalog
|
|
|
+ |
🩼 |
crutch |
:crutch: |
@@ -19368,6 +20977,7 @@ Emoji Catalog
|
|
|
+ |
🪀 |
yo-yo |
:yo-yo: |
@@ -19380,6 +20990,7 @@ Emoji Catalog
|
|
|
+ |
🪁 |
kite |
:kite: |
@@ -19392,6 +21003,7 @@ Emoji Catalog
|
|
|
+ |
🪂 |
parachute |
:parachute: |
@@ -19404,6 +21016,7 @@ Emoji Catalog
|
|
|
+ |
🪃 |
boomerang |
:boomerang: |
@@ -19416,6 +21029,7 @@ Emoji Catalog
|
|
|
+ |
🪄 |
magic wand |
:magic_wand: |
@@ -19428,6 +21042,7 @@ Emoji Catalog
|
|
|
+ |
🪅 |
pinata |
:pinata: |
@@ -19440,6 +21055,7 @@ Emoji Catalog
|
|
|
+ |
🪆 |
nesting dolls |
:nesting_dolls: |
@@ -19452,6 +21068,7 @@ Emoji Catalog
|
- |
- |
+ - |
🪇 |
maracas |
:maracas: |
@@ -19464,6 +21081,7 @@ Emoji Catalog
|
- |
- |
+ - |
🪈 |
flute |
:flute: |
@@ -19476,6 +21094,7 @@ Emoji Catalog
|
|
|
+ |
🪐 |
ringed planet |
:ringed_planet: |
@@ -19488,6 +21107,7 @@ Emoji Catalog
|
|
|
+ |
🪑 |
chair |
:chair: |
@@ -19500,6 +21120,7 @@ Emoji Catalog
|
|
|
+ |
🪒 |
razor |
:razor: |
@@ -19512,6 +21133,7 @@ Emoji Catalog
|
|
|
+ |
🪓 |
axe |
:axe: |
@@ -19524,6 +21146,7 @@ Emoji Catalog
|
|
|
+ |
🪔 |
diya lamp |
:diya_lamp: |
@@ -19536,6 +21159,7 @@ Emoji Catalog
|
|
|
+ |
🪕 |
banjo |
:banjo: |
@@ -19548,6 +21172,7 @@ Emoji Catalog
|
|
|
+ |
🪖 |
military helmet |
:military_helmet: |
@@ -19560,6 +21185,7 @@ Emoji Catalog
|
|
|
+ |
🪗 |
accordion |
:accordion: |
@@ -19572,6 +21198,7 @@ Emoji Catalog
|
|
|
+ |
🪘 |
long drum |
:long_drum: |
@@ -19584,6 +21211,7 @@ Emoji Catalog
|
|
|
+ |
🪙 |
coin |
:coin: |
@@ -19596,6 +21224,7 @@ Emoji Catalog
|
|
|
+ |
🪚 |
carpentry saw |
:carpentry_saw: |
@@ -19608,6 +21237,7 @@ Emoji Catalog
|
|
|
+ |
🪛 |
screwdriver |
:screwdriver: |
@@ -19620,6 +21250,7 @@ Emoji Catalog
|
|
|
+ |
🪜 |
ladder |
:ladder: |
@@ -19632,6 +21263,7 @@ Emoji Catalog
|
|
|
+ |
🪝 |
hook |
:hook: |
@@ -19644,6 +21276,7 @@ Emoji Catalog
|
|
|
+ |
🪞 |
mirror |
:mirror: |
@@ -19656,6 +21289,7 @@ Emoji Catalog
|
|
|
+ |
🪟 |
window |
:window: |
@@ -19668,6 +21302,7 @@ Emoji Catalog
|
|
|
+ |
🪠 |
plunger |
:plunger: |
@@ -19680,6 +21315,7 @@ Emoji Catalog
|
|
|
+ |
🪡 |
sewing needle |
:sewing_needle: |
@@ -19692,6 +21328,7 @@ Emoji Catalog
|
|
|
+ |
🪢 |
knot |
:knot: |
@@ -19704,6 +21341,7 @@ Emoji Catalog
|
|
|
+ |
🪣 |
bucket |
:bucket: |
@@ -19716,6 +21354,7 @@ Emoji Catalog
|
|
|
+ |
🪤 |
mouse trap |
:mouse_trap: |
@@ -19728,6 +21367,7 @@ Emoji Catalog
|
|
|
+ |
🪥 |
toothbrush |
:toothbrush: |
@@ -19740,6 +21380,7 @@ Emoji Catalog
|
|
|
+ |
🪦 |
headstone |
:headstone: |
@@ -19752,6 +21393,7 @@ Emoji Catalog
|
|
|
+ |
🪧 |
placard |
:placard: |
@@ -19764,6 +21406,7 @@ Emoji Catalog
|
|
|
+ |
🪨 |
rock |
:rock: |
@@ -19776,6 +21419,7 @@ Emoji Catalog
|
|
|
+ |
🪩 |
mirror ball |
:mirror_ball: |
@@ -19788,6 +21432,7 @@ Emoji Catalog
|
|
|
+ |
🪪 |
identification card |
:identification_card: |
@@ -19800,6 +21445,7 @@ Emoji Catalog
|
|
|
+ |
🪫 |
low battery |
:low_battery: |
@@ -19812,6 +21458,7 @@ Emoji Catalog
|
|
|
+ |
🪬 |
hamsa |
:hamsa: |
@@ -19824,6 +21471,7 @@ Emoji Catalog
|
- |
- |
+ - |
🪭 |
folding hand fan |
:folding_hand_fan: |
@@ -19836,6 +21484,7 @@ Emoji Catalog
|
- |
- |
+ - |
🪮 |
hair pick |
:hair_pick: |
@@ -19848,6 +21497,7 @@ Emoji Catalog
|
- |
- |
+ - |
🪯 |
khanda |
:khanda: |
@@ -19860,6 +21510,7 @@ Emoji Catalog
|
|
|
+ |
🪰 |
fly |
:fly: |
@@ -19872,6 +21523,7 @@ Emoji Catalog
|
|
|
+ |
🪱 |
worm |
:worm: |
@@ -19884,6 +21536,7 @@ Emoji Catalog
|
|
|
+ |
🪲 |
beetle |
:beetle: |
@@ -19896,6 +21549,7 @@ Emoji Catalog
|
|
|
+ |
🪳 |
cockroach |
:cockroach: |
@@ -19908,6 +21562,7 @@ Emoji Catalog
|
|
|
+ |
🪴 |
potted plant |
:potted_plant: |
@@ -19920,6 +21575,7 @@ Emoji Catalog
|
|
|
+ |
🪵 |
wood |
:wood: |
@@ -19932,6 +21588,7 @@ Emoji Catalog
|
|
|
+ |
🪶 |
feather |
:feather: |
@@ -19944,6 +21601,7 @@ Emoji Catalog
|
|
|
+ |
🪷 |
lotus |
:lotus: |
@@ -19956,6 +21614,7 @@ Emoji Catalog
|
|
|
+ |
🪸 |
coral |
:coral: |
@@ -19968,6 +21627,7 @@ Emoji Catalog
|
|
|
+ |
🪹 |
empty nest |
:empty_nest: |
@@ -19980,6 +21640,7 @@ Emoji Catalog
|
|
|
+ |
🪺 |
nest with eggs |
:nest_with_eggs: |
@@ -19992,6 +21653,7 @@ Emoji Catalog
|
- |
- |
+ - |
🪻 |
hyacinth |
:hyacinth: |
@@ -20004,6 +21666,7 @@ Emoji Catalog
|
- |
- |
+ - |
🪼 |
jellyfish |
:jellyfish: |
@@ -20016,6 +21679,7 @@ Emoji Catalog
|
- |
- |
+ - |
🪽 |
wing |
:wing: |
@@ -20028,6 +21692,7 @@ Emoji Catalog
|
- |
- |
+ - |
🪿 |
goose |
:goose: |
@@ -20040,6 +21705,7 @@ Emoji Catalog
|
|
|
+ |
🫀 |
anatomical heart |
:anatomical_heart: |
@@ -20052,6 +21718,7 @@ Emoji Catalog
|
|
|
+ |
🫁 |
lungs |
:lungs: |
@@ -20064,6 +21731,7 @@ Emoji Catalog
|
|
|
+ |
🫂 |
people hugging |
:people_hugging: |
@@ -20076,6 +21744,7 @@ Emoji Catalog
|
|
|
+ |
🫃 |
pregnant man |
:pregnant_man: |
@@ -20088,6 +21757,7 @@ Emoji Catalog
|
|
|
+ |
🫄 |
pregnant person |
:pregnant_person: |
@@ -20100,6 +21770,7 @@ Emoji Catalog
|
|
|
+ |
🫅 |
person with crown |
:person_with_crown: |
@@ -20112,6 +21783,7 @@ Emoji Catalog
|
- |
- |
+ - |
🫎 |
moose |
:moose: |
@@ -20124,6 +21796,7 @@ Emoji Catalog
|
- |
- |
+ - |
🫏 |
donkey |
:donkey: |
@@ -20136,6 +21809,7 @@ Emoji Catalog
|
|
|
+ |
🫐 |
blueberries |
:blueberries: |
@@ -20148,6 +21822,7 @@ Emoji Catalog
|
|
|
+ |
🫑 |
bell pepper |
:bell_pepper: |
@@ -20160,6 +21835,7 @@ Emoji Catalog
|
|
|
+ |
🫒 |
olive |
:olive: |
@@ -20172,6 +21848,7 @@ Emoji Catalog
|
|
|
+ |
🫓 |
flatbread |
:flatbread: |
@@ -20184,6 +21861,7 @@ Emoji Catalog
|
|
|
+ |
🫔 |
tamale |
:tamale: |
@@ -20196,6 +21874,7 @@ Emoji Catalog
|
|
|
+ |
🫕 |
fondue |
:fondue: |
@@ -20208,6 +21887,7 @@ Emoji Catalog
|
|
|
+ |
🫖 |
teapot |
:teapot: |
@@ -20220,6 +21900,7 @@ Emoji Catalog
|
|
|
+ |
🫗 |
pouring liquid |
:pouring_liquid: |
@@ -20232,6 +21913,7 @@ Emoji Catalog
|
|
|
+ |
🫘 |
beans |
:beans: |
@@ -20244,6 +21926,7 @@ Emoji Catalog
|
|
|
+ |
🫙 |
jar |
:jar: |
@@ -20256,6 +21939,7 @@ Emoji Catalog
|
- |
- |
+ - |
🫚 |
ginger root |
:ginger_root: |
@@ -20268,6 +21952,7 @@ Emoji Catalog
|
- |
- |
+ - |
🫛 |
pea pod |
:pea_pod: |
@@ -20280,6 +21965,7 @@ Emoji Catalog
|
|
|
+ |
🫠 |
melting face |
:melting_face: |
@@ -20292,6 +21978,7 @@ Emoji Catalog
|
|
|
+ |
🫡 |
saluting face |
:saluting_face: |
@@ -20304,6 +21991,7 @@ Emoji Catalog
|
|
|
+ |
🫢 |
face with open eyes and hand over mouth |
:face_with_open_eyes_and_hand_over_mouth: |
@@ -20316,6 +22004,7 @@ Emoji Catalog
|
|
|
+ |
🫣 |
face with peeking eye |
:face_with_peeking_eye: |
@@ -20328,6 +22017,7 @@ Emoji Catalog
|
|
|
+ |
🫤 |
face with diagonal mouth |
:face_with_diagonal_mouth: |
@@ -20340,6 +22030,7 @@ Emoji Catalog
|
|
|
+ |
🫥 |
dotted line face |
:dotted_line_face: |
@@ -20352,6 +22043,7 @@ Emoji Catalog
|
|
|
+ |
🫦 |
biting lip |
:biting_lip: |
@@ -20364,6 +22056,7 @@ Emoji Catalog
|
|
|
+ |
🫧 |
bubbles |
:bubbles: |
@@ -20376,6 +22069,7 @@ Emoji Catalog
|
- |
- |
+ - |
🫨 |
shaking face |
:shaking_face: |
@@ -20388,6 +22082,7 @@ Emoji Catalog
|
|
|
+ |
🫰 |
hand with index finger and thumb crossed |
:hand_with_index_finger_and_thumb_crossed: |
@@ -20400,6 +22095,7 @@ Emoji Catalog
|
|
|
+ |
🫱 |
rightwards hand |
:rightwards_hand: |
@@ -20412,6 +22108,7 @@ Emoji Catalog
|
|
|
+ |
🫲 |
leftwards hand |
:leftwards_hand: |
@@ -20424,6 +22121,7 @@ Emoji Catalog
|
|
|
+ |
🫳 |
palm down hand |
:palm_down_hand: |
@@ -20436,6 +22134,7 @@ Emoji Catalog
|
|
|
+ |
🫴 |
palm up hand |
:palm_up_hand: |
@@ -20448,6 +22147,7 @@ Emoji Catalog
|
|
|
+ |
🫵 |
index pointing at the viewer |
:index_pointing_at_the_viewer: |
@@ -20460,6 +22160,7 @@ Emoji Catalog
|
|
|
+ |
🫶 |
heart hands |
:heart_hands: |
@@ -20472,6 +22173,7 @@ Emoji Catalog
|
- |
- |
+ - |
🫷 |
leftwards pushing hand |
:leftwards_pushing_hand: |
@@ -20484,6 +22186,7 @@ Emoji Catalog
|
- |
- |
+ - |
🫸 |
rightwards pushing hand |
:rightwards_pushing_hand: |
@@ -20496,6 +22199,7 @@ Emoji Catalog
|
|
|
+ |
‼️ |
double exclamation mark |
:bangbang: |
@@ -20508,6 +22212,7 @@ Emoji Catalog
|
|
|
+ |
⁉️ |
exclamation question mark |
:interrobang: |
@@ -20520,6 +22225,7 @@ Emoji Catalog
|
|
|
+ |
™️ |
trade mark sign |
:tm: |
@@ -20532,6 +22238,7 @@ Emoji Catalog
|
|
|
+ |
ℹ️ |
information source |
:information_source: |
@@ -20544,6 +22251,7 @@ Emoji Catalog
|
|
|
+ |
↔️ |
left right arrow |
:left_right_arrow: |
@@ -20556,6 +22264,7 @@ Emoji Catalog
|
|
|
+ |
↕️ |
up down arrow |
:arrow_up_down: |
@@ -20568,6 +22277,7 @@ Emoji Catalog
|
|
|
+ |
↖️ |
north west arrow |
:arrow_upper_left: |
@@ -20580,6 +22290,7 @@ Emoji Catalog
|
|
|
+ |
↗️ |
north east arrow |
:arrow_upper_right: |
@@ -20592,6 +22303,7 @@ Emoji Catalog
|
|
|
+ |
↘️ |
south east arrow |
:arrow_lower_right: |
@@ -20604,6 +22316,7 @@ Emoji Catalog
|
|
|
+ |
↙️ |
south west arrow |
:arrow_lower_left: |
@@ -20616,6 +22329,7 @@ Emoji Catalog
|
|
|
+ |
↩️ |
leftwards arrow with hook |
:leftwards_arrow_with_hook: |
@@ -20628,6 +22342,7 @@ Emoji Catalog
|
|
|
+ |
↪️ |
rightwards arrow with hook |
:arrow_right_hook: |
@@ -20640,6 +22355,7 @@ Emoji Catalog
|
|
|
+ |
⌚ |
watch |
:watch: |
@@ -20652,6 +22368,7 @@ Emoji Catalog
|
|
|
+ |
⌛ |
hourglass |
:hourglass: |
@@ -20664,6 +22381,7 @@ Emoji Catalog
|
|
|
+ |
⌨️ |
keyboard |
:keyboard: |
@@ -20676,6 +22394,7 @@ Emoji Catalog
|
|
|
+ |
⏏️ |
eject button |
:eject: |
@@ -20688,6 +22407,7 @@ Emoji Catalog
|
|
|
+ |
⏩ |
black right-pointing double triangle |
:fast_forward: |
@@ -20700,6 +22420,7 @@ Emoji Catalog
|
|
|
+ |
⏪ |
black left-pointing double triangle |
:rewind: |
@@ -20712,6 +22433,7 @@ Emoji Catalog
|
|
|
+ |
⏫ |
black up-pointing double triangle |
:arrow_double_up: |
@@ -20724,6 +22446,7 @@ Emoji Catalog
|
|
|
+ |
⏬ |
black down-pointing double triangle |
:arrow_double_down: |
@@ -20736,6 +22459,7 @@ Emoji Catalog
|
|
|
+ |
⏭️ |
next track button |
:black_right_pointing_double_triangle_with_vertical_bar: |
@@ -20748,6 +22472,7 @@ Emoji Catalog
|
|
|
+ |
⏮️ |
last track button |
:black_left_pointing_double_triangle_with_vertical_bar: |
@@ -20760,6 +22485,7 @@ Emoji Catalog
|
|
|
+ |
⏯️ |
play or pause button |
:black_right_pointing_triangle_with_double_vertical_bar: |
@@ -20772,6 +22498,7 @@ Emoji Catalog
|
|
|
+ |
⏰ |
alarm clock |
:alarm_clock: |
@@ -20784,6 +22511,7 @@ Emoji Catalog
|
|
|
+ |
⏱️ |
stopwatch |
:stopwatch: |
@@ -20796,6 +22524,7 @@ Emoji Catalog
|
|
|
+ |
⏲️ |
timer clock |
:timer_clock: |
@@ -20808,6 +22537,7 @@ Emoji Catalog
|
|
|
+ |
⏳ |
hourglass with flowing sand |
:hourglass_flowing_sand: |
@@ -20820,6 +22550,7 @@ Emoji Catalog
|
|
|
+ |
⏸️ |
pause button |
:double_vertical_bar: |
@@ -20832,6 +22563,7 @@ Emoji Catalog
|
|
|
+ |
⏹️ |
stop button |
:black_square_for_stop: |
@@ -20844,6 +22576,7 @@ Emoji Catalog
|
|
|
+ |
⏺️ |
record button |
:black_circle_for_record: |
@@ -20856,6 +22589,7 @@ Emoji Catalog
|
|
|
+ |
Ⓜ️ |
circled latin capital letter m |
:m: |
@@ -20868,6 +22602,7 @@ Emoji Catalog
|
|
|
+ |
▪️ |
black small square |
:black_small_square: |
@@ -20880,6 +22615,7 @@ Emoji Catalog
|
|
|
+ |
▫️ |
white small square |
:white_small_square: |
@@ -20892,6 +22628,7 @@ Emoji Catalog
|
|
|
+ |
▶️ |
black right-pointing triangle |
:arrow_forward: |
@@ -20904,6 +22641,7 @@ Emoji Catalog
|
|
|
+ |
◀️ |
black left-pointing triangle |
:arrow_backward: |
@@ -20916,6 +22654,7 @@ Emoji Catalog
|
|
|
+ |
◻️ |
white medium square |
:white_medium_square: |
@@ -20928,6 +22667,7 @@ Emoji Catalog
|
|
|
+ |
◼️ |
black medium square |
:black_medium_square: |
@@ -20940,6 +22680,7 @@ Emoji Catalog
|
|
|
+ |
◽ |
white medium small square |
:white_medium_small_square: |
@@ -20952,6 +22693,7 @@ Emoji Catalog
|
|
|
+ |
◾ |
black medium small square |
:black_medium_small_square: |
@@ -20964,6 +22706,7 @@ Emoji Catalog
|
|
|
+ |
☀️ |
black sun with rays |
:sunny: |
@@ -20976,6 +22719,7 @@ Emoji Catalog
|
|
|
+ |
☁️ |
cloud |
:cloud: |
@@ -20988,6 +22732,7 @@ Emoji Catalog
|
|
|
+ |
☂️ |
umbrella |
:umbrella: |
@@ -21000,6 +22745,7 @@ Emoji Catalog
|
|
|
+ |
☃️ |
snowman |
:snowman: |
@@ -21012,6 +22758,7 @@ Emoji Catalog
|
|
|
+ |
☄️ |
comet |
:comet: |
@@ -21024,6 +22771,7 @@ Emoji Catalog
|
|
|
+ |
☎️ |
black telephone |
:phone: |
@@ -21036,6 +22784,7 @@ Emoji Catalog
|
|
|
+ |
☑️ |
ballot box with check |
:ballot_box_with_check: |
@@ -21048,6 +22797,7 @@ Emoji Catalog
|
|
|
+ |
☔ |
umbrella with rain drops |
:umbrella_with_rain_drops: |
@@ -21060,6 +22810,7 @@ Emoji Catalog
|
|
|
+ |
☕ |
hot beverage |
:coffee: |
@@ -21072,6 +22823,7 @@ Emoji Catalog
|
|
|
+ |
☘️ |
shamrock |
:shamrock: |
@@ -21084,6 +22836,7 @@ Emoji Catalog
|
|
|
+ |
☝️ |
white up pointing index |
:point_up: |
@@ -21096,6 +22849,7 @@ Emoji Catalog
|
|
|
+ |
☠️ |
skull and crossbones |
:skull_and_crossbones: |
@@ -21108,6 +22862,7 @@ Emoji Catalog
|
|
|
+ |
☢️ |
radioactive |
:radioactive_sign: |
@@ -21120,6 +22875,7 @@ Emoji Catalog
|
|
|
+ |
☣️ |
biohazard |
:biohazard_sign: |
@@ -21132,6 +22888,7 @@ Emoji Catalog
|
|
|
+ |
☦️ |
orthodox cross |
:orthodox_cross: |
@@ -21144,6 +22901,7 @@ Emoji Catalog
|
|
|
+ |
☪️ |
star and crescent |
:star_and_crescent: |
@@ -21156,6 +22914,7 @@ Emoji Catalog
|
|
|
+ |
☮️ |
peace symbol |
:peace_symbol: |
@@ -21168,6 +22927,7 @@ Emoji Catalog
|
|
|
+ |
☯️ |
yin yang |
:yin_yang: |
@@ -21180,6 +22940,7 @@ Emoji Catalog
|
|
|
+ |
☸️ |
wheel of dharma |
:wheel_of_dharma: |
@@ -21192,6 +22953,7 @@ Emoji Catalog
|
|
|
+ |
☹️ |
frowning face |
:white_frowning_face: |
@@ -21204,6 +22966,7 @@ Emoji Catalog
|
|
|
+ |
☺️ |
white smiling face |
:relaxed: |
@@ -21216,6 +22979,7 @@ Emoji Catalog
|
|
|
+ |
♀️ |
female sign |
:female_sign: |
@@ -21228,6 +22992,7 @@ Emoji Catalog
|
|
|
+ |
♂️ |
male sign |
:male_sign: |
@@ -21240,6 +23005,7 @@ Emoji Catalog
|
|
|
+ |
♈ |
aries |
:aries: |
@@ -21252,6 +23018,7 @@ Emoji Catalog
|
|
|
+ |
♉ |
taurus |
:taurus: |
@@ -21264,6 +23031,7 @@ Emoji Catalog
|
|
|
+ |
♊ |
gemini |
:gemini: |
@@ -21276,6 +23044,7 @@ Emoji Catalog
|
|
|
+ |
♋ |
cancer |
:cancer: |
@@ -21288,6 +23057,7 @@ Emoji Catalog
|
|
|
+ |
♌ |
leo |
:leo: |
@@ -21300,6 +23070,7 @@ Emoji Catalog
|
|
|
+ |
♍ |
virgo |
:virgo: |
@@ -21312,6 +23083,7 @@ Emoji Catalog
|
|
|
+ |
♎ |
libra |
:libra: |
@@ -21324,6 +23096,7 @@ Emoji Catalog
|
|
|
+ |
♏ |
scorpius |
:scorpius: |
@@ -21336,6 +23109,7 @@ Emoji Catalog
|
|
|
+ |
♐ |
sagittarius |
:sagittarius: |
@@ -21348,6 +23122,7 @@ Emoji Catalog
|
|
|
+ |
♑ |
capricorn |
:capricorn: |
@@ -21360,6 +23135,7 @@ Emoji Catalog
|
|
|
+ |
♒ |
aquarius |
:aquarius: |
@@ -21372,6 +23148,7 @@ Emoji Catalog
|
|
|
+ |
♓ |
pisces |
:pisces: |
@@ -21384,6 +23161,7 @@ Emoji Catalog
|
|
|
+ |
♟️ |
chess pawn |
:chess_pawn: |
@@ -21396,6 +23174,7 @@ Emoji Catalog
|
|
|
+ |
♠️ |
black spade suit |
:spades: |
@@ -21408,6 +23187,7 @@ Emoji Catalog
|
|
|
+ |
♣️ |
black club suit |
:clubs: |
@@ -21420,6 +23200,7 @@ Emoji Catalog
|
|
|
+ |
♥️ |
black heart suit |
:hearts: |
@@ -21432,6 +23213,7 @@ Emoji Catalog
|
|
|
+ |
♦️ |
black diamond suit |
:diamonds: |
@@ -21444,6 +23226,7 @@ Emoji Catalog
|
|
|
+ |
♨️ |
hot springs |
:hotsprings: |
@@ -21456,6 +23239,7 @@ Emoji Catalog
|
|
|
+ |
♻️ |
black universal recycling symbol |
:recycle: |
@@ -21468,6 +23252,7 @@ Emoji Catalog
|
|
|
+ |
♾️ |
infinity |
:infinity: |
@@ -21480,6 +23265,7 @@ Emoji Catalog
|
|
|
+ |
♿ |
wheelchair symbol |
:wheelchair: |
@@ -21492,6 +23278,7 @@ Emoji Catalog
|
|
|
+ |
⚒️ |
hammer and pick |
:hammer_and_pick: |
@@ -21504,6 +23291,7 @@ Emoji Catalog
|
|
|
+ |
⚓ |
anchor |
:anchor: |
@@ -21516,6 +23304,7 @@ Emoji Catalog
|
|
|
+ |
⚔️ |
crossed swords |
:crossed_swords: |
@@ -21528,6 +23317,7 @@ Emoji Catalog
|
|
|
+ |
⚕️ |
medical symbol |
:medical_symbol: |
@@ -21540,6 +23330,7 @@ Emoji Catalog
|
|
|
+ |
⚖️ |
balance scale |
:scales: |
@@ -21552,6 +23343,7 @@ Emoji Catalog
|
|
|
+ |
⚗️ |
alembic |
:alembic: |
@@ -21564,6 +23356,7 @@ Emoji Catalog
|
|
|
+ |
⚙️ |
gear |
:gear: |
@@ -21576,6 +23369,7 @@ Emoji Catalog
|
|
|
+ |
⚛️ |
atom symbol |
:atom_symbol: |
@@ -21588,6 +23382,7 @@ Emoji Catalog
|
|
|
+ |
⚜️ |
fleur-de-lis |
:fleur_de_lis: |
@@ -21600,6 +23395,7 @@ Emoji Catalog
|
|
|
+ |
⚠️ |
warning sign |
:warning: |
@@ -21612,6 +23408,7 @@ Emoji Catalog
|
|
|
+ |
⚡ |
high voltage sign |
:zap: |
@@ -21624,6 +23421,7 @@ Emoji Catalog
|
|
|
+ |
⚧️ |
transgender symbol |
:transgender_symbol: |
@@ -21636,6 +23434,7 @@ Emoji Catalog
|
|
|
+ |
⚪ |
medium white circle |
:white_circle: |
@@ -21648,6 +23447,7 @@ Emoji Catalog
|
|
|
+ |
⚫ |
medium black circle |
:black_circle: |
@@ -21660,6 +23460,7 @@ Emoji Catalog
|
|
|
+ |
⚰️ |
coffin |
:coffin: |
@@ -21672,6 +23473,7 @@ Emoji Catalog
|
|
|
+ |
⚱️ |
funeral urn |
:funeral_urn: |
@@ -21684,6 +23486,7 @@ Emoji Catalog
|
|
|
+ |
⚽ |
soccer ball |
:soccer: |
@@ -21696,6 +23499,7 @@ Emoji Catalog
|
|
|
+ |
⚾ |
baseball |
:baseball: |
@@ -21708,6 +23512,7 @@ Emoji Catalog
|
|
|
+ |
⛄ |
snowman without snow |
:snowman_without_snow: |
@@ -21720,6 +23525,7 @@ Emoji Catalog
|
|
|
+ |
⛅ |
sun behind cloud |
:partly_sunny: |
@@ -21732,6 +23538,7 @@ Emoji Catalog
|
|
|
+ |
⛈️ |
cloud with lightning and rain |
:thunder_cloud_and_rain: |
@@ -21744,6 +23551,7 @@ Emoji Catalog
|
|
|
+ |
⛎ |
ophiuchus |
:ophiuchus: |
@@ -21756,6 +23564,7 @@ Emoji Catalog
|
|
|
+ |
⛏️ |
pick |
:pick: |
@@ -21768,6 +23577,7 @@ Emoji Catalog
|
|
|
+ |
⛑️ |
rescue worker’s helmet |
:helmet_with_white_cross: |
@@ -21780,6 +23590,7 @@ Emoji Catalog
|
|
|
+ |
⛓️ |
chains |
:chains: |
@@ -21792,6 +23603,7 @@ Emoji Catalog
|
|
|
+ |
⛔ |
no entry |
:no_entry: |
@@ -21804,6 +23616,7 @@ Emoji Catalog
|
|
|
+ |
⛩️ |
shinto shrine |
:shinto_shrine: |
@@ -21816,6 +23629,7 @@ Emoji Catalog
|
|
|
+ |
⛪ |
church |
:church: |
@@ -21828,6 +23642,7 @@ Emoji Catalog
|
|
|
+ |
⛰️ |
mountain |
:mountain: |
@@ -21840,6 +23655,7 @@ Emoji Catalog
|
|
|
+ |
⛱️ |
umbrella on ground |
:umbrella_on_ground: |
@@ -21852,6 +23668,7 @@ Emoji Catalog
|
|
|
+ |
⛲ |
fountain |
:fountain: |
@@ -21864,6 +23681,7 @@ Emoji Catalog
|
|
|
+ |
⛳ |
flag in hole |
:golf: |
@@ -21876,6 +23694,7 @@ Emoji Catalog
|
|
|
+ |
⛴️ |
ferry |
:ferry: |
@@ -21888,6 +23707,7 @@ Emoji Catalog
|
|
|
+ |
⛵ |
sailboat |
:boat: |
@@ -21900,6 +23720,7 @@ Emoji Catalog
|
|
|
+ |
⛷️ |
skier |
:skier: |
@@ -21912,6 +23733,7 @@ Emoji Catalog
|
|
|
+ |
⛸️ |
ice skate |
:ice_skate: |
@@ -21924,6 +23746,7 @@ Emoji Catalog
|
|
- |
+ |
⛹️♀️ |
woman bouncing ball |
:woman-bouncing-ball: |
@@ -21936,6 +23759,7 @@ Emoji Catalog
|
|
- |
+ |
⛹️♂️ |
man bouncing ball |
:man-bouncing-ball: |
@@ -21948,6 +23772,7 @@ Emoji Catalog
|
|
|
+ |
⛹️ |
person bouncing ball |
:person_with_ball: |
@@ -21960,6 +23785,7 @@ Emoji Catalog
|
|
|
+ |
⛺ |
tent |
:tent: |
@@ -21972,6 +23798,7 @@ Emoji Catalog
|
|
|
+ |
⛽ |
fuel pump |
:fuelpump: |
@@ -21984,6 +23811,7 @@ Emoji Catalog
|
|
|
+ |
✂️ |
black scissors |
:scissors: |
@@ -21996,6 +23824,7 @@ Emoji Catalog
|
|
|
+ |
✅ |
white heavy check mark |
:white_check_mark: |
@@ -22008,6 +23837,7 @@ Emoji Catalog
|
|
|
+ |
✈️ |
airplane |
:airplane: |
@@ -22020,6 +23850,7 @@ Emoji Catalog
|
|
|
+ |
✉️ |
envelope |
:email: |
@@ -22032,6 +23863,7 @@ Emoji Catalog
|
|
|
+ |
✊ |
raised fist |
:fist: |
@@ -22044,6 +23876,7 @@ Emoji Catalog
|
|
|
+ |
✋ |
raised hand |
:hand: |
@@ -22056,6 +23889,7 @@ Emoji Catalog
|
|
|
+ |
✌️ |
victory hand |
:v: |
@@ -22068,6 +23902,7 @@ Emoji Catalog
|
|
|
+ |
✍️ |
writing hand |
:writing_hand: |
@@ -22080,6 +23915,7 @@ Emoji Catalog
|
|
|
+ |
✏️ |
pencil |
:pencil2: |
@@ -22092,6 +23928,7 @@ Emoji Catalog
|
|
|
+ |
✒️ |
black nib |
:black_nib: |
@@ -22104,6 +23941,7 @@ Emoji Catalog
|
|
|
+ |
✔️ |
heavy check mark |
:heavy_check_mark: |
@@ -22116,6 +23954,7 @@ Emoji Catalog
|
|
|
+ |
✖️ |
heavy multiplication x |
:heavy_multiplication_x: |
@@ -22128,6 +23967,7 @@ Emoji Catalog
|
|
|
+ |
✝️ |
latin cross |
:latin_cross: |
@@ -22140,6 +23980,7 @@ Emoji Catalog
|
|
|
+ |
✡️ |
star of david |
:star_of_david: |
@@ -22152,6 +23993,7 @@ Emoji Catalog
|
|
|
+ |
✨ |
sparkles |
:sparkles: |
@@ -22164,6 +24006,7 @@ Emoji Catalog
|
|
|
+ |
✳️ |
eight spoked asterisk |
:eight_spoked_asterisk: |
@@ -22176,6 +24019,7 @@ Emoji Catalog
|
|
|
+ |
✴️ |
eight pointed black star |
:eight_pointed_black_star: |
@@ -22188,6 +24032,7 @@ Emoji Catalog
|
|
|
+ |
❄️ |
snowflake |
:snowflake: |
@@ -22200,6 +24045,7 @@ Emoji Catalog
|
|
|
+ |
❇️ |
sparkle |
:sparkle: |
@@ -22212,6 +24058,7 @@ Emoji Catalog
|
|
|
+ |
❌ |
cross mark |
:x: |
@@ -22224,6 +24071,7 @@ Emoji Catalog
|
|
|
+ |
❎ |
negative squared cross mark |
:negative_squared_cross_mark: |
@@ -22236,6 +24084,7 @@ Emoji Catalog
|
|
|
+ |
❓ |
black question mark ornament |
:question: |
@@ -22248,6 +24097,7 @@ Emoji Catalog
|
|
|
+ |
❔ |
white question mark ornament |
:grey_question: |
@@ -22260,6 +24110,7 @@ Emoji Catalog
|
|
|
+ |
❕ |
white exclamation mark ornament |
:grey_exclamation: |
@@ -22272,6 +24123,7 @@ Emoji Catalog
|
|
|
+ |
❗ |
heavy exclamation mark symbol |
:exclamation: |
@@ -22284,6 +24136,7 @@ Emoji Catalog
|
|
|
+ |
❣️ |
heart exclamation |
:heavy_heart_exclamation_mark_ornament: |
@@ -22296,6 +24149,7 @@ Emoji Catalog
|
|
|
+ |
❤️🔥 |
heart on fire |
:heart_on_fire: |
@@ -22308,6 +24162,7 @@ Emoji Catalog
|
|
|
+ |
❤️🩹 |
mending heart |
:mending_heart: |
@@ -22320,6 +24175,7 @@ Emoji Catalog
|
|
|
+ |
❤️ |
heavy black heart |
:heart: |
@@ -22332,6 +24188,7 @@ Emoji Catalog
|
|
|
+ |
➕ |
heavy plus sign |
:heavy_plus_sign: |
@@ -22344,6 +24201,7 @@ Emoji Catalog
|
|
|
+ |
➖ |
heavy minus sign |
:heavy_minus_sign: |
@@ -22356,6 +24214,7 @@ Emoji Catalog
|
|
|
+ |
➗ |
heavy division sign |
:heavy_division_sign: |
@@ -22368,6 +24227,7 @@ Emoji Catalog
|
|
|
+ |
➡️ |
black rightwards arrow |
:arrow_right: |
@@ -22380,6 +24240,7 @@ Emoji Catalog
|
|
|
+ |
➰ |
curly loop |
:curly_loop: |
@@ -22392,6 +24253,7 @@ Emoji Catalog
|
|
|
+ |
➿ |
double curly loop |
:loop: |
@@ -22404,6 +24266,7 @@ Emoji Catalog
|
|
|
+ |
⤴️ |
arrow pointing rightwards then curving upwards |
:arrow_heading_up: |
@@ -22416,6 +24279,7 @@ Emoji Catalog
|
|
|
+ |
⤵️ |
arrow pointing rightwards then curving downwards |
:arrow_heading_down: |
@@ -22428,6 +24292,7 @@ Emoji Catalog
|
|
|
+ |
⬅️ |
leftwards black arrow |
:arrow_left: |
@@ -22440,6 +24305,7 @@ Emoji Catalog
|
|
|
+ |
⬆️ |
upwards black arrow |
:arrow_up: |
@@ -22452,6 +24318,7 @@ Emoji Catalog
|
|
|
+ |
⬇️ |
downwards black arrow |
:arrow_down: |
@@ -22464,6 +24331,7 @@ Emoji Catalog
|
|
|
+ |
⬛ |
black large square |
:black_large_square: |
@@ -22476,6 +24344,7 @@ Emoji Catalog
|
|
|
+ |
⬜ |
white large square |
:white_large_square: |
@@ -22488,6 +24357,7 @@ Emoji Catalog
|
|
|
+ |
⭐ |
white medium star |
:star: |
@@ -22500,6 +24370,7 @@ Emoji Catalog
|
|
|
+ |
⭕ |
heavy large circle |
:o: |
@@ -22512,6 +24383,7 @@ Emoji Catalog
|
|
|
+ |
〰️ |
wavy dash |
:wavy_dash: |
@@ -22524,6 +24396,7 @@ Emoji Catalog
|
|
|
+ |
〽️ |
part alternation mark |
:part_alternation_mark: |
@@ -22536,6 +24409,7 @@ Emoji Catalog
|
|
|
+ |
㊗️ |
circled ideograph congratulation |
:congratulations: |
@@ -22548,6 +24422,7 @@ Emoji Catalog
|
|
|
+ |
㊙️ |
circled ideograph secret |
:secret: |