cd-aichat 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +188 -0
- package/dist/ailogo.png +0 -0
- package/dist/cd-aichat.css +1 -0
- package/dist/cd-aichat.es.js +32223 -0
- package/dist/cd-aichat.umd.js +279 -0
- package/dist/index.css +1 -0
- package/package.json +61 -0
- package/src/ailogo.png +0 -0
- package/src/components/AiChat.test.js +538 -0
- package/src/components/AiChat.vue +2206 -0
- package/src/components/AiChatWidget.test.js +312 -0
- package/src/components/AiChatWidget.vue +963 -0
- package/src/components/BurnAfterReadDialog.test.js +121 -0
- package/src/components/BurnAfterReadDialog.vue +511 -0
- package/src/components/BurnAfterReadMessage.test.js +188 -0
- package/src/components/BurnAfterReadMessage.vue +193 -0
- package/src/components/BurnIndicator.test.js +101 -0
- package/src/components/BurnIndicator.vue +164 -0
- package/src/components/ChatWindow.vue +0 -0
- package/src/components/MentionList.vue +163 -0
- package/src/components/ResourceList.vue +194 -0
- package/src/components/RichTextEditor.vue +437 -0
- package/src/components/ScheduledSendDialog.vue +476 -0
- package/src/components/ScreenshotOverlay.vue +78 -0
- package/src/components/SendButtonGroup.test.js +174 -0
- package/src/components/SendButtonGroup.vue +166 -0
- package/src/components/UserDrawer.vue +0 -0
- package/src/components/screenshot/ScreenshotsBackground/getBoundsByPoints.ts +41 -0
- package/src/components/screenshot/ScreenshotsBackground/index.scss +27 -0
- package/src/components/screenshot/ScreenshotsBackground/index.tsx +145 -0
- package/src/components/screenshot/ScreenshotsButton/index.scss +29 -0
- package/src/components/screenshot/ScreenshotsButton/index.tsx +58 -0
- package/src/components/screenshot/ScreenshotsCanvas/getBoundsByPoints.ts +55 -0
- package/src/components/screenshot/ScreenshotsCanvas/getPoints.ts +60 -0
- package/src/components/screenshot/ScreenshotsCanvas/index.scss +84 -0
- package/src/components/screenshot/ScreenshotsCanvas/index.tsx +277 -0
- package/src/components/screenshot/ScreenshotsCanvas/isPointInDraw.ts +35 -0
- package/src/components/screenshot/ScreenshotsColor/index.scss +45 -0
- package/src/components/screenshot/ScreenshotsColor/index.tsx +39 -0
- package/src/components/screenshot/ScreenshotsContext.ts +56 -0
- package/src/components/screenshot/ScreenshotsMagnifier/index.scss +61 -0
- package/src/components/screenshot/ScreenshotsMagnifier/index.tsx +126 -0
- package/src/components/screenshot/ScreenshotsOperations/index.scss +25 -0
- package/src/components/screenshot/ScreenshotsOperations/index.tsx +118 -0
- package/src/components/screenshot/ScreenshotsOption/index.scss +50 -0
- package/src/components/screenshot/ScreenshotsOption/index.tsx +150 -0
- package/src/components/screenshot/ScreenshotsSize/index.scss +28 -0
- package/src/components/screenshot/ScreenshotsSize/index.tsx +41 -0
- package/src/components/screenshot/ScreenshotsSizeColor/index.scss +8 -0
- package/src/components/screenshot/ScreenshotsSizeColor/index.tsx +25 -0
- package/src/components/screenshot/ScreenshotsTextarea/calculateNodeSize.ts +117 -0
- package/src/components/screenshot/ScreenshotsTextarea/index.scss +19 -0
- package/src/components/screenshot/ScreenshotsTextarea/index.tsx +96 -0
- package/src/components/screenshot/composeImage.ts +57 -0
- package/src/components/screenshot/exports.ts +4 -0
- package/src/components/screenshot/hooks/useBounds.ts +35 -0
- package/src/components/screenshot/hooks/useCall.ts +17 -0
- package/src/components/screenshot/hooks/useCanvasContextRef.ts +8 -0
- package/src/components/screenshot/hooks/useCanvasMousedown.ts +13 -0
- package/src/components/screenshot/hooks/useCanvasMousemove.ts +13 -0
- package/src/components/screenshot/hooks/useCanvasMouseup.ts +13 -0
- package/src/components/screenshot/hooks/useCursor.ts +34 -0
- package/src/components/screenshot/hooks/useDispatcher.ts +8 -0
- package/src/components/screenshot/hooks/useDrawSelect.ts +16 -0
- package/src/components/screenshot/hooks/useEmiter.ts +61 -0
- package/src/components/screenshot/hooks/useHistory.ts +160 -0
- package/src/components/screenshot/hooks/useLang.ts +8 -0
- package/src/components/screenshot/hooks/useOperation.ts +37 -0
- package/src/components/screenshot/hooks/useReset.ts +26 -0
- package/src/components/screenshot/hooks/useStore.ts +8 -0
- package/src/components/screenshot/icons/iconfont.scss +88 -0
- package/src/components/screenshot/icons/iconfont.ttf +0 -0
- package/src/components/screenshot/icons/iconfont.woff +0 -0
- package/src/components/screenshot/icons/iconfont.woff2 +0 -0
- package/src/components/screenshot/index.tsx +169 -0
- package/src/components/screenshot/operations/Arrow/draw.ts +56 -0
- package/src/components/screenshot/operations/Arrow/index.tsx +193 -0
- package/src/components/screenshot/operations/Brush/draw.ts +45 -0
- package/src/components/screenshot/operations/Brush/index.tsx +169 -0
- package/src/components/screenshot/operations/Cancel/index.tsx +18 -0
- package/src/components/screenshot/operations/Ellipse/draw.ts +96 -0
- package/src/components/screenshot/operations/Ellipse/index.tsx +245 -0
- package/src/components/screenshot/operations/Mosaic/index.tsx +223 -0
- package/src/components/screenshot/operations/Ok/index.tsx +37 -0
- package/src/components/screenshot/operations/Pin/index.tsx +37 -0
- package/src/components/screenshot/operations/Rectangle/draw.ts +80 -0
- package/src/components/screenshot/operations/Rectangle/index.tsx +245 -0
- package/src/components/screenshot/operations/Redo/index.tsx +22 -0
- package/src/components/screenshot/operations/Save/index.tsx +37 -0
- package/src/components/screenshot/operations/Scan/index.tsx +46 -0
- package/src/components/screenshot/operations/Search/index.tsx +39 -0
- package/src/components/screenshot/operations/Text/index.tsx +307 -0
- package/src/components/screenshot/operations/Undo/index.tsx +22 -0
- package/src/components/screenshot/operations/index.ts +34 -0
- package/src/components/screenshot/operations/utils.ts +34 -0
- package/src/components/screenshot/screenshots.scss +13 -0
- package/src/components/screenshot/types.ts +53 -0
- package/src/components/screenshot/useGetLoadedImage.ts +29 -0
- package/src/components/screenshot/var.scss +107 -0
- package/src/components/screenshot/zh_CN.ts +37 -0
- package/src/emoji/100.gif +0 -0
- package/src/emoji/101.gif +0 -0
- package/src/emoji/102.gif +0 -0
- package/src/emoji/103.gif +0 -0
- package/src/emoji/104.gif +0 -0
- package/src/emoji/105.gif +0 -0
- package/src/emoji/106.gif +0 -0
- package/src/emoji/107.gif +0 -0
- package/src/emoji/108.gif +0 -0
- package/src/emoji/109.gif +0 -0
- package/src/emoji/110.gif +0 -0
- package/src/emoji/111.gif +0 -0
- package/src/emoji/112.gif +0 -0
- package/src/emoji/113.gif +0 -0
- package/src/emoji/114.gif +0 -0
- package/src/emoji/115.gif +0 -0
- package/src/emoji/116.gif +0 -0
- package/src/emoji/117.gif +0 -0
- package/src/emoji/118.gif +0 -0
- package/src/emoji/119.gif +0 -0
- package/src/emoji/120.gif +0 -0
- package/src/emoji/121.gif +0 -0
- package/src/emoji/122.gif +0 -0
- package/src/emoji/123.gif +0 -0
- package/src/emoji/124.gif +0 -0
- package/src/emoji/125.gif +0 -0
- package/src/emoji/126.gif +0 -0
- package/src/emoji/127.gif +0 -0
- package/src/emoji/128.gif +0 -0
- package/src/emoji/129.gif +0 -0
- package/src/emoji/130.gif +0 -0
- package/src/emoji/131.gif +0 -0
- package/src/emoji/132.gif +0 -0
- package/src/emoji/133.gif +0 -0
- package/src/emoji/134.gif +0 -0
- package/src/emoji/135.gif +0 -0
- package/src/emoji/136.gif +0 -0
- package/src/emoji/137.gif +0 -0
- package/src/emoji/138.gif +0 -0
- package/src/emoji/139.gif +0 -0
- package/src/emoji/140.gif +0 -0
- package/src/emoji/141.gif +0 -0
- package/src/emoji/142.gif +0 -0
- package/src/emoji/143.gif +0 -0
- package/src/emoji/144.gif +0 -0
- package/src/emoji/145.gif +0 -0
- package/src/emoji/146.gif +0 -0
- package/src/emoji/147.gif +0 -0
- package/src/emoji/148.gif +0 -0
- package/src/emoji/149.gif +0 -0
- package/src/emoji/150.gif +0 -0
- package/src/emoji/151.gif +0 -0
- package/src/emoji/152.gif +0 -0
- package/src/emoji/153.gif +0 -0
- package/src/emoji/154.gif +0 -0
- package/src/emoji/155.gif +0 -0
- package/src/emoji/156.gif +0 -0
- package/src/emoji/157.gif +0 -0
- package/src/emoji/158.gif +0 -0
- package/src/emoji/159.gif +0 -0
- package/src/emoji/160.gif +0 -0
- package/src/emoji/161.gif +0 -0
- package/src/emoji/162.gif +0 -0
- package/src/emoji/163.gif +0 -0
- package/src/emoji/164.gif +0 -0
- package/src/emoji/165.gif +0 -0
- package/src/emoji/166.gif +0 -0
- package/src/emoji/167.gif +0 -0
- package/src/emoji/168.gif +0 -0
- package/src/emoji/169.gif +0 -0
- package/src/emoji/170.gif +0 -0
- package/src/emoji/171.gif +0 -0
- package/src/emoji/172.gif +0 -0
- package/src/emoji/173.gif +0 -0
- package/src/emoji/174.gif +0 -0
- package/src/emoji/175.gif +0 -0
- package/src/emoji/176.gif +0 -0
- package/src/emoji/177.gif +0 -0
- package/src/emoji/178.gif +0 -0
- package/src/emoji/179.gif +0 -0
- package/src/emoji/180.gif +0 -0
- package/src/emoji/181.gif +0 -0
- package/src/emoji/182.gif +0 -0
- package/src/emoji/183.gif +0 -0
- package/src/emoji/184.gif +0 -0
- package/src/emoji/185.gif +0 -0
- package/src/emoji/186.gif +0 -0
- package/src/emoji/187.gif +0 -0
- package/src/emoji/188.gif +0 -0
- package/src/emoji/189.gif +0 -0
- package/src/emoji/190.gif +0 -0
- package/src/emoji/191.gif +0 -0
- package/src/emoji/192.gif +0 -0
- package/src/emoji/193.gif +0 -0
- package/src/emoji/194.gif +0 -0
- package/src/emoji/195.gif +0 -0
- package/src/emoji/196.gif +0 -0
- package/src/emoji/197.gif +0 -0
- package/src/emoji/198.gif +0 -0
- package/src/emoji/199.gif +0 -0
- package/src/emoji/200.png +0 -0
- package/src/emoji/201.png +0 -0
- package/src/emoji/202.png +0 -0
- package/src/emoji/203.png +0 -0
- package/src/emoji/204.png +0 -0
- package/src/emoji/205.png +0 -0
- package/src/emoji/206.png +0 -0
- package/src/emoji/207.png +0 -0
- package/src/emoji/208.png +0 -0
- package/src/emoji/209.png +0 -0
- package/src/emoji/210.png +0 -0
- package/src/emoji/211.png +0 -0
- package/src/emoji/212.png +0 -0
- package/src/emoji/213.png +0 -0
- package/src/emoji/214.png +0 -0
- package/src/emoji/215.png +0 -0
- package/src/emoji/216.png +0 -0
- package/src/emoji/217.png +0 -0
- package/src/emoji/218.png +0 -0
- package/src/emoji/219.png +0 -0
- package/src/emoji2/101--Streamline-The-Team.png +0 -0
- package/src/emoji2/128--Streamline-The-Team.png +0 -0
- package/src/emoji2/134--Streamline-The-Team.png +0 -0
- package/src/emoji2/173--Streamline-The-Team.png +0 -0
- package/src/emoji2/Airplane--Streamline-Emoji.svg +24 -0
- package/src/emoji2/Alien--Streamline-Emoji.svg +21 -0
- package/src/emoji2/Amazed-Face--Streamline-Emoji.svg +16 -0
- package/src/emoji2/Amusing-Face--Streamline-Emoji.svg +20 -0
- package/src/emoji2/Anguished-Face--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Anxious-Face--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Astonished-Face--Streamline-Emoji.svg +20 -0
- package/src/emoji2/Backhand-Index-Pointing-Down-1--Streamline-Emoji.svg +12 -0
- package/src/emoji2/Backhand-Index-Pointing-Left-1--Streamline-Emoji.svg +13 -0
- package/src/emoji2/Backhand-Index-Pointing-Right-1--Streamline-Emoji.svg +13 -0
- package/src/emoji2/Backhand-Index-Pointing-Up-1--Streamline-Emoji.svg +14 -0
- package/src/emoji2/Bar-Chart--Streamline-Emoji.svg +22 -0
- package/src/emoji2/Beaming-Face-With-Smiling-Eyes--Streamline-Emoji.svg +20 -0
- package/src/emoji2/Boy-1--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Boy-2--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Boy-3--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Broken-Heart--Streamline-Emoji.svg +12 -0
- package/src/emoji2/Clapping-Hands-1--Streamline-Emoji.svg +23 -0
- package/src/emoji2/Clinking-Glasses-2--Streamline-Emoji.svg +43 -0
- package/src/emoji2/Confounded-Face--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Confused-Face--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Construction-Worker--Streamline-Emoji.svg +21 -0
- package/src/emoji2/Couple-With-Heart-Woman-Man-1--Streamline-Emoji.svg +40 -0
- package/src/emoji2/Couple-With-Heart-Woman-Man-2--Streamline-Emoji.svg +40 -0
- package/src/emoji2/Cowboy-Hat-Face--Streamline-Emoji.svg +22 -0
- package/src/emoji2/Crazy-Face--Streamline-Emoji.svg +25 -0
- package/src/emoji2/Crossed-Fingers-1--Streamline-Emoji.svg +25 -0
- package/src/emoji2/Crown--Streamline-Emoji.svg +35 -0
- package/src/emoji2/Crying-Face--Streamline-Emoji.svg +26 -0
- package/src/emoji2/Delivery-Truck--Streamline-Emoji.svg +31 -0
- package/src/emoji2/Determined-Face--Streamline-Emoji.svg +25 -0
- package/src/emoji2/Disappointed-Face--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Dizzy-Face--Streamline-Emoji.svg +20 -0
- package/src/emoji2/Downcast-Face-With-Sweat--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Drooling-Face-1--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Drooling-Face-2--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Ear--Streamline-Emoji.svg +14 -0
- package/src/emoji2/Exclamation-Mark--Streamline-Emoji.svg +12 -0
- package/src/emoji2/Exploding-Head--Streamline-Emoji.svg +24 -0
- package/src/emoji2/Expressionless-Face--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Face-Blowing-A-Kiss--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Face-Savoring-Food--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Face-Screaming-In-Fear--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Face-Vomiting--Streamline-Emoji.svg +28 -0
- package/src/emoji2/Face-With-Head-Bandage--Streamline-Emoji.svg +25 -0
- package/src/emoji2/Face-With-Medical-Mask--Streamline-Emoji.svg +23 -0
- package/src/emoji2/Face-With-Monocle--Streamline-Emoji.svg +26 -0
- package/src/emoji2/Face-With-Raised-Eyebrow--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Face-With-Rolling-Eyes--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Face-With-Steam-From-Nose--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Face-With-Symbols-On-Mouth--Streamline-Emoji.svg +22 -0
- package/src/emoji2/Face-With-Tears-Of-Joy--Streamline-Emoji.svg +34 -0
- package/src/emoji2/Face-With-Thermometer--Streamline-Emoji.svg +31 -0
- package/src/emoji2/Face-With-Tongue--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Face-Without-Mouth--Streamline-Emoji.svg +14 -0
- package/src/emoji2/Fearful-Face--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Flexed-Biceps-1--Streamline-Emoji.svg +13 -0
- package/src/emoji2/Flushed-Face--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Folded-Hands-1--Streamline-Emoji.svg +29 -0
- package/src/emoji2/Frowning-Face--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Fuel-Pump--Streamline-Emoji.svg +30 -0
- package/src/emoji2/Girl-1--Streamline-Emoji.svg +23 -0
- package/src/emoji2/Glasses-1--Streamline-Emoji.svg +27 -0
- package/src/emoji2/Grimacing-Face--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Grinning-Cat-Face--Streamline-Emoji.svg +32 -0
- package/src/emoji2/Grinning-Face--Streamline-Emoji.svg +16 -0
- package/src/emoji2/Grinning-Face-With-Sweat--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Grinning-Squinting-Face--Streamline-Emoji.svg +16 -0
- package/src/emoji2/Hand-With-Fingers-Splayed-1--Streamline-Emoji.svg +14 -0
- package/src/emoji2/Heart-Suit--Streamline-Emoji.svg +9 -0
- package/src/emoji2/Hushed-Face-1--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Hushed-Face-2--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Index-Pointing-Up-1--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Kissing-Face-With-Closed-Eyes--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Loudly-Crying-Face--Streamline-Emoji.svg +16 -0
- package/src/emoji2/Lying-Face--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Man-1--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Man-Facepalming-1--Streamline-Emoji.svg +21 -0
- package/src/emoji2/Man-Gesturing-No-1--Streamline-Emoji.svg +34 -0
- package/src/emoji2/Man-Gesturing-Ok-1--Streamline-Emoji.svg +25 -0
- package/src/emoji2/Man-Health-Worker-1--Streamline-Emoji.svg +41 -0
- package/src/emoji2/Man-Raising-Hand-1--Streamline-Emoji.svg +26 -0
- package/src/emoji2/Man-Shrugging-1--Streamline-Emoji.svg +31 -0
- package/src/emoji2/Money-Mouth-Face-2--Streamline-Emoji.svg +30 -0
- package/src/emoji2/Mouth--Streamline-Emoji.svg +12 -0
- package/src/emoji2/Nauseated-Face-2--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Neutral-Face--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Ok-Hand-1--Streamline-Emoji.svg +14 -0
- package/src/emoji2/Old-Man-1--Streamline-Emoji.svg +27 -0
- package/src/emoji2/Old-Woman-1--Streamline-Emoji.svg +23 -0
- package/src/emoji2/Oncoming-Fist-1--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Person-Wearing-Turban-2--Streamline-Emoji.svg +20 -0
- package/src/emoji2/Pile-Of-Poo--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Police-Car-Light--Streamline-Emoji.svg +26 -0
- package/src/emoji2/Rocket--Streamline-Emoji.svg +32 -0
- package/src/emoji2/Sailboat--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Shaved-Ice--Streamline-Emoji.svg +21 -0
- package/src/emoji2/Shortcake-2--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Shushing-Face--Streamline-Emoji.svg +21 -0
- package/src/emoji2/Sign-Of-The-Horns-1--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Sleeping-Face--Streamline-Emoji.svg +21 -0
- package/src/emoji2/Slightly-Smiling-Face--Streamline-Emoji.svg +15 -0
- package/src/emoji2/Smiling-Face-With-Halo--Streamline-Emoji.svg +20 -0
- package/src/emoji2/Smiling-Face-With-Heart-Eyes--Streamline-Emoji.svg +21 -0
- package/src/emoji2/Smirking-Face--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Sun-With-Face--Streamline-Emoji.svg +24 -0
- package/src/emoji2/Thumbs-Down-1--Streamline-Emoji.svg +20 -0
- package/src/emoji2/Thumbs-Up-1--Streamline-Emoji.svg +19 -0
- package/src/emoji2/Winking-Face--Streamline-Emoji.svg +18 -0
- package/src/emoji2/Woman-Gesturing-No-1--Streamline-Emoji.svg +34 -0
- package/src/emoji2/Woman-Gesturing-Ok-2--Streamline-Emoji.svg +25 -0
- package/src/emoji2/Woman-Raising-Hand-1--Streamline-Emoji.svg +26 -0
- package/src/emoji2/Womans-Sandal--Streamline-Emoji.svg +13 -0
- package/src/emoji2/Worried-Face--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Writing-Hand-1--Streamline-Emoji.svg +17 -0
- package/src/emoji2/Zipper-Mouth-Face--Streamline-Emoji.svg +21 -0
- package/src/index.js +19 -0
- package/src/services/burn-after-read-service.js +313 -0
- package/src/services/burn-after-read-service.test.js +325 -0
- package/src/services/dify-api.js +338 -0
- package/src/services/dify-api.test.js +376 -0
- package/src/services/scheduled-send-service.js +311 -0
- package/src/services/scheduled-send-service.test.js +317 -0
- package/src/styles/index.css +2368 -0
- package/src/utils/emoji.js +125 -0
- package/src/utils/emojiData.js +267 -0
- package/src/utils/eventEmitter.js +114 -0
- package/src/utils/state.js +224 -0
- package/src/utils/state.test.js +198 -0
- package/src/utils/storage.js +122 -0
- package/src/utils/storage.test.js +162 -0
- package/src/utils/validation.js +249 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Man-Gesturing-No-1--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Man Gesturing NO 1 Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M12.666666666666666 59.33333333333333a19.333333333333332 2 0 1 0 38.666666666666664 0 19.333333333333332 2 0 1 0 -38.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 39.626666666666665A15.84 15.84 0 0 1 47.84 55.46666666666667v2.533333333333333H16.159999999999997v-2.533333333333333A15.84 15.84 0 0 1 32 39.626666666666665Z" fill="#00b8f0" stroke-width="1"></path>
|
|
7
|
+
<path d="M32 39.626666666666665A15.84 15.84 0 0 0 16.159999999999997 55.46666666666667v2.533333333333333h0.09333333333333334A15.84 15.84 0 0 1 32 43.906666666666666 15.84 15.84 0 0 1 47.74666666666667 58h0.09333333333333334v-2.533333333333333A15.84 15.84 0 0 0 32 39.626666666666665Z" fill="#009fd9" stroke-width="1"></path>
|
|
8
|
+
<path d="M32 39.626666666666665h0A15.84 15.84 0 0 1 47.84 55.46666666666667v2.533333333333333l0 0H16.159999999999997l0 0v-2.533333333333333A15.84 15.84 0 0 1 32 39.626666666666665Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
9
|
+
<path d="m22.746666666666663 58 0 -3.2133333333333334" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="m41.25333333333333 58 0 -3.2133333333333334" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="m28.613333333333333 34.22666666666667 6.786666666666666 0 0 10.586666666666666 -6.786666666666666 0Z" fill="#ebcb00" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="M32 7.213333333333333a13.106666666666666 13.106666666666666 0 0 0 -3.253333333333333 0.41333333333333333c-2.48 0.5599999999999999 -5.706666666666667 1.4933333333333334 -8.626666666666665 0.9333333333333332a5.6 5.6 0 0 0 1.1199999999999999 4.279999999999999 13.08 13.08 0 0 0 -2.333333333333333 7.466666666666666v6.853333333333333h26.186666666666667v-6.853333333333333A13.093333333333334 13.093333333333334 0 0 0 32 7.213333333333333Z" fill="#724f3d" stroke-width="1"></path>
|
|
13
|
+
<path d="M32 7.213333333333333a13.106666666666666 13.106666666666666 0 0 0 -3.253333333333333 0.41333333333333333c-2.48 0.5599999999999999 -5.706666666666667 1.4933333333333334 -8.626666666666665 0.9333333333333332a5.959999999999999 5.959999999999999 0 0 0 0.9066666666666667 4 25.866666666666664 25.866666666666664 0 0 0 7.72 -1.0533333333333332 13.08 13.08 0 0 1 16.346666666666664 12.68v-3.88A13.093333333333334 13.093333333333334 0 0 0 32 7.213333333333333Z" fill="#a86c4d" stroke-width="1"></path>
|
|
14
|
+
<path d="M32 7.213333333333333a13.106666666666666 13.106666666666666 0 0 0 -3.253333333333333 0.41333333333333333c-2.48 0.5599999999999999 -5.706666666666667 1.4933333333333334 -8.626666666666665 0.9333333333333332a5.6 5.6 0 0 0 1.1199999999999999 4.279999999999999 13.08 13.08 0 0 0 -2.333333333333333 7.466666666666666v6.853333333333333h26.186666666666667v-6.853333333333333A13.093333333333334 13.093333333333334 0 0 0 32 7.213333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M46.493333333333325 26.16a2.44 2.44 0 0 0 -1.853333333333333 -2.0533333333333332l-0.7866666666666666 -0.21333333333333332a2.7466666666666666 2.7466666666666666 0 0 1 -2 -2.6666666666666665v-2.7199999999999998A2.5066666666666664 2.5066666666666664 0 0 0 40 16.093333333333334a20.453333333333333 20.453333333333333 0 0 1 -8 1.4533333333333334 20.453333333333333 20.453333333333333 0 0 1 -8 -1.4533333333333334 2.5066666666666664 2.5066666666666664 0 0 0 -1.8666666666666665 2.413333333333333v2.7466666666666666a2.7466666666666666 2.7466666666666666 0 0 1 -2 2.6666666666666665l-0.7866666666666666 0.21333333333333332a2.44 2.44 0 0 0 -1.853333333333333 2.0533333333333332 2.413333333333333 2.413333333333333 0 0 0 2.413333333333333 2.6666666666666665h0.14666666666666667a12 12 0 0 0 23.866666666666664 0h0.14666666666666667a2.413333333333333 2.413333333333333 0 0 0 2.4266666666666667 -2.6933333333333334Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M24.759999999999998 25.88a1.0266666666666666 1.0266666666666666 0 1 0 1.0266666666666666 -1.0266666666666666 1.0133333333333332 1.0133333333333332 0 0 0 -1.0266666666666666 1.0266666666666666Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
<path d="M39.239999999999995 25.88a1.0266666666666666 1.0266666666666666 0 1 1 -1.0266666666666666 -1.0266666666666666 1.0133333333333332 1.0133333333333332 0 0 1 1.0266666666666666 1.0266666666666666Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
18
|
+
<path d="M22.746666666666663 30.253333333333334a1.3333333333333333 0.7999999999999999 0 1 0 2.6666666666666665 0 1.3333333333333333 0.7999999999999999 0 1 0 -2.6666666666666665 0Z" fill="#ffaa54" stroke-width="1"></path>
|
|
19
|
+
<path d="M38.586666666666666 30.253333333333334a1.3333333333333333 0.7999999999999999 0 1 0 2.6666666666666665 0 1.3333333333333333 0.7999999999999999 0 1 0 -2.6666666666666665 0Z" fill="#ffaa54" stroke-width="1"></path>
|
|
20
|
+
<path d="m30.439999999999998 34.22666666666667 3.1199999999999997 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
21
|
+
<path d="M47.05333333333333 60.63999999999999a5.333333333333333 5.333333333333333 0 0 1 -7.613333333333333 -0.30666666666666664L22.439999999999998 41.05333333333333a1.3333333333333333 1.3333333333333333 0 0 1 0.07999999999999999 -1.8399999999999999l4.16 -4a1.3333333333333333 1.3333333333333333 0 0 1 1.853333333333333 0l18.52 17.813333333333333a5.333333333333333 5.333333333333333 0 0 1 0 7.613333333333333Z" fill="#00b8f0" stroke-width="1"></path>
|
|
22
|
+
<path d="m28.733333333333334 48.18666666666667 6.3999999999999995 7.266666666666667 6.626666666666666 -7.52 -6.386666666666667 -6.133333333333333 -6.640000000000001 6.386666666666667z" fill="#009fd9" stroke-width="1"></path>
|
|
23
|
+
<path d="m32.946666666666665 44.13333333333333 2.4266666666666667 -2.333333333333333 -6.84 -6.586666666666667a1.3333333333333333 1.3333333333333333 0 0 0 -1.853333333333333 0l-4.16 4a1.3333333333333333 1.3333333333333333 0 0 0 -0.07999999999999999 1.8399999999999999l1.3333333333333333 1.5733333333333333a5.466666666666666 5.466666666666666 0 0 1 7.56 0Z" fill="#4acfff" stroke-width="1"></path>
|
|
24
|
+
<path d="M47.05333333333333 60.63999999999999h0a5.333333333333333 5.333333333333333 0 0 1 -7.613333333333333 -0.30666666666666664L22.439999999999998 41.05333333333333a1.3333333333333333 1.3333333333333333 0 0 1 0.07999999999999999 -1.8399999999999999l4.16 -4a1.3333333333333333 1.3333333333333333 0 0 1 1.853333333333333 0l18.52 17.813333333333333a5.333333333333333 5.333333333333333 0 0 1 0 7.613333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
25
|
+
<path d="m26.666666666666664 35.266666666666666 -4 3.893333333333333 -2.88 -3.0133333333333328a5.946666666666666 5.946666666666666 0 0 1 -1.2 -1.8266666666666667l-2.1333333333333333 -5.1066666666666665a2.466666666666667 2.466666666666667 0 0 1 0.5733333333333333 -2.6666666666666665 0.9199999999999999 0.9199999999999999 0 0 1 1.3333333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
26
|
+
<path d="M18.24 29.746666666666663a0.9199999999999999 0.9199999999999999 0 0 0 -1.3333333333333333 0 2.5599999999999996 2.5599999999999996 0 0 0 -0.24 0.29333333333333333l-0.3333333333333333 -0.7999999999999999a2.466666666666667 2.466666666666667 0 0 1 0.5733333333333333 -2.6666666666666665 0.9199999999999999 0.9199999999999999 0 0 1 1.3333333333333333 0L26.666666666666664 35.266666666666666l-1.6133333333333333 1.5466666666666664Z" fill="#fff48c" stroke-width="1"></path>
|
|
27
|
+
<path d="m26.666666666666664 35.266666666666666 -4 3.893333333333333 -2.88 -3.0133333333333328a5.946666666666666 5.946666666666666 0 0 1 -1.2 -1.8266666666666667l-2.1333333333333333 -5.1066666666666665a2.466666666666667 2.466666666666667 0 0 1 0.5733333333333333 -2.6666666666666665h0a0.9199999999999999 0.9199999999999999 0 0 1 1.3333333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
28
|
+
<path d="M16.946666666666665 60.63999999999999a5.333333333333333 5.333333333333333 0 0 0 7.613333333333333 -0.30666666666666664l17 -19.28a1.3333333333333333 1.3333333333333333 0 0 0 -0.07999999999999999 -1.8399999999999999l-4.16 -4a1.3333333333333333 1.3333333333333333 0 0 0 -1.853333333333333 0L16.946666666666665 53.02666666666667a5.333333333333333 5.333333333333333 0 0 0 0 7.613333333333333Z" fill="#00b8f0" stroke-width="1"></path>
|
|
29
|
+
<path d="m41.48 39.21333333333333 -4.16 -4a1.3333333333333333 1.3333333333333333 0 0 0 -1.853333333333333 0L16.946666666666665 53.02666666666667a5.333333333333333 5.333333333333333 0 0 0 -1.0666666666666667 6.173333333333333 5.039999999999999 5.039999999999999 0 0 1 1.0666666666666667 -1.4933333333333334L32.61333333333333 42.666666666666664a5.466666666666666 5.466666666666666 0 0 1 7.56 0l1.3333333333333333 -1.5733333333333333a1.3333333333333333 1.3333333333333333 0 0 0 -0.026666666666666665 -1.88Z" fill="#4acfff" stroke-width="1"></path>
|
|
30
|
+
<path d="M16.946666666666665 60.63999999999999h0a5.333333333333333 5.333333333333333 0 0 0 7.613333333333333 -0.30666666666666664l17 -19.28a1.3333333333333333 1.3333333333333333 0 0 0 -0.07999999999999999 -1.8399999999999999l-4.16 -4a1.3333333333333333 1.3333333333333333 0 0 0 -1.853333333333333 0L16.946666666666665 53.02666666666667a5.333333333333333 5.333333333333333 0 0 0 0 7.613333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
31
|
+
<path d="m37.33333333333333 35.266666666666666 4 3.893333333333333 2.88 -3.0133333333333328a5.946666666666666 5.946666666666666 0 0 0 1.2 -1.8266666666666667l2.1333333333333333 -5.1066666666666665a2.466666666666667 2.466666666666667 0 0 0 -0.5733333333333333 -2.6666666666666665 0.9199999999999999 0.9199999999999999 0 0 0 -1.3333333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
32
|
+
<path d="M45.76 29.746666666666663a0.9199999999999999 0.9199999999999999 0 0 1 1.3333333333333333 0 2.5599999999999996 2.5599999999999996 0 0 1 0.24 0.29333333333333333l0.3333333333333333 -0.7999999999999999a2.466666666666667 2.466666666666667 0 0 0 -0.5733333333333333 -2.6666666666666665 0.9199999999999999 0.9199999999999999 0 0 0 -1.3333333333333333 0L37.33333333333333 35.266666666666666l1.6133333333333333 1.5466666666666664Z" fill="#fff48c" stroke-width="1"></path>
|
|
33
|
+
<path d="m37.33333333333333 35.266666666666666 4 3.893333333333333 2.88 -3.0133333333333328a5.946666666666666 5.946666666666666 0 0 0 1.2 -1.8266666666666667l2.1333333333333333 -5.1066666666666665a2.466666666666667 2.466666666666667 0 0 0 -0.5733333333333333 -2.6666666666666665h0a0.9199999999999999 0.9199999999999999 0 0 0 -1.3333333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
34
|
+
</svg>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Man-Gesturing-Ok-1--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Man Gesturing OK 1 Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M14.333333333333332 16.4a15.68 15.68 0 0 1 10.373333333333333 -5.039999999999999A1.853333333333333 1.853333333333333 0 0 1 26.666666666666664 13.333333333333332a1.8266666666666667 1.8266666666666667 0 0 1 -0.6533333333333333 1.3333333333333333l-6.266666666666667 5.24Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
6
|
+
<path d="M49.666666666666664 16.4a15.68 15.68 0 0 0 -10.373333333333333 -5.039999999999999A1.853333333333333 1.853333333333333 0 0 0 37.33333333333333 13.333333333333332a1.8266666666666667 1.8266666666666667 0 0 0 0.6533333333333333 1.3333333333333333l6.266666666666667 5.24Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
7
|
+
<path d="M51.08 17.119999999999997a1.3333333333333333 1.3333333333333333 0 0 0 -1.853333333333333 -0.42666666666666664l-6.279999999999999 3.1866666666666665s3.0533333333333332 4.306666666666667 2.2266666666666666 13.546666666666667c-0.5066666666666666 5.613333333333333 -1.3333333333333333 9.813333333333333 -3.08 12.306666666666667a4 4 0 0 1 -4.64 1.5199999999999998 16 16 0 0 0 -10.906666666666666 0 4 4 0 0 1 -4.64 -1.5199999999999998c-1.72 -2.493333333333333 -2.5733333333333333 -6.666666666666666 -3.08 -12.306666666666667 -0.8266666666666667 -9.239999999999998 2.2266666666666666 -13.546666666666667 2.2266666666666666 -13.546666666666667l-6.279999999999999 -3.1866666666666665a1.3333333333333333 1.3333333333333333 0 0 0 -1.853333333333333 0.42666666666666664c-1.5866666666666664 2.6666666666666665 -5.053333333333333 8.466666666666665 -4.3999999999999995 20.68C9.333333333333332 54.093333333333334 17.826666666666664 60 17.826666666666664 60h28.346666666666668s8.453333333333333 -5.906666666666666 9.333333333333332 -22.199999999999996c0.6266666666666666 -12.213333333333333 -2.84 -18.066666666666666 -4.426666666666666 -20.68Z" fill="#00b8f0" stroke-width="1"></path>
|
|
8
|
+
<path d="m45.239999999999995 32.44 0 0.9866666666666666c-0.5066666666666666 5.613333333333333 -1.3333333333333333 9.813333333333333 -3.08 12.306666666666667a4 4 0 0 1 -4.64 1.5199999999999998 16 16 0 0 0 -10.906666666666666 0 4 4 0 0 1 -4.64 -1.5199999999999998c-1.72 -2.493333333333333 -2.5733333333333333 -6.666666666666666 -3.08 -12.306666666666667l0 -0.9866666666666666a32.266666666666666 32.266666666666666 0 0 0 0 5.16c0.5066666666666666 5.613333333333333 1.3333333333333333 9.799999999999999 3.08 12.293333333333333a4 4 0 0 0 4.64 1.5199999999999998 16 16 0 0 1 10.906666666666666 0 4 4 0 0 0 4.64 -1.5199999999999998c1.72 -2.493333333333333 2.5733333333333333 -6.666666666666666 3.08 -12.293333333333333a32.266666666666666 32.266666666666666 0 0 0 0 -5.16Z" fill="#009fd9" stroke-width="1"></path>
|
|
9
|
+
<path d="M51.08 17.119999999999997a1.3333333333333333 1.3333333333333333 0 0 0 -1.853333333333333 -0.42666666666666664l-6.279999999999999 3.1866666666666665s3.0533333333333332 4.306666666666667 2.2266666666666666 13.546666666666667c-0.5066666666666666 5.613333333333333 -1.3333333333333333 9.813333333333333 -3.08 12.306666666666667a4 4 0 0 1 -4.64 1.5199999999999998 16 16 0 0 0 -10.906666666666666 0 4 4 0 0 1 -4.64 -1.5199999999999998c-1.72 -2.493333333333333 -2.5733333333333333 -6.666666666666666 -3.08 -12.306666666666667 -0.8266666666666667 -9.239999999999998 2.2266666666666666 -13.546666666666667 2.2266666666666666 -13.546666666666667l-6.279999999999999 -3.1866666666666665a1.3333333333333333 1.3333333333333333 0 0 0 -1.853333333333333 0.42666666666666664c-1.5866666666666664 2.6666666666666665 -5.053333333333333 8.466666666666665 -4.3999999999999995 20.68C9.333333333333332 54.093333333333334 17.826666666666664 60 17.826666666666664 60h28.346666666666668s8.453333333333333 -5.906666666666666 9.333333333333332 -22.199999999999996c0.6266666666666666 -12.213333333333333 -2.84 -18.066666666666666 -4.426666666666666 -20.68Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M32 13.879999999999999a13.106666666666666 13.106666666666666 0 0 0 -3.253333333333333 0.41333333333333333c-2.48 0.5599999999999999 -5.706666666666667 1.4933333333333334 -8.626666666666665 0.9333333333333332a5.6 5.6 0 0 0 1.1199999999999999 4.279999999999999 13.08 13.08 0 0 0 -2.333333333333333 7.466666666666666v6.853333333333333h26.186666666666667v-6.853333333333333A13.093333333333334 13.093333333333334 0 0 0 32 13.879999999999999Z" fill="#724f3d" stroke-width="1"></path>
|
|
11
|
+
<path d="M32 13.879999999999999a13.106666666666666 13.106666666666666 0 0 0 -3.253333333333333 0.41333333333333333c-2.48 0.5599999999999999 -5.706666666666667 1.4933333333333334 -8.626666666666665 0.9333333333333332a5.959999999999999 5.959999999999999 0 0 0 0.9066666666666667 4 25.866666666666664 25.866666666666664 0 0 0 7.72 -1.0533333333333332 13.08 13.08 0 0 1 16.346666666666664 12.68v-3.88A13.093333333333334 13.093333333333334 0 0 0 32 13.879999999999999Z" fill="#a86c4d" stroke-width="1"></path>
|
|
12
|
+
<path d="M32 13.879999999999999a13.106666666666666 13.106666666666666 0 0 0 -3.253333333333333 0.41333333333333333c-2.48 0.5599999999999999 -5.706666666666667 1.4933333333333334 -8.626666666666665 0.9333333333333332a5.6 5.6 0 0 0 1.1199999999999999 4.279999999999999 13.08 13.08 0 0 0 -2.333333333333333 7.466666666666666v6.853333333333333h26.186666666666667v-6.853333333333333A13.093333333333334 13.093333333333334 0 0 0 32 13.879999999999999Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M46.493333333333325 32.82666666666667a2.44 2.44 0 0 0 -1.853333333333333 -2.0533333333333332l-0.7866666666666666 -0.21333333333333332a2.7466666666666666 2.7466666666666666 0 0 1 -2 -2.6666666666666665v-2.7199999999999998A2.5066666666666664 2.5066666666666664 0 0 0 40 22.759999999999998a20.453333333333333 20.453333333333333 0 0 1 -8 1.4533333333333334 20.453333333333333 20.453333333333333 0 0 1 -8 -1.4533333333333334 2.5066666666666664 2.5066666666666664 0 0 0 -1.8666666666666665 2.413333333333333v2.7466666666666666a2.7466666666666666 2.7466666666666666 0 0 1 -2 2.6666666666666665l-0.7866666666666666 0.21333333333333332a2.44 2.44 0 0 0 -1.853333333333333 2.0533333333333332 2.413333333333333 2.413333333333333 0 0 0 2.413333333333333 2.6666666666666665h0.14666666666666667a12 12 0 0 0 23.866666666666664 0h0.14666666666666667a2.413333333333333 2.413333333333333 0 0 0 2.4266666666666667 -2.6933333333333334Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="M24.759999999999998 32.54666666666667a1.0266666666666666 1.0266666666666666 0 1 0 1.0266666666666666 -1.0266666666666666 1.0133333333333332 1.0133333333333332 0 0 0 -1.0266666666666666 1.0266666666666666Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M39.239999999999995 32.54666666666667a1.0266666666666666 1.0266666666666666 0 1 1 -1.0266666666666666 -1.0266666666666666 1.0133333333333332 1.0133333333333332 0 0 1 1.0266666666666666 1.0266666666666666Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M28.21333333333333 38.8a0.5599999999999999 0.5599999999999999 0 0 0 -0.44 0.21333333333333332 0.5599999999999999 0.5599999999999999 0 0 0 -0.13333333333333333 0.4666666666666666 4.426666666666666 4.426666666666666 0 0 0 8.719999999999999 0 0.5599999999999999 0.5599999999999999 0 0 0 -0.13333333333333333 -0.4666666666666666 0.5866666666666667 0.5866666666666667 0 0 0 -0.44 -0.21333333333333332Z" fill="#ff6242" stroke-width="1"></path>
|
|
17
|
+
<path d="M32 40.626666666666665a5.333333333333333 5.333333333333333 0 0 0 -3.36 1.0266666666666666 4.4799999999999995 4.4799999999999995 0 0 0 6.666666666666666 0 5.333333333333333 5.333333333333333 0 0 0 -3.3066666666666666 -1.0266666666666666Z" fill="#ffa694" stroke-width="1"></path>
|
|
18
|
+
<path d="M28.21333333333333 38.8a0.5599999999999999 0.5599999999999999 0 0 0 -0.44 0.21333333333333332 0.5599999999999999 0.5599999999999999 0 0 0 -0.13333333333333333 0.4666666666666666 4.426666666666666 4.426666666666666 0 0 0 8.719999999999999 0 0.5599999999999999 0.5599999999999999 0 0 0 -0.13333333333333333 -0.4666666666666666 0.5866666666666667 0.5866666666666667 0 0 0 -0.44 -0.21333333333333332Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
19
|
+
<path d="M22.746666666666663 36.92a1.3333333333333333 0.7999999999999999 0 1 0 2.6666666666666665 0 1.3333333333333333 0.7999999999999999 0 1 0 -2.6666666666666665 0Z" fill="#ffaa54" stroke-width="1"></path>
|
|
20
|
+
<path d="M38.586666666666666 36.92a1.3333333333333333 0.7999999999999999 0 1 0 2.6666666666666665 0 1.3333333333333333 0.7999999999999999 0 1 0 -2.6666666666666665 0Z" fill="#ffaa54" stroke-width="1"></path>
|
|
21
|
+
<path d="M12 60.666666666666664a20 2 0 1 0 40 0 20 2 0 1 0 -40 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
22
|
+
<path d="M32 45.73333333333333a11.813333333333333 11.813333333333333 0 0 1 -3.3866666666666667 -0.4933333333333333v2.8533333333333335a3.3866666666666667 3.3866666666666667 0 1 0 6.773333333333333 0v-2.8533333333333335a11.813333333333333 11.813333333333333 0 0 1 -3.3866666666666667 0.4933333333333333Z" fill="#ffe500" stroke-width="1"></path>
|
|
23
|
+
<path d="M32 45.73333333333333a11.813333333333333 11.813333333333333 0 0 1 -3.3866666666666667 -0.4933333333333333 3.3866666666666667 3.3866666666666667 0 1 0 6.773333333333333 0 11.813333333333333 11.813333333333333 0 0 1 -3.3866666666666667 0.4933333333333333Z" fill="#ebcb00" stroke-width="1"></path>
|
|
24
|
+
<path d="M32 45.73333333333333a11.813333333333333 11.813333333333333 0 0 1 -3.3866666666666667 -0.4933333333333333v2.8533333333333335a3.3866666666666667 3.3866666666666667 0 1 0 6.773333333333333 0v-2.8533333333333335a11.813333333333333 11.813333333333333 0 0 1 -3.3866666666666667 0.4933333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
25
|
+
</svg>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Man-Health-Worker-1--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Man Health Worker 1 Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M12 60.666666666666664a20 2 0 1 0 40 0 20 2 0 1 0 -40 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 41.626666666666665A15.84 15.84 0 0 1 47.84 57.46666666666667V60H16.159999999999997v-2.533333333333333A15.84 15.84 0 0 1 32 41.626666666666665Z" fill="#ffffff" stroke-width="1"></path>
|
|
7
|
+
<path d="M32 41.626666666666665A15.84 15.84 0 0 0 16.159999999999997 57.46666666666667V60h0.06666666666666667A15.826666666666664 15.826666666666664 0 0 1 32 45.33333333333333a15.84 15.84 0 0 1 15.786666666666665 14.666666666666666v-2.533333333333333A15.84 15.84 0 0 0 32 41.626666666666665Z" fill="#e0e0e0" stroke-width="1"></path>
|
|
8
|
+
<path d="M32 41.626666666666665h0A15.84 15.84 0 0 1 47.84 57.46666666666667V60l0 0H16.159999999999997l0 0v-2.533333333333333A15.84 15.84 0 0 1 32 41.626666666666665Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
9
|
+
<path d="m27 60 -2.6666666666666665 -7.053333333333333 1.6133333333333333 -2.1333333333333333 -1.48 -0.7066666666666667a17.413333333333334 17.413333333333334 0 0 1 0.07999999999999999 -5C24.8 43.120000000000005 25.72 40 32 40s7.213333333333333 3.0666666666666664 7.506666666666666 5.053333333333333a17.333333333333332 17.333333333333332 0 0 1 0.07999999999999999 5l-1.48 0.7066666666666667 1.6133333333333333 2.1333333333333333 -2.6666666666666665 7.053333333333333Z" fill="#f0f0f0" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M35.38666666666666 42a15.546666666666667 15.546666666666667 0 0 0 -6.773333333333333 0v1.4266666666666667c0 10.453333333333333 0.21333333333333332 16.57333333333333 0.21333333333333332 16.57333333333333h6.346666666666666s0.21333333333333332 -6.119999999999999 0.21333333333333332 -16.57333333333333Z" fill="#00dfeb" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="M32 47.81333333333333c-1.88 0 -3.3866666666666667 -2.5199999999999996 -3.3866666666666667 -4.386666666666667v-3.8A3.3866666666666667 3.3866666666666667 0 0 1 32 36.22666666666667a3.3866666666666667 3.3866666666666667 0 0 1 3.3866666666666667 3.3999999999999995v3.8c0 1.9066666666666665 -1.5066666666666664 4.386666666666667 -3.3866666666666667 4.386666666666667Z" fill="#ffe500" stroke-width="1"></path>
|
|
12
|
+
<path d="M32 36.92a3.3866666666666667 3.3866666666666667 0 0 0 -3.3866666666666667 3.3999999999999995v0.7866666666666666a3.3866666666666667 3.3866666666666667 0 1 0 6.773333333333333 0v-0.7866666666666666A3.3866666666666667 3.3866666666666667 0 0 0 32 36.92Z" fill="#ebcb00" stroke-width="1"></path>
|
|
13
|
+
<path d="M32 47.81333333333333h0c-1.88 0 -3.3866666666666667 -2.5199999999999996 -3.3866666666666667 -4.386666666666667v-3.8A3.3866666666666667 3.3866666666666667 0 0 1 32 36.22666666666667h0a3.3866666666666667 3.3866666666666667 0 0 1 3.3866666666666667 3.3999999999999995v3.8c0 1.9066666666666665 -1.5066666666666664 4.386666666666667 -3.3866666666666667 4.386666666666667Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="m22.746666666666663 60 0 -3.2133333333333334" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="m41.25333333333333 60 0 -3.2133333333333334" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M32 9.213333333333333a13.106666666666666 13.106666666666666 0 0 0 -3.253333333333333 0.41333333333333333c-2.48 0.5599999999999999 -5.706666666666667 1.4933333333333334 -8.626666666666665 0.9333333333333332a5.6 5.6 0 0 0 1.1199999999999999 4.279999999999999 13.08 13.08 0 0 0 -2.333333333333333 7.466666666666666v6.853333333333333h26.186666666666667v-6.853333333333333A13.093333333333334 13.093333333333334 0 0 0 32 9.213333333333333Z" fill="#724f3d" stroke-width="1"></path>
|
|
17
|
+
<path d="M32 9.213333333333333a13.106666666666666 13.106666666666666 0 0 0 -3.253333333333333 0.41333333333333333c-2.48 0.5599999999999999 -5.706666666666667 1.4933333333333334 -8.626666666666665 0.9333333333333332a5.959999999999999 5.959999999999999 0 0 0 0.9066666666666667 4 25.866666666666664 25.866666666666664 0 0 0 7.72 -1.0533333333333332 13.08 13.08 0 0 1 16.346666666666664 12.68v-3.88A13.093333333333334 13.093333333333334 0 0 0 32 9.213333333333333Z" fill="#a86c4d" stroke-width="1"></path>
|
|
18
|
+
<path d="M32 9.213333333333333a13.106666666666666 13.106666666666666 0 0 0 -3.253333333333333 0.41333333333333333c-2.48 0.5599999999999999 -5.706666666666667 1.4933333333333334 -8.626666666666665 0.9333333333333332a5.6 5.6 0 0 0 1.1199999999999999 4.279999999999999 13.08 13.08 0 0 0 -2.333333333333333 7.466666666666666v6.853333333333333h26.186666666666667v-6.853333333333333A13.093333333333334 13.093333333333334 0 0 0 32 9.213333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
19
|
+
<path d="M46.493333333333325 28.16a2.44 2.44 0 0 0 -1.853333333333333 -2.0533333333333332l-0.7866666666666666 -0.21333333333333332a2.7466666666666666 2.7466666666666666 0 0 1 -2 -2.6666666666666665v-2.7199999999999998A2.5066666666666664 2.5066666666666664 0 0 0 40 18.093333333333334a20.453333333333333 20.453333333333333 0 0 1 -8 1.4533333333333334 20.453333333333333 20.453333333333333 0 0 1 -8 -1.4533333333333334 2.5066666666666664 2.5066666666666664 0 0 0 -1.8666666666666665 2.413333333333333v2.7466666666666666a2.7466666666666666 2.7466666666666666 0 0 1 -2 2.6666666666666665l-0.7866666666666666 0.21333333333333332a2.44 2.44 0 0 0 -1.853333333333333 2.0533333333333332 2.413333333333333 2.413333333333333 0 0 0 2.413333333333333 2.6666666666666665h0.14666666666666667a12 12 0 0 0 23.866666666666664 0h0.15999999999999998a2.413333333333333 2.413333333333333 0 0 0 2.413333333333333 -2.6933333333333334Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
20
|
+
<path d="M24.759999999999998 27.88a1.0266666666666666 1.0266666666666666 0 1 0 1.0266666666666666 -1.0266666666666666 1.0133333333333332 1.0133333333333332 0 0 0 -1.0266666666666666 1.0266666666666666Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
21
|
+
<path d="M39.239999999999995 27.88a1.0266666666666666 1.0266666666666666 0 1 1 -1.0266666666666666 -1.0266666666666666 1.0133333333333332 1.0133333333333332 0 0 1 1.0266666666666666 1.0266666666666666Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
22
|
+
<path d="M28.21333333333333 34.13333333333333a0.5866666666666667 0.5866666666666667 0 0 0 -0.44 0.21333333333333332 0.5599999999999999 0.5599999999999999 0 0 0 -0.13333333333333333 0.4666666666666666 4.426666666666666 4.426666666666666 0 0 0 8.719999999999999 0 0.5599999999999999 0.5599999999999999 0 0 0 -0.13333333333333333 -0.4666666666666666 0.5599999999999999 0.5599999999999999 0 0 0 -0.44 -0.21333333333333332Z" fill="#ff6242" stroke-width="1"></path>
|
|
23
|
+
<path d="M32 36a5.333333333333333 5.333333333333333 0 0 0 -3.36 1.0266666666666666 4.4799999999999995 4.4799999999999995 0 0 0 6.666666666666666 0A5.333333333333333 5.333333333333333 0 0 0 32 36Z" fill="#ffa694" stroke-width="1"></path>
|
|
24
|
+
<path d="M28.21333333333333 34.13333333333333a0.5866666666666667 0.5866666666666667 0 0 0 -0.44 0.21333333333333332 0.5599999999999999 0.5599999999999999 0 0 0 -0.13333333333333333 0.4666666666666666 4.426666666666666 4.426666666666666 0 0 0 8.719999999999999 0 0.5599999999999999 0.5599999999999999 0 0 0 -0.13333333333333333 -0.4666666666666666 0.5599999999999999 0.5599999999999999 0 0 0 -0.44 -0.21333333333333332Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
25
|
+
<path d="M22.746666666666663 32.25333333333333a1.3333333333333333 0.7999999999999999 0 1 0 2.6666666666666665 0 1.3333333333333333 0.7999999999999999 0 1 0 -2.6666666666666665 0Z" fill="#ffaa54" stroke-width="1"></path>
|
|
26
|
+
<path d="M38.586666666666666 32.25333333333333a1.3333333333333333 0.7999999999999999 0 1 0 2.6666666666666665 0 1.3333333333333333 0.7999999999999999 0 1 0 -2.6666666666666665 0Z" fill="#ffaa54" stroke-width="1"></path>
|
|
27
|
+
<path d="M46.25333333333333 29.426666666666666c1.9066666666666665 0 2.5066666666666664 1.4666666666666668 0.7999999999999999 10.12 -2.1066666666666665 10.666666666666666 -6.306666666666667 11.559999999999999 -15.053333333333331 11.559999999999999s-12.946666666666667 -0.8666666666666667 -15.053333333333331 -11.559999999999999c-1.7066666666666666 -8.653333333333332 -1.1066666666666665 -10.12 0.7999999999999999 -10.12" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
28
|
+
<path d="M17.57333333333333 28.119999999999997h2.453333333333333v2.6133333333333333h-2.453333333333333z" fill="#87898c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
29
|
+
<path d="m46.42666666666666 30.733333333333334 -2.453333333333333 0 0 -2.6133333333333333 2.453333333333333 0z" fill="#87898c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
30
|
+
<path d="M35.08 49.85333333333333h-6.16a0.6666666666666666 0.6666666666666666 0 0 0 -0.6666666666666666 0.6666666666666666v1.1733333333333333a0.6666666666666666 0.6666666666666666 0 0 0 0.6666666666666666 0.6666666666666666h1.853333333333333V60h2.453333333333333v-7.640000000000001h1.853333333333333a0.6666666666666666 0.6666666666666666 0 0 0 0.6666666666666666 -0.6666666666666666v-1.1733333333333333a0.6666666666666666 0.6666666666666666 0 0 0 -0.6666666666666666 -0.6666666666666666Z" fill="#87898c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
31
|
+
<path d="M49.78666666666667 50.773333333333326a2.0533333333333332 2.0533333333333332 0 0 0 -2.04 -1.8 1.0533333333333332 1.0533333333333332 0 0 0 -1.0533333333333332 1.0533333333333332v6.853333333333333A3.1199999999999997 3.1199999999999997 0 0 0 49.81333333333333 60h2.253333333333333v-9.226666666666667Z" fill="#ffe500" stroke-width="1"></path>
|
|
32
|
+
<path d="M47.74666666666667 48.97333333333333a1.0533333333333332 1.0533333333333332 0 0 0 -1.0533333333333332 1.0533333333333332v2.5599999999999996a1.0533333333333332 1.0533333333333332 0 0 1 1.0533333333333332 -1.0533333333333332 2.0666666666666664 2.0666666666666664 0 0 1 2.0666666666666664 2.0533333333333332v-2.5599999999999996a2.0666666666666664 2.0666666666666664 0 0 0 -2.0666666666666664 -2.0533333333333332Z" fill="#fff48c" stroke-width="1"></path>
|
|
33
|
+
<path d="M49.78666666666667 50.773333333333326a2.0533333333333332 2.0533333333333332 0 0 0 -2.04 -1.8 1.0533333333333332 1.0533333333333332 0 0 0 -1.0533333333333332 1.0533333333333332v6.853333333333333A3.1199999999999997 3.1199999999999997 0 0 0 49.81333333333333 60h2.253333333333333v-9.226666666666667Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
34
|
+
<path d="m49.17333333333333 50.773333333333326 5.773333333333333 0 0 3.08 -5.773333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
35
|
+
<path d="M50.666666666666664 52.32h2.6666666666666665a1.4933333333333334 1.4933333333333334 0 0 1 1.3333333333333333 0.7599999999999999 1.5066666666666664 1.5066666666666664 0 0 0 0.24 -0.7599999999999999 1.5466666666666664 1.5466666666666664 0 0 0 -1.5466666666666664 -1.5466666666666664H50.666666666666664a1.5466666666666664 1.5466666666666664 0 0 0 -1.5466666666666664 1.5466666666666664 1.5066666666666664 1.5066666666666664 0 0 0 0.24 0.7599999999999999 1.4933333333333334 1.4933333333333334 0 0 1 1.3066666666666666 -0.7599999999999999Z" fill="#fff48c" stroke-width="1"></path>
|
|
36
|
+
<path d="m49.17333333333333 50.773333333333326 5.773333333333333 0 0 3.08 -5.773333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
37
|
+
<path d="m49.17333333333333 53.85333333333333 5.773333333333333 0 0 3.08 -5.773333333333333 0Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
38
|
+
<path d="m49.17333333333333 56.919999999999995 5.773333333333333 0 0 3.08 -5.773333333333333 0Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
39
|
+
<path d="M47.266666666666666 46.666666666666664a3.8266666666666667 3.8266666666666667 0 1 0 7.653333333333333 0 3.8266666666666667 3.8266666666666667 0 1 0 -7.653333333333333 0Z" fill="#c0dceb" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
40
|
+
<path d="M49.17333333333333 46.666666666666664a1.92 1.92 0 1 0 3.84 0 1.92 1.92 0 1 0 -3.84 0Z" fill="#e8f4fa" stroke-width="1"></path>
|
|
41
|
+
</svg>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Man-Raising-Hand-1--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Man Raising Hand 1 Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M32 9.333333333333332a13.106666666666666 13.106666666666666 0 0 1 3.253333333333333 0.41333333333333333c2.48 0.5599999999999999 5.706666666666667 1.4933333333333334 8.626666666666665 0.9333333333333332a5.6 5.6 0 0 1 -1.1199999999999999 4.279999999999999 13.08 13.08 0 0 1 2.333333333333333 7.466666666666666v6.853333333333333H18.906666666666666v-6.893333333333333A13.093333333333334 13.093333333333334 0 0 1 32 9.333333333333332Z" fill="#724f3d" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 9.333333333333332a13.106666666666666 13.106666666666666 0 0 1 3.253333333333333 0.41333333333333333c2.48 0.5599999999999999 5.706666666666667 1.4933333333333334 8.626666666666665 0.9333333333333332a5.959999999999999 5.959999999999999 0 0 1 -0.9066666666666667 4 25.866666666666664 25.866666666666664 0 0 1 -7.72 -1.0533333333333332 13.08 13.08 0 0 0 -16.346666666666664 12.68v-3.92A13.093333333333334 13.093333333333334 0 0 1 32 9.333333333333332Z" fill="#a86c4d" stroke-width="1"></path>
|
|
7
|
+
<path d="M32 9.333333333333332a13.106666666666666 13.106666666666666 0 0 1 3.253333333333333 0.41333333333333333c2.48 0.5599999999999999 5.706666666666667 1.4933333333333334 8.626666666666665 0.9333333333333332a5.6 5.6 0 0 1 -1.1199999999999999 4.279999999999999 13.08 13.08 0 0 1 2.333333333333333 7.466666666666666v6.853333333333333H18.906666666666666v-6.893333333333333A13.093333333333334 13.093333333333334 0 0 1 32 9.333333333333332Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
8
|
+
<path d="M17.506666666666668 28.24a2.44 2.44 0 0 1 1.853333333333333 -2.0533333333333332l0.7866666666666666 -0.21333333333333332a2.7466666666666666 2.7466666666666666 0 0 0 2 -2.6666666666666665v-2.7199999999999998A2.5066666666666664 2.5066666666666664 0 0 1 24 18.173333333333332a20.453333333333333 20.453333333333333 0 0 0 8 1.4533333333333334 20.453333333333333 20.453333333333333 0 0 0 8 -1.4533333333333334 2.5066666666666664 2.5066666666666664 0 0 1 1.8666666666666665 2.413333333333333v2.7466666666666666a2.7466666666666666 2.7466666666666666 0 0 0 2 2.6666666666666665l0.7866666666666666 0.21333333333333332a2.44 2.44 0 0 1 1.853333333333333 2.0533333333333332 2.413333333333333 2.413333333333333 0 0 1 -2.413333333333333 2.6666666666666665H44a12 12 0 0 1 -23.866666666666664 0h-0.14666666666666667a2.413333333333333 2.413333333333333 0 0 1 -2.48 -2.6933333333333334Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
9
|
+
<path d="M39.239999999999995 28a1.0266666666666666 1.0266666666666666 0 1 1 -1.0266666666666666 -1.0266666666666666 1.0133333333333332 1.0133333333333332 0 0 1 1.0266666666666666 1.0266666666666666Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M24.759999999999998 28a1.0266666666666666 1.0266666666666666 0 1 0 1.0266666666666666 -1.0266666666666666 1.0133333333333332 1.0133333333333332 0 0 0 -1.0266666666666666 1.0266666666666666Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="M35.78666666666666 34.21333333333333a0.5866666666666667 0.5866666666666667 0 0 1 0.44 0.21333333333333332 0.5599999999999999 0.5599999999999999 0 0 1 0.13333333333333333 0.4666666666666666 4.426666666666666 4.426666666666666 0 0 1 -8.719999999999999 0 0.5599999999999999 0.5599999999999999 0 0 1 0.13333333333333333 -0.4666666666666666 0.5599999999999999 0.5599999999999999 0 0 1 0.44 -0.21333333333333332Z" fill="#ff6242" stroke-width="1"></path>
|
|
12
|
+
<path d="M32 36a5.333333333333333 5.333333333333333 0 0 1 3.36 1.0266666666666666 4.4799999999999995 4.4799999999999995 0 0 1 -6.666666666666666 0A5.333333333333333 5.333333333333333 0 0 1 32 36Z" fill="#ffa694" stroke-width="1"></path>
|
|
13
|
+
<path d="M35.78666666666666 34.21333333333333a0.5866666666666667 0.5866666666666667 0 0 1 0.44 0.21333333333333332 0.5599999999999999 0.5599999999999999 0 0 1 0.13333333333333333 0.4666666666666666 4.426666666666666 4.426666666666666 0 0 1 -8.719999999999999 0 0.5599999999999999 0.5599999999999999 0 0 1 0.13333333333333333 -0.4666666666666666 0.5599999999999999 0.5599999999999999 0 0 1 0.44 -0.21333333333333332Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="M38.586666666666666 32.33333333333333a1.3333333333333333 0.7999999999999999 0 1 0 2.6666666666666665 0 1.3333333333333333 0.7999999999999999 0 1 0 -2.6666666666666665 0Z" fill="#ffaa54" stroke-width="1"></path>
|
|
15
|
+
<path d="M22.746666666666663 32.33333333333333a1.3333333333333333 0.7999999999999999 0 1 0 2.6666666666666665 0 1.3333333333333333 0.7999999999999999 0 1 0 -2.6666666666666665 0Z" fill="#ffaa54" stroke-width="1"></path>
|
|
16
|
+
<path d="M22.226666666666667 14.266666666666666a1.4666666666666668 1.4666666666666668 0 0 0 -0.88 -2.6666666666666665h-1.0533333333333332a0.37333333333333335 0.37333333333333335 0 0 1 -0.3866666666666666 -0.41333333333333333l0.30666666666666664 -3.08a2.333333333333333 2.333333333333333 0 0 0 -3.5866666666666664 -2.253333333333333 2.8266666666666667 2.8266666666666667 0 0 1 -1.96 0.5866666666666667 1.68 1.68 0 0 0 -1.8266666666666667 1.3333333333333333 47.39999999999999 47.39999999999999 0 0 0 -0.9733333333333333 11.546666666666667l6.48 0.4666666666666666 0.15999999999999998 -2.76Z" fill="#ffe500" stroke-width="1"></path>
|
|
17
|
+
<path d="M14.066666666666666 9a3.3066666666666666 3.3066666666666666 0 0 0 2.2399999999999998 -0.5733333333333333 2.6666666666666665 2.6666666666666665 0 0 1 3.786666666666666 0.9066666666666667l0.12 -1.1866666666666665a2.333333333333333 2.333333333333333 0 0 0 -3.5866666666666664 -2.253333333333333 2.8266666666666667 2.8266666666666667 0 0 1 -1.96 0.5466666666666666 1.68 1.68 0 0 0 -1.8266666666666667 1.3333333333333333c-0.10666666666666666 0.5733333333333333 -0.18666666666666668 1.1333333333333333 -0.27999999999999997 1.6933333333333334a1.9066666666666665 1.9066666666666665 0 0 1 1.5066666666666664 -0.4666666666666666Z" fill="#fff48c" stroke-width="1"></path>
|
|
18
|
+
<path d="M22.226666666666667 14.266666666666666a1.4666666666666668 1.4666666666666668 0 0 0 -0.88 -2.6666666666666665h-1.0533333333333332a0.37333333333333335 0.37333333333333335 0 0 1 -0.3866666666666666 -0.41333333333333333l0.30666666666666664 -3.08a2.333333333333333 2.333333333333333 0 0 0 -3.5866666666666664 -2.253333333333333 2.8266666666666667 2.8266666666666667 0 0 1 -1.96 0.5866666666666667 1.68 1.68 0 0 0 -1.8266666666666667 1.3333333333333333 47.39999999999999 47.39999999999999 0 0 0 -0.9733333333333333 11.546666666666667l6.48 0.4666666666666666 0.15999999999999998 -2.76Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
19
|
+
<path d="M12 60.666666666666664a20 2 0 1 0 40 0 20 2 0 1 0 -40 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
20
|
+
<path d="M32.199999999999996 41.626666666666665a15.733333333333334 15.733333333333334 0 0 0 -5.573333333333332 0.9333333333333332 4.653333333333333 4.653333333333333 0 0 1 -6.1066666666666665 -2.92 49.33333333333333 49.33333333333333 0 0 1 -1.5599999999999998 -20.813333333333333H10.879999999999999a129.89333333333332 129.89333333333332 0 0 0 0 18.4 70.93333333333334 70.93333333333334 0 0 0 5.333333333333333 22.77333333333333h31.626666666666665v-2.013333333333333a16.186666666666667 16.186666666666667 0 0 0 -15.64 -16.36Z" fill="#00b8f0" stroke-width="1"></path>
|
|
21
|
+
<path d="M32.199999999999996 41.626666666666665a15.733333333333334 15.733333333333334 0 0 0 -5.573333333333332 0.9333333333333332 4.653333333333333 4.653333333333333 0 0 1 -6.1066666666666665 -2.92 44.85333333333333 44.85333333333333 0 0 1 -1.9866666666666666 -11.719999999999999A47.666666666666664 47.666666666666664 0 0 0 20.52 44 4.653333333333333 4.653333333333333 0 0 0 26.666666666666664 46.919999999999995a15.733333333333334 15.733333333333334 0 0 1 5.573333333333332 -0.9333333333333332A16.093333333333334 16.093333333333334 0 0 1 47.666666666666664 60h0.17333333333333334v-2.013333333333333a16.186666666666667 16.186666666666667 0 0 0 -15.64 -16.36Z" fill="#009fd9" stroke-width="1"></path>
|
|
22
|
+
<path d="M32.199999999999996 41.626666666666665a15.733333333333334 15.733333333333334 0 0 0 -5.573333333333332 0.9333333333333332 4.653333333333333 4.653333333333333 0 0 1 -6.1066666666666665 -2.92 49.33333333333333 49.33333333333333 0 0 1 -1.5599999999999998 -20.813333333333333H10.879999999999999a129.89333333333332 129.89333333333332 0 0 0 0 18.4 70.93333333333334 70.93333333333334 0 0 0 5.333333333333333 22.77333333333333h31.626666666666665v-2.013333333333333a16.186666666666667 16.186666666666667 0 0 0 -15.64 -16.36Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
23
|
+
<path d="M32 41.14666666666666a11.813333333333333 11.813333333333333 0 0 1 -3.3866666666666667 -0.4933333333333333v2.8533333333333335a3.3866666666666667 3.3866666666666667 0 1 0 6.773333333333333 0v-2.8533333333333335a11.813333333333333 11.813333333333333 0 0 1 -3.3866666666666667 0.4933333333333333Z" fill="#ffe500" stroke-width="1"></path>
|
|
24
|
+
<path d="M32 41.14666666666666a11.813333333333333 11.813333333333333 0 0 1 -3.3866666666666667 -0.4933333333333333 3.3866666666666667 3.3866666666666667 0 0 0 6.773333333333333 0 11.813333333333333 11.813333333333333 0 0 1 -3.3866666666666667 0.4933333333333333Z" fill="#ebcb00" stroke-width="1"></path>
|
|
25
|
+
<path d="M32 41.14666666666666a11.813333333333333 11.813333333333333 0 0 1 -3.3866666666666667 -0.4933333333333333v2.8533333333333335a3.3866666666666667 3.3866666666666667 0 1 0 6.773333333333333 0v-2.8533333333333335a11.813333333333333 11.813333333333333 0 0 1 -3.3866666666666667 0.4933333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
26
|
+
</svg>
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Man-Shrugging-1--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Man Shrugging 1 Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M8 60.666666666666664a24 2 0 1 0 48 0 24 2 0 1 0 -48 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
6
|
+
<path d="m48 39.773333333333326 -1.8399999999999999 10.666666666666666a15.826666666666664 15.826666666666664 0 0 0 -28.346666666666668 0l-1.8399999999999999 -10.666666666666666 -6.573333333333332 0.6933333333333334 1.5599999999999998 14.853333333333333a5.226666666666667 5.226666666666667 0 0 0 5.199999999999999 4.68h31.68a5.226666666666667 5.226666666666667 0 0 0 5.199999999999999 -4.68l1.5466666666666664 -14.853333333333333Z" fill="#00b8f0" stroke-width="1"></path>
|
|
7
|
+
<path d="m9.413333333333332 40.46666666666667 0.3333333333333333 3.1999999999999997 6.799999999999999 -0.7066666666666667 -0.5599999999999999 -3.1866666666666665 -6.573333333333332 0.6933333333333334z" fill="#009fd9" stroke-width="1"></path>
|
|
8
|
+
<path d="m48.01333333333333 39.773333333333326 -0.5599999999999999 3.1866666666666665 6.799999999999999 0.7066666666666667 0.3333333333333333 -3.1999999999999997 -6.573333333333332 -0.6933333333333334z" fill="#009fd9" stroke-width="1"></path>
|
|
9
|
+
<path d="M32 41.626666666666665a15.84 15.84 0 0 0 -14.173333333333334 8.786666666666665l0.45333333333333337 2.4a15.813333333333333 15.813333333333333 0 0 1 27.439999999999998 0l0.45333333333333337 -2.4A15.84 15.84 0 0 0 32 41.626666666666665Z" fill="#009fd9" stroke-width="1"></path>
|
|
10
|
+
<path d="m48 39.773333333333326 -1.8399999999999999 10.666666666666666a15.826666666666664 15.826666666666664 0 0 0 -28.346666666666668 0l-1.8399999999999999 -10.666666666666666 -6.573333333333332 0.6933333333333334 1.5599999999999998 14.853333333333333a5.226666666666667 5.226666666666667 0 0 0 5.199999999999999 4.68h31.68a5.226666666666667 5.226666666666667 0 0 0 5.199999999999999 -4.68l1.5466666666666664 -14.853333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="m28.613333333333333 36.22666666666667 6.786666666666666 0 0 10.586666666666666 -6.786666666666666 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
12
|
+
<path d="M32 36.22666666666667a3.3866666666666667 3.3866666666666667 0 0 0 -3.3866666666666667 3.3866666666666667v0.7999999999999999a3.3866666666666667 3.3866666666666667 0 0 0 6.773333333333333 0v-0.7866666666666666A3.3866666666666667 3.3866666666666667 0 0 0 32 36.22666666666667Z" fill="#ebcb00" stroke-width="1"></path>
|
|
13
|
+
<path d="m28.613333333333333 36.22666666666667 6.786666666666666 0 0 10.586666666666666 -6.786666666666666 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="m12.666666666666666 38.82666666666667 -4.24 -0.8133333333333332a1.1866666666666665 1.1866666666666665 0 0 1 -0.9333333333333332 -1.3333333333333333h0a1.1866666666666665 1.1866666666666665 0 0 1 1.3333333333333333 -0.9333333333333332l5.84 1.0533333333333332Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="m4.3999999999999995 37.239999999999995 5.466666666666666 1.0533333333333332A5.333333333333333 5.333333333333333 0 0 1 14.666666666666666 36.8h0a2.5066666666666664 2.5066666666666664 0 0 1 1.9733333333333332 2.92h0a2.5066666666666664 2.5066666666666664 0 0 1 -2.92 1.9733333333333332l-9.813333333333333 -1.88a1.3333333333333333 1.3333333333333333 0 0 1 -1.04 -1.5333333333333332 1.3333333333333333 1.3333333333333333 0 0 1 1.5333333333333332 -1.04Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="m51.33333333333333 38.82666666666667 4.24 -0.8133333333333332a1.1866666666666665 1.1866666666666665 0 0 0 0.9333333333333332 -1.3333333333333333h0a1.1866666666666665 1.1866666666666665 0 0 0 -1.3333333333333333 -0.9333333333333332L49.33333333333333 36.8Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
<path d="m59.6 37.239999999999995 -5.466666666666666 1.0533333333333332A5.333333333333333 5.333333333333333 0 0 0 49.33333333333333 36.8h0a2.5066666666666664 2.5066666666666664 0 0 0 -1.9733333333333332 2.92h0a2.5066666666666664 2.5066666666666664 0 0 0 2.92 1.9733333333333332l9.773333333333333 -1.88a1.3333333333333333 1.3333333333333333 0 0 0 1.04 -1.5333333333333332 1.3333333333333333 1.3333333333333333 0 0 0 -1.4933333333333334 -1.04Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
18
|
+
<path d="m17.826666666666664 50.413333333333334 1.04 5.426666666666667" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
19
|
+
<path d="m46.17333333333333 50.413333333333334 -1.04 5.426666666666667" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
20
|
+
<path d="M32 9.213333333333333a13.106666666666666 13.106666666666666 0 0 0 -3.253333333333333 0.41333333333333333c-2.48 0.5599999999999999 -5.706666666666667 1.4933333333333334 -8.626666666666665 0.9333333333333332a5.6 5.6 0 0 0 1.1199999999999999 4.279999999999999 13.08 13.08 0 0 0 -2.333333333333333 7.466666666666666v6.853333333333333h26.186666666666667v-6.853333333333333A13.093333333333334 13.093333333333334 0 0 0 32 9.213333333333333Z" fill="#724f3d" stroke-width="1"></path>
|
|
21
|
+
<path d="M32 9.213333333333333a13.106666666666666 13.106666666666666 0 0 0 -3.253333333333333 0.41333333333333333c-2.48 0.5599999999999999 -5.706666666666667 1.4933333333333334 -8.626666666666665 0.9333333333333332a5.959999999999999 5.959999999999999 0 0 0 0.9066666666666667 4 25.866666666666664 25.866666666666664 0 0 0 7.72 -1.0533333333333332 13.08 13.08 0 0 1 16.346666666666664 12.68v-3.88A13.093333333333334 13.093333333333334 0 0 0 32 9.213333333333333Z" fill="#a86c4d" stroke-width="1"></path>
|
|
22
|
+
<path d="M32 9.213333333333333a13.106666666666666 13.106666666666666 0 0 0 -3.253333333333333 0.41333333333333333c-2.48 0.5599999999999999 -5.706666666666667 1.4933333333333334 -8.626666666666665 0.9333333333333332a5.6 5.6 0 0 0 1.1199999999999999 4.279999999999999 13.08 13.08 0 0 0 -2.333333333333333 7.466666666666666v6.853333333333333h26.186666666666667v-6.853333333333333A13.093333333333334 13.093333333333334 0 0 0 32 9.213333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
23
|
+
<path d="M46.493333333333325 28.16a2.44 2.44 0 0 0 -1.853333333333333 -2.0533333333333332l-0.7866666666666666 -0.21333333333333332a2.7466666666666666 2.7466666666666666 0 0 1 -2 -2.6666666666666665v-2.7199999999999998A2.5066666666666664 2.5066666666666664 0 0 0 40 18.093333333333334a20.453333333333333 20.453333333333333 0 0 1 -8 1.4533333333333334 20.453333333333333 20.453333333333333 0 0 1 -8 -1.4533333333333334 2.5066666666666664 2.5066666666666664 0 0 0 -1.8666666666666665 2.413333333333333v2.7466666666666666a2.7466666666666666 2.7466666666666666 0 0 1 -2 2.6666666666666665l-0.7866666666666666 0.21333333333333332a2.44 2.44 0 0 0 -1.853333333333333 2.0533333333333332 2.413333333333333 2.413333333333333 0 0 0 2.413333333333333 2.6666666666666665h0.14666666666666667a12 12 0 0 0 23.866666666666664 0h0.14666666666666667a2.413333333333333 2.413333333333333 0 0 0 2.4266666666666667 -2.6933333333333334Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
24
|
+
<path d="M24.759999999999998 27.88a1.0266666666666666 1.0266666666666666 0 1 0 1.0266666666666666 -1.0266666666666666 1.0133333333333332 1.0133333333333332 0 0 0 -1.0266666666666666 1.0266666666666666Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
25
|
+
<path d="M39.239999999999995 27.88a1.0266666666666666 1.0266666666666666 0 1 1 -1.0266666666666666 -1.0266666666666666 1.0133333333333332 1.0133333333333332 0 0 1 1.0266666666666666 1.0266666666666666Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
26
|
+
<path d="M22.746666666666663 32.25333333333333a1.3333333333333333 0.7999999999999999 0 1 0 2.6666666666666665 0 1.3333333333333333 0.7999999999999999 0 1 0 -2.6666666666666665 0Z" fill="#ffaa54" stroke-width="1"></path>
|
|
27
|
+
<path d="M38.586666666666666 32.25333333333333a1.3333333333333333 0.7999999999999999 0 1 0 2.6666666666666665 0 1.3333333333333333 0.7999999999999999 0 1 0 -2.6666666666666665 0Z" fill="#ffaa54" stroke-width="1"></path>
|
|
28
|
+
<path d="M35.38666666666666 37.10666666666666c0 1.1466666666666665 -1.5066666666666664 1.4 -3.3866666666666667 1.4s-3.3866666666666667 -0.2533333333333333 -3.3866666666666667 -1.4a3.466666666666667 3.466666666666667 0 0 1 6.773333333333333 0Z" fill="#ff6242" stroke-width="1"></path>
|
|
29
|
+
<path d="M34.946666666666665 37.946666666666665a3.6399999999999997 3.6399999999999997 0 0 0 -5.893333333333333 0 5.333333333333333 5.333333333333333 0 0 0 2.9466666666666663 0.5599999999999999 5.333333333333333 5.333333333333333 0 0 0 2.9466666666666663 -0.5599999999999999Z" fill="#ffa694" stroke-width="1"></path>
|
|
30
|
+
<path d="M35.38666666666666 37.10666666666666c0 1.1466666666666665 -1.5066666666666664 1.4 -3.3866666666666667 1.4s-3.3866666666666667 -0.2533333333333333 -3.3866666666666667 -1.4a3.466666666666667 3.466666666666667 0 0 1 6.773333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
31
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Money-Mouth-Face-2--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Money Mouth Face 2 Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M15.493333333333332 60.413333333333334a16.506666666666668 2.253333333333333 0 1 0 33.013333333333335 0 16.506666666666668 2.253333333333333 0 1 0 -33.013333333333335 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
6
|
+
<path d="M10.186666666666666 23.813333333333333a21.813333333333333 21.813333333333333 0 1 0 43.626666666666665 0 21.813333333333333 21.813333333333333 0 1 0 -43.626666666666665 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
7
|
+
<path d="M32 2a21.826666666666668 21.826666666666668 0 1 0 21.813333333333333 21.813333333333333A21.813333333333333 21.813333333333333 0 0 0 32 2Zm0 40.36a19.906666666666666 19.906666666666666 0 1 1 19.906666666666666 -19.906666666666666A19.89333333333333 19.89333333333333 0 0 1 32 42.36Z" fill="#ebcb00" stroke-width="1"></path>
|
|
8
|
+
<path d="M10.186666666666666 23.813333333333333a21.813333333333333 21.813333333333333 0 1 0 43.626666666666665 0 21.813333333333333 21.813333333333333 0 1 0 -43.626666666666665 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
9
|
+
<path d="M49.45333333333333 29.333333333333332c0 0.9066666666666667 -1.2133333333333334 1.64 -2.6666666666666665 1.64s-2.6666666666666665 -0.7333333333333334 -2.6666666666666665 -1.64 1.2266666666666666 -1.6266666666666665 2.6666666666666665 -1.6266666666666665 2.6666666666666665 0.6666666666666666 2.6666666666666665 1.6266666666666665Z" fill="#ffaa54" stroke-width="1"></path>
|
|
10
|
+
<path d="M14.546666666666667 29.333333333333332c0 0.9066666666666667 1.2133333333333334 1.64 2.6666666666666665 1.64S20 30.173333333333332 20 29.333333333333332s-1.2266666666666666 -1.6266666666666665 -2.733333333333333 -1.6266666666666665 -2.7199999999999998 0.6666666666666666 -2.7199999999999998 1.6266666666666665Z" fill="#ffaa54" stroke-width="1"></path>
|
|
11
|
+
<path d="M23.786666666666665 30.4c0.5466666666666666 8.773333333333333 5.546666666666667 12.413333333333334 7.466666666666666 13.493333333333332a1.5599999999999998 1.5599999999999998 0 0 0 1.4933333333333334 0c1.92 -1.08 6.92 -4.72 7.466666666666666 -13.493333333333332A1.4933333333333334 1.4933333333333334 0 0 0 38.666666666666664 28.813333333333333H25.333333333333332a1.4933333333333334 1.4933333333333334 0 0 0 -1.5466666666666664 1.5866666666666664Z" fill="#ffb0ca" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="M32 36.36c0 -1.6266666666666665 4.906666666666666 -1.1466666666666665 4.906666666666666 0.5466666666666666V44a4.906666666666666 4.906666666666666 0 0 1 -9.813333333333333 0v-7.093333333333334c0 -1.6933333333333334 4.906666666666666 -2.173333333333333 4.906666666666666 -0.5466666666666666Z" fill="#ff6242" stroke-width="1"></path>
|
|
13
|
+
<path d="M32 36.36c0 -1.6266666666666665 -4.906666666666666 -1.1466666666666665 -4.906666666666666 0.5466666666666666v2.1866666666666665c0 -1.7066666666666666 9.813333333333333 -1.7066666666666666 9.813333333333333 0v-2.1866666666666665c0 -1.6933333333333334 -4.906666666666666 -2.173333333333333 -4.906666666666666 -0.5466666666666666Z" fill="#ff866e" stroke-width="1"></path>
|
|
14
|
+
<path d="M32 36.36c0 -1.6266666666666665 4.906666666666666 -1.1466666666666665 4.906666666666666 0.5466666666666666V44a4.906666666666666 4.906666666666666 0 0 1 -9.813333333333333 0v-7.093333333333334c0 -1.6933333333333334 4.906666666666666 -2.173333333333333 4.906666666666666 -0.5466666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M37.78666666666666 54.666666666666664a2.1999999999999997 2.1999999999999997 0 1 1 -4.359999999999999 0c0 -1.9333333333333331 2.173333333333333 -4.586666666666666 2.173333333333333 -4.586666666666666s2.1866666666666665 2.6799999999999997 2.1866666666666665 4.586666666666666Z" fill="#4aeff7" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M40.306666666666665 3.6399999999999997a12.266666666666666 12.266666666666666 0 1 0 13.506666666666668 20.066666666666666A21.813333333333333 21.813333333333333 0 0 0 40.306666666666665 3.6399999999999997Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
17
|
+
<path d="M56 12.773333333333333a11.32 11.32 0 1 1 -11.32 -11.32A11.32 11.32 0 0 1 56 12.773333333333333Z" fill="#fffacf" stroke-width="1"></path>
|
|
18
|
+
<path d="M44.67999999999999 21.959999999999997a11.32 11.32 0 0 1 -11.266666666666666 -10.253333333333334l0 1.0666666666666667a11.32 11.32 0 0 0 22.666666666666664 0l0 -1.0666666666666667a11.306666666666667 11.306666666666667 0 0 1 -11.4 10.253333333333334Z" fill="#ffe500" stroke-width="1"></path>
|
|
19
|
+
<path d="M44.67999999999999 4.986666666666666a11.32 11.32 0 0 1 11.173333333333334 9.546666666666667A12.706666666666665 12.706666666666665 0 0 0 56 12.773333333333333a11.32 11.32 0 0 0 -22.666666666666664 0 10.933333333333332 10.933333333333332 0 0 0 0.15999999999999998 1.76 11.32 11.32 0 0 1 11.186666666666667 -9.546666666666667Z" fill="#ffffff" stroke-width="1"></path>
|
|
20
|
+
<path d="M56 12.773333333333333a11.32 11.32 0 1 1 -11.32 -11.32A11.32 11.32 0 0 1 56 12.773333333333333Z" fill="none" stroke="#45413c" stroke-linejoin="round" stroke-width="1"></path>
|
|
21
|
+
<path d="m44.67999999999999 6.013333333333333 0 13.52" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
22
|
+
<path d="M41.97333333333333 15.479999999999999a2.6666666666666665 2.6666666666666665 0 1 0 2.6666666666666665 -2.6666666666666665 2.6666666666666665 2.6666666666666665 0 1 1 2.6666666666666665 -2.6666666666666665" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
23
|
+
<path d="M23.69333333333333 3.6399999999999997A12.266666666666666 12.266666666666666 0 1 1 10.186666666666666 23.706666666666667 21.813333333333333 21.813333333333333 0 0 1 23.69333333333333 3.6399999999999997Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
24
|
+
<path d="M8 12.773333333333333a11.32 11.32 0 1 0 11.32 -11.32A11.32 11.32 0 0 0 8 12.773333333333333Z" fill="#fffacf" stroke-width="1"></path>
|
|
25
|
+
<path d="M19.32 21.959999999999997a11.32 11.32 0 0 0 11.266666666666666 -10.253333333333334l0 1.0666666666666667a11.32 11.32 0 0 1 -22.666666666666664 0l0 -1.0666666666666667a11.306666666666667 11.306666666666667 0 0 0 11.4 10.253333333333334Z" fill="#ffe500" stroke-width="1"></path>
|
|
26
|
+
<path d="M19.32 4.986666666666666a11.32 11.32 0 0 0 -11.173333333333334 9.546666666666667A12.706666666666665 12.706666666666665 0 0 1 8 12.773333333333333a11.32 11.32 0 0 1 22.666666666666664 0 10.933333333333332 10.933333333333332 0 0 1 -0.15999999999999998 1.76 11.32 11.32 0 0 0 -11.186666666666667 -9.546666666666667Z" fill="#ffffff" stroke-width="1"></path>
|
|
27
|
+
<path d="M8 12.773333333333333a11.32 11.32 0 1 0 11.32 -11.32A11.32 11.32 0 0 0 8 12.773333333333333Z" fill="none" stroke="#45413c" stroke-linejoin="round" stroke-width="1"></path>
|
|
28
|
+
<path d="m19.426666666666666 6.013333333333333 0 13.52" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
29
|
+
<path d="M16.733333333333334 15.479999999999999a2.6666666666666665 2.6666666666666665 0 1 0 2.6666666666666665 -2.6666666666666665 2.6666666666666665 2.6666666666666665 0 1 1 2.6666666666666665 -2.6666666666666665" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Mouth--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Mouth Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M13.893333333333333 57.53333333333333a18.106666666666666 2.466666666666667 0 1 0 36.21333333333333 0 18.106666666666666 2.466666666666667 0 1 0 -36.21333333333333 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 48s-5.653333333333333 0.45333333333333337 -15.333333333333332 -6.333333333333333a108.27999999999999 108.27999999999999 0 0 0 -12.2 -7.6A2.373333333333333 2.373333333333333 0 0 1 3.1999999999999997 32a2.3466666666666667 2.3466666666666667 0 0 1 1.0666666666666667 -1.9866666666666666 51.879999999999995 51.879999999999995 0 0 0 14.666666666666666 -14.546666666666667C26.666666666666664 3.093333333333333 32 10.666666666666666 32 10.666666666666666s5.333333333333333 -7.546666666666667 13.066666666666666 4.826666666666666a51.879999999999995 51.879999999999995 0 0 0 14.666666666666666 14.546666666666667 2.3466666666666667 2.3466666666666667 0 0 1 1.0666666666666667 1.96 2.373333333333333 2.373333333333333 0 0 1 -1.3333333333333333 2.1066666666666665 108.27999999999999 108.27999999999999 0 0 0 -12.2 7.6C37.65333333333333 48.493333333333325 32 48 32 48Z" fill="#ff6196" stroke-width="1"></path>
|
|
7
|
+
<path d="M3.1999999999999997 32.13333333333333c0 0.5733333333333333 0.7066666666666667 0.96 1.3333333333333333 1.1333333333333333 1.9866666666666666 0.5733333333333333 6.239999999999999 1.9066666666666665 12.2 4.266666666666667C26.346666666666668 41.33333333333333 32 41.10666666666666 32 41.10666666666666s5.653333333333333 0.2533333333333333 15.333333333333332 -3.5733333333333333c5.959999999999999 -2.36 10.213333333333333 -3.6933333333333334 12.2 -4.266666666666667 0.5599999999999999 -0.17333333333333334 1.24 -0.5599999999999999 1.3333333333333333 -1.1333333333333333Z" fill="#ff87af" stroke-width="1"></path>
|
|
8
|
+
<path d="m4.466666666666667 34.10666666666666 0.13333333333333333 0.06666666666666667A51.76 51.76 0 0 0 18.93333333333333 19.85333333333333c4.653333333333333 -7.426666666666667 8.426666666666666 -7.68 10.666666666666666 -6.666666666666666a6.04 6.04 0 0 0 4.72 0c2.28 -0.9866666666666666 6.053333333333333 -0.7333333333333334 10.666666666666666 6.666666666666666a51.76 51.76 0 0 0 14.413333333333334 14.32l0.13333333333333333 -0.06666666666666667a2.373333333333333 2.373333333333333 0 0 0 1.3333333333333333 -2.1066666666666665 2.3466666666666667 2.3466666666666667 0 0 0 -1.0666666666666667 -1.9866666666666666 51.879999999999995 51.879999999999995 0 0 1 -14.666666666666666 -14.546666666666667C37.33333333333333 3.093333333333333 32 10.666666666666666 32 10.666666666666666s-5.333333333333333 -7.546666666666667 -13.066666666666666 4.826666666666666a51.879999999999995 51.879999999999995 0 0 1 -14.666666666666666 14.546666666666667A2.3466666666666667 2.3466666666666667 0 0 0 3.1999999999999997 32a2.373333333333333 2.373333333333333 0 0 0 1.2666666666666666 2.1066666666666665Z" fill="#ff87af" stroke-width="1"></path>
|
|
9
|
+
<path d="M60.8 32a2.373333333333333 2.373333333333333 0 0 1 -1.3333333333333333 2.1066666666666665 108.27999999999999 108.27999999999999 0 0 0 -12.2 7.6C37.65333333333333 48.493333333333325 32 48 32 48s-5.653333333333333 0.45333333333333337 -15.333333333333332 -6.333333333333333a108.27999999999999 108.27999999999999 0 0 0 -12.2 -7.6A2.373333333333333 2.373333333333333 0 0 1 3.1999999999999997 32a2.3466666666666667 2.3466666666666667 0 0 1 1.0666666666666667 -1.9866666666666666 51.879999999999995 51.879999999999995 0 0 0 14.666666666666666 -14.546666666666667C26.666666666666664 3.093333333333333 32 10.666666666666666 32 10.666666666666666s5.333333333333333 -7.546666666666667 13.066666666666666 4.826666666666666a51.879999999999995 51.879999999999995 0 0 0 14.666666666666666 14.546666666666667 2.3466666666666667 2.3466666666666667 0 0 1 1.0666666666666667 1.96Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M32 32.13333333333333a112.08 112.08 0 0 1 14.4 0.9333333333333332 42.666666666666664 42.666666666666664 0 0 0 14.4 -0.9333333333333332 49.78666666666667 49.78666666666667 0 0 1 -14.4 -4.626666666666667c-7.306666666666667 -3.706666666666666 -9.973333333333333 -4.7333333333333325 -14.4 -4.7333333333333325s-7.093333333333334 1.0266666666666666 -14.4 4.7333333333333325A49.78666666666667 49.78666666666667 0 0 1 3.1999999999999997 32.13333333333333a42.666666666666664 42.666666666666664 0 0 0 14.4 0.9333333333333332 112.08 112.08 0 0 1 14.4 -0.9333333333333332Z" fill="#525252" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="M32 28.746666666666663c5.613333333333333 0 11.04 -0.14666666666666667 16.119999999999997 -0.41333333333333333 -0.5599999999999999 -0.26666666666666666 -1.1466666666666665 -0.5333333333333333 -1.72 -0.8266666666666667 -7.306666666666667 -3.706666666666666 -9.973333333333333 -4.7333333333333325 -14.4 -4.7333333333333325s-7.093333333333334 1.0266666666666666 -14.4 4.7333333333333325c-0.5733333333333333 0.29333333333333333 -1.16 0.5599999999999999 -1.72 0.8266666666666667 5.08 0.26666666666666666 10.506666666666666 0.41333333333333333 16.119999999999997 0.41333333333333333Z" fill="#ffffff" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Nauseated-Face-2--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Nauseated Face 2 Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#6dd627" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 2a26.666666666666664 26.666666666666664 0 1 0 26.666666666666664 26.666666666666664 26.666666666666664 26.666666666666664 0 0 0 -26.666666666666664 -26.666666666666664Zm0 49.33333333333333a24.333333333333332 24.333333333333332 0 1 1 24.333333333333332 -24.333333333333332A24.333333333333332 24.333333333333332 0 0 1 32 51.33333333333333Z" fill="#46b000" stroke-width="1"></path>
|
|
7
|
+
<path d="M24 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#9ceb60" stroke-width="1"></path>
|
|
8
|
+
<path d="M10.666666666666666 60.666666666666664a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
9
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M51.33333333333333 36c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.333333333333333 -0.8933333333333333 -3.333333333333333 -2 1.4933333333333334 -2 3.333333333333333 -2 3.333333333333333 0.8933333333333333 3.333333333333333 2Z" fill="#46b000" stroke-width="1"></path>
|
|
11
|
+
<path d="M12.666666666666666 36c0 1.1066666666666665 1.4933333333333334 2 3.333333333333333 2s3.333333333333333 -0.8933333333333333 3.333333333333333 -2 -1.4933333333333334 -2 -3.333333333333333 -2 -3.333333333333333 0.8933333333333333 -3.333333333333333 2Z" fill="#46b000" stroke-width="1"></path>
|
|
12
|
+
<path d="M19.333333333333332 28.666666666666664a1.3333333333333333 1.3333333333333333 0 1 1 -1.3333333333333333 -1.3333333333333333 1.3333333333333333 1.3333333333333333 0 0 1 1.3333333333333333 1.3333333333333333Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M44.666666666666664 28.666666666666664a1.3333333333333333 1.3333333333333333 0 1 0 1.3333333333333333 -1.3333333333333333 1.3333333333333333 1.3333333333333333 0 0 0 -1.3333333333333333 1.3333333333333333Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="M44.666666666666664 20s2.1066666666666665 4.666666666666666 6.666666666666666 4.666666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M19.333333333333332 20s-2.1066666666666665 4.666666666666666 -6.666666666666666 4.666666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="m24.666666666666664 38.69333333333333 14.666666666666666 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
<path d="M40.72 42.05333333333333a4.76 4.76 0 0 1 0 -6.666666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
18
|
+
<path d="M23.28 35.33333333333333a4.76 4.76 0 0 1 0 6.666666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
19
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Neutral-Face--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Neutral Face Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 2a26.666666666666664 26.666666666666664 0 1 0 26.666666666666664 26.666666666666664 26.666666666666664 26.666666666666664 0 0 0 -26.666666666666664 -26.666666666666664Zm0 49.33333333333333a24.333333333333332 24.333333333333332 0 1 1 24.333333333333332 -24.333333333333332A24.333333333333332 24.333333333333332 0 0 1 32 51.33333333333333Z" fill="#ebcb00" stroke-width="1"></path>
|
|
7
|
+
<path d="M24 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" stroke-width="1"></path>
|
|
8
|
+
<path d="M10.666666666666666 60.666666666666664a21.333333333333332 2 0 1 0 42.666666666666664 0 21.333333333333332 2 0 1 0 -42.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
9
|
+
<path d="M5.333333333333333 28.666666666666664a26.666666666666664 26.666666666666664 0 1 0 53.33333333333333 0 26.666666666666664 26.666666666666664 0 1 0 -53.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M19.333333333333332 27.333333333333332a1.3333333333333333 1.3333333333333333 0 1 1 -1.3333333333333333 -1.3333333333333333 1.3333333333333333 1.3333333333333333 0 0 1 1.3333333333333333 1.3333333333333333Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="M44.666666666666664 27.333333333333332a1.3333333333333333 1.3333333333333333 0 1 0 1.3333333333333333 -1.3333333333333333 1.3333333333333333 1.3333333333333333 0 0 0 -1.3333333333333333 1.3333333333333333Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="M51.33333333333333 35.33333333333333c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.333333333333333 -0.8933333333333333 -3.333333333333333 -2S46.16 33.33333333333333 48 33.33333333333333s3.333333333333333 0.8933333333333333 3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
13
|
+
<path d="M12.666666666666666 35.33333333333333c0 1.1066666666666665 1.4933333333333334 2 3.333333333333333 2s3.333333333333333 -0.8933333333333333 3.333333333333333 -2S17.84 33.33333333333333 16 33.33333333333333s-3.333333333333333 0.8933333333333333 -3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
14
|
+
<path d="m25.333333333333332 41.33333333333333 13.333333333333332 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Ok-Hand-1--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
OK Hand 1 Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M36.21333333333333 7.706666666666667a3.786666666666666 3.786666666666666 0 0 0 -5.3999999999999995 5.333333333333333 35.14666666666666 35.14666666666666 0 0 1 8.44 13.919999999999998 14.666666666666666 14.666666666666666 0 0 0 -8.079999999999998 -4 16.2 16.2 0 0 0 -12.84 3.2933333333333334 3.8 3.8 0 0 0 1.24 6.413333333333332 4.213333333333333 4.213333333333333 0 0 0 4.16 -0.6666666666666666 8.386666666666667 8.386666666666667 0 0 1 6.666666666666666 -1.1733333333333333 7 7 0 1 1 -3 13.68 8 8 0 0 1 -6.1466666666666665 -6.666666666666666 4.1066666666666665 4.1066666666666665 0 0 0 -3.253333333333333 -3.88A3.6399999999999997 3.6399999999999997 0 0 0 13.333333333333332 37.33333333333333c0 9.48 7.826666666666666 20.706666666666663 20 19 10.16 -1.44 13.599999999999998 -4.333333333333333 14.973333333333333 -17.159999999999997 0.8133333333333332 -9.573333333333332 -3.173333333333333 -22.29333333333333 -12.093333333333334 -31.46666666666667Z" fill="#ffe500" stroke-width="1"></path>
|
|
6
|
+
<path d="M31.253333333333334 12.226666666666667a3.7733333333333334 3.7733333333333334 0 0 1 5.16 0.18666666666666668 44.120000000000005 44.120000000000005 0 0 1 12 25.146666666666665c0.26666666666666666 -9.333333333333332 -3.76 -21.186666666666667 -12.186666666666667 -29.85333333333333A3.786666666666666 3.786666666666666 0 0 0 30.666666666666664 12.866666666666667a3.8 3.8 0 0 1 0.5866666666666667 -0.6399999999999999Z" fill="#fff48c" stroke-width="1"></path>
|
|
7
|
+
<path d="M16.666666666666664 60.666666666666664a15.333333333333332 2 0 1 0 30.666666666666664 0 15.333333333333332 2 0 1 0 -30.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
8
|
+
<path d="M31.199999999999996 22.946666666666665a14.666666666666666 14.666666666666666 0 0 1 8 4 35.10666666666666 35.10666666666666 0 0 0 -7.066666666666666 -12.44 2.893333333333333 2.893333333333333 0 0 0 -4.4799999999999995 0.14666666666666667 2.88 2.88 0 0 0 0.14666666666666667 3.6399999999999997 30.266666666666666 30.266666666666666 0 0 1 3.3999999999999995 4.653333333333333Z" fill="#ffe500" stroke-width="1"></path>
|
|
9
|
+
<path d="M27.426666666666666 15.093333333333334a2.92 2.92 0 0 1 2.9066666666666667 0.9199999999999999 34.946666666666665 34.946666666666665 0 0 1 5.506666666666666 8.453333333333333 14.906666666666666 14.906666666666666 0 0 1 3.413333333333333 2.48 35.10666666666666 35.10666666666666 0 0 0 -7.066666666666666 -12.44 2.893333333333333 2.893333333333333 0 0 0 -4.4799999999999995 0.14666666666666667 4 4 0 0 0 -0.27999999999999997 0.44Z" fill="#ebcb00" stroke-width="1"></path>
|
|
10
|
+
<path d="M31.199999999999996 22.946666666666665a14.666666666666666 14.666666666666666 0 0 1 8 4 35.10666666666666 35.10666666666666 0 0 0 -7.066666666666666 -12.44 2.893333333333333 2.893333333333333 0 0 0 -4.4799999999999995 0.14666666666666667h0a2.88 2.88 0 0 0 0.14666666666666667 3.6399999999999997 30.266666666666666 30.266666666666666 0 0 1 3.3999999999999995 4.653333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="M31.173333333333332 27.69333333333333c3.1066666666666665 0.45333333333333337 9.706666666666667 3.16 11.879999999999999 5.266666666666667a14.919999999999998 14.919999999999998 0 0 0 -11.879999999999999 -10.013333333333332 16.2 16.2 0 0 0 -12.84 3.2933333333333334 3.8266666666666667 3.8266666666666667 0 0 0 -0.4666666666666666 5.1866666666666665c3.1066666666666665 -3.1333333333333333 8.386666666666667 -4.453333333333333 13.306666666666667 -3.733333333333333Z" fill="#fff48c" stroke-width="1"></path>
|
|
12
|
+
<path d="M39.25333333333333 26.946666666666665a14.866666666666667 14.866666666666667 0 0 1 4.573333333333333 10.666666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M36.21333333333333 7.706666666666667a3.786666666666666 3.786666666666666 0 0 0 -5.3999999999999995 5.333333333333333 35.14666666666666 35.14666666666666 0 0 1 8.44 13.919999999999998 14.666666666666666 14.666666666666666 0 0 0 -8.079999999999998 -4 16.2 16.2 0 0 0 -12.84 3.2933333333333334 3.8 3.8 0 0 0 1.24 6.413333333333332 4.213333333333333 4.213333333333333 0 0 0 4.16 -0.6666666666666666 8.386666666666667 8.386666666666667 0 0 1 6.666666666666666 -1.1733333333333333 7 7 0 1 1 -3 13.68 8 8 0 0 1 -6.1466666666666665 -6.666666666666666 4.1066666666666665 4.1066666666666665 0 0 0 -3.253333333333333 -3.88A3.6399999999999997 3.6399999999999997 0 0 0 13.333333333333332 37.33333333333333v0c0 9.48 7.826666666666666 20.706666666666663 20 19 10.16 -1.44 13.599999999999998 -4.333333333333333 14.973333333333333 -17.159999999999997 0.8133333333333332 -9.573333333333332 -3.173333333333333 -22.29333333333333 -12.093333333333334 -31.46666666666667Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Old-Man-1--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Old Man 1 Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M14.08 59.33333333333333a18 2 0 1 0 36 0 18 2 0 1 0 -36 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
6
|
+
<path d="M54.50666666666667 32.33333333333333a4.359999999999999 4.359999999999999 0 0 0 -3.733333333333333 -4.333333333333333C48.946666666666665 18.493333333333332 41.239999999999995 11.346666666666666 32 11.346666666666666S15.053333333333331 18.493333333333332 13.226666666666667 28a4.359999999999999 4.359999999999999 0 0 0 0 8.626666666666665C15.053333333333331 46.17333333333333 22.759999999999998 53.33333333333333 32 53.33333333333333s16.946666666666665 -7.16 18.773333333333333 -16.68a4.373333333333333 4.373333333333333 0 0 0 3.733333333333333 -4.32Z" fill="#ffe500" stroke-width="1"></path>
|
|
7
|
+
<path d="M12.106666666666666 32.69333333333333a2.36 2.36 0 0 0 1.4266666666666667 -1.5466666666666664 19.133333333333333 19.133333333333333 0 0 1 36.93333333333333 0 2.36 2.36 0 0 0 1.4266666666666667 1.5466666666666664 4.24 4.24 0 0 1 2.0666666666666664 1.7466666666666666 4.306666666666667 4.306666666666667 0 0 0 0.5466666666666666 -2.1066666666666665 4.359999999999999 4.359999999999999 0 0 0 -3.733333333333333 -4.333333333333333C48.946666666666665 18.493333333333332 41.239999999999995 11.346666666666666 32 11.346666666666666S15.053333333333331 18.493333333333332 13.226666666666667 28a4.359999999999999 4.359999999999999 0 0 0 -3.733333333333333 4.306666666666667 4.306666666666667 4.306666666666667 0 0 0 0.5466666666666666 2.1066666666666665 4.24 4.24 0 0 1 2.0666666666666664 -1.72Z" fill="#fff48c" stroke-width="1"></path>
|
|
8
|
+
<path d="M54.50666666666667 32.33333333333333a4.359999999999999 4.359999999999999 0 0 0 -3.733333333333333 -4.333333333333333C48.946666666666665 18.493333333333332 41.239999999999995 11.346666666666666 32 11.346666666666666S15.053333333333331 18.493333333333332 13.226666666666667 28a4.359999999999999 4.359999999999999 0 0 0 0 8.626666666666665C15.053333333333331 46.17333333333333 22.759999999999998 53.33333333333333 32 53.33333333333333s16.946666666666665 -7.16 18.773333333333333 -16.68a4.373333333333333 4.373333333333333 0 0 0 3.733333333333333 -4.32Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
9
|
+
<path d="M20.733333333333334 31.199999999999996a1.5999999999999999 1.5999999999999999 0 1 0 1.5999999999999999 -1.5999999999999999 1.5999999999999999 1.5999999999999999 0 0 0 -1.5999999999999999 1.5999999999999999Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M43.266666666666666 31.199999999999996a1.5999999999999999 1.5999999999999999 0 1 1 -1.5999999999999999 -1.5999999999999999 1.5999999999999999 1.5999999999999999 0 0 1 1.5999999999999999 1.5999999999999999Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="M27.626666666666665 42.666666666666664a0.6799999999999999 0.6799999999999999 0 0 0 -0.5066666666666666 0.24 0.6666666666666666 0.6666666666666666 0 0 0 -0.15999999999999998 0.5466666666666666 5.1066666666666665 5.1066666666666665 0 0 0 10.079999999999998 0 0.6666666666666666 0.6666666666666666 0 0 0 -0.15999999999999998 -0.5466666666666666 0.6799999999999999 0.6799999999999999 0 0 0 -0.5066666666666666 -0.24Z" fill="#ff6242" stroke-width="1"></path>
|
|
12
|
+
<path d="M32 44.78666666666667a6.253333333333334 6.253333333333334 0 0 0 -3.88 1.1866666666666665 5.16 5.16 0 0 0 7.76 0 6.253333333333334 6.253333333333334 0 0 0 -3.88 -1.1866666666666665Z" fill="#ffa694" stroke-width="1"></path>
|
|
13
|
+
<path d="M27.626666666666665 42.666666666666664a0.6799999999999999 0.6799999999999999 0 0 0 -0.5066666666666666 0.24 0.6666666666666666 0.6666666666666666 0 0 0 -0.15999999999999998 0.5466666666666666 5.1066666666666665 5.1066666666666665 0 0 0 10.079999999999998 0 0.6666666666666666 0.6666666666666666 0 0 0 -0.15999999999999998 -0.5466666666666666 0.6799999999999999 0.6799999999999999 0 0 0 -0.5066666666666666 -0.24Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="M17.613333333333333 38.013333333333335a2.0666666666666664 1.24 0 1 0 4.133333333333333 0 2.0666666666666664 1.24 0 1 0 -4.133333333333333 0Z" fill="#ffaa54" stroke-width="1"></path>
|
|
15
|
+
<path d="M42.25333333333333 38.013333333333335a2.0666666666666664 1.24 0 1 0 4.133333333333333 0 2.0666666666666664 1.24 0 1 0 -4.133333333333333 0Z" fill="#ffaa54" stroke-width="1"></path>
|
|
16
|
+
<path d="M38.82666666666667 42.666666666666664H25.173333333333332a0.5333333333333333 0.5333333333333333 0 0 1 -0.52 -0.6533333333333333l0.10666666666666666 -0.42666666666666664a4.093333333333333 4.093333333333333 0 0 1 4 -3.173333333333333h6.48a4.093333333333333 4.093333333333333 0 0 1 4 3.173333333333333l0.10666666666666666 0.42666666666666664a0.5333333333333333 0.5333333333333333 0 0 1 -0.52 0.6533333333333333Z" fill="#e0e0e0" stroke-width="1"></path>
|
|
17
|
+
<path d="M25.173333333333332 42.666666666666664a4.08 4.08 0 0 1 3.5866666666666664 -2.12h6.48A4.08 4.08 0 0 1 38.82666666666667 42.666666666666664a0.5333333333333333 0.5333333333333333 0 0 0 0.52 -0.6533333333333333l-0.10666666666666666 -0.42666666666666664a4.093333333333333 4.093333333333333 0 0 0 -4 -3.173333333333333h-6.48a4.093333333333333 4.093333333333333 0 0 0 -4 3.173333333333333l-0.10666666666666666 0.42666666666666664a0.5333333333333333 0.5333333333333333 0 0 0 0.52 0.6533333333333333Z" fill="#ffffff" stroke-width="1"></path>
|
|
18
|
+
<path d="M38.82666666666667 42.666666666666664H25.173333333333332a0.5333333333333333 0.5333333333333333 0 0 1 -0.52 -0.6533333333333333l0.10666666666666666 -0.42666666666666664a4.093333333333333 4.093333333333333 0 0 1 4 -3.173333333333333h6.48a4.093333333333333 4.093333333333333 0 0 1 4 3.173333333333333l0.10666666666666666 0.42666666666666664a0.5333333333333333 0.5333333333333333 0 0 1 -0.52 0.6533333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
19
|
+
<path d="M50.773333333333326 28a13.333333333333332 13.333333333333332 0 0 0 0 -7.466666666666666c-1.3333333333333333 -3.24 -4.986666666666666 -6.173333333333333 -7.506666666666666 -5.213333333333333s0 5.799999999999999 3.1199999999999997 7.546666666666667A11.453333333333333 11.453333333333333 0 0 1 50.773333333333326 28Z" fill="#e0e0e0" stroke-width="1"></path>
|
|
20
|
+
<path d="M13.226666666666667 28a13.333333333333332 13.333333333333332 0 0 1 0 -7.466666666666666c1.2666666666666666 -3.24 4.986666666666666 -6.173333333333333 7.506666666666666 -5.213333333333333s0 5.799999999999999 -3.1199999999999997 7.546666666666667A11.453333333333333 11.453333333333333 0 0 0 13.226666666666667 28Z" fill="#e0e0e0" stroke-width="1"></path>
|
|
21
|
+
<path d="M43.266666666666666 18.53333333333333c2.5199999999999996 -0.96 6.226666666666667 1.96 7.506666666666666 5.213333333333333a8.986666666666666 8.986666666666666 0 0 1 0.4666666666666666 1.853333333333333 11.106666666666666 11.106666666666666 0 0 0 -0.4666666666666666 -5.039999999999999c-1.3333333333333333 -3.24 -4.986666666666666 -6.173333333333333 -7.506666666666666 -5.213333333333333 -1.3333333333333333 0.4933333333333333 -1.2533333333333332 1.96 -0.5333333333333333 3.533333333333333a1.48 1.48 0 0 1 0.5333333333333333 -0.3466666666666667Z" fill="#ffffff" stroke-width="1"></path>
|
|
22
|
+
<path d="M13.226666666666667 23.746666666666663c1.2666666666666666 -3.253333333333333 4.986666666666666 -6.173333333333333 7.506666666666666 -5.213333333333333a1.48 1.48 0 0 1 0.5333333333333333 0.3466666666666667c0.72 -1.5733333333333333 0.7333333333333334 -3.0399999999999996 -0.5333333333333333 -3.533333333333333 -2.5199999999999996 -0.96 -6.239999999999999 1.9733333333333332 -7.506666666666666 5.213333333333333a10.919999999999998 10.919999999999998 0 0 0 -0.4666666666666666 5.039999999999999 8.986666666666666 8.986666666666666 0 0 1 0.4666666666666666 -1.853333333333333Z" fill="#ffffff" stroke-width="1"></path>
|
|
23
|
+
<path d="M50.773333333333326 28a13.333333333333332 13.333333333333332 0 0 0 0 -7.466666666666666c-1.3333333333333333 -3.24 -4.986666666666666 -6.173333333333333 -7.506666666666666 -5.213333333333333s0 5.799999999999999 3.1199999999999997 7.546666666666667A11.453333333333333 11.453333333333333 0 0 1 50.773333333333326 28Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
24
|
+
<path d="M13.226666666666667 28a13.333333333333332 13.333333333333332 0 0 1 0 -7.466666666666666c1.2666666666666666 -3.24 4.986666666666666 -6.173333333333333 7.506666666666666 -5.213333333333333s0 5.799999999999999 -3.1199999999999997 7.546666666666667A11.453333333333333 11.453333333333333 0 0 0 13.226666666666667 28Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
25
|
+
<path d="M26.173333333333332 24.346666666666668a19.826666666666664 19.826666666666664 0 0 1 5.826666666666666 -0.7333333333333334 19.826666666666664 19.826666666666664 0 0 1 5.826666666666666 0.7333333333333334" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
26
|
+
<path d="M26.946666666666665 21.333333333333332a20.826666666666664 20.826666666666664 0 0 1 5.053333333333333 -0.5333333333333333 20.826666666666664 20.826666666666664 0 0 1 5.053333333333333 0.52" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
27
|
+
</svg>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Old-Woman-1--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Old Woman 1 Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M23.226666666666667 8.92a8.773333333333333 7.586666666666667 0 1 0 17.546666666666667 0 8.773333333333333 7.586666666666667 0 1 0 -17.546666666666667 0Z" fill="#e0e0e0" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 4.333333333333333c4.253333333333333 0 7.799999999999999 2.6666666666666665 8.6 6.079999999999999a6.186666666666666 6.186666666666666 0 0 0 0.17333333333333334 -1.4933333333333334C40.773333333333326 4.7333333333333325 36.85333333333333 1.3333333333333333 32 1.3333333333333333s-8.773333333333333 3.3999999999999995 -8.773333333333333 7.586666666666667a6.186666666666666 6.186666666666666 0 0 0 0.17333333333333334 1.4933333333333334c0.7999999999999999 -3.466666666666667 4.346666666666666 -6.079999999999999 8.6 -6.079999999999999Z" fill="#ffffff" stroke-width="1"></path>
|
|
7
|
+
<path d="M23.226666666666667 8.92a8.773333333333333 7.586666666666667 0 1 0 17.546666666666667 0 8.773333333333333 7.586666666666667 0 1 0 -17.546666666666667 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
8
|
+
<path d="M14 60a18 2 0 1 0 36 0 18 2 0 1 0 -36 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
9
|
+
<path d="M54.50666666666667 33a4.359999999999999 4.359999999999999 0 0 0 -3.733333333333333 -4.306666666666667C48.946666666666665 19.159999999999997 41.239999999999995 12 32 12S15.053333333333331 19.159999999999997 13.226666666666667 28.69333333333333a4.359999999999999 4.359999999999999 0 0 0 0 8.626666666666665C15.053333333333331 46.84 22.759999999999998 54 32 54S48.946666666666665 46.84 50.773333333333326 37.33333333333333a4.373333333333333 4.373333333333333 0 0 0 3.733333333333333 -4.333333333333333Z" fill="#ffe500" stroke-width="1"></path>
|
|
10
|
+
<path d="M54.50666666666667 33a4.359999999999999 4.359999999999999 0 0 0 -3.733333333333333 -4.306666666666667C48.946666666666665 19.159999999999997 41.239999999999995 12 32 12S15.053333333333331 19.159999999999997 13.226666666666667 28.69333333333333a4.359999999999999 4.359999999999999 0 0 0 0 8.626666666666665C15.053333333333331 46.84 22.759999999999998 54 32 54S48.946666666666665 46.84 50.773333333333326 37.33333333333333a4.373333333333333 4.373333333333333 0 0 0 3.733333333333333 -4.333333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="M20.733333333333334 31.866666666666664a1.5999999999999999 1.5999999999999999 0 1 0 1.5999999999999999 -1.5999999999999999 1.5999999999999999 1.5999999999999999 0 0 0 -1.5999999999999999 1.5999999999999999Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="M43.266666666666666 31.866666666666664a1.5999999999999999 1.5999999999999999 0 1 1 -1.5999999999999999 -1.5999999999999999 1.5999999999999999 1.5999999999999999 0 0 1 1.5999999999999999 1.5999999999999999Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M27.626666666666665 43.346666666666664a0.6799999999999999 0.6799999999999999 0 0 0 -0.5066666666666666 0.24 0.6666666666666666 0.6666666666666666 0 0 0 -0.15999999999999998 0.5466666666666666 5.1066666666666665 5.1066666666666665 0 0 0 10.079999999999998 0 0.6666666666666666 0.6666666666666666 0 0 0 -0.15999999999999998 -0.5466666666666666 0.6799999999999999 0.6799999999999999 0 0 0 -0.5066666666666666 -0.24Z" fill="#ff6242" stroke-width="1"></path>
|
|
14
|
+
<path d="M32 45.45333333333333a6.253333333333334 6.253333333333334 0 0 0 -3.88 1.1866666666666665 5.16 5.16 0 0 0 7.76 0 6.253333333333334 6.253333333333334 0 0 0 -3.88 -1.1866666666666665Z" fill="#ffa694" stroke-width="1"></path>
|
|
15
|
+
<path d="M27.626666666666665 43.346666666666664a0.6799999999999999 0.6799999999999999 0 0 0 -0.5066666666666666 0.24 0.6666666666666666 0.6666666666666666 0 0 0 -0.15999999999999998 0.5466666666666666 5.1066666666666665 5.1066666666666665 0 0 0 10.079999999999998 0 0.6666666666666666 0.6666666666666666 0 0 0 -0.15999999999999998 -0.5466666666666666 0.6799999999999999 0.6799999999999999 0 0 0 -0.5066666666666666 -0.24Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M17.613333333333333 38.68a2.0666666666666664 1.24 0 1 0 4.133333333333333 0 2.0666666666666664 1.24 0 1 0 -4.133333333333333 0Z" fill="#ffaa54" stroke-width="1"></path>
|
|
17
|
+
<path d="M42.25333333333333 38.68a2.0666666666666664 1.24 0 1 0 4.133333333333333 0 2.0666666666666664 1.24 0 1 0 -4.133333333333333 0Z" fill="#ffaa54" stroke-width="1"></path>
|
|
18
|
+
<path d="M26.173333333333332 26.04A20.159999999999997 20.159999999999997 0 0 1 32 25.333333333333332a20.159999999999997 20.159999999999997 0 0 1 5.826666666666666 0.72" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
19
|
+
<path d="M26.946666666666665 23.013333333333335a21.333333333333332 21.333333333333332 0 0 1 5.053333333333333 -0.5066666666666666 21.333333333333332 21.333333333333332 0 0 1 5.053333333333333 0.5066666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
20
|
+
<path d="M32 7.226666666666667A20.826666666666664 20.826666666666664 0 0 0 11.173333333333334 28.066666666666666v1.4933333333333334A4 4 0 0 0 14.666666666666666 26.666666666666664a14.013333333333332 14.013333333333332 0 0 1 10.773333333333333 -7.346666666666666A9.879999999999999 9.879999999999999 0 0 0 32 15.226666666666667a9.879999999999999 9.879999999999999 0 0 0 6.56 4.093333333333333A14.013333333333332 14.013333333333332 0 0 1 49.33333333333333 26.666666666666664a4 4 0 0 0 3.493333333333333 2.893333333333333v-1.4933333333333334A20.826666666666664 20.826666666666664 0 0 0 32 7.226666666666667Z" fill="#e0e0e0" stroke-width="1"></path>
|
|
21
|
+
<path d="M32 7.226666666666667A20.826666666666664 20.826666666666664 0 0 0 11.173333333333334 28.066666666666666v1.4933333333333334l0.18666666666666668 -0.07999999999999999a20.813333333333333 20.813333333333333 0 0 1 41.33333333333333 0l0.18666666666666668 0.07999999999999999v-1.4933333333333334A20.826666666666664 20.826666666666664 0 0 0 32 7.226666666666667Z" fill="#ffffff" stroke-width="1"></path>
|
|
22
|
+
<path d="M32 7.226666666666667A20.826666666666664 20.826666666666664 0 0 0 11.173333333333334 28.066666666666666v1.4933333333333334A4 4 0 0 0 14.666666666666666 26.666666666666664a14.013333333333332 14.013333333333332 0 0 1 10.773333333333333 -7.346666666666666A9.879999999999999 9.879999999999999 0 0 0 32 15.226666666666667a9.879999999999999 9.879999999999999 0 0 0 6.56 4.093333333333333A14.013333333333332 14.013333333333332 0 0 1 49.33333333333333 26.666666666666664a4 4 0 0 0 3.493333333333333 2.893333333333333v-1.4933333333333334A20.826666666666664 20.826666666666664 0 0 0 32 7.226666666666667Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
23
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Oncoming-Fist-1--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Oncoming Fist 1 Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M12 60.666666666666664a20 2 0 1 0 40 0 20 2 0 1 0 -40 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
6
|
+
<path d="M43.25333333333333 27.893333333333334a5.026666666666666 5.026666666666666 0 0 0 -5.026666666666666 5.026666666666666v9.333333333333332H33.33333333333333a7.653333333333333 7.653333333333333 0 0 0 -7.653333333333333 7.653333333333333A2.12 2.12 0 0 0 27.733333333333334 52h15.706666666666665a12 12 0 0 0 12 -11.933333333333332 12.133333333333333 12.133333333333333 0 0 0 -12.186666666666667 -12.173333333333334Z" fill="#ffe500" stroke-width="1"></path>
|
|
7
|
+
<path d="M55.373333333333335 39.519999999999996a12.133333333333333 12.133333333333333 0 0 0 -12.12 -11.626666666666667 5.026666666666666 5.026666666666666 0 0 0 -5.026666666666666 5.026666666666666v9.333333333333332H33.33333333333333a7.626666666666666 7.626666666666666 0 0 0 -5.986666666666666 2.88A4.8533333333333335 4.8533333333333335 0 0 0 32 48.89333333333333h13.2a10.213333333333333 10.213333333333333 0 0 0 10.173333333333332 -9.373333333333333Z" fill="#ebcb00" stroke-width="1"></path>
|
|
8
|
+
<path d="M43.25333333333333 27.893333333333334a5.026666666666666 5.026666666666666 0 0 0 -5.026666666666666 5.026666666666666v9.333333333333332H33.33333333333333a7.653333333333333 7.653333333333333 0 0 0 -7.653333333333333 7.653333333333333h0A2.12 2.12 0 0 0 27.733333333333334 52h15.706666666666665a12 12 0 0 0 12 -11.933333333333332h0a12.133333333333333 12.133333333333333 0 0 0 -12.186666666666667 -12.173333333333334Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
9
|
+
<path d="M52.18666666666667 20.906666666666666a5.413333333333332 5.413333333333332 0 0 0 -5.173333333333333 -5.493333333333333 6.84 6.84 0 0 0 -5.026666666666666 2.1999999999999997 1.3333333333333333 1.3333333333333333 0 0 1 -2.0666666666666664 -0.42666666666666664 6.666666666666666 6.666666666666666 0 0 0 -12.280000000000001 0 1.2133333333333334 1.2133333333333334 0 0 1 -1.9066666666666665 0.5066666666666666 6.533333333333333 6.533333333333333 0 0 0 -6.4399999999999995 -1.1333333333333333 5.72 5.72 0 0 0 -4.1466666666666665 5.893333333333333 1.0266666666666666 1.0266666666666666 0 0 1 -1.64 0.88 4.32 4.32 0 0 0 -2.6666666666666665 -0.9333333333333332 4.56 4.56 0 0 0 -4.306666666666667 4.573333333333333v14.666666666666666a4.493333333333333 4.493333333333333 0 0 0 4.093333333333333 4.56 4.32 4.32 0 0 0 4.56 -4.32v-1.1199999999999999A6.0266666666666655 6.0266666666666655 0 0 0 22.46666666666667 46.666666666666664a6.1066666666666665 6.1066666666666665 0 0 0 4.706666666666666 -6.0266666666666655 6.666666666666666 6.666666666666666 0 0 0 13.333333333333332 0v0.12a6.0266666666666655 6.0266666666666655 0 0 0 5.333333333333333 6.066666666666666 5.84 5.84 0 0 0 6.413333333333332 -5.8133333333333335Z" fill="#ffe500" stroke-width="1"></path>
|
|
10
|
+
<path d="M52.18666666666667 20.906666666666666a5.413333333333332 5.413333333333332 0 0 0 -5.173333333333333 -5.493333333333333 6.84 6.84 0 0 0 -5.026666666666666 2.1999999999999997 1.3333333333333333 1.3333333333333333 0 0 1 -2.0666666666666664 -0.42666666666666664 6.666666666666666 6.666666666666666 0 0 0 -12.280000000000001 0 1.2133333333333334 1.2133333333333334 0 0 1 -1.9066666666666665 0.5066666666666666 6.533333333333333 6.533333333333333 0 0 0 -6.4399999999999995 -1.1333333333333333 5.72 5.72 0 0 0 -4.1466666666666665 5.893333333333333 1.0266666666666666 1.0266666666666666 0 0 1 -1.64 0.88 4.32 4.32 0 0 0 -2.6666666666666665 -0.9333333333333332 4.56 4.56 0 0 0 -4.306666666666667 4.573333333333333v4.72a4.546666666666667 4.546666666666667 0 0 1 4.266666666666667 -4.506666666666666 4.24 4.24 0 0 1 2.6666666666666665 0.9333333333333332 1.0266666666666666 1.0266666666666666 0 0 0 1.64 -0.8933333333333333A5.72 5.72 0 0 1 19.293333333333333 21.333333333333332a6.493333333333333 6.493333333333333 0 0 1 6.4399999999999995 1.1333333333333333 1.2133333333333334 1.2133333333333334 0 0 0 1.9066666666666665 -0.5066666666666666 6.666666666666666 6.666666666666666 0 0 1 12.280000000000001 -0.06666666666666667 1.3333333333333333 1.3333333333333333 0 0 0 2.0666666666666664 0.42666666666666664 6.799999999999999 6.799999999999999 0 0 1 5.026666666666666 -2.1999999999999997 5.413333333333332 5.413333333333332 0 0 1 5.173333333333333 5.493333333333333Z" fill="#fff48c" stroke-width="1"></path>
|
|
11
|
+
<path d="M52.18666666666667 20.906666666666666a5.413333333333332 5.413333333333332 0 0 0 -5.173333333333333 -5.493333333333333 6.84 6.84 0 0 0 -5.026666666666666 2.1999999999999997 1.3333333333333333 1.3333333333333333 0 0 1 -2.0666666666666664 -0.42666666666666664 6.666666666666666 6.666666666666666 0 0 0 -12.280000000000001 0 1.2133333333333334 1.2133333333333334 0 0 1 -1.9066666666666665 0.5066666666666666 6.533333333333333 6.533333333333333 0 0 0 -6.4399999999999995 -1.1333333333333333 5.72 5.72 0 0 0 -4.1466666666666665 5.893333333333333 1.0266666666666666 1.0266666666666666 0 0 1 -1.64 0.88 4.32 4.32 0 0 0 -2.6666666666666665 -0.9333333333333332 4.56 4.56 0 0 0 -4.306666666666667 4.573333333333333v14.666666666666666a4.493333333333333 4.493333333333333 0 0 0 4.093333333333333 4.56 4.32 4.32 0 0 0 4.56 -4.32v-1.1199999999999999A6.0266666666666655 6.0266666666666655 0 0 0 22.46666666666667 46.666666666666664a6.1066666666666665 6.1066666666666665 0 0 0 4.706666666666666 -6.0266666666666655v0a6.666666666666666 6.666666666666666 0 0 0 13.333333333333332 0v0.12a6.0266666666666655 6.0266666666666655 0 0 0 5.333333333333333 6.066666666666666 5.84 5.84 0 0 0 6.413333333333332 -5.8133333333333335Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="m15.146666666666665 40.81333333333333 0 -5.933333333333334" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="m27.173333333333332 40.61333333333333 0 -7.56" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="m40.50666666666666 40.61333333333333 0 -10.44" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Person-Wearing-Turban-2--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Person Wearing Turban 2 Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M15.333333333333332 59.33333333333333a16.666666666666664 2 0 1 0 33.33333333333333 0 16.666666666666664 2 0 1 0 -33.33333333333333 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
6
|
+
<path d="M32 6.666666666666666A19.453333333333333 19.453333333333333 0 0 0 12.546666666666667 26.133333333333333v10.186666666666666h38.906666666666666V26.133333333333333A19.453333333333333 19.453333333333333 0 0 0 32 6.666666666666666Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
7
|
+
<path d="M53.53333333333333 34.839999999999996a3.6399999999999997 3.6399999999999997 0 0 0 -2.76 -3.0666666666666664l-1.16 -0.31999999999999995A4 4 0 0 1 46.666666666666664 27.546666666666667v-4.093333333333333a3.6933333333333334 3.6933333333333334 0 0 0 -2.7733333333333334 -3.5733333333333333A30.666666666666664 30.666666666666664 0 0 1 32 22.026666666666664a30.666666666666664 30.666666666666664 0 0 1 -11.866666666666667 -2.1466666666666665 3.6933333333333334 3.6933333333333334 0 0 0 -2.8 3.5733333333333333v4.093333333333333a4 4 0 0 1 -2.973333333333333 3.9066666666666667l-1.16 0.31999999999999995a3.6399999999999997 3.6399999999999997 0 0 0 -2.76 3.0666666666666664 3.5866666666666664 3.5866666666666664 0 0 0 3.5733333333333333 3.893333333333333h0.22666666666666668a17.93333333333333 17.93333333333333 0 0 0 35.46666666666667 0h0.22666666666666668a3.5866666666666664 3.5866666666666664 0 0 0 3.6 -3.893333333333333Z" fill="#ffcebf" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
8
|
+
<path d="M21.24 34.41333333333333a1.5333333333333332 1.5333333333333332 0 1 0 1.5199999999999998 -1.5333333333333332 1.5333333333333332 1.5333333333333332 0 0 0 -1.5199999999999998 1.5333333333333332Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
9
|
+
<path d="M42.76 34.41333333333333a1.5333333333333332 1.5333333333333332 0 1 1 -1.5199999999999998 -1.5333333333333332 1.5333333333333332 1.5333333333333332 0 0 1 1.5199999999999998 1.5333333333333332Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M18.25333333333333 40.92a1.9866666666666666 1.1866666666666665 0 1 0 3.973333333333333 0 1.9866666666666666 1.1866666666666665 0 1 0 -3.973333333333333 0Z" fill="#ffb59e" stroke-width="1"></path>
|
|
11
|
+
<path d="M41.773333333333326 40.92a1.9866666666666666 1.1866666666666665 0 1 0 3.973333333333333 0 1.9866666666666666 1.1866666666666665 0 1 0 -3.973333333333333 0Z" fill="#ffb59e" stroke-width="1"></path>
|
|
12
|
+
<path d="M47.13333333333333 28.560000000000002v9.253333333333334a15.186666666666667 15.186666666666667 0 0 1 -6.666666666666666 12.613333333333333v-1.6933333333333334c0 -3.453333333333333 -3.7733333333333334 -6.239999999999999 -8.413333333333332 -6.239999999999999s-8.466666666666665 2.84 -8.466666666666665 6.239999999999999v1.6933333333333334a15.186666666666667 15.186666666666667 0 0 1 -6.666666666666666 -12.613333333333333v-9.253333333333334l-2.5599999999999996 2.893333333333333v6.586666666666667c0 12.36 10.813333333333333 19.866666666666667 17.69333333333333 19.813333333333333s17.69333333333333 -7.426666666666667 17.69333333333333 -19.813333333333333v-6.586666666666667Z" fill="#a86c4d" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M28.253333333333334 48.16s0.9199999999999999 1.24 3.7466666666666666 1.24 3.7466666666666666 -1.24 3.7466666666666666 -1.24" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="m52.50666666666667 22.21333333333333 0 -3.786666666666666C52.56 9.2 43.76 2.1999999999999997 32 2.1999999999999997S11.44 9.2 11.44 18.426666666666666c0 11.893333333333333 1.1066666666666665 13.613333333333333 1.1066666666666665 13.613333333333333a117.33333333333333 117.33333333333333 0 0 1 20 -7.186666666666666A77.90666666666667 77.90666666666667 0 0 1 51.45333333333333 32s0.8533333333333333 -1.3333333333333333 1.0533333333333332 -9.786666666666665Z" fill="#f0f0f0" stroke-width="1"></path>
|
|
15
|
+
<path d="M32 7.653333333333333c11.226666666666667 0 19.746666666666666 6.373333333333333 20.506666666666668 14.986666666666666v-0.42666666666666664l0 -3.786666666666666C52.56 9.2 43.76 2.1999999999999997 32 2.1999999999999997S11.44 9.2 11.44 18.426666666666666l0 4.213333333333333C12.239999999999998 14.04 20.759999999999998 7.653333333333333 32 7.653333333333333Z" fill="#ffffff" stroke-width="1"></path>
|
|
16
|
+
<path d="m52.50666666666667 22.21333333333333 0 -3.786666666666666C52.56 9.2 43.76 2.1999999999999997 32 2.1999999999999997S11.44 9.2 11.44 18.426666666666666c0 11.893333333333333 1.1066666666666665 13.613333333333333 1.1066666666666665 13.613333333333333a117.33333333333333 117.33333333333333 0 0 1 20 -7.186666666666666A77.90666666666667 77.90666666666667 0 0 1 51.45333333333333 32s0.8533333333333333 -1.3333333333333333 1.0533333333333332 -9.786666666666665Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
<path d="M11.44 18.426666666666666s7.6933333333333325 -14.026666666666666 29.8 -14.666666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
18
|
+
<path d="M47.17333333333333 15.906666666666666a58.213333333333324 58.213333333333324 0 0 0 -29.506666666666664 8.826666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
19
|
+
<path d="M32.53333333333333 24.85333333333333c14 -3.3466666666666662 20 -2.6666666666666665 20 -2.6666666666666665" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
20
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Pile-Of-Poo--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Pile Of Poo Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M17.333333333333332 60.666666666666664a14.666666666666666 2 0 1 0 29.333333333333332 0 14.666666666666666 2 0 1 0 -29.333333333333332 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
6
|
+
<path d="M50.666666666666664 33.14666666666666a6.666666666666666 6.666666666666666 0 0 0 1.2533333333333332 -3.8666666666666663c0 -3.84 -2.493333333333333 -6.666666666666666 -8.559999999999999 -6.666666666666666a5.6933333333333325 5.6933333333333325 0 0 0 -3.76 -9.959999999999999h-6.893333333333333c-1.3333333333333333 -0.45333333333333337 -2.9066666666666667 -3.4266666666666663 -2.16 -6.76a0.9333333333333332 0.9333333333333332 0 0 0 -1.04 -1.1199999999999999c-10.506666666666666 1.5866666666666664 -12.479999999999999 14.666666666666666 -9.413333333333332 17.84C11.879999999999999 22.666666666666664 10.666666666666666 29.479999999999997 13.333333333333332 33.14666666666666c-12.32 4 -9.333333333333332 22.186666666666667 3.4799999999999995 22.186666666666667h30.346666666666668C60 55.33333333333333 62.959999999999994 37.10666666666666 50.666666666666664 33.14666666666666Z" fill="#bf8256" stroke-width="1"></path>
|
|
7
|
+
<path d="M17.89333333333333 34.346666666666664a6.346666666666666 6.346666666666666 0 0 1 5.173333333333333 -8.426666666666666 1.8399999999999999 1.8399999999999999 0 0 0 1.4533333333333334 -2.253333333333333 14.013333333333332 14.013333333333332 0 0 1 6.0266666666666655 -14.213333333333333 7.826666666666666 7.826666666666666 0 0 1 0 -3.52 0.96 0.96 0 0 0 -0.22666666666666668 -0.84 0.9733333333333333 0.9733333333333333 0 0 0 -0.8133333333333332 -0.27999999999999997c-10.506666666666666 1.5866666666666664 -12.479999999999999 14.666666666666666 -9.413333333333332 17.84C11.879999999999999 22.666666666666664 10.666666666666666 29.479999999999997 13.333333333333332 33.14666666666666c-11.413333333333334 3.6666666666666665 -9.746666666666666 19.586666666666666 0.8266666666666667 21.893333333333334C9.333333333333332 50 9.706666666666667 40.61333333333333 16.93333333333333 36.946666666666665a2.1466666666666665 2.1466666666666665 0 0 0 0.96 -2.5999999999999996Z" fill="#dea47a" stroke-width="1"></path>
|
|
8
|
+
<path d="M20 37.53333333333333a1.2133333333333334 1.2133333333333334 0 1 1 -1.2133333333333334 -1.2133333333333334 1.2133333333333334 1.2133333333333334 0 0 1 1.2133333333333334 1.2133333333333334Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
9
|
+
<path d="M47.32 37.53333333333333a1.2133333333333334 1.2133333333333334 0 1 1 -1.2133333333333334 -1.2133333333333334 1.2133333333333334 1.2133333333333334 0 0 1 1.2133333333333334 1.2133333333333334Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M24.21333333333333 41.773333333333326a1.2266666666666666 1.2266666666666666 0 0 0 -1.2 1.4 9.093333333333334 9.093333333333334 0 0 0 17.973333333333333 0 1.2266666666666666 1.2266666666666666 0 0 0 -1.2 -1.4Z" fill="#ffb0ca" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="M39.16 47.36A14.493333333333332 14.493333333333332 0 0 0 32 45.67999999999999a14.493333333333332 14.493333333333332 0 0 0 -7.16 1.68 9.066666666666666 9.066666666666666 0 0 0 14.32 0Z" fill="#ff87af" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="M50.666666666666664 33.14666666666666a6.666666666666666 6.666666666666666 0 0 0 1.2533333333333332 -3.8666666666666663c0 -3.84 -2.493333333333333 -6.666666666666666 -8.559999999999999 -6.666666666666666a5.6933333333333325 5.6933333333333325 0 0 0 -3.76 -9.959999999999999h-6.893333333333333c-1.3333333333333333 -0.45333333333333337 -2.9066666666666667 -3.4266666666666663 -2.16 -6.76a0.96 0.96 0 0 0 -0.22666666666666668 -0.84 0.9733333333333333 0.9733333333333333 0 0 0 -0.8133333333333332 -0.27999999999999997c-10.506666666666666 1.5866666666666664 -12.479999999999999 14.666666666666666 -9.413333333333332 17.84C11.879999999999999 22.666666666666664 10.666666666666666 29.479999999999997 13.333333333333332 33.14666666666666c-12.32 4 -9.333333333333332 22.186666666666667 3.4799999999999995 22.186666666666667h30.346666666666668C60 55.33333333333333 62.959999999999994 37.10666666666666 50.666666666666664 33.14666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M12.173333333333334 43.6a3.0266666666666664 1.8133333333333335 0 1 0 6.053333333333333 0 3.0266666666666664 1.8133333333333335 0 1 0 -6.053333333333333 0Z" fill="#915e3a" stroke-width="1"></path>
|
|
14
|
+
<path d="M46.72 43.6a3.0266666666666664 1.8133333333333335 0 1 0 6.053333333333333 0 3.0266666666666664 1.8133333333333335 0 1 0 -6.053333333333333 0Z" fill="#915e3a" stroke-width="1"></path>
|
|
15
|
+
</svg>
|