PraisonAI 2.0.61__cp313-cp313-manylinux_2_39_x86_64.whl
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.
Potentially problematic release.
This version of PraisonAI might be problematic. Click here for more details.
- praisonai/__init__.py +6 -0
- praisonai/__main__.py +10 -0
- praisonai/agents_generator.py +648 -0
- praisonai/api/call.py +292 -0
- praisonai/auto.py +238 -0
- praisonai/chainlit_ui.py +304 -0
- praisonai/cli.py +518 -0
- praisonai/deploy.py +138 -0
- praisonai/inbuilt_tools/__init__.py +24 -0
- praisonai/inbuilt_tools/autogen_tools.py +117 -0
- praisonai/inc/__init__.py +2 -0
- praisonai/inc/config.py +96 -0
- praisonai/inc/models.py +128 -0
- praisonai/public/android-chrome-192x192.png +0 -0
- praisonai/public/android-chrome-512x512.png +0 -0
- praisonai/public/apple-touch-icon.png +0 -0
- praisonai/public/fantasy.svg +3 -0
- praisonai/public/favicon-16x16.png +0 -0
- praisonai/public/favicon-32x32.png +0 -0
- praisonai/public/favicon.ico +0 -0
- praisonai/public/game.svg +3 -0
- praisonai/public/logo_dark.png +0 -0
- praisonai/public/logo_light.png +0 -0
- praisonai/public/movie.svg +3 -0
- praisonai/public/praison-ai-agents-architecture-dark.png +0 -0
- praisonai/public/praison-ai-agents-architecture.png +0 -0
- praisonai/public/thriller.svg +3 -0
- praisonai/setup/__init__.py +1 -0
- praisonai/setup/build.py +21 -0
- praisonai/setup/config.yaml +60 -0
- praisonai/setup/post_install.py +23 -0
- praisonai/setup/setup_conda_env.py +25 -0
- praisonai/setup/setup_conda_env.sh +72 -0
- praisonai/setup.py +16 -0
- praisonai/test.py +105 -0
- praisonai/train.py +276 -0
- praisonai/ui/README.md +21 -0
- praisonai/ui/agents.py +822 -0
- praisonai/ui/callbacks.py +57 -0
- praisonai/ui/chat.py +387 -0
- praisonai/ui/code.py +440 -0
- praisonai/ui/colab.py +474 -0
- praisonai/ui/colab_chainlit.py +81 -0
- praisonai/ui/components/aicoder.py +269 -0
- praisonai/ui/config/.chainlit/config.toml +120 -0
- praisonai/ui/config/.chainlit/translations/bn.json +231 -0
- praisonai/ui/config/.chainlit/translations/en-US.json +229 -0
- praisonai/ui/config/.chainlit/translations/gu.json +231 -0
- praisonai/ui/config/.chainlit/translations/he-IL.json +231 -0
- praisonai/ui/config/.chainlit/translations/hi.json +231 -0
- praisonai/ui/config/.chainlit/translations/kn.json +231 -0
- praisonai/ui/config/.chainlit/translations/ml.json +231 -0
- praisonai/ui/config/.chainlit/translations/mr.json +231 -0
- praisonai/ui/config/.chainlit/translations/ta.json +231 -0
- praisonai/ui/config/.chainlit/translations/te.json +231 -0
- praisonai/ui/config/.chainlit/translations/zh-CN.json +229 -0
- praisonai/ui/config/chainlit.md +1 -0
- praisonai/ui/config/translations/bn.json +231 -0
- praisonai/ui/config/translations/en-US.json +229 -0
- praisonai/ui/config/translations/gu.json +231 -0
- praisonai/ui/config/translations/he-IL.json +231 -0
- praisonai/ui/config/translations/hi.json +231 -0
- praisonai/ui/config/translations/kn.json +231 -0
- praisonai/ui/config/translations/ml.json +231 -0
- praisonai/ui/config/translations/mr.json +231 -0
- praisonai/ui/config/translations/ta.json +231 -0
- praisonai/ui/config/translations/te.json +231 -0
- praisonai/ui/config/translations/zh-CN.json +229 -0
- praisonai/ui/context.py +283 -0
- praisonai/ui/db.py +291 -0
- praisonai/ui/public/fantasy.svg +3 -0
- praisonai/ui/public/game.svg +3 -0
- praisonai/ui/public/logo_dark.png +0 -0
- praisonai/ui/public/logo_light.png +0 -0
- praisonai/ui/public/movie.svg +3 -0
- praisonai/ui/public/praison.css +3 -0
- praisonai/ui/public/thriller.svg +3 -0
- praisonai/ui/realtime.py +476 -0
- praisonai/ui/realtimeclient/__init__.py +653 -0
- praisonai/ui/realtimeclient/realtimedocs.txt +1484 -0
- praisonai/ui/realtimeclient/tools.py +236 -0
- praisonai/ui/sql_alchemy.py +707 -0
- praisonai/ui/tools.md +133 -0
- praisonai/version.py +1 -0
- praisonai-2.0.61.dist-info/LICENSE +20 -0
- praisonai-2.0.61.dist-info/METADATA +679 -0
- praisonai-2.0.61.dist-info/RECORD +89 -0
- praisonai-2.0.61.dist-info/WHEEL +4 -0
- praisonai-2.0.61.dist-info/entry_points.txt +5 -0
praisonai/ui/db.py
ADDED
|
@@ -0,0 +1,291 @@
|
|
|
1
|
+
import os
|
|
2
|
+
import sqlite3
|
|
3
|
+
import asyncio
|
|
4
|
+
import shutil
|
|
5
|
+
import logging
|
|
6
|
+
from sqlalchemy import text
|
|
7
|
+
from sqlalchemy.ext.asyncio import create_async_engine, AsyncSession
|
|
8
|
+
from sqlalchemy.orm import sessionmaker
|
|
9
|
+
from sql_alchemy import SQLAlchemyDataLayer
|
|
10
|
+
import chainlit.data as cl_data
|
|
11
|
+
from chainlit.types import ThreadDict
|
|
12
|
+
|
|
13
|
+
def ensure_directories():
|
|
14
|
+
"""Ensure required directories exist"""
|
|
15
|
+
if "CHAINLIT_APP_ROOT" not in os.environ:
|
|
16
|
+
chainlit_root = os.path.join(os.path.expanduser("~"), ".praison")
|
|
17
|
+
os.environ["CHAINLIT_APP_ROOT"] = chainlit_root
|
|
18
|
+
else:
|
|
19
|
+
chainlit_root = os.environ["CHAINLIT_APP_ROOT"]
|
|
20
|
+
|
|
21
|
+
os.makedirs(chainlit_root, exist_ok=True)
|
|
22
|
+
os.makedirs(os.path.join(chainlit_root, ".files"), exist_ok=True)
|
|
23
|
+
|
|
24
|
+
# Copy public folder and chainlit.md if they don't exist
|
|
25
|
+
public_folder = os.path.join(os.path.dirname(__file__), "public")
|
|
26
|
+
config_folder = os.path.join(os.path.dirname(__file__), "config")
|
|
27
|
+
|
|
28
|
+
# Copy public folder
|
|
29
|
+
if not os.path.exists(os.path.join(chainlit_root, "public")):
|
|
30
|
+
if os.path.exists(public_folder):
|
|
31
|
+
shutil.copytree(public_folder, os.path.join(chainlit_root, "public"), dirs_exist_ok=True)
|
|
32
|
+
logging.info("Public folder copied successfully!")
|
|
33
|
+
else:
|
|
34
|
+
logging.info("Public folder not found in the package.")
|
|
35
|
+
|
|
36
|
+
# Copy all files from config folder to root if translations doesn't exist
|
|
37
|
+
if not os.path.exists(os.path.join(chainlit_root, "translations")):
|
|
38
|
+
os.makedirs(os.path.join(chainlit_root, "translations"), exist_ok=True)
|
|
39
|
+
|
|
40
|
+
if os.path.exists(config_folder):
|
|
41
|
+
for item in os.listdir(config_folder):
|
|
42
|
+
src_path = os.path.join(config_folder, item)
|
|
43
|
+
dst_path = os.path.join(chainlit_root, item)
|
|
44
|
+
if os.path.isfile(src_path):
|
|
45
|
+
shutil.copy2(src_path, dst_path)
|
|
46
|
+
logging.info(f"File {item} copied to root successfully!")
|
|
47
|
+
elif os.path.isdir(src_path):
|
|
48
|
+
if os.path.exists(dst_path):
|
|
49
|
+
shutil.rmtree(dst_path)
|
|
50
|
+
shutil.copytree(src_path, dst_path)
|
|
51
|
+
logging.info(f"Directory {item} copied to root successfully!")
|
|
52
|
+
else:
|
|
53
|
+
logging.info("Config folder not found in the package.")
|
|
54
|
+
|
|
55
|
+
# Create directories at module import time
|
|
56
|
+
ensure_directories()
|
|
57
|
+
|
|
58
|
+
class DatabaseManager(SQLAlchemyDataLayer):
|
|
59
|
+
def __init__(self):
|
|
60
|
+
self.database_url = os.getenv("DATABASE_URL")
|
|
61
|
+
supabase_url = os.getenv("SUPABASE_DATABASE_URL")
|
|
62
|
+
if supabase_url:
|
|
63
|
+
self.database_url = supabase_url
|
|
64
|
+
|
|
65
|
+
if self.database_url:
|
|
66
|
+
self.conninfo = self.database_url
|
|
67
|
+
else:
|
|
68
|
+
chainlit_root = os.environ["CHAINLIT_APP_ROOT"] # Now using CHAINLIT_APP_ROOT
|
|
69
|
+
self.db_path = os.path.join(chainlit_root, "database.sqlite")
|
|
70
|
+
self.conninfo = f"sqlite+aiosqlite:///{self.db_path}"
|
|
71
|
+
|
|
72
|
+
# Initialize SQLAlchemyDataLayer with the connection info
|
|
73
|
+
super().__init__(conninfo=self.conninfo)
|
|
74
|
+
|
|
75
|
+
async def create_schema_async(self):
|
|
76
|
+
"""Create the database schema for PostgreSQL"""
|
|
77
|
+
if not self.database_url:
|
|
78
|
+
return
|
|
79
|
+
engine = create_async_engine(self.database_url, echo=False)
|
|
80
|
+
async with engine.begin() as conn:
|
|
81
|
+
await conn.execute(text('''
|
|
82
|
+
CREATE TABLE IF NOT EXISTS users (
|
|
83
|
+
"id" TEXT PRIMARY KEY,
|
|
84
|
+
"identifier" TEXT NOT NULL UNIQUE,
|
|
85
|
+
"meta" TEXT NOT NULL DEFAULT '{}',
|
|
86
|
+
"createdAt" TEXT
|
|
87
|
+
);
|
|
88
|
+
'''))
|
|
89
|
+
await conn.execute(text('''
|
|
90
|
+
CREATE TABLE IF NOT EXISTS threads (
|
|
91
|
+
"id" TEXT PRIMARY KEY,
|
|
92
|
+
"createdAt" TEXT,
|
|
93
|
+
"name" TEXT,
|
|
94
|
+
"userId" TEXT,
|
|
95
|
+
"userIdentifier" TEXT,
|
|
96
|
+
"tags" TEXT DEFAULT '[]',
|
|
97
|
+
"meta" TEXT NOT NULL DEFAULT '{}',
|
|
98
|
+
FOREIGN KEY ("userId") REFERENCES users("id") ON DELETE CASCADE
|
|
99
|
+
);
|
|
100
|
+
'''))
|
|
101
|
+
await conn.execute(text('''
|
|
102
|
+
CREATE TABLE IF NOT EXISTS steps (
|
|
103
|
+
"id" TEXT PRIMARY KEY,
|
|
104
|
+
"name" TEXT NOT NULL,
|
|
105
|
+
"type" TEXT NOT NULL,
|
|
106
|
+
"threadId" TEXT NOT NULL,
|
|
107
|
+
"parentId" TEXT,
|
|
108
|
+
"disableFeedback" BOOLEAN NOT NULL DEFAULT FALSE,
|
|
109
|
+
"streaming" BOOLEAN NOT NULL DEFAULT FALSE,
|
|
110
|
+
"waitForAnswer" BOOLEAN DEFAULT FALSE,
|
|
111
|
+
"isError" BOOLEAN NOT NULL DEFAULT FALSE,
|
|
112
|
+
"meta" TEXT DEFAULT '{}',
|
|
113
|
+
"tags" TEXT DEFAULT '[]',
|
|
114
|
+
"input" TEXT,
|
|
115
|
+
"output" TEXT,
|
|
116
|
+
"createdAt" TEXT,
|
|
117
|
+
"startTime" TEXT,
|
|
118
|
+
"endTime" TEXT,
|
|
119
|
+
"generation" TEXT,
|
|
120
|
+
"showInput" TEXT,
|
|
121
|
+
"language" TEXT,
|
|
122
|
+
"indent" INT,
|
|
123
|
+
FOREIGN KEY ("threadId") REFERENCES threads("id") ON DELETE CASCADE
|
|
124
|
+
);
|
|
125
|
+
'''))
|
|
126
|
+
await conn.execute(text('''
|
|
127
|
+
CREATE TABLE IF NOT EXISTS elements (
|
|
128
|
+
"id" TEXT PRIMARY KEY,
|
|
129
|
+
"threadId" TEXT,
|
|
130
|
+
"type" TEXT,
|
|
131
|
+
"url" TEXT,
|
|
132
|
+
"chainlitKey" TEXT,
|
|
133
|
+
"name" TEXT NOT NULL,
|
|
134
|
+
"display" TEXT,
|
|
135
|
+
"objectKey" TEXT,
|
|
136
|
+
"size" TEXT,
|
|
137
|
+
"page" INT,
|
|
138
|
+
"language" TEXT,
|
|
139
|
+
"forId" TEXT,
|
|
140
|
+
"mime" TEXT,
|
|
141
|
+
FOREIGN KEY ("threadId") REFERENCES threads("id") ON DELETE CASCADE
|
|
142
|
+
);
|
|
143
|
+
'''))
|
|
144
|
+
await conn.execute(text('''
|
|
145
|
+
CREATE TABLE IF NOT EXISTS feedbacks (
|
|
146
|
+
"id" TEXT PRIMARY KEY,
|
|
147
|
+
"forId" TEXT NOT NULL,
|
|
148
|
+
"value" INT NOT NULL,
|
|
149
|
+
"threadId" TEXT,
|
|
150
|
+
"comment" TEXT
|
|
151
|
+
);
|
|
152
|
+
'''))
|
|
153
|
+
await conn.execute(text('''
|
|
154
|
+
CREATE TABLE IF NOT EXISTS settings (
|
|
155
|
+
"id" SERIAL PRIMARY KEY,
|
|
156
|
+
"key" TEXT UNIQUE,
|
|
157
|
+
"value" TEXT
|
|
158
|
+
);
|
|
159
|
+
'''))
|
|
160
|
+
await engine.dispose()
|
|
161
|
+
|
|
162
|
+
def create_schema_sqlite(self):
|
|
163
|
+
"""Create the database schema for SQLite"""
|
|
164
|
+
chainlit_root = os.environ["CHAINLIT_APP_ROOT"] # Now using CHAINLIT_APP_ROOT
|
|
165
|
+
self.db_path = os.path.join(chainlit_root, "database.sqlite")
|
|
166
|
+
conn = sqlite3.connect(self.db_path)
|
|
167
|
+
cursor = conn.cursor()
|
|
168
|
+
cursor.execute('''
|
|
169
|
+
CREATE TABLE IF NOT EXISTS users (
|
|
170
|
+
id TEXT PRIMARY KEY,
|
|
171
|
+
identifier TEXT NOT NULL UNIQUE,
|
|
172
|
+
meta TEXT NOT NULL DEFAULT '{}',
|
|
173
|
+
createdAt TEXT
|
|
174
|
+
);
|
|
175
|
+
''')
|
|
176
|
+
cursor.execute('''
|
|
177
|
+
CREATE TABLE IF NOT EXISTS threads (
|
|
178
|
+
id TEXT PRIMARY KEY,
|
|
179
|
+
createdAt TEXT,
|
|
180
|
+
name TEXT,
|
|
181
|
+
userId TEXT,
|
|
182
|
+
userIdentifier TEXT,
|
|
183
|
+
tags TEXT DEFAULT '[]',
|
|
184
|
+
meta TEXT NOT NULL DEFAULT '{}',
|
|
185
|
+
FOREIGN KEY (userId) REFERENCES users(id) ON DELETE CASCADE
|
|
186
|
+
);
|
|
187
|
+
''')
|
|
188
|
+
cursor.execute('''
|
|
189
|
+
CREATE TABLE IF NOT EXISTS steps (
|
|
190
|
+
id TEXT PRIMARY KEY,
|
|
191
|
+
name TEXT NOT NULL,
|
|
192
|
+
type TEXT NOT NULL,
|
|
193
|
+
threadId TEXT NOT NULL,
|
|
194
|
+
parentId TEXT,
|
|
195
|
+
disableFeedback BOOLEAN NOT NULL DEFAULT 0,
|
|
196
|
+
streaming BOOLEAN NOT NULL DEFAULT 0,
|
|
197
|
+
waitForAnswer BOOLEAN DEFAULT 0,
|
|
198
|
+
isError BOOLEAN NOT NULL DEFAULT 0,
|
|
199
|
+
meta TEXT DEFAULT '{}',
|
|
200
|
+
tags TEXT DEFAULT '[]',
|
|
201
|
+
input TEXT,
|
|
202
|
+
output TEXT,
|
|
203
|
+
createdAt TEXT,
|
|
204
|
+
startTime TEXT,
|
|
205
|
+
endTime TEXT,
|
|
206
|
+
generation TEXT,
|
|
207
|
+
showInput TEXT,
|
|
208
|
+
language TEXT,
|
|
209
|
+
indent INT,
|
|
210
|
+
FOREIGN KEY (threadId) REFERENCES threads(id) ON DELETE CASCADE
|
|
211
|
+
);
|
|
212
|
+
''')
|
|
213
|
+
cursor.execute('''
|
|
214
|
+
CREATE TABLE IF NOT EXISTS elements (
|
|
215
|
+
id TEXT PRIMARY KEY,
|
|
216
|
+
threadId TEXT,
|
|
217
|
+
type TEXT,
|
|
218
|
+
url TEXT,
|
|
219
|
+
chainlitKey TEXT,
|
|
220
|
+
name TEXT NOT NULL,
|
|
221
|
+
display TEXT,
|
|
222
|
+
objectKey TEXT,
|
|
223
|
+
size TEXT,
|
|
224
|
+
page INT,
|
|
225
|
+
language TEXT,
|
|
226
|
+
forId TEXT,
|
|
227
|
+
mime TEXT,
|
|
228
|
+
FOREIGN KEY (threadId) REFERENCES threads(id) ON DELETE CASCADE
|
|
229
|
+
);
|
|
230
|
+
''')
|
|
231
|
+
cursor.execute('''
|
|
232
|
+
CREATE TABLE IF NOT EXISTS feedbacks (
|
|
233
|
+
id TEXT PRIMARY KEY,
|
|
234
|
+
forId TEXT NOT NULL,
|
|
235
|
+
value INT NOT NULL,
|
|
236
|
+
threadId TEXT,
|
|
237
|
+
comment TEXT
|
|
238
|
+
);
|
|
239
|
+
''')
|
|
240
|
+
cursor.execute('''
|
|
241
|
+
CREATE TABLE IF NOT EXISTS settings (
|
|
242
|
+
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
243
|
+
key TEXT UNIQUE,
|
|
244
|
+
value TEXT
|
|
245
|
+
);
|
|
246
|
+
''')
|
|
247
|
+
conn.commit()
|
|
248
|
+
conn.close()
|
|
249
|
+
|
|
250
|
+
def initialize(self):
|
|
251
|
+
"""Initialize the database with schema based on the configuration"""
|
|
252
|
+
if self.database_url:
|
|
253
|
+
asyncio.run(self.create_schema_async())
|
|
254
|
+
else:
|
|
255
|
+
self.create_schema_sqlite()
|
|
256
|
+
|
|
257
|
+
async def save_setting(self, key: str, value: str):
|
|
258
|
+
"""Save a setting to the database"""
|
|
259
|
+
if self.database_url:
|
|
260
|
+
async with self.engine.begin() as conn:
|
|
261
|
+
await conn.execute(text("""
|
|
262
|
+
INSERT INTO settings ("key", "value") VALUES (:key, :value)
|
|
263
|
+
ON CONFLICT ("key") DO UPDATE SET "value" = EXCLUDED."value"
|
|
264
|
+
"""), {"key": key, "value": value})
|
|
265
|
+
else:
|
|
266
|
+
conn = sqlite3.connect(self.db_path)
|
|
267
|
+
cursor = conn.cursor()
|
|
268
|
+
cursor.execute(
|
|
269
|
+
"""
|
|
270
|
+
INSERT OR REPLACE INTO settings (id, key, value)
|
|
271
|
+
VALUES ((SELECT id FROM settings WHERE key = ?), ?, ?)
|
|
272
|
+
""",
|
|
273
|
+
(key, key, value),
|
|
274
|
+
)
|
|
275
|
+
conn.commit()
|
|
276
|
+
conn.close()
|
|
277
|
+
|
|
278
|
+
async def load_setting(self, key: str) -> str:
|
|
279
|
+
"""Load a setting from the database"""
|
|
280
|
+
if self.database_url:
|
|
281
|
+
async with self.engine.connect() as conn:
|
|
282
|
+
result = await conn.execute(text('SELECT "value" FROM settings WHERE "key" = :key'), {"key": key})
|
|
283
|
+
row = result.fetchone()
|
|
284
|
+
return row[0] if row else None
|
|
285
|
+
else:
|
|
286
|
+
conn = sqlite3.connect(self.db_path)
|
|
287
|
+
cursor = conn.cursor()
|
|
288
|
+
cursor.execute('SELECT value FROM settings WHERE key = ?', (key,))
|
|
289
|
+
result = cursor.fetchone()
|
|
290
|
+
conn.close()
|
|
291
|
+
return result[0] if result else None
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
3
|
+
<svg width="800px" height="800px" viewBox="0 0 1024 1024" class="icon" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M840.5 798.2L662.3 599.5l-151 173.7-173.7-173.7-167.7 201c-21 30.4 0.9 71.8 37.9 71.6l594.7-3.3c36.2-0.1 57.8-40.3 38-70.6z" fill="#FFB89A" /><path d="M741.6 647.3l-52.3-47.7c-12.2-11.2-31.2-10.3-42.4 1.9s-10.3 31.2 1.9 42.4l52.3 47.7c5.8 5.3 13 7.8 20.2 7.8 8.1 0 16.2-3.3 22.2-9.8 11.2-12.1 10.3-31.1-1.9-42.3zM631.2 546.5c-12.4-11-31.4-9.8-42.3 2.6l-98.8 111.7-171-165.7L87.9 724.7c-11.8 11.7-11.8 30.7-0.1 42.4 5.9 5.9 13.6 8.9 21.3 8.9 7.6 0 15.3-2.9 21.1-8.7l189.4-188.1 173.8 168.5L633.8 589c11-12.5 9.8-31.5-2.6-42.5z" fill="#33CC99" /><path d="M721.3 342.8m-35.1 0a35.1 35.1 0 1 0 70.2 0 35.1 35.1 0 1 0-70.2 0Z" fill="#33CC99" /><path d="M743.2 175.1H191.6c-70.6 0-128.3 57.7-128.3 128.3v499.2c0 70.6 57.7 128.3 128.3 128.3h551.5c70.6 0 128.3-57.7 128.3-128.3V303.5c0.1-70.6-57.7-128.4-128.2-128.4z m68.3 627.6c0 18.1-7.1 35.2-20.1 48.2-13 13-30.1 20.1-48.2 20.1H191.6c-18.1 0-35.2-7.1-48.2-20.1-13-13-20.1-30.1-20.1-48.2V303.5c0-18.1 7.1-35.2 20.1-48.2 13-13 30.1-20.1 48.2-20.1h551.5c18.1 0 35.2 7.1 48.2 20.1 13 13 20.1 30.1 20.1 48.2v499.2z" fill="#45484C" /><path d="M799.7 90.9H237.2c-16.6 0-30 13.4-30 30s13.4 30 30 30h562.4c26.1 0 50.8 10.3 69.4 28.9 18.6 18.6 28.9 43.3 28.9 69.4v482.4c0 16.6 13.4 30 30 30s30-13.4 30-30V249.2C958 161.9 887 90.9 799.7 90.9z" fill="#45484C" /></svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
3
|
+
<svg width="800px" height="800px" viewBox="0 0 1024 1024" class="icon" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M570.2 842c-50.6 0-278.7-180-278.7-401.9 0-58.8-2.9-133.1-1-183.9-50.8 3.2-91.4 45.7-91.4 97.3v272.1c37.4 194.7 137.5 334 255.2 334 69.5 0 132.9-48.6 180.9-128.5-20.8 7.1-42.6 10.9-65 10.9z" fill="#FFB89A" /><path d="M926.1 191.8C900.5 74.1 817.9 62.1 704.9 62.1c-29.1 0-60.3 0.8-93 0.8-36 0-70.5-1.1-102.5-1.1-109.7 0-189.8 12.5-201.3 123.7-20.4 198.3 30 617.1 306.1 617.1S939 414.3 926.1 191.8z m-76.9 268.5c-9.5 47.9-22.3 90.8-38.1 127.7-16.8 39.2-37 71.4-60 95.8-37.3 39.5-82.1 58.7-137 58.7-53.4 0-97.6-20.1-134.9-61.6-45.5-50.5-79.8-131.5-99-234.2-15.6-83.5-20.3-178.9-12.4-255.2 1.8-17.3 5.7-30.7 11.6-39.8 4.4-6.8 10.1-11.7 18.7-15.8 25.8-12.5 70.8-14.2 111.4-14.2 15 0 30.7 0.2 47.3 0.5 17.8 0.3 36.2 0.6 55.2 0.6 17.2 0 33.9-0.2 50-0.4 15.1-0.2 29.3-0.4 43.1-0.4 44.5 0 89.5 1.8 118 15.1 15.9 7.4 33.4 20.8 43.6 63 2.6 53.3 3.6 153.5-17.5 260.2z" fill="#4E5155" /><path d="M532 841.7c-32.5 22.3-70.6 33.7-113.2 33.7-29.7 0-57.3-6-82.1-17.7-23.2-11-44.7-27.4-63.9-48.7-46-50.9-80.3-131.3-99.2-232.4-15.1-80.6-19.6-172.9-12-246.8 3-29.5 12-50.2 27.5-63.2 14.2-12 35.1-19.2 65.8-22.9 16.5-2 28.2-16.9 26.3-33.3-2-16.5-16.9-28.2-33.3-26.3-42.9 5.1-73.8 16.7-97.4 36.5-27.9 23.5-43.8 57.2-48.5 103-8.2 79.3-3.4 178.1 12.7 264 9.7 51.9 23.4 99.4 40.6 141.2 19.8 48.1 44.4 88.6 73 120.4 51.6 57.2 115.7 86.2 190.6 86.2 55 0 104.5-14.9 147.2-44.2 13.7-9.4 17.1-28.1 7.7-41.7-9.4-13.7-28.1-17.2-41.8-7.8z" fill="#4E5155" /><path d="M519.7 248.5c-16.6 0-30 13.4-30 30v91.3c0 16.6 13.4 30 30 30s30-13.4 30-30v-91.3c0-16.6-13.5-30-30-30zM299.5 385.5c0-16.6-13.4-30-30-30s-30 13.4-30 30v91.3c0 16.6 13.4 30 30 30s30-13.4 30-30v-91.3zM754.6 248.5c-16.6 0-30 13.4-30 30v91.3c0 16.6 13.4 30 30 30s30-13.4 30-30v-91.3c0-16.6-13.4-30-30-30zM716.7 554.5c0-16.6-13.4-30-30-30H551v30c0 58.5 38.1 123.7 92.8 123.7 22.9 0 45-11.9 62.2-33.6 10.3-13 8.1-31.9-4.9-42.1-13-10.3-31.9-8.1-42.1 4.9-5.3 6.7-11.1 10.9-15.1 10.9-4.3 0-11.9-5.1-19.1-16.4-3.3-5.3-6.2-11.2-8.4-17.4h70.4c16.4 0 29.9-13.4 29.9-30zM401.6 704c-25.4 0-46.1-24.2-46.1-53.9 0-16.6-13.4-30-30-30s-30 13.4-30 30c0 62.8 47.6 113.9 106.1 113.9 16.6 0 30-13.4 30-30s-13.5-30-30-30z" fill="#33CC99" /></svg>
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
3
|
+
<svg width="800px" height="800px" viewBox="0 0 1024 1024" class="icon" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M861.9 383.8H218.1c-36.4 0-66.1-29.8-66.1-66.1V288c0-36.4 29.8-66.1 66.1-66.1h643.8c36.4 0 66.1 29.8 66.1 66.1v29.7c0 36.3-29.8 66.1-66.1 66.1z" fill="#FFB89A" /><path d="M822.9 129.2H199.8c-77.2 0-140.4 63.2-140.4 140.4v487.2c0 77.2 63.2 140.4 140.4 140.4h623.1c77.2 0 140.4-63.2 140.4-140.4V269.6c0-77.2-63.2-140.4-140.4-140.4z m80.4 177H760.4L864.6 201c5.4 3.3 10.4 7.3 15 11.8 15.3 15.3 23.7 35.4 23.7 56.8v36.6z m-673.3 0l104-117h61.3l-109.1 117H230z m247.4-117h169.2L532 306.2H368.3l109.1-117z m248.8 0h65.6L676 306.2h-60l112.5-114.8-2.3-2.2zM143 212.9c15.3-15.3 35.4-23.7 56.8-23.7h53.9l-104 117h-30.4v-36.5c0.1-21.4 8.5-41.5 23.7-56.8z m736.6 600.7c-15.3 15.3-35.4 23.7-56.8 23.7h-623c-21.3 0-41.5-8.4-56.8-23.7-15.3-15.3-23.7-35.4-23.7-56.8V366.2h783.9v390.6c0.1 21.3-8.3 41.5-23.6 56.8z" fill="#45484C" /><path d="M400.5 770.6V430.9L534.1 508c14.3 8.3 19.3 26.6 11 41-8.3 14.3-26.6 19.3-41 11l-43.6-25.2v131.8l114.1-65.9-7.5-4.3c-14.3-8.3-19.3-26.6-11-41 8.3-14.3 26.6-19.3 41-11l97.5 56.3-294.1 169.9z" fill="#33CC99" /></svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
3
|
+
<svg width="800px" height="800px" viewBox="0 0 1024 1024" class="icon" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M188.3 766.5a94.4 135.8 0 1 0 188.8 0 94.4 135.8 0 1 0-188.8 0Z" fill="#FFB89A" /><path d="M931.5 397s0-0.1 0 0c-34.2-82.6-119.3-141-218.8-141-129.7 0-234.9 99.3-234.9 221.9 0 52.1 19.1 100.1 50.9 138 1 14.5 1.8 29.1 1.8 43.6 0 148.5 98.1 269 219.2 269 121 0 219.2-120.4 219.2-269 0-70.1-1.7-214.7-37.4-262.5z m-36.6 347.5c-8.7 25.3-21.1 47.9-36.8 67.1-29.8 36.5-68.3 56.7-108.5 56.7s-78.7-20.1-108.5-56.7c-15.7-19.2-28-41.8-36.8-67.1-9.3-26.9-13.9-55.5-13.9-85.1 0-16.8-1-33.5-2-47.7l-1.3-19.5-12.6-15c-24.1-28.6-36.8-63-36.8-99.3 0-89.3 78.5-161.9 174.9-161.9 36.4 0 71.4 10.3 101 29.7 28.4 18.7 65.5 81.7 65.5 81.7s17.9 27.5 24.7 98.2c4.5 46.5 5 95.9 5 133.8 0.1 29.6-4.6 58.2-13.9 85.1zM377.1 219.9c-51.8 0-93.8 42-93.8 93.8s42 93.8 93.8 93.8 93.8-42 93.8-93.8-42-93.8-93.8-93.8z m0 127.5c-18.6 0-33.8-15.2-33.8-33.8 0-18.6 15.2-33.8 33.8-33.8 18.6 0 33.8 15.2 33.8 33.8 0 18.7-15.1 33.8-33.8 33.8z" fill="#45484C" /><path d="M521.2 206.7m-50.3 0a50.3 50.3 0 1 0 100.6 0 50.3 50.3 0 1 0-100.6 0Z" fill="#45484C" /><path d="M653 156.4m-50.3 0a50.3 50.3 0 1 0 100.6 0 50.3 50.3 0 1 0-100.6 0Z" fill="#45484C" /><path d="M781.9 158.4m-50.3 0a50.3 50.3 0 1 0 100.6 0 50.3 50.3 0 1 0-100.6 0Z" fill="#45484C" /><path d="M909 206.7m-50.3 0a50.3 50.3 0 1 0 100.6 0 50.3 50.3 0 1 0-100.6 0Z" fill="#45484C" /><path d="M263.9 602.7c44.7 0 81 31.5 81 70.3 0 20.9-10.2 35.9-18.7 44.8l-15.9 19.7-0.5 27.2c0.7 7.2 0.6 16.9 0.6 24.7v4.8c0 33.7-27.4 61.2-61.2 61.2-14.9 0-33.3-9.6-48.1-25-15.2-15.9-24.6-35.9-24.6-52.3v-3.2c0-12.7 0-36.2 1-60.2 1.4-33 7.4-57.3 7.4-57.3 3.9-14.7 13.4-28.2 26.8-38 14.8-11 32.8-16.7 52.2-16.7m0-60c-66.4 0-122 42.4-137 99.4-10.9 23-10.4 112.6-10.4 135.9 0 66.9 65.8 137.3 132.7 137.3 66.9 0 121.2-54.3 121.2-121.2 0-9.2 0.3-23-0.8-34.9 22-23 35.4-53.2 35.4-86.3-0.1-71.9-63.2-130.2-141.1-130.2zM444.4 559.9c-26.4 0-47.8 21.4-47.8 47.8s21.4 47.8 47.8 47.8 47.8-21.4 47.8-47.8-21.4-47.8-47.8-47.8zM377.1 494.5c-15.2 0-27.5 12.3-27.5 27.5s12.3 27.5 27.5 27.5 27.5-12.3 27.5-27.5c0-15.3-12.3-27.5-27.5-27.5zM288.1 471.5c-15.2 0-27.5 12.3-27.5 27.5s12.3 27.5 27.5 27.5 27.5-12.3 27.5-27.5-12.4-27.5-27.5-27.5zM188.3 477.9c-15.2 0-27.5 12.3-27.5 27.5s12.3 27.5 27.5 27.5 27.5-12.3 27.5-27.5-12.3-27.5-27.5-27.5zM100.6 538.4c-15.2 0-27.5 12.3-27.5 27.5s12.3 27.5 27.5 27.5 27.5-12.3 27.5-27.5c-0.1-15.2-12.4-27.5-27.5-27.5z" fill="#45484C" /><path d="M670.1 584.6c-41.4 0-80.2-20.3-103.9-54.3-9.5-13.6-6.2-32.3 7.4-41.8 13.6-9.5 32.3-6.2 41.8 7.4 12.5 17.9 33 28.6 54.7 28.6 36.8 0 66.7-29.9 66.7-66.7 0-19.8-8.7-38.4-23.9-51.2-12.7-10.6-14.4-29.6-3.7-42.3s29.6-14.4 42.3-3.7c28.9 24.2 45.4 59.6 45.4 97.2-0.1 70-56.9 126.8-126.8 126.8z" fill="#33CC99" /><path d="M853 556.4c-26 0-49.6-14.5-60.1-36.9-7-15-0.6-32.9 14.4-39.9s32.9-0.6 39.9 14.4c0.3 0.6 2.2 2.4 5.8 2.4 1.2 0 2.3-0.2 3.3-0.6 15.5-5.9 32.8 1.8 38.7 17.3 5.9 15.5-1.8 32.8-17.3 38.7-7.9 3.1-16.2 4.6-24.7 4.6z" fill="#33CC99" /></svg>
|