diff --git a/app/assets/javascripts/components/emoji.jsx b/app/assets/javascripts/components/emoji.jsx index c93c07c74b2..eee657b86c8 100644 --- a/app/assets/javascripts/components/emoji.jsx +++ b/app/assets/javascripts/components/emoji.jsx @@ -1,9 +1,35 @@ import emojione from 'emojione'; -emojione.imageType = 'png'; -emojione.sprites = false; -emojione.imagePathPNG = '/emoji/'; +const toImage = str => shortnameToImage(unicodeToImage(str)); + +const unicodeToImage = str => { + const mappedUnicode = emojione.mapUnicodeToShort(); + + return str.replace(emojione.regUnicode, unicodeChar => { + if (typeof unicodeChar === 'undefined' || unicodeChar === '' || !(unicodeChar in emojione.jsEscapeMap)) { + return unicodeChar; + } + + const unicode = emojione.jsEscapeMap[unicodeChar]; + const short = mappedUnicode[unicode]; + const filename = emojione.emojioneList[short].fname; + const alt = emojione.convert(unicode.toUpperCase()); + + return `${alt}`; + }); +}; + +const shortnameToImage = str => str.replace(emojione.regShortNames, shortname => { + if (typeof shortname === 'undefined' || shortname === '' || !(shortname in emojione.emojioneList)) { + return shortname; + } + + const unicode = emojione.emojioneList[shortname].unicode[emojione.emojioneList[shortname].unicode.length - 1]; + const alt = emojione.convert(unicode.toUpperCase()); + + return `${alt}`; +}); export default function emojify(text) { - return emojione.toImage(text); + return toImage(text); }; diff --git a/app/assets/javascripts/components/features/compose/components/emoji_picker_dropdown.jsx b/app/assets/javascripts/components/features/compose/components/emoji_picker_dropdown.jsx index 471f0e1bba6..1920b29bfb2 100644 --- a/app/assets/javascripts/components/features/compose/components/emoji_picker_dropdown.jsx +++ b/app/assets/javascripts/components/features/compose/components/emoji_picker_dropdown.jsx @@ -43,7 +43,7 @@ const EmojiPickerDropdown = React.createClass({ return ( - 🙂 + 🙂 diff --git a/app/assets/javascripts/components/features/getting_started/index.jsx b/app/assets/javascripts/components/features/getting_started/index.jsx index 846e4f53ba6..6f9e988ba17 100644 --- a/app/assets/javascripts/components/features/getting_started/index.jsx +++ b/app/assets/javascripts/components/features/getting_started/index.jsx @@ -41,7 +41,7 @@ const GettingStarted = ({ intl, me }) => { -
+

diff --git a/app/assets/stylesheets/components.scss b/app/assets/stylesheets/components.scss index 45f93ef90ac..04d37546c88 100644 --- a/app/assets/stylesheets/components.scss +++ b/app/assets/stylesheets/components.scss @@ -771,6 +771,7 @@ a.status__content__spoiler-link { padding: 0; display: flex; flex-direction: column; + overflow: hidden; overflow-y: auto; flex-grow: 1; } diff --git a/package.json b/package.json index 35ce56ee52f..14c8abe7945 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ "chai-enzyme": "^0.6.1", "css-loader": "^0.26.2", "dotenv": "^4.0.0", - "emojione": "latest", + "emojione": "^2.2.7", "emojione-picker": "^2.0.1", "enzyme": "^2.7.1", "es6-promise": "^3.2.1", diff --git a/public/emoji/0023-20e3.svg b/public/emoji/0023-20e3.svg new file mode 100644 index 00000000000..a29d90113c2 --- /dev/null +++ b/public/emoji/0023-20e3.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/0023.svg b/public/emoji/0023.svg new file mode 100644 index 00000000000..76c606dd03d --- /dev/null +++ b/public/emoji/0023.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/002a-20e3.svg b/public/emoji/002a-20e3.svg new file mode 100644 index 00000000000..bc3b2e6eb9f --- /dev/null +++ b/public/emoji/002a-20e3.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/002a.svg b/public/emoji/002a.svg new file mode 100644 index 00000000000..25841490429 --- /dev/null +++ b/public/emoji/002a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/0030-20e3.svg b/public/emoji/0030-20e3.svg new file mode 100644 index 00000000000..57dc8890923 --- /dev/null +++ b/public/emoji/0030-20e3.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/0030.svg b/public/emoji/0030.svg new file mode 100644 index 00000000000..8ea076ce9c1 --- /dev/null +++ b/public/emoji/0030.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/0031-20e3.svg b/public/emoji/0031-20e3.svg new file mode 100644 index 00000000000..e18178a177a --- /dev/null +++ b/public/emoji/0031-20e3.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/0031.svg b/public/emoji/0031.svg new file mode 100644 index 00000000000..c0ca63e68dd --- /dev/null +++ b/public/emoji/0031.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/0032-20e3.svg b/public/emoji/0032-20e3.svg new file mode 100644 index 00000000000..c2eb5bd504e --- /dev/null +++ b/public/emoji/0032-20e3.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/0032.svg b/public/emoji/0032.svg new file mode 100644 index 00000000000..abd01370aed --- /dev/null +++ b/public/emoji/0032.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/0033-20e3.svg b/public/emoji/0033-20e3.svg new file mode 100644 index 00000000000..29527601379 --- /dev/null +++ b/public/emoji/0033-20e3.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/0033.svg b/public/emoji/0033.svg new file mode 100644 index 00000000000..3136230ffdd --- /dev/null +++ b/public/emoji/0033.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/0034-20e3.svg b/public/emoji/0034-20e3.svg new file mode 100644 index 00000000000..f530a75424d --- /dev/null +++ b/public/emoji/0034-20e3.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/0034.svg b/public/emoji/0034.svg new file mode 100644 index 00000000000..1722ee95868 --- /dev/null +++ b/public/emoji/0034.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/0035-20e3.svg b/public/emoji/0035-20e3.svg new file mode 100644 index 00000000000..dc4e1d81a5e --- /dev/null +++ b/public/emoji/0035-20e3.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/0035.svg b/public/emoji/0035.svg new file mode 100644 index 00000000000..3e7717f08bd --- /dev/null +++ b/public/emoji/0035.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/0036-20e3.svg b/public/emoji/0036-20e3.svg new file mode 100644 index 00000000000..9ce3a594fed --- /dev/null +++ b/public/emoji/0036-20e3.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/0036.svg b/public/emoji/0036.svg new file mode 100644 index 00000000000..2ff6d93906b --- /dev/null +++ b/public/emoji/0036.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/0037-20e3.svg b/public/emoji/0037-20e3.svg new file mode 100644 index 00000000000..1f01b9db89a --- /dev/null +++ b/public/emoji/0037-20e3.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/0037.svg b/public/emoji/0037.svg new file mode 100644 index 00000000000..6079e493066 --- /dev/null +++ b/public/emoji/0037.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/0038-20e3.svg b/public/emoji/0038-20e3.svg new file mode 100644 index 00000000000..b6ed90a32c1 --- /dev/null +++ b/public/emoji/0038-20e3.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/0038.svg b/public/emoji/0038.svg new file mode 100644 index 00000000000..014bf263185 --- /dev/null +++ b/public/emoji/0038.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/0039-20e3.svg b/public/emoji/0039-20e3.svg new file mode 100644 index 00000000000..c883419705a --- /dev/null +++ b/public/emoji/0039-20e3.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/0039.svg b/public/emoji/0039.svg new file mode 100644 index 00000000000..afda6d7b6d8 --- /dev/null +++ b/public/emoji/0039.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/00a9.svg b/public/emoji/00a9.svg new file mode 100644 index 00000000000..68a7702274f --- /dev/null +++ b/public/emoji/00a9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/00ae.svg b/public/emoji/00ae.svg new file mode 100644 index 00000000000..8b084f6bf65 --- /dev/null +++ b/public/emoji/00ae.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f004.svg b/public/emoji/1f004.svg new file mode 100644 index 00000000000..45867fb5a2f --- /dev/null +++ b/public/emoji/1f004.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f0cf.svg b/public/emoji/1f0cf.svg new file mode 100644 index 00000000000..45ae8abccd7 --- /dev/null +++ b/public/emoji/1f0cf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f170.svg b/public/emoji/1f170.svg new file mode 100644 index 00000000000..a2ed41f334b --- /dev/null +++ b/public/emoji/1f170.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f171.svg b/public/emoji/1f171.svg new file mode 100644 index 00000000000..d0f8e64940d --- /dev/null +++ b/public/emoji/1f171.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f17e.svg b/public/emoji/1f17e.svg new file mode 100644 index 00000000000..8844efa531f --- /dev/null +++ b/public/emoji/1f17e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f17f.svg b/public/emoji/1f17f.svg new file mode 100644 index 00000000000..5d856444483 --- /dev/null +++ b/public/emoji/1f17f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f18e.svg b/public/emoji/1f18e.svg new file mode 100644 index 00000000000..6c5e8866f9e --- /dev/null +++ b/public/emoji/1f18e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f191.svg b/public/emoji/1f191.svg new file mode 100644 index 00000000000..ef2cbf8962e --- /dev/null +++ b/public/emoji/1f191.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f192.svg b/public/emoji/1f192.svg new file mode 100644 index 00000000000..4bcdb3b9141 --- /dev/null +++ b/public/emoji/1f192.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f193.svg b/public/emoji/1f193.svg new file mode 100644 index 00000000000..d26b8c27c06 --- /dev/null +++ b/public/emoji/1f193.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f194.svg b/public/emoji/1f194.svg new file mode 100644 index 00000000000..0c36d517b78 --- /dev/null +++ b/public/emoji/1f194.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f195.svg b/public/emoji/1f195.svg new file mode 100644 index 00000000000..ad6466f5e56 --- /dev/null +++ b/public/emoji/1f195.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f196.svg b/public/emoji/1f196.svg new file mode 100644 index 00000000000..fe38c95a460 --- /dev/null +++ b/public/emoji/1f196.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f197.svg b/public/emoji/1f197.svg new file mode 100644 index 00000000000..c45e4e1c9b5 --- /dev/null +++ b/public/emoji/1f197.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f198.svg b/public/emoji/1f198.svg new file mode 100644 index 00000000000..fef773a90c8 --- /dev/null +++ b/public/emoji/1f198.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f199.svg b/public/emoji/1f199.svg new file mode 100644 index 00000000000..f5bc638ac51 --- /dev/null +++ b/public/emoji/1f199.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f19a.svg b/public/emoji/1f19a.svg new file mode 100644 index 00000000000..6d2545d60d1 --- /dev/null +++ b/public/emoji/1f19a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1e8.svg b/public/emoji/1f1e6-1f1e8.svg new file mode 100644 index 00000000000..23d70099959 --- /dev/null +++ b/public/emoji/1f1e6-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1e9.svg b/public/emoji/1f1e6-1f1e9.svg new file mode 100644 index 00000000000..0340b9d6d0b --- /dev/null +++ b/public/emoji/1f1e6-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1ea.svg b/public/emoji/1f1e6-1f1ea.svg new file mode 100644 index 00000000000..6610e894cd3 --- /dev/null +++ b/public/emoji/1f1e6-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1eb.svg b/public/emoji/1f1e6-1f1eb.svg new file mode 100644 index 00000000000..e1998a6b2e7 --- /dev/null +++ b/public/emoji/1f1e6-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1ec.svg b/public/emoji/1f1e6-1f1ec.svg new file mode 100644 index 00000000000..0bcf4ebdc0c --- /dev/null +++ b/public/emoji/1f1e6-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1ee.svg b/public/emoji/1f1e6-1f1ee.svg new file mode 100644 index 00000000000..c117d60875c --- /dev/null +++ b/public/emoji/1f1e6-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1f1.svg b/public/emoji/1f1e6-1f1f1.svg new file mode 100644 index 00000000000..62c373cb04c --- /dev/null +++ b/public/emoji/1f1e6-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1f2.svg b/public/emoji/1f1e6-1f1f2.svg new file mode 100644 index 00000000000..619935b02a3 --- /dev/null +++ b/public/emoji/1f1e6-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1f4.svg b/public/emoji/1f1e6-1f1f4.svg new file mode 100644 index 00000000000..7440d2d238e --- /dev/null +++ b/public/emoji/1f1e6-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1f6.svg b/public/emoji/1f1e6-1f1f6.svg new file mode 100644 index 00000000000..476eac88170 --- /dev/null +++ b/public/emoji/1f1e6-1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1f7.svg b/public/emoji/1f1e6-1f1f7.svg new file mode 100644 index 00000000000..040ef76bb43 --- /dev/null +++ b/public/emoji/1f1e6-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1f8.svg b/public/emoji/1f1e6-1f1f8.svg new file mode 100644 index 00000000000..158d0c6f410 --- /dev/null +++ b/public/emoji/1f1e6-1f1f8.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1f9.svg b/public/emoji/1f1e6-1f1f9.svg new file mode 100644 index 00000000000..407ac40351c --- /dev/null +++ b/public/emoji/1f1e6-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1fa.svg b/public/emoji/1f1e6-1f1fa.svg new file mode 100644 index 00000000000..48ab1dc09a7 --- /dev/null +++ b/public/emoji/1f1e6-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1fc.svg b/public/emoji/1f1e6-1f1fc.svg new file mode 100644 index 00000000000..ab3f2d0574d --- /dev/null +++ b/public/emoji/1f1e6-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1fd.svg b/public/emoji/1f1e6-1f1fd.svg new file mode 100644 index 00000000000..81ab225514a --- /dev/null +++ b/public/emoji/1f1e6-1f1fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1ff.svg b/public/emoji/1f1e6-1f1ff.svg new file mode 100644 index 00000000000..4ac419fbcfd --- /dev/null +++ b/public/emoji/1f1e6-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6.svg b/public/emoji/1f1e6.svg new file mode 100644 index 00000000000..5670a81a097 --- /dev/null +++ b/public/emoji/1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1e6.svg b/public/emoji/1f1e7-1f1e6.svg new file mode 100644 index 00000000000..9c14bd4b672 --- /dev/null +++ b/public/emoji/1f1e7-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1e7.svg b/public/emoji/1f1e7-1f1e7.svg new file mode 100644 index 00000000000..6bf8ae2cdd8 --- /dev/null +++ b/public/emoji/1f1e7-1f1e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1e9.svg b/public/emoji/1f1e7-1f1e9.svg new file mode 100644 index 00000000000..e2713372a67 --- /dev/null +++ b/public/emoji/1f1e7-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1ea.svg b/public/emoji/1f1e7-1f1ea.svg new file mode 100644 index 00000000000..085c2cdb6d3 --- /dev/null +++ b/public/emoji/1f1e7-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1eb.svg b/public/emoji/1f1e7-1f1eb.svg new file mode 100644 index 00000000000..eeb129a7713 --- /dev/null +++ b/public/emoji/1f1e7-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1ec.svg b/public/emoji/1f1e7-1f1ec.svg new file mode 100644 index 00000000000..f6a6723c04a --- /dev/null +++ b/public/emoji/1f1e7-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1ed.svg b/public/emoji/1f1e7-1f1ed.svg new file mode 100644 index 00000000000..f708818b1f9 --- /dev/null +++ b/public/emoji/1f1e7-1f1ed.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1ee.svg b/public/emoji/1f1e7-1f1ee.svg new file mode 100644 index 00000000000..7ea0077c0d9 --- /dev/null +++ b/public/emoji/1f1e7-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1ef.svg b/public/emoji/1f1e7-1f1ef.svg new file mode 100644 index 00000000000..0e99fb00dc9 --- /dev/null +++ b/public/emoji/1f1e7-1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1f1.svg b/public/emoji/1f1e7-1f1f1.svg new file mode 100644 index 00000000000..ad59884c60e --- /dev/null +++ b/public/emoji/1f1e7-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1f2.svg b/public/emoji/1f1e7-1f1f2.svg new file mode 100644 index 00000000000..ba96edd0eb3 --- /dev/null +++ b/public/emoji/1f1e7-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1f3.svg b/public/emoji/1f1e7-1f1f3.svg new file mode 100644 index 00000000000..3271af93ccb --- /dev/null +++ b/public/emoji/1f1e7-1f1f3.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1f4.svg b/public/emoji/1f1e7-1f1f4.svg new file mode 100644 index 00000000000..49a94e9e919 --- /dev/null +++ b/public/emoji/1f1e7-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1f6.svg b/public/emoji/1f1e7-1f1f6.svg new file mode 100644 index 00000000000..a835cb570cc --- /dev/null +++ b/public/emoji/1f1e7-1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1f7.svg b/public/emoji/1f1e7-1f1f7.svg new file mode 100644 index 00000000000..3191070a208 --- /dev/null +++ b/public/emoji/1f1e7-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1f8.svg b/public/emoji/1f1e7-1f1f8.svg new file mode 100644 index 00000000000..a353225a217 --- /dev/null +++ b/public/emoji/1f1e7-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1f9.svg b/public/emoji/1f1e7-1f1f9.svg new file mode 100644 index 00000000000..fb5784cc728 --- /dev/null +++ b/public/emoji/1f1e7-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1fb.svg b/public/emoji/1f1e7-1f1fb.svg new file mode 100644 index 00000000000..e9f5672c6f8 --- /dev/null +++ b/public/emoji/1f1e7-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1fc.svg b/public/emoji/1f1e7-1f1fc.svg new file mode 100644 index 00000000000..05f152a3777 --- /dev/null +++ b/public/emoji/1f1e7-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1fe.svg b/public/emoji/1f1e7-1f1fe.svg new file mode 100644 index 00000000000..f27068ab6a7 --- /dev/null +++ b/public/emoji/1f1e7-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1ff.svg b/public/emoji/1f1e7-1f1ff.svg new file mode 100644 index 00000000000..a2e5cffc0ed --- /dev/null +++ b/public/emoji/1f1e7-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7.svg b/public/emoji/1f1e7.svg new file mode 100644 index 00000000000..7590fdd8ea2 --- /dev/null +++ b/public/emoji/1f1e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1e6.svg b/public/emoji/1f1e8-1f1e6.svg new file mode 100644 index 00000000000..886c66e27c1 --- /dev/null +++ b/public/emoji/1f1e8-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1e8.svg b/public/emoji/1f1e8-1f1e8.svg new file mode 100644 index 00000000000..8d002807baa --- /dev/null +++ b/public/emoji/1f1e8-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1e9.svg b/public/emoji/1f1e8-1f1e9.svg new file mode 100644 index 00000000000..c635b47e7aa --- /dev/null +++ b/public/emoji/1f1e8-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1eb.svg b/public/emoji/1f1e8-1f1eb.svg new file mode 100644 index 00000000000..919121cd3e6 --- /dev/null +++ b/public/emoji/1f1e8-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1ec.svg b/public/emoji/1f1e8-1f1ec.svg new file mode 100644 index 00000000000..d511520b95f --- /dev/null +++ b/public/emoji/1f1e8-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1ed.svg b/public/emoji/1f1e8-1f1ed.svg new file mode 100644 index 00000000000..507afb37015 --- /dev/null +++ b/public/emoji/1f1e8-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1ee.svg b/public/emoji/1f1e8-1f1ee.svg new file mode 100644 index 00000000000..4ae397b2884 --- /dev/null +++ b/public/emoji/1f1e8-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1f0.svg b/public/emoji/1f1e8-1f1f0.svg new file mode 100644 index 00000000000..683223e296b --- /dev/null +++ b/public/emoji/1f1e8-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1f1.svg b/public/emoji/1f1e8-1f1f1.svg new file mode 100644 index 00000000000..51be06e6749 --- /dev/null +++ b/public/emoji/1f1e8-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1f2.svg b/public/emoji/1f1e8-1f1f2.svg new file mode 100644 index 00000000000..e86d029a4d0 --- /dev/null +++ b/public/emoji/1f1e8-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1f3.svg b/public/emoji/1f1e8-1f1f3.svg new file mode 100644 index 00000000000..9e5bd6650f6 --- /dev/null +++ b/public/emoji/1f1e8-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1f4.svg b/public/emoji/1f1e8-1f1f4.svg new file mode 100644 index 00000000000..387be03c365 --- /dev/null +++ b/public/emoji/1f1e8-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1f5.svg b/public/emoji/1f1e8-1f1f5.svg new file mode 100644 index 00000000000..16bfba0cfef --- /dev/null +++ b/public/emoji/1f1e8-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1f7.svg b/public/emoji/1f1e8-1f1f7.svg new file mode 100644 index 00000000000..e8510bc058b --- /dev/null +++ b/public/emoji/1f1e8-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1fa.svg b/public/emoji/1f1e8-1f1fa.svg new file mode 100644 index 00000000000..ae73709b63d --- /dev/null +++ b/public/emoji/1f1e8-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1fb.svg b/public/emoji/1f1e8-1f1fb.svg new file mode 100644 index 00000000000..c3c11d6218f --- /dev/null +++ b/public/emoji/1f1e8-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1fc.svg b/public/emoji/1f1e8-1f1fc.svg new file mode 100644 index 00000000000..cecfdbffd19 --- /dev/null +++ b/public/emoji/1f1e8-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1fd.svg b/public/emoji/1f1e8-1f1fd.svg new file mode 100644 index 00000000000..28115420072 --- /dev/null +++ b/public/emoji/1f1e8-1f1fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1fe.svg b/public/emoji/1f1e8-1f1fe.svg new file mode 100644 index 00000000000..4529030d14d --- /dev/null +++ b/public/emoji/1f1e8-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1ff.svg b/public/emoji/1f1e8-1f1ff.svg new file mode 100644 index 00000000000..3226720bec8 --- /dev/null +++ b/public/emoji/1f1e8-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8.svg b/public/emoji/1f1e8.svg new file mode 100644 index 00000000000..1aa1eabd4d8 --- /dev/null +++ b/public/emoji/1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e9-1f1ea.svg b/public/emoji/1f1e9-1f1ea.svg new file mode 100644 index 00000000000..b2015a77aea --- /dev/null +++ b/public/emoji/1f1e9-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e9-1f1ec.svg b/public/emoji/1f1e9-1f1ec.svg new file mode 100644 index 00000000000..04d9b4ee659 --- /dev/null +++ b/public/emoji/1f1e9-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e9-1f1ef.svg b/public/emoji/1f1e9-1f1ef.svg new file mode 100644 index 00000000000..f4ae5eafa0f --- /dev/null +++ b/public/emoji/1f1e9-1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e9-1f1f0.svg b/public/emoji/1f1e9-1f1f0.svg new file mode 100644 index 00000000000..fd2d704d08a --- /dev/null +++ b/public/emoji/1f1e9-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e9-1f1f2.svg b/public/emoji/1f1e9-1f1f2.svg new file mode 100644 index 00000000000..27fc817ba9f --- /dev/null +++ b/public/emoji/1f1e9-1f1f2.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e9-1f1f4.svg b/public/emoji/1f1e9-1f1f4.svg new file mode 100644 index 00000000000..133278cbb39 --- /dev/null +++ b/public/emoji/1f1e9-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e9-1f1ff.svg b/public/emoji/1f1e9-1f1ff.svg new file mode 100644 index 00000000000..081674e2a63 --- /dev/null +++ b/public/emoji/1f1e9-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e9.svg b/public/emoji/1f1e9.svg new file mode 100644 index 00000000000..e7085af164e --- /dev/null +++ b/public/emoji/1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ea-1f1e6.svg b/public/emoji/1f1ea-1f1e6.svg new file mode 100644 index 00000000000..0a39cf63e20 --- /dev/null +++ b/public/emoji/1f1ea-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ea-1f1e8.svg b/public/emoji/1f1ea-1f1e8.svg new file mode 100644 index 00000000000..2d7bf4d1b48 --- /dev/null +++ b/public/emoji/1f1ea-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ea-1f1ea.svg b/public/emoji/1f1ea-1f1ea.svg new file mode 100644 index 00000000000..0f3f6d8ed7f --- /dev/null +++ b/public/emoji/1f1ea-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ea-1f1ec.svg b/public/emoji/1f1ea-1f1ec.svg new file mode 100644 index 00000000000..ee47f26c9f6 --- /dev/null +++ b/public/emoji/1f1ea-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ea-1f1ed.svg b/public/emoji/1f1ea-1f1ed.svg new file mode 100644 index 00000000000..63f1fe8ac22 --- /dev/null +++ b/public/emoji/1f1ea-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ea-1f1f7.svg b/public/emoji/1f1ea-1f1f7.svg new file mode 100644 index 00000000000..616efd6cc85 --- /dev/null +++ b/public/emoji/1f1ea-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ea-1f1f8.svg b/public/emoji/1f1ea-1f1f8.svg new file mode 100644 index 00000000000..891a2597b9c --- /dev/null +++ b/public/emoji/1f1ea-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ea-1f1f9.svg b/public/emoji/1f1ea-1f1f9.svg new file mode 100644 index 00000000000..ab724478ea8 --- /dev/null +++ b/public/emoji/1f1ea-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ea-1f1fa.svg b/public/emoji/1f1ea-1f1fa.svg new file mode 100644 index 00000000000..40416b4bad9 --- /dev/null +++ b/public/emoji/1f1ea-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ea.svg b/public/emoji/1f1ea.svg new file mode 100644 index 00000000000..6727438c4d4 --- /dev/null +++ b/public/emoji/1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1eb-1f1ee.svg b/public/emoji/1f1eb-1f1ee.svg new file mode 100644 index 00000000000..0894ffc5824 --- /dev/null +++ b/public/emoji/1f1eb-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1eb-1f1ef.svg b/public/emoji/1f1eb-1f1ef.svg new file mode 100644 index 00000000000..0bbbeae0fd4 --- /dev/null +++ b/public/emoji/1f1eb-1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1eb-1f1f0.svg b/public/emoji/1f1eb-1f1f0.svg new file mode 100644 index 00000000000..29f0c8548ff --- /dev/null +++ b/public/emoji/1f1eb-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1eb-1f1f2.svg b/public/emoji/1f1eb-1f1f2.svg new file mode 100644 index 00000000000..ca329d00ae5 --- /dev/null +++ b/public/emoji/1f1eb-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1eb-1f1f4.svg b/public/emoji/1f1eb-1f1f4.svg new file mode 100644 index 00000000000..d5b522ebec8 --- /dev/null +++ b/public/emoji/1f1eb-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1eb-1f1f7.svg b/public/emoji/1f1eb-1f1f7.svg new file mode 100644 index 00000000000..7f9d0ab3275 --- /dev/null +++ b/public/emoji/1f1eb-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1eb.svg b/public/emoji/1f1eb.svg new file mode 100644 index 00000000000..2d54ed23881 --- /dev/null +++ b/public/emoji/1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1e6.svg b/public/emoji/1f1ec-1f1e6.svg new file mode 100644 index 00000000000..f30f1e0445d --- /dev/null +++ b/public/emoji/1f1ec-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1e7.svg b/public/emoji/1f1ec-1f1e7.svg new file mode 100644 index 00000000000..f745d658d0d --- /dev/null +++ b/public/emoji/1f1ec-1f1e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1e9.svg b/public/emoji/1f1ec-1f1e9.svg new file mode 100644 index 00000000000..c33b39dfc6c --- /dev/null +++ b/public/emoji/1f1ec-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1ea.svg b/public/emoji/1f1ec-1f1ea.svg new file mode 100644 index 00000000000..044d07dcaba --- /dev/null +++ b/public/emoji/1f1ec-1f1ea.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1eb.svg b/public/emoji/1f1ec-1f1eb.svg new file mode 100644 index 00000000000..328baf26350 --- /dev/null +++ b/public/emoji/1f1ec-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1ec.svg b/public/emoji/1f1ec-1f1ec.svg new file mode 100644 index 00000000000..3e4098e4299 --- /dev/null +++ b/public/emoji/1f1ec-1f1ec.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1ed.svg b/public/emoji/1f1ec-1f1ed.svg new file mode 100644 index 00000000000..f3558ad0512 --- /dev/null +++ b/public/emoji/1f1ec-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1ee.svg b/public/emoji/1f1ec-1f1ee.svg new file mode 100644 index 00000000000..c980311a080 --- /dev/null +++ b/public/emoji/1f1ec-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1f1.svg b/public/emoji/1f1ec-1f1f1.svg new file mode 100644 index 00000000000..484b80c08bf --- /dev/null +++ b/public/emoji/1f1ec-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1f2.svg b/public/emoji/1f1ec-1f1f2.svg new file mode 100644 index 00000000000..5fa53d532bd --- /dev/null +++ b/public/emoji/1f1ec-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1f3.svg b/public/emoji/1f1ec-1f1f3.svg new file mode 100644 index 00000000000..ea98260a48a --- /dev/null +++ b/public/emoji/1f1ec-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1f5.svg b/public/emoji/1f1ec-1f1f5.svg new file mode 100644 index 00000000000..f044d48d20a --- /dev/null +++ b/public/emoji/1f1ec-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1f6.svg b/public/emoji/1f1ec-1f1f6.svg new file mode 100644 index 00000000000..6c4a1581a51 --- /dev/null +++ b/public/emoji/1f1ec-1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1f7.svg b/public/emoji/1f1ec-1f1f7.svg new file mode 100644 index 00000000000..75c9bc6a45d --- /dev/null +++ b/public/emoji/1f1ec-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1f8.svg b/public/emoji/1f1ec-1f1f8.svg new file mode 100644 index 00000000000..68772ee199f --- /dev/null +++ b/public/emoji/1f1ec-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1f9.svg b/public/emoji/1f1ec-1f1f9.svg new file mode 100644 index 00000000000..bc4f58471a6 --- /dev/null +++ b/public/emoji/1f1ec-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1fa.svg b/public/emoji/1f1ec-1f1fa.svg new file mode 100644 index 00000000000..6cdd6bf36a5 --- /dev/null +++ b/public/emoji/1f1ec-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1fc.svg b/public/emoji/1f1ec-1f1fc.svg new file mode 100644 index 00000000000..30ed7effb91 --- /dev/null +++ b/public/emoji/1f1ec-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1fe.svg b/public/emoji/1f1ec-1f1fe.svg new file mode 100644 index 00000000000..b4f6743d2b6 --- /dev/null +++ b/public/emoji/1f1ec-1f1fe.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec.svg b/public/emoji/1f1ec.svg new file mode 100644 index 00000000000..2fb80143076 --- /dev/null +++ b/public/emoji/1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ed-1f1f0.svg b/public/emoji/1f1ed-1f1f0.svg new file mode 100644 index 00000000000..20f6508bede --- /dev/null +++ b/public/emoji/1f1ed-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ed-1f1f2.svg b/public/emoji/1f1ed-1f1f2.svg new file mode 100644 index 00000000000..ee741bb195d --- /dev/null +++ b/public/emoji/1f1ed-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ed-1f1f3.svg b/public/emoji/1f1ed-1f1f3.svg new file mode 100644 index 00000000000..0b56c947bb7 --- /dev/null +++ b/public/emoji/1f1ed-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ed-1f1f7.svg b/public/emoji/1f1ed-1f1f7.svg new file mode 100644 index 00000000000..938504a0db5 --- /dev/null +++ b/public/emoji/1f1ed-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ed-1f1f9.svg b/public/emoji/1f1ed-1f1f9.svg new file mode 100644 index 00000000000..6162c6a4d2d --- /dev/null +++ b/public/emoji/1f1ed-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ed-1f1fa.svg b/public/emoji/1f1ed-1f1fa.svg new file mode 100644 index 00000000000..48b8aced60a --- /dev/null +++ b/public/emoji/1f1ed-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ed.svg b/public/emoji/1f1ed.svg new file mode 100644 index 00000000000..6add3c7e046 --- /dev/null +++ b/public/emoji/1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ee-1f1e8.svg b/public/emoji/1f1ee-1f1e8.svg new file mode 100644 index 00000000000..540234ef7a6 --- /dev/null +++ b/public/emoji/1f1ee-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ee-1f1e9.svg b/public/emoji/1f1ee-1f1e9.svg new file mode 100644 index 00000000000..d92e0a0090d --- /dev/null +++ b/public/emoji/1f1ee-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ee-1f1ea.svg b/public/emoji/1f1ee-1f1ea.svg new file mode 100644 index 00000000000..c3f32f72d10 --- /dev/null +++ b/public/emoji/1f1ee-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ee-1f1f1.svg b/public/emoji/1f1ee-1f1f1.svg new file mode 100644 index 00000000000..4118fdf99df --- /dev/null +++ b/public/emoji/1f1ee-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ee-1f1f2.svg b/public/emoji/1f1ee-1f1f2.svg new file mode 100644 index 00000000000..17632dc76d8 --- /dev/null +++ b/public/emoji/1f1ee-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ee-1f1f3.svg b/public/emoji/1f1ee-1f1f3.svg new file mode 100644 index 00000000000..0f8b13d5728 --- /dev/null +++ b/public/emoji/1f1ee-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ee-1f1f4.svg b/public/emoji/1f1ee-1f1f4.svg new file mode 100644 index 00000000000..04d9b4ee659 --- /dev/null +++ b/public/emoji/1f1ee-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ee-1f1f6.svg b/public/emoji/1f1ee-1f1f6.svg new file mode 100644 index 00000000000..c260e29258e --- /dev/null +++ b/public/emoji/1f1ee-1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ee-1f1f7.svg b/public/emoji/1f1ee-1f1f7.svg new file mode 100644 index 00000000000..d7b36f5e802 --- /dev/null +++ b/public/emoji/1f1ee-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ee-1f1f8.svg b/public/emoji/1f1ee-1f1f8.svg new file mode 100644 index 00000000000..485bbd003d8 --- /dev/null +++ b/public/emoji/1f1ee-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ee-1f1f9.svg b/public/emoji/1f1ee-1f1f9.svg new file mode 100644 index 00000000000..f14b06522b6 --- /dev/null +++ b/public/emoji/1f1ee-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ee.svg b/public/emoji/1f1ee.svg new file mode 100644 index 00000000000..dc8d231b864 --- /dev/null +++ b/public/emoji/1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ef-1f1ea.svg b/public/emoji/1f1ef-1f1ea.svg new file mode 100644 index 00000000000..d71bf48eef6 --- /dev/null +++ b/public/emoji/1f1ef-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ef-1f1f2.svg b/public/emoji/1f1ef-1f1f2.svg new file mode 100644 index 00000000000..810f5ab7157 --- /dev/null +++ b/public/emoji/1f1ef-1f1f2.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ef-1f1f4.svg b/public/emoji/1f1ef-1f1f4.svg new file mode 100644 index 00000000000..2acfb9a8eb9 --- /dev/null +++ b/public/emoji/1f1ef-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ef-1f1f5.svg b/public/emoji/1f1ef-1f1f5.svg new file mode 100644 index 00000000000..8ffa66be68a --- /dev/null +++ b/public/emoji/1f1ef-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ef.svg b/public/emoji/1f1ef.svg new file mode 100644 index 00000000000..249efde293f --- /dev/null +++ b/public/emoji/1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f0-1f1ea.svg b/public/emoji/1f1f0-1f1ea.svg new file mode 100644 index 00000000000..65828fd7654 --- /dev/null +++ b/public/emoji/1f1f0-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f0-1f1ec.svg b/public/emoji/1f1f0-1f1ec.svg new file mode 100644 index 00000000000..c2b532f6603 --- /dev/null +++ b/public/emoji/1f1f0-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f0-1f1ed.svg b/public/emoji/1f1f0-1f1ed.svg new file mode 100644 index 00000000000..a28e0243e1a --- /dev/null +++ b/public/emoji/1f1f0-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f0-1f1ee.svg b/public/emoji/1f1f0-1f1ee.svg new file mode 100644 index 00000000000..81f5fc9e52d --- /dev/null +++ b/public/emoji/1f1f0-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f0-1f1f2.svg b/public/emoji/1f1f0-1f1f2.svg new file mode 100644 index 00000000000..8e9ba574d09 --- /dev/null +++ b/public/emoji/1f1f0-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f0-1f1f3.svg b/public/emoji/1f1f0-1f1f3.svg new file mode 100644 index 00000000000..505ac748dd6 --- /dev/null +++ b/public/emoji/1f1f0-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f0-1f1f5.svg b/public/emoji/1f1f0-1f1f5.svg new file mode 100644 index 00000000000..dc4d6798133 --- /dev/null +++ b/public/emoji/1f1f0-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f0-1f1f7.svg b/public/emoji/1f1f0-1f1f7.svg new file mode 100644 index 00000000000..5b28e359525 --- /dev/null +++ b/public/emoji/1f1f0-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f0-1f1fc.svg b/public/emoji/1f1f0-1f1fc.svg new file mode 100644 index 00000000000..f3076ffb404 --- /dev/null +++ b/public/emoji/1f1f0-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f0-1f1fe.svg b/public/emoji/1f1f0-1f1fe.svg new file mode 100644 index 00000000000..6d0432cb82e --- /dev/null +++ b/public/emoji/1f1f0-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f0-1f1ff.svg b/public/emoji/1f1f0-1f1ff.svg new file mode 100644 index 00000000000..107bf17ac75 --- /dev/null +++ b/public/emoji/1f1f0-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f0.svg b/public/emoji/1f1f0.svg new file mode 100644 index 00000000000..0ae3f9a3b0f --- /dev/null +++ b/public/emoji/1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f1-1f1e6.svg b/public/emoji/1f1f1-1f1e6.svg new file mode 100644 index 00000000000..a9ebf083c86 --- /dev/null +++ b/public/emoji/1f1f1-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f1-1f1e7.svg b/public/emoji/1f1f1-1f1e7.svg new file mode 100644 index 00000000000..d000185e59c --- /dev/null +++ b/public/emoji/1f1f1-1f1e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f1-1f1e8.svg b/public/emoji/1f1f1-1f1e8.svg new file mode 100644 index 00000000000..9f5255714c2 --- /dev/null +++ b/public/emoji/1f1f1-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f1-1f1ee.svg b/public/emoji/1f1f1-1f1ee.svg new file mode 100644 index 00000000000..51b11472b49 --- /dev/null +++ b/public/emoji/1f1f1-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f1-1f1f0.svg b/public/emoji/1f1f1-1f1f0.svg new file mode 100644 index 00000000000..5eb3cd7ee46 --- /dev/null +++ b/public/emoji/1f1f1-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f1-1f1f7.svg b/public/emoji/1f1f1-1f1f7.svg new file mode 100644 index 00000000000..13995a6bf42 --- /dev/null +++ b/public/emoji/1f1f1-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f1-1f1f8.svg b/public/emoji/1f1f1-1f1f8.svg new file mode 100644 index 00000000000..ef9b0346c5c --- /dev/null +++ b/public/emoji/1f1f1-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f1-1f1f9.svg b/public/emoji/1f1f1-1f1f9.svg new file mode 100644 index 00000000000..513d722c0c4 --- /dev/null +++ b/public/emoji/1f1f1-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f1-1f1fa.svg b/public/emoji/1f1f1-1f1fa.svg new file mode 100644 index 00000000000..78de148357f --- /dev/null +++ b/public/emoji/1f1f1-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f1-1f1fb.svg b/public/emoji/1f1f1-1f1fb.svg new file mode 100644 index 00000000000..b3fa271e081 --- /dev/null +++ b/public/emoji/1f1f1-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f1-1f1fe.svg b/public/emoji/1f1f1-1f1fe.svg new file mode 100644 index 00000000000..dd29b3b31e8 --- /dev/null +++ b/public/emoji/1f1f1-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f1.svg b/public/emoji/1f1f1.svg new file mode 100644 index 00000000000..9239d516ebd --- /dev/null +++ b/public/emoji/1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1e6.svg b/public/emoji/1f1f2-1f1e6.svg new file mode 100644 index 00000000000..f2e7c5aab8f --- /dev/null +++ b/public/emoji/1f1f2-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1e8.svg b/public/emoji/1f1f2-1f1e8.svg new file mode 100644 index 00000000000..a0228346b4b --- /dev/null +++ b/public/emoji/1f1f2-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1e9.svg b/public/emoji/1f1f2-1f1e9.svg new file mode 100644 index 00000000000..76845b662f8 --- /dev/null +++ b/public/emoji/1f1f2-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1ea.svg b/public/emoji/1f1f2-1f1ea.svg new file mode 100644 index 00000000000..7eb38ad815e --- /dev/null +++ b/public/emoji/1f1f2-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1eb.svg b/public/emoji/1f1f2-1f1eb.svg new file mode 100644 index 00000000000..16bfba0cfef --- /dev/null +++ b/public/emoji/1f1f2-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1ec.svg b/public/emoji/1f1f2-1f1ec.svg new file mode 100644 index 00000000000..3571c0a7f4e --- /dev/null +++ b/public/emoji/1f1f2-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1ed.svg b/public/emoji/1f1f2-1f1ed.svg new file mode 100644 index 00000000000..bc53ad9667b --- /dev/null +++ b/public/emoji/1f1f2-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1f0.svg b/public/emoji/1f1f2-1f1f0.svg new file mode 100644 index 00000000000..8a3bc3e7c6d --- /dev/null +++ b/public/emoji/1f1f2-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1f1.svg b/public/emoji/1f1f2-1f1f1.svg new file mode 100644 index 00000000000..650d974a975 --- /dev/null +++ b/public/emoji/1f1f2-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1f2.svg b/public/emoji/1f1f2-1f1f2.svg new file mode 100644 index 00000000000..2df73cff5ca --- /dev/null +++ b/public/emoji/1f1f2-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1f3.svg b/public/emoji/1f1f2-1f1f3.svg new file mode 100644 index 00000000000..bfb46eb047a --- /dev/null +++ b/public/emoji/1f1f2-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1f4.svg b/public/emoji/1f1f2-1f1f4.svg new file mode 100644 index 00000000000..30c75b65a1c --- /dev/null +++ b/public/emoji/1f1f2-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1f5.svg b/public/emoji/1f1f2-1f1f5.svg new file mode 100644 index 00000000000..823a275f355 --- /dev/null +++ b/public/emoji/1f1f2-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1f6.svg b/public/emoji/1f1f2-1f1f6.svg new file mode 100644 index 00000000000..79c46fd4a17 --- /dev/null +++ b/public/emoji/1f1f2-1f1f6.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1f7.svg b/public/emoji/1f1f2-1f1f7.svg new file mode 100644 index 00000000000..7878b6bbfc9 --- /dev/null +++ b/public/emoji/1f1f2-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1f8.svg b/public/emoji/1f1f2-1f1f8.svg new file mode 100644 index 00000000000..97cb964c843 --- /dev/null +++ b/public/emoji/1f1f2-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1f9.svg b/public/emoji/1f1f2-1f1f9.svg new file mode 100644 index 00000000000..f2447327537 --- /dev/null +++ b/public/emoji/1f1f2-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1fa.svg b/public/emoji/1f1f2-1f1fa.svg new file mode 100644 index 00000000000..03c638846b9 --- /dev/null +++ b/public/emoji/1f1f2-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1fb.svg b/public/emoji/1f1f2-1f1fb.svg new file mode 100644 index 00000000000..9326ae793a4 --- /dev/null +++ b/public/emoji/1f1f2-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1fc.svg b/public/emoji/1f1f2-1f1fc.svg new file mode 100644 index 00000000000..4fd4f5aefe6 --- /dev/null +++ b/public/emoji/1f1f2-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1fd.svg b/public/emoji/1f1f2-1f1fd.svg new file mode 100644 index 00000000000..7ccbceb6a46 --- /dev/null +++ b/public/emoji/1f1f2-1f1fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1fe.svg b/public/emoji/1f1f2-1f1fe.svg new file mode 100644 index 00000000000..580bc7f9f43 --- /dev/null +++ b/public/emoji/1f1f2-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1ff.svg b/public/emoji/1f1f2-1f1ff.svg new file mode 100644 index 00000000000..42ff00cefff --- /dev/null +++ b/public/emoji/1f1f2-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2.svg b/public/emoji/1f1f2.svg new file mode 100644 index 00000000000..c04f37116d9 --- /dev/null +++ b/public/emoji/1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f3-1f1e6.svg b/public/emoji/1f1f3-1f1e6.svg new file mode 100644 index 00000000000..c53c7ddc6de --- /dev/null +++ b/public/emoji/1f1f3-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f3-1f1e8.svg b/public/emoji/1f1f3-1f1e8.svg new file mode 100644 index 00000000000..7a9113f8087 --- /dev/null +++ b/public/emoji/1f1f3-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f3-1f1ea.svg b/public/emoji/1f1f3-1f1ea.svg new file mode 100644 index 00000000000..b7f47078887 --- /dev/null +++ b/public/emoji/1f1f3-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f3-1f1eb.svg b/public/emoji/1f1f3-1f1eb.svg new file mode 100644 index 00000000000..21005fb0d2c --- /dev/null +++ b/public/emoji/1f1f3-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f3-1f1ec.svg b/public/emoji/1f1f3-1f1ec.svg new file mode 100644 index 00000000000..0701d0cdf1b --- /dev/null +++ b/public/emoji/1f1f3-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f3-1f1ee.svg b/public/emoji/1f1f3-1f1ee.svg new file mode 100644 index 00000000000..8792eddc8dc --- /dev/null +++ b/public/emoji/1f1f3-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f3-1f1f1.svg b/public/emoji/1f1f3-1f1f1.svg new file mode 100644 index 00000000000..c150ee59421 --- /dev/null +++ b/public/emoji/1f1f3-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f3-1f1f4.svg b/public/emoji/1f1f3-1f1f4.svg new file mode 100644 index 00000000000..85182d98395 --- /dev/null +++ b/public/emoji/1f1f3-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f3-1f1f5.svg b/public/emoji/1f1f3-1f1f5.svg new file mode 100644 index 00000000000..a1e7545bada --- /dev/null +++ b/public/emoji/1f1f3-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f3-1f1f7.svg b/public/emoji/1f1f3-1f1f7.svg new file mode 100644 index 00000000000..eba929277ad --- /dev/null +++ b/public/emoji/1f1f3-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f3-1f1fa.svg b/public/emoji/1f1f3-1f1fa.svg new file mode 100644 index 00000000000..f4b61fd5e60 --- /dev/null +++ b/public/emoji/1f1f3-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f3-1f1ff.svg b/public/emoji/1f1f3-1f1ff.svg new file mode 100644 index 00000000000..688b145c191 --- /dev/null +++ b/public/emoji/1f1f3-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f3.svg b/public/emoji/1f1f3.svg new file mode 100644 index 00000000000..a32f055903f --- /dev/null +++ b/public/emoji/1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f4-1f1f2.svg b/public/emoji/1f1f4-1f1f2.svg new file mode 100644 index 00000000000..3a23ddcb9f3 --- /dev/null +++ b/public/emoji/1f1f4-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f4.svg b/public/emoji/1f1f4.svg new file mode 100644 index 00000000000..079e2b1a9d8 --- /dev/null +++ b/public/emoji/1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1e6.svg b/public/emoji/1f1f5-1f1e6.svg new file mode 100644 index 00000000000..cbeb3037f5f --- /dev/null +++ b/public/emoji/1f1f5-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1ea.svg b/public/emoji/1f1f5-1f1ea.svg new file mode 100644 index 00000000000..dab27b6367f --- /dev/null +++ b/public/emoji/1f1f5-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1eb.svg b/public/emoji/1f1f5-1f1eb.svg new file mode 100644 index 00000000000..d68516daa70 --- /dev/null +++ b/public/emoji/1f1f5-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1ec.svg b/public/emoji/1f1f5-1f1ec.svg new file mode 100644 index 00000000000..094bf895f50 --- /dev/null +++ b/public/emoji/1f1f5-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1ed.svg b/public/emoji/1f1f5-1f1ed.svg new file mode 100644 index 00000000000..57ebde425aa --- /dev/null +++ b/public/emoji/1f1f5-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1f0.svg b/public/emoji/1f1f5-1f1f0.svg new file mode 100644 index 00000000000..3a8cfd9b267 --- /dev/null +++ b/public/emoji/1f1f5-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1f1.svg b/public/emoji/1f1f5-1f1f1.svg new file mode 100644 index 00000000000..bf78dbbce8f --- /dev/null +++ b/public/emoji/1f1f5-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1f2.svg b/public/emoji/1f1f5-1f1f2.svg new file mode 100644 index 00000000000..517c6682a55 --- /dev/null +++ b/public/emoji/1f1f5-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1f3.svg b/public/emoji/1f1f5-1f1f3.svg new file mode 100644 index 00000000000..adf57ca1ab7 --- /dev/null +++ b/public/emoji/1f1f5-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1f7.svg b/public/emoji/1f1f5-1f1f7.svg new file mode 100644 index 00000000000..9008a558512 --- /dev/null +++ b/public/emoji/1f1f5-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1f8.svg b/public/emoji/1f1f5-1f1f8.svg new file mode 100644 index 00000000000..e3f5f424893 --- /dev/null +++ b/public/emoji/1f1f5-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1f9.svg b/public/emoji/1f1f5-1f1f9.svg new file mode 100644 index 00000000000..f4866075c24 --- /dev/null +++ b/public/emoji/1f1f5-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1fc.svg b/public/emoji/1f1f5-1f1fc.svg new file mode 100644 index 00000000000..a88c9f8fb19 --- /dev/null +++ b/public/emoji/1f1f5-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1fe.svg b/public/emoji/1f1f5-1f1fe.svg new file mode 100644 index 00000000000..93e40d091d5 --- /dev/null +++ b/public/emoji/1f1f5-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5.svg b/public/emoji/1f1f5.svg new file mode 100644 index 00000000000..2a769ae73a6 --- /dev/null +++ b/public/emoji/1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f6-1f1e6.svg b/public/emoji/1f1f6-1f1e6.svg new file mode 100644 index 00000000000..6c5ce7947f8 --- /dev/null +++ b/public/emoji/1f1f6-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f6.svg b/public/emoji/1f1f6.svg new file mode 100644 index 00000000000..ea3e84d3c03 --- /dev/null +++ b/public/emoji/1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f7-1f1ea.svg b/public/emoji/1f1f7-1f1ea.svg new file mode 100644 index 00000000000..634a34f5c25 --- /dev/null +++ b/public/emoji/1f1f7-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f7-1f1f4.svg b/public/emoji/1f1f7-1f1f4.svg new file mode 100644 index 00000000000..20553c77141 --- /dev/null +++ b/public/emoji/1f1f7-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f7-1f1f8.svg b/public/emoji/1f1f7-1f1f8.svg new file mode 100644 index 00000000000..276ec5da58c --- /dev/null +++ b/public/emoji/1f1f7-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f7-1f1fa.svg b/public/emoji/1f1f7-1f1fa.svg new file mode 100644 index 00000000000..ba85d44e804 --- /dev/null +++ b/public/emoji/1f1f7-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f7-1f1fc.svg b/public/emoji/1f1f7-1f1fc.svg new file mode 100644 index 00000000000..d02fc12bacd --- /dev/null +++ b/public/emoji/1f1f7-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f7.svg b/public/emoji/1f1f7.svg new file mode 100644 index 00000000000..1e8673ffa82 --- /dev/null +++ b/public/emoji/1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1e6.svg b/public/emoji/1f1f8-1f1e6.svg new file mode 100644 index 00000000000..73d0b056b0d --- /dev/null +++ b/public/emoji/1f1f8-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1e7.svg b/public/emoji/1f1f8-1f1e7.svg new file mode 100644 index 00000000000..1253585e93a --- /dev/null +++ b/public/emoji/1f1f8-1f1e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1e8.svg b/public/emoji/1f1f8-1f1e8.svg new file mode 100644 index 00000000000..c1632e69645 --- /dev/null +++ b/public/emoji/1f1f8-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1e9.svg b/public/emoji/1f1f8-1f1e9.svg new file mode 100644 index 00000000000..4fe07ce3271 --- /dev/null +++ b/public/emoji/1f1f8-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1ea.svg b/public/emoji/1f1f8-1f1ea.svg new file mode 100644 index 00000000000..ccd38777ba3 --- /dev/null +++ b/public/emoji/1f1f8-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1ec.svg b/public/emoji/1f1f8-1f1ec.svg new file mode 100644 index 00000000000..91caccd4adc --- /dev/null +++ b/public/emoji/1f1f8-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1ed.svg b/public/emoji/1f1f8-1f1ed.svg new file mode 100644 index 00000000000..ac8dfd1a035 --- /dev/null +++ b/public/emoji/1f1f8-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1ee.svg b/public/emoji/1f1f8-1f1ee.svg new file mode 100644 index 00000000000..85338c99ca8 --- /dev/null +++ b/public/emoji/1f1f8-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1ef.svg b/public/emoji/1f1f8-1f1ef.svg new file mode 100644 index 00000000000..e9f5672c6f8 --- /dev/null +++ b/public/emoji/1f1f8-1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1f0.svg b/public/emoji/1f1f8-1f1f0.svg new file mode 100644 index 00000000000..5b0e543563d --- /dev/null +++ b/public/emoji/1f1f8-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1f1.svg b/public/emoji/1f1f8-1f1f1.svg new file mode 100644 index 00000000000..50fafc27752 --- /dev/null +++ b/public/emoji/1f1f8-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1f2.svg b/public/emoji/1f1f8-1f1f2.svg new file mode 100644 index 00000000000..abe63183d39 --- /dev/null +++ b/public/emoji/1f1f8-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1f3.svg b/public/emoji/1f1f8-1f1f3.svg new file mode 100644 index 00000000000..548243e3b39 --- /dev/null +++ b/public/emoji/1f1f8-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1f4.svg b/public/emoji/1f1f8-1f1f4.svg new file mode 100644 index 00000000000..967be6174a2 --- /dev/null +++ b/public/emoji/1f1f8-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1f7.svg b/public/emoji/1f1f8-1f1f7.svg new file mode 100644 index 00000000000..6348d1a7857 --- /dev/null +++ b/public/emoji/1f1f8-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1f8.svg b/public/emoji/1f1f8-1f1f8.svg new file mode 100644 index 00000000000..9bbb6654240 --- /dev/null +++ b/public/emoji/1f1f8-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1f9.svg b/public/emoji/1f1f8-1f1f9.svg new file mode 100644 index 00000000000..08a1d8fbb40 --- /dev/null +++ b/public/emoji/1f1f8-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1fb.svg b/public/emoji/1f1f8-1f1fb.svg new file mode 100644 index 00000000000..9c937047580 --- /dev/null +++ b/public/emoji/1f1f8-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1fd.svg b/public/emoji/1f1f8-1f1fd.svg new file mode 100644 index 00000000000..b0cd97a077d --- /dev/null +++ b/public/emoji/1f1f8-1f1fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1fe.svg b/public/emoji/1f1f8-1f1fe.svg new file mode 100644 index 00000000000..62fbea40bf2 --- /dev/null +++ b/public/emoji/1f1f8-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1ff.svg b/public/emoji/1f1f8-1f1ff.svg new file mode 100644 index 00000000000..deafce4e2c8 --- /dev/null +++ b/public/emoji/1f1f8-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8.svg b/public/emoji/1f1f8.svg new file mode 100644 index 00000000000..a39d2010ee3 --- /dev/null +++ b/public/emoji/1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1e6.svg b/public/emoji/1f1f9-1f1e6.svg new file mode 100644 index 00000000000..68e6e9ce7cb --- /dev/null +++ b/public/emoji/1f1f9-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1e8.svg b/public/emoji/1f1f9-1f1e8.svg new file mode 100644 index 00000000000..ba12e33df8f --- /dev/null +++ b/public/emoji/1f1f9-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1e9.svg b/public/emoji/1f1f9-1f1e9.svg new file mode 100644 index 00000000000..3976073fb36 --- /dev/null +++ b/public/emoji/1f1f9-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1eb.svg b/public/emoji/1f1f9-1f1eb.svg new file mode 100644 index 00000000000..f374f23f699 --- /dev/null +++ b/public/emoji/1f1f9-1f1eb.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1ec.svg b/public/emoji/1f1f9-1f1ec.svg new file mode 100644 index 00000000000..1c9e70f4523 --- /dev/null +++ b/public/emoji/1f1f9-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1ed.svg b/public/emoji/1f1f9-1f1ed.svg new file mode 100644 index 00000000000..d5a54a4d89d --- /dev/null +++ b/public/emoji/1f1f9-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1ef.svg b/public/emoji/1f1f9-1f1ef.svg new file mode 100644 index 00000000000..a7d29de9d08 --- /dev/null +++ b/public/emoji/1f1f9-1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1f0.svg b/public/emoji/1f1f9-1f1f0.svg new file mode 100644 index 00000000000..7c869591e25 --- /dev/null +++ b/public/emoji/1f1f9-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1f1.svg b/public/emoji/1f1f9-1f1f1.svg new file mode 100644 index 00000000000..43e983ac30a --- /dev/null +++ b/public/emoji/1f1f9-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1f2.svg b/public/emoji/1f1f9-1f1f2.svg new file mode 100644 index 00000000000..785f91cbbc2 --- /dev/null +++ b/public/emoji/1f1f9-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1f3.svg b/public/emoji/1f1f9-1f1f3.svg new file mode 100644 index 00000000000..b27930a6593 --- /dev/null +++ b/public/emoji/1f1f9-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1f4.svg b/public/emoji/1f1f9-1f1f4.svg new file mode 100644 index 00000000000..4adcb03430e --- /dev/null +++ b/public/emoji/1f1f9-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1f7.svg b/public/emoji/1f1f9-1f1f7.svg new file mode 100644 index 00000000000..57ab90b7ddc --- /dev/null +++ b/public/emoji/1f1f9-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1f9.svg b/public/emoji/1f1f9-1f1f9.svg new file mode 100644 index 00000000000..d0322a71a8a --- /dev/null +++ b/public/emoji/1f1f9-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1fb.svg b/public/emoji/1f1f9-1f1fb.svg new file mode 100644 index 00000000000..e911e865f64 --- /dev/null +++ b/public/emoji/1f1f9-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1fc.svg b/public/emoji/1f1f9-1f1fc.svg new file mode 100644 index 00000000000..8ac4ed83129 --- /dev/null +++ b/public/emoji/1f1f9-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1ff.svg b/public/emoji/1f1f9-1f1ff.svg new file mode 100644 index 00000000000..9e65b4b844a --- /dev/null +++ b/public/emoji/1f1f9-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9.svg b/public/emoji/1f1f9.svg new file mode 100644 index 00000000000..6d8e6eda823 --- /dev/null +++ b/public/emoji/1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fa-1f1e6.svg b/public/emoji/1f1fa-1f1e6.svg new file mode 100644 index 00000000000..3d4e0e3b59b --- /dev/null +++ b/public/emoji/1f1fa-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fa-1f1ec.svg b/public/emoji/1f1fa-1f1ec.svg new file mode 100644 index 00000000000..450937689ad --- /dev/null +++ b/public/emoji/1f1fa-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fa-1f1f2.svg b/public/emoji/1f1fa-1f1f2.svg new file mode 100644 index 00000000000..48488ea2452 --- /dev/null +++ b/public/emoji/1f1fa-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fa-1f1f8.svg b/public/emoji/1f1fa-1f1f8.svg new file mode 100644 index 00000000000..28e8578e175 --- /dev/null +++ b/public/emoji/1f1fa-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fa-1f1fe.svg b/public/emoji/1f1fa-1f1fe.svg new file mode 100644 index 00000000000..bc4ad70037a --- /dev/null +++ b/public/emoji/1f1fa-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fa-1f1ff.svg b/public/emoji/1f1fa-1f1ff.svg new file mode 100644 index 00000000000..a6bb6cbfd29 --- /dev/null +++ b/public/emoji/1f1fa-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fa.svg b/public/emoji/1f1fa.svg new file mode 100644 index 00000000000..9966d13230d --- /dev/null +++ b/public/emoji/1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fb-1f1e6.svg b/public/emoji/1f1fb-1f1e6.svg new file mode 100644 index 00000000000..d0078effe3a --- /dev/null +++ b/public/emoji/1f1fb-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fb-1f1e8.svg b/public/emoji/1f1fb-1f1e8.svg new file mode 100644 index 00000000000..5cafb43d9d3 --- /dev/null +++ b/public/emoji/1f1fb-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fb-1f1ea.svg b/public/emoji/1f1fb-1f1ea.svg new file mode 100644 index 00000000000..8274ed0b4c4 --- /dev/null +++ b/public/emoji/1f1fb-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fb-1f1ec.svg b/public/emoji/1f1fb-1f1ec.svg new file mode 100644 index 00000000000..e5afefcad80 --- /dev/null +++ b/public/emoji/1f1fb-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fb-1f1ee.svg b/public/emoji/1f1fb-1f1ee.svg new file mode 100644 index 00000000000..2364a0c8c2e --- /dev/null +++ b/public/emoji/1f1fb-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fb-1f1f3.svg b/public/emoji/1f1fb-1f1f3.svg new file mode 100644 index 00000000000..a35b203fd68 --- /dev/null +++ b/public/emoji/1f1fb-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fb-1f1fa.svg b/public/emoji/1f1fb-1f1fa.svg new file mode 100644 index 00000000000..51ac13f4f6e --- /dev/null +++ b/public/emoji/1f1fb-1f1fa.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fb.svg b/public/emoji/1f1fb.svg new file mode 100644 index 00000000000..fd7586dca7b --- /dev/null +++ b/public/emoji/1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fc-1f1eb.svg b/public/emoji/1f1fc-1f1eb.svg new file mode 100644 index 00000000000..16bfba0cfef --- /dev/null +++ b/public/emoji/1f1fc-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fc-1f1f8.svg b/public/emoji/1f1fc-1f1f8.svg new file mode 100644 index 00000000000..67b769ca6e2 --- /dev/null +++ b/public/emoji/1f1fc-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fc.svg b/public/emoji/1f1fc.svg new file mode 100644 index 00000000000..3f2ce79fd6e --- /dev/null +++ b/public/emoji/1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fd-1f1f0.svg b/public/emoji/1f1fd-1f1f0.svg new file mode 100644 index 00000000000..4a771e93810 --- /dev/null +++ b/public/emoji/1f1fd-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fd.svg b/public/emoji/1f1fd.svg new file mode 100644 index 00000000000..0b95b597c0c --- /dev/null +++ b/public/emoji/1f1fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fe-1f1ea.svg b/public/emoji/1f1fe-1f1ea.svg new file mode 100644 index 00000000000..beeca622936 --- /dev/null +++ b/public/emoji/1f1fe-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fe-1f1f9.svg b/public/emoji/1f1fe-1f1f9.svg new file mode 100644 index 00000000000..b2627bf9b99 --- /dev/null +++ b/public/emoji/1f1fe-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fe.svg b/public/emoji/1f1fe.svg new file mode 100644 index 00000000000..fe9e109c052 --- /dev/null +++ b/public/emoji/1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ff-1f1e6.svg b/public/emoji/1f1ff-1f1e6.svg new file mode 100644 index 00000000000..5253e636009 --- /dev/null +++ b/public/emoji/1f1ff-1f1e6.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ff-1f1f2.svg b/public/emoji/1f1ff-1f1f2.svg new file mode 100644 index 00000000000..16306c73933 --- /dev/null +++ b/public/emoji/1f1ff-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ff-1f1fc.svg b/public/emoji/1f1ff-1f1fc.svg new file mode 100644 index 00000000000..77f539e5f49 --- /dev/null +++ b/public/emoji/1f1ff-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ff.svg b/public/emoji/1f1ff.svg new file mode 100644 index 00000000000..133cd3cf3cb --- /dev/null +++ b/public/emoji/1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f201.svg b/public/emoji/1f201.svg new file mode 100644 index 00000000000..44714e7ea35 --- /dev/null +++ b/public/emoji/1f201.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f202.svg b/public/emoji/1f202.svg new file mode 100644 index 00000000000..a6e36bc7d92 --- /dev/null +++ b/public/emoji/1f202.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f21a.svg b/public/emoji/1f21a.svg new file mode 100644 index 00000000000..74c92f22c7d --- /dev/null +++ b/public/emoji/1f21a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f22f.svg b/public/emoji/1f22f.svg new file mode 100644 index 00000000000..07d785adfbf --- /dev/null +++ b/public/emoji/1f22f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f232.svg b/public/emoji/1f232.svg new file mode 100644 index 00000000000..5cc5826cef4 --- /dev/null +++ b/public/emoji/1f232.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f233.svg b/public/emoji/1f233.svg new file mode 100644 index 00000000000..ae8c7bdad5e --- /dev/null +++ b/public/emoji/1f233.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f234.svg b/public/emoji/1f234.svg new file mode 100644 index 00000000000..ea346b6664b --- /dev/null +++ b/public/emoji/1f234.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f235.svg b/public/emoji/1f235.svg new file mode 100644 index 00000000000..ed4265dc3bd --- /dev/null +++ b/public/emoji/1f235.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f236.svg b/public/emoji/1f236.svg new file mode 100644 index 00000000000..8d2d4e38f5e --- /dev/null +++ b/public/emoji/1f236.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f237.svg b/public/emoji/1f237.svg new file mode 100644 index 00000000000..01c87d77594 --- /dev/null +++ b/public/emoji/1f237.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f238.svg b/public/emoji/1f238.svg new file mode 100644 index 00000000000..2bec6690074 --- /dev/null +++ b/public/emoji/1f238.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f239.svg b/public/emoji/1f239.svg new file mode 100644 index 00000000000..c989838cc6b --- /dev/null +++ b/public/emoji/1f239.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f23a.svg b/public/emoji/1f23a.svg new file mode 100644 index 00000000000..2c743f7f919 --- /dev/null +++ b/public/emoji/1f23a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f250.svg b/public/emoji/1f250.svg new file mode 100644 index 00000000000..0518c4af6a6 --- /dev/null +++ b/public/emoji/1f250.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f251.svg b/public/emoji/1f251.svg new file mode 100644 index 00000000000..4da18fa1981 --- /dev/null +++ b/public/emoji/1f251.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f300.svg b/public/emoji/1f300.svg new file mode 100644 index 00000000000..00f6030869e --- /dev/null +++ b/public/emoji/1f300.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f301.svg b/public/emoji/1f301.svg new file mode 100644 index 00000000000..a94c77a88c7 --- /dev/null +++ b/public/emoji/1f301.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f302.svg b/public/emoji/1f302.svg new file mode 100644 index 00000000000..2e02d289500 --- /dev/null +++ b/public/emoji/1f302.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f303.svg b/public/emoji/1f303.svg new file mode 100644 index 00000000000..cb533e58f46 --- /dev/null +++ b/public/emoji/1f303.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f304.svg b/public/emoji/1f304.svg new file mode 100644 index 00000000000..1d032f08283 --- /dev/null +++ b/public/emoji/1f304.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f305.svg b/public/emoji/1f305.svg new file mode 100644 index 00000000000..dfc8498031a --- /dev/null +++ b/public/emoji/1f305.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f306.svg b/public/emoji/1f306.svg new file mode 100644 index 00000000000..0bf2b32a9ae --- /dev/null +++ b/public/emoji/1f306.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f307.svg b/public/emoji/1f307.svg new file mode 100644 index 00000000000..d6648a49023 --- /dev/null +++ b/public/emoji/1f307.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f308.svg b/public/emoji/1f308.svg new file mode 100644 index 00000000000..22ae3f5f848 --- /dev/null +++ b/public/emoji/1f308.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f309.svg b/public/emoji/1f309.svg new file mode 100644 index 00000000000..cdaab3191fa --- /dev/null +++ b/public/emoji/1f309.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f30a.svg b/public/emoji/1f30a.svg new file mode 100644 index 00000000000..efdfafca587 --- /dev/null +++ b/public/emoji/1f30a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f30b.svg b/public/emoji/1f30b.svg new file mode 100644 index 00000000000..51ce7a82efa --- /dev/null +++ b/public/emoji/1f30b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f30c.svg b/public/emoji/1f30c.svg new file mode 100644 index 00000000000..de7a0212d68 --- /dev/null +++ b/public/emoji/1f30c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f30d.svg b/public/emoji/1f30d.svg new file mode 100644 index 00000000000..efe3dee5d40 --- /dev/null +++ b/public/emoji/1f30d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f30e.svg b/public/emoji/1f30e.svg new file mode 100644 index 00000000000..96eb2c4a4be --- /dev/null +++ b/public/emoji/1f30e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f30f.svg b/public/emoji/1f30f.svg new file mode 100644 index 00000000000..3766698ba5c --- /dev/null +++ b/public/emoji/1f30f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f310.svg b/public/emoji/1f310.svg new file mode 100644 index 00000000000..5290ca39f77 --- /dev/null +++ b/public/emoji/1f310.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f311.svg b/public/emoji/1f311.svg new file mode 100644 index 00000000000..78fd41ea068 --- /dev/null +++ b/public/emoji/1f311.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f312.svg b/public/emoji/1f312.svg new file mode 100644 index 00000000000..7bae646dedf --- /dev/null +++ b/public/emoji/1f312.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f313.svg b/public/emoji/1f313.svg new file mode 100644 index 00000000000..2a604a0f77c --- /dev/null +++ b/public/emoji/1f313.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f314.svg b/public/emoji/1f314.svg new file mode 100644 index 00000000000..8fd4cf6a787 --- /dev/null +++ b/public/emoji/1f314.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f315.svg b/public/emoji/1f315.svg new file mode 100644 index 00000000000..cdcbea5971a --- /dev/null +++ b/public/emoji/1f315.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f316.svg b/public/emoji/1f316.svg new file mode 100644 index 00000000000..0e1aa7b986d --- /dev/null +++ b/public/emoji/1f316.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f317.svg b/public/emoji/1f317.svg new file mode 100644 index 00000000000..fe9e6db9d5f --- /dev/null +++ b/public/emoji/1f317.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f318.svg b/public/emoji/1f318.svg new file mode 100644 index 00000000000..0cc59a6d054 --- /dev/null +++ b/public/emoji/1f318.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f319.svg b/public/emoji/1f319.svg new file mode 100644 index 00000000000..3fd5b28f936 --- /dev/null +++ b/public/emoji/1f319.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f31a.svg b/public/emoji/1f31a.svg new file mode 100644 index 00000000000..201d831f2ae --- /dev/null +++ b/public/emoji/1f31a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f31b.svg b/public/emoji/1f31b.svg new file mode 100644 index 00000000000..1f67f817da2 --- /dev/null +++ b/public/emoji/1f31b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f31c.svg b/public/emoji/1f31c.svg new file mode 100644 index 00000000000..53b98ca502e --- /dev/null +++ b/public/emoji/1f31c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f31d.svg b/public/emoji/1f31d.svg new file mode 100644 index 00000000000..90c6d5019e3 --- /dev/null +++ b/public/emoji/1f31d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f31e.svg b/public/emoji/1f31e.svg new file mode 100644 index 00000000000..f86c173d6eb --- /dev/null +++ b/public/emoji/1f31e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f31f.svg b/public/emoji/1f31f.svg new file mode 100644 index 00000000000..13565256fd4 --- /dev/null +++ b/public/emoji/1f31f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f320.svg b/public/emoji/1f320.svg new file mode 100644 index 00000000000..c79d56a39b3 --- /dev/null +++ b/public/emoji/1f320.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f321.svg b/public/emoji/1f321.svg new file mode 100644 index 00000000000..b6419126b83 --- /dev/null +++ b/public/emoji/1f321.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f324.svg b/public/emoji/1f324.svg new file mode 100644 index 00000000000..0bfacd23d68 --- /dev/null +++ b/public/emoji/1f324.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f325.svg b/public/emoji/1f325.svg new file mode 100644 index 00000000000..41fc0560ce8 --- /dev/null +++ b/public/emoji/1f325.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f326.svg b/public/emoji/1f326.svg new file mode 100644 index 00000000000..8f83b295f28 --- /dev/null +++ b/public/emoji/1f326.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f327.svg b/public/emoji/1f327.svg new file mode 100644 index 00000000000..52e6a1eff2a --- /dev/null +++ b/public/emoji/1f327.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f328.svg b/public/emoji/1f328.svg new file mode 100644 index 00000000000..dc0e858a89a --- /dev/null +++ b/public/emoji/1f328.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f329.svg b/public/emoji/1f329.svg new file mode 100644 index 00000000000..d7844b627b3 --- /dev/null +++ b/public/emoji/1f329.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f32a.svg b/public/emoji/1f32a.svg new file mode 100644 index 00000000000..87326d990b7 --- /dev/null +++ b/public/emoji/1f32a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f32b.svg b/public/emoji/1f32b.svg new file mode 100644 index 00000000000..a294ee341f4 --- /dev/null +++ b/public/emoji/1f32b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f32c.svg b/public/emoji/1f32c.svg new file mode 100644 index 00000000000..652f28b7c90 --- /dev/null +++ b/public/emoji/1f32c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f32d.svg b/public/emoji/1f32d.svg new file mode 100644 index 00000000000..e9acb62da3d --- /dev/null +++ b/public/emoji/1f32d.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f32e.svg b/public/emoji/1f32e.svg new file mode 100644 index 00000000000..7ce2afabeda --- /dev/null +++ b/public/emoji/1f32e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f32f.svg b/public/emoji/1f32f.svg new file mode 100644 index 00000000000..6ae90390222 --- /dev/null +++ b/public/emoji/1f32f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f330.svg b/public/emoji/1f330.svg new file mode 100644 index 00000000000..5def6560459 --- /dev/null +++ b/public/emoji/1f330.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f331.svg b/public/emoji/1f331.svg new file mode 100644 index 00000000000..90f17ee2969 --- /dev/null +++ b/public/emoji/1f331.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f332.svg b/public/emoji/1f332.svg new file mode 100644 index 00000000000..be209886311 --- /dev/null +++ b/public/emoji/1f332.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f333.svg b/public/emoji/1f333.svg new file mode 100644 index 00000000000..4f29da350eb --- /dev/null +++ b/public/emoji/1f333.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f334.svg b/public/emoji/1f334.svg new file mode 100644 index 00000000000..b0cec6d92d0 --- /dev/null +++ b/public/emoji/1f334.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f335.svg b/public/emoji/1f335.svg new file mode 100644 index 00000000000..b980aad283c --- /dev/null +++ b/public/emoji/1f335.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f336.svg b/public/emoji/1f336.svg new file mode 100644 index 00000000000..3763d91d284 --- /dev/null +++ b/public/emoji/1f336.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f337.svg b/public/emoji/1f337.svg new file mode 100644 index 00000000000..65121894159 --- /dev/null +++ b/public/emoji/1f337.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f338.svg b/public/emoji/1f338.svg new file mode 100644 index 00000000000..eb6d6da7b98 --- /dev/null +++ b/public/emoji/1f338.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f339.svg b/public/emoji/1f339.svg new file mode 100644 index 00000000000..e7122eb3238 --- /dev/null +++ b/public/emoji/1f339.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f33a.svg b/public/emoji/1f33a.svg new file mode 100644 index 00000000000..557788787f6 --- /dev/null +++ b/public/emoji/1f33a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f33b.svg b/public/emoji/1f33b.svg new file mode 100644 index 00000000000..3834929fe11 --- /dev/null +++ b/public/emoji/1f33b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f33c.svg b/public/emoji/1f33c.svg new file mode 100644 index 00000000000..15d42073582 --- /dev/null +++ b/public/emoji/1f33c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f33d.svg b/public/emoji/1f33d.svg new file mode 100644 index 00000000000..074139da8ce --- /dev/null +++ b/public/emoji/1f33d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f33e.svg b/public/emoji/1f33e.svg new file mode 100644 index 00000000000..5b02cf7cb7b --- /dev/null +++ b/public/emoji/1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f33f.svg b/public/emoji/1f33f.svg new file mode 100644 index 00000000000..174e90223c6 --- /dev/null +++ b/public/emoji/1f33f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f340.svg b/public/emoji/1f340.svg new file mode 100644 index 00000000000..0b06567d5ed --- /dev/null +++ b/public/emoji/1f340.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f341.svg b/public/emoji/1f341.svg new file mode 100644 index 00000000000..35a45636261 --- /dev/null +++ b/public/emoji/1f341.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f342.svg b/public/emoji/1f342.svg new file mode 100644 index 00000000000..7ca377c8738 --- /dev/null +++ b/public/emoji/1f342.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f343.svg b/public/emoji/1f343.svg new file mode 100644 index 00000000000..c19539d9d0b --- /dev/null +++ b/public/emoji/1f343.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f344.svg b/public/emoji/1f344.svg new file mode 100644 index 00000000000..853a49d20c0 --- /dev/null +++ b/public/emoji/1f344.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f345.svg b/public/emoji/1f345.svg new file mode 100644 index 00000000000..b0f3efc4e0e --- /dev/null +++ b/public/emoji/1f345.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f346.svg b/public/emoji/1f346.svg new file mode 100644 index 00000000000..78a52f6c8e1 --- /dev/null +++ b/public/emoji/1f346.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f347.svg b/public/emoji/1f347.svg new file mode 100644 index 00000000000..e924fc21636 --- /dev/null +++ b/public/emoji/1f347.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f348.svg b/public/emoji/1f348.svg new file mode 100644 index 00000000000..d715aaa2524 --- /dev/null +++ b/public/emoji/1f348.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f349.svg b/public/emoji/1f349.svg new file mode 100644 index 00000000000..0f7a175f77a --- /dev/null +++ b/public/emoji/1f349.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f34a.svg b/public/emoji/1f34a.svg new file mode 100644 index 00000000000..a6c48c5ff0a --- /dev/null +++ b/public/emoji/1f34a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f34b.svg b/public/emoji/1f34b.svg new file mode 100644 index 00000000000..e6dafd4c743 --- /dev/null +++ b/public/emoji/1f34b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f34c.svg b/public/emoji/1f34c.svg new file mode 100644 index 00000000000..9f7af936f18 --- /dev/null +++ b/public/emoji/1f34c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f34d.svg b/public/emoji/1f34d.svg new file mode 100644 index 00000000000..350c11f2819 --- /dev/null +++ b/public/emoji/1f34d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f34e.svg b/public/emoji/1f34e.svg new file mode 100644 index 00000000000..1353d5dd57a --- /dev/null +++ b/public/emoji/1f34e.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f34f.svg b/public/emoji/1f34f.svg new file mode 100644 index 00000000000..27561bc31df --- /dev/null +++ b/public/emoji/1f34f.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f350.svg b/public/emoji/1f350.svg new file mode 100644 index 00000000000..467a86e13ac --- /dev/null +++ b/public/emoji/1f350.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f351.svg b/public/emoji/1f351.svg new file mode 100644 index 00000000000..574969a8e8c --- /dev/null +++ b/public/emoji/1f351.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f352.svg b/public/emoji/1f352.svg new file mode 100644 index 00000000000..d43aca6dcfc --- /dev/null +++ b/public/emoji/1f352.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f353.svg b/public/emoji/1f353.svg new file mode 100644 index 00000000000..709e0db4b42 --- /dev/null +++ b/public/emoji/1f353.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f354.svg b/public/emoji/1f354.svg new file mode 100644 index 00000000000..34608757f3a --- /dev/null +++ b/public/emoji/1f354.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f355.svg b/public/emoji/1f355.svg new file mode 100644 index 00000000000..4bd17b70e06 --- /dev/null +++ b/public/emoji/1f355.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f356.svg b/public/emoji/1f356.svg new file mode 100644 index 00000000000..d1b3e056e92 --- /dev/null +++ b/public/emoji/1f356.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f357.svg b/public/emoji/1f357.svg new file mode 100644 index 00000000000..dca233f0beb --- /dev/null +++ b/public/emoji/1f357.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f358.svg b/public/emoji/1f358.svg new file mode 100644 index 00000000000..5e38bb4fbe3 --- /dev/null +++ b/public/emoji/1f358.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f359.svg b/public/emoji/1f359.svg new file mode 100644 index 00000000000..0c7cf7952bf --- /dev/null +++ b/public/emoji/1f359.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f35a.svg b/public/emoji/1f35a.svg new file mode 100644 index 00000000000..08398ca6cd6 --- /dev/null +++ b/public/emoji/1f35a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f35b.svg b/public/emoji/1f35b.svg new file mode 100644 index 00000000000..5880aea591d --- /dev/null +++ b/public/emoji/1f35b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f35c.svg b/public/emoji/1f35c.svg new file mode 100644 index 00000000000..93c4cdbf2b2 --- /dev/null +++ b/public/emoji/1f35c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f35d.svg b/public/emoji/1f35d.svg new file mode 100644 index 00000000000..52f7db9cab6 --- /dev/null +++ b/public/emoji/1f35d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f35e.svg b/public/emoji/1f35e.svg new file mode 100644 index 00000000000..bbaae9cc6ca --- /dev/null +++ b/public/emoji/1f35e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f35f.svg b/public/emoji/1f35f.svg new file mode 100644 index 00000000000..fe9e1bac70b --- /dev/null +++ b/public/emoji/1f35f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f360.svg b/public/emoji/1f360.svg new file mode 100644 index 00000000000..bfbbd9c5002 --- /dev/null +++ b/public/emoji/1f360.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f361.svg b/public/emoji/1f361.svg new file mode 100644 index 00000000000..6cc82e3d9a8 --- /dev/null +++ b/public/emoji/1f361.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f362.svg b/public/emoji/1f362.svg new file mode 100644 index 00000000000..f00dbf6dfa5 --- /dev/null +++ b/public/emoji/1f362.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f363.svg b/public/emoji/1f363.svg new file mode 100644 index 00000000000..93aed080747 --- /dev/null +++ b/public/emoji/1f363.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f364.svg b/public/emoji/1f364.svg new file mode 100644 index 00000000000..c64f84077d4 --- /dev/null +++ b/public/emoji/1f364.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f365.svg b/public/emoji/1f365.svg new file mode 100644 index 00000000000..9932d3438a2 --- /dev/null +++ b/public/emoji/1f365.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f366.svg b/public/emoji/1f366.svg new file mode 100644 index 00000000000..aab1e61fd31 --- /dev/null +++ b/public/emoji/1f366.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f367.svg b/public/emoji/1f367.svg new file mode 100644 index 00000000000..296c4f71770 --- /dev/null +++ b/public/emoji/1f367.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f368.svg b/public/emoji/1f368.svg new file mode 100644 index 00000000000..c1524bf3731 --- /dev/null +++ b/public/emoji/1f368.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f369.svg b/public/emoji/1f369.svg new file mode 100644 index 00000000000..6620235bcdc --- /dev/null +++ b/public/emoji/1f369.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f36a.svg b/public/emoji/1f36a.svg new file mode 100644 index 00000000000..8daf31164c5 --- /dev/null +++ b/public/emoji/1f36a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f36b.svg b/public/emoji/1f36b.svg new file mode 100644 index 00000000000..493e7b34ae0 --- /dev/null +++ b/public/emoji/1f36b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f36c.svg b/public/emoji/1f36c.svg new file mode 100644 index 00000000000..2c26a67d9a1 --- /dev/null +++ b/public/emoji/1f36c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f36d.svg b/public/emoji/1f36d.svg new file mode 100644 index 00000000000..887f57c0035 --- /dev/null +++ b/public/emoji/1f36d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f36e.svg b/public/emoji/1f36e.svg new file mode 100644 index 00000000000..de1d4317eef --- /dev/null +++ b/public/emoji/1f36e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f36f.svg b/public/emoji/1f36f.svg new file mode 100644 index 00000000000..031903fc19b --- /dev/null +++ b/public/emoji/1f36f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f370.svg b/public/emoji/1f370.svg new file mode 100644 index 00000000000..c42ca1b6f1d --- /dev/null +++ b/public/emoji/1f370.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f371.svg b/public/emoji/1f371.svg new file mode 100644 index 00000000000..dbc80e5b304 --- /dev/null +++ b/public/emoji/1f371.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f372.svg b/public/emoji/1f372.svg new file mode 100644 index 00000000000..52663af16da --- /dev/null +++ b/public/emoji/1f372.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f373.svg b/public/emoji/1f373.svg new file mode 100644 index 00000000000..4f80ed53c02 --- /dev/null +++ b/public/emoji/1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f374.svg b/public/emoji/1f374.svg new file mode 100644 index 00000000000..e9d6b48ef98 --- /dev/null +++ b/public/emoji/1f374.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f375.svg b/public/emoji/1f375.svg new file mode 100644 index 00000000000..7f210fc7695 --- /dev/null +++ b/public/emoji/1f375.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f376.svg b/public/emoji/1f376.svg new file mode 100644 index 00000000000..b573b4566a1 --- /dev/null +++ b/public/emoji/1f376.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f377.svg b/public/emoji/1f377.svg new file mode 100644 index 00000000000..e2652b0a32c --- /dev/null +++ b/public/emoji/1f377.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f378.svg b/public/emoji/1f378.svg new file mode 100644 index 00000000000..a8c9960d86f --- /dev/null +++ b/public/emoji/1f378.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f379.svg b/public/emoji/1f379.svg new file mode 100644 index 00000000000..b96f8f05cfc --- /dev/null +++ b/public/emoji/1f379.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f37a.svg b/public/emoji/1f37a.svg new file mode 100644 index 00000000000..85e65ba62d3 --- /dev/null +++ b/public/emoji/1f37a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f37b.svg b/public/emoji/1f37b.svg new file mode 100644 index 00000000000..76c8bdc071b --- /dev/null +++ b/public/emoji/1f37b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f37c.svg b/public/emoji/1f37c.svg new file mode 100644 index 00000000000..1491a98b886 --- /dev/null +++ b/public/emoji/1f37c.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f37d.svg b/public/emoji/1f37d.svg new file mode 100644 index 00000000000..95bd3821f5e --- /dev/null +++ b/public/emoji/1f37d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f37e.svg b/public/emoji/1f37e.svg new file mode 100644 index 00000000000..24714015c48 --- /dev/null +++ b/public/emoji/1f37e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f37f.svg b/public/emoji/1f37f.svg new file mode 100644 index 00000000000..74510dcbe49 --- /dev/null +++ b/public/emoji/1f37f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f380.svg b/public/emoji/1f380.svg new file mode 100644 index 00000000000..12c535e99c6 --- /dev/null +++ b/public/emoji/1f380.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f381.svg b/public/emoji/1f381.svg new file mode 100644 index 00000000000..bd62608c9a7 --- /dev/null +++ b/public/emoji/1f381.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f382.svg b/public/emoji/1f382.svg new file mode 100644 index 00000000000..0bbef8ccc58 --- /dev/null +++ b/public/emoji/1f382.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f383.svg b/public/emoji/1f383.svg new file mode 100644 index 00000000000..21144b72ead --- /dev/null +++ b/public/emoji/1f383.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f384.svg b/public/emoji/1f384.svg new file mode 100644 index 00000000000..27bbe5fc5ab --- /dev/null +++ b/public/emoji/1f384.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f385-1f3fb.svg b/public/emoji/1f385-1f3fb.svg new file mode 100644 index 00000000000..13c2657c34d --- /dev/null +++ b/public/emoji/1f385-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f385-1f3fc.svg b/public/emoji/1f385-1f3fc.svg new file mode 100644 index 00000000000..4089865318f --- /dev/null +++ b/public/emoji/1f385-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f385-1f3fd.svg b/public/emoji/1f385-1f3fd.svg new file mode 100644 index 00000000000..9286b2f809f --- /dev/null +++ b/public/emoji/1f385-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f385-1f3fe.svg b/public/emoji/1f385-1f3fe.svg new file mode 100644 index 00000000000..3745e8eef1f --- /dev/null +++ b/public/emoji/1f385-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f385-1f3ff.svg b/public/emoji/1f385-1f3ff.svg new file mode 100644 index 00000000000..af8c96721c3 --- /dev/null +++ b/public/emoji/1f385-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f385.svg b/public/emoji/1f385.svg new file mode 100644 index 00000000000..9f07458bae6 --- /dev/null +++ b/public/emoji/1f385.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f386.svg b/public/emoji/1f386.svg new file mode 100644 index 00000000000..9b8995a4e67 --- /dev/null +++ b/public/emoji/1f386.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f387.svg b/public/emoji/1f387.svg new file mode 100644 index 00000000000..2014225233b --- /dev/null +++ b/public/emoji/1f387.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f388.svg b/public/emoji/1f388.svg new file mode 100644 index 00000000000..d29c08e05d4 --- /dev/null +++ b/public/emoji/1f388.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f389.svg b/public/emoji/1f389.svg new file mode 100644 index 00000000000..b0adb4c7257 --- /dev/null +++ b/public/emoji/1f389.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f38a.svg b/public/emoji/1f38a.svg new file mode 100644 index 00000000000..a29c16a78c5 --- /dev/null +++ b/public/emoji/1f38a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f38b.svg b/public/emoji/1f38b.svg new file mode 100644 index 00000000000..ad576db713f --- /dev/null +++ b/public/emoji/1f38b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f38c.svg b/public/emoji/1f38c.svg new file mode 100644 index 00000000000..959e66865cd --- /dev/null +++ b/public/emoji/1f38c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f38d.svg b/public/emoji/1f38d.svg new file mode 100644 index 00000000000..952e4c4c652 --- /dev/null +++ b/public/emoji/1f38d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f38e.svg b/public/emoji/1f38e.svg new file mode 100644 index 00000000000..05628ca3ac5 --- /dev/null +++ b/public/emoji/1f38e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f38f.svg b/public/emoji/1f38f.svg new file mode 100644 index 00000000000..8f1261b6c3d --- /dev/null +++ b/public/emoji/1f38f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f390.svg b/public/emoji/1f390.svg new file mode 100644 index 00000000000..6a2c3ac9027 --- /dev/null +++ b/public/emoji/1f390.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f391.svg b/public/emoji/1f391.svg new file mode 100644 index 00000000000..7a1e114284f --- /dev/null +++ b/public/emoji/1f391.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f392.svg b/public/emoji/1f392.svg new file mode 100644 index 00000000000..812ae04099b --- /dev/null +++ b/public/emoji/1f392.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f393.svg b/public/emoji/1f393.svg new file mode 100644 index 00000000000..743f8c1d982 --- /dev/null +++ b/public/emoji/1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f396.svg b/public/emoji/1f396.svg new file mode 100644 index 00000000000..316e3a49eb5 --- /dev/null +++ b/public/emoji/1f396.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f397.svg b/public/emoji/1f397.svg new file mode 100644 index 00000000000..11875061e15 --- /dev/null +++ b/public/emoji/1f397.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f399.svg b/public/emoji/1f399.svg new file mode 100644 index 00000000000..44c4b3f0a26 --- /dev/null +++ b/public/emoji/1f399.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f39a.svg b/public/emoji/1f39a.svg new file mode 100644 index 00000000000..426ccd12ff9 --- /dev/null +++ b/public/emoji/1f39a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f39b.svg b/public/emoji/1f39b.svg new file mode 100644 index 00000000000..54dda727d29 --- /dev/null +++ b/public/emoji/1f39b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f39e.svg b/public/emoji/1f39e.svg new file mode 100644 index 00000000000..1a65cc86ec4 --- /dev/null +++ b/public/emoji/1f39e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f39f.svg b/public/emoji/1f39f.svg new file mode 100644 index 00000000000..6e4c9b6922c --- /dev/null +++ b/public/emoji/1f39f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3a0.svg b/public/emoji/1f3a0.svg new file mode 100644 index 00000000000..1c1feb0901c --- /dev/null +++ b/public/emoji/1f3a0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3a1.svg b/public/emoji/1f3a1.svg new file mode 100644 index 00000000000..72c71cd4219 --- /dev/null +++ b/public/emoji/1f3a1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3a2.svg b/public/emoji/1f3a2.svg new file mode 100644 index 00000000000..e8efa01a22b --- /dev/null +++ b/public/emoji/1f3a2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3a3.svg b/public/emoji/1f3a3.svg new file mode 100644 index 00000000000..daa26dc601c --- /dev/null +++ b/public/emoji/1f3a3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3a4.svg b/public/emoji/1f3a4.svg new file mode 100644 index 00000000000..810538abda3 --- /dev/null +++ b/public/emoji/1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3a5.svg b/public/emoji/1f3a5.svg new file mode 100644 index 00000000000..da84a9fc618 --- /dev/null +++ b/public/emoji/1f3a5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3a6.svg b/public/emoji/1f3a6.svg new file mode 100644 index 00000000000..1dca8b5178f --- /dev/null +++ b/public/emoji/1f3a6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3a7.svg b/public/emoji/1f3a7.svg new file mode 100644 index 00000000000..15d02890220 --- /dev/null +++ b/public/emoji/1f3a7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3a8.svg b/public/emoji/1f3a8.svg new file mode 100644 index 00000000000..c70f95ee6c4 --- /dev/null +++ b/public/emoji/1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3a9.svg b/public/emoji/1f3a9.svg new file mode 100644 index 00000000000..d61f2f3d014 --- /dev/null +++ b/public/emoji/1f3a9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3aa.svg b/public/emoji/1f3aa.svg new file mode 100644 index 00000000000..6d0fdff84d2 --- /dev/null +++ b/public/emoji/1f3aa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ab.svg b/public/emoji/1f3ab.svg new file mode 100644 index 00000000000..4e2c9b8ebc7 --- /dev/null +++ b/public/emoji/1f3ab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ac.svg b/public/emoji/1f3ac.svg new file mode 100644 index 00000000000..7e70040c5e5 --- /dev/null +++ b/public/emoji/1f3ac.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ad.svg b/public/emoji/1f3ad.svg new file mode 100644 index 00000000000..f94769858f4 --- /dev/null +++ b/public/emoji/1f3ad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ae.svg b/public/emoji/1f3ae.svg new file mode 100644 index 00000000000..534a483de13 --- /dev/null +++ b/public/emoji/1f3ae.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3af.svg b/public/emoji/1f3af.svg new file mode 100644 index 00000000000..fe4adfa486c --- /dev/null +++ b/public/emoji/1f3af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3b0.svg b/public/emoji/1f3b0.svg new file mode 100644 index 00000000000..bf844ef6325 --- /dev/null +++ b/public/emoji/1f3b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3b1.svg b/public/emoji/1f3b1.svg new file mode 100644 index 00000000000..c4dcbfe7f8f --- /dev/null +++ b/public/emoji/1f3b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3b2.svg b/public/emoji/1f3b2.svg new file mode 100644 index 00000000000..56434d024df --- /dev/null +++ b/public/emoji/1f3b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3b3.svg b/public/emoji/1f3b3.svg new file mode 100644 index 00000000000..3fe632fcbf5 --- /dev/null +++ b/public/emoji/1f3b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3b4.svg b/public/emoji/1f3b4.svg new file mode 100644 index 00000000000..9618a3cb199 --- /dev/null +++ b/public/emoji/1f3b4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3b5.svg b/public/emoji/1f3b5.svg new file mode 100644 index 00000000000..7ce21dd8d19 --- /dev/null +++ b/public/emoji/1f3b5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3b6.svg b/public/emoji/1f3b6.svg new file mode 100644 index 00000000000..9c0b8a81e88 --- /dev/null +++ b/public/emoji/1f3b6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3b7.svg b/public/emoji/1f3b7.svg new file mode 100644 index 00000000000..a3bf5ca27d5 --- /dev/null +++ b/public/emoji/1f3b7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3b8.svg b/public/emoji/1f3b8.svg new file mode 100644 index 00000000000..e31145b883c --- /dev/null +++ b/public/emoji/1f3b8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3b9.svg b/public/emoji/1f3b9.svg new file mode 100644 index 00000000000..4605d3fbd5b --- /dev/null +++ b/public/emoji/1f3b9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ba.svg b/public/emoji/1f3ba.svg new file mode 100644 index 00000000000..248ae7d2aa2 --- /dev/null +++ b/public/emoji/1f3ba.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f3bb.svg b/public/emoji/1f3bb.svg new file mode 100644 index 00000000000..3e9cf6e764d --- /dev/null +++ b/public/emoji/1f3bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3bc.svg b/public/emoji/1f3bc.svg new file mode 100644 index 00000000000..c07402486c7 --- /dev/null +++ b/public/emoji/1f3bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3bd.svg b/public/emoji/1f3bd.svg new file mode 100644 index 00000000000..b612348f3fc --- /dev/null +++ b/public/emoji/1f3bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3be.svg b/public/emoji/1f3be.svg new file mode 100644 index 00000000000..25ead517e9f --- /dev/null +++ b/public/emoji/1f3be.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3bf.svg b/public/emoji/1f3bf.svg new file mode 100644 index 00000000000..c18b6706dd1 --- /dev/null +++ b/public/emoji/1f3bf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c0.svg b/public/emoji/1f3c0.svg new file mode 100644 index 00000000000..4c88cd07ed5 --- /dev/null +++ b/public/emoji/1f3c0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c1.svg b/public/emoji/1f3c1.svg new file mode 100644 index 00000000000..a57b1b00143 --- /dev/null +++ b/public/emoji/1f3c1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c2.svg b/public/emoji/1f3c2.svg new file mode 100644 index 00000000000..347e2d7f789 --- /dev/null +++ b/public/emoji/1f3c2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c3-1f3fb.svg b/public/emoji/1f3c3-1f3fb.svg new file mode 100644 index 00000000000..4b9b89b0687 --- /dev/null +++ b/public/emoji/1f3c3-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c3-1f3fc.svg b/public/emoji/1f3c3-1f3fc.svg new file mode 100644 index 00000000000..fd2a61abd92 --- /dev/null +++ b/public/emoji/1f3c3-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c3-1f3fd.svg b/public/emoji/1f3c3-1f3fd.svg new file mode 100644 index 00000000000..6e8a3ba0d93 --- /dev/null +++ b/public/emoji/1f3c3-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c3-1f3fe.svg b/public/emoji/1f3c3-1f3fe.svg new file mode 100644 index 00000000000..819f33c333b --- /dev/null +++ b/public/emoji/1f3c3-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c3-1f3ff.svg b/public/emoji/1f3c3-1f3ff.svg new file mode 100644 index 00000000000..622c252e464 --- /dev/null +++ b/public/emoji/1f3c3-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c3.svg b/public/emoji/1f3c3.svg new file mode 100644 index 00000000000..e292a290c69 --- /dev/null +++ b/public/emoji/1f3c3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c4-1f3fb.svg b/public/emoji/1f3c4-1f3fb.svg new file mode 100644 index 00000000000..b76cc56bcda --- /dev/null +++ b/public/emoji/1f3c4-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c4-1f3fc.svg b/public/emoji/1f3c4-1f3fc.svg new file mode 100644 index 00000000000..f595853c7a4 --- /dev/null +++ b/public/emoji/1f3c4-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c4-1f3fd.svg b/public/emoji/1f3c4-1f3fd.svg new file mode 100644 index 00000000000..5ddcf250fea --- /dev/null +++ b/public/emoji/1f3c4-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c4-1f3fe.svg b/public/emoji/1f3c4-1f3fe.svg new file mode 100644 index 00000000000..bf0fa36f2c2 --- /dev/null +++ b/public/emoji/1f3c4-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c4-1f3ff.svg b/public/emoji/1f3c4-1f3ff.svg new file mode 100644 index 00000000000..294226da2d0 --- /dev/null +++ b/public/emoji/1f3c4-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c4.svg b/public/emoji/1f3c4.svg new file mode 100644 index 00000000000..53b845c633e --- /dev/null +++ b/public/emoji/1f3c4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c5.svg b/public/emoji/1f3c5.svg new file mode 100644 index 00000000000..4862d3c6929 --- /dev/null +++ b/public/emoji/1f3c5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c6.svg b/public/emoji/1f3c6.svg new file mode 100644 index 00000000000..025592e6df6 --- /dev/null +++ b/public/emoji/1f3c6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c7-1f3fb.svg b/public/emoji/1f3c7-1f3fb.svg new file mode 100644 index 00000000000..308dd7abefe --- /dev/null +++ b/public/emoji/1f3c7-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c7-1f3fc.svg b/public/emoji/1f3c7-1f3fc.svg new file mode 100644 index 00000000000..f841b3e2d7e --- /dev/null +++ b/public/emoji/1f3c7-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c7-1f3fd.svg b/public/emoji/1f3c7-1f3fd.svg new file mode 100644 index 00000000000..ca972a62fcd --- /dev/null +++ b/public/emoji/1f3c7-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c7-1f3fe.svg b/public/emoji/1f3c7-1f3fe.svg new file mode 100644 index 00000000000..c8f38508495 --- /dev/null +++ b/public/emoji/1f3c7-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c7-1f3ff.svg b/public/emoji/1f3c7-1f3ff.svg new file mode 100644 index 00000000000..1ee4554df15 --- /dev/null +++ b/public/emoji/1f3c7-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c7.svg b/public/emoji/1f3c7.svg new file mode 100644 index 00000000000..f790b688592 --- /dev/null +++ b/public/emoji/1f3c7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c8.svg b/public/emoji/1f3c8.svg new file mode 100644 index 00000000000..85ecdbf9cba --- /dev/null +++ b/public/emoji/1f3c8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c9.svg b/public/emoji/1f3c9.svg new file mode 100644 index 00000000000..dca5f049351 --- /dev/null +++ b/public/emoji/1f3c9.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ca-1f3fb.svg b/public/emoji/1f3ca-1f3fb.svg new file mode 100644 index 00000000000..8484a53049e --- /dev/null +++ b/public/emoji/1f3ca-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ca-1f3fc.svg b/public/emoji/1f3ca-1f3fc.svg new file mode 100644 index 00000000000..456bee3b395 --- /dev/null +++ b/public/emoji/1f3ca-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ca-1f3fd.svg b/public/emoji/1f3ca-1f3fd.svg new file mode 100644 index 00000000000..57e0642245f --- /dev/null +++ b/public/emoji/1f3ca-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ca-1f3fe.svg b/public/emoji/1f3ca-1f3fe.svg new file mode 100644 index 00000000000..12d607b4bb1 --- /dev/null +++ b/public/emoji/1f3ca-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ca-1f3ff.svg b/public/emoji/1f3ca-1f3ff.svg new file mode 100644 index 00000000000..99fe3f240e9 --- /dev/null +++ b/public/emoji/1f3ca-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ca.svg b/public/emoji/1f3ca.svg new file mode 100644 index 00000000000..5b62b5cc772 --- /dev/null +++ b/public/emoji/1f3ca.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3cb-1f3fb.svg b/public/emoji/1f3cb-1f3fb.svg new file mode 100644 index 00000000000..1d993f5b36f --- /dev/null +++ b/public/emoji/1f3cb-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3cb-1f3fc.svg b/public/emoji/1f3cb-1f3fc.svg new file mode 100644 index 00000000000..4b386c0119d --- /dev/null +++ b/public/emoji/1f3cb-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3cb-1f3fd.svg b/public/emoji/1f3cb-1f3fd.svg new file mode 100644 index 00000000000..06778330e18 --- /dev/null +++ b/public/emoji/1f3cb-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3cb-1f3fe.svg b/public/emoji/1f3cb-1f3fe.svg new file mode 100644 index 00000000000..7df96c44d2a --- /dev/null +++ b/public/emoji/1f3cb-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3cb-1f3ff.svg b/public/emoji/1f3cb-1f3ff.svg new file mode 100644 index 00000000000..252bf0e4a8c --- /dev/null +++ b/public/emoji/1f3cb-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3cb.svg b/public/emoji/1f3cb.svg new file mode 100644 index 00000000000..606b0076bcf --- /dev/null +++ b/public/emoji/1f3cb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3cc.svg b/public/emoji/1f3cc.svg new file mode 100644 index 00000000000..25cce198a94 --- /dev/null +++ b/public/emoji/1f3cc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3cd.svg b/public/emoji/1f3cd.svg new file mode 100644 index 00000000000..ea58df55bed --- /dev/null +++ b/public/emoji/1f3cd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ce.svg b/public/emoji/1f3ce.svg new file mode 100644 index 00000000000..f6bb1d8f9c1 --- /dev/null +++ b/public/emoji/1f3ce.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3cf.svg b/public/emoji/1f3cf.svg new file mode 100644 index 00000000000..1723dfe48f1 --- /dev/null +++ b/public/emoji/1f3cf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3d0.svg b/public/emoji/1f3d0.svg new file mode 100644 index 00000000000..bf0a6132390 --- /dev/null +++ b/public/emoji/1f3d0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3d1.svg b/public/emoji/1f3d1.svg new file mode 100644 index 00000000000..22278e5754f --- /dev/null +++ b/public/emoji/1f3d1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3d2.svg b/public/emoji/1f3d2.svg new file mode 100644 index 00000000000..84c1cd50991 --- /dev/null +++ b/public/emoji/1f3d2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3d3.svg b/public/emoji/1f3d3.svg new file mode 100644 index 00000000000..f7ecc84613b --- /dev/null +++ b/public/emoji/1f3d3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3d4.svg b/public/emoji/1f3d4.svg new file mode 100644 index 00000000000..fad85a34ee2 --- /dev/null +++ b/public/emoji/1f3d4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3d5.svg b/public/emoji/1f3d5.svg new file mode 100644 index 00000000000..166f1a74f3d --- /dev/null +++ b/public/emoji/1f3d5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3d6.svg b/public/emoji/1f3d6.svg new file mode 100644 index 00000000000..7aa2ca8b9a7 --- /dev/null +++ b/public/emoji/1f3d6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3d7.svg b/public/emoji/1f3d7.svg new file mode 100644 index 00000000000..a29f1db2707 --- /dev/null +++ b/public/emoji/1f3d7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3d8.svg b/public/emoji/1f3d8.svg new file mode 100644 index 00000000000..ba838e874f1 --- /dev/null +++ b/public/emoji/1f3d8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3d9.svg b/public/emoji/1f3d9.svg new file mode 100644 index 00000000000..3deabda4524 --- /dev/null +++ b/public/emoji/1f3d9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3da.svg b/public/emoji/1f3da.svg new file mode 100644 index 00000000000..bf6c30621f0 --- /dev/null +++ b/public/emoji/1f3da.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3db.svg b/public/emoji/1f3db.svg new file mode 100644 index 00000000000..501ea5c8b67 --- /dev/null +++ b/public/emoji/1f3db.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3dc.svg b/public/emoji/1f3dc.svg new file mode 100644 index 00000000000..f95f15ea754 --- /dev/null +++ b/public/emoji/1f3dc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3dd.svg b/public/emoji/1f3dd.svg new file mode 100644 index 00000000000..c9bf1701250 --- /dev/null +++ b/public/emoji/1f3dd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3de.svg b/public/emoji/1f3de.svg new file mode 100644 index 00000000000..c3c729a29d3 --- /dev/null +++ b/public/emoji/1f3de.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3df.svg b/public/emoji/1f3df.svg new file mode 100644 index 00000000000..579a720258b --- /dev/null +++ b/public/emoji/1f3df.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3e0.svg b/public/emoji/1f3e0.svg new file mode 100644 index 00000000000..5edbccef4d4 --- /dev/null +++ b/public/emoji/1f3e0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3e1.svg b/public/emoji/1f3e1.svg new file mode 100644 index 00000000000..8c1751eefca --- /dev/null +++ b/public/emoji/1f3e1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3e2.svg b/public/emoji/1f3e2.svg new file mode 100644 index 00000000000..0f38711e039 --- /dev/null +++ b/public/emoji/1f3e2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3e3.svg b/public/emoji/1f3e3.svg new file mode 100644 index 00000000000..db2004f55fd --- /dev/null +++ b/public/emoji/1f3e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3e4.svg b/public/emoji/1f3e4.svg new file mode 100644 index 00000000000..8359ad4f103 --- /dev/null +++ b/public/emoji/1f3e4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3e5.svg b/public/emoji/1f3e5.svg new file mode 100644 index 00000000000..448460d267a --- /dev/null +++ b/public/emoji/1f3e5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3e6.svg b/public/emoji/1f3e6.svg new file mode 100644 index 00000000000..dee2c6fa7c3 --- /dev/null +++ b/public/emoji/1f3e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3e7.svg b/public/emoji/1f3e7.svg new file mode 100644 index 00000000000..770f0195912 --- /dev/null +++ b/public/emoji/1f3e7.svg @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/public/emoji/1f3e8.svg b/public/emoji/1f3e8.svg new file mode 100644 index 00000000000..6aaa7598864 --- /dev/null +++ b/public/emoji/1f3e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3e9.svg b/public/emoji/1f3e9.svg new file mode 100644 index 00000000000..5842ed57f8a --- /dev/null +++ b/public/emoji/1f3e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ea.svg b/public/emoji/1f3ea.svg new file mode 100644 index 00000000000..c423a1ef7e6 --- /dev/null +++ b/public/emoji/1f3ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3eb.svg b/public/emoji/1f3eb.svg new file mode 100644 index 00000000000..67a04c9213b --- /dev/null +++ b/public/emoji/1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ec.svg b/public/emoji/1f3ec.svg new file mode 100644 index 00000000000..d39eedf566b --- /dev/null +++ b/public/emoji/1f3ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ed.svg b/public/emoji/1f3ed.svg new file mode 100644 index 00000000000..43aaa5a0768 --- /dev/null +++ b/public/emoji/1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ee.svg b/public/emoji/1f3ee.svg new file mode 100644 index 00000000000..664a33340e5 --- /dev/null +++ b/public/emoji/1f3ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ef.svg b/public/emoji/1f3ef.svg new file mode 100644 index 00000000000..f4ba33581fd --- /dev/null +++ b/public/emoji/1f3ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3f0.svg b/public/emoji/1f3f0.svg new file mode 100644 index 00000000000..b0b4b12cc69 --- /dev/null +++ b/public/emoji/1f3f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3f3-1f308.svg b/public/emoji/1f3f3-1f308.svg new file mode 100644 index 00000000000..e082546b2bb --- /dev/null +++ b/public/emoji/1f3f3-1f308.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3f3.svg b/public/emoji/1f3f3.svg new file mode 100644 index 00000000000..d1421b827d1 --- /dev/null +++ b/public/emoji/1f3f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3f4.svg b/public/emoji/1f3f4.svg new file mode 100644 index 00000000000..0e6202dc168 --- /dev/null +++ b/public/emoji/1f3f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3f5.svg b/public/emoji/1f3f5.svg new file mode 100644 index 00000000000..b6576ae9991 --- /dev/null +++ b/public/emoji/1f3f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3f7.svg b/public/emoji/1f3f7.svg new file mode 100644 index 00000000000..372a35f5ef8 --- /dev/null +++ b/public/emoji/1f3f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3f8.svg b/public/emoji/1f3f8.svg new file mode 100644 index 00000000000..c9e2b401edc --- /dev/null +++ b/public/emoji/1f3f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3f9.svg b/public/emoji/1f3f9.svg new file mode 100644 index 00000000000..e73e45cc3a6 --- /dev/null +++ b/public/emoji/1f3f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3fa.svg b/public/emoji/1f3fa.svg new file mode 100644 index 00000000000..bf02dbddafb --- /dev/null +++ b/public/emoji/1f3fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3fb.svg b/public/emoji/1f3fb.svg new file mode 100644 index 00000000000..95d9113d7e2 --- /dev/null +++ b/public/emoji/1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3fc.svg b/public/emoji/1f3fc.svg new file mode 100644 index 00000000000..98674ab9a59 --- /dev/null +++ b/public/emoji/1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3fd.svg b/public/emoji/1f3fd.svg new file mode 100644 index 00000000000..3216c0c48ef --- /dev/null +++ b/public/emoji/1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3fe.svg b/public/emoji/1f3fe.svg new file mode 100644 index 00000000000..f4e86c3367b --- /dev/null +++ b/public/emoji/1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ff.svg b/public/emoji/1f3ff.svg new file mode 100644 index 00000000000..b99182a7778 --- /dev/null +++ b/public/emoji/1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f400.svg b/public/emoji/1f400.svg new file mode 100644 index 00000000000..8dcadea17b5 --- /dev/null +++ b/public/emoji/1f400.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f401.svg b/public/emoji/1f401.svg new file mode 100644 index 00000000000..944b4a2e582 --- /dev/null +++ b/public/emoji/1f401.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f402.svg b/public/emoji/1f402.svg new file mode 100644 index 00000000000..491e8d181b5 --- /dev/null +++ b/public/emoji/1f402.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f403.svg b/public/emoji/1f403.svg new file mode 100644 index 00000000000..96982688c74 --- /dev/null +++ b/public/emoji/1f403.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f404.svg b/public/emoji/1f404.svg new file mode 100644 index 00000000000..1bf1728714d --- /dev/null +++ b/public/emoji/1f404.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f405.svg b/public/emoji/1f405.svg new file mode 100644 index 00000000000..27db054c5ba --- /dev/null +++ b/public/emoji/1f405.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f406.svg b/public/emoji/1f406.svg new file mode 100644 index 00000000000..7093fe41ffd --- /dev/null +++ b/public/emoji/1f406.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f407.svg b/public/emoji/1f407.svg new file mode 100644 index 00000000000..f673e966dee --- /dev/null +++ b/public/emoji/1f407.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f408.svg b/public/emoji/1f408.svg new file mode 100644 index 00000000000..4eadb2c4162 --- /dev/null +++ b/public/emoji/1f408.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f409.svg b/public/emoji/1f409.svg new file mode 100644 index 00000000000..aaf9cd252ce --- /dev/null +++ b/public/emoji/1f409.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f40a.svg b/public/emoji/1f40a.svg new file mode 100644 index 00000000000..d5dd7c6abcc --- /dev/null +++ b/public/emoji/1f40a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f40b.svg b/public/emoji/1f40b.svg new file mode 100644 index 00000000000..31bb7393f62 --- /dev/null +++ b/public/emoji/1f40b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f40c.svg b/public/emoji/1f40c.svg new file mode 100644 index 00000000000..b4204fae0a2 --- /dev/null +++ b/public/emoji/1f40c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f40d.svg b/public/emoji/1f40d.svg new file mode 100644 index 00000000000..6ad56b8d9b8 --- /dev/null +++ b/public/emoji/1f40d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f40e.svg b/public/emoji/1f40e.svg new file mode 100644 index 00000000000..b7ba4df3fb4 --- /dev/null +++ b/public/emoji/1f40e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f40f.svg b/public/emoji/1f40f.svg new file mode 100644 index 00000000000..2cf3e571551 --- /dev/null +++ b/public/emoji/1f40f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f410.svg b/public/emoji/1f410.svg new file mode 100644 index 00000000000..445e63f8c9e --- /dev/null +++ b/public/emoji/1f410.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f411.svg b/public/emoji/1f411.svg new file mode 100644 index 00000000000..19d8b9e770d --- /dev/null +++ b/public/emoji/1f411.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f412.svg b/public/emoji/1f412.svg new file mode 100644 index 00000000000..713e48da895 --- /dev/null +++ b/public/emoji/1f412.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f413.svg b/public/emoji/1f413.svg new file mode 100644 index 00000000000..349de855218 --- /dev/null +++ b/public/emoji/1f413.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f414.svg b/public/emoji/1f414.svg new file mode 100644 index 00000000000..34dfab57790 --- /dev/null +++ b/public/emoji/1f414.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f415.svg b/public/emoji/1f415.svg new file mode 100644 index 00000000000..7fded5c1124 --- /dev/null +++ b/public/emoji/1f415.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f416.svg b/public/emoji/1f416.svg new file mode 100644 index 00000000000..a3f0422a51e --- /dev/null +++ b/public/emoji/1f416.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f417.svg b/public/emoji/1f417.svg new file mode 100644 index 00000000000..d134de16ac3 --- /dev/null +++ b/public/emoji/1f417.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f418.svg b/public/emoji/1f418.svg new file mode 100644 index 00000000000..80479aa3d7d --- /dev/null +++ b/public/emoji/1f418.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f419.svg b/public/emoji/1f419.svg new file mode 100644 index 00000000000..fa59238e2e3 --- /dev/null +++ b/public/emoji/1f419.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f41a.svg b/public/emoji/1f41a.svg new file mode 100644 index 00000000000..fb691d49bfa --- /dev/null +++ b/public/emoji/1f41a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f41b.svg b/public/emoji/1f41b.svg new file mode 100644 index 00000000000..64bcedb14da --- /dev/null +++ b/public/emoji/1f41b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f41c.svg b/public/emoji/1f41c.svg new file mode 100644 index 00000000000..2f90d0615a6 --- /dev/null +++ b/public/emoji/1f41c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f41d.svg b/public/emoji/1f41d.svg new file mode 100644 index 00000000000..eb1819b0750 --- /dev/null +++ b/public/emoji/1f41d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f41e.svg b/public/emoji/1f41e.svg new file mode 100644 index 00000000000..0cbee7332c1 --- /dev/null +++ b/public/emoji/1f41e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f41f.svg b/public/emoji/1f41f.svg new file mode 100644 index 00000000000..d4ddc1a59fc --- /dev/null +++ b/public/emoji/1f41f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f420.svg b/public/emoji/1f420.svg new file mode 100644 index 00000000000..339bfce51cd --- /dev/null +++ b/public/emoji/1f420.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f421.svg b/public/emoji/1f421.svg new file mode 100644 index 00000000000..51e96024a12 --- /dev/null +++ b/public/emoji/1f421.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f422.svg b/public/emoji/1f422.svg new file mode 100644 index 00000000000..48be9dc54f3 --- /dev/null +++ b/public/emoji/1f422.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f423.svg b/public/emoji/1f423.svg new file mode 100644 index 00000000000..7d8abff5fd7 --- /dev/null +++ b/public/emoji/1f423.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f424.svg b/public/emoji/1f424.svg new file mode 100644 index 00000000000..f9269d14879 --- /dev/null +++ b/public/emoji/1f424.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f425.svg b/public/emoji/1f425.svg new file mode 100644 index 00000000000..fabfbf927c1 --- /dev/null +++ b/public/emoji/1f425.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f426.svg b/public/emoji/1f426.svg new file mode 100644 index 00000000000..225d7677773 --- /dev/null +++ b/public/emoji/1f426.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f427.svg b/public/emoji/1f427.svg new file mode 100644 index 00000000000..ce85cadf290 --- /dev/null +++ b/public/emoji/1f427.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f428.svg b/public/emoji/1f428.svg new file mode 100644 index 00000000000..88832b70222 --- /dev/null +++ b/public/emoji/1f428.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f429.svg b/public/emoji/1f429.svg new file mode 100644 index 00000000000..7b56afe0d70 --- /dev/null +++ b/public/emoji/1f429.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f42a.svg b/public/emoji/1f42a.svg new file mode 100644 index 00000000000..63e30c13aea --- /dev/null +++ b/public/emoji/1f42a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f42b.svg b/public/emoji/1f42b.svg new file mode 100644 index 00000000000..fbd4b0e1b11 --- /dev/null +++ b/public/emoji/1f42b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f42c.svg b/public/emoji/1f42c.svg new file mode 100644 index 00000000000..abd84802ea7 --- /dev/null +++ b/public/emoji/1f42c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f42d.svg b/public/emoji/1f42d.svg new file mode 100644 index 00000000000..0b215006dd7 --- /dev/null +++ b/public/emoji/1f42d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f42e.svg b/public/emoji/1f42e.svg new file mode 100644 index 00000000000..f6d7c9a04ba --- /dev/null +++ b/public/emoji/1f42e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f42f.svg b/public/emoji/1f42f.svg new file mode 100644 index 00000000000..834981944bd --- /dev/null +++ b/public/emoji/1f42f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f430.svg b/public/emoji/1f430.svg new file mode 100644 index 00000000000..ec8d17c0814 --- /dev/null +++ b/public/emoji/1f430.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f431.svg b/public/emoji/1f431.svg new file mode 100644 index 00000000000..bacd52c3880 --- /dev/null +++ b/public/emoji/1f431.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f432.svg b/public/emoji/1f432.svg new file mode 100644 index 00000000000..b4b36690923 --- /dev/null +++ b/public/emoji/1f432.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f433.svg b/public/emoji/1f433.svg new file mode 100644 index 00000000000..dc6f7f1ecbc --- /dev/null +++ b/public/emoji/1f433.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f434.svg b/public/emoji/1f434.svg new file mode 100644 index 00000000000..59351493084 --- /dev/null +++ b/public/emoji/1f434.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f435.svg b/public/emoji/1f435.svg new file mode 100644 index 00000000000..5e796ada85a --- /dev/null +++ b/public/emoji/1f435.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f436.svg b/public/emoji/1f436.svg new file mode 100644 index 00000000000..b6af6c613ff --- /dev/null +++ b/public/emoji/1f436.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f437.svg b/public/emoji/1f437.svg new file mode 100644 index 00000000000..30d534b0870 --- /dev/null +++ b/public/emoji/1f437.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f438.svg b/public/emoji/1f438.svg new file mode 100644 index 00000000000..a45c14aaa6c --- /dev/null +++ b/public/emoji/1f438.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f439.svg b/public/emoji/1f439.svg new file mode 100644 index 00000000000..4027ed9b5bf --- /dev/null +++ b/public/emoji/1f439.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f43a.svg b/public/emoji/1f43a.svg new file mode 100644 index 00000000000..7b2fd57512e --- /dev/null +++ b/public/emoji/1f43a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f43b.svg b/public/emoji/1f43b.svg new file mode 100644 index 00000000000..681e20a5753 --- /dev/null +++ b/public/emoji/1f43b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f43c.svg b/public/emoji/1f43c.svg new file mode 100644 index 00000000000..247aacc06c4 --- /dev/null +++ b/public/emoji/1f43c.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f43d.svg b/public/emoji/1f43d.svg new file mode 100644 index 00000000000..6014a8b7087 --- /dev/null +++ b/public/emoji/1f43d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f43e.svg b/public/emoji/1f43e.svg new file mode 100644 index 00000000000..c6b2b83af7e --- /dev/null +++ b/public/emoji/1f43e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f43f.svg b/public/emoji/1f43f.svg new file mode 100644 index 00000000000..243ee894417 --- /dev/null +++ b/public/emoji/1f43f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f440.svg b/public/emoji/1f440.svg new file mode 100644 index 00000000000..8caf9aafe47 --- /dev/null +++ b/public/emoji/1f440.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f441-1f5e8.svg b/public/emoji/1f441-1f5e8.svg new file mode 100644 index 00000000000..facc5a21aee --- /dev/null +++ b/public/emoji/1f441-1f5e8.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f441.svg b/public/emoji/1f441.svg new file mode 100644 index 00000000000..3ce3327d161 --- /dev/null +++ b/public/emoji/1f441.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f442-1f3fb.svg b/public/emoji/1f442-1f3fb.svg new file mode 100644 index 00000000000..e203744eaf6 --- /dev/null +++ b/public/emoji/1f442-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f442-1f3fc.svg b/public/emoji/1f442-1f3fc.svg new file mode 100644 index 00000000000..e9b24783b94 --- /dev/null +++ b/public/emoji/1f442-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f442-1f3fd.svg b/public/emoji/1f442-1f3fd.svg new file mode 100644 index 00000000000..717877f3193 --- /dev/null +++ b/public/emoji/1f442-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f442-1f3fe.svg b/public/emoji/1f442-1f3fe.svg new file mode 100644 index 00000000000..aaf77d80b35 --- /dev/null +++ b/public/emoji/1f442-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f442-1f3ff.svg b/public/emoji/1f442-1f3ff.svg new file mode 100644 index 00000000000..c8f653bba9b --- /dev/null +++ b/public/emoji/1f442-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f442.svg b/public/emoji/1f442.svg new file mode 100644 index 00000000000..3063df796cb --- /dev/null +++ b/public/emoji/1f442.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f443-1f3fb.svg b/public/emoji/1f443-1f3fb.svg new file mode 100644 index 00000000000..db943dbf4fe --- /dev/null +++ b/public/emoji/1f443-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f443-1f3fc.svg b/public/emoji/1f443-1f3fc.svg new file mode 100644 index 00000000000..e909c446df3 --- /dev/null +++ b/public/emoji/1f443-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f443-1f3fd.svg b/public/emoji/1f443-1f3fd.svg new file mode 100644 index 00000000000..61fe537698e --- /dev/null +++ b/public/emoji/1f443-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f443-1f3fe.svg b/public/emoji/1f443-1f3fe.svg new file mode 100644 index 00000000000..4b9d4661637 --- /dev/null +++ b/public/emoji/1f443-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f443-1f3ff.svg b/public/emoji/1f443-1f3ff.svg new file mode 100644 index 00000000000..a1daed04fd0 --- /dev/null +++ b/public/emoji/1f443-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f443.svg b/public/emoji/1f443.svg new file mode 100644 index 00000000000..6f1613804e9 --- /dev/null +++ b/public/emoji/1f443.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f444.svg b/public/emoji/1f444.svg new file mode 100644 index 00000000000..1bdb5440fa8 --- /dev/null +++ b/public/emoji/1f444.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f445.svg b/public/emoji/1f445.svg new file mode 100644 index 00000000000..8a5af77fa8a --- /dev/null +++ b/public/emoji/1f445.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f446-1f3fb.svg b/public/emoji/1f446-1f3fb.svg new file mode 100644 index 00000000000..0b774dd4dda --- /dev/null +++ b/public/emoji/1f446-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f446-1f3fc.svg b/public/emoji/1f446-1f3fc.svg new file mode 100644 index 00000000000..8931e2428a8 --- /dev/null +++ b/public/emoji/1f446-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f446-1f3fd.svg b/public/emoji/1f446-1f3fd.svg new file mode 100644 index 00000000000..1bf90d52030 --- /dev/null +++ b/public/emoji/1f446-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f446-1f3fe.svg b/public/emoji/1f446-1f3fe.svg new file mode 100644 index 00000000000..cfeb3e0a5dc --- /dev/null +++ b/public/emoji/1f446-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f446-1f3ff.svg b/public/emoji/1f446-1f3ff.svg new file mode 100644 index 00000000000..845edc33014 --- /dev/null +++ b/public/emoji/1f446-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f446.svg b/public/emoji/1f446.svg new file mode 100644 index 00000000000..fc4d2b1fd48 --- /dev/null +++ b/public/emoji/1f446.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f447-1f3fb.svg b/public/emoji/1f447-1f3fb.svg new file mode 100644 index 00000000000..b6d347e66cd --- /dev/null +++ b/public/emoji/1f447-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f447-1f3fc.svg b/public/emoji/1f447-1f3fc.svg new file mode 100644 index 00000000000..cd98682fb5e --- /dev/null +++ b/public/emoji/1f447-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f447-1f3fd.svg b/public/emoji/1f447-1f3fd.svg new file mode 100644 index 00000000000..a63fe574147 --- /dev/null +++ b/public/emoji/1f447-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f447-1f3fe.svg b/public/emoji/1f447-1f3fe.svg new file mode 100644 index 00000000000..cdb5c4a813c --- /dev/null +++ b/public/emoji/1f447-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f447-1f3ff.svg b/public/emoji/1f447-1f3ff.svg new file mode 100644 index 00000000000..62fa9841003 --- /dev/null +++ b/public/emoji/1f447-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f447.svg b/public/emoji/1f447.svg new file mode 100644 index 00000000000..25b2490a249 --- /dev/null +++ b/public/emoji/1f447.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f448-1f3fb.svg b/public/emoji/1f448-1f3fb.svg new file mode 100644 index 00000000000..16ef6409e58 --- /dev/null +++ b/public/emoji/1f448-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f448-1f3fc.svg b/public/emoji/1f448-1f3fc.svg new file mode 100644 index 00000000000..e37282ab886 --- /dev/null +++ b/public/emoji/1f448-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f448-1f3fd.svg b/public/emoji/1f448-1f3fd.svg new file mode 100644 index 00000000000..09d730d4fe2 --- /dev/null +++ b/public/emoji/1f448-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f448-1f3fe.svg b/public/emoji/1f448-1f3fe.svg new file mode 100644 index 00000000000..07f16f2e936 --- /dev/null +++ b/public/emoji/1f448-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f448-1f3ff.svg b/public/emoji/1f448-1f3ff.svg new file mode 100644 index 00000000000..a382bfd7b0c --- /dev/null +++ b/public/emoji/1f448-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f448.svg b/public/emoji/1f448.svg new file mode 100644 index 00000000000..63e25672e31 --- /dev/null +++ b/public/emoji/1f448.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f449-1f3fb.svg b/public/emoji/1f449-1f3fb.svg new file mode 100644 index 00000000000..150e78be991 --- /dev/null +++ b/public/emoji/1f449-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f449-1f3fc.svg b/public/emoji/1f449-1f3fc.svg new file mode 100644 index 00000000000..d30c03fe172 --- /dev/null +++ b/public/emoji/1f449-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f449-1f3fd.svg b/public/emoji/1f449-1f3fd.svg new file mode 100644 index 00000000000..421e7e5af34 --- /dev/null +++ b/public/emoji/1f449-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f449-1f3fe.svg b/public/emoji/1f449-1f3fe.svg new file mode 100644 index 00000000000..43db2b7b2ee --- /dev/null +++ b/public/emoji/1f449-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f449-1f3ff.svg b/public/emoji/1f449-1f3ff.svg new file mode 100644 index 00000000000..c3fde3f9d72 --- /dev/null +++ b/public/emoji/1f449-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f449.svg b/public/emoji/1f449.svg new file mode 100644 index 00000000000..815e08efb56 --- /dev/null +++ b/public/emoji/1f449.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44a-1f3fb.svg b/public/emoji/1f44a-1f3fb.svg new file mode 100644 index 00000000000..6b68ade7ea9 --- /dev/null +++ b/public/emoji/1f44a-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44a-1f3fc.svg b/public/emoji/1f44a-1f3fc.svg new file mode 100644 index 00000000000..7bb10f2fa3d --- /dev/null +++ b/public/emoji/1f44a-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44a-1f3fd.svg b/public/emoji/1f44a-1f3fd.svg new file mode 100644 index 00000000000..1543e53a8bf --- /dev/null +++ b/public/emoji/1f44a-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44a-1f3fe.svg b/public/emoji/1f44a-1f3fe.svg new file mode 100644 index 00000000000..6485deb721d --- /dev/null +++ b/public/emoji/1f44a-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44a-1f3ff.svg b/public/emoji/1f44a-1f3ff.svg new file mode 100644 index 00000000000..2eded30724a --- /dev/null +++ b/public/emoji/1f44a-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44a.svg b/public/emoji/1f44a.svg new file mode 100644 index 00000000000..20b808db585 --- /dev/null +++ b/public/emoji/1f44a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44b-1f3fb.svg b/public/emoji/1f44b-1f3fb.svg new file mode 100644 index 00000000000..981d4d47492 --- /dev/null +++ b/public/emoji/1f44b-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44b-1f3fc.svg b/public/emoji/1f44b-1f3fc.svg new file mode 100644 index 00000000000..0e3fb5f890e --- /dev/null +++ b/public/emoji/1f44b-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44b-1f3fd.svg b/public/emoji/1f44b-1f3fd.svg new file mode 100644 index 00000000000..801f13f4d74 --- /dev/null +++ b/public/emoji/1f44b-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44b-1f3fe.svg b/public/emoji/1f44b-1f3fe.svg new file mode 100644 index 00000000000..687ff445f9e --- /dev/null +++ b/public/emoji/1f44b-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44b-1f3ff.svg b/public/emoji/1f44b-1f3ff.svg new file mode 100644 index 00000000000..68636c28d47 --- /dev/null +++ b/public/emoji/1f44b-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44b.svg b/public/emoji/1f44b.svg new file mode 100644 index 00000000000..2118c9b43d0 --- /dev/null +++ b/public/emoji/1f44b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44c-1f3fb.svg b/public/emoji/1f44c-1f3fb.svg new file mode 100644 index 00000000000..988b464e536 --- /dev/null +++ b/public/emoji/1f44c-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44c-1f3fc.svg b/public/emoji/1f44c-1f3fc.svg new file mode 100644 index 00000000000..c03cb353f11 --- /dev/null +++ b/public/emoji/1f44c-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44c-1f3fd.svg b/public/emoji/1f44c-1f3fd.svg new file mode 100644 index 00000000000..e6d0d547534 --- /dev/null +++ b/public/emoji/1f44c-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44c-1f3fe.svg b/public/emoji/1f44c-1f3fe.svg new file mode 100644 index 00000000000..c28d64a3320 --- /dev/null +++ b/public/emoji/1f44c-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44c-1f3ff.svg b/public/emoji/1f44c-1f3ff.svg new file mode 100644 index 00000000000..6d2a3a4370e --- /dev/null +++ b/public/emoji/1f44c-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44c.svg b/public/emoji/1f44c.svg new file mode 100644 index 00000000000..bb3a06657a8 --- /dev/null +++ b/public/emoji/1f44c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44d-1f3fb.svg b/public/emoji/1f44d-1f3fb.svg new file mode 100644 index 00000000000..c50c59f9ff6 --- /dev/null +++ b/public/emoji/1f44d-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44d-1f3fc.svg b/public/emoji/1f44d-1f3fc.svg new file mode 100644 index 00000000000..54d7d6a19ea --- /dev/null +++ b/public/emoji/1f44d-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44d-1f3fd.svg b/public/emoji/1f44d-1f3fd.svg new file mode 100644 index 00000000000..1fc72ebe93b --- /dev/null +++ b/public/emoji/1f44d-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44d-1f3fe.svg b/public/emoji/1f44d-1f3fe.svg new file mode 100644 index 00000000000..4db4b58eff0 --- /dev/null +++ b/public/emoji/1f44d-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44d-1f3ff.svg b/public/emoji/1f44d-1f3ff.svg new file mode 100644 index 00000000000..e64edfb1359 --- /dev/null +++ b/public/emoji/1f44d-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44d.svg b/public/emoji/1f44d.svg new file mode 100644 index 00000000000..100df67076c --- /dev/null +++ b/public/emoji/1f44d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44e-1f3fb.svg b/public/emoji/1f44e-1f3fb.svg new file mode 100644 index 00000000000..298cda36979 --- /dev/null +++ b/public/emoji/1f44e-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44e-1f3fc.svg b/public/emoji/1f44e-1f3fc.svg new file mode 100644 index 00000000000..79398ad0900 --- /dev/null +++ b/public/emoji/1f44e-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44e-1f3fd.svg b/public/emoji/1f44e-1f3fd.svg new file mode 100644 index 00000000000..e0bf3be99a5 --- /dev/null +++ b/public/emoji/1f44e-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44e-1f3fe.svg b/public/emoji/1f44e-1f3fe.svg new file mode 100644 index 00000000000..17fa30ceafe --- /dev/null +++ b/public/emoji/1f44e-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44e-1f3ff.svg b/public/emoji/1f44e-1f3ff.svg new file mode 100644 index 00000000000..c58da806fce --- /dev/null +++ b/public/emoji/1f44e-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44e.svg b/public/emoji/1f44e.svg new file mode 100644 index 00000000000..cd5ce20eeb6 --- /dev/null +++ b/public/emoji/1f44e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44f-1f3fb.svg b/public/emoji/1f44f-1f3fb.svg new file mode 100644 index 00000000000..4728186ef12 --- /dev/null +++ b/public/emoji/1f44f-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44f-1f3fc.svg b/public/emoji/1f44f-1f3fc.svg new file mode 100644 index 00000000000..ffb3d7e7171 --- /dev/null +++ b/public/emoji/1f44f-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44f-1f3fd.svg b/public/emoji/1f44f-1f3fd.svg new file mode 100644 index 00000000000..138e7bde1e3 --- /dev/null +++ b/public/emoji/1f44f-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44f-1f3fe.svg b/public/emoji/1f44f-1f3fe.svg new file mode 100644 index 00000000000..56107c4337f --- /dev/null +++ b/public/emoji/1f44f-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44f-1f3ff.svg b/public/emoji/1f44f-1f3ff.svg new file mode 100644 index 00000000000..d4361ab361f --- /dev/null +++ b/public/emoji/1f44f-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44f.svg b/public/emoji/1f44f.svg new file mode 100644 index 00000000000..c611e5d3b1c --- /dev/null +++ b/public/emoji/1f44f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f450-1f3fb.svg b/public/emoji/1f450-1f3fb.svg new file mode 100644 index 00000000000..3da933cf3bc --- /dev/null +++ b/public/emoji/1f450-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f450-1f3fc.svg b/public/emoji/1f450-1f3fc.svg new file mode 100644 index 00000000000..4463814f00f --- /dev/null +++ b/public/emoji/1f450-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f450-1f3fd.svg b/public/emoji/1f450-1f3fd.svg new file mode 100644 index 00000000000..715fb59fc84 --- /dev/null +++ b/public/emoji/1f450-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f450-1f3fe.svg b/public/emoji/1f450-1f3fe.svg new file mode 100644 index 00000000000..d3c412ec001 --- /dev/null +++ b/public/emoji/1f450-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f450-1f3ff.svg b/public/emoji/1f450-1f3ff.svg new file mode 100644 index 00000000000..d7dc9146f67 --- /dev/null +++ b/public/emoji/1f450-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f450.svg b/public/emoji/1f450.svg new file mode 100644 index 00000000000..d910626503a --- /dev/null +++ b/public/emoji/1f450.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f451.svg b/public/emoji/1f451.svg new file mode 100644 index 00000000000..ce7da0aab7c --- /dev/null +++ b/public/emoji/1f451.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f452.svg b/public/emoji/1f452.svg new file mode 100644 index 00000000000..0ef14ae7afa --- /dev/null +++ b/public/emoji/1f452.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f453.svg b/public/emoji/1f453.svg new file mode 100644 index 00000000000..0356c31efec --- /dev/null +++ b/public/emoji/1f453.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f454.svg b/public/emoji/1f454.svg new file mode 100644 index 00000000000..b72e4dc9e2b --- /dev/null +++ b/public/emoji/1f454.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f455.svg b/public/emoji/1f455.svg new file mode 100644 index 00000000000..33900afbbb2 --- /dev/null +++ b/public/emoji/1f455.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f456.svg b/public/emoji/1f456.svg new file mode 100644 index 00000000000..eed2f86df7e --- /dev/null +++ b/public/emoji/1f456.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f457.svg b/public/emoji/1f457.svg new file mode 100644 index 00000000000..2a20f802b92 --- /dev/null +++ b/public/emoji/1f457.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f458.svg b/public/emoji/1f458.svg new file mode 100644 index 00000000000..7f7bed9af85 --- /dev/null +++ b/public/emoji/1f458.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f459.svg b/public/emoji/1f459.svg new file mode 100644 index 00000000000..e0a1ca75df3 --- /dev/null +++ b/public/emoji/1f459.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f45a.svg b/public/emoji/1f45a.svg new file mode 100644 index 00000000000..294d86ef6f4 --- /dev/null +++ b/public/emoji/1f45a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f45b.svg b/public/emoji/1f45b.svg new file mode 100644 index 00000000000..2bb632f3ed1 --- /dev/null +++ b/public/emoji/1f45b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f45c.svg b/public/emoji/1f45c.svg new file mode 100644 index 00000000000..39165931c88 --- /dev/null +++ b/public/emoji/1f45c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f45d.svg b/public/emoji/1f45d.svg new file mode 100644 index 00000000000..b877d3ed886 --- /dev/null +++ b/public/emoji/1f45d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f45e.svg b/public/emoji/1f45e.svg new file mode 100644 index 00000000000..7dbe5d8bf1e --- /dev/null +++ b/public/emoji/1f45e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f45f.svg b/public/emoji/1f45f.svg new file mode 100644 index 00000000000..a54733edcdf --- /dev/null +++ b/public/emoji/1f45f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f460.svg b/public/emoji/1f460.svg new file mode 100644 index 00000000000..57b7e17fb99 --- /dev/null +++ b/public/emoji/1f460.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f461.svg b/public/emoji/1f461.svg new file mode 100644 index 00000000000..e17e173db88 --- /dev/null +++ b/public/emoji/1f461.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f462.svg b/public/emoji/1f462.svg new file mode 100644 index 00000000000..72c94f379f6 --- /dev/null +++ b/public/emoji/1f462.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f463.svg b/public/emoji/1f463.svg new file mode 100644 index 00000000000..23306105171 --- /dev/null +++ b/public/emoji/1f463.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f464.svg b/public/emoji/1f464.svg new file mode 100644 index 00000000000..9c0e92dadbb --- /dev/null +++ b/public/emoji/1f464.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f465.svg b/public/emoji/1f465.svg new file mode 100644 index 00000000000..4ca629e3dc1 --- /dev/null +++ b/public/emoji/1f465.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f466-1f3fb.svg b/public/emoji/1f466-1f3fb.svg new file mode 100644 index 00000000000..f0c2365dd31 --- /dev/null +++ b/public/emoji/1f466-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f466-1f3fc.svg b/public/emoji/1f466-1f3fc.svg new file mode 100644 index 00000000000..296576e85b8 --- /dev/null +++ b/public/emoji/1f466-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f466-1f3fd.svg b/public/emoji/1f466-1f3fd.svg new file mode 100644 index 00000000000..eafb2511db6 --- /dev/null +++ b/public/emoji/1f466-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f466-1f3fe.svg b/public/emoji/1f466-1f3fe.svg new file mode 100644 index 00000000000..1623d305eb5 --- /dev/null +++ b/public/emoji/1f466-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f466-1f3ff.svg b/public/emoji/1f466-1f3ff.svg new file mode 100644 index 00000000000..051400b1c6a --- /dev/null +++ b/public/emoji/1f466-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f466.svg b/public/emoji/1f466.svg new file mode 100644 index 00000000000..5e233fc8b6e --- /dev/null +++ b/public/emoji/1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f467-1f3fb.svg b/public/emoji/1f467-1f3fb.svg new file mode 100644 index 00000000000..eeb7738dac6 --- /dev/null +++ b/public/emoji/1f467-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f467-1f3fc.svg b/public/emoji/1f467-1f3fc.svg new file mode 100644 index 00000000000..4088b48a762 --- /dev/null +++ b/public/emoji/1f467-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f467-1f3fd.svg b/public/emoji/1f467-1f3fd.svg new file mode 100644 index 00000000000..18a76f65de6 --- /dev/null +++ b/public/emoji/1f467-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f467-1f3fe.svg b/public/emoji/1f467-1f3fe.svg new file mode 100644 index 00000000000..dbb0f5fc600 --- /dev/null +++ b/public/emoji/1f467-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f467-1f3ff.svg b/public/emoji/1f467-1f3ff.svg new file mode 100644 index 00000000000..80e424ed2bb --- /dev/null +++ b/public/emoji/1f467-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f467.svg b/public/emoji/1f467.svg new file mode 100644 index 00000000000..1cb7f67a65a --- /dev/null +++ b/public/emoji/1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f3fb.svg b/public/emoji/1f468-1f3fb.svg new file mode 100644 index 00000000000..9ffc40139f3 --- /dev/null +++ b/public/emoji/1f468-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f3fc.svg b/public/emoji/1f468-1f3fc.svg new file mode 100644 index 00000000000..e0e8d5fd300 --- /dev/null +++ b/public/emoji/1f468-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f3fd.svg b/public/emoji/1f468-1f3fd.svg new file mode 100644 index 00000000000..4fc71c6d81b --- /dev/null +++ b/public/emoji/1f468-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f3fe.svg b/public/emoji/1f468-1f3fe.svg new file mode 100644 index 00000000000..9dc4c6df700 --- /dev/null +++ b/public/emoji/1f468-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f3ff.svg b/public/emoji/1f468-1f3ff.svg new file mode 100644 index 00000000000..fab2b434926 --- /dev/null +++ b/public/emoji/1f468-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f468-1f466-1f466.svg b/public/emoji/1f468-1f468-1f466-1f466.svg new file mode 100644 index 00000000000..5c348147b67 --- /dev/null +++ b/public/emoji/1f468-1f468-1f466-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f468-1f466.svg b/public/emoji/1f468-1f468-1f466.svg new file mode 100644 index 00000000000..7f5946500fe --- /dev/null +++ b/public/emoji/1f468-1f468-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f468-1f467-1f466.svg b/public/emoji/1f468-1f468-1f467-1f466.svg new file mode 100644 index 00000000000..555c8bd84b7 --- /dev/null +++ b/public/emoji/1f468-1f468-1f467-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f468-1f467-1f467.svg b/public/emoji/1f468-1f468-1f467-1f467.svg new file mode 100644 index 00000000000..1e35ca4eb1e --- /dev/null +++ b/public/emoji/1f468-1f468-1f467-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f468-1f467.svg b/public/emoji/1f468-1f468-1f467.svg new file mode 100644 index 00000000000..6dfa7e98eb9 --- /dev/null +++ b/public/emoji/1f468-1f468-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f469-1f466-1f466.svg b/public/emoji/1f468-1f469-1f466-1f466.svg new file mode 100644 index 00000000000..f877a886c93 --- /dev/null +++ b/public/emoji/1f468-1f469-1f466-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f469-1f467-1f466.svg b/public/emoji/1f468-1f469-1f467-1f466.svg new file mode 100644 index 00000000000..0ab0a6b2bc2 --- /dev/null +++ b/public/emoji/1f468-1f469-1f467-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f469-1f467-1f467.svg b/public/emoji/1f468-1f469-1f467-1f467.svg new file mode 100644 index 00000000000..ca1285f9be2 --- /dev/null +++ b/public/emoji/1f468-1f469-1f467-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f469-1f467.svg b/public/emoji/1f468-1f469-1f467.svg new file mode 100644 index 00000000000..0afec9c1b98 --- /dev/null +++ b/public/emoji/1f468-1f469-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-2764-1f468.svg b/public/emoji/1f468-2764-1f468.svg new file mode 100644 index 00000000000..727c3fc9491 --- /dev/null +++ b/public/emoji/1f468-2764-1f468.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-2764-1f48b-1f468.svg b/public/emoji/1f468-2764-1f48b-1f468.svg new file mode 100644 index 00000000000..5e845068246 --- /dev/null +++ b/public/emoji/1f468-2764-1f48b-1f468.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468.svg b/public/emoji/1f468.svg new file mode 100644 index 00000000000..0f27a28365c --- /dev/null +++ b/public/emoji/1f468.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f469-1f3fb.svg b/public/emoji/1f469-1f3fb.svg new file mode 100644 index 00000000000..62b4b63227a --- /dev/null +++ b/public/emoji/1f469-1f3fb.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f469-1f3fc.svg b/public/emoji/1f469-1f3fc.svg new file mode 100644 index 00000000000..2556b3a2d3a --- /dev/null +++ b/public/emoji/1f469-1f3fc.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f469-1f3fd.svg b/public/emoji/1f469-1f3fd.svg new file mode 100644 index 00000000000..c0269856640 --- /dev/null +++ b/public/emoji/1f469-1f3fd.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f469-1f3fe.svg b/public/emoji/1f469-1f3fe.svg new file mode 100644 index 00000000000..8c977082ddd --- /dev/null +++ b/public/emoji/1f469-1f3fe.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f469-1f3ff.svg b/public/emoji/1f469-1f3ff.svg new file mode 100644 index 00000000000..3078858cd0b --- /dev/null +++ b/public/emoji/1f469-1f3ff.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f469-1f469-1f466-1f466.svg b/public/emoji/1f469-1f469-1f466-1f466.svg new file mode 100644 index 00000000000..8bd5911037d --- /dev/null +++ b/public/emoji/1f469-1f469-1f466-1f466.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f469-1f469-1f466.svg b/public/emoji/1f469-1f469-1f466.svg new file mode 100644 index 00000000000..ece9c72c436 --- /dev/null +++ b/public/emoji/1f469-1f469-1f466.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f469-1f469-1f467-1f466.svg b/public/emoji/1f469-1f469-1f467-1f466.svg new file mode 100644 index 00000000000..2f4951e980b --- /dev/null +++ b/public/emoji/1f469-1f469-1f467-1f466.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f469-1f469-1f467-1f467.svg b/public/emoji/1f469-1f469-1f467-1f467.svg new file mode 100644 index 00000000000..73760fbb4da --- /dev/null +++ b/public/emoji/1f469-1f469-1f467-1f467.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f469-1f469-1f467.svg b/public/emoji/1f469-1f469-1f467.svg new file mode 100644 index 00000000000..bbc72da228c --- /dev/null +++ b/public/emoji/1f469-1f469-1f467.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f469-2764-1f469.svg b/public/emoji/1f469-2764-1f469.svg new file mode 100644 index 00000000000..5f188ca18c8 --- /dev/null +++ b/public/emoji/1f469-2764-1f469.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f469-2764-1f48b-1f469.svg b/public/emoji/1f469-2764-1f48b-1f469.svg new file mode 100644 index 00000000000..c2369061957 --- /dev/null +++ b/public/emoji/1f469-2764-1f48b-1f469.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f469.svg b/public/emoji/1f469.svg new file mode 100644 index 00000000000..8a7fada1519 --- /dev/null +++ b/public/emoji/1f469.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f46a.svg b/public/emoji/1f46a.svg new file mode 100644 index 00000000000..e0fc9893bca --- /dev/null +++ b/public/emoji/1f46a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f46b.svg b/public/emoji/1f46b.svg new file mode 100644 index 00000000000..4e7dcce0fd9 --- /dev/null +++ b/public/emoji/1f46b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f46c.svg b/public/emoji/1f46c.svg new file mode 100644 index 00000000000..376a18dddc6 --- /dev/null +++ b/public/emoji/1f46c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f46d.svg b/public/emoji/1f46d.svg new file mode 100644 index 00000000000..ed12b05e151 --- /dev/null +++ b/public/emoji/1f46d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f46e-1f3fb.svg b/public/emoji/1f46e-1f3fb.svg new file mode 100644 index 00000000000..98a019fff47 --- /dev/null +++ b/public/emoji/1f46e-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f46e-1f3fc.svg b/public/emoji/1f46e-1f3fc.svg new file mode 100644 index 00000000000..9e443506295 --- /dev/null +++ b/public/emoji/1f46e-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f46e-1f3fd.svg b/public/emoji/1f46e-1f3fd.svg new file mode 100644 index 00000000000..fe8b6f4513f --- /dev/null +++ b/public/emoji/1f46e-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f46e-1f3fe.svg b/public/emoji/1f46e-1f3fe.svg new file mode 100644 index 00000000000..d880766e580 --- /dev/null +++ b/public/emoji/1f46e-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f46e-1f3ff.svg b/public/emoji/1f46e-1f3ff.svg new file mode 100644 index 00000000000..9ec2135b5ea --- /dev/null +++ b/public/emoji/1f46e-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f46e.svg b/public/emoji/1f46e.svg new file mode 100644 index 00000000000..3631cdd540e --- /dev/null +++ b/public/emoji/1f46e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f46f.svg b/public/emoji/1f46f.svg new file mode 100644 index 00000000000..32985cc36b5 --- /dev/null +++ b/public/emoji/1f46f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f470-1f3fb.svg b/public/emoji/1f470-1f3fb.svg new file mode 100644 index 00000000000..cb221eee12a --- /dev/null +++ b/public/emoji/1f470-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f470-1f3fc.svg b/public/emoji/1f470-1f3fc.svg new file mode 100644 index 00000000000..b5718397135 --- /dev/null +++ b/public/emoji/1f470-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f470-1f3fd.svg b/public/emoji/1f470-1f3fd.svg new file mode 100644 index 00000000000..6c9874f778b --- /dev/null +++ b/public/emoji/1f470-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f470-1f3fe.svg b/public/emoji/1f470-1f3fe.svg new file mode 100644 index 00000000000..e4ff8c92d83 --- /dev/null +++ b/public/emoji/1f470-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f470-1f3ff.svg b/public/emoji/1f470-1f3ff.svg new file mode 100644 index 00000000000..29633af92db --- /dev/null +++ b/public/emoji/1f470-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f470.svg b/public/emoji/1f470.svg new file mode 100644 index 00000000000..dc9e6c7301c --- /dev/null +++ b/public/emoji/1f470.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f471-1f3fb.svg b/public/emoji/1f471-1f3fb.svg new file mode 100644 index 00000000000..eee7e7a2c9a --- /dev/null +++ b/public/emoji/1f471-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f471-1f3fc.svg b/public/emoji/1f471-1f3fc.svg new file mode 100644 index 00000000000..6bdf8588636 --- /dev/null +++ b/public/emoji/1f471-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f471-1f3fd.svg b/public/emoji/1f471-1f3fd.svg new file mode 100644 index 00000000000..b08ba668482 --- /dev/null +++ b/public/emoji/1f471-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f471-1f3fe.svg b/public/emoji/1f471-1f3fe.svg new file mode 100644 index 00000000000..72a38d21889 --- /dev/null +++ b/public/emoji/1f471-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f471-1f3ff.svg b/public/emoji/1f471-1f3ff.svg new file mode 100644 index 00000000000..dcfd094c805 --- /dev/null +++ b/public/emoji/1f471-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f471.svg b/public/emoji/1f471.svg new file mode 100644 index 00000000000..2f56b379c96 --- /dev/null +++ b/public/emoji/1f471.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f472-1f3fb.svg b/public/emoji/1f472-1f3fb.svg new file mode 100644 index 00000000000..f02094dcbe0 --- /dev/null +++ b/public/emoji/1f472-1f3fb.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f472-1f3fc.svg b/public/emoji/1f472-1f3fc.svg new file mode 100644 index 00000000000..9933af021d4 --- /dev/null +++ b/public/emoji/1f472-1f3fc.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f472-1f3fd.svg b/public/emoji/1f472-1f3fd.svg new file mode 100644 index 00000000000..f2884ff0a8b --- /dev/null +++ b/public/emoji/1f472-1f3fd.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f472-1f3fe.svg b/public/emoji/1f472-1f3fe.svg new file mode 100644 index 00000000000..6bb5fad55e0 --- /dev/null +++ b/public/emoji/1f472-1f3fe.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f472-1f3ff.svg b/public/emoji/1f472-1f3ff.svg new file mode 100644 index 00000000000..c28a77da85e --- /dev/null +++ b/public/emoji/1f472-1f3ff.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f472.svg b/public/emoji/1f472.svg new file mode 100644 index 00000000000..8274a23037f --- /dev/null +++ b/public/emoji/1f472.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f473-1f3fb.svg b/public/emoji/1f473-1f3fb.svg new file mode 100644 index 00000000000..43c2e9d581d --- /dev/null +++ b/public/emoji/1f473-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f473-1f3fc.svg b/public/emoji/1f473-1f3fc.svg new file mode 100644 index 00000000000..86edb085ff5 --- /dev/null +++ b/public/emoji/1f473-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f473-1f3fd.svg b/public/emoji/1f473-1f3fd.svg new file mode 100644 index 00000000000..4567f58000f --- /dev/null +++ b/public/emoji/1f473-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f473-1f3fe.svg b/public/emoji/1f473-1f3fe.svg new file mode 100644 index 00000000000..ddb3d5beb6c --- /dev/null +++ b/public/emoji/1f473-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f473-1f3ff.svg b/public/emoji/1f473-1f3ff.svg new file mode 100644 index 00000000000..19b2e728f87 --- /dev/null +++ b/public/emoji/1f473-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f473.svg b/public/emoji/1f473.svg new file mode 100644 index 00000000000..5112808128b --- /dev/null +++ b/public/emoji/1f473.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f474-1f3fb.svg b/public/emoji/1f474-1f3fb.svg new file mode 100644 index 00000000000..77aacc5a934 --- /dev/null +++ b/public/emoji/1f474-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f474-1f3fc.svg b/public/emoji/1f474-1f3fc.svg new file mode 100644 index 00000000000..03c13c515a8 --- /dev/null +++ b/public/emoji/1f474-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f474-1f3fd.svg b/public/emoji/1f474-1f3fd.svg new file mode 100644 index 00000000000..2a73bef9191 --- /dev/null +++ b/public/emoji/1f474-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f474-1f3fe.svg b/public/emoji/1f474-1f3fe.svg new file mode 100644 index 00000000000..0c9133ecee0 --- /dev/null +++ b/public/emoji/1f474-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f474-1f3ff.svg b/public/emoji/1f474-1f3ff.svg new file mode 100644 index 00000000000..14a6554c361 --- /dev/null +++ b/public/emoji/1f474-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f474.svg b/public/emoji/1f474.svg new file mode 100644 index 00000000000..79bd197e15a --- /dev/null +++ b/public/emoji/1f474.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f475-1f3fb.svg b/public/emoji/1f475-1f3fb.svg new file mode 100644 index 00000000000..1e1c55669a5 --- /dev/null +++ b/public/emoji/1f475-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f475-1f3fc.svg b/public/emoji/1f475-1f3fc.svg new file mode 100644 index 00000000000..fd7cea0fc17 --- /dev/null +++ b/public/emoji/1f475-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f475-1f3fd.svg b/public/emoji/1f475-1f3fd.svg new file mode 100644 index 00000000000..121b50ba095 --- /dev/null +++ b/public/emoji/1f475-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f475-1f3fe.svg b/public/emoji/1f475-1f3fe.svg new file mode 100644 index 00000000000..c1246e568a2 --- /dev/null +++ b/public/emoji/1f475-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f475-1f3ff.svg b/public/emoji/1f475-1f3ff.svg new file mode 100644 index 00000000000..b1ae7cd6c5a --- /dev/null +++ b/public/emoji/1f475-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f475.svg b/public/emoji/1f475.svg new file mode 100644 index 00000000000..a2ac6131e01 --- /dev/null +++ b/public/emoji/1f475.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f476-1f3fb.svg b/public/emoji/1f476-1f3fb.svg new file mode 100644 index 00000000000..aa85b9bd059 --- /dev/null +++ b/public/emoji/1f476-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f476-1f3fc.svg b/public/emoji/1f476-1f3fc.svg new file mode 100644 index 00000000000..50f5f8c94d7 --- /dev/null +++ b/public/emoji/1f476-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f476-1f3fd.svg b/public/emoji/1f476-1f3fd.svg new file mode 100644 index 00000000000..9d3946dcd51 --- /dev/null +++ b/public/emoji/1f476-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f476-1f3fe.svg b/public/emoji/1f476-1f3fe.svg new file mode 100644 index 00000000000..75c1a67471f --- /dev/null +++ b/public/emoji/1f476-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f476-1f3ff.svg b/public/emoji/1f476-1f3ff.svg new file mode 100644 index 00000000000..27a4a6d7f9b --- /dev/null +++ b/public/emoji/1f476-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f476.svg b/public/emoji/1f476.svg new file mode 100644 index 00000000000..6bbcb0c2eec --- /dev/null +++ b/public/emoji/1f476.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f477-1f3fb.svg b/public/emoji/1f477-1f3fb.svg new file mode 100644 index 00000000000..1c078948d01 --- /dev/null +++ b/public/emoji/1f477-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f477-1f3fc.svg b/public/emoji/1f477-1f3fc.svg new file mode 100644 index 00000000000..2baad928383 --- /dev/null +++ b/public/emoji/1f477-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f477-1f3fd.svg b/public/emoji/1f477-1f3fd.svg new file mode 100644 index 00000000000..9bd5a803fe0 --- /dev/null +++ b/public/emoji/1f477-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f477-1f3fe.svg b/public/emoji/1f477-1f3fe.svg new file mode 100644 index 00000000000..ee7b228237d --- /dev/null +++ b/public/emoji/1f477-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f477-1f3ff.svg b/public/emoji/1f477-1f3ff.svg new file mode 100644 index 00000000000..2cfb7cf1b9e --- /dev/null +++ b/public/emoji/1f477-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f477.svg b/public/emoji/1f477.svg new file mode 100644 index 00000000000..56ae64c82c7 --- /dev/null +++ b/public/emoji/1f477.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f478-1f3fb.svg b/public/emoji/1f478-1f3fb.svg new file mode 100644 index 00000000000..ded39faa2e3 --- /dev/null +++ b/public/emoji/1f478-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f478-1f3fc.svg b/public/emoji/1f478-1f3fc.svg new file mode 100644 index 00000000000..e815e485a65 --- /dev/null +++ b/public/emoji/1f478-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f478-1f3fd.svg b/public/emoji/1f478-1f3fd.svg new file mode 100644 index 00000000000..7d5b77783f5 --- /dev/null +++ b/public/emoji/1f478-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f478-1f3fe.svg b/public/emoji/1f478-1f3fe.svg new file mode 100644 index 00000000000..18edf0cbc02 --- /dev/null +++ b/public/emoji/1f478-1f3fe.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f478-1f3ff.svg b/public/emoji/1f478-1f3ff.svg new file mode 100644 index 00000000000..6b8053df1b4 --- /dev/null +++ b/public/emoji/1f478-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f478.svg b/public/emoji/1f478.svg new file mode 100644 index 00000000000..939f660d4af --- /dev/null +++ b/public/emoji/1f478.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f479.svg b/public/emoji/1f479.svg new file mode 100644 index 00000000000..4aa1df93b51 --- /dev/null +++ b/public/emoji/1f479.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f47a.svg b/public/emoji/1f47a.svg new file mode 100644 index 00000000000..a20c6c44e41 --- /dev/null +++ b/public/emoji/1f47a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f47b.svg b/public/emoji/1f47b.svg new file mode 100644 index 00000000000..37f0680391a --- /dev/null +++ b/public/emoji/1f47b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f47c-1f3fb.svg b/public/emoji/1f47c-1f3fb.svg new file mode 100644 index 00000000000..b33f37c471b --- /dev/null +++ b/public/emoji/1f47c-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f47c-1f3fc.svg b/public/emoji/1f47c-1f3fc.svg new file mode 100644 index 00000000000..0095920c439 --- /dev/null +++ b/public/emoji/1f47c-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f47c-1f3fd.svg b/public/emoji/1f47c-1f3fd.svg new file mode 100644 index 00000000000..ce453f4b7c1 --- /dev/null +++ b/public/emoji/1f47c-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f47c-1f3fe.svg b/public/emoji/1f47c-1f3fe.svg new file mode 100644 index 00000000000..bbff87d4134 --- /dev/null +++ b/public/emoji/1f47c-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f47c-1f3ff.svg b/public/emoji/1f47c-1f3ff.svg new file mode 100644 index 00000000000..5e7bb9f044a --- /dev/null +++ b/public/emoji/1f47c-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f47c.svg b/public/emoji/1f47c.svg new file mode 100644 index 00000000000..fd6002a209f --- /dev/null +++ b/public/emoji/1f47c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f47d.svg b/public/emoji/1f47d.svg new file mode 100644 index 00000000000..fff8d2f2bb8 --- /dev/null +++ b/public/emoji/1f47d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f47e.svg b/public/emoji/1f47e.svg new file mode 100644 index 00000000000..0d4c47cfeaa --- /dev/null +++ b/public/emoji/1f47e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f47f.svg b/public/emoji/1f47f.svg new file mode 100644 index 00000000000..a2bf45a6326 --- /dev/null +++ b/public/emoji/1f47f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f480.svg b/public/emoji/1f480.svg new file mode 100644 index 00000000000..300fed88851 --- /dev/null +++ b/public/emoji/1f480.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f481-1f3fb.svg b/public/emoji/1f481-1f3fb.svg new file mode 100644 index 00000000000..94f0d9fa835 --- /dev/null +++ b/public/emoji/1f481-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f481-1f3fc.svg b/public/emoji/1f481-1f3fc.svg new file mode 100644 index 00000000000..4094b088f53 --- /dev/null +++ b/public/emoji/1f481-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f481-1f3fd.svg b/public/emoji/1f481-1f3fd.svg new file mode 100644 index 00000000000..502cf7baae0 --- /dev/null +++ b/public/emoji/1f481-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f481-1f3fe.svg b/public/emoji/1f481-1f3fe.svg new file mode 100644 index 00000000000..d2338320842 --- /dev/null +++ b/public/emoji/1f481-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f481-1f3ff.svg b/public/emoji/1f481-1f3ff.svg new file mode 100644 index 00000000000..64f4c496951 --- /dev/null +++ b/public/emoji/1f481-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f481.svg b/public/emoji/1f481.svg new file mode 100644 index 00000000000..324606f2638 --- /dev/null +++ b/public/emoji/1f481.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f482-1f3fb.svg b/public/emoji/1f482-1f3fb.svg new file mode 100644 index 00000000000..12ecea3c44d --- /dev/null +++ b/public/emoji/1f482-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f482-1f3fc.svg b/public/emoji/1f482-1f3fc.svg new file mode 100644 index 00000000000..0a822b81e6c --- /dev/null +++ b/public/emoji/1f482-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f482-1f3fd.svg b/public/emoji/1f482-1f3fd.svg new file mode 100644 index 00000000000..3048f05b89d --- /dev/null +++ b/public/emoji/1f482-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f482-1f3fe.svg b/public/emoji/1f482-1f3fe.svg new file mode 100644 index 00000000000..ece9fd37d91 --- /dev/null +++ b/public/emoji/1f482-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f482-1f3ff.svg b/public/emoji/1f482-1f3ff.svg new file mode 100644 index 00000000000..c59625be539 --- /dev/null +++ b/public/emoji/1f482-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f482.svg b/public/emoji/1f482.svg new file mode 100644 index 00000000000..a2828629eea --- /dev/null +++ b/public/emoji/1f482.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f483-1f3fb.svg b/public/emoji/1f483-1f3fb.svg new file mode 100644 index 00000000000..23026b5a5e0 --- /dev/null +++ b/public/emoji/1f483-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f483-1f3fc.svg b/public/emoji/1f483-1f3fc.svg new file mode 100644 index 00000000000..df65e02a364 --- /dev/null +++ b/public/emoji/1f483-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f483-1f3fd.svg b/public/emoji/1f483-1f3fd.svg new file mode 100644 index 00000000000..e4c1d7b9dd8 --- /dev/null +++ b/public/emoji/1f483-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f483-1f3fe.svg b/public/emoji/1f483-1f3fe.svg new file mode 100644 index 00000000000..e163cfbc5b8 --- /dev/null +++ b/public/emoji/1f483-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f483-1f3ff.svg b/public/emoji/1f483-1f3ff.svg new file mode 100644 index 00000000000..bb4dcfe4941 --- /dev/null +++ b/public/emoji/1f483-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f483.svg b/public/emoji/1f483.svg new file mode 100644 index 00000000000..25ff89a2cd5 --- /dev/null +++ b/public/emoji/1f483.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f484.svg b/public/emoji/1f484.svg new file mode 100644 index 00000000000..99bc7908bae --- /dev/null +++ b/public/emoji/1f484.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f485-1f3fb.svg b/public/emoji/1f485-1f3fb.svg new file mode 100644 index 00000000000..f31a7a29845 --- /dev/null +++ b/public/emoji/1f485-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f485-1f3fc.svg b/public/emoji/1f485-1f3fc.svg new file mode 100644 index 00000000000..442102a4bd6 --- /dev/null +++ b/public/emoji/1f485-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f485-1f3fd.svg b/public/emoji/1f485-1f3fd.svg new file mode 100644 index 00000000000..daa1db1997d --- /dev/null +++ b/public/emoji/1f485-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f485-1f3fe.svg b/public/emoji/1f485-1f3fe.svg new file mode 100644 index 00000000000..759366904f2 --- /dev/null +++ b/public/emoji/1f485-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f485-1f3ff.svg b/public/emoji/1f485-1f3ff.svg new file mode 100644 index 00000000000..36a0f84030c --- /dev/null +++ b/public/emoji/1f485-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f485.svg b/public/emoji/1f485.svg new file mode 100644 index 00000000000..91fd2c51f39 --- /dev/null +++ b/public/emoji/1f485.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f486-1f3fb.svg b/public/emoji/1f486-1f3fb.svg new file mode 100644 index 00000000000..dc1aef549a7 --- /dev/null +++ b/public/emoji/1f486-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f486-1f3fc.svg b/public/emoji/1f486-1f3fc.svg new file mode 100644 index 00000000000..ccea5085ed8 --- /dev/null +++ b/public/emoji/1f486-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f486-1f3fd.svg b/public/emoji/1f486-1f3fd.svg new file mode 100644 index 00000000000..245ca4b6d90 --- /dev/null +++ b/public/emoji/1f486-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f486-1f3fe.svg b/public/emoji/1f486-1f3fe.svg new file mode 100644 index 00000000000..a56ff48dd71 --- /dev/null +++ b/public/emoji/1f486-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f486-1f3ff.svg b/public/emoji/1f486-1f3ff.svg new file mode 100644 index 00000000000..bf24cb0684a --- /dev/null +++ b/public/emoji/1f486-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f486.svg b/public/emoji/1f486.svg new file mode 100644 index 00000000000..04a27271383 --- /dev/null +++ b/public/emoji/1f486.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f487-1f3fb.svg b/public/emoji/1f487-1f3fb.svg new file mode 100644 index 00000000000..793781e7ee1 --- /dev/null +++ b/public/emoji/1f487-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f487-1f3fc.svg b/public/emoji/1f487-1f3fc.svg new file mode 100644 index 00000000000..ac7e41cfc1c --- /dev/null +++ b/public/emoji/1f487-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f487-1f3fd.svg b/public/emoji/1f487-1f3fd.svg new file mode 100644 index 00000000000..b581fe54ab2 --- /dev/null +++ b/public/emoji/1f487-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f487-1f3fe.svg b/public/emoji/1f487-1f3fe.svg new file mode 100644 index 00000000000..2c2be850cd7 --- /dev/null +++ b/public/emoji/1f487-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f487-1f3ff.svg b/public/emoji/1f487-1f3ff.svg new file mode 100644 index 00000000000..0d4ee4cb528 --- /dev/null +++ b/public/emoji/1f487-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f487.svg b/public/emoji/1f487.svg new file mode 100644 index 00000000000..0d345e70b76 --- /dev/null +++ b/public/emoji/1f487.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f488.svg b/public/emoji/1f488.svg new file mode 100644 index 00000000000..8db2bdc7d86 --- /dev/null +++ b/public/emoji/1f488.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f489.svg b/public/emoji/1f489.svg new file mode 100644 index 00000000000..0a2fe966751 --- /dev/null +++ b/public/emoji/1f489.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f48a.svg b/public/emoji/1f48a.svg new file mode 100644 index 00000000000..ea0a9a8cc81 --- /dev/null +++ b/public/emoji/1f48a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f48b.svg b/public/emoji/1f48b.svg new file mode 100644 index 00000000000..a2d76f20de2 --- /dev/null +++ b/public/emoji/1f48b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f48c.svg b/public/emoji/1f48c.svg new file mode 100644 index 00000000000..ae73beac1f9 --- /dev/null +++ b/public/emoji/1f48c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f48d.svg b/public/emoji/1f48d.svg new file mode 100644 index 00000000000..51da1763cb2 --- /dev/null +++ b/public/emoji/1f48d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f48e.svg b/public/emoji/1f48e.svg new file mode 100644 index 00000000000..c7a3719a28f --- /dev/null +++ b/public/emoji/1f48e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f48f.svg b/public/emoji/1f48f.svg new file mode 100644 index 00000000000..cd4f66f04d5 --- /dev/null +++ b/public/emoji/1f48f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f490.svg b/public/emoji/1f490.svg new file mode 100644 index 00000000000..8f15a96523c --- /dev/null +++ b/public/emoji/1f490.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f491.svg b/public/emoji/1f491.svg new file mode 100644 index 00000000000..38085503c01 --- /dev/null +++ b/public/emoji/1f491.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f492.svg b/public/emoji/1f492.svg new file mode 100644 index 00000000000..e7008d4232e --- /dev/null +++ b/public/emoji/1f492.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f493.svg b/public/emoji/1f493.svg new file mode 100644 index 00000000000..41388626b9a --- /dev/null +++ b/public/emoji/1f493.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f494.svg b/public/emoji/1f494.svg new file mode 100644 index 00000000000..a8b9e1b05f9 --- /dev/null +++ b/public/emoji/1f494.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f495.svg b/public/emoji/1f495.svg new file mode 100644 index 00000000000..6f51fbd1ffc --- /dev/null +++ b/public/emoji/1f495.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f496.svg b/public/emoji/1f496.svg new file mode 100644 index 00000000000..27457d5b78d --- /dev/null +++ b/public/emoji/1f496.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f497.svg b/public/emoji/1f497.svg new file mode 100644 index 00000000000..a3da17e1f12 --- /dev/null +++ b/public/emoji/1f497.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f498.svg b/public/emoji/1f498.svg new file mode 100644 index 00000000000..66b99f3304b --- /dev/null +++ b/public/emoji/1f498.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f499.svg b/public/emoji/1f499.svg new file mode 100644 index 00000000000..6db134a92d6 --- /dev/null +++ b/public/emoji/1f499.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f49a.svg b/public/emoji/1f49a.svg new file mode 100644 index 00000000000..2d718b516b8 --- /dev/null +++ b/public/emoji/1f49a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f49b.svg b/public/emoji/1f49b.svg new file mode 100644 index 00000000000..c642502054c --- /dev/null +++ b/public/emoji/1f49b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f49c.svg b/public/emoji/1f49c.svg new file mode 100644 index 00000000000..7adf0793979 --- /dev/null +++ b/public/emoji/1f49c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f49d.svg b/public/emoji/1f49d.svg new file mode 100644 index 00000000000..2e8a4968808 --- /dev/null +++ b/public/emoji/1f49d.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f49e.svg b/public/emoji/1f49e.svg new file mode 100644 index 00000000000..f90aae90f77 --- /dev/null +++ b/public/emoji/1f49e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f49f.svg b/public/emoji/1f49f.svg new file mode 100644 index 00000000000..2c1c7d2701d --- /dev/null +++ b/public/emoji/1f49f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4a0.svg b/public/emoji/1f4a0.svg new file mode 100644 index 00000000000..77363d19987 --- /dev/null +++ b/public/emoji/1f4a0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4a1.svg b/public/emoji/1f4a1.svg new file mode 100644 index 00000000000..7e44d418a66 --- /dev/null +++ b/public/emoji/1f4a1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4a2.svg b/public/emoji/1f4a2.svg new file mode 100644 index 00000000000..d816b493466 --- /dev/null +++ b/public/emoji/1f4a2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4a3.svg b/public/emoji/1f4a3.svg new file mode 100644 index 00000000000..b9a7e0f7474 --- /dev/null +++ b/public/emoji/1f4a3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4a4.svg b/public/emoji/1f4a4.svg new file mode 100644 index 00000000000..625c724827a --- /dev/null +++ b/public/emoji/1f4a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4a5.svg b/public/emoji/1f4a5.svg new file mode 100644 index 00000000000..5ae4d00dbaa --- /dev/null +++ b/public/emoji/1f4a5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4a6.svg b/public/emoji/1f4a6.svg new file mode 100644 index 00000000000..d33061edc1e --- /dev/null +++ b/public/emoji/1f4a6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4a7.svg b/public/emoji/1f4a7.svg new file mode 100644 index 00000000000..e56136fe517 --- /dev/null +++ b/public/emoji/1f4a7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4a8.svg b/public/emoji/1f4a8.svg new file mode 100644 index 00000000000..5807909d14e --- /dev/null +++ b/public/emoji/1f4a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4a9.svg b/public/emoji/1f4a9.svg new file mode 100644 index 00000000000..342ac404bcd --- /dev/null +++ b/public/emoji/1f4a9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4aa-1f3fb.svg b/public/emoji/1f4aa-1f3fb.svg new file mode 100644 index 00000000000..174dc99d270 --- /dev/null +++ b/public/emoji/1f4aa-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4aa-1f3fc.svg b/public/emoji/1f4aa-1f3fc.svg new file mode 100644 index 00000000000..be0b9c70b0f --- /dev/null +++ b/public/emoji/1f4aa-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4aa-1f3fd.svg b/public/emoji/1f4aa-1f3fd.svg new file mode 100644 index 00000000000..fa50395b98b --- /dev/null +++ b/public/emoji/1f4aa-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4aa-1f3fe.svg b/public/emoji/1f4aa-1f3fe.svg new file mode 100644 index 00000000000..820211811bd --- /dev/null +++ b/public/emoji/1f4aa-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4aa-1f3ff.svg b/public/emoji/1f4aa-1f3ff.svg new file mode 100644 index 00000000000..109ded67dc0 --- /dev/null +++ b/public/emoji/1f4aa-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4aa.svg b/public/emoji/1f4aa.svg new file mode 100644 index 00000000000..772927cc416 --- /dev/null +++ b/public/emoji/1f4aa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4ab.svg b/public/emoji/1f4ab.svg new file mode 100644 index 00000000000..6f4ba8a7b29 --- /dev/null +++ b/public/emoji/1f4ab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4ac.svg b/public/emoji/1f4ac.svg new file mode 100644 index 00000000000..663533c822f --- /dev/null +++ b/public/emoji/1f4ac.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f4ad.svg b/public/emoji/1f4ad.svg new file mode 100644 index 00000000000..b9883d63aa3 --- /dev/null +++ b/public/emoji/1f4ad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4ae.svg b/public/emoji/1f4ae.svg new file mode 100644 index 00000000000..3703f53e2e8 --- /dev/null +++ b/public/emoji/1f4ae.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4af.svg b/public/emoji/1f4af.svg new file mode 100644 index 00000000000..8bb5a8027dd --- /dev/null +++ b/public/emoji/1f4af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4b0.svg b/public/emoji/1f4b0.svg new file mode 100644 index 00000000000..5dcbf7d1cd8 --- /dev/null +++ b/public/emoji/1f4b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4b1.svg b/public/emoji/1f4b1.svg new file mode 100644 index 00000000000..350402b9d68 --- /dev/null +++ b/public/emoji/1f4b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4b2.svg b/public/emoji/1f4b2.svg new file mode 100644 index 00000000000..12419774cbc --- /dev/null +++ b/public/emoji/1f4b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4b3.svg b/public/emoji/1f4b3.svg new file mode 100644 index 00000000000..289be20ad4c --- /dev/null +++ b/public/emoji/1f4b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4b4.svg b/public/emoji/1f4b4.svg new file mode 100644 index 00000000000..73ada09a2f0 --- /dev/null +++ b/public/emoji/1f4b4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4b5.svg b/public/emoji/1f4b5.svg new file mode 100644 index 00000000000..a6723a2be5a --- /dev/null +++ b/public/emoji/1f4b5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4b6.svg b/public/emoji/1f4b6.svg new file mode 100644 index 00000000000..4ab37625bfb --- /dev/null +++ b/public/emoji/1f4b6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4b7.svg b/public/emoji/1f4b7.svg new file mode 100644 index 00000000000..59a5f522aca --- /dev/null +++ b/public/emoji/1f4b7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4b8.svg b/public/emoji/1f4b8.svg new file mode 100644 index 00000000000..8e90f8e501e --- /dev/null +++ b/public/emoji/1f4b8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4b9.svg b/public/emoji/1f4b9.svg new file mode 100644 index 00000000000..b794bad1cd1 --- /dev/null +++ b/public/emoji/1f4b9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4ba.svg b/public/emoji/1f4ba.svg new file mode 100644 index 00000000000..a961080f265 --- /dev/null +++ b/public/emoji/1f4ba.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4bb.svg b/public/emoji/1f4bb.svg new file mode 100644 index 00000000000..de2b1388a81 --- /dev/null +++ b/public/emoji/1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4bc.svg b/public/emoji/1f4bc.svg new file mode 100644 index 00000000000..16fd4d57221 --- /dev/null +++ b/public/emoji/1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4bd.svg b/public/emoji/1f4bd.svg new file mode 100644 index 00000000000..f37c1636ceb --- /dev/null +++ b/public/emoji/1f4bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4be.svg b/public/emoji/1f4be.svg new file mode 100644 index 00000000000..9eba4f910af --- /dev/null +++ b/public/emoji/1f4be.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4bf.svg b/public/emoji/1f4bf.svg new file mode 100644 index 00000000000..eac0a2aabe2 --- /dev/null +++ b/public/emoji/1f4bf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4c0.svg b/public/emoji/1f4c0.svg new file mode 100644 index 00000000000..2547f71c1be --- /dev/null +++ b/public/emoji/1f4c0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4c1.svg b/public/emoji/1f4c1.svg new file mode 100644 index 00000000000..8eaf3c99c37 --- /dev/null +++ b/public/emoji/1f4c1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4c2.svg b/public/emoji/1f4c2.svg new file mode 100644 index 00000000000..85fc741489a --- /dev/null +++ b/public/emoji/1f4c2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4c3.svg b/public/emoji/1f4c3.svg new file mode 100644 index 00000000000..46b14fcc865 --- /dev/null +++ b/public/emoji/1f4c3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4c4.svg b/public/emoji/1f4c4.svg new file mode 100644 index 00000000000..b782c614615 --- /dev/null +++ b/public/emoji/1f4c4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4c5.svg b/public/emoji/1f4c5.svg new file mode 100644 index 00000000000..5b18759b06b --- /dev/null +++ b/public/emoji/1f4c5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4c6.svg b/public/emoji/1f4c6.svg new file mode 100644 index 00000000000..a82a5908560 --- /dev/null +++ b/public/emoji/1f4c6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4c7.svg b/public/emoji/1f4c7.svg new file mode 100644 index 00000000000..21c4b7730fa --- /dev/null +++ b/public/emoji/1f4c7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4c8.svg b/public/emoji/1f4c8.svg new file mode 100644 index 00000000000..69c80f6b8f5 --- /dev/null +++ b/public/emoji/1f4c8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4c9.svg b/public/emoji/1f4c9.svg new file mode 100644 index 00000000000..62109700206 --- /dev/null +++ b/public/emoji/1f4c9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4ca.svg b/public/emoji/1f4ca.svg new file mode 100644 index 00000000000..619ce84e4d1 --- /dev/null +++ b/public/emoji/1f4ca.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4cb.svg b/public/emoji/1f4cb.svg new file mode 100644 index 00000000000..29f1ef7fbfb --- /dev/null +++ b/public/emoji/1f4cb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4cc.svg b/public/emoji/1f4cc.svg new file mode 100644 index 00000000000..54037722878 --- /dev/null +++ b/public/emoji/1f4cc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4cd.svg b/public/emoji/1f4cd.svg new file mode 100644 index 00000000000..fa9f105cf8a --- /dev/null +++ b/public/emoji/1f4cd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4ce.svg b/public/emoji/1f4ce.svg new file mode 100644 index 00000000000..47c8d2c6a0f --- /dev/null +++ b/public/emoji/1f4ce.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4cf.svg b/public/emoji/1f4cf.svg new file mode 100644 index 00000000000..3d66c06746d --- /dev/null +++ b/public/emoji/1f4cf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4d0.svg b/public/emoji/1f4d0.svg new file mode 100644 index 00000000000..5d4c52db9fc --- /dev/null +++ b/public/emoji/1f4d0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4d1.svg b/public/emoji/1f4d1.svg new file mode 100644 index 00000000000..b0ff5864364 --- /dev/null +++ b/public/emoji/1f4d1.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f4d2.svg b/public/emoji/1f4d2.svg new file mode 100644 index 00000000000..93fecc88c68 --- /dev/null +++ b/public/emoji/1f4d2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4d3.svg b/public/emoji/1f4d3.svg new file mode 100644 index 00000000000..604ba14e9fc --- /dev/null +++ b/public/emoji/1f4d3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4d4.svg b/public/emoji/1f4d4.svg new file mode 100644 index 00000000000..211f080c97d --- /dev/null +++ b/public/emoji/1f4d4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4d5.svg b/public/emoji/1f4d5.svg new file mode 100644 index 00000000000..be6b7fa3ccf --- /dev/null +++ b/public/emoji/1f4d5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4d6.svg b/public/emoji/1f4d6.svg new file mode 100644 index 00000000000..40a387e31f3 --- /dev/null +++ b/public/emoji/1f4d6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4d7.svg b/public/emoji/1f4d7.svg new file mode 100644 index 00000000000..5ef4524b9af --- /dev/null +++ b/public/emoji/1f4d7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4d8.svg b/public/emoji/1f4d8.svg new file mode 100644 index 00000000000..3e1ba1c8fa0 --- /dev/null +++ b/public/emoji/1f4d8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4d9.svg b/public/emoji/1f4d9.svg new file mode 100644 index 00000000000..0758e63e0bb --- /dev/null +++ b/public/emoji/1f4d9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4da.svg b/public/emoji/1f4da.svg new file mode 100644 index 00000000000..8469d334ed4 --- /dev/null +++ b/public/emoji/1f4da.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4db.svg b/public/emoji/1f4db.svg new file mode 100644 index 00000000000..616945d2dde --- /dev/null +++ b/public/emoji/1f4db.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4dc.svg b/public/emoji/1f4dc.svg new file mode 100644 index 00000000000..6b1d35971c6 --- /dev/null +++ b/public/emoji/1f4dc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4dd.svg b/public/emoji/1f4dd.svg new file mode 100644 index 00000000000..5e6f46c8b12 --- /dev/null +++ b/public/emoji/1f4dd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4de.svg b/public/emoji/1f4de.svg new file mode 100644 index 00000000000..a4039435d62 --- /dev/null +++ b/public/emoji/1f4de.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4df.svg b/public/emoji/1f4df.svg new file mode 100644 index 00000000000..a46aa37d0d3 --- /dev/null +++ b/public/emoji/1f4df.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4e0.svg b/public/emoji/1f4e0.svg new file mode 100644 index 00000000000..7e52dbfd0ea --- /dev/null +++ b/public/emoji/1f4e0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4e1.svg b/public/emoji/1f4e1.svg new file mode 100644 index 00000000000..f15cb8a0e39 --- /dev/null +++ b/public/emoji/1f4e1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4e2.svg b/public/emoji/1f4e2.svg new file mode 100644 index 00000000000..44179fefca4 --- /dev/null +++ b/public/emoji/1f4e2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4e3.svg b/public/emoji/1f4e3.svg new file mode 100644 index 00000000000..0967abab91c --- /dev/null +++ b/public/emoji/1f4e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4e4.svg b/public/emoji/1f4e4.svg new file mode 100644 index 00000000000..b7b006630a3 --- /dev/null +++ b/public/emoji/1f4e4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4e5.svg b/public/emoji/1f4e5.svg new file mode 100644 index 00000000000..75df61a63bf --- /dev/null +++ b/public/emoji/1f4e5.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f4e6.svg b/public/emoji/1f4e6.svg new file mode 100644 index 00000000000..95182fd1bfa --- /dev/null +++ b/public/emoji/1f4e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4e7.svg b/public/emoji/1f4e7.svg new file mode 100644 index 00000000000..c296f507041 --- /dev/null +++ b/public/emoji/1f4e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4e8.svg b/public/emoji/1f4e8.svg new file mode 100644 index 00000000000..694c04ee940 --- /dev/null +++ b/public/emoji/1f4e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4e9.svg b/public/emoji/1f4e9.svg new file mode 100644 index 00000000000..2e5dd66c454 --- /dev/null +++ b/public/emoji/1f4e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4ea.svg b/public/emoji/1f4ea.svg new file mode 100644 index 00000000000..b825c02f226 --- /dev/null +++ b/public/emoji/1f4ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4eb.svg b/public/emoji/1f4eb.svg new file mode 100644 index 00000000000..fcd20da4992 --- /dev/null +++ b/public/emoji/1f4eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4ec.svg b/public/emoji/1f4ec.svg new file mode 100644 index 00000000000..2393774c733 --- /dev/null +++ b/public/emoji/1f4ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4ed.svg b/public/emoji/1f4ed.svg new file mode 100644 index 00000000000..c4fddbace29 --- /dev/null +++ b/public/emoji/1f4ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4ee.svg b/public/emoji/1f4ee.svg new file mode 100644 index 00000000000..2c53c56e2b6 --- /dev/null +++ b/public/emoji/1f4ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4ef.svg b/public/emoji/1f4ef.svg new file mode 100644 index 00000000000..6ead0b07b40 --- /dev/null +++ b/public/emoji/1f4ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4f0.svg b/public/emoji/1f4f0.svg new file mode 100644 index 00000000000..51f9f85a07d --- /dev/null +++ b/public/emoji/1f4f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4f1.svg b/public/emoji/1f4f1.svg new file mode 100644 index 00000000000..bbb0684ac53 --- /dev/null +++ b/public/emoji/1f4f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4f2.svg b/public/emoji/1f4f2.svg new file mode 100644 index 00000000000..9f323e496fc --- /dev/null +++ b/public/emoji/1f4f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4f3.svg b/public/emoji/1f4f3.svg new file mode 100644 index 00000000000..7f2e947b18c --- /dev/null +++ b/public/emoji/1f4f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4f4.svg b/public/emoji/1f4f4.svg new file mode 100644 index 00000000000..3f7fd7f1520 --- /dev/null +++ b/public/emoji/1f4f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4f5.svg b/public/emoji/1f4f5.svg new file mode 100644 index 00000000000..dfeb0985c85 --- /dev/null +++ b/public/emoji/1f4f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4f6.svg b/public/emoji/1f4f6.svg new file mode 100644 index 00000000000..f6033621b08 --- /dev/null +++ b/public/emoji/1f4f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4f7.svg b/public/emoji/1f4f7.svg new file mode 100644 index 00000000000..ed7884b4159 --- /dev/null +++ b/public/emoji/1f4f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4f8.svg b/public/emoji/1f4f8.svg new file mode 100644 index 00000000000..7814bdd9293 --- /dev/null +++ b/public/emoji/1f4f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4f9.svg b/public/emoji/1f4f9.svg new file mode 100644 index 00000000000..8c71d01a14a --- /dev/null +++ b/public/emoji/1f4f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4fa.svg b/public/emoji/1f4fa.svg new file mode 100644 index 00000000000..3d446fd6e7d --- /dev/null +++ b/public/emoji/1f4fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4fb.svg b/public/emoji/1f4fb.svg new file mode 100644 index 00000000000..4a7bff1725a --- /dev/null +++ b/public/emoji/1f4fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4fc.svg b/public/emoji/1f4fc.svg new file mode 100644 index 00000000000..6b1e3d0c26a --- /dev/null +++ b/public/emoji/1f4fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4fd.svg b/public/emoji/1f4fd.svg new file mode 100644 index 00000000000..a440cbfe495 --- /dev/null +++ b/public/emoji/1f4fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4ff.svg b/public/emoji/1f4ff.svg new file mode 100644 index 00000000000..1fa2a4abf02 --- /dev/null +++ b/public/emoji/1f4ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f500.svg b/public/emoji/1f500.svg new file mode 100644 index 00000000000..81a5389c750 --- /dev/null +++ b/public/emoji/1f500.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f501.svg b/public/emoji/1f501.svg new file mode 100644 index 00000000000..fccd8243cf8 --- /dev/null +++ b/public/emoji/1f501.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f502.svg b/public/emoji/1f502.svg new file mode 100644 index 00000000000..3372590bd8c --- /dev/null +++ b/public/emoji/1f502.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f503.svg b/public/emoji/1f503.svg new file mode 100644 index 00000000000..3aa0d63ba65 --- /dev/null +++ b/public/emoji/1f503.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f504.svg b/public/emoji/1f504.svg new file mode 100644 index 00000000000..2eefda0d3f2 --- /dev/null +++ b/public/emoji/1f504.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f505.svg b/public/emoji/1f505.svg new file mode 100644 index 00000000000..206610ecf24 --- /dev/null +++ b/public/emoji/1f505.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f506.svg b/public/emoji/1f506.svg new file mode 100644 index 00000000000..dc65b9a6d63 --- /dev/null +++ b/public/emoji/1f506.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f507.svg b/public/emoji/1f507.svg new file mode 100644 index 00000000000..4d10ceb2485 --- /dev/null +++ b/public/emoji/1f507.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f508.svg b/public/emoji/1f508.svg new file mode 100644 index 00000000000..9eac4a0d005 --- /dev/null +++ b/public/emoji/1f508.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f509.svg b/public/emoji/1f509.svg new file mode 100644 index 00000000000..5460d8e9860 --- /dev/null +++ b/public/emoji/1f509.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f50a.svg b/public/emoji/1f50a.svg new file mode 100644 index 00000000000..eb2e94c838b --- /dev/null +++ b/public/emoji/1f50a.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f50b.svg b/public/emoji/1f50b.svg new file mode 100644 index 00000000000..370d5cfe0b8 --- /dev/null +++ b/public/emoji/1f50b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f50c.svg b/public/emoji/1f50c.svg new file mode 100644 index 00000000000..bbbcf0a5a51 --- /dev/null +++ b/public/emoji/1f50c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f50d.svg b/public/emoji/1f50d.svg new file mode 100644 index 00000000000..7f1758d6761 --- /dev/null +++ b/public/emoji/1f50d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f50e.svg b/public/emoji/1f50e.svg new file mode 100644 index 00000000000..a60c2aa1136 --- /dev/null +++ b/public/emoji/1f50e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f50f.svg b/public/emoji/1f50f.svg new file mode 100644 index 00000000000..eb3c3fb4770 --- /dev/null +++ b/public/emoji/1f50f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f510.svg b/public/emoji/1f510.svg new file mode 100644 index 00000000000..2d9a97df662 --- /dev/null +++ b/public/emoji/1f510.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f511.svg b/public/emoji/1f511.svg new file mode 100644 index 00000000000..74b38d18c40 --- /dev/null +++ b/public/emoji/1f511.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f512.svg b/public/emoji/1f512.svg new file mode 100644 index 00000000000..fac55a2f0bc --- /dev/null +++ b/public/emoji/1f512.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f513.svg b/public/emoji/1f513.svg new file mode 100644 index 00000000000..4d650b67e49 --- /dev/null +++ b/public/emoji/1f513.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f514.svg b/public/emoji/1f514.svg new file mode 100644 index 00000000000..e64706564cb --- /dev/null +++ b/public/emoji/1f514.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f515.svg b/public/emoji/1f515.svg new file mode 100644 index 00000000000..a37acaff3b5 --- /dev/null +++ b/public/emoji/1f515.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f516.svg b/public/emoji/1f516.svg new file mode 100644 index 00000000000..555079664e6 --- /dev/null +++ b/public/emoji/1f516.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f517.svg b/public/emoji/1f517.svg new file mode 100644 index 00000000000..777545a1724 --- /dev/null +++ b/public/emoji/1f517.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f518.svg b/public/emoji/1f518.svg new file mode 100644 index 00000000000..a894198e860 --- /dev/null +++ b/public/emoji/1f518.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f519.svg b/public/emoji/1f519.svg new file mode 100644 index 00000000000..b8fe574e26a --- /dev/null +++ b/public/emoji/1f519.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f51a.svg b/public/emoji/1f51a.svg new file mode 100644 index 00000000000..1925646d18c --- /dev/null +++ b/public/emoji/1f51a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f51b.svg b/public/emoji/1f51b.svg new file mode 100644 index 00000000000..f9bb3d83325 --- /dev/null +++ b/public/emoji/1f51b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f51c.svg b/public/emoji/1f51c.svg new file mode 100644 index 00000000000..62c2ffb2f71 --- /dev/null +++ b/public/emoji/1f51c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f51d.svg b/public/emoji/1f51d.svg new file mode 100644 index 00000000000..cc4db6763df --- /dev/null +++ b/public/emoji/1f51d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f51e.svg b/public/emoji/1f51e.svg new file mode 100644 index 00000000000..19ac9d2bd2c --- /dev/null +++ b/public/emoji/1f51e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f51f.svg b/public/emoji/1f51f.svg new file mode 100644 index 00000000000..f717fa7f06a --- /dev/null +++ b/public/emoji/1f51f.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f520.svg b/public/emoji/1f520.svg new file mode 100644 index 00000000000..04d626dcd0e --- /dev/null +++ b/public/emoji/1f520.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f521.svg b/public/emoji/1f521.svg new file mode 100644 index 00000000000..a127d193433 --- /dev/null +++ b/public/emoji/1f521.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f522.svg b/public/emoji/1f522.svg new file mode 100644 index 00000000000..5710ed97181 --- /dev/null +++ b/public/emoji/1f522.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f523.svg b/public/emoji/1f523.svg new file mode 100644 index 00000000000..7de6af1d7d8 --- /dev/null +++ b/public/emoji/1f523.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f524.svg b/public/emoji/1f524.svg new file mode 100644 index 00000000000..236a41ce9bb --- /dev/null +++ b/public/emoji/1f524.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f525.svg b/public/emoji/1f525.svg new file mode 100644 index 00000000000..23dd30a75d4 --- /dev/null +++ b/public/emoji/1f525.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f526.svg b/public/emoji/1f526.svg new file mode 100644 index 00000000000..1d9dcdfdf94 --- /dev/null +++ b/public/emoji/1f526.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f527.svg b/public/emoji/1f527.svg new file mode 100644 index 00000000000..5ca5cf38e25 --- /dev/null +++ b/public/emoji/1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f528.svg b/public/emoji/1f528.svg new file mode 100644 index 00000000000..0285e2d1a5e --- /dev/null +++ b/public/emoji/1f528.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f529.svg b/public/emoji/1f529.svg new file mode 100644 index 00000000000..b43444715b7 --- /dev/null +++ b/public/emoji/1f529.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f52a.svg b/public/emoji/1f52a.svg new file mode 100644 index 00000000000..cbf23194912 --- /dev/null +++ b/public/emoji/1f52a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f52b.svg b/public/emoji/1f52b.svg new file mode 100644 index 00000000000..7ce6a43f1d5 --- /dev/null +++ b/public/emoji/1f52b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f52c.svg b/public/emoji/1f52c.svg new file mode 100644 index 00000000000..149eb3797bd --- /dev/null +++ b/public/emoji/1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f52d.svg b/public/emoji/1f52d.svg new file mode 100644 index 00000000000..e4dc0106ebc --- /dev/null +++ b/public/emoji/1f52d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f52e.svg b/public/emoji/1f52e.svg new file mode 100644 index 00000000000..72eff081e11 --- /dev/null +++ b/public/emoji/1f52e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f52f.svg b/public/emoji/1f52f.svg new file mode 100644 index 00000000000..5783decc394 --- /dev/null +++ b/public/emoji/1f52f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f530.svg b/public/emoji/1f530.svg new file mode 100644 index 00000000000..b0677aae78b --- /dev/null +++ b/public/emoji/1f530.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f531.svg b/public/emoji/1f531.svg new file mode 100644 index 00000000000..09cb93cd89c --- /dev/null +++ b/public/emoji/1f531.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f532.svg b/public/emoji/1f532.svg new file mode 100644 index 00000000000..4234050bae8 --- /dev/null +++ b/public/emoji/1f532.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f533.svg b/public/emoji/1f533.svg new file mode 100644 index 00000000000..478b8cde779 --- /dev/null +++ b/public/emoji/1f533.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f534.svg b/public/emoji/1f534.svg new file mode 100644 index 00000000000..a8ac9f77dce --- /dev/null +++ b/public/emoji/1f534.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f535.svg b/public/emoji/1f535.svg new file mode 100644 index 00000000000..3df8731d3b3 --- /dev/null +++ b/public/emoji/1f535.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f536.svg b/public/emoji/1f536.svg new file mode 100644 index 00000000000..351f0db4e52 --- /dev/null +++ b/public/emoji/1f536.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f537.svg b/public/emoji/1f537.svg new file mode 100644 index 00000000000..2d351444865 --- /dev/null +++ b/public/emoji/1f537.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f538.svg b/public/emoji/1f538.svg new file mode 100644 index 00000000000..10ba0449aa5 --- /dev/null +++ b/public/emoji/1f538.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f539.svg b/public/emoji/1f539.svg new file mode 100644 index 00000000000..344ca595602 --- /dev/null +++ b/public/emoji/1f539.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f53a.svg b/public/emoji/1f53a.svg new file mode 100644 index 00000000000..321041237a8 --- /dev/null +++ b/public/emoji/1f53a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f53b.svg b/public/emoji/1f53b.svg new file mode 100644 index 00000000000..57d6ad46768 --- /dev/null +++ b/public/emoji/1f53b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f53c.svg b/public/emoji/1f53c.svg new file mode 100644 index 00000000000..6836e6e049b --- /dev/null +++ b/public/emoji/1f53c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f53d.svg b/public/emoji/1f53d.svg new file mode 100644 index 00000000000..a624cea78e3 --- /dev/null +++ b/public/emoji/1f53d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f549.svg b/public/emoji/1f549.svg new file mode 100644 index 00000000000..f068cd7397c --- /dev/null +++ b/public/emoji/1f549.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f54a.svg b/public/emoji/1f54a.svg new file mode 100644 index 00000000000..37fa3aaf1b3 --- /dev/null +++ b/public/emoji/1f54a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f54b.svg b/public/emoji/1f54b.svg new file mode 100644 index 00000000000..687e4d776a1 --- /dev/null +++ b/public/emoji/1f54b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f54c.svg b/public/emoji/1f54c.svg new file mode 100644 index 00000000000..071b498d39b --- /dev/null +++ b/public/emoji/1f54c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f54d.svg b/public/emoji/1f54d.svg new file mode 100644 index 00000000000..e3348550707 --- /dev/null +++ b/public/emoji/1f54d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f54e.svg b/public/emoji/1f54e.svg new file mode 100644 index 00000000000..82e1ca33856 --- /dev/null +++ b/public/emoji/1f54e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f550.svg b/public/emoji/1f550.svg new file mode 100644 index 00000000000..bd5bb075bd8 --- /dev/null +++ b/public/emoji/1f550.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f551.svg b/public/emoji/1f551.svg new file mode 100644 index 00000000000..2e551771202 --- /dev/null +++ b/public/emoji/1f551.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f552.svg b/public/emoji/1f552.svg new file mode 100644 index 00000000000..834d2ddc5bb --- /dev/null +++ b/public/emoji/1f552.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f553.svg b/public/emoji/1f553.svg new file mode 100644 index 00000000000..9f67b695812 --- /dev/null +++ b/public/emoji/1f553.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f554.svg b/public/emoji/1f554.svg new file mode 100644 index 00000000000..073f85721ae --- /dev/null +++ b/public/emoji/1f554.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f555.svg b/public/emoji/1f555.svg new file mode 100644 index 00000000000..0fc34642b94 --- /dev/null +++ b/public/emoji/1f555.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f556.svg b/public/emoji/1f556.svg new file mode 100644 index 00000000000..52891906725 --- /dev/null +++ b/public/emoji/1f556.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f557.svg b/public/emoji/1f557.svg new file mode 100644 index 00000000000..f5bc3aff5ae --- /dev/null +++ b/public/emoji/1f557.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f558.svg b/public/emoji/1f558.svg new file mode 100644 index 00000000000..7e4eda38658 --- /dev/null +++ b/public/emoji/1f558.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f559.svg b/public/emoji/1f559.svg new file mode 100644 index 00000000000..21e380e6259 --- /dev/null +++ b/public/emoji/1f559.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f55a.svg b/public/emoji/1f55a.svg new file mode 100644 index 00000000000..6d7a3531c8a --- /dev/null +++ b/public/emoji/1f55a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f55b.svg b/public/emoji/1f55b.svg new file mode 100644 index 00000000000..1381b3bc679 --- /dev/null +++ b/public/emoji/1f55b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f55c.svg b/public/emoji/1f55c.svg new file mode 100644 index 00000000000..9972f542ddb --- /dev/null +++ b/public/emoji/1f55c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f55d.svg b/public/emoji/1f55d.svg new file mode 100644 index 00000000000..86f24116ec6 --- /dev/null +++ b/public/emoji/1f55d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f55e.svg b/public/emoji/1f55e.svg new file mode 100644 index 00000000000..da977996848 --- /dev/null +++ b/public/emoji/1f55e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f55f.svg b/public/emoji/1f55f.svg new file mode 100644 index 00000000000..8185d206be6 --- /dev/null +++ b/public/emoji/1f55f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f560.svg b/public/emoji/1f560.svg new file mode 100644 index 00000000000..54ef72628be --- /dev/null +++ b/public/emoji/1f560.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f561.svg b/public/emoji/1f561.svg new file mode 100644 index 00000000000..fea0cde9510 --- /dev/null +++ b/public/emoji/1f561.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f562.svg b/public/emoji/1f562.svg new file mode 100644 index 00000000000..5cf968fb8c4 --- /dev/null +++ b/public/emoji/1f562.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f563.svg b/public/emoji/1f563.svg new file mode 100644 index 00000000000..ce973153f5c --- /dev/null +++ b/public/emoji/1f563.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f564.svg b/public/emoji/1f564.svg new file mode 100644 index 00000000000..d7d214fa1ca --- /dev/null +++ b/public/emoji/1f564.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f565.svg b/public/emoji/1f565.svg new file mode 100644 index 00000000000..d7d8b48d141 --- /dev/null +++ b/public/emoji/1f565.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f566.svg b/public/emoji/1f566.svg new file mode 100644 index 00000000000..77030c048a2 --- /dev/null +++ b/public/emoji/1f566.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f567.svg b/public/emoji/1f567.svg new file mode 100644 index 00000000000..02e81326a35 --- /dev/null +++ b/public/emoji/1f567.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f56f.svg b/public/emoji/1f56f.svg new file mode 100644 index 00000000000..af4c60634a2 --- /dev/null +++ b/public/emoji/1f56f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f570.svg b/public/emoji/1f570.svg new file mode 100644 index 00000000000..c2808cbacc5 --- /dev/null +++ b/public/emoji/1f570.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f573.svg b/public/emoji/1f573.svg new file mode 100644 index 00000000000..4ccc4369f4a --- /dev/null +++ b/public/emoji/1f573.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f574.svg b/public/emoji/1f574.svg new file mode 100644 index 00000000000..cfaf2a78964 --- /dev/null +++ b/public/emoji/1f574.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f575-1f3fb.svg b/public/emoji/1f575-1f3fb.svg new file mode 100644 index 00000000000..9e0d53872e6 --- /dev/null +++ b/public/emoji/1f575-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f575-1f3fc.svg b/public/emoji/1f575-1f3fc.svg new file mode 100644 index 00000000000..1eb13a65ecc --- /dev/null +++ b/public/emoji/1f575-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f575-1f3fd.svg b/public/emoji/1f575-1f3fd.svg new file mode 100644 index 00000000000..6eaa233c32d --- /dev/null +++ b/public/emoji/1f575-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f575-1f3fe.svg b/public/emoji/1f575-1f3fe.svg new file mode 100644 index 00000000000..f3f11e430fa --- /dev/null +++ b/public/emoji/1f575-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f575-1f3ff.svg b/public/emoji/1f575-1f3ff.svg new file mode 100644 index 00000000000..5fc55754695 --- /dev/null +++ b/public/emoji/1f575-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f575.svg b/public/emoji/1f575.svg new file mode 100644 index 00000000000..9612edafbcb --- /dev/null +++ b/public/emoji/1f575.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f576.svg b/public/emoji/1f576.svg new file mode 100644 index 00000000000..3f1075ec432 --- /dev/null +++ b/public/emoji/1f576.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f577.svg b/public/emoji/1f577.svg new file mode 100644 index 00000000000..21bb0890135 --- /dev/null +++ b/public/emoji/1f577.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f578.svg b/public/emoji/1f578.svg new file mode 100644 index 00000000000..8a5a4195923 --- /dev/null +++ b/public/emoji/1f578.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f579.svg b/public/emoji/1f579.svg new file mode 100644 index 00000000000..b2e6440130c --- /dev/null +++ b/public/emoji/1f579.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f57a-1f3fb.svg b/public/emoji/1f57a-1f3fb.svg new file mode 100644 index 00000000000..fc47b48f688 --- /dev/null +++ b/public/emoji/1f57a-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f57a-1f3fc.svg b/public/emoji/1f57a-1f3fc.svg new file mode 100644 index 00000000000..289dcb68af7 --- /dev/null +++ b/public/emoji/1f57a-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f57a-1f3fd.svg b/public/emoji/1f57a-1f3fd.svg new file mode 100644 index 00000000000..0356c2ac96a --- /dev/null +++ b/public/emoji/1f57a-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f57a-1f3fe.svg b/public/emoji/1f57a-1f3fe.svg new file mode 100644 index 00000000000..70bb51fb95f --- /dev/null +++ b/public/emoji/1f57a-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f57a-1f3ff.svg b/public/emoji/1f57a-1f3ff.svg new file mode 100644 index 00000000000..61633d21d7d --- /dev/null +++ b/public/emoji/1f57a-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f57a.svg b/public/emoji/1f57a.svg new file mode 100644 index 00000000000..11d2247c7de --- /dev/null +++ b/public/emoji/1f57a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f587.svg b/public/emoji/1f587.svg new file mode 100644 index 00000000000..b2dafc18b59 --- /dev/null +++ b/public/emoji/1f587.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f58a.svg b/public/emoji/1f58a.svg new file mode 100644 index 00000000000..1b61284ce00 --- /dev/null +++ b/public/emoji/1f58a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f58b.svg b/public/emoji/1f58b.svg new file mode 100644 index 00000000000..a15d1aa50ee --- /dev/null +++ b/public/emoji/1f58b.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f58c.svg b/public/emoji/1f58c.svg new file mode 100644 index 00000000000..25a69166012 --- /dev/null +++ b/public/emoji/1f58c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f58d.svg b/public/emoji/1f58d.svg new file mode 100644 index 00000000000..5a76528b55d --- /dev/null +++ b/public/emoji/1f58d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f590-1f3fb.svg b/public/emoji/1f590-1f3fb.svg new file mode 100644 index 00000000000..5154c0bb03d --- /dev/null +++ b/public/emoji/1f590-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f590-1f3fc.svg b/public/emoji/1f590-1f3fc.svg new file mode 100644 index 00000000000..00e624a29e0 --- /dev/null +++ b/public/emoji/1f590-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f590-1f3fd.svg b/public/emoji/1f590-1f3fd.svg new file mode 100644 index 00000000000..79c96440897 --- /dev/null +++ b/public/emoji/1f590-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f590-1f3fe.svg b/public/emoji/1f590-1f3fe.svg new file mode 100644 index 00000000000..1e01c773baa --- /dev/null +++ b/public/emoji/1f590-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f590-1f3ff.svg b/public/emoji/1f590-1f3ff.svg new file mode 100644 index 00000000000..feae919776d --- /dev/null +++ b/public/emoji/1f590-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f590.svg b/public/emoji/1f590.svg new file mode 100644 index 00000000000..daefb13e626 --- /dev/null +++ b/public/emoji/1f590.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f595-1f3fb.svg b/public/emoji/1f595-1f3fb.svg new file mode 100644 index 00000000000..74a6b8c4017 --- /dev/null +++ b/public/emoji/1f595-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f595-1f3fc.svg b/public/emoji/1f595-1f3fc.svg new file mode 100644 index 00000000000..57bccaa7898 --- /dev/null +++ b/public/emoji/1f595-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f595-1f3fd.svg b/public/emoji/1f595-1f3fd.svg new file mode 100644 index 00000000000..8ae95508b38 --- /dev/null +++ b/public/emoji/1f595-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f595-1f3fe.svg b/public/emoji/1f595-1f3fe.svg new file mode 100644 index 00000000000..b571c155329 --- /dev/null +++ b/public/emoji/1f595-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f595-1f3ff.svg b/public/emoji/1f595-1f3ff.svg new file mode 100644 index 00000000000..63062da9a47 --- /dev/null +++ b/public/emoji/1f595-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f595.svg b/public/emoji/1f595.svg new file mode 100644 index 00000000000..a4247910c95 --- /dev/null +++ b/public/emoji/1f595.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f596-1f3fb.svg b/public/emoji/1f596-1f3fb.svg new file mode 100644 index 00000000000..73de3c32db1 --- /dev/null +++ b/public/emoji/1f596-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f596-1f3fc.svg b/public/emoji/1f596-1f3fc.svg new file mode 100644 index 00000000000..acd4f53b640 --- /dev/null +++ b/public/emoji/1f596-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f596-1f3fd.svg b/public/emoji/1f596-1f3fd.svg new file mode 100644 index 00000000000..ab308598efd --- /dev/null +++ b/public/emoji/1f596-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f596-1f3fe.svg b/public/emoji/1f596-1f3fe.svg new file mode 100644 index 00000000000..6104d999dfd --- /dev/null +++ b/public/emoji/1f596-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f596-1f3ff.svg b/public/emoji/1f596-1f3ff.svg new file mode 100644 index 00000000000..e936d88aaa7 --- /dev/null +++ b/public/emoji/1f596-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f596.svg b/public/emoji/1f596.svg new file mode 100644 index 00000000000..b2fb218f741 --- /dev/null +++ b/public/emoji/1f596.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5a4.svg b/public/emoji/1f5a4.svg new file mode 100644 index 00000000000..5cedc5fb2f7 --- /dev/null +++ b/public/emoji/1f5a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5a5.svg b/public/emoji/1f5a5.svg new file mode 100644 index 00000000000..852287cf99a --- /dev/null +++ b/public/emoji/1f5a5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5a8.svg b/public/emoji/1f5a8.svg new file mode 100644 index 00000000000..4eb491f2e32 --- /dev/null +++ b/public/emoji/1f5a8.svg @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/public/emoji/1f5b1.svg b/public/emoji/1f5b1.svg new file mode 100644 index 00000000000..ed83ffe0fa3 --- /dev/null +++ b/public/emoji/1f5b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5b2.svg b/public/emoji/1f5b2.svg new file mode 100644 index 00000000000..35468b2c8d3 --- /dev/null +++ b/public/emoji/1f5b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5bc.svg b/public/emoji/1f5bc.svg new file mode 100644 index 00000000000..a0f89d0d62c --- /dev/null +++ b/public/emoji/1f5bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5c2.svg b/public/emoji/1f5c2.svg new file mode 100644 index 00000000000..d2046e806fd --- /dev/null +++ b/public/emoji/1f5c2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5c3.svg b/public/emoji/1f5c3.svg new file mode 100644 index 00000000000..4ab8e1b1cf0 --- /dev/null +++ b/public/emoji/1f5c3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5c4.svg b/public/emoji/1f5c4.svg new file mode 100644 index 00000000000..e27bdf1b3d3 --- /dev/null +++ b/public/emoji/1f5c4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5d1.svg b/public/emoji/1f5d1.svg new file mode 100644 index 00000000000..a83f728e25d --- /dev/null +++ b/public/emoji/1f5d1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5d2.svg b/public/emoji/1f5d2.svg new file mode 100644 index 00000000000..edfd8d0e63d --- /dev/null +++ b/public/emoji/1f5d2.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f5d3.svg b/public/emoji/1f5d3.svg new file mode 100644 index 00000000000..abe8a941037 --- /dev/null +++ b/public/emoji/1f5d3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5dc.svg b/public/emoji/1f5dc.svg new file mode 100644 index 00000000000..7d7fcab04f8 --- /dev/null +++ b/public/emoji/1f5dc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5dd.svg b/public/emoji/1f5dd.svg new file mode 100644 index 00000000000..9bbf4f2acdd --- /dev/null +++ b/public/emoji/1f5dd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5de.svg b/public/emoji/1f5de.svg new file mode 100644 index 00000000000..fc378863367 --- /dev/null +++ b/public/emoji/1f5de.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5e1.svg b/public/emoji/1f5e1.svg new file mode 100644 index 00000000000..8802fe08c1e --- /dev/null +++ b/public/emoji/1f5e1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5e3.svg b/public/emoji/1f5e3.svg new file mode 100644 index 00000000000..9ba8a6ca6a9 --- /dev/null +++ b/public/emoji/1f5e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5e8.svg b/public/emoji/1f5e8.svg new file mode 100644 index 00000000000..b8c77e41150 --- /dev/null +++ b/public/emoji/1f5e8.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f5ef.svg b/public/emoji/1f5ef.svg new file mode 100644 index 00000000000..ed829009882 --- /dev/null +++ b/public/emoji/1f5ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5f3.svg b/public/emoji/1f5f3.svg new file mode 100644 index 00000000000..c0cfc830742 --- /dev/null +++ b/public/emoji/1f5f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5fa.svg b/public/emoji/1f5fa.svg new file mode 100644 index 00000000000..182a68f7f54 --- /dev/null +++ b/public/emoji/1f5fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5fb.svg b/public/emoji/1f5fb.svg new file mode 100644 index 00000000000..17545f8cc30 --- /dev/null +++ b/public/emoji/1f5fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5fc.svg b/public/emoji/1f5fc.svg new file mode 100644 index 00000000000..cb64daa5f24 --- /dev/null +++ b/public/emoji/1f5fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5fd.svg b/public/emoji/1f5fd.svg new file mode 100644 index 00000000000..fc4d8345960 --- /dev/null +++ b/public/emoji/1f5fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5fe.svg b/public/emoji/1f5fe.svg new file mode 100644 index 00000000000..2b86ffcad1b --- /dev/null +++ b/public/emoji/1f5fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5ff.svg b/public/emoji/1f5ff.svg new file mode 100644 index 00000000000..3b6c02afd59 --- /dev/null +++ b/public/emoji/1f5ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f600.svg b/public/emoji/1f600.svg new file mode 100644 index 00000000000..33a476929cd --- /dev/null +++ b/public/emoji/1f600.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f601.svg b/public/emoji/1f601.svg new file mode 100644 index 00000000000..e3939db53ce --- /dev/null +++ b/public/emoji/1f601.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f602.svg b/public/emoji/1f602.svg new file mode 100644 index 00000000000..ad3522a9d6a --- /dev/null +++ b/public/emoji/1f602.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f603.svg b/public/emoji/1f603.svg new file mode 100644 index 00000000000..a526b1541bc --- /dev/null +++ b/public/emoji/1f603.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f604.svg b/public/emoji/1f604.svg new file mode 100644 index 00000000000..9d3a8409e1d --- /dev/null +++ b/public/emoji/1f604.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f605.svg b/public/emoji/1f605.svg new file mode 100644 index 00000000000..da208754522 --- /dev/null +++ b/public/emoji/1f605.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f606.svg b/public/emoji/1f606.svg new file mode 100644 index 00000000000..a16e007eb48 --- /dev/null +++ b/public/emoji/1f606.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f607.svg b/public/emoji/1f607.svg new file mode 100644 index 00000000000..7109c837122 --- /dev/null +++ b/public/emoji/1f607.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f608.svg b/public/emoji/1f608.svg new file mode 100644 index 00000000000..bdf4236168e --- /dev/null +++ b/public/emoji/1f608.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f609.svg b/public/emoji/1f609.svg new file mode 100644 index 00000000000..2e4509e57ea --- /dev/null +++ b/public/emoji/1f609.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f60a.svg b/public/emoji/1f60a.svg new file mode 100644 index 00000000000..797c06386d8 --- /dev/null +++ b/public/emoji/1f60a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f60b.svg b/public/emoji/1f60b.svg new file mode 100644 index 00000000000..932ca7d7ce5 --- /dev/null +++ b/public/emoji/1f60b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f60c.svg b/public/emoji/1f60c.svg new file mode 100644 index 00000000000..4af17f14409 --- /dev/null +++ b/public/emoji/1f60c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f60d.svg b/public/emoji/1f60d.svg new file mode 100644 index 00000000000..4237d7e3f61 --- /dev/null +++ b/public/emoji/1f60d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f60e.svg b/public/emoji/1f60e.svg new file mode 100644 index 00000000000..945ae68db65 --- /dev/null +++ b/public/emoji/1f60e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f60f.svg b/public/emoji/1f60f.svg new file mode 100644 index 00000000000..68a3db63b78 --- /dev/null +++ b/public/emoji/1f60f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f610.svg b/public/emoji/1f610.svg new file mode 100644 index 00000000000..23a11f7c55e --- /dev/null +++ b/public/emoji/1f610.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f611.svg b/public/emoji/1f611.svg new file mode 100644 index 00000000000..7938d2c1d85 --- /dev/null +++ b/public/emoji/1f611.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f612.svg b/public/emoji/1f612.svg new file mode 100644 index 00000000000..e557627484c --- /dev/null +++ b/public/emoji/1f612.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f613.svg b/public/emoji/1f613.svg new file mode 100644 index 00000000000..607726762c3 --- /dev/null +++ b/public/emoji/1f613.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f614.svg b/public/emoji/1f614.svg new file mode 100644 index 00000000000..28de02f2482 --- /dev/null +++ b/public/emoji/1f614.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f615.svg b/public/emoji/1f615.svg new file mode 100644 index 00000000000..534330c3b24 --- /dev/null +++ b/public/emoji/1f615.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f616.svg b/public/emoji/1f616.svg new file mode 100644 index 00000000000..5f038264f7a --- /dev/null +++ b/public/emoji/1f616.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f617.svg b/public/emoji/1f617.svg new file mode 100644 index 00000000000..be878012b8c --- /dev/null +++ b/public/emoji/1f617.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f618.svg b/public/emoji/1f618.svg new file mode 100644 index 00000000000..983b37b47e5 --- /dev/null +++ b/public/emoji/1f618.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f619.svg b/public/emoji/1f619.svg new file mode 100644 index 00000000000..1ac00e32f91 --- /dev/null +++ b/public/emoji/1f619.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f61a.svg b/public/emoji/1f61a.svg new file mode 100644 index 00000000000..7a3cf76044f --- /dev/null +++ b/public/emoji/1f61a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f61b.svg b/public/emoji/1f61b.svg new file mode 100644 index 00000000000..ccef634ecb4 --- /dev/null +++ b/public/emoji/1f61b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f61c.svg b/public/emoji/1f61c.svg new file mode 100644 index 00000000000..413c3d2a8cb --- /dev/null +++ b/public/emoji/1f61c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f61d.svg b/public/emoji/1f61d.svg new file mode 100644 index 00000000000..5157da93772 --- /dev/null +++ b/public/emoji/1f61d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f61e.svg b/public/emoji/1f61e.svg new file mode 100644 index 00000000000..143c2f43194 --- /dev/null +++ b/public/emoji/1f61e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f61f.svg b/public/emoji/1f61f.svg new file mode 100644 index 00000000000..a1eec054ec9 --- /dev/null +++ b/public/emoji/1f61f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f620.svg b/public/emoji/1f620.svg new file mode 100644 index 00000000000..a32acbcdd07 --- /dev/null +++ b/public/emoji/1f620.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f621.svg b/public/emoji/1f621.svg new file mode 100644 index 00000000000..f7c72270fae --- /dev/null +++ b/public/emoji/1f621.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f622.svg b/public/emoji/1f622.svg new file mode 100644 index 00000000000..e39209c80e0 --- /dev/null +++ b/public/emoji/1f622.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f623.svg b/public/emoji/1f623.svg new file mode 100644 index 00000000000..94826839a80 --- /dev/null +++ b/public/emoji/1f623.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f624.svg b/public/emoji/1f624.svg new file mode 100644 index 00000000000..fe5de95fc9e --- /dev/null +++ b/public/emoji/1f624.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f625.svg b/public/emoji/1f625.svg new file mode 100644 index 00000000000..c52759e691b --- /dev/null +++ b/public/emoji/1f625.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f626.svg b/public/emoji/1f626.svg new file mode 100644 index 00000000000..c037c085a45 --- /dev/null +++ b/public/emoji/1f626.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f627.svg b/public/emoji/1f627.svg new file mode 100644 index 00000000000..b97c18b3aa2 --- /dev/null +++ b/public/emoji/1f627.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f628.svg b/public/emoji/1f628.svg new file mode 100644 index 00000000000..38cfe0bb285 --- /dev/null +++ b/public/emoji/1f628.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f629.svg b/public/emoji/1f629.svg new file mode 100644 index 00000000000..248da5b2e07 --- /dev/null +++ b/public/emoji/1f629.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f62a.svg b/public/emoji/1f62a.svg new file mode 100644 index 00000000000..d2dd9f7b430 --- /dev/null +++ b/public/emoji/1f62a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f62b.svg b/public/emoji/1f62b.svg new file mode 100644 index 00000000000..3ba1a6c02f0 --- /dev/null +++ b/public/emoji/1f62b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f62c.svg b/public/emoji/1f62c.svg new file mode 100644 index 00000000000..75c5b7dcb42 --- /dev/null +++ b/public/emoji/1f62c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f62d.svg b/public/emoji/1f62d.svg new file mode 100644 index 00000000000..0fb4ba9bd63 --- /dev/null +++ b/public/emoji/1f62d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f62e.svg b/public/emoji/1f62e.svg new file mode 100644 index 00000000000..855b53c66c7 --- /dev/null +++ b/public/emoji/1f62e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f62f.svg b/public/emoji/1f62f.svg new file mode 100644 index 00000000000..d9b0801f72b --- /dev/null +++ b/public/emoji/1f62f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f630.svg b/public/emoji/1f630.svg new file mode 100644 index 00000000000..9ae7444e71e --- /dev/null +++ b/public/emoji/1f630.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f631.svg b/public/emoji/1f631.svg new file mode 100644 index 00000000000..686c9835554 --- /dev/null +++ b/public/emoji/1f631.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f632.svg b/public/emoji/1f632.svg new file mode 100644 index 00000000000..703ddf123d0 --- /dev/null +++ b/public/emoji/1f632.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f633.svg b/public/emoji/1f633.svg new file mode 100644 index 00000000000..8be56d39a9a --- /dev/null +++ b/public/emoji/1f633.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f634.svg b/public/emoji/1f634.svg new file mode 100644 index 00000000000..41beef906ae --- /dev/null +++ b/public/emoji/1f634.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f635.svg b/public/emoji/1f635.svg new file mode 100644 index 00000000000..6556452471d --- /dev/null +++ b/public/emoji/1f635.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f636.svg b/public/emoji/1f636.svg new file mode 100644 index 00000000000..9ad70bc5170 --- /dev/null +++ b/public/emoji/1f636.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f637.svg b/public/emoji/1f637.svg new file mode 100644 index 00000000000..2fcc6b50f83 --- /dev/null +++ b/public/emoji/1f637.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f638.svg b/public/emoji/1f638.svg new file mode 100644 index 00000000000..6e8aa84356a --- /dev/null +++ b/public/emoji/1f638.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f639.svg b/public/emoji/1f639.svg new file mode 100644 index 00000000000..1eb62f35c7f --- /dev/null +++ b/public/emoji/1f639.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f63a.svg b/public/emoji/1f63a.svg new file mode 100644 index 00000000000..c708d746e0b --- /dev/null +++ b/public/emoji/1f63a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f63b.svg b/public/emoji/1f63b.svg new file mode 100644 index 00000000000..b7388254b87 --- /dev/null +++ b/public/emoji/1f63b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f63c.svg b/public/emoji/1f63c.svg new file mode 100644 index 00000000000..7cebf3d67c2 --- /dev/null +++ b/public/emoji/1f63c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f63d.svg b/public/emoji/1f63d.svg new file mode 100644 index 00000000000..8d029f96051 --- /dev/null +++ b/public/emoji/1f63d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f63e.svg b/public/emoji/1f63e.svg new file mode 100644 index 00000000000..aa7be0f6440 --- /dev/null +++ b/public/emoji/1f63e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f63f.svg b/public/emoji/1f63f.svg new file mode 100644 index 00000000000..5b17e952381 --- /dev/null +++ b/public/emoji/1f63f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f640.svg b/public/emoji/1f640.svg new file mode 100644 index 00000000000..5c1c25786af --- /dev/null +++ b/public/emoji/1f640.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f641.svg b/public/emoji/1f641.svg new file mode 100644 index 00000000000..aeb3b4f24f8 --- /dev/null +++ b/public/emoji/1f641.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f642.svg b/public/emoji/1f642.svg new file mode 100644 index 00000000000..753ef7c23f8 --- /dev/null +++ b/public/emoji/1f642.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f643.svg b/public/emoji/1f643.svg new file mode 100644 index 00000000000..bdb24a7e518 --- /dev/null +++ b/public/emoji/1f643.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f644.svg b/public/emoji/1f644.svg new file mode 100644 index 00000000000..dcb222cefb3 --- /dev/null +++ b/public/emoji/1f644.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f645-1f3fb.svg b/public/emoji/1f645-1f3fb.svg new file mode 100644 index 00000000000..ac2255ef78f --- /dev/null +++ b/public/emoji/1f645-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f645-1f3fc.svg b/public/emoji/1f645-1f3fc.svg new file mode 100644 index 00000000000..621160c36db --- /dev/null +++ b/public/emoji/1f645-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f645-1f3fd.svg b/public/emoji/1f645-1f3fd.svg new file mode 100644 index 00000000000..446067544ef --- /dev/null +++ b/public/emoji/1f645-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f645-1f3fe.svg b/public/emoji/1f645-1f3fe.svg new file mode 100644 index 00000000000..2a99eabc2eb --- /dev/null +++ b/public/emoji/1f645-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f645-1f3ff.svg b/public/emoji/1f645-1f3ff.svg new file mode 100644 index 00000000000..b32480b4a1d --- /dev/null +++ b/public/emoji/1f645-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f645.svg b/public/emoji/1f645.svg new file mode 100644 index 00000000000..d735d25d781 --- /dev/null +++ b/public/emoji/1f645.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f646-1f3fb.svg b/public/emoji/1f646-1f3fb.svg new file mode 100644 index 00000000000..b8d8dfddb7b --- /dev/null +++ b/public/emoji/1f646-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f646-1f3fc.svg b/public/emoji/1f646-1f3fc.svg new file mode 100644 index 00000000000..f16fa5a953e --- /dev/null +++ b/public/emoji/1f646-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f646-1f3fd.svg b/public/emoji/1f646-1f3fd.svg new file mode 100644 index 00000000000..9bc563c6b58 --- /dev/null +++ b/public/emoji/1f646-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f646-1f3fe.svg b/public/emoji/1f646-1f3fe.svg new file mode 100644 index 00000000000..5392c737534 --- /dev/null +++ b/public/emoji/1f646-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f646-1f3ff.svg b/public/emoji/1f646-1f3ff.svg new file mode 100644 index 00000000000..6a43d0b1a5e --- /dev/null +++ b/public/emoji/1f646-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f646.svg b/public/emoji/1f646.svg new file mode 100644 index 00000000000..8a9a9648e4b --- /dev/null +++ b/public/emoji/1f646.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f647-1f3fb.svg b/public/emoji/1f647-1f3fb.svg new file mode 100644 index 00000000000..bce8d4babdc --- /dev/null +++ b/public/emoji/1f647-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f647-1f3fc.svg b/public/emoji/1f647-1f3fc.svg new file mode 100644 index 00000000000..c492d09783f --- /dev/null +++ b/public/emoji/1f647-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f647-1f3fd.svg b/public/emoji/1f647-1f3fd.svg new file mode 100644 index 00000000000..e615034036f --- /dev/null +++ b/public/emoji/1f647-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f647-1f3fe.svg b/public/emoji/1f647-1f3fe.svg new file mode 100644 index 00000000000..090651faac9 --- /dev/null +++ b/public/emoji/1f647-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f647-1f3ff.svg b/public/emoji/1f647-1f3ff.svg new file mode 100644 index 00000000000..f726d47a806 --- /dev/null +++ b/public/emoji/1f647-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f647.svg b/public/emoji/1f647.svg new file mode 100644 index 00000000000..e5dedddd30a --- /dev/null +++ b/public/emoji/1f647.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f648.svg b/public/emoji/1f648.svg new file mode 100644 index 00000000000..b8b51161e4e --- /dev/null +++ b/public/emoji/1f648.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f649.svg b/public/emoji/1f649.svg new file mode 100644 index 00000000000..ab6b6844c80 --- /dev/null +++ b/public/emoji/1f649.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64a.svg b/public/emoji/1f64a.svg new file mode 100644 index 00000000000..47df40a8c86 --- /dev/null +++ b/public/emoji/1f64a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64b-1f3fb.svg b/public/emoji/1f64b-1f3fb.svg new file mode 100644 index 00000000000..e9e7e3b3af2 --- /dev/null +++ b/public/emoji/1f64b-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64b-1f3fc.svg b/public/emoji/1f64b-1f3fc.svg new file mode 100644 index 00000000000..9e6ac9c2ca1 --- /dev/null +++ b/public/emoji/1f64b-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64b-1f3fd.svg b/public/emoji/1f64b-1f3fd.svg new file mode 100644 index 00000000000..d4e4a75f81b --- /dev/null +++ b/public/emoji/1f64b-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64b-1f3fe.svg b/public/emoji/1f64b-1f3fe.svg new file mode 100644 index 00000000000..39a11500087 --- /dev/null +++ b/public/emoji/1f64b-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64b-1f3ff.svg b/public/emoji/1f64b-1f3ff.svg new file mode 100644 index 00000000000..f8cb017efde --- /dev/null +++ b/public/emoji/1f64b-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64b.svg b/public/emoji/1f64b.svg new file mode 100644 index 00000000000..d221b1846d0 --- /dev/null +++ b/public/emoji/1f64b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64c-1f3fb.svg b/public/emoji/1f64c-1f3fb.svg new file mode 100644 index 00000000000..2bec077d903 --- /dev/null +++ b/public/emoji/1f64c-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64c-1f3fc.svg b/public/emoji/1f64c-1f3fc.svg new file mode 100644 index 00000000000..f90b8825c17 --- /dev/null +++ b/public/emoji/1f64c-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64c-1f3fd.svg b/public/emoji/1f64c-1f3fd.svg new file mode 100644 index 00000000000..0b0ed18ce43 --- /dev/null +++ b/public/emoji/1f64c-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64c-1f3fe.svg b/public/emoji/1f64c-1f3fe.svg new file mode 100644 index 00000000000..413708003b0 --- /dev/null +++ b/public/emoji/1f64c-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64c-1f3ff.svg b/public/emoji/1f64c-1f3ff.svg new file mode 100644 index 00000000000..e13a1d7b3b9 --- /dev/null +++ b/public/emoji/1f64c-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64c.svg b/public/emoji/1f64c.svg new file mode 100644 index 00000000000..0f7f86cfd6f --- /dev/null +++ b/public/emoji/1f64c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64d-1f3fb.svg b/public/emoji/1f64d-1f3fb.svg new file mode 100644 index 00000000000..7a858ef2c84 --- /dev/null +++ b/public/emoji/1f64d-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64d-1f3fc.svg b/public/emoji/1f64d-1f3fc.svg new file mode 100644 index 00000000000..10458b13f4e --- /dev/null +++ b/public/emoji/1f64d-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64d-1f3fd.svg b/public/emoji/1f64d-1f3fd.svg new file mode 100644 index 00000000000..f9842d0e4c7 --- /dev/null +++ b/public/emoji/1f64d-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64d-1f3fe.svg b/public/emoji/1f64d-1f3fe.svg new file mode 100644 index 00000000000..57de38b9193 --- /dev/null +++ b/public/emoji/1f64d-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64d-1f3ff.svg b/public/emoji/1f64d-1f3ff.svg new file mode 100644 index 00000000000..64af62a9b60 --- /dev/null +++ b/public/emoji/1f64d-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64d.svg b/public/emoji/1f64d.svg new file mode 100644 index 00000000000..6309a63219a --- /dev/null +++ b/public/emoji/1f64d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64e-1f3fb.svg b/public/emoji/1f64e-1f3fb.svg new file mode 100644 index 00000000000..8d869fd6e42 --- /dev/null +++ b/public/emoji/1f64e-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64e-1f3fc.svg b/public/emoji/1f64e-1f3fc.svg new file mode 100644 index 00000000000..2dfd81c70d2 --- /dev/null +++ b/public/emoji/1f64e-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64e-1f3fd.svg b/public/emoji/1f64e-1f3fd.svg new file mode 100644 index 00000000000..7cf16e68134 --- /dev/null +++ b/public/emoji/1f64e-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64e-1f3fe.svg b/public/emoji/1f64e-1f3fe.svg new file mode 100644 index 00000000000..84d91ba6a4a --- /dev/null +++ b/public/emoji/1f64e-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64e-1f3ff.svg b/public/emoji/1f64e-1f3ff.svg new file mode 100644 index 00000000000..00882dd2faa --- /dev/null +++ b/public/emoji/1f64e-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64e.svg b/public/emoji/1f64e.svg new file mode 100644 index 00000000000..b23b54491b0 --- /dev/null +++ b/public/emoji/1f64e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64f-1f3fb.svg b/public/emoji/1f64f-1f3fb.svg new file mode 100644 index 00000000000..eddfe82f002 --- /dev/null +++ b/public/emoji/1f64f-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64f-1f3fc.svg b/public/emoji/1f64f-1f3fc.svg new file mode 100644 index 00000000000..05011796d33 --- /dev/null +++ b/public/emoji/1f64f-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64f-1f3fd.svg b/public/emoji/1f64f-1f3fd.svg new file mode 100644 index 00000000000..40c74cf9067 --- /dev/null +++ b/public/emoji/1f64f-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64f-1f3fe.svg b/public/emoji/1f64f-1f3fe.svg new file mode 100644 index 00000000000..1e8149f5201 --- /dev/null +++ b/public/emoji/1f64f-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64f-1f3ff.svg b/public/emoji/1f64f-1f3ff.svg new file mode 100644 index 00000000000..3c7a1b6cb93 --- /dev/null +++ b/public/emoji/1f64f-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64f.svg b/public/emoji/1f64f.svg new file mode 100644 index 00000000000..a6b0bca0480 --- /dev/null +++ b/public/emoji/1f64f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f680.svg b/public/emoji/1f680.svg new file mode 100644 index 00000000000..4ba418a05ad --- /dev/null +++ b/public/emoji/1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f681.svg b/public/emoji/1f681.svg new file mode 100644 index 00000000000..fa2ce38e449 --- /dev/null +++ b/public/emoji/1f681.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f682.svg b/public/emoji/1f682.svg new file mode 100644 index 00000000000..829f6e2aa2b --- /dev/null +++ b/public/emoji/1f682.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f683.svg b/public/emoji/1f683.svg new file mode 100644 index 00000000000..8042882656f --- /dev/null +++ b/public/emoji/1f683.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f684.svg b/public/emoji/1f684.svg new file mode 100644 index 00000000000..291c00a185b --- /dev/null +++ b/public/emoji/1f684.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f685.svg b/public/emoji/1f685.svg new file mode 100644 index 00000000000..e6e4a7a6ac0 --- /dev/null +++ b/public/emoji/1f685.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f686.svg b/public/emoji/1f686.svg new file mode 100644 index 00000000000..15d5e1ebbec --- /dev/null +++ b/public/emoji/1f686.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f687.svg b/public/emoji/1f687.svg new file mode 100644 index 00000000000..5f075abdaeb --- /dev/null +++ b/public/emoji/1f687.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f688.svg b/public/emoji/1f688.svg new file mode 100644 index 00000000000..f5fc3b02b4f --- /dev/null +++ b/public/emoji/1f688.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f689.svg b/public/emoji/1f689.svg new file mode 100644 index 00000000000..6c3953aa303 --- /dev/null +++ b/public/emoji/1f689.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f68a.svg b/public/emoji/1f68a.svg new file mode 100644 index 00000000000..e98a079b011 --- /dev/null +++ b/public/emoji/1f68a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f68b.svg b/public/emoji/1f68b.svg new file mode 100644 index 00000000000..8c64b51112a --- /dev/null +++ b/public/emoji/1f68b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f68c.svg b/public/emoji/1f68c.svg new file mode 100644 index 00000000000..99862d51161 --- /dev/null +++ b/public/emoji/1f68c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f68d.svg b/public/emoji/1f68d.svg new file mode 100644 index 00000000000..d2d2f59c747 --- /dev/null +++ b/public/emoji/1f68d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f68e.svg b/public/emoji/1f68e.svg new file mode 100644 index 00000000000..ec3e927f81c --- /dev/null +++ b/public/emoji/1f68e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f68f.svg b/public/emoji/1f68f.svg new file mode 100644 index 00000000000..3e9cb1d116c --- /dev/null +++ b/public/emoji/1f68f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f690.svg b/public/emoji/1f690.svg new file mode 100644 index 00000000000..5357258cc36 --- /dev/null +++ b/public/emoji/1f690.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f691.svg b/public/emoji/1f691.svg new file mode 100644 index 00000000000..2bcbcffa609 --- /dev/null +++ b/public/emoji/1f691.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f692.svg b/public/emoji/1f692.svg new file mode 100644 index 00000000000..d82b2548336 --- /dev/null +++ b/public/emoji/1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f693.svg b/public/emoji/1f693.svg new file mode 100644 index 00000000000..7964668dffd --- /dev/null +++ b/public/emoji/1f693.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f694.svg b/public/emoji/1f694.svg new file mode 100644 index 00000000000..680a0975959 --- /dev/null +++ b/public/emoji/1f694.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f695.svg b/public/emoji/1f695.svg new file mode 100644 index 00000000000..c6bdad8ba9d --- /dev/null +++ b/public/emoji/1f695.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f696.svg b/public/emoji/1f696.svg new file mode 100644 index 00000000000..6a02e812fd0 --- /dev/null +++ b/public/emoji/1f696.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f697.svg b/public/emoji/1f697.svg new file mode 100644 index 00000000000..da85c344d29 --- /dev/null +++ b/public/emoji/1f697.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f698.svg b/public/emoji/1f698.svg new file mode 100644 index 00000000000..cd0a8881ad5 --- /dev/null +++ b/public/emoji/1f698.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f699.svg b/public/emoji/1f699.svg new file mode 100644 index 00000000000..12d1b6d10db --- /dev/null +++ b/public/emoji/1f699.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f69a.svg b/public/emoji/1f69a.svg new file mode 100644 index 00000000000..c543e986251 --- /dev/null +++ b/public/emoji/1f69a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f69b.svg b/public/emoji/1f69b.svg new file mode 100644 index 00000000000..5f0fbc1ca64 --- /dev/null +++ b/public/emoji/1f69b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f69c.svg b/public/emoji/1f69c.svg new file mode 100644 index 00000000000..794c2d369e7 --- /dev/null +++ b/public/emoji/1f69c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f69d.svg b/public/emoji/1f69d.svg new file mode 100644 index 00000000000..4244515a240 --- /dev/null +++ b/public/emoji/1f69d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f69e.svg b/public/emoji/1f69e.svg new file mode 100644 index 00000000000..2bbbd3a0205 --- /dev/null +++ b/public/emoji/1f69e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f69f.svg b/public/emoji/1f69f.svg new file mode 100644 index 00000000000..9f1974860fb --- /dev/null +++ b/public/emoji/1f69f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a0.svg b/public/emoji/1f6a0.svg new file mode 100644 index 00000000000..e8eb108975f --- /dev/null +++ b/public/emoji/1f6a0.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a1.svg b/public/emoji/1f6a1.svg new file mode 100644 index 00000000000..84de8fddf05 --- /dev/null +++ b/public/emoji/1f6a1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a2.svg b/public/emoji/1f6a2.svg new file mode 100644 index 00000000000..032a22c98f9 --- /dev/null +++ b/public/emoji/1f6a2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a3-1f3fb.svg b/public/emoji/1f6a3-1f3fb.svg new file mode 100644 index 00000000000..a97ed61b216 --- /dev/null +++ b/public/emoji/1f6a3-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a3-1f3fc.svg b/public/emoji/1f6a3-1f3fc.svg new file mode 100644 index 00000000000..4579d7f9980 --- /dev/null +++ b/public/emoji/1f6a3-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a3-1f3fd.svg b/public/emoji/1f6a3-1f3fd.svg new file mode 100644 index 00000000000..30f40ace808 --- /dev/null +++ b/public/emoji/1f6a3-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a3-1f3fe.svg b/public/emoji/1f6a3-1f3fe.svg new file mode 100644 index 00000000000..3b64992808e --- /dev/null +++ b/public/emoji/1f6a3-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a3-1f3ff.svg b/public/emoji/1f6a3-1f3ff.svg new file mode 100644 index 00000000000..57bd8c0febf --- /dev/null +++ b/public/emoji/1f6a3-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a3.svg b/public/emoji/1f6a3.svg new file mode 100644 index 00000000000..89eb387dc91 --- /dev/null +++ b/public/emoji/1f6a3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a4.svg b/public/emoji/1f6a4.svg new file mode 100644 index 00000000000..70aa1adc203 --- /dev/null +++ b/public/emoji/1f6a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a5.svg b/public/emoji/1f6a5.svg new file mode 100644 index 00000000000..30aa0d09233 --- /dev/null +++ b/public/emoji/1f6a5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a6.svg b/public/emoji/1f6a6.svg new file mode 100644 index 00000000000..7f6e697b409 --- /dev/null +++ b/public/emoji/1f6a6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a7.svg b/public/emoji/1f6a7.svg new file mode 100644 index 00000000000..c48a759c1e1 --- /dev/null +++ b/public/emoji/1f6a7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a8.svg b/public/emoji/1f6a8.svg new file mode 100644 index 00000000000..2a00519110e --- /dev/null +++ b/public/emoji/1f6a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a9.svg b/public/emoji/1f6a9.svg new file mode 100644 index 00000000000..d07347b59ae --- /dev/null +++ b/public/emoji/1f6a9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6aa.svg b/public/emoji/1f6aa.svg new file mode 100644 index 00000000000..ac7fa2f073b --- /dev/null +++ b/public/emoji/1f6aa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6ab.svg b/public/emoji/1f6ab.svg new file mode 100644 index 00000000000..1877e1d63de --- /dev/null +++ b/public/emoji/1f6ab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6ac.svg b/public/emoji/1f6ac.svg new file mode 100644 index 00000000000..2f44e929deb --- /dev/null +++ b/public/emoji/1f6ac.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6ad.svg b/public/emoji/1f6ad.svg new file mode 100644 index 00000000000..f02dd41b38e --- /dev/null +++ b/public/emoji/1f6ad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6ae.svg b/public/emoji/1f6ae.svg new file mode 100644 index 00000000000..54cbd381e15 --- /dev/null +++ b/public/emoji/1f6ae.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6af.svg b/public/emoji/1f6af.svg new file mode 100644 index 00000000000..bfc991b0787 --- /dev/null +++ b/public/emoji/1f6af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b0.svg b/public/emoji/1f6b0.svg new file mode 100644 index 00000000000..504d3cec073 --- /dev/null +++ b/public/emoji/1f6b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b1.svg b/public/emoji/1f6b1.svg new file mode 100644 index 00000000000..0eec893e11a --- /dev/null +++ b/public/emoji/1f6b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b2.svg b/public/emoji/1f6b2.svg new file mode 100644 index 00000000000..0a4447d6cd4 --- /dev/null +++ b/public/emoji/1f6b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b3.svg b/public/emoji/1f6b3.svg new file mode 100644 index 00000000000..320cc23716c --- /dev/null +++ b/public/emoji/1f6b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b4-1f3fb.svg b/public/emoji/1f6b4-1f3fb.svg new file mode 100644 index 00000000000..23c64dcb0f9 --- /dev/null +++ b/public/emoji/1f6b4-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b4-1f3fc.svg b/public/emoji/1f6b4-1f3fc.svg new file mode 100644 index 00000000000..3451fe9ba5e --- /dev/null +++ b/public/emoji/1f6b4-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b4-1f3fd.svg b/public/emoji/1f6b4-1f3fd.svg new file mode 100644 index 00000000000..a5b9598664b --- /dev/null +++ b/public/emoji/1f6b4-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b4-1f3fe.svg b/public/emoji/1f6b4-1f3fe.svg new file mode 100644 index 00000000000..1dcaae86218 --- /dev/null +++ b/public/emoji/1f6b4-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b4-1f3ff.svg b/public/emoji/1f6b4-1f3ff.svg new file mode 100644 index 00000000000..44fc622fed1 --- /dev/null +++ b/public/emoji/1f6b4-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b4.svg b/public/emoji/1f6b4.svg new file mode 100644 index 00000000000..d66ad5c6ceb --- /dev/null +++ b/public/emoji/1f6b4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b5-1f3fb.svg b/public/emoji/1f6b5-1f3fb.svg new file mode 100644 index 00000000000..5ce96f5b248 --- /dev/null +++ b/public/emoji/1f6b5-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b5-1f3fc.svg b/public/emoji/1f6b5-1f3fc.svg new file mode 100644 index 00000000000..9b088b9f7de --- /dev/null +++ b/public/emoji/1f6b5-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b5-1f3fd.svg b/public/emoji/1f6b5-1f3fd.svg new file mode 100644 index 00000000000..561ba2d1cb8 --- /dev/null +++ b/public/emoji/1f6b5-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b5-1f3fe.svg b/public/emoji/1f6b5-1f3fe.svg new file mode 100644 index 00000000000..a1153c343f3 --- /dev/null +++ b/public/emoji/1f6b5-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b5-1f3ff.svg b/public/emoji/1f6b5-1f3ff.svg new file mode 100644 index 00000000000..ca9993afc31 --- /dev/null +++ b/public/emoji/1f6b5-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b5.svg b/public/emoji/1f6b5.svg new file mode 100644 index 00000000000..0d5eb712dfd --- /dev/null +++ b/public/emoji/1f6b5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b6-1f3fb.svg b/public/emoji/1f6b6-1f3fb.svg new file mode 100644 index 00000000000..b4d3ddee2d7 --- /dev/null +++ b/public/emoji/1f6b6-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b6-1f3fc.svg b/public/emoji/1f6b6-1f3fc.svg new file mode 100644 index 00000000000..8c15b9be799 --- /dev/null +++ b/public/emoji/1f6b6-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b6-1f3fd.svg b/public/emoji/1f6b6-1f3fd.svg new file mode 100644 index 00000000000..69ef31ca4f9 --- /dev/null +++ b/public/emoji/1f6b6-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b6-1f3fe.svg b/public/emoji/1f6b6-1f3fe.svg new file mode 100644 index 00000000000..82b4e83346f --- /dev/null +++ b/public/emoji/1f6b6-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b6-1f3ff.svg b/public/emoji/1f6b6-1f3ff.svg new file mode 100644 index 00000000000..454b2a99d74 --- /dev/null +++ b/public/emoji/1f6b6-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b6.svg b/public/emoji/1f6b6.svg new file mode 100644 index 00000000000..8ba1d285560 --- /dev/null +++ b/public/emoji/1f6b6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b7.svg b/public/emoji/1f6b7.svg new file mode 100644 index 00000000000..ff92a91ca02 --- /dev/null +++ b/public/emoji/1f6b7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b8.svg b/public/emoji/1f6b8.svg new file mode 100644 index 00000000000..8b9b118396a --- /dev/null +++ b/public/emoji/1f6b8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b9.svg b/public/emoji/1f6b9.svg new file mode 100644 index 00000000000..962b0940074 --- /dev/null +++ b/public/emoji/1f6b9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6ba.svg b/public/emoji/1f6ba.svg new file mode 100644 index 00000000000..b98439e3805 --- /dev/null +++ b/public/emoji/1f6ba.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6bb.svg b/public/emoji/1f6bb.svg new file mode 100644 index 00000000000..8ece75fe5b8 --- /dev/null +++ b/public/emoji/1f6bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6bc.svg b/public/emoji/1f6bc.svg new file mode 100644 index 00000000000..47411174190 --- /dev/null +++ b/public/emoji/1f6bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6bd.svg b/public/emoji/1f6bd.svg new file mode 100644 index 00000000000..5a108e201c5 --- /dev/null +++ b/public/emoji/1f6bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6be.svg b/public/emoji/1f6be.svg new file mode 100644 index 00000000000..71390fb19f2 --- /dev/null +++ b/public/emoji/1f6be.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6bf.svg b/public/emoji/1f6bf.svg new file mode 100644 index 00000000000..dd21474ebdf --- /dev/null +++ b/public/emoji/1f6bf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6c0-1f3fb.svg b/public/emoji/1f6c0-1f3fb.svg new file mode 100644 index 00000000000..fa9921fc402 --- /dev/null +++ b/public/emoji/1f6c0-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6c0-1f3fc.svg b/public/emoji/1f6c0-1f3fc.svg new file mode 100644 index 00000000000..62648e5590f --- /dev/null +++ b/public/emoji/1f6c0-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6c0-1f3fd.svg b/public/emoji/1f6c0-1f3fd.svg new file mode 100644 index 00000000000..4c4957f24f2 --- /dev/null +++ b/public/emoji/1f6c0-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6c0-1f3fe.svg b/public/emoji/1f6c0-1f3fe.svg new file mode 100644 index 00000000000..43c665f0947 --- /dev/null +++ b/public/emoji/1f6c0-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6c0-1f3ff.svg b/public/emoji/1f6c0-1f3ff.svg new file mode 100644 index 00000000000..c03631844c9 --- /dev/null +++ b/public/emoji/1f6c0-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6c0.svg b/public/emoji/1f6c0.svg new file mode 100644 index 00000000000..6985f1feef6 --- /dev/null +++ b/public/emoji/1f6c0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6c1.svg b/public/emoji/1f6c1.svg new file mode 100644 index 00000000000..cef7b67c384 --- /dev/null +++ b/public/emoji/1f6c1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6c2.svg b/public/emoji/1f6c2.svg new file mode 100644 index 00000000000..f29b9c724ad --- /dev/null +++ b/public/emoji/1f6c2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6c3.svg b/public/emoji/1f6c3.svg new file mode 100644 index 00000000000..618ee799a06 --- /dev/null +++ b/public/emoji/1f6c3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6c4.svg b/public/emoji/1f6c4.svg new file mode 100644 index 00000000000..b7c8c1cb539 --- /dev/null +++ b/public/emoji/1f6c4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6c5.svg b/public/emoji/1f6c5.svg new file mode 100644 index 00000000000..dea7416552c --- /dev/null +++ b/public/emoji/1f6c5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6cb.svg b/public/emoji/1f6cb.svg new file mode 100644 index 00000000000..a33ada16bb3 --- /dev/null +++ b/public/emoji/1f6cb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6cc.svg b/public/emoji/1f6cc.svg new file mode 100644 index 00000000000..8446d6d7c9d --- /dev/null +++ b/public/emoji/1f6cc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6cd.svg b/public/emoji/1f6cd.svg new file mode 100644 index 00000000000..1daf857d80c --- /dev/null +++ b/public/emoji/1f6cd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6ce.svg b/public/emoji/1f6ce.svg new file mode 100644 index 00000000000..96f9fef0b69 --- /dev/null +++ b/public/emoji/1f6ce.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6cf.svg b/public/emoji/1f6cf.svg new file mode 100644 index 00000000000..f2fb4aad66e --- /dev/null +++ b/public/emoji/1f6cf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6d0.svg b/public/emoji/1f6d0.svg new file mode 100644 index 00000000000..65314e5f641 --- /dev/null +++ b/public/emoji/1f6d0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6d1.svg b/public/emoji/1f6d1.svg new file mode 100644 index 00000000000..4107a857f1b --- /dev/null +++ b/public/emoji/1f6d1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6d2.svg b/public/emoji/1f6d2.svg new file mode 100644 index 00000000000..b820572d75d --- /dev/null +++ b/public/emoji/1f6d2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6e0.svg b/public/emoji/1f6e0.svg new file mode 100644 index 00000000000..af26bdb17b6 --- /dev/null +++ b/public/emoji/1f6e0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6e1.svg b/public/emoji/1f6e1.svg new file mode 100644 index 00000000000..e9a41aa3a1e --- /dev/null +++ b/public/emoji/1f6e1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6e2.svg b/public/emoji/1f6e2.svg new file mode 100644 index 00000000000..c5a60a82c16 --- /dev/null +++ b/public/emoji/1f6e2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6e3.svg b/public/emoji/1f6e3.svg new file mode 100644 index 00000000000..2ccec72c45a --- /dev/null +++ b/public/emoji/1f6e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6e4.svg b/public/emoji/1f6e4.svg new file mode 100644 index 00000000000..4828d4248fc --- /dev/null +++ b/public/emoji/1f6e4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6e5.svg b/public/emoji/1f6e5.svg new file mode 100644 index 00000000000..db896dbc981 --- /dev/null +++ b/public/emoji/1f6e5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6e9.svg b/public/emoji/1f6e9.svg new file mode 100644 index 00000000000..191a1140947 --- /dev/null +++ b/public/emoji/1f6e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6eb.svg b/public/emoji/1f6eb.svg new file mode 100644 index 00000000000..5220fb3a722 --- /dev/null +++ b/public/emoji/1f6eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6ec.svg b/public/emoji/1f6ec.svg new file mode 100644 index 00000000000..c170f90af87 --- /dev/null +++ b/public/emoji/1f6ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6f0.svg b/public/emoji/1f6f0.svg new file mode 100644 index 00000000000..1d11f7aa782 --- /dev/null +++ b/public/emoji/1f6f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6f3.svg b/public/emoji/1f6f3.svg new file mode 100644 index 00000000000..81b10ac4901 --- /dev/null +++ b/public/emoji/1f6f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6f4.svg b/public/emoji/1f6f4.svg new file mode 100644 index 00000000000..a0f4a49abe8 --- /dev/null +++ b/public/emoji/1f6f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6f5.svg b/public/emoji/1f6f5.svg new file mode 100644 index 00000000000..7d7f7383b64 --- /dev/null +++ b/public/emoji/1f6f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6f6.svg b/public/emoji/1f6f6.svg new file mode 100644 index 00000000000..3d861645331 --- /dev/null +++ b/public/emoji/1f6f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f910.svg b/public/emoji/1f910.svg new file mode 100644 index 00000000000..51851ff0145 --- /dev/null +++ b/public/emoji/1f910.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f911.svg b/public/emoji/1f911.svg new file mode 100644 index 00000000000..19404ab8eca --- /dev/null +++ b/public/emoji/1f911.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f912.svg b/public/emoji/1f912.svg new file mode 100644 index 00000000000..2b9d9b0bebb --- /dev/null +++ b/public/emoji/1f912.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f913.svg b/public/emoji/1f913.svg new file mode 100644 index 00000000000..1dc83d76462 --- /dev/null +++ b/public/emoji/1f913.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f914.svg b/public/emoji/1f914.svg new file mode 100644 index 00000000000..3b5fe136f61 --- /dev/null +++ b/public/emoji/1f914.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f915.svg b/public/emoji/1f915.svg new file mode 100644 index 00000000000..26dfd8cf442 --- /dev/null +++ b/public/emoji/1f915.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f916.svg b/public/emoji/1f916.svg new file mode 100644 index 00000000000..047eae18ff8 --- /dev/null +++ b/public/emoji/1f916.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f917.svg b/public/emoji/1f917.svg new file mode 100644 index 00000000000..238b5a7825d --- /dev/null +++ b/public/emoji/1f917.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f918-1f3fb.svg b/public/emoji/1f918-1f3fb.svg new file mode 100644 index 00000000000..2ac3beae057 --- /dev/null +++ b/public/emoji/1f918-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f918-1f3fc.svg b/public/emoji/1f918-1f3fc.svg new file mode 100644 index 00000000000..edbd0b20892 --- /dev/null +++ b/public/emoji/1f918-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f918-1f3fd.svg b/public/emoji/1f918-1f3fd.svg new file mode 100644 index 00000000000..39f8819a5aa --- /dev/null +++ b/public/emoji/1f918-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f918-1f3fe.svg b/public/emoji/1f918-1f3fe.svg new file mode 100644 index 00000000000..b8b1f4500ab --- /dev/null +++ b/public/emoji/1f918-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f918-1f3ff.svg b/public/emoji/1f918-1f3ff.svg new file mode 100644 index 00000000000..1dfaceff897 --- /dev/null +++ b/public/emoji/1f918-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f918.svg b/public/emoji/1f918.svg new file mode 100644 index 00000000000..125c338544a --- /dev/null +++ b/public/emoji/1f918.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f919-1f3fb.svg b/public/emoji/1f919-1f3fb.svg new file mode 100644 index 00000000000..6798a545f6d --- /dev/null +++ b/public/emoji/1f919-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f919-1f3fc.svg b/public/emoji/1f919-1f3fc.svg new file mode 100644 index 00000000000..1c604faa35c --- /dev/null +++ b/public/emoji/1f919-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f919-1f3fd.svg b/public/emoji/1f919-1f3fd.svg new file mode 100644 index 00000000000..72706380428 --- /dev/null +++ b/public/emoji/1f919-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f919-1f3fe.svg b/public/emoji/1f919-1f3fe.svg new file mode 100644 index 00000000000..c7d9afa184f --- /dev/null +++ b/public/emoji/1f919-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f919-1f3ff.svg b/public/emoji/1f919-1f3ff.svg new file mode 100644 index 00000000000..7f958198623 --- /dev/null +++ b/public/emoji/1f919-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f919.svg b/public/emoji/1f919.svg new file mode 100644 index 00000000000..84df19cce07 --- /dev/null +++ b/public/emoji/1f919.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91a-1f3fb.svg b/public/emoji/1f91a-1f3fb.svg new file mode 100644 index 00000000000..7a7baa85408 --- /dev/null +++ b/public/emoji/1f91a-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91a-1f3fc.svg b/public/emoji/1f91a-1f3fc.svg new file mode 100644 index 00000000000..7343906b1cf --- /dev/null +++ b/public/emoji/1f91a-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91a-1f3fd.svg b/public/emoji/1f91a-1f3fd.svg new file mode 100644 index 00000000000..55f936d152d --- /dev/null +++ b/public/emoji/1f91a-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91a-1f3fe.svg b/public/emoji/1f91a-1f3fe.svg new file mode 100644 index 00000000000..6dc3b2210d4 --- /dev/null +++ b/public/emoji/1f91a-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91a-1f3ff.svg b/public/emoji/1f91a-1f3ff.svg new file mode 100644 index 00000000000..d27a387c6d4 --- /dev/null +++ b/public/emoji/1f91a-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91a.svg b/public/emoji/1f91a.svg new file mode 100644 index 00000000000..74d0015f653 --- /dev/null +++ b/public/emoji/1f91a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91b-1f3fb.svg b/public/emoji/1f91b-1f3fb.svg new file mode 100644 index 00000000000..00f854072d6 --- /dev/null +++ b/public/emoji/1f91b-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91b-1f3fc.svg b/public/emoji/1f91b-1f3fc.svg new file mode 100644 index 00000000000..92dd89993e5 --- /dev/null +++ b/public/emoji/1f91b-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91b-1f3fd.svg b/public/emoji/1f91b-1f3fd.svg new file mode 100644 index 00000000000..6254ca9ae98 --- /dev/null +++ b/public/emoji/1f91b-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91b-1f3fe.svg b/public/emoji/1f91b-1f3fe.svg new file mode 100644 index 00000000000..074eca34800 --- /dev/null +++ b/public/emoji/1f91b-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91b-1f3ff.svg b/public/emoji/1f91b-1f3ff.svg new file mode 100644 index 00000000000..163866bbac1 --- /dev/null +++ b/public/emoji/1f91b-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91b.svg b/public/emoji/1f91b.svg new file mode 100644 index 00000000000..ea97a80a0b6 --- /dev/null +++ b/public/emoji/1f91b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91c-1f3fb.svg b/public/emoji/1f91c-1f3fb.svg new file mode 100644 index 00000000000..d3c0de370f4 --- /dev/null +++ b/public/emoji/1f91c-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91c-1f3fc.svg b/public/emoji/1f91c-1f3fc.svg new file mode 100644 index 00000000000..9459974002f --- /dev/null +++ b/public/emoji/1f91c-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91c-1f3fd.svg b/public/emoji/1f91c-1f3fd.svg new file mode 100644 index 00000000000..c540bb048ae --- /dev/null +++ b/public/emoji/1f91c-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91c-1f3fe.svg b/public/emoji/1f91c-1f3fe.svg new file mode 100644 index 00000000000..c3a410c28c0 --- /dev/null +++ b/public/emoji/1f91c-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91c-1f3ff.svg b/public/emoji/1f91c-1f3ff.svg new file mode 100644 index 00000000000..1ff1b64f36d --- /dev/null +++ b/public/emoji/1f91c-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91c.svg b/public/emoji/1f91c.svg new file mode 100644 index 00000000000..80a75c9cded --- /dev/null +++ b/public/emoji/1f91c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91d-1f3fb.svg b/public/emoji/1f91d-1f3fb.svg new file mode 100644 index 00000000000..bc7cf60e8c1 --- /dev/null +++ b/public/emoji/1f91d-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91d-1f3fc.svg b/public/emoji/1f91d-1f3fc.svg new file mode 100644 index 00000000000..c13f18ba6e3 --- /dev/null +++ b/public/emoji/1f91d-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91d-1f3fd.svg b/public/emoji/1f91d-1f3fd.svg new file mode 100644 index 00000000000..76871fcba75 --- /dev/null +++ b/public/emoji/1f91d-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91d-1f3fe.svg b/public/emoji/1f91d-1f3fe.svg new file mode 100644 index 00000000000..45a6c8204b3 --- /dev/null +++ b/public/emoji/1f91d-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91d-1f3ff.svg b/public/emoji/1f91d-1f3ff.svg new file mode 100644 index 00000000000..44444267010 --- /dev/null +++ b/public/emoji/1f91d-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91d.svg b/public/emoji/1f91d.svg new file mode 100644 index 00000000000..185bf3bc70a --- /dev/null +++ b/public/emoji/1f91d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91e-1f3fb.svg b/public/emoji/1f91e-1f3fb.svg new file mode 100644 index 00000000000..aa4cd73ac16 --- /dev/null +++ b/public/emoji/1f91e-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91e-1f3fc.svg b/public/emoji/1f91e-1f3fc.svg new file mode 100644 index 00000000000..bf4eff677bd --- /dev/null +++ b/public/emoji/1f91e-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91e-1f3fd.svg b/public/emoji/1f91e-1f3fd.svg new file mode 100644 index 00000000000..5562818e400 --- /dev/null +++ b/public/emoji/1f91e-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91e-1f3fe.svg b/public/emoji/1f91e-1f3fe.svg new file mode 100644 index 00000000000..5067aaebaae --- /dev/null +++ b/public/emoji/1f91e-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91e-1f3ff.svg b/public/emoji/1f91e-1f3ff.svg new file mode 100644 index 00000000000..741dc664083 --- /dev/null +++ b/public/emoji/1f91e-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91e.svg b/public/emoji/1f91e.svg new file mode 100644 index 00000000000..574dcc17f97 --- /dev/null +++ b/public/emoji/1f91e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f920.svg b/public/emoji/1f920.svg new file mode 100644 index 00000000000..11437ce6dd0 --- /dev/null +++ b/public/emoji/1f920.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f921.svg b/public/emoji/1f921.svg new file mode 100644 index 00000000000..63812e73110 --- /dev/null +++ b/public/emoji/1f921.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f922.svg b/public/emoji/1f922.svg new file mode 100644 index 00000000000..893e564de5a --- /dev/null +++ b/public/emoji/1f922.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f923.svg b/public/emoji/1f923.svg new file mode 100644 index 00000000000..e029257016f --- /dev/null +++ b/public/emoji/1f923.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f924.svg b/public/emoji/1f924.svg new file mode 100644 index 00000000000..4e30304dfc0 --- /dev/null +++ b/public/emoji/1f924.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f925.svg b/public/emoji/1f925.svg new file mode 100644 index 00000000000..7446d3f45fa --- /dev/null +++ b/public/emoji/1f925.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f926-1f3fb.svg b/public/emoji/1f926-1f3fb.svg new file mode 100644 index 00000000000..60e2089a4b9 --- /dev/null +++ b/public/emoji/1f926-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f926-1f3fc.svg b/public/emoji/1f926-1f3fc.svg new file mode 100644 index 00000000000..a5fc0ae04c3 --- /dev/null +++ b/public/emoji/1f926-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f926-1f3fd.svg b/public/emoji/1f926-1f3fd.svg new file mode 100644 index 00000000000..ea86bb8cba6 --- /dev/null +++ b/public/emoji/1f926-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f926-1f3fe.svg b/public/emoji/1f926-1f3fe.svg new file mode 100644 index 00000000000..27bb43a42b4 --- /dev/null +++ b/public/emoji/1f926-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f926-1f3ff.svg b/public/emoji/1f926-1f3ff.svg new file mode 100644 index 00000000000..2f704437591 --- /dev/null +++ b/public/emoji/1f926-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f926.svg b/public/emoji/1f926.svg new file mode 100644 index 00000000000..bff8effe6bd --- /dev/null +++ b/public/emoji/1f926.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f927.svg b/public/emoji/1f927.svg new file mode 100644 index 00000000000..1c513dd2809 --- /dev/null +++ b/public/emoji/1f927.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f930-1f3fb.svg b/public/emoji/1f930-1f3fb.svg new file mode 100644 index 00000000000..4b1d23ff297 --- /dev/null +++ b/public/emoji/1f930-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f930-1f3fc.svg b/public/emoji/1f930-1f3fc.svg new file mode 100644 index 00000000000..b1683589282 --- /dev/null +++ b/public/emoji/1f930-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f930-1f3fd.svg b/public/emoji/1f930-1f3fd.svg new file mode 100644 index 00000000000..dbb32eac3af --- /dev/null +++ b/public/emoji/1f930-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f930-1f3fe.svg b/public/emoji/1f930-1f3fe.svg new file mode 100644 index 00000000000..a3bab2cba49 --- /dev/null +++ b/public/emoji/1f930-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f930-1f3ff.svg b/public/emoji/1f930-1f3ff.svg new file mode 100644 index 00000000000..ad37b4b16f6 --- /dev/null +++ b/public/emoji/1f930-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f930.svg b/public/emoji/1f930.svg new file mode 100644 index 00000000000..768b902b88e --- /dev/null +++ b/public/emoji/1f930.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f933-1f3fb.svg b/public/emoji/1f933-1f3fb.svg new file mode 100644 index 00000000000..891ddd13229 --- /dev/null +++ b/public/emoji/1f933-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f933-1f3fc.svg b/public/emoji/1f933-1f3fc.svg new file mode 100644 index 00000000000..8e9e6544449 --- /dev/null +++ b/public/emoji/1f933-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f933-1f3fd.svg b/public/emoji/1f933-1f3fd.svg new file mode 100644 index 00000000000..d40f5f75d0d --- /dev/null +++ b/public/emoji/1f933-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f933-1f3fe.svg b/public/emoji/1f933-1f3fe.svg new file mode 100644 index 00000000000..d19b5ea811b --- /dev/null +++ b/public/emoji/1f933-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f933-1f3ff.svg b/public/emoji/1f933-1f3ff.svg new file mode 100644 index 00000000000..3be274394fc --- /dev/null +++ b/public/emoji/1f933-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f933.svg b/public/emoji/1f933.svg new file mode 100644 index 00000000000..009221c6abb --- /dev/null +++ b/public/emoji/1f933.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f934-1f3fb.svg b/public/emoji/1f934-1f3fb.svg new file mode 100644 index 00000000000..9688cead970 --- /dev/null +++ b/public/emoji/1f934-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f934-1f3fc.svg b/public/emoji/1f934-1f3fc.svg new file mode 100644 index 00000000000..cc27b532deb --- /dev/null +++ b/public/emoji/1f934-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f934-1f3fd.svg b/public/emoji/1f934-1f3fd.svg new file mode 100644 index 00000000000..44a0524d41c --- /dev/null +++ b/public/emoji/1f934-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f934-1f3fe.svg b/public/emoji/1f934-1f3fe.svg new file mode 100644 index 00000000000..71c66cb95ef --- /dev/null +++ b/public/emoji/1f934-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f934-1f3ff.svg b/public/emoji/1f934-1f3ff.svg new file mode 100644 index 00000000000..d45a0f05aa6 --- /dev/null +++ b/public/emoji/1f934-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f934.svg b/public/emoji/1f934.svg new file mode 100644 index 00000000000..a075a6b44cf --- /dev/null +++ b/public/emoji/1f934.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f935-1f3fb.svg b/public/emoji/1f935-1f3fb.svg new file mode 100644 index 00000000000..b5259d659d9 --- /dev/null +++ b/public/emoji/1f935-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f935-1f3fc.svg b/public/emoji/1f935-1f3fc.svg new file mode 100644 index 00000000000..d57750ac502 --- /dev/null +++ b/public/emoji/1f935-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f935-1f3fd.svg b/public/emoji/1f935-1f3fd.svg new file mode 100644 index 00000000000..9c816e30331 --- /dev/null +++ b/public/emoji/1f935-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f935-1f3fe.svg b/public/emoji/1f935-1f3fe.svg new file mode 100644 index 00000000000..e15d1765727 --- /dev/null +++ b/public/emoji/1f935-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f935-1f3ff.svg b/public/emoji/1f935-1f3ff.svg new file mode 100644 index 00000000000..f8655dbe7b5 --- /dev/null +++ b/public/emoji/1f935-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f935.svg b/public/emoji/1f935.svg new file mode 100644 index 00000000000..228b84a0a44 --- /dev/null +++ b/public/emoji/1f935.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f936-1f3fb.svg b/public/emoji/1f936-1f3fb.svg new file mode 100644 index 00000000000..42ba4e63395 --- /dev/null +++ b/public/emoji/1f936-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f936-1f3fc.svg b/public/emoji/1f936-1f3fc.svg new file mode 100644 index 00000000000..039a5766144 --- /dev/null +++ b/public/emoji/1f936-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f936-1f3fd.svg b/public/emoji/1f936-1f3fd.svg new file mode 100644 index 00000000000..a28a074bba6 --- /dev/null +++ b/public/emoji/1f936-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f936-1f3fe.svg b/public/emoji/1f936-1f3fe.svg new file mode 100644 index 00000000000..bac1e4678a6 --- /dev/null +++ b/public/emoji/1f936-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f936-1f3ff.svg b/public/emoji/1f936-1f3ff.svg new file mode 100644 index 00000000000..bd8eb1babde --- /dev/null +++ b/public/emoji/1f936-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f936.svg b/public/emoji/1f936.svg new file mode 100644 index 00000000000..c2c0e9862eb --- /dev/null +++ b/public/emoji/1f936.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f937-1f3fb.svg b/public/emoji/1f937-1f3fb.svg new file mode 100644 index 00000000000..e654bcd6a74 --- /dev/null +++ b/public/emoji/1f937-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f937-1f3fc.svg b/public/emoji/1f937-1f3fc.svg new file mode 100644 index 00000000000..8686bdf2bd3 --- /dev/null +++ b/public/emoji/1f937-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f937-1f3fd.svg b/public/emoji/1f937-1f3fd.svg new file mode 100644 index 00000000000..ee50fbbd747 --- /dev/null +++ b/public/emoji/1f937-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f937-1f3fe.svg b/public/emoji/1f937-1f3fe.svg new file mode 100644 index 00000000000..4a7bc965e38 --- /dev/null +++ b/public/emoji/1f937-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f937-1f3ff.svg b/public/emoji/1f937-1f3ff.svg new file mode 100644 index 00000000000..25bfd9ef717 --- /dev/null +++ b/public/emoji/1f937-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f937.svg b/public/emoji/1f937.svg new file mode 100644 index 00000000000..c2ab59fe017 --- /dev/null +++ b/public/emoji/1f937.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f938-1f3fb.svg b/public/emoji/1f938-1f3fb.svg new file mode 100644 index 00000000000..41bb168869a --- /dev/null +++ b/public/emoji/1f938-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f938-1f3fc.svg b/public/emoji/1f938-1f3fc.svg new file mode 100644 index 00000000000..17ccde4bb5f --- /dev/null +++ b/public/emoji/1f938-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f938-1f3fd.svg b/public/emoji/1f938-1f3fd.svg new file mode 100644 index 00000000000..e76db7a6ea2 --- /dev/null +++ b/public/emoji/1f938-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f938-1f3fe.svg b/public/emoji/1f938-1f3fe.svg new file mode 100644 index 00000000000..83a3dd3bd78 --- /dev/null +++ b/public/emoji/1f938-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f938-1f3ff.svg b/public/emoji/1f938-1f3ff.svg new file mode 100644 index 00000000000..347df3bc0ea --- /dev/null +++ b/public/emoji/1f938-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f938.svg b/public/emoji/1f938.svg new file mode 100644 index 00000000000..d3c2a1ad834 --- /dev/null +++ b/public/emoji/1f938.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f939-1f3fb.svg b/public/emoji/1f939-1f3fb.svg new file mode 100644 index 00000000000..db37b39a0b1 --- /dev/null +++ b/public/emoji/1f939-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f939-1f3fc.svg b/public/emoji/1f939-1f3fc.svg new file mode 100644 index 00000000000..bb834f73f8d --- /dev/null +++ b/public/emoji/1f939-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f939-1f3fd.svg b/public/emoji/1f939-1f3fd.svg new file mode 100644 index 00000000000..8c2b703d85d --- /dev/null +++ b/public/emoji/1f939-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f939-1f3fe.svg b/public/emoji/1f939-1f3fe.svg new file mode 100644 index 00000000000..fcf09920858 --- /dev/null +++ b/public/emoji/1f939-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f939-1f3ff.svg b/public/emoji/1f939-1f3ff.svg new file mode 100644 index 00000000000..b1d6168a075 --- /dev/null +++ b/public/emoji/1f939-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f939.svg b/public/emoji/1f939.svg new file mode 100644 index 00000000000..3859ff275fa --- /dev/null +++ b/public/emoji/1f939.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93a.svg b/public/emoji/1f93a.svg new file mode 100644 index 00000000000..f566e0605ce --- /dev/null +++ b/public/emoji/1f93a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93c-1f3fb.svg b/public/emoji/1f93c-1f3fb.svg new file mode 100644 index 00000000000..107ff2667e2 --- /dev/null +++ b/public/emoji/1f93c-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93c-1f3fc.svg b/public/emoji/1f93c-1f3fc.svg new file mode 100644 index 00000000000..e417df2d856 --- /dev/null +++ b/public/emoji/1f93c-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93c-1f3fd.svg b/public/emoji/1f93c-1f3fd.svg new file mode 100644 index 00000000000..5b897f9dbb6 --- /dev/null +++ b/public/emoji/1f93c-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93c-1f3fe.svg b/public/emoji/1f93c-1f3fe.svg new file mode 100644 index 00000000000..7f342502175 --- /dev/null +++ b/public/emoji/1f93c-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93c-1f3ff.svg b/public/emoji/1f93c-1f3ff.svg new file mode 100644 index 00000000000..a4e5ecc507e --- /dev/null +++ b/public/emoji/1f93c-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93c.svg b/public/emoji/1f93c.svg new file mode 100644 index 00000000000..694ce766243 --- /dev/null +++ b/public/emoji/1f93c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93d-1f3fb.svg b/public/emoji/1f93d-1f3fb.svg new file mode 100644 index 00000000000..ab8d140df03 --- /dev/null +++ b/public/emoji/1f93d-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93d-1f3fc.svg b/public/emoji/1f93d-1f3fc.svg new file mode 100644 index 00000000000..85395e007b4 --- /dev/null +++ b/public/emoji/1f93d-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93d-1f3fd.svg b/public/emoji/1f93d-1f3fd.svg new file mode 100644 index 00000000000..3977b737737 --- /dev/null +++ b/public/emoji/1f93d-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93d-1f3fe.svg b/public/emoji/1f93d-1f3fe.svg new file mode 100644 index 00000000000..d25f2bfb0c9 --- /dev/null +++ b/public/emoji/1f93d-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93d-1f3ff.svg b/public/emoji/1f93d-1f3ff.svg new file mode 100644 index 00000000000..16cd1bbe494 --- /dev/null +++ b/public/emoji/1f93d-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93d.svg b/public/emoji/1f93d.svg new file mode 100644 index 00000000000..1ba0ab89ed1 --- /dev/null +++ b/public/emoji/1f93d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93e-1f3fb.svg b/public/emoji/1f93e-1f3fb.svg new file mode 100644 index 00000000000..58ad79fadd3 --- /dev/null +++ b/public/emoji/1f93e-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93e-1f3fc.svg b/public/emoji/1f93e-1f3fc.svg new file mode 100644 index 00000000000..fb609bac76f --- /dev/null +++ b/public/emoji/1f93e-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93e-1f3fd.svg b/public/emoji/1f93e-1f3fd.svg new file mode 100644 index 00000000000..facf15d7799 --- /dev/null +++ b/public/emoji/1f93e-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93e-1f3fe.svg b/public/emoji/1f93e-1f3fe.svg new file mode 100644 index 00000000000..2b3023fce5d --- /dev/null +++ b/public/emoji/1f93e-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93e-1f3ff.svg b/public/emoji/1f93e-1f3ff.svg new file mode 100644 index 00000000000..65220a53948 --- /dev/null +++ b/public/emoji/1f93e-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93e.svg b/public/emoji/1f93e.svg new file mode 100644 index 00000000000..d3a20ac8a20 --- /dev/null +++ b/public/emoji/1f93e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f940.svg b/public/emoji/1f940.svg new file mode 100644 index 00000000000..dda76b81bcd --- /dev/null +++ b/public/emoji/1f940.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f941.svg b/public/emoji/1f941.svg new file mode 100644 index 00000000000..3a07224db34 --- /dev/null +++ b/public/emoji/1f941.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f942.svg b/public/emoji/1f942.svg new file mode 100644 index 00000000000..41384a1ac31 --- /dev/null +++ b/public/emoji/1f942.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f943.svg b/public/emoji/1f943.svg new file mode 100644 index 00000000000..025cd0b8a33 --- /dev/null +++ b/public/emoji/1f943.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f944.svg b/public/emoji/1f944.svg new file mode 100644 index 00000000000..f69528ca7a4 --- /dev/null +++ b/public/emoji/1f944.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f945.svg b/public/emoji/1f945.svg new file mode 100644 index 00000000000..181c8522440 --- /dev/null +++ b/public/emoji/1f945.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f947.svg b/public/emoji/1f947.svg new file mode 100644 index 00000000000..abb7620a09f --- /dev/null +++ b/public/emoji/1f947.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f948.svg b/public/emoji/1f948.svg new file mode 100644 index 00000000000..2da21e1386c --- /dev/null +++ b/public/emoji/1f948.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f949.svg b/public/emoji/1f949.svg new file mode 100644 index 00000000000..1322b555feb --- /dev/null +++ b/public/emoji/1f949.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f94a.svg b/public/emoji/1f94a.svg new file mode 100644 index 00000000000..752af12e30a --- /dev/null +++ b/public/emoji/1f94a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f94b.svg b/public/emoji/1f94b.svg new file mode 100644 index 00000000000..44fc92b840d --- /dev/null +++ b/public/emoji/1f94b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f950.svg b/public/emoji/1f950.svg new file mode 100644 index 00000000000..184e56c4662 --- /dev/null +++ b/public/emoji/1f950.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f951.svg b/public/emoji/1f951.svg new file mode 100644 index 00000000000..b8c26d2a415 --- /dev/null +++ b/public/emoji/1f951.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f952.svg b/public/emoji/1f952.svg new file mode 100644 index 00000000000..d72b1ceba0c --- /dev/null +++ b/public/emoji/1f952.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f953.svg b/public/emoji/1f953.svg new file mode 100644 index 00000000000..d702dc50c45 --- /dev/null +++ b/public/emoji/1f953.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f954.svg b/public/emoji/1f954.svg new file mode 100644 index 00000000000..15d99ff4714 --- /dev/null +++ b/public/emoji/1f954.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f955.svg b/public/emoji/1f955.svg new file mode 100644 index 00000000000..468c7a216b5 --- /dev/null +++ b/public/emoji/1f955.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f956.svg b/public/emoji/1f956.svg new file mode 100644 index 00000000000..dc1e86fc379 --- /dev/null +++ b/public/emoji/1f956.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f957.svg b/public/emoji/1f957.svg new file mode 100644 index 00000000000..e0a2a01edb3 --- /dev/null +++ b/public/emoji/1f957.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f958.svg b/public/emoji/1f958.svg new file mode 100644 index 00000000000..2062eae7fba --- /dev/null +++ b/public/emoji/1f958.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f959.svg b/public/emoji/1f959.svg new file mode 100644 index 00000000000..8be63ab158f --- /dev/null +++ b/public/emoji/1f959.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f95a.svg b/public/emoji/1f95a.svg new file mode 100644 index 00000000000..005e3e6af01 --- /dev/null +++ b/public/emoji/1f95a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f95b.svg b/public/emoji/1f95b.svg new file mode 100644 index 00000000000..877c0521c6d --- /dev/null +++ b/public/emoji/1f95b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f95c.svg b/public/emoji/1f95c.svg new file mode 100644 index 00000000000..3866204ec25 --- /dev/null +++ b/public/emoji/1f95c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f95d.svg b/public/emoji/1f95d.svg new file mode 100644 index 00000000000..d60d50f87ef --- /dev/null +++ b/public/emoji/1f95d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f95e.svg b/public/emoji/1f95e.svg new file mode 100644 index 00000000000..603a3470d70 --- /dev/null +++ b/public/emoji/1f95e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f980.svg b/public/emoji/1f980.svg new file mode 100644 index 00000000000..1f7936f4a7c --- /dev/null +++ b/public/emoji/1f980.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f981.svg b/public/emoji/1f981.svg new file mode 100644 index 00000000000..965e4ef2102 --- /dev/null +++ b/public/emoji/1f981.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f982.svg b/public/emoji/1f982.svg new file mode 100644 index 00000000000..a1afc315cd6 --- /dev/null +++ b/public/emoji/1f982.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f983.svg b/public/emoji/1f983.svg new file mode 100644 index 00000000000..59cc30fe369 --- /dev/null +++ b/public/emoji/1f983.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f984.svg b/public/emoji/1f984.svg new file mode 100644 index 00000000000..507937d7a03 --- /dev/null +++ b/public/emoji/1f984.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f985.svg b/public/emoji/1f985.svg new file mode 100644 index 00000000000..afba6f983fc --- /dev/null +++ b/public/emoji/1f985.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f986.svg b/public/emoji/1f986.svg new file mode 100644 index 00000000000..ee80f71d87f --- /dev/null +++ b/public/emoji/1f986.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f987.svg b/public/emoji/1f987.svg new file mode 100644 index 00000000000..77c26c98423 --- /dev/null +++ b/public/emoji/1f987.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f988.svg b/public/emoji/1f988.svg new file mode 100644 index 00000000000..c1fffcd291f --- /dev/null +++ b/public/emoji/1f988.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f989.svg b/public/emoji/1f989.svg new file mode 100644 index 00000000000..bde42fe1c93 --- /dev/null +++ b/public/emoji/1f989.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f98a.svg b/public/emoji/1f98a.svg new file mode 100644 index 00000000000..28f9072f55d --- /dev/null +++ b/public/emoji/1f98a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f98b.svg b/public/emoji/1f98b.svg new file mode 100644 index 00000000000..794e94d395c --- /dev/null +++ b/public/emoji/1f98b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f98c.svg b/public/emoji/1f98c.svg new file mode 100644 index 00000000000..a70a64169e1 --- /dev/null +++ b/public/emoji/1f98c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f98d.svg b/public/emoji/1f98d.svg new file mode 100644 index 00000000000..2c27214fd64 --- /dev/null +++ b/public/emoji/1f98d.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f98e.svg b/public/emoji/1f98e.svg new file mode 100644 index 00000000000..4f15955dbc6 --- /dev/null +++ b/public/emoji/1f98e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f98f.svg b/public/emoji/1f98f.svg new file mode 100644 index 00000000000..7329b384e61 --- /dev/null +++ b/public/emoji/1f98f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f990.svg b/public/emoji/1f990.svg new file mode 100644 index 00000000000..7cf07ad10bc --- /dev/null +++ b/public/emoji/1f990.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f991.svg b/public/emoji/1f991.svg new file mode 100644 index 00000000000..c7e876402e6 --- /dev/null +++ b/public/emoji/1f991.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f9c0.svg b/public/emoji/1f9c0.svg new file mode 100644 index 00000000000..3cbd8096881 --- /dev/null +++ b/public/emoji/1f9c0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/203c.svg b/public/emoji/203c.svg new file mode 100644 index 00000000000..7d2d0dfd1d3 --- /dev/null +++ b/public/emoji/203c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2049.svg b/public/emoji/2049.svg new file mode 100644 index 00000000000..b39038bb0ac --- /dev/null +++ b/public/emoji/2049.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2122.svg b/public/emoji/2122.svg new file mode 100644 index 00000000000..321c2026e36 --- /dev/null +++ b/public/emoji/2122.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2139.svg b/public/emoji/2139.svg new file mode 100644 index 00000000000..93e13a8aaf7 --- /dev/null +++ b/public/emoji/2139.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2194.svg b/public/emoji/2194.svg new file mode 100644 index 00000000000..8ffc7d1db76 --- /dev/null +++ b/public/emoji/2194.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2195.svg b/public/emoji/2195.svg new file mode 100644 index 00000000000..803b79d385b --- /dev/null +++ b/public/emoji/2195.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2196.svg b/public/emoji/2196.svg new file mode 100644 index 00000000000..7049c485f29 --- /dev/null +++ b/public/emoji/2196.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2197.svg b/public/emoji/2197.svg new file mode 100644 index 00000000000..73cc6a7e5fa --- /dev/null +++ b/public/emoji/2197.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2198.svg b/public/emoji/2198.svg new file mode 100644 index 00000000000..7a5e9677f3f --- /dev/null +++ b/public/emoji/2198.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2199.svg b/public/emoji/2199.svg new file mode 100644 index 00000000000..29c9464255e --- /dev/null +++ b/public/emoji/2199.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/21a9.svg b/public/emoji/21a9.svg new file mode 100644 index 00000000000..03a61def71a --- /dev/null +++ b/public/emoji/21a9.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/21aa.svg b/public/emoji/21aa.svg new file mode 100644 index 00000000000..fd4773fd23a --- /dev/null +++ b/public/emoji/21aa.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/231a.svg b/public/emoji/231a.svg new file mode 100644 index 00000000000..31cbd09c990 --- /dev/null +++ b/public/emoji/231a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/231b.svg b/public/emoji/231b.svg new file mode 100644 index 00000000000..18acf0a3ec4 --- /dev/null +++ b/public/emoji/231b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2328.svg b/public/emoji/2328.svg new file mode 100644 index 00000000000..c282cf73f8b --- /dev/null +++ b/public/emoji/2328.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23cf.svg b/public/emoji/23cf.svg new file mode 100644 index 00000000000..2229e4437f2 --- /dev/null +++ b/public/emoji/23cf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23e9.svg b/public/emoji/23e9.svg new file mode 100644 index 00000000000..60d4f822a74 --- /dev/null +++ b/public/emoji/23e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23ea.svg b/public/emoji/23ea.svg new file mode 100644 index 00000000000..2530af199cc --- /dev/null +++ b/public/emoji/23ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23eb.svg b/public/emoji/23eb.svg new file mode 100644 index 00000000000..fcc82a94eb1 --- /dev/null +++ b/public/emoji/23eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23ec.svg b/public/emoji/23ec.svg new file mode 100644 index 00000000000..17d697dfe86 --- /dev/null +++ b/public/emoji/23ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23ed.svg b/public/emoji/23ed.svg new file mode 100644 index 00000000000..4202a012d92 --- /dev/null +++ b/public/emoji/23ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23ee.svg b/public/emoji/23ee.svg new file mode 100644 index 00000000000..e8d3c4ffe08 --- /dev/null +++ b/public/emoji/23ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23ef.svg b/public/emoji/23ef.svg new file mode 100644 index 00000000000..2fc2c46d049 --- /dev/null +++ b/public/emoji/23ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23f0.svg b/public/emoji/23f0.svg new file mode 100644 index 00000000000..fe986122022 --- /dev/null +++ b/public/emoji/23f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23f1.svg b/public/emoji/23f1.svg new file mode 100644 index 00000000000..051d3d5499a --- /dev/null +++ b/public/emoji/23f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23f2.svg b/public/emoji/23f2.svg new file mode 100644 index 00000000000..c8f4446e0a2 --- /dev/null +++ b/public/emoji/23f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23f3.svg b/public/emoji/23f3.svg new file mode 100644 index 00000000000..803f932307d --- /dev/null +++ b/public/emoji/23f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23f8.svg b/public/emoji/23f8.svg new file mode 100644 index 00000000000..3247d55a89a --- /dev/null +++ b/public/emoji/23f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23f9.svg b/public/emoji/23f9.svg new file mode 100644 index 00000000000..874ad6dbc2b --- /dev/null +++ b/public/emoji/23f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23fa.svg b/public/emoji/23fa.svg new file mode 100644 index 00000000000..668d6828907 --- /dev/null +++ b/public/emoji/23fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/24c2.svg b/public/emoji/24c2.svg new file mode 100644 index 00000000000..fbbf6f8eedc --- /dev/null +++ b/public/emoji/24c2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/25aa.svg b/public/emoji/25aa.svg new file mode 100644 index 00000000000..2d0fa0a3947 --- /dev/null +++ b/public/emoji/25aa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/25ab.svg b/public/emoji/25ab.svg new file mode 100644 index 00000000000..ab1ec4d2e38 --- /dev/null +++ b/public/emoji/25ab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/25b6.svg b/public/emoji/25b6.svg new file mode 100644 index 00000000000..f7ac18377a8 --- /dev/null +++ b/public/emoji/25b6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/25c0.svg b/public/emoji/25c0.svg new file mode 100644 index 00000000000..d67bffccfbc --- /dev/null +++ b/public/emoji/25c0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/25fb.svg b/public/emoji/25fb.svg new file mode 100644 index 00000000000..c3dd9d3f2b7 --- /dev/null +++ b/public/emoji/25fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/25fc.svg b/public/emoji/25fc.svg new file mode 100644 index 00000000000..bf2f0301614 --- /dev/null +++ b/public/emoji/25fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/25fd.svg b/public/emoji/25fd.svg new file mode 100644 index 00000000000..5f5ab3f58bf --- /dev/null +++ b/public/emoji/25fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/25fe.svg b/public/emoji/25fe.svg new file mode 100644 index 00000000000..b2a4c8150cb --- /dev/null +++ b/public/emoji/25fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2600.svg b/public/emoji/2600.svg new file mode 100644 index 00000000000..aec6212d720 --- /dev/null +++ b/public/emoji/2600.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2601.svg b/public/emoji/2601.svg new file mode 100644 index 00000000000..3df7fa6e300 --- /dev/null +++ b/public/emoji/2601.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2602.svg b/public/emoji/2602.svg new file mode 100644 index 00000000000..2105cf10ab0 --- /dev/null +++ b/public/emoji/2602.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2603.svg b/public/emoji/2603.svg new file mode 100644 index 00000000000..8bfcae8fe66 --- /dev/null +++ b/public/emoji/2603.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2604.svg b/public/emoji/2604.svg new file mode 100644 index 00000000000..7ad1c661d59 --- /dev/null +++ b/public/emoji/2604.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/260e.svg b/public/emoji/260e.svg new file mode 100644 index 00000000000..2be32eb0aaf --- /dev/null +++ b/public/emoji/260e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2611.svg b/public/emoji/2611.svg new file mode 100644 index 00000000000..42ff8d45545 --- /dev/null +++ b/public/emoji/2611.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2614.svg b/public/emoji/2614.svg new file mode 100644 index 00000000000..01ad0ed439a --- /dev/null +++ b/public/emoji/2614.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2615.svg b/public/emoji/2615.svg new file mode 100644 index 00000000000..cd98ff4a235 --- /dev/null +++ b/public/emoji/2615.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2618.svg b/public/emoji/2618.svg new file mode 100644 index 00000000000..d9a9acd4711 --- /dev/null +++ b/public/emoji/2618.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/261d-1f3fb.svg b/public/emoji/261d-1f3fb.svg new file mode 100644 index 00000000000..6a8b95a1044 --- /dev/null +++ b/public/emoji/261d-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/261d-1f3fc.svg b/public/emoji/261d-1f3fc.svg new file mode 100644 index 00000000000..d43f1a7b3ac --- /dev/null +++ b/public/emoji/261d-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/261d-1f3fd.svg b/public/emoji/261d-1f3fd.svg new file mode 100644 index 00000000000..c548d5dbb5f --- /dev/null +++ b/public/emoji/261d-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/261d-1f3fe.svg b/public/emoji/261d-1f3fe.svg new file mode 100644 index 00000000000..4b63a6b24f9 --- /dev/null +++ b/public/emoji/261d-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/261d-1f3ff.svg b/public/emoji/261d-1f3ff.svg new file mode 100644 index 00000000000..e422854ac67 --- /dev/null +++ b/public/emoji/261d-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/261d.svg b/public/emoji/261d.svg new file mode 100644 index 00000000000..2d47296e536 --- /dev/null +++ b/public/emoji/261d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2620.svg b/public/emoji/2620.svg new file mode 100644 index 00000000000..c8858de6ef2 --- /dev/null +++ b/public/emoji/2620.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2622.svg b/public/emoji/2622.svg new file mode 100644 index 00000000000..b2068336e16 --- /dev/null +++ b/public/emoji/2622.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2623.svg b/public/emoji/2623.svg new file mode 100644 index 00000000000..60a22e51b72 --- /dev/null +++ b/public/emoji/2623.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2626.svg b/public/emoji/2626.svg new file mode 100644 index 00000000000..cc62ecdb01b --- /dev/null +++ b/public/emoji/2626.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/262a.svg b/public/emoji/262a.svg new file mode 100644 index 00000000000..87fd9c7040d --- /dev/null +++ b/public/emoji/262a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/262e.svg b/public/emoji/262e.svg new file mode 100644 index 00000000000..01a035a5567 --- /dev/null +++ b/public/emoji/262e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/262f.svg b/public/emoji/262f.svg new file mode 100644 index 00000000000..e232b66922f --- /dev/null +++ b/public/emoji/262f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2638.svg b/public/emoji/2638.svg new file mode 100644 index 00000000000..8c09aa21ad3 --- /dev/null +++ b/public/emoji/2638.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2639.svg b/public/emoji/2639.svg new file mode 100644 index 00000000000..ead0eb5b3b1 --- /dev/null +++ b/public/emoji/2639.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/263a.svg b/public/emoji/263a.svg new file mode 100644 index 00000000000..f8a5cb762d0 --- /dev/null +++ b/public/emoji/263a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2648.svg b/public/emoji/2648.svg new file mode 100644 index 00000000000..f85279e5735 --- /dev/null +++ b/public/emoji/2648.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2649.svg b/public/emoji/2649.svg new file mode 100644 index 00000000000..a569cb32ba3 --- /dev/null +++ b/public/emoji/2649.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/264a.svg b/public/emoji/264a.svg new file mode 100644 index 00000000000..f87603f68e4 --- /dev/null +++ b/public/emoji/264a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/264b.svg b/public/emoji/264b.svg new file mode 100644 index 00000000000..703fda7ffe0 --- /dev/null +++ b/public/emoji/264b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/264c.svg b/public/emoji/264c.svg new file mode 100644 index 00000000000..e5a2ad1c494 --- /dev/null +++ b/public/emoji/264c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/264d.svg b/public/emoji/264d.svg new file mode 100644 index 00000000000..24f569cc707 --- /dev/null +++ b/public/emoji/264d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/264e.svg b/public/emoji/264e.svg new file mode 100644 index 00000000000..a7c8e0a7106 --- /dev/null +++ b/public/emoji/264e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/264f.svg b/public/emoji/264f.svg new file mode 100644 index 00000000000..78de283a6b7 --- /dev/null +++ b/public/emoji/264f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2650.svg b/public/emoji/2650.svg new file mode 100644 index 00000000000..0e7fcde6e60 --- /dev/null +++ b/public/emoji/2650.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2651.svg b/public/emoji/2651.svg new file mode 100644 index 00000000000..d6320965567 --- /dev/null +++ b/public/emoji/2651.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2652.svg b/public/emoji/2652.svg new file mode 100644 index 00000000000..7b262f869dc --- /dev/null +++ b/public/emoji/2652.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2653.svg b/public/emoji/2653.svg new file mode 100644 index 00000000000..d50acfc8938 --- /dev/null +++ b/public/emoji/2653.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2660.svg b/public/emoji/2660.svg new file mode 100644 index 00000000000..0d9699bd5f4 --- /dev/null +++ b/public/emoji/2660.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2663.svg b/public/emoji/2663.svg new file mode 100644 index 00000000000..2ee52dd62f8 --- /dev/null +++ b/public/emoji/2663.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2665.svg b/public/emoji/2665.svg new file mode 100644 index 00000000000..6659eb13c85 --- /dev/null +++ b/public/emoji/2665.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/2666.svg b/public/emoji/2666.svg new file mode 100644 index 00000000000..654b2f4b632 --- /dev/null +++ b/public/emoji/2666.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2668.svg b/public/emoji/2668.svg new file mode 100644 index 00000000000..e65cbcb1a0e --- /dev/null +++ b/public/emoji/2668.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/267b.svg b/public/emoji/267b.svg new file mode 100644 index 00000000000..7d80b6fe73f --- /dev/null +++ b/public/emoji/267b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/267f.svg b/public/emoji/267f.svg new file mode 100644 index 00000000000..3ee86eb6cad --- /dev/null +++ b/public/emoji/267f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2692.svg b/public/emoji/2692.svg new file mode 100644 index 00000000000..10516b7bf53 --- /dev/null +++ b/public/emoji/2692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2693.svg b/public/emoji/2693.svg new file mode 100644 index 00000000000..b5f5418d10a --- /dev/null +++ b/public/emoji/2693.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2694.svg b/public/emoji/2694.svg new file mode 100644 index 00000000000..368fdc05415 --- /dev/null +++ b/public/emoji/2694.svg @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/public/emoji/2696.svg b/public/emoji/2696.svg new file mode 100644 index 00000000000..c8042bbcbc0 --- /dev/null +++ b/public/emoji/2696.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2697.svg b/public/emoji/2697.svg new file mode 100644 index 00000000000..6e63dacb8f7 --- /dev/null +++ b/public/emoji/2697.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2699.svg b/public/emoji/2699.svg new file mode 100644 index 00000000000..9230ed01a4a --- /dev/null +++ b/public/emoji/2699.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/269b.svg b/public/emoji/269b.svg new file mode 100644 index 00000000000..0b02d3cd4cb --- /dev/null +++ b/public/emoji/269b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/269c.svg b/public/emoji/269c.svg new file mode 100644 index 00000000000..ce5bad9515f --- /dev/null +++ b/public/emoji/269c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26a0.svg b/public/emoji/26a0.svg new file mode 100644 index 00000000000..e6b14203c28 --- /dev/null +++ b/public/emoji/26a0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26a1.svg b/public/emoji/26a1.svg new file mode 100644 index 00000000000..ac811c568ce --- /dev/null +++ b/public/emoji/26a1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26aa.svg b/public/emoji/26aa.svg new file mode 100644 index 00000000000..fb39d3ebbd4 --- /dev/null +++ b/public/emoji/26aa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26ab.svg b/public/emoji/26ab.svg new file mode 100644 index 00000000000..137a56b1f5e --- /dev/null +++ b/public/emoji/26ab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26b0.svg b/public/emoji/26b0.svg new file mode 100644 index 00000000000..8fb8eb11776 --- /dev/null +++ b/public/emoji/26b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26b1.svg b/public/emoji/26b1.svg new file mode 100644 index 00000000000..a752a318320 --- /dev/null +++ b/public/emoji/26b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26bd.svg b/public/emoji/26bd.svg new file mode 100644 index 00000000000..dc2380edd38 --- /dev/null +++ b/public/emoji/26bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26be.svg b/public/emoji/26be.svg new file mode 100644 index 00000000000..efe314bc6ac --- /dev/null +++ b/public/emoji/26be.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26c4.svg b/public/emoji/26c4.svg new file mode 100644 index 00000000000..3d083f6ce6f --- /dev/null +++ b/public/emoji/26c4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26c5.svg b/public/emoji/26c5.svg new file mode 100644 index 00000000000..ea9730cc161 --- /dev/null +++ b/public/emoji/26c5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26c8.svg b/public/emoji/26c8.svg new file mode 100644 index 00000000000..03409bb69c2 --- /dev/null +++ b/public/emoji/26c8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26ce.svg b/public/emoji/26ce.svg new file mode 100644 index 00000000000..bacb7e3e8af --- /dev/null +++ b/public/emoji/26ce.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26cf.svg b/public/emoji/26cf.svg new file mode 100644 index 00000000000..3c30f7f3c96 --- /dev/null +++ b/public/emoji/26cf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26d1.svg b/public/emoji/26d1.svg new file mode 100644 index 00000000000..bcdd92d6836 --- /dev/null +++ b/public/emoji/26d1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26d3.svg b/public/emoji/26d3.svg new file mode 100644 index 00000000000..a34973b8c2b --- /dev/null +++ b/public/emoji/26d3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26d4.svg b/public/emoji/26d4.svg new file mode 100644 index 00000000000..61545291b14 --- /dev/null +++ b/public/emoji/26d4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26e9.svg b/public/emoji/26e9.svg new file mode 100644 index 00000000000..570b46d8995 --- /dev/null +++ b/public/emoji/26e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26ea.svg b/public/emoji/26ea.svg new file mode 100644 index 00000000000..6d8236c253a --- /dev/null +++ b/public/emoji/26ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f0.svg b/public/emoji/26f0.svg new file mode 100644 index 00000000000..ae954cfb076 --- /dev/null +++ b/public/emoji/26f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f1.svg b/public/emoji/26f1.svg new file mode 100644 index 00000000000..641b4551d0d --- /dev/null +++ b/public/emoji/26f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f2.svg b/public/emoji/26f2.svg new file mode 100644 index 00000000000..377ecf84299 --- /dev/null +++ b/public/emoji/26f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f3.svg b/public/emoji/26f3.svg new file mode 100644 index 00000000000..cd35a12deba --- /dev/null +++ b/public/emoji/26f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f4.svg b/public/emoji/26f4.svg new file mode 100644 index 00000000000..306970ebc32 --- /dev/null +++ b/public/emoji/26f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f5.svg b/public/emoji/26f5.svg new file mode 100644 index 00000000000..e69f924b9d5 --- /dev/null +++ b/public/emoji/26f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f7.svg b/public/emoji/26f7.svg new file mode 100644 index 00000000000..a9fb9b84df2 --- /dev/null +++ b/public/emoji/26f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f8.svg b/public/emoji/26f8.svg new file mode 100644 index 00000000000..60adcaf3c61 --- /dev/null +++ b/public/emoji/26f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f9-1f3fb.svg b/public/emoji/26f9-1f3fb.svg new file mode 100644 index 00000000000..480994ca90b --- /dev/null +++ b/public/emoji/26f9-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f9-1f3fc.svg b/public/emoji/26f9-1f3fc.svg new file mode 100644 index 00000000000..dd18a65d3b8 --- /dev/null +++ b/public/emoji/26f9-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f9-1f3fd.svg b/public/emoji/26f9-1f3fd.svg new file mode 100644 index 00000000000..0af260864d8 --- /dev/null +++ b/public/emoji/26f9-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f9-1f3fe.svg b/public/emoji/26f9-1f3fe.svg new file mode 100644 index 00000000000..b0b9d364205 --- /dev/null +++ b/public/emoji/26f9-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f9-1f3ff.svg b/public/emoji/26f9-1f3ff.svg new file mode 100644 index 00000000000..f7ee9300db1 --- /dev/null +++ b/public/emoji/26f9-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f9.svg b/public/emoji/26f9.svg new file mode 100644 index 00000000000..ad4502b1493 --- /dev/null +++ b/public/emoji/26f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26fa.svg b/public/emoji/26fa.svg new file mode 100644 index 00000000000..73bb5136fdb --- /dev/null +++ b/public/emoji/26fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26fd.svg b/public/emoji/26fd.svg new file mode 100644 index 00000000000..cfc136ba861 --- /dev/null +++ b/public/emoji/26fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2702.svg b/public/emoji/2702.svg new file mode 100644 index 00000000000..a5e934da6d1 --- /dev/null +++ b/public/emoji/2702.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2705.svg b/public/emoji/2705.svg new file mode 100644 index 00000000000..4f0474ade55 --- /dev/null +++ b/public/emoji/2705.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2708.svg b/public/emoji/2708.svg new file mode 100644 index 00000000000..92d5f73194c --- /dev/null +++ b/public/emoji/2708.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2709.svg b/public/emoji/2709.svg new file mode 100644 index 00000000000..4337c482eb4 --- /dev/null +++ b/public/emoji/2709.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270a-1f3fb.svg b/public/emoji/270a-1f3fb.svg new file mode 100644 index 00000000000..425a770958b --- /dev/null +++ b/public/emoji/270a-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270a-1f3fc.svg b/public/emoji/270a-1f3fc.svg new file mode 100644 index 00000000000..64c091bdab8 --- /dev/null +++ b/public/emoji/270a-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270a-1f3fd.svg b/public/emoji/270a-1f3fd.svg new file mode 100644 index 00000000000..ac29bb90cb2 --- /dev/null +++ b/public/emoji/270a-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270a-1f3fe.svg b/public/emoji/270a-1f3fe.svg new file mode 100644 index 00000000000..6b2ae91c60a --- /dev/null +++ b/public/emoji/270a-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270a-1f3ff.svg b/public/emoji/270a-1f3ff.svg new file mode 100644 index 00000000000..ab9f9952ec9 --- /dev/null +++ b/public/emoji/270a-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270a.svg b/public/emoji/270a.svg new file mode 100644 index 00000000000..7f6e6cee724 --- /dev/null +++ b/public/emoji/270a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270b-1f3fb.svg b/public/emoji/270b-1f3fb.svg new file mode 100644 index 00000000000..5345aea1354 --- /dev/null +++ b/public/emoji/270b-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270b-1f3fc.svg b/public/emoji/270b-1f3fc.svg new file mode 100644 index 00000000000..99d1359be75 --- /dev/null +++ b/public/emoji/270b-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270b-1f3fd.svg b/public/emoji/270b-1f3fd.svg new file mode 100644 index 00000000000..258c678f944 --- /dev/null +++ b/public/emoji/270b-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270b-1f3fe.svg b/public/emoji/270b-1f3fe.svg new file mode 100644 index 00000000000..3b7b55ff50c --- /dev/null +++ b/public/emoji/270b-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270b-1f3ff.svg b/public/emoji/270b-1f3ff.svg new file mode 100644 index 00000000000..b1e851268ac --- /dev/null +++ b/public/emoji/270b-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270b.svg b/public/emoji/270b.svg new file mode 100644 index 00000000000..8aca81b82b3 --- /dev/null +++ b/public/emoji/270b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270c-1f3fb.svg b/public/emoji/270c-1f3fb.svg new file mode 100644 index 00000000000..2053e46dc4e --- /dev/null +++ b/public/emoji/270c-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270c-1f3fc.svg b/public/emoji/270c-1f3fc.svg new file mode 100644 index 00000000000..7be61714c93 --- /dev/null +++ b/public/emoji/270c-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270c-1f3fd.svg b/public/emoji/270c-1f3fd.svg new file mode 100644 index 00000000000..fb5387e1058 --- /dev/null +++ b/public/emoji/270c-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270c-1f3fe.svg b/public/emoji/270c-1f3fe.svg new file mode 100644 index 00000000000..2b8a95d8e6d --- /dev/null +++ b/public/emoji/270c-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270c-1f3ff.svg b/public/emoji/270c-1f3ff.svg new file mode 100644 index 00000000000..8d41bbcdc42 --- /dev/null +++ b/public/emoji/270c-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270c.svg b/public/emoji/270c.svg new file mode 100644 index 00000000000..78682b572ef --- /dev/null +++ b/public/emoji/270c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270d-1f3fb.svg b/public/emoji/270d-1f3fb.svg new file mode 100644 index 00000000000..438ab1a8ad4 --- /dev/null +++ b/public/emoji/270d-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270d-1f3fc.svg b/public/emoji/270d-1f3fc.svg new file mode 100644 index 00000000000..3ff16a807c6 --- /dev/null +++ b/public/emoji/270d-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270d-1f3fd.svg b/public/emoji/270d-1f3fd.svg new file mode 100644 index 00000000000..57884c07e5c --- /dev/null +++ b/public/emoji/270d-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270d-1f3fe.svg b/public/emoji/270d-1f3fe.svg new file mode 100644 index 00000000000..089e890d5d9 --- /dev/null +++ b/public/emoji/270d-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270d-1f3ff.svg b/public/emoji/270d-1f3ff.svg new file mode 100644 index 00000000000..863dbaae551 --- /dev/null +++ b/public/emoji/270d-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270d.svg b/public/emoji/270d.svg new file mode 100644 index 00000000000..9370c8c3902 --- /dev/null +++ b/public/emoji/270d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270f.svg b/public/emoji/270f.svg new file mode 100644 index 00000000000..55eec77285b --- /dev/null +++ b/public/emoji/270f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2712.svg b/public/emoji/2712.svg new file mode 100644 index 00000000000..28a3968a725 --- /dev/null +++ b/public/emoji/2712.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/2714.svg b/public/emoji/2714.svg new file mode 100644 index 00000000000..20a08261830 --- /dev/null +++ b/public/emoji/2714.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2716.svg b/public/emoji/2716.svg new file mode 100644 index 00000000000..1117a759586 --- /dev/null +++ b/public/emoji/2716.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/271d.svg b/public/emoji/271d.svg new file mode 100644 index 00000000000..850e144406a --- /dev/null +++ b/public/emoji/271d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2721.svg b/public/emoji/2721.svg new file mode 100644 index 00000000000..073f6042919 --- /dev/null +++ b/public/emoji/2721.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2728.svg b/public/emoji/2728.svg new file mode 100644 index 00000000000..37c088090c5 --- /dev/null +++ b/public/emoji/2728.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2733.svg b/public/emoji/2733.svg new file mode 100644 index 00000000000..fc0a0d5cc0a --- /dev/null +++ b/public/emoji/2733.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2734.svg b/public/emoji/2734.svg new file mode 100644 index 00000000000..c8f50edc768 --- /dev/null +++ b/public/emoji/2734.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2744.svg b/public/emoji/2744.svg new file mode 100644 index 00000000000..145818394d1 --- /dev/null +++ b/public/emoji/2744.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2747.svg b/public/emoji/2747.svg new file mode 100644 index 00000000000..9c179d6ea31 --- /dev/null +++ b/public/emoji/2747.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/274c.svg b/public/emoji/274c.svg new file mode 100644 index 00000000000..5f60701d2ac --- /dev/null +++ b/public/emoji/274c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/274e.svg b/public/emoji/274e.svg new file mode 100644 index 00000000000..b65d3ec9e9e --- /dev/null +++ b/public/emoji/274e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2753.svg b/public/emoji/2753.svg new file mode 100644 index 00000000000..d4b28c81cbb --- /dev/null +++ b/public/emoji/2753.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2754.svg b/public/emoji/2754.svg new file mode 100644 index 00000000000..d04a83c3117 --- /dev/null +++ b/public/emoji/2754.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2755.svg b/public/emoji/2755.svg new file mode 100644 index 00000000000..714e2103fff --- /dev/null +++ b/public/emoji/2755.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2757.svg b/public/emoji/2757.svg new file mode 100644 index 00000000000..d064e7e1255 --- /dev/null +++ b/public/emoji/2757.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2763.svg b/public/emoji/2763.svg new file mode 100644 index 00000000000..df6ebedfb17 --- /dev/null +++ b/public/emoji/2763.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2764.svg b/public/emoji/2764.svg new file mode 100644 index 00000000000..12c6742e251 --- /dev/null +++ b/public/emoji/2764.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2795.svg b/public/emoji/2795.svg new file mode 100644 index 00000000000..c572fec5c02 --- /dev/null +++ b/public/emoji/2795.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2796.svg b/public/emoji/2796.svg new file mode 100644 index 00000000000..844614dd607 --- /dev/null +++ b/public/emoji/2796.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2797.svg b/public/emoji/2797.svg new file mode 100644 index 00000000000..8b3945c9c57 --- /dev/null +++ b/public/emoji/2797.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/27a1.svg b/public/emoji/27a1.svg new file mode 100644 index 00000000000..125d7d47f5c --- /dev/null +++ b/public/emoji/27a1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/27b0.svg b/public/emoji/27b0.svg new file mode 100644 index 00000000000..5bf1eac01a2 --- /dev/null +++ b/public/emoji/27b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/27bf.svg b/public/emoji/27bf.svg new file mode 100644 index 00000000000..83d211d28bd --- /dev/null +++ b/public/emoji/27bf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2934.svg b/public/emoji/2934.svg new file mode 100644 index 00000000000..2d7a211d1ff --- /dev/null +++ b/public/emoji/2934.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2935.svg b/public/emoji/2935.svg new file mode 100644 index 00000000000..00a8a92ab38 --- /dev/null +++ b/public/emoji/2935.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2b05.svg b/public/emoji/2b05.svg new file mode 100644 index 00000000000..9583aec7fca --- /dev/null +++ b/public/emoji/2b05.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2b06.svg b/public/emoji/2b06.svg new file mode 100644 index 00000000000..efa332284ab --- /dev/null +++ b/public/emoji/2b06.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2b07.svg b/public/emoji/2b07.svg new file mode 100644 index 00000000000..bbd2213f8c4 --- /dev/null +++ b/public/emoji/2b07.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2b1b.svg b/public/emoji/2b1b.svg new file mode 100644 index 00000000000..b908105f3f1 --- /dev/null +++ b/public/emoji/2b1b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2b1c.svg b/public/emoji/2b1c.svg new file mode 100644 index 00000000000..a58c77bd042 --- /dev/null +++ b/public/emoji/2b1c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2b50.svg b/public/emoji/2b50.svg new file mode 100644 index 00000000000..487bf321c6c --- /dev/null +++ b/public/emoji/2b50.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2b55.svg b/public/emoji/2b55.svg new file mode 100644 index 00000000000..46265062f13 --- /dev/null +++ b/public/emoji/2b55.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/3030.svg b/public/emoji/3030.svg new file mode 100644 index 00000000000..ce6c0059940 --- /dev/null +++ b/public/emoji/3030.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/303d.svg b/public/emoji/303d.svg new file mode 100644 index 00000000000..3b7e1508aa4 --- /dev/null +++ b/public/emoji/303d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/3297.svg b/public/emoji/3297.svg new file mode 100644 index 00000000000..c57b1ab8a4b --- /dev/null +++ b/public/emoji/3297.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/3299.svg b/public/emoji/3299.svg new file mode 100644 index 00000000000..3e750322ec2 --- /dev/null +++ b/public/emoji/3299.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/yarn.lock b/yarn.lock index 0904354e952..6a3a36270fa 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2297,7 +2297,7 @@ emojione-picker@^2.0.1: react-virtualized "^8.11.4" store "^1.3.20" -emojione@^2.2.6, emojione@latest: +emojione@^2.2.6, emojione@^2.2.7: version "2.2.7" resolved "https://registry.yarnpkg.com/emojione/-/emojione-2.2.7.tgz#46457cf6b9b2f8da13ae8a2e4e547de06ee15e96"