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,26 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Police-Car-Light--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Police Car Light Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="m17.146666666666665 50.8 2.533333333333333 -21.77333333333333a3.466666666666667 3.466666666666667 0 0 1 3.44 -3.0666666666666664h17.93333333333333a3.466666666666667 3.466666666666667 0 0 1 3.44 3.0666666666666664l2.533333333333333 21.77333333333333Z" fill="#ff6242" stroke-width="1"></path>
|
|
6
|
+
<path d="m17.146666666666665 50.8 2.533333333333333 -21.77333333333333a3.466666666666667 3.466666666666667 0 0 1 3.44 -3.0666666666666664h17.93333333333333a3.466666666666667 3.466666666666667 0 0 1 3.44 3.0666666666666664l2.533333333333333 21.77333333333333Z" fill="#ff6242" stroke-width="1"></path>
|
|
7
|
+
<path d="M22.53333333333333 30.493333333333332h19.106666666666666a3.733333333333333 3.733333333333333 0 0 1 3.24 1.8133333333333335l-0.3866666666666666 -3.28a3.466666666666667 3.466666666666667 0 0 0 -3.44 -3.0666666666666664H23.119999999999997a3.466666666666667 3.466666666666667 0 0 0 -3.44 3.0666666666666664l-0.3866666666666666 3.28a3.7199999999999998 3.7199999999999998 0 0 1 3.24 -1.8133333333333335Z" fill="#ff866e" stroke-width="1"></path>
|
|
8
|
+
<path d="m17.146666666666665 50.8 2.533333333333333 -21.77333333333333a3.466666666666667 3.466666666666667 0 0 1 3.44 -3.0666666666666664h17.93333333333333a3.466666666666667 3.466666666666667 0 0 1 3.44 3.0666666666666664l2.533333333333333 21.77333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
9
|
+
<path d="m15.159999999999998 50.8 33.50666666666666 0 0 5.199999999999999 -33.50666666666666 0Z" fill="#c0dceb" stroke-width="1"></path>
|
|
10
|
+
<path d="M47.519999999999996 50.8h-31.199999999999996a1.16 1.16 0 0 0 -1.16 1.16v2.6666666666666665a1.16 1.16 0 0 1 1.16 -1.16h31.199999999999996a1.1466666666666665 1.1466666666666665 0 0 1 1.1466666666666665 1.16V52a1.1466666666666665 1.1466666666666665 0 0 0 -1.1466666666666665 -1.2Z" fill="#daedf7" stroke-width="1"></path>
|
|
11
|
+
<path d="m15.159999999999998 50.8 33.50666666666666 0 0 5.199999999999999 -33.50666666666666 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="M29.69333333333333 44.44h4.626666666666667v6.359999999999999h-4.626666666666667z" fill="#87898c" stroke-width="1"></path>
|
|
13
|
+
<path d="M29.69333333333333 44.44h4.626666666666667v2.1466666666666665h-4.626666666666667z" fill="#656769" stroke-width="1"></path>
|
|
14
|
+
<path d="M29.69333333333333 44.44h4.626666666666667v6.359999999999999h-4.626666666666667z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M32 35.199999999999996a4 4 0 0 0 -4 4v4a1.1466666666666665 1.1466666666666665 0 0 0 1.1466666666666665 1.1466666666666665h5.786666666666666a1.1466666666666665 1.1466666666666665 0 0 0 1.1466666666666665 -1.1466666666666665v-4a4 4 0 0 0 -4.08 -4Z" fill="#ffe500" stroke-width="1"></path>
|
|
16
|
+
<path d="M32 35.199999999999996a4 4 0 0 0 -4 4v2.5999999999999996a4 4 0 1 1 8.079999999999998 0v-2.5466666666666664A4 4 0 0 0 32 35.199999999999996Z" fill="#fff48c" stroke-width="1"></path>
|
|
17
|
+
<path d="M32 35.199999999999996a4 4 0 0 0 -4 4v4a1.1466666666666665 1.1466666666666665 0 0 0 1.1466666666666665 1.1466666666666665h5.786666666666666a1.1466666666666665 1.1466666666666665 0 0 0 1.1466666666666665 -1.1466666666666665v-4a4 4 0 0 0 -4.08 -4Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
18
|
+
<path d="M48.45333333333333 12.159999999999998a0.6799999999999999 0.6799999999999999 0 0 0 -0.6 -0.15999999999999998 0.72 0.72 0 0 0 -0.5066666666666666 0.37333333333333335l-4.386666666666667 8.36a0.6933333333333334 0.6933333333333334 0 0 0 0.14666666666666667 0.8533333333333333 0.7066666666666667 0.7066666666666667 0 0 0 0.8666666666666667 0l7.706666666666667 -5.24a0.6799999999999999 0.6799999999999999 0 0 0 0.30666666666666664 -0.5333333333333333 0.7066666666666667 0.7066666666666667 0 0 0 -0.21333333333333332 -0.5733333333333333Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
19
|
+
<path d="M29.626666666666665 7.2a0.7733333333333332 0.7733333333333332 0 0 0 -0.6 0.26666666666666666 0.6799999999999999 0.6799999999999999 0 0 0 -0.13333333333333333 0.6133333333333333l2.5466666666666664 9.133333333333333a0.7333333333333334 0.7333333333333334 0 0 0 0.72 0.5333333333333333 0.7466666666666667 0.7466666666666667 0 0 0 0.72 -0.5466666666666666l2.2266666666666666 -9.079999999999998a0.6666666666666666 0.6666666666666666 0 0 0 -0.13333333333333333 -0.5866666666666667 0.7333333333333334 0.7333333333333334 0 0 0 -0.5733333333333333 -0.27999999999999997Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
20
|
+
<path d="M61.89333333333333 30.586666666666666a0.7066666666666667 0.7066666666666667 0 0 1 -0.5599999999999999 0.9733333333333333l-9.333333333333332 1.2a0.7066666666666667 0.7066666666666667 0 0 1 -0.4933333333333333 -1.3333333333333333l7.613333333333333 -5.333333333333333a0.6933333333333334 0.6933333333333334 0 0 1 0.6 -0.10666666666666666 0.7066666666666667 0.7066666666666667 0 0 1 0.45333333333333337 0.41333333333333333Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
21
|
+
<path d="M61.56 47.25333333333333a0.6666666666666666 0.6666666666666666 0 0 1 -0.39999999999999997 0.4666666666666666 0.6533333333333333 0.6533333333333333 0 0 1 -0.6266666666666666 0l-8.186666666666666 -4.72a0.7066666666666667 0.7066666666666667 0 0 1 0.37333333333333335 -1.3333333333333333l9.333333333333332 0.30666666666666664a0.7333333333333334 0.7333333333333334 0 0 1 0.5466666666666666 0.27999999999999997 0.7466666666666667 0.7466666666666667 0 0 1 0.12 0.6Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
22
|
+
<path d="M15.546666666666667 12.159999999999998a0.6799999999999999 0.6799999999999999 0 0 1 0.6 -0.15999999999999998 0.72 0.72 0 0 1 0.5066666666666666 0.37333333333333335l4.386666666666667 8.36a0.6933333333333334 0.6933333333333334 0 0 1 -0.14666666666666667 0.8533333333333333 0.7066666666666667 0.7066666666666667 0 0 1 -0.8666666666666667 0l-7.706666666666667 -5.213333333333333a0.6799999999999999 0.6799999999999999 0 0 1 -0.30666666666666664 -0.5333333333333333 0.7066666666666667 0.7066666666666667 0 0 1 0.21333333333333332 -0.5733333333333333Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
23
|
+
<path d="M2.1066666666666665 30.586666666666666a0.6533333333333333 0.6533333333333333 0 0 0 0 0.6266666666666666 0.6533333333333333 0.6533333333333333 0 0 0 0.52 0.3466666666666667l9.333333333333332 1.2a0.7066666666666667 0.7066666666666667 0 0 0 0.4933333333333333 -1.3333333333333333l-7.613333333333333 -5.333333333333333a0.6933333333333334 0.6933333333333334 0 0 0 -0.6 -0.10666666666666666 0.7066666666666667 0.7066666666666667 0 0 0 -0.45333333333333337 0.41333333333333333Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
24
|
+
<path d="M2.44 47.25333333333333a0.6666666666666666 0.6666666666666666 0 0 0 0.39999999999999997 0.4666666666666666 0.6533333333333333 0.6533333333333333 0 0 0 0.6266666666666666 0l8.186666666666666 -4.72a0.7066666666666667 0.7066666666666667 0 0 0 -0.37333333333333335 -1.3333333333333333l-9.333333333333332 0.30666666666666664a0.7333333333333334 0.7333333333333334 0 0 0 -0.5466666666666666 0.27999999999999997 0.7466666666666667 0.7466666666666667 0 0 0 -0.12 0.6Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
25
|
+
<path d="M13.333333333333332 56.666666666666664a18.666666666666664 2 0 1 0 37.33333333333333 0 18.666666666666664 2 0 1 0 -37.33333333333333 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
26
|
+
</svg>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Rocket--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Rocket Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="m18.733333333333334 35.44 7.56 -9.333333333333332a26.066666666666666 26.066666666666666 0 0 0 -11.333333333333332 -0.31999999999999995c-4.16 1.0266666666666666 -4.813333333333333 8.879999999999999 -4.88 12.599999999999998a1.16 1.16 0 0 0 1.7466666666666666 1.0266666666666666Z" fill="#ff6242" stroke-width="1"></path>
|
|
6
|
+
<path d="M14.986666666666666 29.333333333333332a24.226666666666667 24.226666666666667 0 0 1 8.826666666666666 -0.17333333333333334l2.48 -3.0399999999999996a26.066666666666666 26.066666666666666 0 0 0 -11.333333333333332 -0.31999999999999995c-4.16 1.0133333333333332 -4.813333333333333 8.866666666666667 -4.88 12.586666666666666a1.1333333333333333 1.1333333333333333 0 0 0 0.18666666666666668 0.6399999999999999c0.39999999999999997 -3.92 1.4533333333333334 -8.879999999999999 4.72 -9.693333333333332Z" fill="#ff866e" stroke-width="1"></path>
|
|
7
|
+
<path d="m18.733333333333334 35.44 7.56 -9.333333333333332a26.066666666666666 26.066666666666666 0 0 0 -11.333333333333332 -0.31999999999999995c-4.16 1.0266666666666666 -4.813333333333333 8.879999999999999 -4.88 12.599999999999998a1.16 1.16 0 0 0 1.7466666666666666 1.0266666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
8
|
+
<path d="m27.813333333333333 44.53333333333333 9.333333333333332 -7.56a26.026666666666664 26.026666666666664 0 0 1 0.31999999999999995 11.32c-0.9733333333333333 4.16 -8.773333333333333 4.813333333333333 -12.546666666666667 4.88a1.16 1.16 0 0 1 -1.0266666666666666 -1.7466666666666666Z" fill="#ff6242" stroke-width="1"></path>
|
|
9
|
+
<path d="M33.879999999999995 48.28a24 24 0 0 0 0.17333333333333334 -8.84l3.0399999999999996 -2.466666666666667a26.026666666666664 26.026666666666664 0 0 1 0.31999999999999995 11.32c-0.9733333333333333 4.16 -8.773333333333333 4.813333333333333 -12.546666666666667 4.88a1.16 1.16 0 0 1 -0.6399999999999999 -0.18666666666666668c3.92 -0.3466666666666667 8.879999999999999 -1.4533333333333334 9.653333333333332 -4.706666666666666Z" fill="#ff866e" stroke-width="1"></path>
|
|
10
|
+
<path d="m27.813333333333333 44.53333333333333 9.333333333333332 -7.56a26.026666666666664 26.026666666666664 0 0 1 0.31999999999999995 11.32c-0.9733333333333333 4.16 -8.773333333333333 4.813333333333333 -12.546666666666667 4.88a1.16 1.16 0 0 1 -1.0266666666666666 -1.7466666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="M52.63999999999999 28.746666666666663c7.226666666666667 -7.6 4.946666666666666 -16.973333333333333 3.813333333333333 -20.266666666666666a2.6666666666666665 2.6666666666666665 0 0 0 -0.6399999999999999 -1.04 2.84 2.84 0 0 0 -1.0266666666666666 -0.6399999999999999c-3.2933333333333334 -1.1333333333333333 -12.68 -3.413333333333333 -20.28 3.8666666666666663C25.119999999999997 19.546666666666667 18.666666666666664 35.33333333333333 18.666666666666664 35.33333333333333l9.333333333333332 9.333333333333332s15.706666666666665 -6.533333333333333 24.64 -15.919999999999998Z" fill="#e8f4fa" stroke-width="1"></path>
|
|
12
|
+
<path d="M37.4 15.826666666666664c7.373333333333333 -7.0266666666666655 16.413333333333334 -5.066666666666666 20 -3.92a23.05333333333333 23.05333333333333 0 0 0 -0.88 -3.4266666666666663 2.6666666666666665 2.6666666666666665 0 0 0 -1.7333333333333334 -1.68c-3.2933333333333334 -1.1333333333333333 -12.68 -3.413333333333333 -20.28 3.8666666666666663C25.119999999999997 19.546666666666667 18.666666666666664 35.33333333333333 18.666666666666664 35.33333333333333l3.5866666666666664 3.5866666666666664c1.9066666666666665 -4.253333333333333 7.573333333333332 -15.893333333333333 15.146666666666665 -23.093333333333334Z" fill="#ffffff" stroke-width="1"></path>
|
|
13
|
+
<path d="M52.63999999999999 28.746666666666663c7.226666666666667 -7.6 4.946666666666666 -16.973333333333333 3.813333333333333 -20.266666666666666a2.6666666666666665 2.6666666666666665 0 0 0 -0.6399999999999999 -1.04 2.84 2.84 0 0 0 -1.0266666666666666 -0.6399999999999999c-3.2933333333333334 -1.1333333333333333 -12.68 -3.413333333333333 -20.28 3.8666666666666663C25.119999999999997 19.546666666666667 18.666666666666664 35.33333333333333 18.666666666666664 35.33333333333333l9.333333333333332 9.333333333333332s15.706666666666665 -6.533333333333333 24.64 -15.919999999999998Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="M24.29333333333333 58.946666666666665a13.333333333333332 2 0 1 0 26.666666666666664 0 13.333333333333332 2 0 1 0 -26.666666666666664 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
15
|
+
<path d="M30.266666666666666 34.199999999999996a0.9066666666666667 0.9066666666666667 0 0 0 -1.2266666666666666 -1.24 29.506666666666664 29.506666666666664 0 0 0 -7.079999999999999 5.066666666666666 23.786666666666665 23.786666666666665 0 0 0 -5.16 7.8133333333333335 0.45333333333333337 0.45333333333333337 0 0 0 0.5866666666666667 0.6A23.786666666666665 23.786666666666665 0 0 0 25.199999999999996 41.33333333333333a29.21333333333333 29.21333333333333 0 0 0 5.066666666666666 -7.133333333333333Z" fill="#ff6242" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M37.65333333333333 18.293333333333333a7.32 7.32 0 1 0 14.64 0 7.32 7.32 0 1 0 -14.64 0Z" fill="#c0dceb" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
<path d="M39.946666666666665 18.25333333333333a5.066666666666666 5.066666666666666 0 1 0 10.133333333333333 0 5.066666666666666 5.066666666666666 0 1 0 -10.133333333333333 0Z" fill="#00b8f0" stroke-width="1"></path>
|
|
18
|
+
<path d="M41.42666666666666 14.666666666666666a5.066666666666666 5.066666666666666 0 0 0 0 7.173333333333333 5.253333333333333 5.253333333333333 0 0 0 1.1333333333333333 0.8266666666666667l4.7333333333333325 -8.92a5.026666666666666 5.026666666666666 0 0 0 -5.866666666666667 0.9199999999999999Z" fill="#4acfff" stroke-width="1"></path>
|
|
19
|
+
<path d="M39.946666666666665 18.25333333333333a5.066666666666666 5.066666666666666 0 1 0 10.133333333333333 0 5.066666666666666 5.066666666666666 0 1 0 -10.133333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
20
|
+
<path d="M15.12 55.29333333333333c-0.9333333333333332 0.9333333333333332 -6.88 2.9466666666666663 -9.893333333333333 3.92 -0.5599999999999999 0.18666666666666668 -1.3333333333333333 -0.6266666666666666 -1.1866666666666665 -1.1866666666666665 0.9733333333333333 -3 2.986666666666667 -8.946666666666665 4 -9.893333333333333 1.2666666666666666 -1.3333333333333333 4.573333333333333 -1.3333333333333333 6.546666666666667 0.6133333333333333s1.8 5.279999999999999 0.5333333333333333 6.546666666666667Z" fill="#ff8a14" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
21
|
+
<path d="M13.506666666666668 53.05333333333333c-0.6666666666666666 0.6533333333333333 -3.4266666666666663 1.3333333333333333 -4 0.7466666666666667s0.09333333333333334 -3.3866666666666667 0.7599999999999999 -4a2.0933333333333333 2.0933333333333333 0 0 1 2.84 0.45333333333333337 2.08 2.08 0 0 1 0.39999999999999997 2.8Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
22
|
+
<path d="m57.76 31.586666666666666 1.0666666666666667 2.013333333333333a0.5599999999999999 0.5599999999999999 0 0 0 0.42666666666666664 0.29333333333333333l2.253333333333333 0.26666666666666666a0.5599999999999999 0.5599999999999999 0 0 1 0.3333333333333333 0.9466666666666665l-1.5866666666666664 1.6266666666666665a0.52 0.52 0 0 0 -0.14666666666666667 0.4933333333333333l0.44 2.2266666666666666a0.5599999999999999 0.5599999999999999 0 0 1 -0.7866666666666666 0.6133333333333333l-2.04 -1.0133333333333332a0.5866666666666667 0.5866666666666667 0 0 0 -0.52 0l-1.9866666666666666 1.1199999999999999a0.5733333333333333 0.5733333333333333 0 0 1 -0.8266666666666667 -0.5733333333333333L54.666666666666664 37.33333333333333a0.5466666666666666 0.5466666666666666 0 0 0 -0.17333333333333334 -0.48l-1.6133333333333333 -1.5199999999999998a0.5599999999999999 0.5599999999999999 0 0 1 0.27999999999999997 -0.96l2.2399999999999998 -0.3866666666666666a0.5466666666666666 0.5466666666666666 0 0 0 0.41333333333333333 -0.30666666666666664l0.96 -2.0666666666666664a0.5466666666666666 0.5466666666666666 0 0 1 0.9866666666666666 -0.026666666666666665Z" fill="#ffe500" stroke-width="1"></path>
|
|
23
|
+
<path d="m54.04 36.41333333333333 1.4133333333333333 -0.2533333333333333a0.5333333333333333 0.5333333333333333 0 0 0 0.41333333333333333 -0.30666666666666664l0.96 -2.0666666666666664a0.5599999999999999 0.5599999999999999 0 0 1 1 0l1.0533333333333332 2.013333333333333a0.5599999999999999 0.5599999999999999 0 0 0 0.42666666666666664 0.29333333333333333l1.4266666666666667 0.17333333333333334 1.1066666666666665 -1.1333333333333333a0.5599999999999999 0.5599999999999999 0 0 0 -0.3333333333333333 -0.9466666666666665l-2.253333333333333 -0.26666666666666666a0.5599999999999999 0.5599999999999999 0 0 1 -0.42666666666666664 -0.29333333333333333l-1.0666666666666667 -2.013333333333333a0.5466666666666666 0.5466666666666666 0 0 0 -0.9866666666666666 0l-0.96 2.0666666666666664a0.5466666666666666 0.5466666666666666 0 0 1 -0.41333333333333333 0.30666666666666664l-2.2399999999999998 0.3866666666666666a0.5599999999999999 0.5599999999999999 0 0 0 -0.27999999999999997 0.96Z" fill="#fff48c" stroke-width="1"></path>
|
|
24
|
+
<path d="m57.76 31.586666666666666 1.0666666666666667 2.013333333333333a0.5599999999999999 0.5599999999999999 0 0 0 0.42666666666666664 0.29333333333333333l2.253333333333333 0.26666666666666666a0.5599999999999999 0.5599999999999999 0 0 1 0.3333333333333333 0.9466666666666665l-1.5866666666666664 1.6266666666666665a0.52 0.52 0 0 0 -0.14666666666666667 0.4933333333333333l0.44 2.2266666666666666a0.5599999999999999 0.5599999999999999 0 0 1 -0.7866666666666666 0.6133333333333333l-2.04 -1.0133333333333332a0.5866666666666667 0.5866666666666667 0 0 0 -0.52 0l-1.9866666666666666 1.1199999999999999a0.5733333333333333 0.5733333333333333 0 0 1 -0.8266666666666667 -0.5733333333333333L54.666666666666664 37.33333333333333a0.5466666666666666 0.5466666666666666 0 0 0 -0.17333333333333334 -0.48l-1.6133333333333333 -1.5199999999999998a0.5599999999999999 0.5599999999999999 0 0 1 0.27999999999999997 -0.96l2.2399999999999998 -0.3866666666666666a0.5466666666666666 0.5466666666666666 0 0 0 0.41333333333333333 -0.30666666666666664l0.96 -2.0666666666666664a0.5466666666666666 0.5466666666666666 0 0 1 0.9866666666666666 -0.026666666666666665Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
25
|
+
<path d="m42.31999999999999 54.120000000000005 0.3466666666666667 1.8a0.4666666666666666 0.4666666666666666 0 0 0 0.26666666666666666 0.31999999999999995l1.6933333333333334 0.72a0.45333333333333337 0.45333333333333337 0 0 1 0 0.7999999999999999l-1.5999999999999999 0.9066666666666667a0.42666666666666664 0.42666666666666664 0 0 0 -0.22666666666666668 0.3466666666666667l-0.13333333333333333 1.8266666666666667a0.45333333333333337 0.45333333333333337 0 0 1 -0.7599999999999999 0.29333333333333333l-1.3333333333333333 -1.24a0.39999999999999997 0.39999999999999997 0 0 0 -0.39999999999999997 -0.10666666666666666l-1.7866666666666666 0.39999999999999997a0.45333333333333337 0.45333333333333337 0 0 1 -0.5066666666666666 -0.6266666666666666l0.7866666666666666 -1.6666666666666665a0.41333333333333333 0.41333333333333333 0 0 0 0 -0.41333333333333333l-0.9333333333333332 -1.5733333333333333a0.45333333333333337 0.45333333333333337 0 0 1 0.44 -0.6799999999999999l1.8133333333333335 0.21333333333333332a0.5066666666666666 0.5066666666666666 0 0 0 0.39999999999999997 -0.14666666666666667l1.2 -1.3333333333333333a0.45333333333333337 0.45333333333333337 0 0 1 0.7333333333333334 0.15999999999999998Z" fill="#ffe500" stroke-width="1"></path>
|
|
26
|
+
<path d="m38.346666666666664 57 1.1466666666666665 0.13333333333333333a0.4666666666666666 0.4666666666666666 0 0 0 0.39999999999999997 -0.14666666666666667l1.2 -1.3333333333333333a0.45333333333333337 0.45333333333333337 0 0 1 0.7866666666666666 0.19999999999999998l0.36 1.8a0.41333333333333333 0.41333333333333333 0 0 0 0.2533333333333333 0.31999999999999995l1.0666666666666667 0.45333333333333337 1.1199999999999999 -0.6266666666666666a0.45333333333333337 0.45333333333333337 0 0 0 0 -0.7999999999999999l-1.6933333333333334 -0.72a0.4666666666666666 0.4666666666666666 0 0 1 -0.26666666666666666 -0.31999999999999995l-0.36 -1.8a0.45333333333333337 0.45333333333333337 0 0 0 -0.7733333333333332 -0.21333333333333332l-1.2 1.3333333333333333a0.5066666666666666 0.5066666666666666 0 0 1 -0.39999999999999997 0.14666666666666667l-1.8133333333333335 -0.21333333333333332a0.45333333333333337 0.45333333333333337 0 0 0 -0.44 0.6799999999999999Z" fill="#fff48c" stroke-width="1"></path>
|
|
27
|
+
<path d="m42.31999999999999 54.120000000000005 0.3466666666666667 1.8a0.4666666666666666 0.4666666666666666 0 0 0 0.26666666666666666 0.31999999999999995l1.6933333333333334 0.72a0.45333333333333337 0.45333333333333337 0 0 1 0 0.7999999999999999l-1.5999999999999999 0.9066666666666667a0.42666666666666664 0.42666666666666664 0 0 0 -0.22666666666666668 0.3466666666666667l-0.13333333333333333 1.8266666666666667a0.45333333333333337 0.45333333333333337 0 0 1 -0.7599999999999999 0.29333333333333333l-1.3333333333333333 -1.24a0.39999999999999997 0.39999999999999997 0 0 0 -0.39999999999999997 -0.10666666666666666l-1.7866666666666666 0.39999999999999997a0.45333333333333337 0.45333333333333337 0 0 1 -0.5066666666666666 -0.6266666666666666l0.7866666666666666 -1.6666666666666665a0.41333333333333333 0.41333333333333333 0 0 0 0 -0.41333333333333333l-0.9333333333333332 -1.5733333333333333a0.45333333333333337 0.45333333333333337 0 0 1 0.44 -0.6799999999999999l1.8133333333333335 0.21333333333333332a0.5066666666666666 0.5066666666666666 0 0 0 0.39999999999999997 -0.14666666666666667l1.2 -1.3333333333333333a0.45333333333333337 0.45333333333333337 0 0 1 0.7333333333333334 0.15999999999999998Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
28
|
+
<path d="M15.813333333333333 9.333333333333332a4.08 4.08 0 1 1 -3.453333333333333 -4.586666666666666A4.08 4.08 0 0 1 15.813333333333333 9.333333333333332Z" fill="#9ceb60" stroke-width="1"></path>
|
|
29
|
+
<path d="M12.36 7.653333333333333a4.08 4.08 0 0 1 3.2133333333333334 2.6666666666666665 3.8266666666666667 3.8266666666666667 0 0 0 0.24 -0.9866666666666666 4.08 4.08 0 0 0 -8.079999999999998 -1.1333333333333333A4.306666666666667 4.306666666666667 0 0 0 8 10.226666666666667a4.1066666666666665 4.1066666666666665 0 0 1 4.359999999999999 -2.5733333333333333Z" fill="#c8ffa1" stroke-width="1"></path>
|
|
30
|
+
<path d="M15.813333333333333 9.333333333333332a4.08 4.08 0 1 1 -3.453333333333333 -4.586666666666666A4.08 4.08 0 0 1 15.813333333333333 9.333333333333332Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
31
|
+
<path d="M7.8133333333333335 9.733333333333333C6.799999999999999 10.426666666666666 4.76 12 5.333333333333333 13.146666666666665s13.986666666666666 -6.866666666666667 13.52 -8 -3.333333333333333 0.15999999999999998 -4.346666666666666 0.6399999999999999" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
32
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Sailboat--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Sailboat Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M11.973333333333333 60.519999999999996a20.026666666666664 2.1466666666666665 0 1 0 40.05333333333333 0 20.026666666666664 2.1466666666666665 0 1 0 -40.05333333333333 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
6
|
+
<path d="M53.08 50.16a1.1733333333333333 1.1733333333333333 0 0 1 1.16 1.3333333333333333c-1 7.92 -9.92 9.186666666666666 -22.759999999999998 9.186666666666666s-21.77333333333333 -1.3333333333333333 -22.77333333333333 -9.186666666666666a1.1733333333333333 1.1733333333333333 0 0 1 1.16 -1.3333333333333333Z" fill="#bf8256" stroke-width="1"></path>
|
|
7
|
+
<path d="M9.333333333333332 53.81333333333333a1.2266666666666666 1.2266666666666666 0 0 1 0.5733333333333333 -0.14666666666666667h43.17333333333333a1.1866666666666665 1.1866666666666665 0 0 1 0.5733333333333333 0.14666666666666667 9.493333333333332 9.493333333333332 0 0 0 0.5866666666666667 -2.333333333333333 1.1733333333333333 1.1733333333333333 0 0 0 -1.16 -1.3333333333333333H9.866666666666667a1.1733333333333333 1.1733333333333333 0 0 0 -1.16 1.3333333333333333A9.493333333333332 9.493333333333332 0 0 0 9.333333333333332 53.81333333333333Z" fill="#dea47a" stroke-width="1"></path>
|
|
8
|
+
<path d="M53.08 50.16a1.1733333333333333 1.1733333333333333 0 0 1 1.16 1.3333333333333333c-1 7.92 -9.92 9.186666666666666 -22.759999999999998 9.186666666666666s-21.77333333333333 -1.3333333333333333 -22.77333333333333 -9.186666666666666a1.1733333333333333 1.1733333333333333 0 0 1 1.16 -1.3333333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
9
|
+
<path d="M34.666666666666664 6.946666666666666h-1.4666666666666668v37.33333333333333h20.733333333333334a1.1733333333333333 1.1733333333333333 0 0 0 0.8666666666666667 -1.96 89.33333333333333 89.33333333333333 0 0 1 -19 -34.53333333333333 1.16 1.16 0 0 0 -1.1333333333333333 -0.84Z" fill="#ff6242" stroke-width="1"></path>
|
|
10
|
+
<path d="M39.199999999999996 17.439999999999998a47.58666666666666 47.58666666666666 0 0 1 -5.973333333333334 2.2266666666666666v7.933333333333334a47.626666666666665 47.626666666666665 0 0 0 9.093333333333334 -3.5066666666666664c-1.1066666666666665 -2.16 -2.173333333333333 -4.359999999999999 -3.1199999999999997 -6.653333333333333Z" fill="#ffe500" stroke-width="1"></path>
|
|
11
|
+
<path d="M45.48 29.746666666666663a47.02666666666667 47.02666666666667 0 0 1 -12.253333333333332 4.72v7.853333333333333a45.57333333333333 45.57333333333333 0 0 0 16.173333333333332 -6.666666666666666C48 33.70666666666666 46.666666666666664 31.759999999999998 45.48 29.746666666666663Z" fill="#ffe500" stroke-width="1"></path>
|
|
12
|
+
<path d="M34.666666666666664 6.946666666666666h-1.4666666666666668v37.33333333333333h20.733333333333334a1.1733333333333333 1.1733333333333333 0 0 0 0.8666666666666667 -1.96 89.33333333333333 89.33333333333333 0 0 1 -19 -34.53333333333333 1.16 1.16 0 0 0 -1.1333333333333333 -0.84Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M30.893333333333334 2.28V46.666666666666664H5.84a1.1466666666666665 1.1466666666666665 0 0 1 -0.8133333333333332 -1.9866666666666666c10.226666666666667 -9.906666666666666 18.69333333333333 -24.439999999999998 25.866666666666664 -42.4Z" fill="#ff6242" stroke-width="1"></path>
|
|
14
|
+
<path d="M30.893333333333334 15.333333333333332c-2.48 1.1466666666666665 -4.906666666666666 2.1066666666666665 -7.2 2.9066666666666667q-3.1199999999999997 6.066666666666666 -6.506666666666666 11.32a84.14666666666666 84.14666666666666 0 0 0 13.706666666666665 -4.88Z" fill="#ffe500" stroke-width="1"></path>
|
|
15
|
+
<path d="M5.026666666666666 44.666666666666664a1.1466666666666665 1.1466666666666665 0 0 0 0.8133333333333332 2h9.706666666666667a76.18666666666667 76.18666666666667 0 0 0 15.346666666666666 -7v-9.333333333333332A79.75999999999999 79.75999999999999 0 0 1 10.399999999999999 38.85333333333333a78.08 78.08 0 0 1 -5.373333333333333 5.8133333333333335Z" fill="#ffe500" stroke-width="1"></path>
|
|
16
|
+
<path d="M30.893333333333334 2.28V46.666666666666664H5.84a1.1466666666666665 1.1466666666666665 0 0 1 -0.8133333333333332 -1.9866666666666666c10.226666666666667 -9.906666666666666 18.69333333333333 -24.439999999999998 25.866666666666664 -42.4Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
<path d="M30.893333333333334 2.28h2.333333333333333v47.879999999999995h-2.333333333333333z" fill="#bf8256" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Shaved-Ice--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Shaved Ice Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<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>
|
|
6
|
+
<path d="M13.333333333333332 28a18.666666666666664 18.666666666666664 0 1 0 37.33333333333333 0 18.666666666666664 18.666666666666664 0 1 0 -37.33333333333333 0Z" fill="#fffef2" stroke-width="1"></path>
|
|
7
|
+
<path d="M32 12.893333333333333a18.666666666666664 18.666666666666664 0 0 1 18.57333333333333 16.88c0 -0.5866666666666667 0.09333333333333334 -1.1733333333333333 0.09333333333333334 -1.7733333333333334a18.666666666666664 18.666666666666664 0 0 0 -37.33333333333333 0c0 0.6 0 1.1866666666666665 0.09333333333333334 1.7733333333333334A18.666666666666664 18.666666666666664 0 0 1 32 12.893333333333333Z" fill="#ffffff" stroke-width="1"></path>
|
|
8
|
+
<path d="M13.333333333333332 28a18.666666666666664 18.666666666666664 0 1 0 37.33333333333333 0 18.666666666666664 18.666666666666664 0 1 0 -37.33333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
9
|
+
<path d="M32 9.333333333333332a18.666666666666664 18.666666666666664 0 0 0 -17.493333333333332 12.186666666666667A5.546666666666667 5.546666666666667 0 0 0 19.333333333333332 24c5.773333333333333 0 4.666666666666666 -4.946666666666666 9.333333333333332 -6 4.4399999999999995 -1 4.773333333333333 2 10 2a8.253333333333334 8.253333333333334 0 0 0 7.586666666666667 -4A18.666666666666664 18.666666666666664 0 0 0 32 9.333333333333332Z" fill="#ff87af" stroke-width="1"></path>
|
|
10
|
+
<path d="M15.586666666666666 22.666666666666664a18.666666666666664 18.666666666666664 0 0 1 29.093333333333334 -4.84A8.626666666666665 8.626666666666665 0 0 0 46.25333333333333 16a18.666666666666664 18.666666666666664 0 0 0 -31.746666666666663 5.56 6.466666666666666 6.466666666666666 0 0 0 1.08 1.1066666666666665Z" fill="#ffb0ca" stroke-width="1"></path>
|
|
11
|
+
<path d="M32 9.333333333333332a18.666666666666664 18.666666666666664 0 0 0 -17.493333333333332 12.186666666666667A5.546666666666667 5.546666666666667 0 0 0 19.333333333333332 24c5.773333333333333 0 4.666666666666666 -4.946666666666666 9.333333333333332 -6 4.4399999999999995 -1 4.773333333333333 2 10 2a8.253333333333334 8.253333333333334 0 0 0 7.586666666666667 -4A18.666666666666664 18.666666666666664 0 0 0 32 9.333333333333332Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="M53.239999999999995 8.239999999999998a6.666666666666666 6.666666666666666 0 0 0 -6.2 4.293333333333333l-7.88 20.133333333333333h4L49.74666666666667 16a3.733333333333333 3.733333333333333 0 0 1 3.493333333333333 -2.4266666666666667 2.6666666666666665 2.6666666666666665 0 1 0 0 -5.333333333333333Z" fill="#daedf7" stroke-width="1"></path>
|
|
13
|
+
<path d="M53.239999999999995 8.239999999999998a6.666666666666666 6.666666666666666 0 0 0 -6.2 4.293333333333333l-7.88 20.133333333333333h1.3333333333333333l6.88 -17.466666666666665a6.666666666666666 6.666666666666666 0 0 1 6.2 -4.293333333333333 2.6666666666666665 2.6666666666666665 0 0 1 2.1066666666666665 1.0933333333333333c0 -0.13333333333333333 0.10666666666666666 -0.26666666666666666 0.14666666666666667 -0.39999999999999997a2.6666666666666665 2.6666666666666665 0 0 0 -2.5866666666666664 -3.36Z" fill="#ffffff" stroke-width="1"></path>
|
|
14
|
+
<path d="M53.239999999999995 8.239999999999998a6.666666666666666 6.666666666666666 0 0 0 -6.2 4.293333333333333l-7.88 20.133333333333333h4L49.74666666666667 16a3.733333333333333 3.733333333333333 0 0 1 3.493333333333333 -2.4266666666666667 2.6666666666666665 2.6666666666666665 0 1 0 0 -5.333333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M51.58666666666666 28s-2.5199999999999996 4 -19.093333333333334 4 -20.08 -4 -20.08 -4a1.0533333333333332 1.0533333333333332 0 0 0 -1.0533333333333332 1.08 20.68 20.68 0 0 0 17.093333333333334 19.266666666666666 1.0266666666666666 1.0266666666666666 0 0 1 0.88 0.9866666666666666v4.266666666666667a1.0933333333333333 1.0933333333333333 0 0 1 -0.22666666666666668 0.6666666666666666 9.399999999999999 9.399999999999999 0 0 1 -5.013333333333333 3.1866666666666665 1.6266666666666665 1.6266666666666665 0 0 0 0.48 3.173333333333333H39.46666666666667a1.6266666666666665 1.6266666666666665 0 0 0 0.5333333333333333 -3.1333333333333333 9.399999999999999 9.399999999999999 0 0 1 -5.013333333333333 -3.1866666666666665 1.0933333333333333 1.0933333333333333 0 0 1 -0.22666666666666668 -0.6666666666666666V49.33333333333333a1.0266666666666666 1.0266666666666666 0 0 1 0.88 -1.0133333333333332 20.68 20.68 0 0 0 17 -19.24 1.0533333333333332 1.0533333333333332 0 0 0 -1.0533333333333332 -1.08Z" fill="#b8ecff" stroke-width="1"></path>
|
|
16
|
+
<path d="M51.58666666666666 28s-2.5199999999999996 4 -19.093333333333334 4 -20.08 -4 -20.08 -4a1.0533333333333332 1.0533333333333332 0 0 0 -1.0533333333333332 1.08s0 0.10666666666666666 0 0.17333333333333334c2.6666666666666665 5.8133333333333335 11.106666666666666 10.079999999999998 21.119999999999997 10.079999999999998 8.853333333333332 0 16.4 -3.333333333333333 19.919999999999998 -8.066666666666666 0.10666666666666666 -0.72 0.19999999999999998 -1.4533333333333334 0.24 -2.1866666666666665a1.0533333333333332 1.0533333333333332 0 0 0 -1.0533333333333332 -1.08Z" fill="#e5f8ff" stroke-width="1"></path>
|
|
17
|
+
<path d="M51.58666666666666 28s-2.5199999999999996 4 -19.093333333333334 4 -20.08 -4 -20.08 -4a1.0533333333333332 1.0533333333333332 0 0 0 -1.0533333333333332 1.08 20.68 20.68 0 0 0 17.093333333333334 19.266666666666666 1.0266666666666666 1.0266666666666666 0 0 1 0.88 0.9866666666666666v4.266666666666667a1.0933333333333333 1.0933333333333333 0 0 1 -0.22666666666666668 0.6666666666666666 9.399999999999999 9.399999999999999 0 0 1 -5.013333333333333 3.1866666666666665 1.6266666666666665 1.6266666666666665 0 0 0 0.44 3.1866666666666665h14.933333333333332a1.6266666666666665 1.6266666666666665 0 0 0 0.44 -3.1866666666666665 9.399999999999999 9.399999999999999 0 0 1 -5.013333333333333 -3.1866666666666665 1.0933333333333333 1.0933333333333333 0 0 1 -0.22666666666666668 -0.6666666666666666V49.33333333333333a1.0266666666666666 1.0266666666666666 0 0 1 0.88 -1.0133333333333332 20.68 20.68 0 0 0 17.093333333333334 -19.24 1.0533333333333332 1.0533333333333332 0 0 0 -1.0533333333333332 -1.08Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
18
|
+
<path d="M30.493333333333332 8a3.333333333333333 3.333333333333333 0 1 0 6.666666666666666 0 3.333333333333333 3.333333333333333 0 1 0 -6.666666666666666 0Z" fill="#ff6242" stroke-width="1"></path>
|
|
19
|
+
<path d="M33.82666666666667 6.666666666666666a3.333333333333333 3.333333333333333 0 0 1 3.16 2.333333333333333 3.5733333333333333 3.5733333333333333 0 0 0 0.17333333333333334 -1 3.333333333333333 3.333333333333333 0 0 0 -6.666666666666666 0 3.5599999999999996 3.5599999999999996 0 0 0 0.15999999999999998 1A3.333333333333333 3.333333333333333 0 0 1 33.82666666666667 6.666666666666666Z" fill="#ff866e" stroke-width="1"></path>
|
|
20
|
+
<path d="M30.493333333333332 8a3.333333333333333 3.333333333333333 0 1 0 6.666666666666666 0 3.333333333333333 3.333333333333333 0 1 0 -6.666666666666666 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
21
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Shortcake-2--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Shortcake 2 Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M5.48 58.74666666666667a26.666666666666664 2.5866666666666664 0 1 0 53.33333333333333 0 26.666666666666664 2.5866666666666664 0 1 0 -53.33333333333333 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
6
|
+
<path d="M56.666666666666664 27.439999999999998 5.333333333333333 32.36l2.293333333333333 24a1.72 1.72 0 0 0 1.88 1.5466666666666664l48 -4.6a1.7066666666666666 1.7066666666666666 0 0 0 1.5466666666666664 -1.8666666666666665Z" fill="#bf8256" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
7
|
+
<path d="m6.298440834666666 42.640770447066664 51.3641670608 -4.927711653999999 0.8212852756 8.560694510133333L7.119726110266666 51.20146495733333z" fill="#ffe3cf" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
8
|
+
<path d="M28.306666666666665 37.93333333333333a2.5733333333333333 2.5733333333333333 0 1 1 5.133333333333333 -0.4933333333333333l0.07999999999999999 0.8533333333333333a1.72 1.72 0 0 0 1.88 1.5466666666666664 1.7066666666666666 1.7066666666666666 0 0 0 1.5466666666666664 -1.8666666666666665l-0.07999999999999999 -0.8533333333333333a0.8533333333333333 0.8533333333333333 0 1 1 1.7066666666666666 -0.17333333333333334l0.22666666666666668 2.3866666666666667a3.5866666666666664 3.5866666666666664 0 0 0 3.1999999999999997 3.333333333333333 3.44 3.44 0 0 0 3.6666666666666665 -3.76L45.33333333333333 34.586666666666666a2.5733333333333333 2.5733333333333333 0 1 0 5.133333333333333 -0.4933333333333333l-0.07999999999999999 -0.8666666666666667a1.7066666666666666 1.7066666666666666 0 0 1 1.5466666666666664 -1.8666666666666665 1.72 1.72 0 0 1 1.88 1.5466666666666664l0.09333333333333334 1.76a5.1466666666666665 5.1466666666666665 0 0 0 3.08 4.24 1.7066666666666666 1.7066666666666666 0 0 0 2.333333333333333 -1.7733333333333334l-0.9333333333333332 -9.799999999999999c-0.48 -5.053333333333333 -10.773333333333333 -11.573333333333332 -24 -11.906666666666666a5.039999999999999 5.039999999999999 0 0 0 -2.6666666666666665 0.72L5.48 31.41333333333333A3.466666666666667 3.466666666666667 0 0 0 3.8 34.666666666666664l1.1733333333333333 12.266666666666666a0.8666666666666667 0.8666666666666667 0 0 0 1.1066666666666665 0.7466666666666667 5.133333333333333 5.133333333333333 0 0 0 3.6399999999999997 -5.253333333333333 2.6666666666666665 2.6666666666666665 0 0 1 1.8 -2.8266666666666667 2.5866666666666664 2.5866666666666664 0 0 1 3.333333333333333 2.213333333333333l0.07999999999999999 0.8666666666666667a2.5733333333333333 2.5733333333333333 0 1 0 5.133333333333333 -0.4933333333333333l-0.15999999999999998 -1.72a0.8533333333333333 0.8533333333333333 0 0 1 1.7066666666666666 -0.15999999999999998l0.22666666666666668 2.36a3.5599999999999996 3.5599999999999996 0 0 0 3.1999999999999997 3.28 3.44 3.44 0 0 0 3.6666666666666665 -3.76Z" fill="#ff6242" stroke-width="1"></path>
|
|
9
|
+
<path d="M28.306666666666665 37.93333333333333a2.5733333333333333 2.5733333333333333 0 1 1 5.133333333333333 -0.4933333333333333l0.07999999999999999 0.8533333333333333a1.72 1.72 0 0 0 1.88 1.5466666666666664 1.7066666666666666 1.7066666666666666 0 0 0 1.5466666666666664 -1.8666666666666665l-0.07999999999999999 -0.8533333333333333a0.8533333333333333 0.8533333333333333 0 1 1 1.7066666666666666 -0.17333333333333334l0.22666666666666668 2.3866666666666667a3.5866666666666664 3.5866666666666664 0 0 0 3.1999999999999997 3.333333333333333 3.44 3.44 0 0 0 3.6666666666666665 -3.76L45.33333333333333 34.586666666666666a2.5733333333333333 2.5733333333333333 0 1 0 5.133333333333333 -0.4933333333333333l-0.07999999999999999 -0.8666666666666667a1.7066666666666666 1.7066666666666666 0 0 1 1.5466666666666664 -1.8666666666666665 1.72 1.72 0 0 1 1.88 1.5466666666666664l0.09333333333333334 1.76a5.1466666666666665 5.1466666666666665 0 0 0 3.08 4.24 1.7066666666666666 1.7066666666666666 0 0 0 2.333333333333333 -1.7733333333333334l-0.9333333333333332 -9.799999999999999c-0.48 -5.053333333333333 -10.773333333333333 -11.573333333333332 -24 -11.906666666666666a5.039999999999999 5.039999999999999 0 0 0 -2.6666666666666665 0.72L5.48 31.41333333333333A3.466666666666667 3.466666666666667 0 0 0 3.8 34.666666666666664l1.1733333333333333 12.266666666666666a0.8666666666666667 0.8666666666666667 0 0 0 1.1066666666666665 0.7466666666666667 5.133333333333333 5.133333333333333 0 0 0 3.6399999999999997 -5.253333333333333 2.6666666666666665 2.6666666666666665 0 0 1 1.8 -2.8266666666666667 2.5866666666666664 2.5866666666666664 0 0 1 3.333333333333333 2.213333333333333l0.07999999999999999 0.8666666666666667a2.5733333333333333 2.5733333333333333 0 1 0 5.133333333333333 -0.4933333333333333l-0.15999999999999998 -1.72a0.8533333333333333 0.8533333333333333 0 0 1 1.7066666666666666 -0.15999999999999998l0.22666666666666668 2.36a3.5599999999999996 3.5599999999999996 0 0 0 3.1999999999999997 3.28 3.44 3.44 0 0 0 3.6666666666666665 -3.76Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="m12.146666666666665 31.706666666666667 41.10666666666666 -3.9466666666666663" fill="none" stroke="#e04122" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="M46.74666666666667 14.08c-0.22666666666666668 -4.266666666666667 -4.893333333333333 -10.946666666666667 -9.16 -10.666666666666666s-8.239999999999998 7.333333333333333 -8 11.599999999999998 4.72 7.52 8.986666666666666 7.293333333333333 8.386666666666667 -3.96 8.173333333333332 -8.226666666666667Z" fill="#ff6242" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="m32.906666666666666 13.066666666666666 0.09333333333333334 1.72" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="m35.22666666666667 7.786666666666666 0.07999999999999999 1.72" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="m38.06666666666666 12.813333333333333 0.09333333333333334 1.7066666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="m40.373333333333335 7.52 0.09333333333333334 1.72" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="m43.22666666666667 12.546666666666667 0.07999999999999999 1.72" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
<path d="M48.919999999999995 18.666666666666664c0.22666666666666668 2.373333333333333 -4.1866666666666665 4.72 -9.866666666666667 5.333333333333333s-10.453333333333333 -0.9333333333333332 -10.666666666666666 -3.2933333333333334A2.5866666666666664 2.5866666666666664 0 0 1 30.666666666666664 17.84c1.4133333333333333 -0.13333333333333333 2.5999999999999996 0 2.733333333333333 1.4666666666666668 -0.26666666666666666 -2.84 1.893333333333333 -4.506666666666666 4.7333333333333325 -4.773333333333333s5.266666666666667 0.9466666666666665 5.546666666666667 3.786666666666666c-0.14666666666666667 -1.4133333333333333 0.9866666666666666 -1.8266666666666667 2.4 -1.96A2.5866666666666664 2.5866666666666664 0 0 1 48.919999999999995 18.666666666666664Z" fill="#ffe3cf" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Shushing-Face--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Shushing 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="M51.33333333333333 32.666666666666664c0 1.1066666666666665 -1.4933333333333334 2 -3.333333333333333 2s-3.333333333333333 -0.8933333333333333 -3.333333333333333 -2S46.16 30.666666666666664 48 30.666666666666664s3.333333333333333 0.8933333333333333 3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
11
|
+
<path d="M12.666666666666666 32.666666666666664c0 1.1066666666666665 1.4933333333333334 2 3.333333333333333 2s3.333333333333333 -0.8933333333333333 3.333333333333333 -2S17.84 30.666666666666664 16 30.666666666666664s-3.333333333333333 0.8933333333333333 -3.333333333333333 2Z" fill="#ffaa54" stroke-width="1"></path>
|
|
12
|
+
<path d="M19.333333333333332 24.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 24.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="M24.666666666666664 36a25.333333333333332 25.333333333333332 0 0 0 7.333333333333333 1.3333333333333333 25.333333333333332 25.333333333333332 0 0 0 7.333333333333333 -1.3333333333333333" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M32 30a2.6666666666666665 2.6666666666666665 0 0 0 -2.6666666666666665 2.6666666666666665V48h5.333333333333333V32.666666666666664a2.6666666666666665 2.6666666666666665 0 0 0 -2.6666666666666665 -2.6666666666666665Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M27.199999999999996 60.666666666666664a8 8 0 0 0 4.973333333333333 -1.76l6.799999999999999 -5.573333333333332a2.6666666666666665 2.6666666666666665 0 0 0 -2.5066666666666664 -4.693333333333333l-1.8 0.5866666666666667v-4A5.1866666666666665 5.1866666666666665 0 0 0 29.479999999999997 40H26.666666666666664a3.333333333333333 3.333333333333333 0 0 0 -3.333333333333333 3.333333333333333 4 4 0 0 0 -4 4v5.466666666666666a7.866666666666667 7.866666666666667 0 0 0 7.866666666666667 7.866666666666667Z" fill="#ffe500" stroke-width="1"></path>
|
|
17
|
+
<path d="m38.97333333333333 50.666666666666664 -6.799999999999999 5.533333333333333a8 8 0 0 1 -4.973333333333333 1.8 7.866666666666667 7.866666666666667 0 0 1 -7.866666666666667 -7.866666666666667v2.6666666666666665a7.866666666666667 7.866666666666667 0 0 0 7.866666666666667 7.866666666666667 8 8 0 0 0 4.973333333333333 -1.76l6.799999999999999 -5.573333333333332a2.6666666666666665 2.6666666666666665 0 0 0 0.72 -3.3200000000000003s-0.44 0.4666666666666666 -0.72 0.6533333333333333Z" fill="#ebcb00" stroke-width="1"></path>
|
|
18
|
+
<path d="M27.199999999999996 60.666666666666664a8 8 0 0 0 4.973333333333333 -1.76l6.799999999999999 -5.573333333333332a2.6666666666666665 2.6666666666666665 0 0 0 -2.5066666666666664 -4.693333333333333l-1.8 0.5866666666666667v-4A5.1866666666666665 5.1866666666666665 0 0 0 29.479999999999997 40H26.666666666666664a3.333333333333333 3.333333333333333 0 0 0 -3.333333333333333 3.333333333333333 4 4 0 0 0 -4 4v5.466666666666666a7.866666666666667 7.866666666666667 0 0 0 7.866666666666667 7.866666666666667Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
19
|
+
<path d="M24.666666666666664 48v4.666666666666666a2.6666666666666665 2.6666666666666665 0 0 0 5.333333333333333 0v-2.333333333333333" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
20
|
+
<path d="M34.666666666666664 45.18666666666667v5.1466666666666665a2.333333333333333 2.333333333333333 0 0 1 -4.666666666666666 0v-2.96a4 4 0 0 0 -4 -4h-2.6666666666666665" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
21
|
+
</svg>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Sign-Of-The-Horns-1--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Sign Of The Horns 1 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="M40 29.439999999999998 42.57333333333333 12a3.333333333333333 3.333333333333333 0 1 1 6.666666666666666 0.9199999999999999C46.22666666666667 35 46.25333333333333 30.88 46.25333333333333 42.666666666666664a13.333333333333332 13.333333333333332 0 0 1 -14.173333333333334 13.333333333333332 13.599999999999998 13.599999999999998 0 0 1 -12.413333333333334 -13.719999999999999v-9.559999999999999a15.426666666666666 15.426666666666666 0 0 0 -0.7733333333333332 -4.866666666666666L16 19.026666666666664a3.0399999999999996 3.0399999999999996 0 0 1 5.72 -2.08l5.039999999999999 12.493333333333332Z" fill="#ffe500" stroke-width="1"></path>
|
|
7
|
+
<path d="M45.33333333333333 12.76a3.84 3.84 0 0 1 3.52 2.293333333333333c0.09333333333333334 -0.6799999999999999 0.18666666666666668 -1.3333333333333333 0.27999999999999997 -2.1333333333333333a3.333333333333333 3.333333333333333 0 1 0 -6.666666666666666 -0.9199999999999999l-0.3466666666666667 2.413333333333333A3.813333333333333 3.813333333333333 0 0 1 45.33333333333333 12.76Z" fill="#fff48c" stroke-width="1"></path>
|
|
8
|
+
<path d="M16.813333333333333 21.46666666666667a3.2666666666666666 3.2666666666666666 0 0 1 6.013333333333333 -1.7733333333333334l-1.1066666666666665 -2.7466666666666666A3.0399999999999996 3.0399999999999996 0 0 0 16 19.026666666666664l0.8133333333333332 2.48Z" fill="#fff48c" stroke-width="1"></path>
|
|
9
|
+
<path d="M40 29.439999999999998 42.57333333333333 12a3.333333333333333 3.333333333333333 0 1 1 6.666666666666666 0.9199999999999999C46.22666666666667 35 46.25333333333333 30.88 46.25333333333333 42.666666666666664a13.333333333333332 13.333333333333332 0 0 1 -14.173333333333334 13.333333333333332 13.599999999999998 13.599999999999998 0 0 1 -12.413333333333334 -13.719999999999999v-9.559999999999999a15.426666666666666 15.426666666666666 0 0 0 -0.7733333333333332 -4.866666666666666L16 19.026666666666664a3.0399999999999996 3.0399999999999996 0 0 1 5.72 -2.08l5.039999999999999 12.493333333333332Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="m26.759999999999998 25.906666666666666 7.093333333333334 0 0 14.613333333333333 -7.093333333333334 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
11
|
+
<path d="M30.306666666666665 25.906666666666666a3.546666666666667 3.546666666666667 0 0 0 -3.546666666666667 3.533333333333333v3.1999999999999997a3.546666666666667 3.546666666666667 0 0 1 3.546666666666667 -3.533333333333333 3.546666666666667 3.546666666666667 0 0 1 3.546666666666667 3.533333333333333v-3.1999999999999997a3.546666666666667 3.546666666666667 0 0 0 -3.546666666666667 -3.533333333333333Z" fill="#fff48c" stroke-width="1"></path>
|
|
12
|
+
<path d="m26.759999999999998 25.906666666666666 7.093333333333334 0 0 14.613333333333333 -7.093333333333334 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="m33.85333333333333 25.906666666666666 7.093333333333334 0 0 14.613333333333333 -7.093333333333334 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
14
|
+
<path d="M37.33333333333333 25.906666666666666a3.533333333333333 3.533333333333333 0 0 0 -3.533333333333333 3.533333333333333v3.1999999999999997A3.533333333333333 3.533333333333333 0 0 1 37.33333333333333 29.106666666666662a3.546666666666667 3.546666666666667 0 0 1 3.546666666666667 3.533333333333333v-3.1999999999999997A3.546666666666667 3.546666666666667 0 0 0 37.33333333333333 25.906666666666666Z" fill="#fff48c" stroke-width="1"></path>
|
|
15
|
+
<path d="m33.85333333333333 25.906666666666666 7.093333333333334 0 0 14.613333333333333 -7.093333333333334 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M46.25333333333333 42.33333333333333a6.906666666666666 6.906666666666666 0 0 0 -6.92 -6.906666666666666h-10.76a1.8266666666666667 1.8266666666666667 0 0 0 -1.8399999999999999 1.8266666666666667 5.08 5.08 0 0 0 5.08 5.08Z" fill="#ffe500" stroke-width="1"></path>
|
|
17
|
+
<path d="M46.25333333333333 42.33333333333333a6.906666666666666 6.906666666666666 0 0 0 -6.92 -6.906666666666666h-10.76a1.8266666666666667 1.8266666666666667 0 0 0 -1.8399999999999999 1.8266666666666667 4.946666666666666 4.946666666666666 0 0 0 0.31999999999999995 1.7333333333333334 1.88 1.88 0 0 1 1.5199999999999998 -0.7866666666666666H40a6.906666666666666 6.906666666666666 0 0 1 6.253333333333334 4.133333333333333Z" fill="#fff48c" stroke-width="1"></path>
|
|
18
|
+
<path d="M31.333333333333332 50v-1.7466666666666666a5.92 5.92 0 0 1 5.92 -5.92h-5.4399999999999995a5.08 5.08 0 0 1 -5.08 -5.08 1.8266666666666667 1.8266666666666667 0 0 1 1.8399999999999999 -1.8266666666666667h10.76a6.906666666666666 6.906666666666666 0 0 1 6.92 6.906666666666666" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
19
|
+
</svg>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Sleeping-Face--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Sleeping Face Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M16.386666666666663 60.54666666666666a15.559999999999999 2.12 0 1 0 31.119999999999997 0 15.559999999999999 2.12 0 1 0 -31.119999999999997 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
6
|
+
<path d="M14.053333333333331 36.72a17.946666666666665 17.946666666666665 0 1 0 35.89333333333333 0 17.946666666666665 17.946666666666665 0 1 0 -35.89333333333333 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
7
|
+
<path d="M32 18.786666666666665a17.946666666666665 17.946666666666665 0 1 0 17.946666666666665 17.93333333333333A17.946666666666665 17.946666666666665 0 0 0 32 18.786666666666665ZM32 52a16.37333333333333 16.37333333333333 0 1 1 16.37333333333333 -16.4A16.37333333333333 16.37333333333333 0 0 1 32 52Z" fill="#ebcb00" stroke-width="1"></path>
|
|
8
|
+
<path d="M14.053333333333331 36.72a17.946666666666665 17.946666666666665 0 1 0 35.89333333333333 0 17.946666666666665 17.946666666666665 0 1 0 -35.89333333333333 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
9
|
+
<path d="M24.826666666666668 45.46666666666667a7.173333333333333 7.173333333333333 0 1 0 14.346666666666666 0 7.173333333333333 7.173333333333333 0 1 0 -14.346666666666666 0Z" fill="#ffb0ca" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M25.93333333333333 49.28a6.066666666666666 3.36 0 1 0 12.133333333333333 0 6.066666666666666 3.36 0 1 0 -12.133333333333333 0Z" fill="#ff866e" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="M46.36 42.10666666666666c0 0.7466666666666667 -1.0133333333333332 1.3333333333333333 -2.253333333333333 1.3333333333333333s-2.2399999999999998 -0.6 -2.2399999999999998 -1.3333333333333333 1 -1.3333333333333333 2.2399999999999998 -1.3333333333333333 2.253333333333333 0.5599999999999999 2.253333333333333 1.3333333333333333Z" fill="#ffaa54" stroke-width="1"></path>
|
|
12
|
+
<path d="M17.64 42.10666666666666c0 0.7466666666666667 1.0133333333333332 1.3333333333333333 2.253333333333333 1.3333333333333333s2.2399999999999998 -0.6 2.2399999999999998 -1.3333333333333333 -1 -1.3333333333333333 -2.2399999999999998 -1.3333333333333333 -2.253333333333333 0.5599999999999999 -2.253333333333333 1.3333333333333333Z" fill="#ffaa54" stroke-width="1"></path>
|
|
13
|
+
<path d="M34.239999999999995 52.76a2.36 2.36 0 0 1 1.3333333333333333 -2.1066666666666665 2.4266666666666667 2.4266666666666667 0 0 0 0.8266666666666667 -0.6933333333333334l0.7466666666666667 -0.9866666666666666a0.8933333333333333 0.8933333333333333 0 0 1 1.6133333333333333 0.5333333333333333V52a1.5733333333333333 1.5733333333333333 0 0 1 -1.5733333333333333 1.5733333333333333 0.6666666666666666 0.6666666666666666 0 0 0 -0.6799999999999999 0.6666666666666666v6.506666666666666a1.1199999999999999 1.1199999999999999 0 0 1 -2.2399999999999998 0Z" fill="#4aeff7" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="M44.56 36.72a1.5733333333333333 1.5733333333333333 0 1 1 -3.1333333333333333 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M22.586666666666666 36.72a1.5733333333333333 1.5733333333333333 0 0 1 -3.1466666666666665 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="m34.093333333333334 23.586666666666666 -7.906666666666666 -1.5066666666666664a1.24 1.24 0 0 1 -0.5066666666666666 -2.213333333333333l7.239999999999999 -5.333333333333333 -5.119999999999999 -0.9733333333333333a1.3333333333333333 1.3333333333333333 0 0 1 -0.9866666666666666 -1.4533333333333334 1.24 1.24 0 0 1 1.4533333333333334 -0.9866666666666666l7.92 1.5066666666666664a1.24 1.24 0 0 1 0.4933333333333333 2.213333333333333l-7.239999999999999 5.333333333333333 5.119999999999999 0.9733333333333333a1.24 1.24 0 1 1 -0.4666666666666666 2.44Z" fill="#dabff5" stroke="#45413c" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
<path d="M19.68 31.546666666666667 13.253333333333332 34.13333333333333a1.0666666666666667 1.0666666666666667 0 0 1 -1.3333333333333333 -1.3333333333333333L14.666666666666666 25.53333333333333l-4.1866666666666665 1.68a1.0666666666666667 1.0666666666666667 0 0 1 -1.3333333333333333 -0.6 1.0533333333333332 1.0533333333333332 0 0 1 0.5866666666666667 -1.3333333333333333L16.106666666666666 22.666666666666664a1.0666666666666667 1.0666666666666667 0 0 1 1.4 1.3333333333333333l-2.7733333333333334 7.213333333333333 4.16 -1.6666666666666665a1.0666666666666667 1.0666666666666667 0 1 1 0.7866666666666666 1.9733333333333332Z" fill="#dabff5" stroke="#45413c" stroke-linejoin="round" stroke-width="1"></path>
|
|
18
|
+
<path d="M23.439999999999998 18.89333333333333 8.399999999999999 21.839999999999996a1.92 1.92 0 0 1 -1.9466666666666665 -2.986666666666667L16 5.333333333333333 5.56 7.426666666666667a1.92 1.92 0 1 1 -0.7333333333333334 -3.7733333333333334L19.866666666666667 0.7066666666666667a1.9066666666666665 1.9066666666666665 0 0 1 1.9466666666666665 2.973333333333333L12.333333333333332 17.159999999999997 22.666666666666664 15.12a1.92 1.92 0 0 1 0.7333333333333334 3.7733333333333334Z" fill="#dabff5" stroke="#45413c" stroke-linejoin="round" stroke-width="1"></path>
|
|
19
|
+
<path d="m5.586666666666667 5.72 15.053333333333331 -2.96a1.96 1.96 0 0 1 1.44 0.31999999999999995 1.92 1.92 0 0 0 -0.22666666666666668 -1.5466666666666664 1.9066666666666665 1.9066666666666665 0 0 0 -1.9733333333333332 -0.8266666666666667L4.826666666666666 3.6533333333333333a1.92 1.92 0 0 0 -0.72 3.466666666666667 1.92 1.92 0 0 1 1.48 -1.4Z" fill="#eddbff" stroke-width="1"></path>
|
|
20
|
+
<path d="M23.439999999999998 18.89333333333333 8.399999999999999 21.839999999999996a1.92 1.92 0 0 1 -1.9466666666666665 -2.986666666666667L16 5.333333333333333 5.56 7.426666666666667a1.92 1.92 0 1 1 -0.7333333333333334 -3.7733333333333334L19.866666666666667 0.7066666666666667a1.9066666666666665 1.9066666666666665 0 0 1 1.9466666666666665 2.973333333333333L12.333333333333332 17.159999999999997 22.666666666666664 15.12a1.92 1.92 0 0 1 0.7333333333333334 3.7733333333333334Z" fill="none" stroke="#45413c" stroke-linejoin="round" stroke-width="1"></path>
|
|
21
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Slightly-Smiling-Face--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Slightly Smiling 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="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>
|
|
8
|
+
<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>
|
|
9
|
+
<path d="M38.666666666666664 39.306666666666665a12 12 0 0 1 -13.333333333333332 0" fill="none" stroke="#45413c" stroke-linecap="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="M24 7.333333333333333a8 2 0 1 0 16 0 8 2 0 1 0 -16 0Z" fill="#fff48c" 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="Smiling-Face-With-Halo--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Smiling Face With Halo 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="M13.386666666666665 35.946666666666665a18.613333333333333 18.613333333333333 0 1 0 37.22666666666667 0 18.613333333333333 18.613333333333333 0 1 0 -37.22666666666667 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
7
|
+
<path d="M32 17.333333333333332a18.666666666666664 18.666666666666664 0 1 0 18.666666666666664 18.666666666666664 18.666666666666664 18.666666666666664 0 0 0 -18.666666666666664 -18.666666666666664Zm0 34.44a16.986666666666665 16.986666666666665 0 1 1 16.986666666666665 -16.986666666666665A16.986666666666665 16.986666666666665 0 0 1 32 51.773333333333326Z" fill="#ebcb00" stroke-width="1"></path>
|
|
8
|
+
<path d="M26.41333333333333 21.05333333333333a5.586666666666667 1.4 0 1 0 11.173333333333334 0 5.586666666666667 1.4 0 1 0 -11.173333333333334 0Z" fill="#fff48c" stroke-width="1"></path>
|
|
9
|
+
<path d="M13.386666666666665 35.946666666666665a18.613333333333333 18.613333333333333 0 1 0 37.22666666666667 0 18.613333333333333 18.613333333333333 0 1 0 -37.22666666666667 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M45.493333333333325 40.599999999999994c0 0.7733333333333332 -1.04 1.4 -2.32 1.4s-2.333333333333333 -0.6266666666666666 -2.333333333333333 -1.4 1.04 -1.3333333333333333 2.333333333333333 -1.3333333333333333 2.32 0.5733333333333333 2.32 1.3333333333333333Z" fill="#ffaa54" stroke-width="1"></path>
|
|
11
|
+
<path d="M18.506666666666668 40.599999999999994c0 0.7733333333333332 1.04 1.4 2.32 1.4s2.333333333333333 -0.6266666666666666 2.333333333333333 -1.4 -1.04 -1.3333333333333333 -2.333333333333333 -1.3333333333333333 -2.32 0.5733333333333333 -2.32 1.3333333333333333Z" fill="#ffaa54" stroke-width="1"></path>
|
|
12
|
+
<path d="M32 2c-9.559999999999999 0 -17.333333333333332 2.5066666666666664 -17.333333333333332 5.586666666666667s7.76 5.586666666666667 17.333333333333332 5.586666666666667S49.33333333333333 10.666666666666666 49.33333333333333 7.586666666666667 41.56 2 32 2Zm0 7.8133333333333335c-6.786666666666666 0 -12.293333333333333 -1 -12.293333333333333 -2.2266666666666666S25.21333333333333 5.333333333333333 32 5.333333333333333s12.293333333333333 1 12.293333333333333 2.2399999999999998S38.78666666666666 9.813333333333333 32 9.813333333333333Z" fill="#fff48c" stroke-width="1"></path>
|
|
13
|
+
<path d="M18.973333333333333 37.12a1.6266666666666665 1.6266666666666665 0 1 1 3.253333333333333 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="M41.773333333333326 37.12a1.6266666666666665 1.6266666666666665 0 1 1 3.253333333333333 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M26.36 43.13333333333333a0.88 0.88 0 0 0 -0.6666666666666666 0.30666666666666664 0.8933333333333333 0.8933333333333333 0 0 0 -0.19999999999999998 0.7066666666666667 6.586666666666667 6.586666666666667 0 0 0 13.013333333333332 0 0.8933333333333333 0.8933333333333333 0 0 0 -0.19999999999999998 -0.7066666666666667 0.88 0.88 0 0 0 -0.6666666666666666 -0.30666666666666664Z" fill="#ffb0ca" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M37.18666666666667 47.17333333333333a10.573333333333332 10.573333333333332 0 0 0 -5.1866666666666665 -1.2133333333333334 10.573333333333332 10.573333333333332 0 0 0 -5.1866666666666665 1.2133333333333334 6.56 6.56 0 0 0 10.373333333333333 0Z" fill="#ff87af" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
<path d="M32 9.813333333333333c-6.786666666666666 0 -12.293333333333333 -1 -12.293333333333333 -2.2266666666666666 0 2.173333333333333 5.506666666666666 4 12.293333333333333 4s12.293333333333333 -1.7733333333333334 12.293333333333333 -4c0 1.2266666666666666 -5.506666666666666 2.2266666666666666 -12.293333333333333 2.2266666666666666Z" fill="#fffacf" stroke-width="1"></path>
|
|
18
|
+
<path d="M32 3.6399999999999997c-6.786666666666666 0 -12.293333333333333 1.7733333333333334 -12.293333333333333 4C19.706666666666663 6.346666666666666 25.21333333333333 5.333333333333333 32 5.333333333333333s12.293333333333333 1 12.293333333333333 2.2399999999999998c0 -2.16 -5.506666666666666 -3.9333333333333336 -12.293333333333333 -3.9333333333333336Z" fill="#ffe500" stroke-width="1"></path>
|
|
19
|
+
<path d="M32 2c-9.559999999999999 0 -17.333333333333332 2.5066666666666664 -17.333333333333332 5.586666666666667s7.76 5.586666666666667 17.333333333333332 5.586666666666667S49.33333333333333 10.666666666666666 49.33333333333333 7.586666666666667 41.56 2 32 2Zm0 7.8133333333333335c-6.786666666666666 0 -12.293333333333333 -1 -12.293333333333333 -2.2266666666666666S25.21333333333333 5.333333333333333 32 5.333333333333333s12.293333333333333 1 12.293333333333333 2.2399999999999998S38.78666666666666 9.813333333333333 32 9.813333333333333Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
20
|
+
</svg>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Smiling-Face-With-Heart-Eyes--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Smiling Face With Heart Eyes 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="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>
|
|
9
|
+
<path d="M14.12 30.973333333333333a3.333333333333333 2 0 1 0 6.666666666666666 0 3.333333333333333 2 0 1 0 -6.666666666666666 0Z" fill="#ffaa54" stroke-width="1"></path>
|
|
10
|
+
<path d="M43.213333333333324 30.973333333333333a3.333333333333333 2 0 1 0 6.666666666666666 0 3.333333333333333 2 0 1 0 -6.666666666666666 0Z" fill="#ffaa54" stroke-width="1"></path>
|
|
11
|
+
<path d="M20.973333333333333 37.33333333333333a1.3333333333333333 1.3333333333333333 0 0 0 -1 0.45333333333333337 1.3333333333333333 1.3333333333333333 0 0 0 -0.3333333333333333 1.04 12.453333333333333 12.453333333333333 0 0 0 24.72 0 1.3333333333333333 1.3333333333333333 0 0 0 -0.3333333333333333 -1.04 1.3333333333333333 1.3333333333333333 0 0 0 -1 -0.45333333333333337Z" fill="#ffb0ca" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="M41.81333333333333 44.97333333333333A20 20 0 0 0 32 42.666666666666664a20 20 0 0 0 -9.813333333333333 2.3066666666666666 12.426666666666666 12.426666666666666 0 0 0 19.626666666666665 0Z" fill="#ff87af" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M42.026666666666664 42.97333333333333a0.5733333333333333 0.5733333333333333 0 0 1 1.08 0.2533333333333333v12.253333333333332a2.173333333333333 2.173333333333333 0 0 1 -4.333333333333333 0v-6.666666666666666a4.826666666666666 4.826666666666666 0 0 1 1.3333333333333333 -3.373333333333333 10.573333333333332 10.573333333333332 0 0 0 1.92 -2.466666666666667Z" fill="#4aeff7" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<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>
|
|
15
|
+
<path d="M50.239999999999995 21.093333333333334a5.826666666666666 5.826666666666666 0 0 1 -3.36 3.1333333333333333l-8 2.6666666666666665 -3.3200000000000003 -7.786666666666666a5.76 5.76 0 0 1 0.12 -4.6A4.52 4.52 0 0 1 38.666666666666664 12a3.5599999999999996 3.5599999999999996 0 0 1 4.226666666666667 2.493333333333333l0.6266666666666666 2.013333333333333 1.9066666666666665 -0.8666666666666667a3.546666666666667 3.546666666666667 0 0 1 4.666666666666666 1.4933333333333334 4.493333333333333 4.493333333333333 0 0 1 0.14666666666666667 3.96Z" fill="#ff6242" stroke-width="1"></path>
|
|
16
|
+
<path d="M37.06666666666666 15.64A3.5733333333333333 3.5733333333333333 0 0 1 41.33333333333333 18.133333333333333l0.6133333333333333 2.013333333333333 1.92 -0.8666666666666667a3.5599999999999996 3.5599999999999996 0 0 1 4.666666666666666 1.4933333333333334 4.213333333333333 4.213333333333333 0 0 1 0.4933333333333333 2.0933333333333333 6.013333333333333 6.013333333333333 0 0 0 1.2533333333333332 -1.7733333333333334 4.493333333333333 4.493333333333333 0 0 0 -0.09333333333333334 -4 3.546666666666667 3.546666666666667 0 0 0 -4.666666666666666 -1.4933333333333334l-1.9066666666666665 0.8666666666666667 -0.6266666666666666 -2.013333333333333A3.5599999999999996 3.5599999999999996 0 0 0 38.666666666666664 12a4.52 4.52 0 0 0 -3.0533333333333332 2.6666666666666665 6.079999999999999 6.079999999999999 0 0 0 -0.5066666666666666 2.1333333333333333 4.173333333333333 4.173333333333333 0 0 1 1.96 -1.16Z" fill="#ff866e" stroke-width="1"></path>
|
|
17
|
+
<path d="M50.239999999999995 21.093333333333334a5.826666666666666 5.826666666666666 0 0 1 -3.36 3.1333333333333333l-8 2.6666666666666665 -3.3200000000000003 -7.786666666666666a5.76 5.76 0 0 1 0.12 -4.6A4.52 4.52 0 0 1 38.666666666666664 12a3.5599999999999996 3.5599999999999996 0 0 1 4.226666666666667 2.493333333333333l0.6266666666666666 2.013333333333333 1.9066666666666665 -0.8666666666666667a3.546666666666667 3.546666666666667 0 0 1 4.666666666666666 1.4933333333333334 4.493333333333333 4.493333333333333 0 0 1 0.14666666666666667 3.96Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
18
|
+
<path d="M8.399999999999999 10.666666666666666a5.4399999999999995 5.4399999999999995 0 0 1 7.32 -1.72L18.53333333333333 10.533333333333333l1.2 -2.986666666666667a5.4399999999999995 5.4399999999999995 0 0 1 6.76 -3.28 6.893333333333333 6.893333333333333 0 0 1 4.359999999999999 4.346666666666666 8.893333333333333 8.893333333333333 0 0 1 -0.3866666666666666 7.0266666666666655l-6.0266666666666655 11.493333333333332 -11.933333333333332 -5.1066666666666665a8.879999999999999 8.879999999999999 0 0 1 -4.7333333333333325 -5.199999999999999A6.853333333333333 6.853333333333333 0 0 1 8.399999999999999 10.666666666666666Z" fill="#ff6242" stroke-width="1"></path>
|
|
19
|
+
<path d="M10.493333333333332 16.56a5.4399999999999995 5.4399999999999995 0 0 1 7.32 -1.72l2.813333333333333 1.5599999999999998 1.2 -2.986666666666667a5.4399999999999995 5.4399999999999995 0 0 1 6.76 -3.2933333333333334 6.506666666666666 6.506666666666666 0 0 1 2.7733333333333334 1.7866666666666666 9.333333333333332 9.333333333333332 0 0 0 -0.5066666666666666 -3.2933333333333334 6.893333333333333 6.893333333333333 0 0 0 -4.359999999999999 -4.346666666666666 5.4399999999999995 5.4399999999999995 0 0 0 -6.76 3.28l-1.2 2.986666666666667 -2.813333333333333 -1.5599999999999998A5.4399999999999995 5.4399999999999995 0 0 0 8.399999999999999 10.666666666666666a6.853333333333333 6.853333333333333 0 0 0 -0.6266666666666666 6.133333333333333 9.239999999999998 9.239999999999998 0 0 0 1.6933333333333334 2.92 6.213333333333333 6.213333333333333 0 0 1 1.0266666666666666 -3.16Z" fill="#ff866e" stroke-width="1"></path>
|
|
20
|
+
<path d="M8.399999999999999 10.666666666666666a5.4399999999999995 5.4399999999999995 0 0 1 7.32 -1.72L18.53333333333333 10.533333333333333l1.2 -2.986666666666667a5.4399999999999995 5.4399999999999995 0 0 1 6.76 -3.28 6.893333333333333 6.893333333333333 0 0 1 4.359999999999999 4.346666666666666 8.893333333333333 8.893333333333333 0 0 1 -0.3866666666666666 7.0266666666666655l-6.0266666666666655 11.493333333333332 -11.933333333333332 -5.1066666666666665a8.879999999999999 8.879999999999999 0 0 1 -4.7333333333333325 -5.199999999999999A6.853333333333333 6.853333333333333 0 0 1 8.399999999999999 10.666666666666666Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
21
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Smirking-Face--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Smirking 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="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>
|
|
11
|
+
<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>
|
|
12
|
+
<path d="M41.946666666666665 39.199999999999996a9.333333333333332 9.333333333333332 0 0 1 -12.426666666666666 4.4799999999999995" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M21 29.426666666666666a1.44 1.44 0 1 1 -2.8666666666666663 0c0 -0.6933333333333334 -3.8 -1.4266666666666667 -3.8 -1.4266666666666667h5.24a1.4266666666666667 1.4266666666666667 0 0 1 1.4266666666666667 1.4266666666666667Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="M49 29.426666666666666a1.44 1.44 0 1 1 -2.8666666666666663 0c0 -0.6933333333333334 -3.8 -1.4266666666666667 -3.8 -1.4266666666666667h5.24a1.4266666666666667 1.4266666666666667 0 0 1 1.4266666666666667 1.4266666666666667Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M53.213333333333324 25.893333333333334a9.333333333333332 9.333333333333332 0 0 0 -12.44 -4.4799999999999995" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M10.786666666666665 25.893333333333334a9.333333333333332 9.333333333333332 0 0 1 12.44 -4.4799999999999995" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Sun-With-Face--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Sun With Face Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M16.666666666666664 62a15.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>
|
|
6
|
+
<path d="M14 32a18 18 0 1 0 36 0 18 18 0 1 0 -36 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
7
|
+
<path d="M33.70666666666666 14.08a16.666666666666664 16.666666666666664 0 1 1 -3.413333333333333 0 18 18 0 1 0 3.413333333333333 0Z" fill="#ebcb00" stroke-width="1"></path>
|
|
8
|
+
<path d="M14 32a18 18 0 1 0 36 0 18 18 0 1 0 -36 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
9
|
+
<path d="M34 4a2 2 0 0 0 -4 0v4a2 2 0 0 0 4 0Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M13.613333333333333 10.786666666666665a2 2 0 0 0 -2.8266666666666667 2.8266666666666667l2.8266666666666667 2.8266666666666667a2 2 0 0 0 2.8266666666666667 -2.8266666666666667Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
11
|
+
<path d="M4 30a2 2 0 0 0 0 4h4a2 2 0 0 0 0 -4Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
12
|
+
<path d="M10.786666666666665 50.38666666666666a2 2 0 0 0 2.8266666666666667 2.8266666666666667l2.8266666666666667 -2.8266666666666667a2 2 0 0 0 -2.8266666666666667 -2.8266666666666667Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
13
|
+
<path d="M30 60a2 2 0 0 0 4 0v-4a2 2 0 0 0 -4 0Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="M50.38666666666666 53.213333333333324a2 2 0 0 0 2.8266666666666667 -2.8266666666666667l-2.8266666666666667 -2.8266666666666667a2 2 0 0 0 -2.8266666666666667 2.8266666666666667Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M60 34a2 2 0 0 0 0 -4h-4a2 2 0 0 0 0 4Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M53.213333333333324 13.613333333333333a2 2 0 0 0 -2.8266666666666667 -2.8266666666666667l-2.8266666666666667 2.8266666666666667a2 2 0 0 0 2.8266666666666667 2.8266666666666667Z" fill="#ffe500" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
<path d="M18.666666666666664 36c0 0.7333333333333334 0.8933333333333333 1.3333333333333333 2 1.3333333333333333s2 -0.6 2 -1.3333333333333333 -0.8933333333333333 -1.3333333333333333 -2 -1.3333333333333333 -2 0.6 -2 1.3333333333333333Z" fill="#ffaa54" stroke-width="1"></path>
|
|
18
|
+
<path d="M37.16 39.33333333333333a1.3333333333333333 1.3333333333333333 0 0 1 1.3333333333333333 1.6666666666666665 6.666666666666666 6.666666666666666 0 0 1 -12.906666666666666 0 1.3333333333333333 1.3333333333333333 0 0 1 1.3333333333333333 -1.6666666666666665Z" fill="#ffb0ca" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
19
|
+
<path d="M32 46a6.666666666666666 6.666666666666666 0 0 0 5.253333333333333 -2.5866666666666664A9.786666666666665 9.786666666666665 0 0 0 32 42a9.786666666666665 9.786666666666665 0 0 0 -5.253333333333333 1.4133333333333333A6.666666666666666 6.666666666666666 0 0 0 32 46Z" fill="#ff87af" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
20
|
+
<path d="M20 33.33333333333333a2 2 0 0 1 4 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
21
|
+
<path d="M45.33333333333333 36c0 0.7333333333333334 -0.8933333333333333 1.3333333333333333 -2 1.3333333333333333s-2 -0.6 -2 -1.3333333333333333 0.8933333333333333 -1.3333333333333333 2 -1.3333333333333333 2 0.6 2 1.3333333333333333Z" fill="#ffaa54" stroke-width="1"></path>
|
|
22
|
+
<path d="M44 33.33333333333333a2 2 0 0 0 -4 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
23
|
+
<path d="M26.666666666666664 18a5.333333333333333 1.3333333333333333 0 1 0 10.666666666666666 0 5.333333333333333 1.3333333333333333 0 1 0 -10.666666666666666 0Z" fill="#fff48c" stroke-width="1"></path>
|
|
24
|
+
</svg>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Thumbs-Down-1--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Thumbs Down 1 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="M49.56 25.439999999999998h0.24a3.3999999999999995 3.3999999999999995 0 0 1 0 6.786666666666666h-3.3866666666666667a3.3866666666666667 3.3866666666666667 0 0 1 0 6.773333333333333h-8.16c0.7733333333333332 1.92 1.76 4.96 2.6666666666666665 7.826666666666666a5.586666666666667 5.586666666666667 0 0 1 -3.6933333333333334 6.946666666666666 1.4533333333333334 1.4533333333333334 0 0 1 -1.8133333333333335 -0.9733333333333333c-1.1466666666666665 -3.9066666666666667 -2 -8.866666666666667 -8 -13.333333333333332a24.813333333333333 24.813333333333333 0 0 1 -5.3999999999999995 -5.799999999999999 5.213333333333333 5.213333333333333 0 0 0 -4.253333333333333 -2.253333333333333H13.053333333333331a1.3333333333333333 1.3333333333333333 0 0 1 -1.3333333333333333 -1.3333333333333333V15.253333333333332a1.3333333333333333 1.3333333333333333 0 0 1 1.3333333333333333 -1.3333333333333333h3.3200000000000003c4.373333333333333 -0.09333333333333334 6.266666666666667 -1.7466666666666666 11.719999999999999 -1.7466666666666666h17.96a3 3 0 0 1 0 6h3.5066666666666664a3.6399999999999997 3.6399999999999997 0 0 1 0 7.266666666666667Z" fill="#ffe500" stroke-width="1"></path>
|
|
7
|
+
<path d="M49.56 25.439999999999998h0.24a3.3999999999999995 3.3999999999999995 0 0 1 0 6.786666666666666h-3.3866666666666667a3.3866666666666667 3.3866666666666667 0 0 1 0 6.773333333333333h-8.16c0.7733333333333332 1.92 1.76 4.96 2.6666666666666665 7.826666666666666a5.586666666666667 5.586666666666667 0 0 1 -3.6933333333333334 6.946666666666666 1.4533333333333334 1.4533333333333334 0 0 1 -1.8133333333333335 -0.9733333333333333c-1.1466666666666665 -3.9066666666666667 -2 -8.866666666666667 -8 -13.333333333333332a24.813333333333333 24.813333333333333 0 0 1 -5.3999999999999995 -5.799999999999999 5.213333333333333 5.213333333333333 0 0 0 -4.253333333333333 -2.253333333333333H13.053333333333331a1.3333333333333333 1.3333333333333333 0 0 1 -1.3333333333333333 -1.3333333333333333V15.253333333333332a1.3333333333333333 1.3333333333333333 0 0 1 1.3333333333333333 -1.3333333333333333h3.3200000000000003c4.373333333333333 -0.09333333333333334 6.266666666666667 -1.7466666666666666 11.719999999999999 -1.7466666666666666h17.96a3 3 0 0 1 0 6h3.5066666666666664a3.6399999999999997 3.6399999999999997 0 0 1 0 7.266666666666667Z" fill="#ffe500" stroke-width="1"></path>
|
|
8
|
+
<path d="M13.053333333333331 18.28h3.3200000000000003c4.373333333333333 -0.10666666666666666 6.266666666666667 -1.76 11.719999999999999 -1.76h17.96a3 3 0 0 1 2.0666666666666664 0.8266666666666667 3 3 0 0 0 -2.0666666666666664 -5.173333333333333H28.093333333333334c-5.453333333333333 0 -7.346666666666666 1.6533333333333333 -11.719999999999999 1.7466666666666666H13.053333333333331a1.3333333333333333 1.3333333333333333 0 0 0 -1.3333333333333333 1.3333333333333333v4.359999999999999a1.3333333333333333 1.3333333333333333 0 0 1 1.3333333333333333 -1.3333333333333333Z" fill="#fff48c" stroke-width="1"></path>
|
|
9
|
+
<path d="m37.82666666666667 31.24 -0.07999999999999999 -0.14666666666666667a15.186666666666667 15.186666666666667 0 0 0 -11.586666666666666 -8.293333333333333h0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="m33.85333333333333 12.173333333333334 15.2 0 0 6 -15.2 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
11
|
+
<path d="M36.85333333333333 15.173333333333334h9.2a3.0133333333333328 3.0133333333333328 0 0 1 2.6666666666666665 1.4933333333333334 3 3 0 0 0 -2.6666666666666665 -4.493333333333333h-9.2a3 3 0 0 0 -2.5999999999999996 4.493333333333333 3.0133333333333328 3.0133333333333328 0 0 1 2.5999999999999996 -1.4933333333333334Z" fill="#fff48c" stroke-width="1"></path>
|
|
12
|
+
<path d="m32.946666666666665 18.173333333333332 20.24 0 0 7.266666666666667 -20.24 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
13
|
+
<path d="m32.946666666666665 25.439999999999998 20.24 0 0 6.786666666666666 -20.24 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
14
|
+
<path d="m33.85333333333333 32.22666666666667 15.946666666666667 0 0 6.786666666666666 -15.946666666666667 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
15
|
+
<path d="m33.85333333333333 12.173333333333334 15.2 0 0 6 -15.2 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="m32.946666666666665 18.173333333333332 20.24 0 0 7.266666666666667 -20.24 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
<path d="m32.946666666666665 25.439999999999998 20.24 0 0 6.786666666666666 -20.24 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
18
|
+
<path d="m33.85333333333333 32.22666666666667 15.946666666666667 0 0 6.786666666666666 -15.946666666666667 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
19
|
+
<path d="M49.56 25.439999999999998h0.24a3.3999999999999995 3.3999999999999995 0 0 1 0 6.786666666666666h-3.3866666666666667a3.3866666666666667 3.3866666666666667 0 0 1 0 6.773333333333333h-8.16c0.7733333333333332 1.92 1.76 4.96 2.6666666666666665 7.826666666666666a5.586666666666667 5.586666666666667 0 0 1 -3.6933333333333334 6.946666666666666 1.4533333333333334 1.4533333333333334 0 0 1 -1.8133333333333335 -0.9733333333333333c-1.1466666666666665 -3.9066666666666667 -2 -8.866666666666667 -8 -13.333333333333332a24.813333333333333 24.813333333333333 0 0 1 -5.3999999999999995 -5.799999999999999 5.213333333333333 5.213333333333333 0 0 0 -4.253333333333333 -2.253333333333333H13.053333333333331a1.3333333333333333 1.3333333333333333 0 0 1 -1.3333333333333333 -1.3333333333333333V15.253333333333332a1.3333333333333333 1.3333333333333333 0 0 1 1.3333333333333333 -1.3333333333333333h3.3200000000000003c4.373333333333333 -0.09333333333333334 6.266666666666667 -1.7466666666666666 11.719999999999999 -1.7466666666666666h17.96a3 3 0 0 1 0 6h3.5066666666666664a3.6399999999999997 3.6399999999999997 0 0 1 0 7.266666666666667Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
20
|
+
</svg>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Thumbs-Up-1--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Thumbs Up 1 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="M49.56 40.56h0.24a3.3866666666666667 3.3866666666666667 0 1 0 0 -6.773333333333333h-3.3866666666666667a3.3999999999999995 3.3999999999999995 0 0 0 0 -6.786666666666666h-8.16c0.7733333333333332 -1.92 1.76 -4.946666666666666 2.6666666666666665 -7.826666666666666a5.573333333333332 5.573333333333332 0 0 0 -3.6933333333333334 -6.933333333333334 1.44 1.44 0 0 0 -1.8133333333333335 0.96c-1.1466666666666665 3.92 -2 8.866666666666667 -8 13.333333333333332a24.306666666666665 24.306666666666665 0 0 0 -5.333333333333333 5.786666666666666 5.333333333333333 5.333333333333333 0 0 1 -4.266666666666667 2.2666666666666666H13.053333333333331a1.3333333333333333 1.3333333333333333 0 0 0 -1.3333333333333333 1.3333333333333333v14.826666666666664a1.3333333333333333 1.3333333333333333 0 0 0 1.3333333333333333 1.3333333333333333h3.3200000000000003c4.373333333333333 0.10666666666666666 6.266666666666667 1.7466666666666666 11.719999999999999 1.7466666666666666h17.96a3 3 0 0 0 0 -6h3.5066666666666664a3.6399999999999997 3.6399999999999997 0 0 0 0 -7.266666666666667Z" fill="#ffe500" stroke-width="1"></path>
|
|
7
|
+
<path d="M19.119999999999997 38.17333333333333a5.24 5.24 0 0 0 4.253333333333333 -2.2666666666666666 24 24 0 0 1 5.333333333333333 -5.786666666666666c6 -4.426666666666666 6.866666666666667 -9.333333333333332 8 -13.333333333333332a1.44 1.44 0 0 1 1.8 -0.96 5.453333333333333 5.453333333333333 0 0 1 2.5466666666666664 1.64 5.586666666666667 5.586666666666667 0 0 0 -3.9333333333333336 -5.333333333333333 1.44 1.44 0 0 0 -1.8133333333333335 0.96c-1.1466666666666665 3.92 -2 8.866666666666667 -8 13.333333333333332a24.306666666666665 24.306666666666665 0 0 0 -5.333333333333333 5.786666666666666 5.333333333333333 5.333333333333333 0 0 1 -4.266666666666667 2.2666666666666666H13.053333333333331a1.3333333333333333 1.3333333333333333 0 0 0 -1.3333333333333333 1.3333333333333333v2.293333333333333Z" fill="#fff48c" stroke-width="1"></path>
|
|
8
|
+
<path d="m37.82666666666667 34.76 -0.07999999999999999 0.15999999999999998a15.213333333333333 15.213333333333333 0 0 1 -11.573333333333332 8.293333333333333h0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
9
|
+
<path d="m33.85333333333333 47.82666666666666 15.2 0 0 6 -15.2 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
10
|
+
<path d="m32.946666666666665 40.56 20.24 0 0 7.266666666666667 -20.24 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
11
|
+
<path d="m32.946666666666665 33.78666666666666 20.24 0 0 6.786666666666666 -20.24 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
12
|
+
<path d="m33.85333333333333 27 15.946666666666667 0 0 6.786666666666666 -15.946666666666667 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
13
|
+
<path d="M37.239999999999995 29.786666666666665h9.173333333333332a3.413333333333333 3.413333333333333 0 0 1 3.093333333333333 2 3.466666666666667 3.466666666666667 0 0 0 0.29333333333333333 -1.4 3.3866666666666667 3.3866666666666667 0 0 0 -3.3866666666666667 -3.3866666666666667h-9.173333333333332a3.3866666666666667 3.3866666666666667 0 0 0 -3.3866666666666667 3.3866666666666667 3.466666666666667 3.466666666666667 0 0 0 0.29333333333333333 1.4 3.413333333333333 3.413333333333333 0 0 1 3.093333333333333 -2Z" fill="#fff48c" stroke-width="1"></path>
|
|
14
|
+
<path d="m33.85333333333333 47.82666666666666 15.2 0 0 6 -15.2 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="m32.946666666666665 40.56 20.24 0 0 7.266666666666667 -20.24 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="m32.946666666666665 33.78666666666666 20.24 0 0 6.786666666666666 -20.24 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
<path d="m33.85333333333333 27 15.946666666666667 0 0 6.786666666666666 -15.946666666666667 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
18
|
+
<path d="M49.56 40.56h0.24a3.3866666666666667 3.3866666666666667 0 1 0 0 -6.773333333333333h-3.3866666666666667a3.3999999999999995 3.3999999999999995 0 0 0 0 -6.786666666666666h-8.16c0.7733333333333332 -1.92 1.76 -4.946666666666666 2.6666666666666665 -7.826666666666666a5.573333333333332 5.573333333333332 0 0 0 -3.6933333333333334 -6.933333333333334 1.44 1.44 0 0 0 -1.8133333333333335 0.96c-1.1466666666666665 3.92 -2 8.866666666666667 -8 13.333333333333332a24.306666666666665 24.306666666666665 0 0 0 -5.333333333333333 5.786666666666666 5.333333333333333 5.333333333333333 0 0 1 -4.266666666666667 2.2666666666666666H13.053333333333331a1.3333333333333333 1.3333333333333333 0 0 0 -1.3333333333333333 1.3333333333333333v14.826666666666664a1.3333333333333333 1.3333333333333333 0 0 0 1.3333333333333333 1.3333333333333333h3.3200000000000003c4.373333333333333 0.10666666666666666 6.266666666666667 1.7466666666666666 11.719999999999999 1.7466666666666666h17.96a3 3 0 0 0 0 -6h3.5066666666666664a3.6399999999999997 3.6399999999999997 0 0 0 0 -7.266666666666667Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
19
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" id="Winking-Face--Streamline-Emoji" height="64" width="64">
|
|
2
|
+
<desc>
|
|
3
|
+
Winking Face Streamline Emoji: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M0.72 27.173333333333332a25.173333333333332 25.173333333333332 0 1 0 50.346666666666664 0 25.173333333333332 25.173333333333332 0 1 0 -50.346666666666664 0Z" fill="#ffe500" stroke-width="1"></path>
|
|
6
|
+
<path d="M25.893333333333334 2A25.173333333333332 25.173333333333332 0 1 0 51.06666666666666 27.173333333333332 25.173333333333332 25.173333333333332 0 0 0 25.893333333333334 2Zm0 46.56A22.973333333333333 22.973333333333333 0 1 1 48.85333333333333 25.599999999999998a22.973333333333333 22.973333333333333 0 0 1 -22.959999999999997 22.959999999999997Z" fill="#ebcb00" stroke-width="1"></path>
|
|
7
|
+
<path d="M18.346666666666664 7.04a7.546666666666667 1.893333333333333 0 1 0 15.093333333333334 0 7.546666666666667 1.893333333333333 0 1 0 -15.093333333333334 0Z" fill="#fff48c" stroke-width="1"></path>
|
|
8
|
+
<path d="M5.76 59.44a20.133333333333333 1.893333333333333 0 1 0 40.266666666666666 0 20.133333333333333 1.893333333333333 0 1 0 -40.266666666666666 0Z" fill="#45413c" opacity=".15" stroke-width="1"></path>
|
|
9
|
+
<path d="M0.72 27.173333333333332a25.173333333333332 25.173333333333332 0 1 0 50.346666666666664 0 25.173333333333332 25.173333333333332 0 1 0 -50.346666666666664 0Z" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
10
|
+
<path d="M32.18666666666667 37.21333333333333a11.333333333333332 11.333333333333332 0 0 1 -12.586666666666666 0" fill="none" stroke="#45413c" stroke-linecap="round" stroke-width="1"></path>
|
|
11
|
+
<path d="M44.14666666666666 33.46666666666667c0 1.04 -1.4133333333333333 1.88 -3.1466666666666665 1.88s-3.1466666666666665 -0.84 -3.1466666666666665 -1.88 1.4 -1.893333333333333 3.1466666666666665 -1.893333333333333 3.1466666666666665 0.84 3.1466666666666665 1.893333333333333Z" fill="#ffaa54" stroke-width="1"></path>
|
|
12
|
+
<path d="M7.640000000000001 33.46666666666667c0 1.04 1.4133333333333333 1.88 3.1466666666666665 1.88s3.1466666666666665 -0.84 3.1466666666666665 -1.88 -1.3333333333333333 -1.893333333333333 -3.1466666666666665 -1.893333333333333 -3.1466666666666665 0.84 -3.1466666666666665 1.893333333333333Z" fill="#ffaa54" stroke-width="1"></path>
|
|
13
|
+
<path d="m39.733333333333334 25.28 -2.5199999999999996 3.1466666666666665 5.666666666666666 -1.2533333333333332" fill="none" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
14
|
+
<path d="M12.68 27.173333333333332a1.2666666666666666 1.2666666666666666 0 0 1 -2.5199999999999996 0 1.2666666666666666 1.2666666666666666 0 1 1 2.5199999999999996 0Z" fill="#45413c" stroke="#45413c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"></path>
|
|
15
|
+
<path d="M62.986666666666665 27.746666666666663a0.7866666666666666 0.7866666666666666 0 0 1 -0.36 0.5733333333333333 0.7333333333333334 0.7333333333333334 0 0 1 -0.6666666666666666 0l-6.52 -2.5466666666666664a0.7466666666666667 0.7466666666666667 0 0 1 0.18666666666666668 -1.4533333333333334l6.853333333333333 -0.8133333333333332a0.7599999999999999 0.7599999999999999 0 0 1 0.6266666666666666 0.21333333333333332 0.7999999999999999 0.7999999999999999 0 0 1 0.22666666666666668 0.6133333333333333Z" fill="#ffffff" stroke="#45413c" stroke-linejoin="round" stroke-width="1"></path>
|
|
16
|
+
<path d="M62.120000000000005 14.066666666666666a0.7333333333333334 0.7333333333333334 0 0 0 -0.4666666666666666 -0.48 0.7733333333333332 0.7733333333333332 0 0 0 -0.6799999999999999 0.07999999999999999l-5.8133333333333335 3.88a0.7599999999999999 0.7599999999999999 0 0 0 0.4933333333333333 1.3333333333333333l6.866666666666667 -0.6799999999999999a0.7599999999999999 0.7599999999999999 0 0 0 0.5733333333333333 -0.3333333333333333 0.8133333333333332 0.8133333333333332 0 0 0 0.07999999999999999 -0.6533333333333333Z" fill="#ffffff" stroke="#45413c" stroke-linejoin="round" stroke-width="1"></path>
|
|
17
|
+
<path d="M54.373333333333335 5.333333333333333a0.7466666666666667 0.7466666666666667 0 0 0 -0.6666666666666666 -0.09333333333333334 0.7599999999999999 0.7599999999999999 0 0 0 -0.48 0.4666666666666666l-2.293333333333333 6.666666666666666a0.7599999999999999 0.7599999999999999 0 0 0 0.30666666666666664 0.88 0.7466666666666667 0.7466666666666667 0 0 0 0.9333333333333332 -0.07999999999999999l5.053333333333333 -4.693333333333333a0.7066666666666667 0.7066666666666667 0 0 0 0.24 -0.6133333333333333 0.72 0.72 0 0 0 -0.31999999999999995 -0.5599999999999999Z" fill="#ffffff" stroke="#45413c" stroke-linejoin="round" stroke-width="1"></path>
|
|
18
|
+
</svg>
|