Spaces:
Sleeping
Sleeping
Commit
·
819bacd
1
Parent(s):
57cab59
UI
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- Api/doc_test.pdf +0 -0
- Api/requirements.txt +6 -3
- Api/src/__pycache__/main.cpython-310.pyc +0 -0
- Api/src/db_local_storage/__pycache__/documents_db.cpython-310.pyc +0 -0
- Api/src/db_local_storage/__pycache__/files_db.cpython-310.pyc +0 -0
- Api/src/db_local_storage/__pycache__/in_memory_db.cpython-310.pyc +0 -0
- Api/src/db_local_storage/__pycache__/vector_files_db.cpython-310.pyc +0 -0
- Api/src/db_local_storage/documents_db.py +2 -0
- Api/src/db_local_storage/files/doc_test.pdf +0 -0
- Api/src/db_local_storage/files_db.py +3 -1
- Api/src/db_local_storage/in_memory_db.py +1 -0
- Api/src/db_local_storage/text_files/doc_test.pdf +23 -0
- Api/src/db_local_storage/vector_files/__pycache__/test.cpython-310.pyc +0 -0
- Api/src/db_local_storage/vector_files/vec_db.json +1108 -0
- Api/src/db_local_storage/vector_files_db.py +1 -0
- Api/src/main.py +24 -1
- Api/src/modules/querySearch/controllers/__pycache__/querySearch_controller.cpython-310.pyc +0 -0
- Api/src/modules/querySearch/controllers/querySearch_controller.py +22 -0
- Api/src/modules/querySearch/features/__pycache__/querySearch_feature.cpython-310.pyc +0 -0
- Api/src/modules/querySearch/features/querySearch_feature.py +87 -0
- Api/src/modules/querySearch/routes/__pycache__/querySearch_route.cpython-310.pyc +0 -0
- Api/src/modules/querySearch/routes/querySearch_route.py +31 -0
- Api/src/modules/uploadDocument/controllers/__pycache__/file_upload_controller.cpython-310.pyc +0 -0
- Api/src/modules/uploadDocument/controllers/file_upload_controller.py +14 -7
- Api/src/modules/uploadDocument/features/__pycache__/createEmbeddings_feature.cpython-310.pyc +0 -0
- Api/src/modules/uploadDocument/features/__pycache__/extractText_feature.cpython-310.pyc +0 -0
- Api/src/modules/uploadDocument/features/__pycache__/uploadDocument_feature.cpython-310.pyc +0 -0
- Api/src/modules/uploadDocument/features/createEmbeddings_feature.py +50 -0
- Api/src/modules/uploadDocument/features/extractText_feature.py +58 -0
- Api/src/modules/uploadDocument/features/uploadDocument_feature.py +17 -5
- Api/src/modules/uploadDocument/routes/__pycache__/uploadDocument_route.cpython-310.pyc +0 -0
- Api/src/modules/uploadDocument/routes/uploadDocument_route.py +52 -7
- Api/src/out/404.html +1 -0
- Api/src/out/_next/static/8pPextYjcRlStoVtEQkF_/_buildManifest.js +1 -0
- Api/src/out/_next/static/8pPextYjcRlStoVtEQkF_/_ssgManifest.js +1 -0
- Api/src/out/_next/static/chunks/23-e94121395991ed2e.js +0 -0
- Api/src/out/_next/static/chunks/324-5c86793bec652c55.js +0 -0
- Api/src/out/_next/static/chunks/app/_not-found/page-88e5ec60d72eb81e.js +1 -0
- Api/src/out/_next/static/chunks/app/layout-921f3900800dd4a7.js +1 -0
- Api/src/out/_next/static/chunks/app/page-10e8a35fca12752e.js +1 -0
- Api/src/out/_next/static/chunks/fd9d1056-90960e0a7e77703c.js +0 -0
- Api/src/out/_next/static/chunks/framework-f66176bb897dc684.js +0 -0
- Api/src/out/_next/static/chunks/main-86caab0518fca858.js +0 -0
- Api/src/out/_next/static/chunks/main-app-f4f564f56624dcb5.js +1 -0
- Api/src/out/_next/static/chunks/pages/_app-6a626577ffa902a4.js +1 -0
- Api/src/out/_next/static/chunks/pages/_error-1be831200e60c5c0.js +1 -0
- Api/src/out/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js +1 -0
- Api/src/out/_next/static/chunks/webpack-17abec1bd4bca978.js +1 -0
- Api/src/out/index.html +1 -0
- Api/src/out/index.txt +7 -0
Api/doc_test.pdf
ADDED
Binary file (31.7 kB). View file
|
|
Api/requirements.txt
CHANGED
@@ -1,4 +1,7 @@
|
|
1 |
-
fastapi
|
|
|
|
|
2 |
uvicorn
|
3 |
-
|
4 |
-
python-multipart
|
|
|
|
1 |
+
fastapi
|
2 |
+
transformers
|
3 |
+
sentence-transformers
|
4 |
uvicorn
|
5 |
+
pdfplumber
|
6 |
+
python-multipart
|
7 |
+
numpy
|
Api/src/__pycache__/main.cpython-310.pyc
CHANGED
Binary files a/Api/src/__pycache__/main.cpython-310.pyc and b/Api/src/__pycache__/main.cpython-310.pyc differ
|
|
Api/src/db_local_storage/__pycache__/documents_db.cpython-310.pyc
ADDED
Binary file (195 Bytes). View file
|
|
Api/src/db_local_storage/__pycache__/files_db.cpython-310.pyc
CHANGED
Binary files a/Api/src/db_local_storage/__pycache__/files_db.cpython-310.pyc and b/Api/src/db_local_storage/__pycache__/files_db.cpython-310.pyc differ
|
|
Api/src/db_local_storage/__pycache__/in_memory_db.cpython-310.pyc
ADDED
Binary file (183 Bytes). View file
|
|
Api/src/db_local_storage/__pycache__/vector_files_db.cpython-310.pyc
ADDED
Binary file (179 Bytes). View file
|
|
Api/src/db_local_storage/documents_db.py
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
documents_db = []
|
2 |
+
documents_text = []
|
Api/src/db_local_storage/files/doc_test.pdf
ADDED
File without changes
|
Api/src/db_local_storage/files_db.py
CHANGED
@@ -1,2 +1,4 @@
|
|
1 |
FILES_NAMES_DATABASE = {}
|
2 |
-
FILES_DIRECTORY = "src/db_local_storage/files"
|
|
|
|
|
|
1 |
FILES_NAMES_DATABASE = {}
|
2 |
+
FILES_DIRECTORY = "src/db_local_storage/files"
|
3 |
+
TEXT_FILES_DIRECTORY = "src/db_local_storage/text_files"
|
4 |
+
VECTOR_FILES_DIRECTORY = "src/db_local_storage/vector_files/vec_db.json"
|
Api/src/db_local_storage/in_memory_db.py
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
query_response_storage = []
|
Api/src/db_local_storage/text_files/doc_test.pdf
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Dear Hiring Manager,
|
2 |
+
I am writing to express my interest in the Machine Learning / AI Scientist position at Grazper.
|
3 |
+
With a strong background in human-centered artificial intelligence, hands-on experience in
|
4 |
+
developing machine learning models, and a deep passion for applying AI to solve real-world
|
5 |
+
problems, I am excited about the opportunity to contribute to Grazper’s innovative work in
|
6 |
+
human pose estimation and behavioral analysis.
|
7 |
+
My role as Co-Founder of NeoCareU had provided me with extensive experience in
|
8 |
+
developing Python-based infrastructures for graph search functionality, utilizing frameworks
|
9 |
+
such as FastAPI and Uvicorn. I have led end-to-end development of features, improving user
|
10 |
+
experiences and backend processes with technologies like Node.js and TypeScript. This
|
11 |
+
experience has sharpened my software development skills and my ability to translate
|
12 |
+
complex machine learning concepts into practical applications, a key requirement for the role
|
13 |
+
at Grazper.
|
14 |
+
In addition to my professional experience, I hold a Master’s in Human-Centered Artificial
|
15 |
+
Intelligence from Denmark’s Technical University. During my studies, I focused on computer
|
16 |
+
vision and deep learning, gaining familiarity with models such as AlphaPose with its
|
17 |
+
ResNet-50 backbone for 2D pose estimation, and MotionBERT for 3D pose estimation.
|
18 |
+
These skills will be invaluable in collaborating with the diverse and talented team at Grazper.
|
19 |
+
Thank you for considering my application. I am eager to bring my skills in machine learning,
|
20 |
+
computer vision, and software development to Grazper and to help drive the continued
|
21 |
+
innovation that the company is known for. I look forward to the possibility of discussing how
|
22 |
+
my background, skills, and experiences align with the needs of your team.
|
23 |
+
Sincerely,
|
Api/src/db_local_storage/vector_files/__pycache__/test.cpython-310.pyc
ADDED
Binary file (181 Bytes). View file
|
|
Api/src/db_local_storage/vector_files/vec_db.json
ADDED
@@ -0,0 +1,1108 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"document_1": {
|
3 |
+
"metadata": { "filename": "doc_test.pdf", "chunks": 4 },
|
4 |
+
"data": [
|
5 |
+
{
|
6 |
+
"embedding": [
|
7 |
+
-0.09148407727479935, -0.3296155333518982, 0.19553515315055847,
|
8 |
+
-0.13005883991718292, -0.023037904873490334, -0.27768027782440186,
|
9 |
+
-0.15001057088375092, 0.061617735773324966, -0.21048811078071594,
|
10 |
+
-0.1158759668469429, 0.00262309773825109, -0.18505680561065674,
|
11 |
+
-0.36614593863487244, 0.01263430155813694, -0.23454351723194122,
|
12 |
+
0.026990391314029694, 0.10782455652952194, 0.20590373873710632,
|
13 |
+
0.01619311049580574, -0.29646965861320496, -0.49789899587631226,
|
14 |
+
-0.3155633509159088, 0.22015143930912018, -0.17993934452533722,
|
15 |
+
-0.2728782892227173, -0.24151268601417542, -0.2213350087404251,
|
16 |
+
-0.1546640843153, 0.18654145300388336, -0.3817594647407532,
|
17 |
+
0.27131369709968567, -0.16452756524085999, 0.4666154384613037,
|
18 |
+
-0.23997938632965088, -0.16251197457313538, 0.45274969935417175,
|
19 |
+
-0.06473690271377563, 0.030141692608594894, 0.18030805885791779,
|
20 |
+
0.3573063910007477, 0.057827189564704895, -0.5050416588783264,
|
21 |
+
0.14762045443058014, -0.24115344882011414, 0.12714245915412903,
|
22 |
+
-0.30607476830482483, 0.03628716245293617, -0.1717076599597931,
|
23 |
+
-0.07239308208227158, -0.10611303895711899, -0.20394517481327057,
|
24 |
+
-0.357207328081131, 0.07243036478757858, -0.27321791648864746,
|
25 |
+
-0.005590340122580528, 0.18584828078746796, 0.14657430350780487,
|
26 |
+
0.00868619792163372, -0.23141932487487793, -0.15293444693088531,
|
27 |
+
0.4537033438682556, -0.050794072449207306, -0.1081295758485794,
|
28 |
+
0.24416445195674896, 0.32709094882011414, -0.1073112040758133,
|
29 |
+
-0.002160100731998682, -0.14978720247745514, -0.08192038536071777,
|
30 |
+
0.04925680160522461, 0.08451664447784424, -0.10695666819810867,
|
31 |
+
-0.3269720673561096, -0.011846603825688362, 0.1591711789369583,
|
32 |
+
0.03670593723654747, 0.27853694558143616, 0.057576391845941544,
|
33 |
+
0.627304196357727, -0.09007762372493744, 0.3147648274898529,
|
34 |
+
0.040534473955631256, -0.1886814385652542, 0.07377851009368896,
|
35 |
+
-0.11277369409799576, -0.06923136860132217, 0.23174744844436646,
|
36 |
+
0.12746192514896393, 0.24344752728939056, -0.07483936846256256,
|
37 |
+
0.16249415278434753, -0.279635488986969, -0.16499225795269012,
|
38 |
+
-0.28518205881118774, 0.2098291516304016, 0.27612876892089844,
|
39 |
+
-0.28646302223205566, 0.1196957528591156, -0.3333701193332672,
|
40 |
+
0.04434604197740555, -0.2624748647212982, -0.21890603005886078,
|
41 |
+
-0.08524201810359955, -0.0075501492246985435, -0.4198438227176666,
|
42 |
+
-0.0592561811208725, -0.10367451608181, -0.1156446784734726,
|
43 |
+
0.1438761055469513, 0.0052966708317399025, -0.09201934933662415,
|
44 |
+
0.36266717314720154, -0.21685782074928284, 0.1420959085226059,
|
45 |
+
0.10085764527320862, 0.02429366298019886, -0.10447590798139572,
|
46 |
+
-0.1402379870414734, 0.14102685451507568, 0.10799302160739899,
|
47 |
+
-0.17230382561683655, -0.15043006837368011, 0.07193934917449951,
|
48 |
+
0.1495690643787384, -0.019986119121313095, -0.0347922220826149,
|
49 |
+
-0.27049851417541504, 0.13336730003356934, -0.11616193503141403,
|
50 |
+
0.2649662494659424, 0.330400675535202, 0.04918519780039787,
|
51 |
+
0.12089464068412781, -0.09495944529771805, -0.28842809796333313,
|
52 |
+
0.04238158464431763, 0.05436383932828903, -0.08257465064525604,
|
53 |
+
-0.031113239005208015, -0.11439044773578644, 0.06356312334537506,
|
54 |
+
0.16110284626483917, -0.4002474248409271, -0.014672113582491875,
|
55 |
+
0.330425888299942, -0.03440795838832855, 0.19075387716293335,
|
56 |
+
-0.3702341616153717, -0.19534951448440552, 0.1684616357088089,
|
57 |
+
-0.09864974766969681, 0.12697818875312805, 0.1819300651550293,
|
58 |
+
0.07670610398054123, 0.3232901692390442, 0.04667458310723305,
|
59 |
+
0.09191926568746567, 0.06742186844348907, 0.026456736028194427,
|
60 |
+
-0.02663232572376728, -0.17225997149944305, 0.19716386497020721,
|
61 |
+
0.02224832773208618, -0.03200436756014824, -0.08198100328445435,
|
62 |
+
-0.2442745566368103, 0.06113841384649277, 0.0807797834277153,
|
63 |
+
0.04088904708623886, 0.2907366454601288, 0.22261427342891693,
|
64 |
+
0.10915300250053406, 0.017830494791269302, -0.02144521474838257,
|
65 |
+
0.4247247576713562, -0.007936686277389526, 0.20204278826713562,
|
66 |
+
0.17006978392601013, 0.04741619527339935, 0.31061092019081116,
|
67 |
+
0.12313715368509293, -0.13362251222133636, 0.3784801661968231,
|
68 |
+
0.16054050624370575, 0.08082814514636993, 0.05647144094109535,
|
69 |
+
-0.0050701238214969635, 0.07090428471565247, -0.41181671619415283,
|
70 |
+
0.08139584213495255, -0.2981043756008148, 0.011231742799282074,
|
71 |
+
0.02322234958410263, 0.03604107350111008, 0.01680818758904934,
|
72 |
+
0.07644037157297134, 0.2796001136302948, 0.014765125699341297,
|
73 |
+
0.025432690978050232, 0.2253454178571701, -0.21646393835544586,
|
74 |
+
-0.21112558245658875, -0.12944644689559937, 0.08615317195653915,
|
75 |
+
-0.19481784105300903, -0.02482978068292141, -0.2655474543571472,
|
76 |
+
0.18308250606060028, 0.1057799756526947, 0.46467578411102295,
|
77 |
+
0.13872161507606506, -0.16284668445587158, -0.10319432616233826,
|
78 |
+
0.28903090953826904, -0.049684423953294754, -0.11852547526359558,
|
79 |
+
0.15179845690727234, 0.4315755367279053, 0.16684380173683167,
|
80 |
+
0.21633920073509216, -0.23727011680603027, 0.23591041564941406,
|
81 |
+
-0.236463725566864, -0.10205617547035217, -0.38227447867393494,
|
82 |
+
-0.3208659291267395, -0.16321201622486115, -0.2047148197889328,
|
83 |
+
0.035120557993650436, 0.1217074990272522, -0.09423492103815079,
|
84 |
+
0.10800852626562119, -0.12016260623931885, -0.01766962558031082,
|
85 |
+
-0.21207456290721893, 0.18253299593925476, 0.09813184291124344,
|
86 |
+
-0.14369548857212067, -0.4996097981929779, 0.05356284976005554,
|
87 |
+
-0.13140559196472168, -0.10310748219490051, -0.3297559916973114,
|
88 |
+
0.13165785372257233, 0.29243674874305725, 0.6235761046409607,
|
89 |
+
-0.018105201423168182, 0.4351204037666321, -0.3157229423522949,
|
90 |
+
0.14044661819934845, 0.32561150193214417, -0.045231807976961136,
|
91 |
+
-0.22902421653270721, -0.04736926779150963, 0.00638209143653512,
|
92 |
+
0.2657054662704468, -0.1663697361946106, 0.21721374988555908,
|
93 |
+
0.06596962362527847, 0.4710530638694763, 0.1495056301355362,
|
94 |
+
-0.2131609320640564, -0.09281381219625473, 0.33491361141204834,
|
95 |
+
0.26699742674827576, -0.0664362758398056, -0.3143211007118225,
|
96 |
+
-0.11612315475940704, 0.09384771436452866, -0.31450754404067993,
|
97 |
+
-0.14105857908725739, -0.1692599505186081, 0.15440012514591217,
|
98 |
+
0.021970681846141815, -0.2492946833372116, -0.19831828773021698,
|
99 |
+
0.11038780957460403, -0.2564508020877838, -0.09789401292800903,
|
100 |
+
0.014864001423120499, 0.33063599467277527, -0.08587673306465149,
|
101 |
+
0.3573816120624542, 0.262990802526474, -0.23019948601722717,
|
102 |
+
-0.06639422476291656, 0.13446615636348724, -0.3160199522972107,
|
103 |
+
-0.2009458839893341, 0.0011719531612470746, 0.05401983484625816,
|
104 |
+
0.11232183128595352, -0.2915894389152527, 0.04823492094874382,
|
105 |
+
-0.11993903666734695, 0.1691748946905136, 0.10592252761125565,
|
106 |
+
0.11075671762228012, -0.20100106298923492, -0.0010831565596163273,
|
107 |
+
0.1340765357017517, -0.18890692293643951, -0.04269295558333397,
|
108 |
+
-0.008131876587867737, -0.16146209836006165, -0.09385553747415543,
|
109 |
+
0.14291250705718994, 0.11386755108833313, 0.10874597728252411,
|
110 |
+
0.30922049283981323, -0.1316504329442978, 0.09756156802177429,
|
111 |
+
0.10346060246229172, -0.09867636114358902, -0.022087613120675087,
|
112 |
+
0.00240744068287313, -0.18236050009727478, 0.14601346850395203,
|
113 |
+
-0.03863060474395752, -0.05868404731154442, 0.09617110341787338,
|
114 |
+
-0.031769558787345886, 0.2660558223724365, 0.327562540769577,
|
115 |
+
-0.083442322909832, 0.20325987040996552, -0.5998589396476746,
|
116 |
+
-0.312290757894516, -0.060986027121543884, -0.03271651640534401,
|
117 |
+
-0.21090127527713776, -0.22981834411621094, 0.05871429294347763,
|
118 |
+
0.34688451886177063, 0.20736956596374512, 0.13843078911304474,
|
119 |
+
-0.08390390127897263, 0.38931000232696533, -0.1773708462715149,
|
120 |
+
-0.35399889945983887, 0.2373276948928833, 0.05349014699459076,
|
121 |
+
0.08039376884698868, -0.11689640581607819, -0.14542360603809357,
|
122 |
+
-0.2895090878009796, -0.12660722434520721, 0.5266510248184204,
|
123 |
+
-0.09322528541088104, 0.02377072535455227, -0.12724241614341736,
|
124 |
+
0.3590814471244812, -0.13123689591884613, -0.10675929486751556,
|
125 |
+
0.3575019836425781, 0.09733907878398895, -0.027689877897500992,
|
126 |
+
-0.0075003644451498985, 0.08631216734647751, 0.07380516082048416,
|
127 |
+
-0.03189918026328087, 0.5251277089118958, 0.007510041352361441,
|
128 |
+
0.022245241329073906, 0.0560171902179718, 0.17317497730255127,
|
129 |
+
-0.06186212971806526, -0.22594772279262543, 0.2666807770729065,
|
130 |
+
0.016032816842198372, 0.12344001233577728, -0.12985070049762726,
|
131 |
+
0.19014285504817963, 0.17215973138809204, 0.20680564641952515,
|
132 |
+
0.08599716424942017, 0.057784561067819595, -0.21372999250888824,
|
133 |
+
0.14019109308719635, 0.287504106760025, -0.019741084426641464,
|
134 |
+
-0.2658323645591736, -0.4153008759021759, -0.0035018271300941706
|
135 |
+
],
|
136 |
+
"metadata": {
|
137 |
+
"chunk_index": 0,
|
138 |
+
"original_text": "Dear Hiring Manager,\nI am writing to express my interest in the Machine Learning / AI Scientist position at Grazper.\nWith a strong background in human-centered artificial intelligence, hands-on experience in\ndeveloping machine learning models, and a deep passion for applying AI to solve real-world\nproblems, I am excited about the opportunity to contribute to Grazper\u2019s innovative work in\nhuman pose estimation and behavioral analysis.\nMy role as Co-Founder of NeoCareU had provided me with extensive experience",
|
139 |
+
"document_id": "document_1"
|
140 |
+
}
|
141 |
+
},
|
142 |
+
{
|
143 |
+
"embedding": [
|
144 |
+
-0.3538837432861328, -0.2798934280872345, -0.20018577575683594,
|
145 |
+
-0.26204603910446167, 0.034382205456495285, -0.13982532918453217,
|
146 |
+
-0.10466007143259048, 0.0993245393037796, -0.44282111525535583,
|
147 |
+
0.11923752725124359, -0.26709482073783875, 0.24086952209472656,
|
148 |
+
0.30425047874450684, 0.14494290947914124, -0.0547223724424839,
|
149 |
+
0.2547502815723419, 0.07292310893535614, 0.14710913598537445,
|
150 |
+
0.009943760931491852, -0.3633028268814087, -0.21526381373405457,
|
151 |
+
-0.08017954230308533, 0.19093893468379974, -0.20139513909816742,
|
152 |
+
-0.07825083285570145, -0.14961154758930206, -0.13597117364406586,
|
153 |
+
-0.2867635488510132, 0.31594640016555786, -0.05897744372487068,
|
154 |
+
0.3434928059577942, 0.01670055091381073, -0.004828151315450668,
|
155 |
+
-0.16799041628837585, -0.2624547481536865, 0.3729349970817566,
|
156 |
+
-0.16509121656417847, -0.009788806550204754, -0.08342843502759933,
|
157 |
+
0.06767044216394424, -0.2468855082988739, 0.08895031362771988,
|
158 |
+
-0.22731740772724152, 0.008885922841727734, -0.0399138405919075,
|
159 |
+
-0.2195744812488556, 0.06591316312551498, 0.009177133440971375,
|
160 |
+
-0.26158878207206726, 0.18789461255073547, -0.24896378815174103,
|
161 |
+
-0.21397309005260468, -0.19919288158416748, -0.6077890396118164,
|
162 |
+
0.03060416877269745, 0.3999462425708771, 0.14030390977859497,
|
163 |
+
0.2664421498775482, -0.0935908854007721, -0.4413532018661499,
|
164 |
+
0.26173555850982666, -0.16536077857017517, 0.12178099900484085,
|
165 |
+
0.04045264795422554, 0.40474486351013184, 0.2618130147457123,
|
166 |
+
-0.08954939246177673, 0.10690316557884216, 0.28720661997795105,
|
167 |
+
-0.07987114042043686, -0.28882163763046265, -0.0728796124458313,
|
168 |
+
-0.5821951031684875, 0.3428257405757904, -0.17142491042613983,
|
169 |
+
0.03568922355771065, -0.03248533606529236, 0.08254002779722214,
|
170 |
+
0.18038401007652283, -0.06611607223749161, 0.13063442707061768,
|
171 |
+
0.09530947357416153, 0.03349321335554123, 0.08061643689870834,
|
172 |
+
0.18855029344558716, 0.4281195104122162, 0.0665719136595726,
|
173 |
+
0.04194939509034157, 0.12220165878534317, 0.010515543632209301,
|
174 |
+
0.32226571440696716, -0.16392198204994202, 0.05220913514494896,
|
175 |
+
0.1031077429652214, 0.16732420027256012, 0.23175019025802612,
|
176 |
+
0.114049032330513, -0.03328864276409149, -0.01976911723613739,
|
177 |
+
0.1048729196190834, -0.30282139778137207, -0.4392775595188141,
|
178 |
+
-0.1288718432188034, -0.14491643011569977, -0.04607124254107475,
|
179 |
+
-0.15156289935112, 0.09082774817943573, 0.10089505463838577,
|
180 |
+
0.14726434648036957, -0.28970447182655334, 0.0012887095799669623,
|
181 |
+
0.137145534157753, -0.11492237448692322, -0.0005263114580884576,
|
182 |
+
0.1958247274160385, -0.1868979036808014, -0.2419106811285019,
|
183 |
+
0.0737084224820137, 0.29266324639320374, 0.22295552492141724,
|
184 |
+
0.01409871969372034, 0.1825709491968155, 0.05382119491696358,
|
185 |
+
0.22769558429718018, 0.10486752539873123, 0.05040912330150604,
|
186 |
+
0.043187860399484634, 0.2241716831922531, -0.11450938135385513,
|
187 |
+
0.08844543993473053, 0.1747308224439621, 0.11177259683609009,
|
188 |
+
-0.16635563969612122, 0.04817083477973938, 0.1424458771944046,
|
189 |
+
-0.008763986639678478, -0.026816103607416153, -0.18446074426174164,
|
190 |
+
0.04244499281048775, 0.09155523777008057, -0.3308274447917938,
|
191 |
+
-0.01437363587319851, 0.36197471618652344, -0.1620330959558487,
|
192 |
+
0.2047397643327713, 0.329391747713089, 0.0022561252117156982,
|
193 |
+
-0.06276961416006088, -0.09117791056632996, -0.04820992425084114,
|
194 |
+
0.3016979396343231, -0.0438905730843544, 0.010144030675292015,
|
195 |
+
0.06051658093929291, 0.32839950919151306, 0.2443029284477234,
|
196 |
+
-0.011933633126318455, 0.03433694317936897, -0.016246959567070007,
|
197 |
+
-0.47122547030448914, -0.1264072209596634, 0.21262085437774658,
|
198 |
+
-0.23058561980724335, -0.14455263316631317, -0.1581219881772995,
|
199 |
+
-0.16299952566623688, -0.009553385898470879, -0.12317966669797897,
|
200 |
+
-0.32157713174819946, 0.014401085674762726, -0.10812263935804367,
|
201 |
+
-0.035570017993450165, -0.008989747613668442, 0.04400143772363663,
|
202 |
+
0.3484753966331482, 0.15835194289684296, -0.2735021114349365,
|
203 |
+
-0.20207005739212036, 0.12965133786201477, 0.19740435481071472,
|
204 |
+
0.07840030640363693, 0.13813409209251404, 0.12169253826141357,
|
205 |
+
0.29626813530921936, 0.22167962789535522, 0.020598750561475754,
|
206 |
+
0.0022713011130690575, -0.0909143015742302, -0.1911298930644989,
|
207 |
+
0.05455838888883591, -0.009145678021013737, -0.10562258213758469,
|
208 |
+
0.10980530083179474, -0.22284430265426636, 0.017850013449788094,
|
209 |
+
-0.2557089030742645, 0.5073012113571167, -0.15626712143421173,
|
210 |
+
0.10019747912883759, 0.07673435658216476, -0.04721244052052498,
|
211 |
+
0.09103629738092422, 0.25137683749198914, 0.03256136178970337,
|
212 |
+
-0.3687344789505005, 0.10282870382070541, 0.034714121371507645,
|
213 |
+
0.28792425990104675, 0.04069017246365547, 0.09102509915828705,
|
214 |
+
-0.18698477745056152, -0.09283294528722763, 0.008936312980949879,
|
215 |
+
0.07063670456409454, 0.03322990611195564, -0.4384145140647888,
|
216 |
+
0.027899615466594696, 0.29990917444229126, -0.1486257016658783,
|
217 |
+
0.22780683636665344, -0.19810570776462555, 0.3231505751609802,
|
218 |
+
-0.013205461204051971, -0.15059682726860046, -0.05794176831841469,
|
219 |
+
-0.09552647918462753, -0.06665200740098953, 0.13509976863861084,
|
220 |
+
-0.11283162981271744, -0.07114190608263016, -0.047759756445884705,
|
221 |
+
-0.26236239075660706, -0.11653725057840347, -0.02131793461740017,
|
222 |
+
-0.05627347156405449, 0.23980183899402618, 0.0045263562351465225,
|
223 |
+
-0.25390705466270447, -0.2928179204463959, 0.18057391047477722,
|
224 |
+
0.017003249377012253, 0.1607014238834381, 0.010452811606228352,
|
225 |
+
-0.056626081466674805, -0.10370110720396042, 0.031960926949977875,
|
226 |
+
-0.24065308272838593, 0.002884217770770192, 0.034187257289886475,
|
227 |
+
-0.036152441054582596, -0.1707221120595932, -0.47570931911468506,
|
228 |
+
-0.1582062691450119, 0.107045978307724, -0.09741715341806412,
|
229 |
+
-0.027678370475769043, -0.08357779681682587, -0.19195421040058136,
|
230 |
+
-0.05849793553352356, 0.38114577531814575, 0.26657727360725403,
|
231 |
+
-0.2921577990055084, -0.10123103857040405, 0.3657667338848114,
|
232 |
+
0.2964736819267273, -0.029240744188427925, -0.07505577802658081,
|
233 |
+
-0.03216531500220299, 0.05535158887505531, -0.01091919094324112,
|
234 |
+
-0.29223930835723877, 0.038467466831207275, 0.09036702662706375,
|
235 |
+
0.060414429754018784, 0.4073764383792877, 0.26183927059173584,
|
236 |
+
0.3148314356803894, -0.41392379999160767, -0.011577450670301914,
|
237 |
+
0.08124766498804092, 0.11839907616376877, 0.14485281705856323,
|
238 |
+
-0.1286170780658722, 0.2242894321680069, -0.1293884515762329,
|
239 |
+
-0.040836967527866364, -0.006037773098796606, 0.1143469512462616,
|
240 |
+
-0.1418261080980301, -0.048728104680776596, -0.1150873601436615,
|
241 |
+
0.06722237914800644, -0.3071898818016052, -0.30777737498283386,
|
242 |
+
-0.06533436477184296, 0.031248852610588074, 0.24998141825199127,
|
243 |
+
-0.1900501400232315, -0.0887349471449852, -0.12751400470733643,
|
244 |
+
-0.08780647814273834, -0.014166437089443207, -0.18369078636169434,
|
245 |
+
-0.0933438092470169, 0.0416223406791687, -0.06072313338518143,
|
246 |
+
0.2526116371154785, 0.026925235986709595, 0.12303062528371811,
|
247 |
+
-0.14535634219646454, 0.007273425813764334, 0.16847600042819977,
|
248 |
+
0.07287341356277466, 0.10724562406539917, -0.023224761709570885,
|
249 |
+
0.12378374487161636, -0.40286359190940857, 0.2856493294239044,
|
250 |
+
0.32599860429763794, 0.026490285992622375, -0.3517420291900635,
|
251 |
+
-0.0765577107667923, -0.17459309101104736, -0.12333659082651138,
|
252 |
+
0.06946815550327301, 0.2500999867916107, -0.3611396849155426,
|
253 |
+
0.3242715001106262, -0.06305339187383652, 0.09182971715927124,
|
254 |
+
-0.21497699618339539, 0.12076327949762344, -0.13879600167274475,
|
255 |
+
0.5170334577560425, 0.16767451167106628, 0.14764876663684845,
|
256 |
+
0.15926384925842285, -0.013447372242808342, 0.02799428068101406,
|
257 |
+
-0.13118316233158112, 0.26411715149879456, -0.03330446034669876,
|
258 |
+
-0.13786320388317108, -0.019303331151604652, -0.2513238191604614,
|
259 |
+
-0.30914002656936646, 0.10405226796865463, 0.4349321126937866,
|
260 |
+
0.156248077750206, -0.2640346884727478, 0.13212081789970398,
|
261 |
+
0.02700592391192913, -0.17705465853214264, -0.02212756685912609,
|
262 |
+
0.3136715888977051, 0.37114420533180237, -0.08701922744512558,
|
263 |
+
0.004809900186955929, -0.061114538460969925, 0.34787875413894653,
|
264 |
+
-0.30312299728393555, 0.29660314321517944, -0.02835816517472267,
|
265 |
+
-0.14178147912025452, -0.03642901033163071, 0.09250845015048981,
|
266 |
+
-0.16234682500362396, -0.030553802847862244, 0.10438361763954163,
|
267 |
+
0.1076929047703743, -0.133143350481987, -0.12030476331710815,
|
268 |
+
-0.22901660203933716, 0.03109668754041195, 0.29493486881256104,
|
269 |
+
0.2913263142108917, 0.029328005388379097, -0.1557757407426834,
|
270 |
+
-0.05418432503938675, 0.23923785984516144, -0.26692521572113037,
|
271 |
+
0.02138669230043888, 0.04921586066484451, -0.050286781042814255
|
272 |
+
],
|
273 |
+
"metadata": {
|
274 |
+
"chunk_index": 1,
|
275 |
+
"original_text": " in\ndeveloping Python-based infrastructures for graph search functionality, utilizing frameworks\nsuch as FastAPI and Uvicorn. I have led end-to-end development of features, improving user\nexperiences and backend processes with technologies like Node.js and TypeScript. This\nexperience has sharpened my software development skills and my ability to translate\ncomplex machine learning concepts into practical applications, a key requirement for the role\nat Grazper.\nIn addition to my professional experience, I hol",
|
276 |
+
"document_id": "document_1"
|
277 |
+
}
|
278 |
+
},
|
279 |
+
{
|
280 |
+
"embedding": [
|
281 |
+
0.013988866470754147, 0.009772575460374355, -0.07697077840566635,
|
282 |
+
-0.5277013778686523, -0.03599068522453308, 0.04293028637766838,
|
283 |
+
0.026595642790198326, 0.16870427131652832, 0.02901292033493519,
|
284 |
+
-0.08016899228096008, 0.11417479813098907, -0.16175605356693268,
|
285 |
+
0.16823694109916687, -0.09064742922782898, -0.2103092521429062,
|
286 |
+
0.0973624736070633, -0.16325443983078003, 0.3468376696109772,
|
287 |
+
0.11349105834960938, -0.033790890127420425, -0.32829850912094116,
|
288 |
+
-0.4019812047481537, 0.5082429647445679, -0.4754713177680969,
|
289 |
+
0.18022166192531586, 0.02994062379002571, 0.2435712069272995,
|
290 |
+
-0.10483300685882568, 0.17384067177772522, -0.40383103489875793,
|
291 |
+
0.2563911974430084, -0.1402626782655716, 0.29941558837890625,
|
292 |
+
-0.19104430079460144, -0.2906481921672821, 0.20913347601890564,
|
293 |
+
-0.2209208905696869, 0.04728168621659279, 0.14687934517860413,
|
294 |
+
0.09018655866384506, -0.03140511363744736, -0.08536497503519058,
|
295 |
+
0.1911802589893341, -0.13382790982723236, 0.24776741862297058,
|
296 |
+
0.18762889504432678, -0.13064470887184143, 0.041356995701789856,
|
297 |
+
-0.09894765168428421, 0.19973768293857574, -0.15362919867038727,
|
298 |
+
-0.39091813564300537, -0.020289571955800056, -0.2908436357975006,
|
299 |
+
0.17111779749393463, 0.39243534207344055, 0.1049342229962349,
|
300 |
+
-0.06353115290403366, -0.10738345980644226, -0.06623997539281845,
|
301 |
+
0.006503010168671608, -0.20021232962608337, 0.12132610380649567,
|
302 |
+
0.18066610395908356, 0.28481751680374146, 0.2564224600791931,
|
303 |
+
-0.3316217064857483, -0.02455279976129532, -0.11230932921171188,
|
304 |
+
-0.0882234275341034, 0.045895688235759735, 0.05798376351594925,
|
305 |
+
-0.35503560304641724, -0.00942149106413126, 0.1965806782245636,
|
306 |
+
-0.17775090038776398, -0.22013035416603088, 0.05626828968524933,
|
307 |
+
0.25009000301361084, -0.11653491854667664, 0.4294302761554718,
|
308 |
+
0.21100100874900818, -0.272830069065094, 0.2696194052696228,
|
309 |
+
0.20279239118099213, 0.04450366273522377, 0.11855562031269073,
|
310 |
+
0.042507048696279526, 0.07155176252126694, 0.016281532123684883,
|
311 |
+
0.08079811185598373, -0.22123004496097565, -0.31201261281967163,
|
312 |
+
-0.11962585151195526, 0.06222723051905632, 0.022251728922128677,
|
313 |
+
0.25301477313041687, -0.12497591972351074, 0.11421780288219452,
|
314 |
+
0.1109943687915802, -0.3038150668144226, -0.27057990431785583,
|
315 |
+
-0.29560789465904236, -0.15634912252426147, -0.29081544280052185,
|
316 |
+
-0.06576485186815262, 0.10407009720802307, -0.08469457924365997,
|
317 |
+
0.07107436656951904, -0.06196335703134537, -0.13987065851688385,
|
318 |
+
-0.2693849802017212, -0.19501042366027832, -0.02594425156712532,
|
319 |
+
0.19431406259536743, -0.17793938517570496, -0.1289641410112381,
|
320 |
+
0.17820191383361816, -0.01773165352642536, -0.30852019786834717,
|
321 |
+
0.022875117138028145, -0.13291741907596588, 0.12550804018974304,
|
322 |
+
0.25782647728919983, 0.14461439847946167, 0.059871479868888855,
|
323 |
+
-0.2707977592945099, 0.18488582968711853, -0.23040245473384857,
|
324 |
+
0.2176770120859146, 0.18608532845973969, 0.06800312548875809,
|
325 |
+
-0.09149574488401413, -0.15638367831707, 0.2578609585762024,
|
326 |
+
0.0445115827023983, 0.000697396113537252, -0.15692591667175293,
|
327 |
+
-0.2712707221508026, 0.1334211677312851, -0.029608551412820816,
|
328 |
+
0.1572578102350235, -0.1251588612794876, 0.1201043501496315,
|
329 |
+
0.41719573736190796, 0.15653592348098755, -0.11922315508127213,
|
330 |
+
0.09000558406114578, 0.19585710763931274, -0.010324874892830849,
|
331 |
+
-0.012976245954632759, -0.15166430175304413, 0.1627943515777588,
|
332 |
+
-0.14536593854427338, 0.39570996165275574, 0.23230884969234467,
|
333 |
+
0.2565193772315979, 0.1329224407672882, -0.18269237875938416,
|
334 |
+
0.06180332601070404, -0.22631584107875824, -0.1635275036096573,
|
335 |
+
0.11532659828662872, -0.07743898034095764, -0.0495561920106411,
|
336 |
+
-0.14313921332359314, 0.05830833688378334, 0.10944662988185883,
|
337 |
+
0.09754525125026703, 0.2818155884742737, 0.05398925021290779,
|
338 |
+
-0.11050605028867722, -0.13195163011550903, 0.2560615539550781,
|
339 |
+
0.42309123277664185, -0.051930248737335205, -0.1686854511499405,
|
340 |
+
-0.03916634991765022, -0.02523970603942871, 0.12050961703062057,
|
341 |
+
-0.04158899560570717, -0.23398390412330627, 0.30656203627586365,
|
342 |
+
0.05977833271026611, 0.06580270826816559, 0.2560853064060211,
|
343 |
+
-0.08495905995368958, 0.0634983628988266, -0.5020921230316162,
|
344 |
+
0.023457765579223633, -0.3360397517681122, 0.05546102672815323,
|
345 |
+
-0.02133578062057495, 0.16779135167598724, -0.051444049924612045,
|
346 |
+
-0.22914136946201324, 0.35076791048049927, -0.021180041134357452,
|
347 |
+
-0.16918198764324188, 0.1373990923166275, -0.19760197401046753,
|
348 |
+
-0.2072182446718216, -0.02753942273557186, -0.26097655296325684,
|
349 |
+
-0.2720176875591278, 0.15882036089897156, -0.07624292373657227,
|
350 |
+
0.13536939024925232, -0.04124379903078079, 0.5096920728683472,
|
351 |
+
-0.20048142969608307, -0.19895435869693756, 0.09626254439353943,
|
352 |
+
0.05621776729822159, 0.0475582480430603, -0.22984498739242554,
|
353 |
+
0.0820910781621933, 0.12450147420167923, -0.11195719242095947,
|
354 |
+
-0.05632682889699936, -0.36616629362106323, 0.2547006905078888,
|
355 |
+
-0.33328181505203247, -0.18086092174053192, -0.27529752254486084,
|
356 |
+
-0.015548295341432095, -0.25372281670570374, 0.10733789950609207,
|
357 |
+
-0.03351428732275963, 0.35335060954093933, 0.06400611996650696,
|
358 |
+
0.007075935136526823, 0.12049706280231476, -0.03795187175273895,
|
359 |
+
0.10003259778022766, -0.003338200505822897, -0.07015478610992432,
|
360 |
+
-0.06377975642681122, -0.33585450053215027, -0.06821471452713013,
|
361 |
+
-0.17764148116111755, -0.13860219717025757, -0.37636852264404297,
|
362 |
+
-0.068287193775177, 0.15915709733963013, 0.13376763463020325,
|
363 |
+
0.007174578960984945, 0.013595127500593662, -0.024088751524686813,
|
364 |
+
0.724016547203064, -0.13526573777198792, -0.15156669914722443,
|
365 |
+
-0.029875727370381355, -0.022745540365576744, -0.03671274706721306,
|
366 |
+
0.001912034465931356, -0.029748370870947838, 0.04387735575437546,
|
367 |
+
0.005105192773044109, 0.3666291832923889, 0.06219151243567467,
|
368 |
+
-0.15134115517139435, -0.2842429280281067, 0.27352413535118103,
|
369 |
+
-0.0010562035022303462, -0.0860423594713211, -0.2557184100151062,
|
370 |
+
0.10701727867126465, -0.03424200415611267, -0.25005871057510376,
|
371 |
+
-0.10491706430912018, -0.04402339830994606, 0.3279029428958893,
|
372 |
+
0.22961114346981049, -0.13808035850524902, 0.08910425007343292,
|
373 |
+
0.09389813989400864, -0.30071109533309937, 0.005648374557495117,
|
374 |
+
0.0959465354681015, 0.10952262580394745, -0.2696903645992279,
|
375 |
+
0.530269205570221, 0.12089592963457108, -0.03006851300597191,
|
376 |
+
-0.1808408796787262, -0.09051324427127838, -0.009478001855313778,
|
377 |
+
-0.2201218456029892, 0.040602199733257294, -0.14035409688949585,
|
378 |
+
0.31660112738609314, -0.284636527299881, -0.0014847568236291409,
|
379 |
+
-0.055018261075019836, 0.23818261921405792, 0.5450748205184937,
|
380 |
+
0.03850749880075455, -0.07492862641811371, -0.19553939998149872,
|
381 |
+
0.025516191497445107, 0.3212626576423645, 0.1582791805267334,
|
382 |
+
0.03792853280901909, -0.23657742142677307, -0.014457505196332932,
|
383 |
+
0.07321174442768097, 0.018692651763558388, -0.1128687858581543,
|
384 |
+
0.25704583525657654, 0.053391795605421066, -0.17439015209674835,
|
385 |
+
0.16939805448055267, -0.11131791025400162, -0.18580780923366547,
|
386 |
+
0.3147943615913391, 0.11233188211917877, -0.05110953003168106,
|
387 |
+
0.028003089129924774, -0.12326303124427795, -0.022206952795386314,
|
388 |
+
-0.17835982143878937, 0.04718323424458504, 0.1614646315574646,
|
389 |
+
-0.11658908426761627, -0.21354904770851135, -0.4944709539413452,
|
390 |
+
-0.07794719189405441, -0.23418644070625305, -0.0085296630859375,
|
391 |
+
-0.07155730575323105, -0.09174530953168869, 0.03432714566588402,
|
392 |
+
0.32421624660491943, 0.30536872148513794, 0.05556889623403549,
|
393 |
+
0.25375014543533325, 0.32741400599479675, -0.20053958892822266,
|
394 |
+
-0.09652526676654816, 0.30723467469215393, -0.03932889923453331,
|
395 |
+
-0.2333076149225235, -0.21915099024772644, -0.18416112661361694,
|
396 |
+
-0.028175434097647667, -0.35295742750167847, 0.24069668352603912,
|
397 |
+
-0.329507052898407, 0.02568727359175682, 0.1910247951745987,
|
398 |
+
0.18070967495441437, 0.015030832029879093, 0.13173998892307281,
|
399 |
+
0.4395912289619446, 0.020076770335435867, -0.11211104691028595,
|
400 |
+
-0.04472104832530022, -0.15479309856891632, 0.19252893328666687,
|
401 |
+
-0.10634679347276688, 0.3758567273616791, 0.10992991924285889,
|
402 |
+
0.11971727758646011, 0.015016624704003334, 0.268669068813324,
|
403 |
+
0.21397770941257477, -0.42052748799324036, 0.1749364584684372,
|
404 |
+
0.10246860235929489, -0.08281025290489197, 0.12053931504487991,
|
405 |
+
-0.029571877792477608, 0.06287650763988495, 0.07648714631795883,
|
406 |
+
0.49447712302207947, 0.38575661182403564, -0.039578039199113846,
|
407 |
+
-0.31646233797073364, 0.3268736004829407, -0.034393709152936935,
|
408 |
+
-0.1308891326189041, -0.3082536458969116, -0.038989122956991196
|
409 |
+
],
|
410 |
+
"metadata": {
|
411 |
+
"chunk_index": 2,
|
412 |
+
"original_text": "d a Master\u2019s in Human-Centered Artificial\nIntelligence from Denmark\u2019s Technical University. During my studies, I focused on computer\nvision and deep learning, gaining familiarity with models such as AlphaPose with its\nResNet-50 backbone for 2D pose estimation, and MotionBERT for 3D pose estimation.\nThese skills will be invaluable in collaborating with the diverse and talented team at Grazper.\nThank you for considering my application. I am eager to bring my skills in machine learning,\ncomputer vision, and so",
|
413 |
+
"document_id": "document_1"
|
414 |
+
}
|
415 |
+
},
|
416 |
+
{
|
417 |
+
"embedding": [
|
418 |
+
-0.17057926952838898, -0.18056435883045197, 0.17874811589717865,
|
419 |
+
-0.24692542850971222, 0.08875348418951035, -0.16057495772838593,
|
420 |
+
-0.2947237193584442, -0.09760632365942001, -0.3695824146270752,
|
421 |
+
-0.1081346794962883, -0.08244919776916504, 0.1590539813041687,
|
422 |
+
-0.37315043807029724, -0.16557790338993073, 0.05388304218649864,
|
423 |
+
0.18959444761276245, 0.05616177245974541, -0.1521427482366562,
|
424 |
+
-0.011044452898204327, -0.2991838753223419, -0.5415858626365662,
|
425 |
+
-0.15850338339805603, 0.08368390798568726, -0.2840047776699066,
|
426 |
+
-0.4626734256744385, 0.07918327301740646, -0.15771375596523285,
|
427 |
+
0.055745165795087814, 0.06039033457636833, 0.10576166957616806,
|
428 |
+
0.14637677371501923, -0.12966641783714294, 0.15112905204296112,
|
429 |
+
-0.10882297158241272, 0.0831327959895134, 0.3053250014781952,
|
430 |
+
-0.1090482696890831, -0.21646811068058014, -0.0723540410399437,
|
431 |
+
0.1768709272146225, 0.15091560781002045, -0.1670808047056198,
|
432 |
+
-0.23217593133449554, 0.05315786600112915, 0.07969140261411667,
|
433 |
+
-0.08742230385541916, 0.054999034851789474, 0.029913583770394325,
|
434 |
+
-0.46523818373680115, -0.023505324497818947, -0.006620466709136963,
|
435 |
+
-0.4610905349254608, -0.05861319974064827, -0.17345033586025238,
|
436 |
+
-0.00984229613095522, 0.30270761251449585, -0.0534597784280777,
|
437 |
+
0.396877646446228, -0.25802555680274963, -0.2620239555835724,
|
438 |
+
0.6612103581428528, -0.7389700412750244, -0.2570512890815735,
|
439 |
+
0.23041550815105438, -0.007624936755746603, 0.08425908535718918,
|
440 |
+
0.16316314041614532, 0.4003213346004486, -0.34814539551734924,
|
441 |
+
-0.08602998405694962, 0.02805815078318119, -0.09709612280130386,
|
442 |
+
-0.11298224329948425, 0.21826571226119995, 0.3271501958370209,
|
443 |
+
-0.025520084425807, 0.28215348720550537, -0.23470544815063477,
|
444 |
+
0.40283119678497314, -0.06853780150413513, -0.06725117564201355,
|
445 |
+
0.3321322202682495, -0.17742429673671722, 0.034416504204273224,
|
446 |
+
-0.2010757476091385, 0.037462640553712845, 0.18448461592197418,
|
447 |
+
0.05062900483608246, -0.09977362304925919, -0.2601906955242157,
|
448 |
+
0.09897628426551819, -0.057262539863586426, 0.10090603679418564,
|
449 |
+
-0.17503929138183594, 0.06618431955575943, 0.6666281819343567,
|
450 |
+
-0.1362410932779312, -0.384453684091568, 0.21279555559158325,
|
451 |
+
-0.13722674548625946, -0.3226565718650818, -0.19039791822433472,
|
452 |
+
-0.40829870104789734, -0.18344943225383759, -0.4740666449069977,
|
453 |
+
-0.20035332441329956, 0.04584405943751335, 0.5349867939949036,
|
454 |
+
0.10716050863265991, -0.14564929902553558, -0.01191670447587967,
|
455 |
+
0.4656716287136078, -0.48825570940971375, -0.24784664809703827,
|
456 |
+
-0.11606228351593018, -0.05802522227168083, -0.642017662525177,
|
457 |
+
-0.11561501771211624, 0.3360680639743805, -0.13027818500995636,
|
458 |
+
0.11607497185468674, -0.10027345269918442, 0.01004248857498169,
|
459 |
+
-0.08595599979162216, -0.0844733789563179, -0.14454565942287445,
|
460 |
+
-0.056235421448946, 0.3244708776473999, -0.33965757489204407,
|
461 |
+
0.27919355034828186, 0.12023261189460754, 0.025233805179595947,
|
462 |
+
0.5607754588127136, 0.09189464896917343, 0.21856947243213654,
|
463 |
+
0.13591863214969635, -0.11218412965536118, -0.11236725002527237,
|
464 |
+
0.004569899290800095, -0.24149036407470703, -0.19229920208454132,
|
465 |
+
0.0816204622387886, 0.13429443538188934, -0.30488455295562744,
|
466 |
+
0.02899700403213501, 0.6271782517433167, 0.05560385808348656,
|
467 |
+
-0.2227921038866043, 0.1192433163523674, 0.09854307770729065,
|
468 |
+
0.08676860481500626, 0.1465993970632553, 0.5897104144096375,
|
469 |
+
0.06953510642051697, 0.20541737973690033, -0.05917692556977272,
|
470 |
+
0.20963554084300995, 0.02599707990884781, 0.2945230305194855,
|
471 |
+
0.006245419383049011, -0.17982161045074463, -0.006386511027812958,
|
472 |
+
0.04850341007113457, -0.21807079017162323, -0.5421847701072693,
|
473 |
+
-0.29596614837646484, -0.1081230565905571, -0.1715943068265915,
|
474 |
+
0.07062195986509323, 0.09676891565322876, -0.4328734874725342,
|
475 |
+
-0.29839298129081726, -0.02677059732377529, -0.12668651342391968,
|
476 |
+
0.09851225465536118, 0.053403373807668686, 0.29059281945228577,
|
477 |
+
0.1567283272743225, 0.04403528571128845, 0.24883611500263214,
|
478 |
+
0.04530647397041321, -0.07979448139667511, 0.512474000453949,
|
479 |
+
-0.08876341581344604, -0.10184746980667114, 0.15809588134288788,
|
480 |
+
0.13013868033885956, -0.010477096773684025, -0.13886688649654388,
|
481 |
+
-0.27646544575691223, -0.1351751834154129, 0.00411967420950532,
|
482 |
+
0.32289111614227295, 0.17202621698379517, 0.2794763743877411,
|
483 |
+
0.00417540455237031, 0.31409361958503723, 0.1716548353433609,
|
484 |
+
-0.3168907165527344, -0.15685218572616577, -0.2612287700176239,
|
485 |
+
0.08977014571428299, -0.3643103539943695, 0.40544387698173523,
|
486 |
+
-0.22000861167907715, 0.34291040897369385, -0.2108910083770752,
|
487 |
+
0.01934780925512314, -0.26528501510620117, 0.20353345572948456,
|
488 |
+
-0.11302223056554794, -0.03993882238864899, 0.0010008016834035516,
|
489 |
+
0.34334659576416016, 0.28366005420684814, 0.09351520985364914,
|
490 |
+
0.07680563628673553, 0.4781200587749481, 0.0961938425898552,
|
491 |
+
0.029414715245366096, -0.5612682104110718, 0.05018291994929314,
|
492 |
+
-0.2829304039478302, -0.19249612092971802, -0.04445188120007515,
|
493 |
+
-0.09742585569620132, -0.057653848081827164, -0.18726100027561188,
|
494 |
+
-0.17726238071918488, -0.164778932929039, -0.42939820885658264,
|
495 |
+
0.002938276855275035, 0.12355884909629822, 0.2261592298746109,
|
496 |
+
-0.0297679603099823, 0.5149938464164734, -0.07838592678308487,
|
497 |
+
-0.055715423077344894, -0.615290641784668, 0.4492502212524414,
|
498 |
+
-0.1399228572845459, -0.21202875673770905, -0.07486186176538467,
|
499 |
+
-0.0019845005590468645, -0.10727852582931519, 0.3997543752193451,
|
500 |
+
-0.06422682106494904, 0.04629531502723694, -0.051474422216415405,
|
501 |
+
-0.08212905377149582, -0.15812474489212036, -0.23525851964950562,
|
502 |
+
-0.31024113297462463, 0.09600772708654404, 0.16308961808681488,
|
503 |
+
0.03703877702355385, -0.09056935459375381, 0.0263179000467062,
|
504 |
+
-0.025780832394957542, 0.4596518576145172, 0.17200203239917755,
|
505 |
+
-0.27327924966812134, 0.0948433056473732, 0.16995972394943237,
|
506 |
+
0.4649544656276703, 0.053780436515808105, -0.21725666522979736,
|
507 |
+
0.036330342292785645, -0.11655876040458679, -0.3536188304424286,
|
508 |
+
-0.16033925116062164, -0.0896374061703682, -0.06019500270485878,
|
509 |
+
0.03324366733431816, 0.2474920153617859, 0.16947411000728607,
|
510 |
+
0.24189674854278564, -0.430539608001709, -0.12391426414251328,
|
511 |
+
0.44584643840789795, 0.2716670036315918, -0.058399271219968796,
|
512 |
+
0.16280585527420044, 0.24642150104045868, 0.05343715474009514,
|
513 |
+
-0.1792370229959488, -0.11475316435098648, -0.20972512662410736,
|
514 |
+
0.19360233843326569, -0.023198269307613373, 0.1029631718993187,
|
515 |
+
0.075680673122406, -0.24139152467250824, 0.12079928070306778,
|
516 |
+
-0.22548045217990875, 0.49817657470703125, -0.08573079109191895,
|
517 |
+
-0.1694091111421585, -0.43969306349754333, -0.12315365672111511,
|
518 |
+
-0.033470720052719116, -0.1677587479352951, -0.4212625026702881,
|
519 |
+
0.07882001250982285, -0.3040688931941986, 0.2069259136915207,
|
520 |
+
0.32452520728111267, 0.0956583321094513, 0.031017357483506203,
|
521 |
+
-0.1563490480184555, 0.09361779689788818, 0.1395430862903595,
|
522 |
+
-0.07491523772478104, -0.024529727175831795, -0.27605006098747253,
|
523 |
+
0.003965266048908234, -0.44428905844688416, 0.3070920705795288,
|
524 |
+
0.14596858620643616, 0.17902357876300812, 0.13800273835659027,
|
525 |
+
0.09761538356542587, 0.11564639955759048, 0.24444955587387085,
|
526 |
+
-0.036987558007240295, 0.08244757354259491, -0.20404930412769318,
|
527 |
+
0.11136392503976822, 0.11802738904953003, 0.2855495512485504,
|
528 |
+
-0.29498741030693054, -0.3250756561756134, -0.09225296974182129,
|
529 |
+
0.3871002197265625, 0.36343657970428467, -0.11429200321435928,
|
530 |
+
-0.07309722900390625, 0.29477035999298096, -0.2714035212993622,
|
531 |
+
-0.1906641274690628, 0.16833727061748505, 0.10350292921066284,
|
532 |
+
0.20727258920669556, 0.5795057415962219, -0.09058484435081482,
|
533 |
+
-0.26228728890419006, 0.5038650035858154, 0.358115553855896,
|
534 |
+
0.3062088191509247, -0.027772584930062294, 0.00807807594537735,
|
535 |
+
0.20609737932682037, 0.09749587625265121, -0.06461245566606522,
|
536 |
+
0.24591054022312164, 0.11335548013448715, -0.29779571294784546,
|
537 |
+
0.2802286148071289, 0.05887098237872124, 0.0729975476861,
|
538 |
+
-0.1312135010957718, 0.5458757877349854, -0.07242148369550705,
|
539 |
+
0.31486520171165466, 0.1837015151977539, 0.19176726043224335,
|
540 |
+
-0.16340510547161102, -0.06420987099409103, -0.18956546485424042,
|
541 |
+
-0.047449126839637756, 0.023281162604689598, -0.019729606807231903,
|
542 |
+
0.11221233010292053, 0.16048510372638702, 0.22087474167346954,
|
543 |
+
0.1040259301662445, 0.015955524519085884, -0.11575893312692642,
|
544 |
+
-0.08942530304193497, 0.15787002444267273, -0.1510617882013321,
|
545 |
+
0.02346060611307621, 0.3464442491531372, 0.04414486885070801
|
546 |
+
],
|
547 |
+
"metadata": {
|
548 |
+
"chunk_index": 3,
|
549 |
+
"original_text": "ftware development to Grazper and to help drive the continued\ninnovation that the company is known for. I look forward to the possibility of discussing how\nmy background, skills, and experiences align with the needs of your team.\nSincerely,",
|
550 |
+
"document_id": "document_1"
|
551 |
+
}
|
552 |
+
}
|
553 |
+
]
|
554 |
+
},
|
555 |
+
"document_2": {
|
556 |
+
"metadata": { "filename": "doc_test.pdf", "chunks": 4 },
|
557 |
+
"data": [
|
558 |
+
{
|
559 |
+
"embedding": [
|
560 |
+
-0.09148407727479935, -0.3296155333518982, 0.19553515315055847,
|
561 |
+
-0.13005883991718292, -0.023037904873490334, -0.27768027782440186,
|
562 |
+
-0.15001057088375092, 0.061617735773324966, -0.21048811078071594,
|
563 |
+
-0.1158759668469429, 0.00262309773825109, -0.18505680561065674,
|
564 |
+
-0.36614593863487244, 0.01263430155813694, -0.23454351723194122,
|
565 |
+
0.026990391314029694, 0.10782455652952194, 0.20590373873710632,
|
566 |
+
0.01619311049580574, -0.29646965861320496, -0.49789899587631226,
|
567 |
+
-0.3155633509159088, 0.22015143930912018, -0.17993934452533722,
|
568 |
+
-0.2728782892227173, -0.24151268601417542, -0.2213350087404251,
|
569 |
+
-0.1546640843153, 0.18654145300388336, -0.3817594647407532,
|
570 |
+
0.27131369709968567, -0.16452756524085999, 0.4666154384613037,
|
571 |
+
-0.23997938632965088, -0.16251197457313538, 0.45274969935417175,
|
572 |
+
-0.06473690271377563, 0.030141692608594894, 0.18030805885791779,
|
573 |
+
0.3573063910007477, 0.057827189564704895, -0.5050416588783264,
|
574 |
+
0.14762045443058014, -0.24115344882011414, 0.12714245915412903,
|
575 |
+
-0.30607476830482483, 0.03628716245293617, -0.1717076599597931,
|
576 |
+
-0.07239308208227158, -0.10611303895711899, -0.20394517481327057,
|
577 |
+
-0.357207328081131, 0.07243036478757858, -0.27321791648864746,
|
578 |
+
-0.005590340122580528, 0.18584828078746796, 0.14657430350780487,
|
579 |
+
0.00868619792163372, -0.23141932487487793, -0.15293444693088531,
|
580 |
+
0.4537033438682556, -0.050794072449207306, -0.1081295758485794,
|
581 |
+
0.24416445195674896, 0.32709094882011414, -0.1073112040758133,
|
582 |
+
-0.002160100731998682, -0.14978720247745514, -0.08192038536071777,
|
583 |
+
0.04925680160522461, 0.08451664447784424, -0.10695666819810867,
|
584 |
+
-0.3269720673561096, -0.011846603825688362, 0.1591711789369583,
|
585 |
+
0.03670593723654747, 0.27853694558143616, 0.057576391845941544,
|
586 |
+
0.627304196357727, -0.09007762372493744, 0.3147648274898529,
|
587 |
+
0.040534473955631256, -0.1886814385652542, 0.07377851009368896,
|
588 |
+
-0.11277369409799576, -0.06923136860132217, 0.23174744844436646,
|
589 |
+
0.12746192514896393, 0.24344752728939056, -0.07483936846256256,
|
590 |
+
0.16249415278434753, -0.279635488986969, -0.16499225795269012,
|
591 |
+
-0.28518205881118774, 0.2098291516304016, 0.27612876892089844,
|
592 |
+
-0.28646302223205566, 0.1196957528591156, -0.3333701193332672,
|
593 |
+
0.04434604197740555, -0.2624748647212982, -0.21890603005886078,
|
594 |
+
-0.08524201810359955, -0.0075501492246985435, -0.4198438227176666,
|
595 |
+
-0.0592561811208725, -0.10367451608181, -0.1156446784734726,
|
596 |
+
0.1438761055469513, 0.0052966708317399025, -0.09201934933662415,
|
597 |
+
0.36266717314720154, -0.21685782074928284, 0.1420959085226059,
|
598 |
+
0.10085764527320862, 0.02429366298019886, -0.10447590798139572,
|
599 |
+
-0.1402379870414734, 0.14102685451507568, 0.10799302160739899,
|
600 |
+
-0.17230382561683655, -0.15043006837368011, 0.07193934917449951,
|
601 |
+
0.1495690643787384, -0.019986119121313095, -0.0347922220826149,
|
602 |
+
-0.27049851417541504, 0.13336730003356934, -0.11616193503141403,
|
603 |
+
0.2649662494659424, 0.330400675535202, 0.04918519780039787,
|
604 |
+
0.12089464068412781, -0.09495944529771805, -0.28842809796333313,
|
605 |
+
0.04238158464431763, 0.05436383932828903, -0.08257465064525604,
|
606 |
+
-0.031113239005208015, -0.11439044773578644, 0.06356312334537506,
|
607 |
+
0.16110284626483917, -0.4002474248409271, -0.014672113582491875,
|
608 |
+
0.330425888299942, -0.03440795838832855, 0.19075387716293335,
|
609 |
+
-0.3702341616153717, -0.19534951448440552, 0.1684616357088089,
|
610 |
+
-0.09864974766969681, 0.12697818875312805, 0.1819300651550293,
|
611 |
+
0.07670610398054123, 0.3232901692390442, 0.04667458310723305,
|
612 |
+
0.09191926568746567, 0.06742186844348907, 0.026456736028194427,
|
613 |
+
-0.02663232572376728, -0.17225997149944305, 0.19716386497020721,
|
614 |
+
0.02224832773208618, -0.03200436756014824, -0.08198100328445435,
|
615 |
+
-0.2442745566368103, 0.06113841384649277, 0.0807797834277153,
|
616 |
+
0.04088904708623886, 0.2907366454601288, 0.22261427342891693,
|
617 |
+
0.10915300250053406, 0.017830494791269302, -0.02144521474838257,
|
618 |
+
0.4247247576713562, -0.007936686277389526, 0.20204278826713562,
|
619 |
+
0.17006978392601013, 0.04741619527339935, 0.31061092019081116,
|
620 |
+
0.12313715368509293, -0.13362251222133636, 0.3784801661968231,
|
621 |
+
0.16054050624370575, 0.08082814514636993, 0.05647144094109535,
|
622 |
+
-0.0050701238214969635, 0.07090428471565247, -0.41181671619415283,
|
623 |
+
0.08139584213495255, -0.2981043756008148, 0.011231742799282074,
|
624 |
+
0.02322234958410263, 0.03604107350111008, 0.01680818758904934,
|
625 |
+
0.07644037157297134, 0.2796001136302948, 0.014765125699341297,
|
626 |
+
0.025432690978050232, 0.2253454178571701, -0.21646393835544586,
|
627 |
+
-0.21112558245658875, -0.12944644689559937, 0.08615317195653915,
|
628 |
+
-0.19481784105300903, -0.02482978068292141, -0.2655474543571472,
|
629 |
+
0.18308250606060028, 0.1057799756526947, 0.46467578411102295,
|
630 |
+
0.13872161507606506, -0.16284668445587158, -0.10319432616233826,
|
631 |
+
0.28903090953826904, -0.049684423953294754, -0.11852547526359558,
|
632 |
+
0.15179845690727234, 0.4315755367279053, 0.16684380173683167,
|
633 |
+
0.21633920073509216, -0.23727011680603027, 0.23591041564941406,
|
634 |
+
-0.236463725566864, -0.10205617547035217, -0.38227447867393494,
|
635 |
+
-0.3208659291267395, -0.16321201622486115, -0.2047148197889328,
|
636 |
+
0.035120557993650436, 0.1217074990272522, -0.09423492103815079,
|
637 |
+
0.10800852626562119, -0.12016260623931885, -0.01766962558031082,
|
638 |
+
-0.21207456290721893, 0.18253299593925476, 0.09813184291124344,
|
639 |
+
-0.14369548857212067, -0.4996097981929779, 0.05356284976005554,
|
640 |
+
-0.13140559196472168, -0.10310748219490051, -0.3297559916973114,
|
641 |
+
0.13165785372257233, 0.29243674874305725, 0.6235761046409607,
|
642 |
+
-0.018105201423168182, 0.4351204037666321, -0.3157229423522949,
|
643 |
+
0.14044661819934845, 0.32561150193214417, -0.045231807976961136,
|
644 |
+
-0.22902421653270721, -0.04736926779150963, 0.00638209143653512,
|
645 |
+
0.2657054662704468, -0.1663697361946106, 0.21721374988555908,
|
646 |
+
0.06596962362527847, 0.4710530638694763, 0.1495056301355362,
|
647 |
+
-0.2131609320640564, -0.09281381219625473, 0.33491361141204834,
|
648 |
+
0.26699742674827576, -0.0664362758398056, -0.3143211007118225,
|
649 |
+
-0.11612315475940704, 0.09384771436452866, -0.31450754404067993,
|
650 |
+
-0.14105857908725739, -0.1692599505186081, 0.15440012514591217,
|
651 |
+
0.021970681846141815, -0.2492946833372116, -0.19831828773021698,
|
652 |
+
0.11038780957460403, -0.2564508020877838, -0.09789401292800903,
|
653 |
+
0.014864001423120499, 0.33063599467277527, -0.08587673306465149,
|
654 |
+
0.3573816120624542, 0.262990802526474, -0.23019948601722717,
|
655 |
+
-0.06639422476291656, 0.13446615636348724, -0.3160199522972107,
|
656 |
+
-0.2009458839893341, 0.0011719531612470746, 0.05401983484625816,
|
657 |
+
0.11232183128595352, -0.2915894389152527, 0.04823492094874382,
|
658 |
+
-0.11993903666734695, 0.1691748946905136, 0.10592252761125565,
|
659 |
+
0.11075671762228012, -0.20100106298923492, -0.0010831565596163273,
|
660 |
+
0.1340765357017517, -0.18890692293643951, -0.04269295558333397,
|
661 |
+
-0.008131876587867737, -0.16146209836006165, -0.09385553747415543,
|
662 |
+
0.14291250705718994, 0.11386755108833313, 0.10874597728252411,
|
663 |
+
0.30922049283981323, -0.1316504329442978, 0.09756156802177429,
|
664 |
+
0.10346060246229172, -0.09867636114358902, -0.022087613120675087,
|
665 |
+
0.00240744068287313, -0.18236050009727478, 0.14601346850395203,
|
666 |
+
-0.03863060474395752, -0.05868404731154442, 0.09617110341787338,
|
667 |
+
-0.031769558787345886, 0.2660558223724365, 0.327562540769577,
|
668 |
+
-0.083442322909832, 0.20325987040996552, -0.5998589396476746,
|
669 |
+
-0.312290757894516, -0.060986027121543884, -0.03271651640534401,
|
670 |
+
-0.21090127527713776, -0.22981834411621094, 0.05871429294347763,
|
671 |
+
0.34688451886177063, 0.20736956596374512, 0.13843078911304474,
|
672 |
+
-0.08390390127897263, 0.38931000232696533, -0.1773708462715149,
|
673 |
+
-0.35399889945983887, 0.2373276948928833, 0.05349014699459076,
|
674 |
+
0.08039376884698868, -0.11689640581607819, -0.14542360603809357,
|
675 |
+
-0.2895090878009796, -0.12660722434520721, 0.5266510248184204,
|
676 |
+
-0.09322528541088104, 0.02377072535455227, -0.12724241614341736,
|
677 |
+
0.3590814471244812, -0.13123689591884613, -0.10675929486751556,
|
678 |
+
0.3575019836425781, 0.09733907878398895, -0.027689877897500992,
|
679 |
+
-0.0075003644451498985, 0.08631216734647751, 0.07380516082048416,
|
680 |
+
-0.03189918026328087, 0.5251277089118958, 0.007510041352361441,
|
681 |
+
0.022245241329073906, 0.0560171902179718, 0.17317497730255127,
|
682 |
+
-0.06186212971806526, -0.22594772279262543, 0.2666807770729065,
|
683 |
+
0.016032816842198372, 0.12344001233577728, -0.12985070049762726,
|
684 |
+
0.19014285504817963, 0.17215973138809204, 0.20680564641952515,
|
685 |
+
0.08599716424942017, 0.057784561067819595, -0.21372999250888824,
|
686 |
+
0.14019109308719635, 0.287504106760025, -0.019741084426641464,
|
687 |
+
-0.2658323645591736, -0.4153008759021759, -0.0035018271300941706
|
688 |
+
],
|
689 |
+
"metadata": {
|
690 |
+
"chunk_index": 0,
|
691 |
+
"original_text": "Dear Hiring Manager,\nI am writing to express my interest in the Machine Learning / AI Scientist position at Grazper.\nWith a strong background in human-centered artificial intelligence, hands-on experience in\ndeveloping machine learning models, and a deep passion for applying AI to solve real-world\nproblems, I am excited about the opportunity to contribute to Grazper\u2019s innovative work in\nhuman pose estimation and behavioral analysis.\nMy role as Co-Founder of NeoCareU had provided me with extensive experience",
|
692 |
+
"document_id": "document_2"
|
693 |
+
}
|
694 |
+
},
|
695 |
+
{
|
696 |
+
"embedding": [
|
697 |
+
-0.3538837432861328, -0.2798934280872345, -0.20018577575683594,
|
698 |
+
-0.26204603910446167, 0.034382205456495285, -0.13982532918453217,
|
699 |
+
-0.10466007143259048, 0.0993245393037796, -0.44282111525535583,
|
700 |
+
0.11923752725124359, -0.26709482073783875, 0.24086952209472656,
|
701 |
+
0.30425047874450684, 0.14494290947914124, -0.0547223724424839,
|
702 |
+
0.2547502815723419, 0.07292310893535614, 0.14710913598537445,
|
703 |
+
0.009943760931491852, -0.3633028268814087, -0.21526381373405457,
|
704 |
+
-0.08017954230308533, 0.19093893468379974, -0.20139513909816742,
|
705 |
+
-0.07825083285570145, -0.14961154758930206, -0.13597117364406586,
|
706 |
+
-0.2867635488510132, 0.31594640016555786, -0.05897744372487068,
|
707 |
+
0.3434928059577942, 0.01670055091381073, -0.004828151315450668,
|
708 |
+
-0.16799041628837585, -0.2624547481536865, 0.3729349970817566,
|
709 |
+
-0.16509121656417847, -0.009788806550204754, -0.08342843502759933,
|
710 |
+
0.06767044216394424, -0.2468855082988739, 0.08895031362771988,
|
711 |
+
-0.22731740772724152, 0.008885922841727734, -0.0399138405919075,
|
712 |
+
-0.2195744812488556, 0.06591316312551498, 0.009177133440971375,
|
713 |
+
-0.26158878207206726, 0.18789461255073547, -0.24896378815174103,
|
714 |
+
-0.21397309005260468, -0.19919288158416748, -0.6077890396118164,
|
715 |
+
0.03060416877269745, 0.3999462425708771, 0.14030390977859497,
|
716 |
+
0.2664421498775482, -0.0935908854007721, -0.4413532018661499,
|
717 |
+
0.26173555850982666, -0.16536077857017517, 0.12178099900484085,
|
718 |
+
0.04045264795422554, 0.40474486351013184, 0.2618130147457123,
|
719 |
+
-0.08954939246177673, 0.10690316557884216, 0.28720661997795105,
|
720 |
+
-0.07987114042043686, -0.28882163763046265, -0.0728796124458313,
|
721 |
+
-0.5821951031684875, 0.3428257405757904, -0.17142491042613983,
|
722 |
+
0.03568922355771065, -0.03248533606529236, 0.08254002779722214,
|
723 |
+
0.18038401007652283, -0.06611607223749161, 0.13063442707061768,
|
724 |
+
0.09530947357416153, 0.03349321335554123, 0.08061643689870834,
|
725 |
+
0.18855029344558716, 0.4281195104122162, 0.0665719136595726,
|
726 |
+
0.04194939509034157, 0.12220165878534317, 0.010515543632209301,
|
727 |
+
0.32226571440696716, -0.16392198204994202, 0.05220913514494896,
|
728 |
+
0.1031077429652214, 0.16732420027256012, 0.23175019025802612,
|
729 |
+
0.114049032330513, -0.03328864276409149, -0.01976911723613739,
|
730 |
+
0.1048729196190834, -0.30282139778137207, -0.4392775595188141,
|
731 |
+
-0.1288718432188034, -0.14491643011569977, -0.04607124254107475,
|
732 |
+
-0.15156289935112, 0.09082774817943573, 0.10089505463838577,
|
733 |
+
0.14726434648036957, -0.28970447182655334, 0.0012887095799669623,
|
734 |
+
0.137145534157753, -0.11492237448692322, -0.0005263114580884576,
|
735 |
+
0.1958247274160385, -0.1868979036808014, -0.2419106811285019,
|
736 |
+
0.0737084224820137, 0.29266324639320374, 0.22295552492141724,
|
737 |
+
0.01409871969372034, 0.1825709491968155, 0.05382119491696358,
|
738 |
+
0.22769558429718018, 0.10486752539873123, 0.05040912330150604,
|
739 |
+
0.043187860399484634, 0.2241716831922531, -0.11450938135385513,
|
740 |
+
0.08844543993473053, 0.1747308224439621, 0.11177259683609009,
|
741 |
+
-0.16635563969612122, 0.04817083477973938, 0.1424458771944046,
|
742 |
+
-0.008763986639678478, -0.026816103607416153, -0.18446074426174164,
|
743 |
+
0.04244499281048775, 0.09155523777008057, -0.3308274447917938,
|
744 |
+
-0.01437363587319851, 0.36197471618652344, -0.1620330959558487,
|
745 |
+
0.2047397643327713, 0.329391747713089, 0.0022561252117156982,
|
746 |
+
-0.06276961416006088, -0.09117791056632996, -0.04820992425084114,
|
747 |
+
0.3016979396343231, -0.0438905730843544, 0.010144030675292015,
|
748 |
+
0.06051658093929291, 0.32839950919151306, 0.2443029284477234,
|
749 |
+
-0.011933633126318455, 0.03433694317936897, -0.016246959567070007,
|
750 |
+
-0.47122547030448914, -0.1264072209596634, 0.21262085437774658,
|
751 |
+
-0.23058561980724335, -0.14455263316631317, -0.1581219881772995,
|
752 |
+
-0.16299952566623688, -0.009553385898470879, -0.12317966669797897,
|
753 |
+
-0.32157713174819946, 0.014401085674762726, -0.10812263935804367,
|
754 |
+
-0.035570017993450165, -0.008989747613668442, 0.04400143772363663,
|
755 |
+
0.3484753966331482, 0.15835194289684296, -0.2735021114349365,
|
756 |
+
-0.20207005739212036, 0.12965133786201477, 0.19740435481071472,
|
757 |
+
0.07840030640363693, 0.13813409209251404, 0.12169253826141357,
|
758 |
+
0.29626813530921936, 0.22167962789535522, 0.020598750561475754,
|
759 |
+
0.0022713011130690575, -0.0909143015742302, -0.1911298930644989,
|
760 |
+
0.05455838888883591, -0.009145678021013737, -0.10562258213758469,
|
761 |
+
0.10980530083179474, -0.22284430265426636, 0.017850013449788094,
|
762 |
+
-0.2557089030742645, 0.5073012113571167, -0.15626712143421173,
|
763 |
+
0.10019747912883759, 0.07673435658216476, -0.04721244052052498,
|
764 |
+
0.09103629738092422, 0.25137683749198914, 0.03256136178970337,
|
765 |
+
-0.3687344789505005, 0.10282870382070541, 0.034714121371507645,
|
766 |
+
0.28792425990104675, 0.04069017246365547, 0.09102509915828705,
|
767 |
+
-0.18698477745056152, -0.09283294528722763, 0.008936312980949879,
|
768 |
+
0.07063670456409454, 0.03322990611195564, -0.4384145140647888,
|
769 |
+
0.027899615466594696, 0.29990917444229126, -0.1486257016658783,
|
770 |
+
0.22780683636665344, -0.19810570776462555, 0.3231505751609802,
|
771 |
+
-0.013205461204051971, -0.15059682726860046, -0.05794176831841469,
|
772 |
+
-0.09552647918462753, -0.06665200740098953, 0.13509976863861084,
|
773 |
+
-0.11283162981271744, -0.07114190608263016, -0.047759756445884705,
|
774 |
+
-0.26236239075660706, -0.11653725057840347, -0.02131793461740017,
|
775 |
+
-0.05627347156405449, 0.23980183899402618, 0.0045263562351465225,
|
776 |
+
-0.25390705466270447, -0.2928179204463959, 0.18057391047477722,
|
777 |
+
0.017003249377012253, 0.1607014238834381, 0.010452811606228352,
|
778 |
+
-0.056626081466674805, -0.10370110720396042, 0.031960926949977875,
|
779 |
+
-0.24065308272838593, 0.002884217770770192, 0.034187257289886475,
|
780 |
+
-0.036152441054582596, -0.1707221120595932, -0.47570931911468506,
|
781 |
+
-0.1582062691450119, 0.107045978307724, -0.09741715341806412,
|
782 |
+
-0.027678370475769043, -0.08357779681682587, -0.19195421040058136,
|
783 |
+
-0.05849793553352356, 0.38114577531814575, 0.26657727360725403,
|
784 |
+
-0.2921577990055084, -0.10123103857040405, 0.3657667338848114,
|
785 |
+
0.2964736819267273, -0.029240744188427925, -0.07505577802658081,
|
786 |
+
-0.03216531500220299, 0.05535158887505531, -0.01091919094324112,
|
787 |
+
-0.29223930835723877, 0.038467466831207275, 0.09036702662706375,
|
788 |
+
0.060414429754018784, 0.4073764383792877, 0.26183927059173584,
|
789 |
+
0.3148314356803894, -0.41392379999160767, -0.011577450670301914,
|
790 |
+
0.08124766498804092, 0.11839907616376877, 0.14485281705856323,
|
791 |
+
-0.1286170780658722, 0.2242894321680069, -0.1293884515762329,
|
792 |
+
-0.040836967527866364, -0.006037773098796606, 0.1143469512462616,
|
793 |
+
-0.1418261080980301, -0.048728104680776596, -0.1150873601436615,
|
794 |
+
0.06722237914800644, -0.3071898818016052, -0.30777737498283386,
|
795 |
+
-0.06533436477184296, 0.031248852610588074, 0.24998141825199127,
|
796 |
+
-0.1900501400232315, -0.0887349471449852, -0.12751400470733643,
|
797 |
+
-0.08780647814273834, -0.014166437089443207, -0.18369078636169434,
|
798 |
+
-0.0933438092470169, 0.0416223406791687, -0.06072313338518143,
|
799 |
+
0.2526116371154785, 0.026925235986709595, 0.12303062528371811,
|
800 |
+
-0.14535634219646454, 0.007273425813764334, 0.16847600042819977,
|
801 |
+
0.07287341356277466, 0.10724562406539917, -0.023224761709570885,
|
802 |
+
0.12378374487161636, -0.40286359190940857, 0.2856493294239044,
|
803 |
+
0.32599860429763794, 0.026490285992622375, -0.3517420291900635,
|
804 |
+
-0.0765577107667923, -0.17459309101104736, -0.12333659082651138,
|
805 |
+
0.06946815550327301, 0.2500999867916107, -0.3611396849155426,
|
806 |
+
0.3242715001106262, -0.06305339187383652, 0.09182971715927124,
|
807 |
+
-0.21497699618339539, 0.12076327949762344, -0.13879600167274475,
|
808 |
+
0.5170334577560425, 0.16767451167106628, 0.14764876663684845,
|
809 |
+
0.15926384925842285, -0.013447372242808342, 0.02799428068101406,
|
810 |
+
-0.13118316233158112, 0.26411715149879456, -0.03330446034669876,
|
811 |
+
-0.13786320388317108, -0.019303331151604652, -0.2513238191604614,
|
812 |
+
-0.30914002656936646, 0.10405226796865463, 0.4349321126937866,
|
813 |
+
0.156248077750206, -0.2640346884727478, 0.13212081789970398,
|
814 |
+
0.02700592391192913, -0.17705465853214264, -0.02212756685912609,
|
815 |
+
0.3136715888977051, 0.37114420533180237, -0.08701922744512558,
|
816 |
+
0.004809900186955929, -0.061114538460969925, 0.34787875413894653,
|
817 |
+
-0.30312299728393555, 0.29660314321517944, -0.02835816517472267,
|
818 |
+
-0.14178147912025452, -0.03642901033163071, 0.09250845015048981,
|
819 |
+
-0.16234682500362396, -0.030553802847862244, 0.10438361763954163,
|
820 |
+
0.1076929047703743, -0.133143350481987, -0.12030476331710815,
|
821 |
+
-0.22901660203933716, 0.03109668754041195, 0.29493486881256104,
|
822 |
+
0.2913263142108917, 0.029328005388379097, -0.1557757407426834,
|
823 |
+
-0.05418432503938675, 0.23923785984516144, -0.26692521572113037,
|
824 |
+
0.02138669230043888, 0.04921586066484451, -0.050286781042814255
|
825 |
+
],
|
826 |
+
"metadata": {
|
827 |
+
"chunk_index": 1,
|
828 |
+
"original_text": " in\ndeveloping Python-based infrastructures for graph search functionality, utilizing frameworks\nsuch as FastAPI and Uvicorn. I have led end-to-end development of features, improving user\nexperiences and backend processes with technologies like Node.js and TypeScript. This\nexperience has sharpened my software development skills and my ability to translate\ncomplex machine learning concepts into practical applications, a key requirement for the role\nat Grazper.\nIn addition to my professional experience, I hol",
|
829 |
+
"document_id": "document_2"
|
830 |
+
}
|
831 |
+
},
|
832 |
+
{
|
833 |
+
"embedding": [
|
834 |
+
0.013988866470754147, 0.009772575460374355, -0.07697077840566635,
|
835 |
+
-0.5277013778686523, -0.03599068522453308, 0.04293028637766838,
|
836 |
+
0.026595642790198326, 0.16870427131652832, 0.02901292033493519,
|
837 |
+
-0.08016899228096008, 0.11417479813098907, -0.16175605356693268,
|
838 |
+
0.16823694109916687, -0.09064742922782898, -0.2103092521429062,
|
839 |
+
0.0973624736070633, -0.16325443983078003, 0.3468376696109772,
|
840 |
+
0.11349105834960938, -0.033790890127420425, -0.32829850912094116,
|
841 |
+
-0.4019812047481537, 0.5082429647445679, -0.4754713177680969,
|
842 |
+
0.18022166192531586, 0.02994062379002571, 0.2435712069272995,
|
843 |
+
-0.10483300685882568, 0.17384067177772522, -0.40383103489875793,
|
844 |
+
0.2563911974430084, -0.1402626782655716, 0.29941558837890625,
|
845 |
+
-0.19104430079460144, -0.2906481921672821, 0.20913347601890564,
|
846 |
+
-0.2209208905696869, 0.04728168621659279, 0.14687934517860413,
|
847 |
+
0.09018655866384506, -0.03140511363744736, -0.08536497503519058,
|
848 |
+
0.1911802589893341, -0.13382790982723236, 0.24776741862297058,
|
849 |
+
0.18762889504432678, -0.13064470887184143, 0.041356995701789856,
|
850 |
+
-0.09894765168428421, 0.19973768293857574, -0.15362919867038727,
|
851 |
+
-0.39091813564300537, -0.020289571955800056, -0.2908436357975006,
|
852 |
+
0.17111779749393463, 0.39243534207344055, 0.1049342229962349,
|
853 |
+
-0.06353115290403366, -0.10738345980644226, -0.06623997539281845,
|
854 |
+
0.006503010168671608, -0.20021232962608337, 0.12132610380649567,
|
855 |
+
0.18066610395908356, 0.28481751680374146, 0.2564224600791931,
|
856 |
+
-0.3316217064857483, -0.02455279976129532, -0.11230932921171188,
|
857 |
+
-0.0882234275341034, 0.045895688235759735, 0.05798376351594925,
|
858 |
+
-0.35503560304641724, -0.00942149106413126, 0.1965806782245636,
|
859 |
+
-0.17775090038776398, -0.22013035416603088, 0.05626828968524933,
|
860 |
+
0.25009000301361084, -0.11653491854667664, 0.4294302761554718,
|
861 |
+
0.21100100874900818, -0.272830069065094, 0.2696194052696228,
|
862 |
+
0.20279239118099213, 0.04450366273522377, 0.11855562031269073,
|
863 |
+
0.042507048696279526, 0.07155176252126694, 0.016281532123684883,
|
864 |
+
0.08079811185598373, -0.22123004496097565, -0.31201261281967163,
|
865 |
+
-0.11962585151195526, 0.06222723051905632, 0.022251728922128677,
|
866 |
+
0.25301477313041687, -0.12497591972351074, 0.11421780288219452,
|
867 |
+
0.1109943687915802, -0.3038150668144226, -0.27057990431785583,
|
868 |
+
-0.29560789465904236, -0.15634912252426147, -0.29081544280052185,
|
869 |
+
-0.06576485186815262, 0.10407009720802307, -0.08469457924365997,
|
870 |
+
0.07107436656951904, -0.06196335703134537, -0.13987065851688385,
|
871 |
+
-0.2693849802017212, -0.19501042366027832, -0.02594425156712532,
|
872 |
+
0.19431406259536743, -0.17793938517570496, -0.1289641410112381,
|
873 |
+
0.17820191383361816, -0.01773165352642536, -0.30852019786834717,
|
874 |
+
0.022875117138028145, -0.13291741907596588, 0.12550804018974304,
|
875 |
+
0.25782647728919983, 0.14461439847946167, 0.059871479868888855,
|
876 |
+
-0.2707977592945099, 0.18488582968711853, -0.23040245473384857,
|
877 |
+
0.2176770120859146, 0.18608532845973969, 0.06800312548875809,
|
878 |
+
-0.09149574488401413, -0.15638367831707, 0.2578609585762024,
|
879 |
+
0.0445115827023983, 0.000697396113537252, -0.15692591667175293,
|
880 |
+
-0.2712707221508026, 0.1334211677312851, -0.029608551412820816,
|
881 |
+
0.1572578102350235, -0.1251588612794876, 0.1201043501496315,
|
882 |
+
0.41719573736190796, 0.15653592348098755, -0.11922315508127213,
|
883 |
+
0.09000558406114578, 0.19585710763931274, -0.010324874892830849,
|
884 |
+
-0.012976245954632759, -0.15166430175304413, 0.1627943515777588,
|
885 |
+
-0.14536593854427338, 0.39570996165275574, 0.23230884969234467,
|
886 |
+
0.2565193772315979, 0.1329224407672882, -0.18269237875938416,
|
887 |
+
0.06180332601070404, -0.22631584107875824, -0.1635275036096573,
|
888 |
+
0.11532659828662872, -0.07743898034095764, -0.0495561920106411,
|
889 |
+
-0.14313921332359314, 0.05830833688378334, 0.10944662988185883,
|
890 |
+
0.09754525125026703, 0.2818155884742737, 0.05398925021290779,
|
891 |
+
-0.11050605028867722, -0.13195163011550903, 0.2560615539550781,
|
892 |
+
0.42309123277664185, -0.051930248737335205, -0.1686854511499405,
|
893 |
+
-0.03916634991765022, -0.02523970603942871, 0.12050961703062057,
|
894 |
+
-0.04158899560570717, -0.23398390412330627, 0.30656203627586365,
|
895 |
+
0.05977833271026611, 0.06580270826816559, 0.2560853064060211,
|
896 |
+
-0.08495905995368958, 0.0634983628988266, -0.5020921230316162,
|
897 |
+
0.023457765579223633, -0.3360397517681122, 0.05546102672815323,
|
898 |
+
-0.02133578062057495, 0.16779135167598724, -0.051444049924612045,
|
899 |
+
-0.22914136946201324, 0.35076791048049927, -0.021180041134357452,
|
900 |
+
-0.16918198764324188, 0.1373990923166275, -0.19760197401046753,
|
901 |
+
-0.2072182446718216, -0.02753942273557186, -0.26097655296325684,
|
902 |
+
-0.2720176875591278, 0.15882036089897156, -0.07624292373657227,
|
903 |
+
0.13536939024925232, -0.04124379903078079, 0.5096920728683472,
|
904 |
+
-0.20048142969608307, -0.19895435869693756, 0.09626254439353943,
|
905 |
+
0.05621776729822159, 0.0475582480430603, -0.22984498739242554,
|
906 |
+
0.0820910781621933, 0.12450147420167923, -0.11195719242095947,
|
907 |
+
-0.05632682889699936, -0.36616629362106323, 0.2547006905078888,
|
908 |
+
-0.33328181505203247, -0.18086092174053192, -0.27529752254486084,
|
909 |
+
-0.015548295341432095, -0.25372281670570374, 0.10733789950609207,
|
910 |
+
-0.03351428732275963, 0.35335060954093933, 0.06400611996650696,
|
911 |
+
0.007075935136526823, 0.12049706280231476, -0.03795187175273895,
|
912 |
+
0.10003259778022766, -0.003338200505822897, -0.07015478610992432,
|
913 |
+
-0.06377975642681122, -0.33585450053215027, -0.06821471452713013,
|
914 |
+
-0.17764148116111755, -0.13860219717025757, -0.37636852264404297,
|
915 |
+
-0.068287193775177, 0.15915709733963013, 0.13376763463020325,
|
916 |
+
0.007174578960984945, 0.013595127500593662, -0.024088751524686813,
|
917 |
+
0.724016547203064, -0.13526573777198792, -0.15156669914722443,
|
918 |
+
-0.029875727370381355, -0.022745540365576744, -0.03671274706721306,
|
919 |
+
0.001912034465931356, -0.029748370870947838, 0.04387735575437546,
|
920 |
+
0.005105192773044109, 0.3666291832923889, 0.06219151243567467,
|
921 |
+
-0.15134115517139435, -0.2842429280281067, 0.27352413535118103,
|
922 |
+
-0.0010562035022303462, -0.0860423594713211, -0.2557184100151062,
|
923 |
+
0.10701727867126465, -0.03424200415611267, -0.25005871057510376,
|
924 |
+
-0.10491706430912018, -0.04402339830994606, 0.3279029428958893,
|
925 |
+
0.22961114346981049, -0.13808035850524902, 0.08910425007343292,
|
926 |
+
0.09389813989400864, -0.30071109533309937, 0.005648374557495117,
|
927 |
+
0.0959465354681015, 0.10952262580394745, -0.2696903645992279,
|
928 |
+
0.530269205570221, 0.12089592963457108, -0.03006851300597191,
|
929 |
+
-0.1808408796787262, -0.09051324427127838, -0.009478001855313778,
|
930 |
+
-0.2201218456029892, 0.040602199733257294, -0.14035409688949585,
|
931 |
+
0.31660112738609314, -0.284636527299881, -0.0014847568236291409,
|
932 |
+
-0.055018261075019836, 0.23818261921405792, 0.5450748205184937,
|
933 |
+
0.03850749880075455, -0.07492862641811371, -0.19553939998149872,
|
934 |
+
0.025516191497445107, 0.3212626576423645, 0.1582791805267334,
|
935 |
+
0.03792853280901909, -0.23657742142677307, -0.014457505196332932,
|
936 |
+
0.07321174442768097, 0.018692651763558388, -0.1128687858581543,
|
937 |
+
0.25704583525657654, 0.053391795605421066, -0.17439015209674835,
|
938 |
+
0.16939805448055267, -0.11131791025400162, -0.18580780923366547,
|
939 |
+
0.3147943615913391, 0.11233188211917877, -0.05110953003168106,
|
940 |
+
0.028003089129924774, -0.12326303124427795, -0.022206952795386314,
|
941 |
+
-0.17835982143878937, 0.04718323424458504, 0.1614646315574646,
|
942 |
+
-0.11658908426761627, -0.21354904770851135, -0.4944709539413452,
|
943 |
+
-0.07794719189405441, -0.23418644070625305, -0.0085296630859375,
|
944 |
+
-0.07155730575323105, -0.09174530953168869, 0.03432714566588402,
|
945 |
+
0.32421624660491943, 0.30536872148513794, 0.05556889623403549,
|
946 |
+
0.25375014543533325, 0.32741400599479675, -0.20053958892822266,
|
947 |
+
-0.09652526676654816, 0.30723467469215393, -0.03932889923453331,
|
948 |
+
-0.2333076149225235, -0.21915099024772644, -0.18416112661361694,
|
949 |
+
-0.028175434097647667, -0.35295742750167847, 0.24069668352603912,
|
950 |
+
-0.329507052898407, 0.02568727359175682, 0.1910247951745987,
|
951 |
+
0.18070967495441437, 0.015030832029879093, 0.13173998892307281,
|
952 |
+
0.4395912289619446, 0.020076770335435867, -0.11211104691028595,
|
953 |
+
-0.04472104832530022, -0.15479309856891632, 0.19252893328666687,
|
954 |
+
-0.10634679347276688, 0.3758567273616791, 0.10992991924285889,
|
955 |
+
0.11971727758646011, 0.015016624704003334, 0.268669068813324,
|
956 |
+
0.21397770941257477, -0.42052748799324036, 0.1749364584684372,
|
957 |
+
0.10246860235929489, -0.08281025290489197, 0.12053931504487991,
|
958 |
+
-0.029571877792477608, 0.06287650763988495, 0.07648714631795883,
|
959 |
+
0.49447712302207947, 0.38575661182403564, -0.039578039199113846,
|
960 |
+
-0.31646233797073364, 0.3268736004829407, -0.034393709152936935,
|
961 |
+
-0.1308891326189041, -0.3082536458969116, -0.038989122956991196
|
962 |
+
],
|
963 |
+
"metadata": {
|
964 |
+
"chunk_index": 2,
|
965 |
+
"original_text": "d a Master\u2019s in Human-Centered Artificial\nIntelligence from Denmark\u2019s Technical University. During my studies, I focused on computer\nvision and deep learning, gaining familiarity with models such as AlphaPose with its\nResNet-50 backbone for 2D pose estimation, and MotionBERT for 3D pose estimation.\nThese skills will be invaluable in collaborating with the diverse and talented team at Grazper.\nThank you for considering my application. I am eager to bring my skills in machine learning,\ncomputer vision, and so",
|
966 |
+
"document_id": "document_2"
|
967 |
+
}
|
968 |
+
},
|
969 |
+
{
|
970 |
+
"embedding": [
|
971 |
+
-0.17057926952838898, -0.18056435883045197, 0.17874811589717865,
|
972 |
+
-0.24692542850971222, 0.08875348418951035, -0.16057495772838593,
|
973 |
+
-0.2947237193584442, -0.09760632365942001, -0.3695824146270752,
|
974 |
+
-0.1081346794962883, -0.08244919776916504, 0.1590539813041687,
|
975 |
+
-0.37315043807029724, -0.16557790338993073, 0.05388304218649864,
|
976 |
+
0.18959444761276245, 0.05616177245974541, -0.1521427482366562,
|
977 |
+
-0.011044452898204327, -0.2991838753223419, -0.5415858626365662,
|
978 |
+
-0.15850338339805603, 0.08368390798568726, -0.2840047776699066,
|
979 |
+
-0.4626734256744385, 0.07918327301740646, -0.15771375596523285,
|
980 |
+
0.055745165795087814, 0.06039033457636833, 0.10576166957616806,
|
981 |
+
0.14637677371501923, -0.12966641783714294, 0.15112905204296112,
|
982 |
+
-0.10882297158241272, 0.0831327959895134, 0.3053250014781952,
|
983 |
+
-0.1090482696890831, -0.21646811068058014, -0.0723540410399437,
|
984 |
+
0.1768709272146225, 0.15091560781002045, -0.1670808047056198,
|
985 |
+
-0.23217593133449554, 0.05315786600112915, 0.07969140261411667,
|
986 |
+
-0.08742230385541916, 0.054999034851789474, 0.029913583770394325,
|
987 |
+
-0.46523818373680115, -0.023505324497818947, -0.006620466709136963,
|
988 |
+
-0.4610905349254608, -0.05861319974064827, -0.17345033586025238,
|
989 |
+
-0.00984229613095522, 0.30270761251449585, -0.0534597784280777,
|
990 |
+
0.396877646446228, -0.25802555680274963, -0.2620239555835724,
|
991 |
+
0.6612103581428528, -0.7389700412750244, -0.2570512890815735,
|
992 |
+
0.23041550815105438, -0.007624936755746603, 0.08425908535718918,
|
993 |
+
0.16316314041614532, 0.4003213346004486, -0.34814539551734924,
|
994 |
+
-0.08602998405694962, 0.02805815078318119, -0.09709612280130386,
|
995 |
+
-0.11298224329948425, 0.21826571226119995, 0.3271501958370209,
|
996 |
+
-0.025520084425807, 0.28215348720550537, -0.23470544815063477,
|
997 |
+
0.40283119678497314, -0.06853780150413513, -0.06725117564201355,
|
998 |
+
0.3321322202682495, -0.17742429673671722, 0.034416504204273224,
|
999 |
+
-0.2010757476091385, 0.037462640553712845, 0.18448461592197418,
|
1000 |
+
0.05062900483608246, -0.09977362304925919, -0.2601906955242157,
|
1001 |
+
0.09897628426551819, -0.057262539863586426, 0.10090603679418564,
|
1002 |
+
-0.17503929138183594, 0.06618431955575943, 0.6666281819343567,
|
1003 |
+
-0.1362410932779312, -0.384453684091568, 0.21279555559158325,
|
1004 |
+
-0.13722674548625946, -0.3226565718650818, -0.19039791822433472,
|
1005 |
+
-0.40829870104789734, -0.18344943225383759, -0.4740666449069977,
|
1006 |
+
-0.20035332441329956, 0.04584405943751335, 0.5349867939949036,
|
1007 |
+
0.10716050863265991, -0.14564929902553558, -0.01191670447587967,
|
1008 |
+
0.4656716287136078, -0.48825570940971375, -0.24784664809703827,
|
1009 |
+
-0.11606228351593018, -0.05802522227168083, -0.642017662525177,
|
1010 |
+
-0.11561501771211624, 0.3360680639743805, -0.13027818500995636,
|
1011 |
+
0.11607497185468674, -0.10027345269918442, 0.01004248857498169,
|
1012 |
+
-0.08595599979162216, -0.0844733789563179, -0.14454565942287445,
|
1013 |
+
-0.056235421448946, 0.3244708776473999, -0.33965757489204407,
|
1014 |
+
0.27919355034828186, 0.12023261189460754, 0.025233805179595947,
|
1015 |
+
0.5607754588127136, 0.09189464896917343, 0.21856947243213654,
|
1016 |
+
0.13591863214969635, -0.11218412965536118, -0.11236725002527237,
|
1017 |
+
0.004569899290800095, -0.24149036407470703, -0.19229920208454132,
|
1018 |
+
0.0816204622387886, 0.13429443538188934, -0.30488455295562744,
|
1019 |
+
0.02899700403213501, 0.6271782517433167, 0.05560385808348656,
|
1020 |
+
-0.2227921038866043, 0.1192433163523674, 0.09854307770729065,
|
1021 |
+
0.08676860481500626, 0.1465993970632553, 0.5897104144096375,
|
1022 |
+
0.06953510642051697, 0.20541737973690033, -0.05917692556977272,
|
1023 |
+
0.20963554084300995, 0.02599707990884781, 0.2945230305194855,
|
1024 |
+
0.006245419383049011, -0.17982161045074463, -0.006386511027812958,
|
1025 |
+
0.04850341007113457, -0.21807079017162323, -0.5421847701072693,
|
1026 |
+
-0.29596614837646484, -0.1081230565905571, -0.1715943068265915,
|
1027 |
+
0.07062195986509323, 0.09676891565322876, -0.4328734874725342,
|
1028 |
+
-0.29839298129081726, -0.02677059732377529, -0.12668651342391968,
|
1029 |
+
0.09851225465536118, 0.053403373807668686, 0.29059281945228577,
|
1030 |
+
0.1567283272743225, 0.04403528571128845, 0.24883611500263214,
|
1031 |
+
0.04530647397041321, -0.07979448139667511, 0.512474000453949,
|
1032 |
+
-0.08876341581344604, -0.10184746980667114, 0.15809588134288788,
|
1033 |
+
0.13013868033885956, -0.010477096773684025, -0.13886688649654388,
|
1034 |
+
-0.27646544575691223, -0.1351751834154129, 0.00411967420950532,
|
1035 |
+
0.32289111614227295, 0.17202621698379517, 0.2794763743877411,
|
1036 |
+
0.00417540455237031, 0.31409361958503723, 0.1716548353433609,
|
1037 |
+
-0.3168907165527344, -0.15685218572616577, -0.2612287700176239,
|
1038 |
+
0.08977014571428299, -0.3643103539943695, 0.40544387698173523,
|
1039 |
+
-0.22000861167907715, 0.34291040897369385, -0.2108910083770752,
|
1040 |
+
0.01934780925512314, -0.26528501510620117, 0.20353345572948456,
|
1041 |
+
-0.11302223056554794, -0.03993882238864899, 0.0010008016834035516,
|
1042 |
+
0.34334659576416016, 0.28366005420684814, 0.09351520985364914,
|
1043 |
+
0.07680563628673553, 0.4781200587749481, 0.0961938425898552,
|
1044 |
+
0.029414715245366096, -0.5612682104110718, 0.05018291994929314,
|
1045 |
+
-0.2829304039478302, -0.19249612092971802, -0.04445188120007515,
|
1046 |
+
-0.09742585569620132, -0.057653848081827164, -0.18726100027561188,
|
1047 |
+
-0.17726238071918488, -0.164778932929039, -0.42939820885658264,
|
1048 |
+
0.002938276855275035, 0.12355884909629822, 0.2261592298746109,
|
1049 |
+
-0.0297679603099823, 0.5149938464164734, -0.07838592678308487,
|
1050 |
+
-0.055715423077344894, -0.615290641784668, 0.4492502212524414,
|
1051 |
+
-0.1399228572845459, -0.21202875673770905, -0.07486186176538467,
|
1052 |
+
-0.0019845005590468645, -0.10727852582931519, 0.3997543752193451,
|
1053 |
+
-0.06422682106494904, 0.04629531502723694, -0.051474422216415405,
|
1054 |
+
-0.08212905377149582, -0.15812474489212036, -0.23525851964950562,
|
1055 |
+
-0.31024113297462463, 0.09600772708654404, 0.16308961808681488,
|
1056 |
+
0.03703877702355385, -0.09056935459375381, 0.0263179000467062,
|
1057 |
+
-0.025780832394957542, 0.4596518576145172, 0.17200203239917755,
|
1058 |
+
-0.27327924966812134, 0.0948433056473732, 0.16995972394943237,
|
1059 |
+
0.4649544656276703, 0.053780436515808105, -0.21725666522979736,
|
1060 |
+
0.036330342292785645, -0.11655876040458679, -0.3536188304424286,
|
1061 |
+
-0.16033925116062164, -0.0896374061703682, -0.06019500270485878,
|
1062 |
+
0.03324366733431816, 0.2474920153617859, 0.16947411000728607,
|
1063 |
+
0.24189674854278564, -0.430539608001709, -0.12391426414251328,
|
1064 |
+
0.44584643840789795, 0.2716670036315918, -0.058399271219968796,
|
1065 |
+
0.16280585527420044, 0.24642150104045868, 0.05343715474009514,
|
1066 |
+
-0.1792370229959488, -0.11475316435098648, -0.20972512662410736,
|
1067 |
+
0.19360233843326569, -0.023198269307613373, 0.1029631718993187,
|
1068 |
+
0.075680673122406, -0.24139152467250824, 0.12079928070306778,
|
1069 |
+
-0.22548045217990875, 0.49817657470703125, -0.08573079109191895,
|
1070 |
+
-0.1694091111421585, -0.43969306349754333, -0.12315365672111511,
|
1071 |
+
-0.033470720052719116, -0.1677587479352951, -0.4212625026702881,
|
1072 |
+
0.07882001250982285, -0.3040688931941986, 0.2069259136915207,
|
1073 |
+
0.32452520728111267, 0.0956583321094513, 0.031017357483506203,
|
1074 |
+
-0.1563490480184555, 0.09361779689788818, 0.1395430862903595,
|
1075 |
+
-0.07491523772478104, -0.024529727175831795, -0.27605006098747253,
|
1076 |
+
0.003965266048908234, -0.44428905844688416, 0.3070920705795288,
|
1077 |
+
0.14596858620643616, 0.17902357876300812, 0.13800273835659027,
|
1078 |
+
0.09761538356542587, 0.11564639955759048, 0.24444955587387085,
|
1079 |
+
-0.036987558007240295, 0.08244757354259491, -0.20404930412769318,
|
1080 |
+
0.11136392503976822, 0.11802738904953003, 0.2855495512485504,
|
1081 |
+
-0.29498741030693054, -0.3250756561756134, -0.09225296974182129,
|
1082 |
+
0.3871002197265625, 0.36343657970428467, -0.11429200321435928,
|
1083 |
+
-0.07309722900390625, 0.29477035999298096, -0.2714035212993622,
|
1084 |
+
-0.1906641274690628, 0.16833727061748505, 0.10350292921066284,
|
1085 |
+
0.20727258920669556, 0.5795057415962219, -0.09058484435081482,
|
1086 |
+
-0.26228728890419006, 0.5038650035858154, 0.358115553855896,
|
1087 |
+
0.3062088191509247, -0.027772584930062294, 0.00807807594537735,
|
1088 |
+
0.20609737932682037, 0.09749587625265121, -0.06461245566606522,
|
1089 |
+
0.24591054022312164, 0.11335548013448715, -0.29779571294784546,
|
1090 |
+
0.2802286148071289, 0.05887098237872124, 0.0729975476861,
|
1091 |
+
-0.1312135010957718, 0.5458757877349854, -0.07242148369550705,
|
1092 |
+
0.31486520171165466, 0.1837015151977539, 0.19176726043224335,
|
1093 |
+
-0.16340510547161102, -0.06420987099409103, -0.18956546485424042,
|
1094 |
+
-0.047449126839637756, 0.023281162604689598, -0.019729606807231903,
|
1095 |
+
0.11221233010292053, 0.16048510372638702, 0.22087474167346954,
|
1096 |
+
0.1040259301662445, 0.015955524519085884, -0.11575893312692642,
|
1097 |
+
-0.08942530304193497, 0.15787002444267273, -0.1510617882013321,
|
1098 |
+
0.02346060611307621, 0.3464442491531372, 0.04414486885070801
|
1099 |
+
],
|
1100 |
+
"metadata": {
|
1101 |
+
"chunk_index": 3,
|
1102 |
+
"original_text": "ftware development to Grazper and to help drive the continued\ninnovation that the company is known for. I look forward to the possibility of discussing how\nmy background, skills, and experiences align with the needs of your team.\nSincerely,",
|
1103 |
+
"document_id": "document_2"
|
1104 |
+
}
|
1105 |
+
}
|
1106 |
+
]
|
1107 |
+
}
|
1108 |
+
}
|
Api/src/db_local_storage/vector_files_db.py
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
vector_files_db = {}
|
Api/src/main.py
CHANGED
@@ -1,6 +1,11 @@
|
|
1 |
import uvicorn
|
2 |
from fastapi import APIRouter, FastAPI
|
3 |
from fastapi.middleware.cors import CORSMiddleware
|
|
|
|
|
|
|
|
|
|
|
4 |
from src.modules.uploadDocument.routes.uploadDocument_route import \
|
5 |
router as upload_file_routes
|
6 |
|
@@ -9,8 +14,12 @@ app = FastAPI()
|
|
9 |
origins = [
|
10 |
"http://localhost:8000",
|
11 |
"http://localhost:3000",
|
|
|
|
|
|
|
12 |
]
|
13 |
|
|
|
14 |
app.add_middleware(
|
15 |
CORSMiddleware,
|
16 |
allow_origins=origins,
|
@@ -21,9 +30,23 @@ app.add_middleware(
|
|
21 |
|
22 |
app_router = APIRouter(prefix="/api")
|
23 |
app_router.include_router(upload_file_routes, prefix="/upload", tags=["upload"])
|
|
|
|
|
24 |
|
25 |
@app_router.get("/")
|
26 |
async def root():
|
27 |
return {"message": "Hello World"}
|
28 |
|
29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import uvicorn
|
2 |
from fastapi import APIRouter, FastAPI
|
3 |
from fastapi.middleware.cors import CORSMiddleware
|
4 |
+
from fastapi.responses import FileResponse
|
5 |
+
from fastapi.staticfiles import StaticFiles
|
6 |
+
|
7 |
+
from src.modules.querySearch.routes.querySearch_route import \
|
8 |
+
router as query_search_routes
|
9 |
from src.modules.uploadDocument.routes.uploadDocument_route import \
|
10 |
router as upload_file_routes
|
11 |
|
|
|
14 |
origins = [
|
15 |
"http://localhost:8000",
|
16 |
"http://localhost:3000",
|
17 |
+
"https://your-space-name.hf.space",
|
18 |
+
"localhost:8000",
|
19 |
+
"https://abadesalex-docurag.hf.space/api",
|
20 |
]
|
21 |
|
22 |
+
|
23 |
app.add_middleware(
|
24 |
CORSMiddleware,
|
25 |
allow_origins=origins,
|
|
|
30 |
|
31 |
app_router = APIRouter(prefix="/api")
|
32 |
app_router.include_router(upload_file_routes, prefix="/upload", tags=["upload"])
|
33 |
+
app_router.include_router(query_search_routes, prefix="/query", tags=["query"])
|
34 |
+
|
35 |
|
36 |
@app_router.get("/")
|
37 |
async def root():
|
38 |
return {"message": "Hello World"}
|
39 |
|
40 |
+
|
41 |
+
# Serve static files from the 'out/_next/static' directory
|
42 |
+
app.mount("/_next/static", StaticFiles(directory="src/out/_next/static"), name="static")
|
43 |
+
|
44 |
+
# Serve the main index.html
|
45 |
+
@app.get("/")
|
46 |
+
def read_root():
|
47 |
+
return FileResponse("src/out/index.html")
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
app.include_router(app_router)
|
Api/src/modules/querySearch/controllers/__pycache__/querySearch_controller.cpython-310.pyc
ADDED
Binary file (1.19 kB). View file
|
|
Api/src/modules/querySearch/controllers/querySearch_controller.py
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from typing import Any
|
2 |
+
from fastapi import HTTPException
|
3 |
+
from fastapi.responses import JSONResponse
|
4 |
+
|
5 |
+
from src.modules.querySearch.features.querySearch_feature import QuerySearchFeature
|
6 |
+
|
7 |
+
|
8 |
+
class QuerySearchController:
|
9 |
+
|
10 |
+
def __init__(self, query_search_feature: QuerySearchFeature):
|
11 |
+
self.query_search_feature = query_search_feature
|
12 |
+
|
13 |
+
async def handle_query_search(self, q: str) -> Any:
|
14 |
+
try:
|
15 |
+
|
16 |
+
result = await self.query_search_feature.query_search(q)
|
17 |
+
message = result.get("message", "No message provided")
|
18 |
+
|
19 |
+
return JSONResponse(status_code=200, content={"message": message})
|
20 |
+
|
21 |
+
except Exception as e:
|
22 |
+
raise HTTPException(status_code=500, detail=str(e))
|
Api/src/modules/querySearch/features/__pycache__/querySearch_feature.cpython-310.pyc
ADDED
Binary file (3.28 kB). View file
|
|
Api/src/modules/querySearch/features/querySearch_feature.py
ADDED
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import json
|
2 |
+
from typing import List, Tuple
|
3 |
+
|
4 |
+
import numpy as np
|
5 |
+
from fastapi.responses import JSONResponse
|
6 |
+
from sentence_transformers import SentenceTransformer
|
7 |
+
from transformers import pipeline
|
8 |
+
|
9 |
+
from src.db_local_storage.files_db import VECTOR_FILES_DIRECTORY
|
10 |
+
from src.db_local_storage.in_memory_db import query_response_storage
|
11 |
+
|
12 |
+
|
13 |
+
class QuerySearchFeature:
|
14 |
+
|
15 |
+
def __init__(self, model, qa_pipeline):
|
16 |
+
self.model = model
|
17 |
+
self.qa_pipeline = qa_pipeline
|
18 |
+
|
19 |
+
async def query_search(self, query: str) -> dict:
|
20 |
+
|
21 |
+
user_query = {
|
22 |
+
"text": query,
|
23 |
+
"isSender": True,
|
24 |
+
}
|
25 |
+
|
26 |
+
query_response_storage.append(user_query)
|
27 |
+
|
28 |
+
dataBase = await QuerySearchFeature.load_data()
|
29 |
+
text_data, embeddings = await QuerySearchFeature.split_dataBase(dataBase)
|
30 |
+
|
31 |
+
lexical_results = await QuerySearchFeature.lexical_search(query, text_data)
|
32 |
+
semantic_results = await QuerySearchFeature.semantic_search(
|
33 |
+
query, text_data, embeddings, self.model
|
34 |
+
)
|
35 |
+
|
36 |
+
combined_results = list(set(lexical_results + semantic_results))
|
37 |
+
context = await QuerySearchFeature.get_context(combined_results)
|
38 |
+
|
39 |
+
response = self.qa_pipeline(question=query, context=context)
|
40 |
+
|
41 |
+
response_query = {
|
42 |
+
"text": response["answer"],
|
43 |
+
"isSender": False,
|
44 |
+
}
|
45 |
+
|
46 |
+
query_response_storage.append(response_query)
|
47 |
+
|
48 |
+
|
49 |
+
return {
|
50 |
+
"message": response["answer"],
|
51 |
+
"context_used": context,
|
52 |
+
"chunks": context,
|
53 |
+
}
|
54 |
+
|
55 |
+
@staticmethod
|
56 |
+
async def semantic_search(
|
57 |
+
query: str, chunks: List[str], embeddings: np.ndarray, model
|
58 |
+
) -> List[str]:
|
59 |
+
query_embedding = model.encode([query])
|
60 |
+
similarities = np.dot(embeddings, query_embedding.T).flatten()
|
61 |
+
top_indices = np.argsort(-similarities)[:3]
|
62 |
+
return [chunks[i] for i in top_indices]
|
63 |
+
|
64 |
+
@staticmethod
|
65 |
+
async def lexical_search(query: str, chunks: List[str]) -> List[str]:
|
66 |
+
return [chunk for chunk in chunks if query.lower() in chunk.lower()]
|
67 |
+
|
68 |
+
@staticmethod
|
69 |
+
async def load_data():
|
70 |
+
with open(VECTOR_FILES_DIRECTORY, "r") as file:
|
71 |
+
dataBase = json.load(file)
|
72 |
+
return dataBase
|
73 |
+
|
74 |
+
@staticmethod
|
75 |
+
async def split_dataBase(db) -> Tuple[List[str], np.ndarray]:
|
76 |
+
text_data = []
|
77 |
+
embeddings = []
|
78 |
+
|
79 |
+
for document in db.values():
|
80 |
+
for page in document["data"]:
|
81 |
+
text_data.append(page["metadata"]["original_text"])
|
82 |
+
embeddings.append(page["embedding"])
|
83 |
+
return text_data, embeddings
|
84 |
+
|
85 |
+
@staticmethod
|
86 |
+
async def get_context(chunks: List[str]) -> str:
|
87 |
+
return " ".join(chunks)
|
Api/src/modules/querySearch/routes/__pycache__/querySearch_route.cpython-310.pyc
ADDED
Binary file (1.29 kB). View file
|
|
Api/src/modules/querySearch/routes/querySearch_route.py
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from fastapi import APIRouter, Form, HTTPException
|
2 |
+
from fastapi.responses import JSONResponse
|
3 |
+
from sentence_transformers import SentenceTransformer
|
4 |
+
from transformers import pipeline
|
5 |
+
|
6 |
+
from src.modules.querySearch.features.querySearch_feature import QuerySearchFeature
|
7 |
+
from src.modules.querySearch.controllers.querySearch_controller import (
|
8 |
+
QuerySearchController,
|
9 |
+
)
|
10 |
+
from src.db_local_storage.in_memory_db import query_response_storage
|
11 |
+
|
12 |
+
|
13 |
+
router = APIRouter()
|
14 |
+
|
15 |
+
model = SentenceTransformer("paraphrase-MiniLM-L6-v2")
|
16 |
+
qa_pipeline = pipeline("question-answering", model="deepset/roberta-base-squad2")
|
17 |
+
|
18 |
+
querySearchFeature = QuerySearchFeature(model, qa_pipeline)
|
19 |
+
querySearchController = QuerySearchController(querySearchFeature)
|
20 |
+
|
21 |
+
|
22 |
+
@router.post("/query_search")
|
23 |
+
async def handle_query_search(q: str = Form(...)):
|
24 |
+
|
25 |
+
return await querySearchController.handle_query_search(q)
|
26 |
+
|
27 |
+
|
28 |
+
@router.get("/get_messages")
|
29 |
+
async def get_messages():
|
30 |
+
|
31 |
+
return JSONResponse(status_code=200, content={"data": query_response_storage})
|
Api/src/modules/uploadDocument/controllers/__pycache__/file_upload_controller.cpython-310.pyc
CHANGED
Binary files a/Api/src/modules/uploadDocument/controllers/__pycache__/file_upload_controller.cpython-310.pyc and b/Api/src/modules/uploadDocument/controllers/__pycache__/file_upload_controller.cpython-310.pyc differ
|
|
Api/src/modules/uploadDocument/controllers/file_upload_controller.py
CHANGED
@@ -1,23 +1,30 @@
|
|
1 |
-
import shutil
|
2 |
from typing import Any
|
3 |
|
4 |
from fastapi import HTTPException, UploadFile
|
5 |
from fastapi.responses import JSONResponse
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
|
9 |
|
10 |
class FileUploadController:
|
11 |
|
12 |
async def handle_file_upload(self, file: UploadFile) -> Any:
|
13 |
try:
|
14 |
-
|
|
|
|
|
|
|
|
|
15 |
result = await UploadDocumentFeature.uploadFile(file)
|
16 |
message = result.get("message", "No message provided")
|
17 |
|
18 |
-
return JSONResponse(
|
19 |
-
status_code=200, content={"message": message}
|
20 |
-
)
|
21 |
|
22 |
except Exception as e:
|
23 |
raise HTTPException(status_code=500, detail=str(e))
|
|
|
|
|
1 |
from typing import Any
|
2 |
|
3 |
from fastapi import HTTPException, UploadFile
|
4 |
from fastapi.responses import JSONResponse
|
5 |
+
|
6 |
+
from src.modules.uploadDocument.features.createEmbeddings_feature import (
|
7 |
+
CreateEmbeddingsFeature,
|
8 |
+
)
|
9 |
+
from src.modules.uploadDocument.features.extractText_feature import ExtractTextFeature
|
10 |
+
from src.modules.uploadDocument.features.uploadDocument_feature import (
|
11 |
+
UploadDocumentFeature,
|
12 |
+
)
|
13 |
|
14 |
|
15 |
class FileUploadController:
|
16 |
|
17 |
async def handle_file_upload(self, file: UploadFile) -> Any:
|
18 |
try:
|
19 |
+
|
20 |
+
text_file = await ExtractTextFeature.extract_text_from_pdf(file)
|
21 |
+
|
22 |
+
await CreateEmbeddingsFeature.create_embeddings(text_file, file.filename)
|
23 |
+
|
24 |
result = await UploadDocumentFeature.uploadFile(file)
|
25 |
message = result.get("message", "No message provided")
|
26 |
|
27 |
+
return JSONResponse(status_code=200, content={"message": message})
|
|
|
|
|
28 |
|
29 |
except Exception as e:
|
30 |
raise HTTPException(status_code=500, detail=str(e))
|
Api/src/modules/uploadDocument/features/__pycache__/createEmbeddings_feature.cpython-310.pyc
ADDED
Binary file (1.73 kB). View file
|
|
Api/src/modules/uploadDocument/features/__pycache__/extractText_feature.cpython-310.pyc
ADDED
Binary file (2.07 kB). View file
|
|
Api/src/modules/uploadDocument/features/__pycache__/uploadDocument_feature.cpython-310.pyc
CHANGED
Binary files a/Api/src/modules/uploadDocument/features/__pycache__/uploadDocument_feature.cpython-310.pyc and b/Api/src/modules/uploadDocument/features/__pycache__/uploadDocument_feature.cpython-310.pyc differ
|
|
Api/src/modules/uploadDocument/features/createEmbeddings_feature.py
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import json
|
2 |
+
from typing import List
|
3 |
+
|
4 |
+
from sentence_transformers import SentenceTransformer
|
5 |
+
|
6 |
+
from src.db_local_storage.files_db import VECTOR_FILES_DIRECTORY
|
7 |
+
from src.db_local_storage.vector_files_db import vector_files_db as EMBEDDING_DATA
|
8 |
+
|
9 |
+
|
10 |
+
class CreateEmbeddingsFeature:
|
11 |
+
|
12 |
+
@staticmethod
|
13 |
+
def chunk_text(text: str, chunk_size: int = 512) -> List[str]:
|
14 |
+
chunks = [text[i : i + chunk_size] for i in range(0, len(text), chunk_size)]
|
15 |
+
return chunks
|
16 |
+
|
17 |
+
@staticmethod
|
18 |
+
async def create_embeddings(text: str, filename: str) -> List:
|
19 |
+
# TODO: Check model
|
20 |
+
model = SentenceTransformer("paraphrase-MiniLM-L6-v2")
|
21 |
+
chunks = CreateEmbeddingsFeature.chunk_text(text)
|
22 |
+
|
23 |
+
# with open(VECTOR_FILES_DIRECTORY, "r") as file:
|
24 |
+
# EMBEDDING_DATA = json.load(file)
|
25 |
+
|
26 |
+
id = len(EMBEDDING_DATA) + 1
|
27 |
+
docoument_index = f"document_{id}"
|
28 |
+
EMBEDDING_DATA[docoument_index] = {
|
29 |
+
"metadata": {"id": id, "filename": filename, "chunks": len(chunks)},
|
30 |
+
"data": [],
|
31 |
+
}
|
32 |
+
|
33 |
+
for i, chunk in enumerate(chunks):
|
34 |
+
embedding = model.encode(chunk).tolist()
|
35 |
+
embedding_entry = {
|
36 |
+
"embedding": embedding,
|
37 |
+
"metadata": {
|
38 |
+
"chunk_index": i,
|
39 |
+
"original_text": chunk,
|
40 |
+
"document_id": docoument_index,
|
41 |
+
},
|
42 |
+
}
|
43 |
+
EMBEDDING_DATA[docoument_index]["data"].append(embedding_entry)
|
44 |
+
|
45 |
+
# print(EMBEDDING_DATA)
|
46 |
+
|
47 |
+
# with open(VECTOR_FILES_DIRECTORY, "w") as f:
|
48 |
+
# json.dump(EMBEDDING_DATA, f)
|
49 |
+
|
50 |
+
return
|
Api/src/modules/uploadDocument/features/extractText_feature.py
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import io
|
2 |
+
import os
|
3 |
+
|
4 |
+
import PyPDF2
|
5 |
+
from fastapi import UploadFile
|
6 |
+
from PyPDF2 import PdfReader
|
7 |
+
import pdfplumber
|
8 |
+
|
9 |
+
from src.db_local_storage.files_db import TEXT_FILES_DIRECTORY
|
10 |
+
from src.db_local_storage.documents_db import documents_text
|
11 |
+
|
12 |
+
|
13 |
+
class ExtractTextFeature:
|
14 |
+
|
15 |
+
@staticmethod
|
16 |
+
def ensure_directory_exists(folder_path: str) -> None:
|
17 |
+
"""Ensure that the directory exists."""
|
18 |
+
if not os.path.exists(folder_path):
|
19 |
+
os.makedirs(folder_path)
|
20 |
+
|
21 |
+
@staticmethod
|
22 |
+
async def saveFile(content, filename, directory: str) -> str:
|
23 |
+
"""Save the uploaded file to the specified directory."""
|
24 |
+
file_path = os.path.join(directory, filename)
|
25 |
+
with open(file_path, "w") as file:
|
26 |
+
file.write(content)
|
27 |
+
return file_path
|
28 |
+
|
29 |
+
@staticmethod
|
30 |
+
async def save_text_from_pdf(file: UploadFile, text) -> str:
|
31 |
+
|
32 |
+
ExtractTextFeature.ensure_directory_exists(TEXT_FILES_DIRECTORY)
|
33 |
+
await ExtractTextFeature.saveFile(text, file.filename, TEXT_FILES_DIRECTORY)
|
34 |
+
|
35 |
+
return text
|
36 |
+
|
37 |
+
@staticmethod
|
38 |
+
async def extract_text_from_pdf(file: UploadFile) -> str:
|
39 |
+
|
40 |
+
content = await file.read()
|
41 |
+
with pdfplumber.open(io.BytesIO(content)) as pdf:
|
42 |
+
text = ""
|
43 |
+
for page in pdf.pages:
|
44 |
+
text += page.extract_text()
|
45 |
+
|
46 |
+
for document in documents_text:
|
47 |
+
if document["filename"] == file.filename:
|
48 |
+
return {"message": "Document already exists"}
|
49 |
+
|
50 |
+
data = {
|
51 |
+
"id": len(documents_text) + 1,
|
52 |
+
"filename": file.filename,
|
53 |
+
"text": text,
|
54 |
+
}
|
55 |
+
|
56 |
+
documents_text.append(data)
|
57 |
+
|
58 |
+
return text
|
Api/src/modules/uploadDocument/features/uploadDocument_feature.py
CHANGED
@@ -3,6 +3,7 @@ from typing import Dict
|
|
3 |
|
4 |
from fastapi import UploadFile
|
5 |
from src.db_local_storage.files_db import FILES_DIRECTORY, FILES_NAMES_DATABASE
|
|
|
6 |
|
7 |
|
8 |
class UploadDocumentFeature:
|
@@ -20,7 +21,17 @@ class UploadDocumentFeature:
|
|
20 |
with open(file_path, "wb") as file:
|
21 |
content = await document.read()
|
22 |
file.write(content)
|
23 |
-
return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
|
25 |
@staticmethod
|
26 |
async def uploadFile(document: UploadFile) -> Dict[str, str]:
|
@@ -30,10 +41,11 @@ class UploadDocumentFeature:
|
|
30 |
:return: a message to confirm the upload
|
31 |
"""
|
32 |
|
33 |
-
|
34 |
-
|
35 |
-
|
|
|
36 |
|
37 |
-
|
38 |
|
39 |
return {"message": "Document Updated"}
|
|
|
3 |
|
4 |
from fastapi import UploadFile
|
5 |
from src.db_local_storage.files_db import FILES_DIRECTORY, FILES_NAMES_DATABASE
|
6 |
+
from src.db_local_storage.documents_db import documents_db
|
7 |
|
8 |
|
9 |
class UploadDocumentFeature:
|
|
|
21 |
with open(file_path, "wb") as file:
|
22 |
content = await document.read()
|
23 |
file.write(content)
|
24 |
+
return file
|
25 |
+
|
26 |
+
@staticmethod
|
27 |
+
async def SaveFileMemory(document: UploadFile) -> str:
|
28 |
+
"""Save the uploaded file to memory."""
|
29 |
+
UploadDocumentFeature.ensure_directory_exists(FILES_DIRECTORY)
|
30 |
+
id = len(FILES_NAMES_DATABASE) + 1
|
31 |
+
FILES_NAMES_DATABASE[id] = document.filename
|
32 |
+
|
33 |
+
file = await UploadDocumentFeature.saveFile(document, FILES_DIRECTORY)
|
34 |
+
return file
|
35 |
|
36 |
@staticmethod
|
37 |
async def uploadFile(document: UploadFile) -> Dict[str, str]:
|
|
|
41 |
:return: a message to confirm the upload
|
42 |
"""
|
43 |
|
44 |
+
data = {
|
45 |
+
"id": len(documents_db) + 1,
|
46 |
+
"filename": document.filename,
|
47 |
+
}
|
48 |
|
49 |
+
documents_db.append(data)
|
50 |
|
51 |
return {"message": "Document Updated"}
|
Api/src/modules/uploadDocument/routes/__pycache__/uploadDocument_route.cpython-310.pyc
CHANGED
Binary files a/Api/src/modules/uploadDocument/routes/__pycache__/uploadDocument_route.cpython-310.pyc and b/Api/src/modules/uploadDocument/routes/__pycache__/uploadDocument_route.cpython-310.pyc differ
|
|
Api/src/modules/uploadDocument/routes/uploadDocument_route.py
CHANGED
@@ -1,13 +1,58 @@
|
|
1 |
from fastapi import APIRouter, File, HTTPException, UploadFile
|
2 |
-
from
|
3 |
-
|
|
|
|
|
|
|
|
|
4 |
|
5 |
router = APIRouter()
|
6 |
-
|
7 |
|
8 |
|
9 |
-
@router.
|
10 |
-
|
11 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
async def upload_file(file: UploadFile = File(...)):
|
13 |
-
return await
|
|
|
1 |
from fastapi import APIRouter, File, HTTPException, UploadFile
|
2 |
+
from fastapi.responses import JSONResponse
|
3 |
+
from src.db_local_storage.vector_files_db import vector_files_db
|
4 |
+
from src.modules.uploadDocument.controllers.file_upload_controller import (
|
5 |
+
FileUploadController,
|
6 |
+
)
|
7 |
+
from src.db_local_storage.documents_db import documents_db
|
8 |
|
9 |
router = APIRouter()
|
10 |
+
fileUploadController = FileUploadController()
|
11 |
|
12 |
|
13 |
+
@router.get("/get_documents")
|
14 |
+
async def get_all_documents():
|
15 |
+
return JSONResponse(status_code=200, content={"data": documents_db})
|
16 |
+
|
17 |
+
|
18 |
+
@router.get("/get_embeddings")
|
19 |
+
async def get_all_embeddings():
|
20 |
+
return JSONResponse(status_code=200, content={"data": vector_files_db})
|
21 |
+
|
22 |
+
|
23 |
+
@router.delete("/delete_document/{id}")
|
24 |
+
async def delete_document(id: int):
|
25 |
+
|
26 |
+
document = next((doc for doc in documents_db if doc["id"] == id), None)
|
27 |
+
if document:
|
28 |
+
documents_db.remove(document)
|
29 |
+
else:
|
30 |
+
raise HTTPException(status_code=404, detail="Document not found")
|
31 |
+
|
32 |
+
vector_file_key = next(
|
33 |
+
(
|
34 |
+
key
|
35 |
+
for key, value in vector_files_db.items()
|
36 |
+
if value["metadata"]["id"] == id
|
37 |
+
),
|
38 |
+
None,
|
39 |
+
)
|
40 |
+
if vector_file_key:
|
41 |
+
del vector_files_db[vector_file_key]
|
42 |
+
|
43 |
+
return JSONResponse(status_code=200, content={"message": "Document deleted"})
|
44 |
+
|
45 |
+
|
46 |
+
# {
|
47 |
+
# "data": {
|
48 |
+
# "document_1": {
|
49 |
+
# "metadata": {
|
50 |
+
# "id": 1,
|
51 |
+
# "filename": "doc_test.pdf",
|
52 |
+
# "chunks": 4
|
53 |
+
# },
|
54 |
+
|
55 |
+
|
56 |
+
@router.post("/document")
|
57 |
async def upload_file(file: UploadFile = File(...)):
|
58 |
+
return await fileUploadController.handle_file_upload(file)
|
Api/src/out/404.html
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-17abec1bd4bca978.js"/><script src="/_next/static/chunks/fd9d1056-90960e0a7e77703c.js" async=""></script><script src="/_next/static/chunks/23-e94121395991ed2e.js" async=""></script><script src="/_next/static/chunks/main-app-f4f564f56624dcb5.js" async=""></script><meta name="robots" content="noindex"/><title>404: This page could not be found.</title><title>Next.js</title><meta name="description" content="Generated by Next.js"/><script src="/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js" noModule=""></script></head><body><div style="font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><script src="/_next/static/chunks/webpack-17abec1bd4bca978.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:I[5751,[],\"\"]\n3:I[9275,[],\"\"]\n4:I[1343,[],\"\"]\na:I[6130,[],\"\"]\n5:{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"}\n6:{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"}\n7:{\"display\":\"inline-block\"}\n8:{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0}\nb:[]\n"])</script><script>self.__next_f.push([1,"0:[null,[\"$\",\"$L1\",null,{\"buildId\":\"8pPextYjcRlStoVtEQkF_\",\"assetPrefix\":\"\",\"initialCanonicalUrl\":\"/_not-found\",\"initialTree\":[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{},[[\"$L2\",[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]]],null],null]},[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"/_not-found\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\",\"styles\":null}],null]},[[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$5\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$6\",\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":\"$7\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$8\",\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[],\"styles\":null}]}]}],null],null],\"couldBeIntercepted\":false,\"initialHead\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],\"$L9\"],\"globalErrorComponent\":\"$a\",\"missingSlots\":\"$Wb\"}]]\n"])</script><script>self.__next_f.push([1,"9:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"Next.js\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Generated by Next.js\"}]]\n2:null\n"])</script></body></html>
|
Api/src/out/_next/static/8pPextYjcRlStoVtEQkF_/_buildManifest.js
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
self.__BUILD_MANIFEST={__rewrites:{afterFiles:[],beforeFiles:[],fallback:[]},"/_error":["static/chunks/pages/_error-1be831200e60c5c0.js"],sortedPages:["/_app","/_error"]},self.__BUILD_MANIFEST_CB&&self.__BUILD_MANIFEST_CB();
|
Api/src/out/_next/static/8pPextYjcRlStoVtEQkF_/_ssgManifest.js
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
self.__SSG_MANIFEST=new Set([]);self.__SSG_MANIFEST_CB&&self.__SSG_MANIFEST_CB()
|
Api/src/out/_next/static/chunks/23-e94121395991ed2e.js
ADDED
The diff for this file is too large to render.
See raw diff
|
|
Api/src/out/_next/static/chunks/324-5c86793bec652c55.js
ADDED
The diff for this file is too large to render.
See raw diff
|
|
Api/src/out/_next/static/chunks/app/_not-found/page-88e5ec60d72eb81e.js
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[409],{7589:function(e,t,n){(window.__NEXT_P=window.__NEXT_P||[]).push(["/_not-found/page",function(){return n(5457)}])},5457:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"default",{enumerable:!0,get:function(){return s}}),n(9920);let i=n(7437);n(2265);let o={fontFamily:'system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"',height:"100vh",textAlign:"center",display:"flex",flexDirection:"column",alignItems:"center",justifyContent:"center"},l={display:"inline-block"},r={display:"inline-block",margin:"0 20px 0 0",padding:"0 23px 0 0",fontSize:24,fontWeight:500,verticalAlign:"top",lineHeight:"49px"},d={fontSize:14,fontWeight:400,lineHeight:"49px",margin:0};function s(){return(0,i.jsxs)(i.Fragment,{children:[(0,i.jsx)("title",{children:"404: This page could not be found."}),(0,i.jsx)("div",{style:o,children:(0,i.jsxs)("div",{children:[(0,i.jsx)("style",{dangerouslySetInnerHTML:{__html:"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}),(0,i.jsx)("h1",{className:"next-error-h1",style:r,children:"404"}),(0,i.jsx)("div",{style:l,children:(0,i.jsx)("h2",{style:d,children:"This page could not be found."})})]})})]})}("function"==typeof t.default||"object"==typeof t.default&&null!==t.default)&&void 0===t.default.__esModule&&(Object.defineProperty(t.default,"__esModule",{value:!0}),Object.assign(t.default,t),e.exports=t.default)}},function(e){e.O(0,[971,23,744],function(){return e(e.s=7589)}),_N_E=e.O()}]);
|
Api/src/out/_next/static/chunks/app/layout-921f3900800dd4a7.js
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[185],{3521:function(){}},function(n){n.O(0,[971,23,744],function(){return n(n.s=3521)}),_N_E=n.O()}]);
|
Api/src/out/_next/static/chunks/app/page-10e8a35fca12752e.js
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[931],{8278:function(e,t,r){Promise.resolve().then(r.bind(r,9471))},9471:function(e,t,r){"use strict";r.r(t),r.d(t,{default:function(){return z}});var n=r(7437),o=r(8364),l=r(6031),i=r(9380),a=r(9178);let d={palette:{primary:{main:"#EDE8D0"},secondary:{main:(0,l.Fq)("#8B5A2B",.4)},border:{default:(0,l.Fq)("#000000",.23)},background:{default:(0,l.Fq)("#EDE8D0",.35),base:"#EDE8D0"}},typography:{fontFamily:" 'DM Sans', Inter,sans-serif",body1:{fontSize:"1rem",fontWeight:400,lineHeight:1.5},h1:{fontSize:"2.5rem",fontWeight:600,lineHeight:1.2},h2:{fontSize:"2rem",fontWeight:600,lineHeight:1.3},h3:{fontSize:"1.9rem",fontWeight:600,lineHeight:1.4},h4:{fontSize:"1.2rem",fontWeight:500,lineHeight:1.5},h5:{fontSize:"1rem",fontWeight:400,lineHeight:1.6},h6:{fontSize:"0.9rem",fontWeight:400,lineHeight:1.6},h7:{fontSize:"0.8rem",fontWeight:400,lineHeight:1.6}}};var s="http://localhost:8000/api",c=r(2960),u=r(5961),h=r(2265),x=r(7156),m=r(511);function f(e){let{text:t,isSender:r}=e;return(0,c.Z)(),(0,n.jsx)(n.Fragment,{children:(0,n.jsx)(u.Z,{item:!0,xs:12,container:!0,justifyContent:r?"flex-end":"flex-start",sx:{flexGrow:0},mb:1,children:(0,n.jsx)(u.Z,{item:!0,sx:{backgroundColor:r?"#d1e7dd":"#f5f5f5",padding:"8px 12px",borderRadius:"20px",maxWidth:"80%",border:"1px solid #ccc"},children:(0,n.jsx)(m.Z,{variant:"h5",children:t})})})})}function b(e){let{messages:t}=e,r=(0,c.Z)(),o=(0,h.useRef)(null);return(0,h.useEffect)(()=>{o.current&&(o.current.scrollTop=o.current.scrollHeight)},[t]),(0,n.jsx)(n.Fragment,{children:(0,n.jsx)(x.Z,{mb:2,display:"flex",flexDirection:"column",flexGrow:1,padding:2,style:{border:"2px solid black",overflow:"hidden",overflowY:"scroll",borderRadius:"8px",border:"1px solid #ccc",backgroundColor:r.palette.background.default},children:t.map((e,t)=>(0,n.jsx)(f,{text:e.text,isSender:e.isSender},t))})})}function g(e){let{chunkTest:t}=e,r=(0,c.Z)();return(0,n.jsx)(n.Fragment,{children:(0,n.jsx)(x.Z,{display:"flex",flexDirection:"column",flexGrow:1,padding:2,style:{border:"2px solid black",overflow:"hidden",overflowY:"scroll",borderRadius:"8px",border:"1px solid #ccc",backgroundColor:r.palette.background.default,height:"50%"},children:t?(0,n.jsx)(f,{text:t.text,isSender:!1}):null})})}function p(e){let{chunks:t,documents:r}=e,o=(0,c.Z)();return(0,n.jsx)(n.Fragment,{children:(0,n.jsxs)(u.Z,{container:!0,border:1,mb:2,borderColor:o.palette.border.default,borderRadius:2,padding:1.2,sx:{backgroundColor:o.palette.background.default},children:[(0,n.jsx)(u.Z,{item:!0,sm:5.5,border:1,borderColor:o.palette.border.default,borderRadius:2,alignContent:"center",textAlign:"center",sx:{backgroundColor:"white"},children:(0,n.jsxs)(m.Z,{variant:"h6",children:["N\xba chunks: ",(0,n.jsx)("br",{})," ",t," "]})}),(0,n.jsx)(u.Z,{item:!0,ml:1,sm:5.5,border:1,borderColor:o.palette.border.default,borderRadius:2,alignContent:"center",textAlign:"center",sx:{backgroundColor:"white"},children:(0,n.jsxs)(m.Z,{variant:"h6",children:["N\xba Doc: ",(0,n.jsx)("br",{}),r]})})]})})}var j=r(4875);function Z(){let e=(0,c.Z)();return(0,n.jsx)(n.Fragment,{children:(0,n.jsxs)(u.Z,{container:!0,mb:2,alignItems:"center",border:1,borderColor:e.palette.border.default,borderRadius:2,padding:2,sx:{backgroundColor:e.palette.background.default},children:[(0,n.jsx)(u.Z,{item:!0,sm:3,children:(0,n.jsx)(m.Z,{variant:"h4",children:"Select Model:"})}),(0,n.jsx)(u.Z,{item:!0,container:!0,alignItems:"center",justifyContent:"center",sm:2.5,border:1,borderColor:e.palette.border.default,borderRadius:2,sx:{backgroundColor:"white"},children:(0,n.jsx)(j.Z,{children:(0,n.jsx)(m.Z,{variant:"h6",color:"black",children:"Model 1"})})}),(0,n.jsx)(u.Z,{item:!0,container:!0,ml:2,alignItems:"center",justifyContent:"center",sm:2.5,border:1,borderColor:e.palette.border.default,borderRadius:2,sx:{backgroundColor:"white"},children:(0,n.jsx)(j.Z,{children:(0,n.jsx)(m.Z,{variant:"h6",color:"black",children:"Model 2"})})}),(0,n.jsx)(u.Z,{item:!0,ml:2,container:!0,alignItems:"center",justifyContent:"center",sm:2.5,border:1,borderColor:e.palette.border.default,borderRadius:2,sx:{backgroundColor:"white"},children:(0,n.jsx)(j.Z,{children:(0,n.jsx)(m.Z,{variant:"h6",color:"black",children:"Model 3"})})})]})})}function C(e){let{documentName:t,documentId:r,documentNumber:o,onSelectedChunk:l}=e,i=(0,c.Z)();return(0,n.jsx)(n.Fragment,{children:(0,n.jsx)(j.Z,{onClick:()=>l({documentNumber:o}),sx:{textTransform:"none",color:"inherit",padding:0},children:(0,n.jsxs)(u.Z,{item:!0,container:!0,alignItems:"center",xs:12,mb:1,sx:{backgroundColor:i.palette.secondary.main,padding:"8px 12px",borderRadius:"10px",border:"1px solid",borderColor:i.palette.border.default},children:[(0,n.jsx)(u.Z,{item:!0,container:!0,borderRadius:20,justifyContent:"center",alignContent:"center",border:1,sx:{backgroundColor:i.palette.secondary.main,width:35,height:35},children:(0,n.jsx)(m.Z,{variant:"h5",children:o})}),(0,n.jsx)(u.Z,{container:!0,alignItems:"center",justifyContent:"space-between",sx:{flexGrow:1,marginLeft:1},children:(0,n.jsxs)(u.Z,{item:!0,container:!0,direction:"column",ml:1,alignItems:"flex-start",children:[(0,n.jsx)(u.Z,{item:!0,children:(0,n.jsx)(m.Z,{variant:"h5",sx:{overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"},children:t.substring(0,8)})}),(0,n.jsx)(u.Z,{item:!0,children:(0,n.jsx)(m.Z,{variant:"h7",color:i.palette.border.default,children:r})})]})})]})})})}function k(e){let{chunks:t,onSelectedChunk:r}=e,l=(0,o.u)();return(0,h.useEffect)(()=>{},[t]),(0,n.jsx)(n.Fragment,{children:(0,n.jsx)(x.Z,{display:"flex",flexDirection:"column",flexGrow:1,padding:2,mb:2,style:{border:"2px solid black",overflow:"hidden",overflowY:"scroll",borderRadius:"8px",border:"1px solid #ccc",backgroundColor:l.palette.background.default,height:"60%"},children:t.map((e,t)=>(0,n.jsx)(C,{documentName:"Chunk ".concat(e.id),documentId:"Document_".concat(e.id),documentNumber:t,onSelectedChunk:r},t))})})}var w=r(7630);function y(e){let{documentName:t,documentId:r,documentNumber:o,deleteDocument:l}=e,i=(0,c.Z)();return(0,n.jsx)(n.Fragment,{children:(0,n.jsxs)(u.Z,{item:!0,container:!0,alignItems:"center",xs:12,mb:1,sx:{backgroundColor:i.palette.secondary.main,padding:"8px 12px",borderRadius:"10px",border:"1px solid",borderColor:i.palette.border.default},children:[(0,n.jsx)(u.Z,{item:!0,container:!0,borderRadius:20,justifyContent:"center",alignContent:"center",border:1,sx:{backgroundColor:i.palette.secondary.main,width:35,height:35},children:(0,n.jsx)(m.Z,{variant:"h5",children:o})}),(0,n.jsxs)(u.Z,{container:!0,alignItems:"center",justifyContent:"space-between",sx:{flexGrow:1,marginLeft:1},children:[(0,n.jsxs)(u.Z,{item:!0,container:!0,direction:"column",ml:1,children:[(0,n.jsx)(u.Z,{item:!0,children:(0,n.jsx)(m.Z,{variant:"h5",sx:{overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"},children:t.substring(0,8)})}),(0,n.jsx)(u.Z,{item:!0,children:(0,n.jsx)(m.Z,{variant:"h7",color:i.palette.border.default,children:r})})]}),(0,n.jsx)(u.Z,{item:!0,children:(0,n.jsx)(j.Z,{onClick:()=>l(o),sx:{minWidth:"auto",padding:0,margin:0},children:(0,n.jsx)(w.Z,{fontSize:"small",sx:{color:"black"}})})})]})]})})}function v(e){let{documents:t,fetchDocuments:r,fetchChunks:l}=e,i=(0,o.u)(),a=async e=>{let t="".concat(s,"/upload/delete_document/").concat(e);await fetch(t,{method:"DELETE",headers:{"Content-Type":"application/json"}}).then(r()).then(l())};return(0,h.useEffect)(()=>{},[t]),(0,n.jsx)(n.Fragment,{children:(0,n.jsx)(x.Z,{display:"flex",flexDirection:"column",flexGrow:1,padding:2,mb:2,style:{border:"2px solid black",overflow:"hidden",overflowY:"scroll",borderRadius:"8px",border:"1px solid #ccc",backgroundColor:i.palette.background.default,height:"40%"},children:t.map((e,t)=>(0,n.jsx)(y,{documentName:e.filename,documentId:"Document_".concat(e.id),documentNumber:e.id,deleteDocument:a},t))})})}function S(e){let{chunks:t,tokens:r}=e,o=(0,c.Z)();return(0,n.jsx)(n.Fragment,{children:(0,n.jsxs)(u.Z,{container:!0,border:1,borderColor:o.palette.border.default,borderRadius:2,mb:2,padding:1.2,sx:{backgroundColor:o.palette.background.default},children:[(0,n.jsx)(u.Z,{item:!0,sm:5,ml:1,p:1.2,border:1,borderColor:o.palette.border.default,borderRadius:2,alignContent:"center",textAlign:"center",sx:{backgroundColor:"white"},children:(0,n.jsxs)(m.Z,{variant:"h5",children:["N\xba chunks: ",(0,n.jsx)("br",{})," ",t," "]})}),(0,n.jsx)(u.Z,{item:!0,ml:10,sm:5,p:1.2,border:1,borderColor:o.palette.border.default,borderRadius:2,alignContent:"center",textAlign:"center",sx:{backgroundColor:"white"},children:(0,n.jsxs)(m.Z,{variant:"h5",children:["N\xba tokens: ",(0,n.jsx)("br",{})," ",t," "]})})]})})}var R=r(559),D=r(8410),F=r(5041);let E=async(e,t)=>{let r=new URLSearchParams;for(let e in t)r.append(e,t[e]);let n=await fetch(s+e,{method:"POST",headers:{"Content-Type":"application/x-www-form-urlencoded"},body:r.toString()});if(!n.ok){let e=await n.json(),t=Error("HTTP error");throw t.status=n.status,t.detail=e.detail||"Something went wrong",t}return n.json()};function I(e){let{fetchMessages:t}=e,[r,o]=(0,h.useState)(""),{enqueueSnackbar:l}=(0,F.Ds)(),i=(0,c.Z)();return(0,n.jsx)(n.Fragment,{children:(0,n.jsxs)(u.Z,{container:!0,alignItems:"center",xs:12,sm:12,p:2,pl:3,border:1,borderRadius:2,borderColor:i.palette.border.default,sx:{backgroundColor:i.palette.background.default},children:[(0,n.jsx)(u.Z,{item:!0,xs:12,sm:10,children:(0,n.jsx)(D.Z,{fullWidth:!0,size:"small",label:"Ask me anything",onChange:e=>{o(e.target.value)},slotProps:{input:{sx:{backgroundColor:"white",borderRadius:"4px"}}}})}),(0,n.jsx)(u.Z,{ml:4,item:!0,xs:12,border:1,borderColor:i.palette.border.default,borderRadius:20,display:"flex",justifyContent:"center",alignItems:"center",sx:{backgroundColor:i.palette.secondary.main,width:35,height:35},children:(0,n.jsx)(j.Z,{onClick:()=>{if(!r.trim()){l("Please enter a message.",{variant:"warning"});return}E("/query/query_search",{q:r}).then(t).catch(e=>{l(e.detail||e.message,{variant:"error"})}),o("")},children:(0,n.jsx)(R.Z,{fontSize:"small",sx:{color:i.palette.border.default}})})})]})})}var T=r(1867);let _=async(e,t)=>{let r=await fetch(s+e,{method:"POST",body:t});if(!r.ok){let e=await r.json(),t=Error("HTTP error");throw t.status=r.status,t.detail=e.detail||"Something went wrong",t}return r.json()};function N(e){let{fetchDocuments:t,fetchChunks:r}=e,o=(0,c.Z)(),l=(0,h.useRef)(null);return(0,n.jsx)(u.Z,{container:!0,border:1,borderColor:o.palette.border.default,borderRadius:2,p:1,sx:{backgroundColor:o.palette.background.default},children:(0,n.jsx)(j.Z,{fullWidth:!0,sx:{textTransform:"none"},onClick:()=>{l.current.click()},children:(0,n.jsxs)(u.Z,{container:!0,xs:12,alignItems:"center",justifyContent:"space-between",border:1,borderColor:o.palette.divider,borderRadius:1,p:1,sx:{backgroundColor:"white"},children:[(0,n.jsx)("input",{type:"file",ref:l,style:{display:"none"},onChange:e=>{let n=e.target.files[0];if(!n)return;let o=new FormData;o.append("file",n),_("/upload/document",o).then(t()).then(r()).catch(e=>{(0,F.yv)(e.detail||e.message,{variant:"error"})})},accept:".pdf"}),(0,n.jsx)(u.Z,{item:!0,children:(0,n.jsx)(m.Z,{variant:"h6",color:"black",children:"Upload File"})}),(0,n.jsx)(T.Z,{sx:{color:"black"}})]})})})}function W(){(0,c.Z)();let[e,t]=(0,h.useState)([]),[r,o]=(0,h.useState)([]),[l,i]=(0,h.useState)([]),[a,d]=(0,h.useState)(null);console.log(l[a]);let x=async()=>{let e="".concat(s,"/query/get_messages"),r=await fetch(e);t((await r.json()).data)},m=async()=>{let e="".concat(s,"/upload/get_documents"),t=await fetch(e);o((await t.json()).data)},f=async()=>{let e="".concat(s,"/upload/get_embeddings"),t=await fetch(e),r=await t.json(),n=1;i(Object.keys(r.data).flatMap(e=>r.data[e].data.map(e=>({id:n++,text:e.metadata.original_text}))))};return(0,h.useEffect)(()=>{x(),m(),f()},[]),(0,n.jsx)(n.Fragment,{children:(0,n.jsxs)(u.Z,{container:!0,mt:1,style:{height:"97vh"},children:[(0,n.jsxs)(u.Z,{item:!0,xs:12,sm:5,p:1,style:{display:"flex",flexDirection:"column",height:"100%"},children:[(0,n.jsx)(Z,{}),(0,n.jsx)(b,{messages:e}),(0,n.jsx)(I,{fetchMessages:x})]}),(0,n.jsxs)(u.Z,{item:!0,xs:12,sm:2,p:1,style:{display:"flex",flexDirection:"column",height:"100%"},children:[(0,n.jsx)(p,{chunks:2,documents:1}),(0,n.jsx)(k,{chunks:l,onSelectedChunk:e=>{if(e.documentNumber===a){d(null);return}d(e.documentNumber)}}),(0,n.jsx)(v,{documents:r,fetchDocuments:m,fetchChunks:f}),(0,n.jsx)(N,{fetchDocuments:m,fetchChunks:f})]}),(0,n.jsxs)(u.Z,{item:!0,xs:12,sm:5,p:1,style:{display:"flex",flexDirection:"column",height:"100%"},children:[(0,n.jsx)(S,{}),(0,n.jsx)(g,{chunkTest:l[a]})]})]})})}function z(){return(0,n.jsx)(n.Fragment,{children:(0,n.jsx)(o.a,{theme:function(){return arguments.length>0&&void 0!==arguments[0]&&arguments[0],(0,i.Z)((0,a.Z)({...d}))}(),children:(0,n.jsx)(F.wT,{children:(0,n.jsx)(W,{})})})})}}},function(e){e.O(0,[324,971,23,744],function(){return e(e.s=8278)}),_N_E=e.O()}]);
|
Api/src/out/_next/static/chunks/fd9d1056-90960e0a7e77703c.js
ADDED
The diff for this file is too large to render.
See raw diff
|
|
Api/src/out/_next/static/chunks/framework-f66176bb897dc684.js
ADDED
The diff for this file is too large to render.
See raw diff
|
|
Api/src/out/_next/static/chunks/main-86caab0518fca858.js
ADDED
The diff for this file is too large to render.
See raw diff
|
|
Api/src/out/_next/static/chunks/main-app-f4f564f56624dcb5.js
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[744],{815:function(e,n,t){Promise.resolve().then(t.t.bind(t,5751,23)),Promise.resolve().then(t.t.bind(t,6513,23)),Promise.resolve().then(t.t.bind(t,6130,23)),Promise.resolve().then(t.t.bind(t,9275,23)),Promise.resolve().then(t.t.bind(t,5324,23)),Promise.resolve().then(t.t.bind(t,1343,23))}},function(e){var n=function(n){return e(e.s=n)};e.O(0,[971,23],function(){return n(1028),n(815)}),_N_E=e.O()}]);
|
Api/src/out/_next/static/chunks/pages/_app-6a626577ffa902a4.js
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[888],{1597:function(n,_,u){(window.__NEXT_P=window.__NEXT_P||[]).push(["/_app",function(){return u(2239)}])}},function(n){var _=function(_){return n(n.s=_)};n.O(0,[774,179],function(){return _(1597),_(6036)}),_N_E=n.O()}]);
|
Api/src/out/_next/static/chunks/pages/_error-1be831200e60c5c0.js
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[820],{1981:function(n,_,u){(window.__NEXT_P=window.__NEXT_P||[]).push(["/_error",function(){return u(3387)}])}},function(n){n.O(0,[888,774,179],function(){return n(n.s=1981)}),_N_E=n.O()}]);
|
Api/src/out/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
!function(){var t="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function e(t){var e={exports:{}};return t(e,e.exports),e.exports}var r=function(t){return t&&t.Math==Math&&t},n=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof t&&t)||Function("return this")(),o=function(t){try{return!!t()}catch(t){return!0}},i=!o(function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}),a={}.propertyIsEnumerable,u=Object.getOwnPropertyDescriptor,s=u&&!a.call({1:2},1)?function(t){var e=u(this,t);return!!e&&e.enumerable}:a,c={f:s},f=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}},l={}.toString,h=function(t){return l.call(t).slice(8,-1)},p="".split,d=o(function(){return!Object("z").propertyIsEnumerable(0)})?function(t){return"String"==h(t)?p.call(t,""):Object(t)}:Object,v=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t},g=function(t){return d(v(t))},y=function(t){return"object"==typeof t?null!==t:"function"==typeof t},m=function(t,e){if(!y(t))return t;var r,n;if(e&&"function"==typeof(r=t.toString)&&!y(n=r.call(t)))return n;if("function"==typeof(r=t.valueOf)&&!y(n=r.call(t)))return n;if(!e&&"function"==typeof(r=t.toString)&&!y(n=r.call(t)))return n;throw TypeError("Can't convert object to primitive value")},b={}.hasOwnProperty,w=function(t,e){return b.call(t,e)},S=n.document,E=y(S)&&y(S.createElement),x=function(t){return E?S.createElement(t):{}},A=!i&&!o(function(){return 7!=Object.defineProperty(x("div"),"a",{get:function(){return 7}}).a}),O=Object.getOwnPropertyDescriptor,R={f:i?O:function(t,e){if(t=g(t),e=m(e,!0),A)try{return O(t,e)}catch(t){}if(w(t,e))return f(!c.f.call(t,e),t[e])}},j=function(t){if(!y(t))throw TypeError(String(t)+" is not an object");return t},P=Object.defineProperty,I={f:i?P:function(t,e,r){if(j(t),e=m(e,!0),j(r),A)try{return P(t,e,r)}catch(t){}if("get"in r||"set"in r)throw TypeError("Accessors not supported");return"value"in r&&(t[e]=r.value),t}},T=i?function(t,e,r){return I.f(t,e,f(1,r))}:function(t,e,r){return t[e]=r,t},k=function(t,e){try{T(n,t,e)}catch(r){n[t]=e}return e},L="__core-js_shared__",U=n[L]||k(L,{}),M=Function.toString;"function"!=typeof U.inspectSource&&(U.inspectSource=function(t){return M.call(t)});var _,N,C,F=U.inspectSource,B=n.WeakMap,D="function"==typeof B&&/native code/.test(F(B)),q=!1,z=e(function(t){(t.exports=function(t,e){return U[t]||(U[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.6.5",mode:"global",copyright:"© 2020 Denis Pushkarev (zloirock.ru)"})}),W=0,K=Math.random(),G=function(t){return"Symbol("+String(void 0===t?"":t)+")_"+(++W+K).toString(36)},$=z("keys"),V=function(t){return $[t]||($[t]=G(t))},H={};if(D){var X=new(0,n.WeakMap),Y=X.get,J=X.has,Q=X.set;_=function(t,e){return Q.call(X,t,e),e},N=function(t){return Y.call(X,t)||{}},C=function(t){return J.call(X,t)}}else{var Z=V("state");H[Z]=!0,_=function(t,e){return T(t,Z,e),e},N=function(t){return w(t,Z)?t[Z]:{}},C=function(t){return w(t,Z)}}var tt,et={set:_,get:N,has:C,enforce:function(t){return C(t)?N(t):_(t,{})},getterFor:function(t){return function(e){var r;if(!y(e)||(r=N(e)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return r}}},rt=e(function(t){var e=et.get,r=et.enforce,o=String(String).split("String");(t.exports=function(t,e,i,a){var u=!!a&&!!a.unsafe,s=!!a&&!!a.enumerable,c=!!a&&!!a.noTargetGet;"function"==typeof i&&("string"!=typeof e||w(i,"name")||T(i,"name",e),r(i).source=o.join("string"==typeof e?e:"")),t!==n?(u?!c&&t[e]&&(s=!0):delete t[e],s?t[e]=i:T(t,e,i)):s?t[e]=i:k(e,i)})(Function.prototype,"toString",function(){return"function"==typeof this&&e(this).source||F(this)})}),nt=n,ot=function(t){return"function"==typeof t?t:void 0},it=function(t,e){return arguments.length<2?ot(nt[t])||ot(n[t]):nt[t]&&nt[t][e]||n[t]&&n[t][e]},at=Math.ceil,ut=Math.floor,st=function(t){return isNaN(t=+t)?0:(t>0?ut:at)(t)},ct=Math.min,ft=function(t){return t>0?ct(st(t),9007199254740991):0},lt=Math.max,ht=Math.min,pt=function(t,e){var r=st(t);return r<0?lt(r+e,0):ht(r,e)},dt=function(t){return function(e,r,n){var o,i=g(e),a=ft(i.length),u=pt(n,a);if(t&&r!=r){for(;a>u;)if((o=i[u++])!=o)return!0}else for(;a>u;u++)if((t||u in i)&&i[u]===r)return t||u||0;return!t&&-1}},vt={includes:dt(!0),indexOf:dt(!1)},gt=vt.indexOf,yt=function(t,e){var r,n=g(t),o=0,i=[];for(r in n)!w(H,r)&&w(n,r)&&i.push(r);for(;e.length>o;)w(n,r=e[o++])&&(~gt(i,r)||i.push(r));return i},mt=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],bt=mt.concat("length","prototype"),wt={f:Object.getOwnPropertyNames||function(t){return yt(t,bt)}},St={f:Object.getOwnPropertySymbols},Et=it("Reflect","ownKeys")||function(t){var e=wt.f(j(t)),r=St.f;return r?e.concat(r(t)):e},xt=function(t,e){for(var r=Et(e),n=I.f,o=R.f,i=0;i<r.length;i++){var a=r[i];w(t,a)||n(t,a,o(e,a))}},At=/#|\.prototype\./,Ot=function(t,e){var r=jt[Rt(t)];return r==It||r!=Pt&&("function"==typeof e?o(e):!!e)},Rt=Ot.normalize=function(t){return String(t).replace(At,".").toLowerCase()},jt=Ot.data={},Pt=Ot.NATIVE="N",It=Ot.POLYFILL="P",Tt=Ot,kt=R.f,Lt=function(t,e){var r,o,i,a,u,s=t.target,c=t.global,f=t.stat;if(r=c?n:f?n[s]||k(s,{}):(n[s]||{}).prototype)for(o in e){if(a=e[o],i=t.noTargetGet?(u=kt(r,o))&&u.value:r[o],!Tt(c?o:s+(f?".":"#")+o,t.forced)&&void 0!==i){if(typeof a==typeof i)continue;xt(a,i)}(t.sham||i&&i.sham)&&T(a,"sham",!0),rt(r,o,a,t)}},Ut=function(t){return Object(v(t))},Mt=Math.min,_t=[].copyWithin||function(t,e){var r=Ut(this),n=ft(r.length),o=pt(t,n),i=pt(e,n),a=arguments.length>2?arguments[2]:void 0,u=Mt((void 0===a?n:pt(a,n))-i,n-o),s=1;for(i<o&&o<i+u&&(s=-1,i+=u-1,o+=u-1);u-- >0;)i in r?r[o]=r[i]:delete r[o],o+=s,i+=s;return r},Nt=!!Object.getOwnPropertySymbols&&!o(function(){return!String(Symbol())}),Ct=Nt&&!Symbol.sham&&"symbol"==typeof Symbol.iterator,Ft=z("wks"),Bt=n.Symbol,Dt=Ct?Bt:Bt&&Bt.withoutSetter||G,qt=function(t){return w(Ft,t)||(Ft[t]=Nt&&w(Bt,t)?Bt[t]:Dt("Symbol."+t)),Ft[t]},zt=Object.keys||function(t){return yt(t,mt)},Wt=i?Object.defineProperties:function(t,e){j(t);for(var r,n=zt(e),o=n.length,i=0;o>i;)I.f(t,r=n[i++],e[r]);return t},Kt=it("document","documentElement"),Gt="prototype",$t="script",Vt=V("IE_PROTO"),Ht=function(){},Xt=function(t){return"<"+$t+">"+t+"</"+$t+">"},Yt=function(){try{tt=document.domain&&new ActiveXObject("htmlfile")}catch(t){}var t,e,r;Yt=tt?function(t){t.write(Xt("")),t.close();var e=t.parentWindow.Object;return t=null,e}(tt):(e=x("iframe"),r="java"+$t+":",e.style.display="none",Kt.appendChild(e),e.src=String(r),(t=e.contentWindow.document).open(),t.write(Xt("document.F=Object")),t.close(),t.F);for(var n=mt.length;n--;)delete Yt[Gt][mt[n]];return Yt()};H[Vt]=!0;var Jt=Object.create||function(t,e){var r;return null!==t?(Ht[Gt]=j(t),r=new Ht,Ht[Gt]=null,r[Vt]=t):r=Yt(),void 0===e?r:Wt(r,e)},Qt=qt("unscopables"),Zt=Array.prototype;null==Zt[Qt]&&I.f(Zt,Qt,{configurable:!0,value:Jt(null)});var te=function(t){Zt[Qt][t]=!0};Lt({target:"Array",proto:!0},{copyWithin:_t}),te("copyWithin");var ee=function(t){if("function"!=typeof t)throw TypeError(String(t)+" is not a function");return t},re=function(t,e,r){if(ee(t),void 0===e)return t;switch(r){case 0:return function(){return t.call(e)};case 1:return function(r){return t.call(e,r)};case 2:return function(r,n){return t.call(e,r,n)};case 3:return function(r,n,o){return t.call(e,r,n,o)}}return function(){return t.apply(e,arguments)}},ne=Function.call,oe=function(t,e,r){return re(ne,n[t].prototype[e],r)};oe("Array","copyWithin"),Lt({target:"Array",proto:!0},{fill:function(t){for(var e=Ut(this),r=ft(e.length),n=arguments.length,o=pt(n>1?arguments[1]:void 0,r),i=n>2?arguments[2]:void 0,a=void 0===i?r:pt(i,r);a>o;)e[o++]=t;return e}}),te("fill"),oe("Array","fill");var ie=Array.isArray||function(t){return"Array"==h(t)},ae=qt("species"),ue=function(t,e){var r;return ie(t)&&("function"!=typeof(r=t.constructor)||r!==Array&&!ie(r.prototype)?y(r)&&null===(r=r[ae])&&(r=void 0):r=void 0),new(void 0===r?Array:r)(0===e?0:e)},se=[].push,ce=function(t){var e=1==t,r=2==t,n=3==t,o=4==t,i=6==t,a=5==t||i;return function(u,s,c,f){for(var l,h,p=Ut(u),v=d(p),g=re(s,c,3),y=ft(v.length),m=0,b=f||ue,w=e?b(u,y):r?b(u,0):void 0;y>m;m++)if((a||m in v)&&(h=g(l=v[m],m,p),t))if(e)w[m]=h;else if(h)switch(t){case 3:return!0;case 5:return l;case 6:return m;case 2:se.call(w,l)}else if(o)return!1;return i?-1:n||o?o:w}},fe={forEach:ce(0),map:ce(1),filter:ce(2),some:ce(3),every:ce(4),find:ce(5),findIndex:ce(6)},le=Object.defineProperty,he={},pe=function(t){throw t},de=function(t,e){if(w(he,t))return he[t];e||(e={});var r=[][t],n=!!w(e,"ACCESSORS")&&e.ACCESSORS,a=w(e,0)?e[0]:pe,u=w(e,1)?e[1]:void 0;return he[t]=!!r&&!o(function(){if(n&&!i)return!0;var t={length:-1};n?le(t,1,{enumerable:!0,get:pe}):t[1]=1,r.call(t,a,u)})},ve=fe.find,ge="find",ye=!0,me=de(ge);ge in[]&&Array(1)[ge](function(){ye=!1}),Lt({target:"Array",proto:!0,forced:ye||!me},{find:function(t){return ve(this,t,arguments.length>1?arguments[1]:void 0)}}),te(ge),oe("Array","find");var be=fe.findIndex,we="findIndex",Se=!0,Ee=de(we);we in[]&&Array(1)[we](function(){Se=!1}),Lt({target:"Array",proto:!0,forced:Se||!Ee},{findIndex:function(t){return be(this,t,arguments.length>1?arguments[1]:void 0)}}),te(we),oe("Array","findIndex");var xe=function(t,e,r,n,o,i,a,u){for(var s,c=o,f=0,l=!!a&&re(a,u,3);f<n;){if(f in r){if(s=l?l(r[f],f,e):r[f],i>0&&ie(s))c=xe(t,e,s,ft(s.length),c,i-1)-1;else{if(c>=9007199254740991)throw TypeError("Exceed the acceptable array length");t[c]=s}c++}f++}return c},Ae=xe;Lt({target:"Array",proto:!0},{flatMap:function(t){var e,r=Ut(this),n=ft(r.length);return ee(t),(e=ue(r,0)).length=Ae(e,r,r,n,0,1,t,arguments.length>1?arguments[1]:void 0),e}}),te("flatMap"),oe("Array","flatMap"),Lt({target:"Array",proto:!0},{flat:function(){var t=arguments.length?arguments[0]:void 0,e=Ut(this),r=ft(e.length),n=ue(e,0);return n.length=Ae(n,e,e,r,0,void 0===t?1:st(t)),n}}),te("flat"),oe("Array","flat");var Oe,Re,je,Pe=function(t){return function(e,r){var n,o,i=String(v(e)),a=st(r),u=i.length;return a<0||a>=u?t?"":void 0:(n=i.charCodeAt(a))<55296||n>56319||a+1===u||(o=i.charCodeAt(a+1))<56320||o>57343?t?i.charAt(a):n:t?i.slice(a,a+2):o-56320+(n-55296<<10)+65536}},Ie={codeAt:Pe(!1),charAt:Pe(!0)},Te=!o(function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}),ke=V("IE_PROTO"),Le=Object.prototype,Ue=Te?Object.getPrototypeOf:function(t){return t=Ut(t),w(t,ke)?t[ke]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?Le:null},Me=qt("iterator"),_e=!1;[].keys&&("next"in(je=[].keys())?(Re=Ue(Ue(je)))!==Object.prototype&&(Oe=Re):_e=!0),null==Oe&&(Oe={}),w(Oe,Me)||T(Oe,Me,function(){return this});var Ne={IteratorPrototype:Oe,BUGGY_SAFARI_ITERATORS:_e},Ce=I.f,Fe=qt("toStringTag"),Be=function(t,e,r){t&&!w(t=r?t:t.prototype,Fe)&&Ce(t,Fe,{configurable:!0,value:e})},De={},qe=Ne.IteratorPrototype,ze=function(){return this},We=function(t,e,r){var n=e+" Iterator";return t.prototype=Jt(qe,{next:f(1,r)}),Be(t,n,!1),De[n]=ze,t},Ke=function(t){if(!y(t)&&null!==t)throw TypeError("Can't set "+String(t)+" as a prototype");return t},Ge=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,r={};try{(t=Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set).call(r,[]),e=r instanceof Array}catch(t){}return function(r,n){return j(r),Ke(n),e?t.call(r,n):r.__proto__=n,r}}():void 0),$e=Ne.IteratorPrototype,Ve=Ne.BUGGY_SAFARI_ITERATORS,He=qt("iterator"),Xe="keys",Ye="values",Je="entries",Qe=function(){return this},Ze=function(t,e,r,n,o,i,a){We(r,e,n);var u,s,c,f=function(t){if(t===o&&v)return v;if(!Ve&&t in p)return p[t];switch(t){case Xe:case Ye:case Je:return function(){return new r(this,t)}}return function(){return new r(this)}},l=e+" Iterator",h=!1,p=t.prototype,d=p[He]||p["@@iterator"]||o&&p[o],v=!Ve&&d||f(o),g="Array"==e&&p.entries||d;if(g&&(u=Ue(g.call(new t)),$e!==Object.prototype&&u.next&&(Ue(u)!==$e&&(Ge?Ge(u,$e):"function"!=typeof u[He]&&T(u,He,Qe)),Be(u,l,!0))),o==Ye&&d&&d.name!==Ye&&(h=!0,v=function(){return d.call(this)}),p[He]!==v&&T(p,He,v),De[e]=v,o)if(s={values:f(Ye),keys:i?v:f(Xe),entries:f(Je)},a)for(c in s)(Ve||h||!(c in p))&&rt(p,c,s[c]);else Lt({target:e,proto:!0,forced:Ve||h},s);return s},tr=Ie.charAt,er="String Iterator",rr=et.set,nr=et.getterFor(er);Ze(String,"String",function(t){rr(this,{type:er,string:String(t),index:0})},function(){var t,e=nr(this),r=e.string,n=e.index;return n>=r.length?{value:void 0,done:!0}:(t=tr(r,n),e.index+=t.length,{value:t,done:!1})});var or=function(t,e,r,n){try{return n?e(j(r)[0],r[1]):e(r)}catch(e){var o=t.return;throw void 0!==o&&j(o.call(t)),e}},ir=qt("iterator"),ar=Array.prototype,ur=function(t){return void 0!==t&&(De.Array===t||ar[ir]===t)},sr=function(t,e,r){var n=m(e);n in t?I.f(t,n,f(0,r)):t[n]=r},cr={};cr[qt("toStringTag")]="z";var fr="[object z]"===String(cr),lr=qt("toStringTag"),hr="Arguments"==h(function(){return arguments}()),pr=fr?h:function(t){var e,r,n;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(r=function(t,e){try{return t[e]}catch(t){}}(e=Object(t),lr))?r:hr?h(e):"Object"==(n=h(e))&&"function"==typeof e.callee?"Arguments":n},dr=qt("iterator"),vr=function(t){if(null!=t)return t[dr]||t["@@iterator"]||De[pr(t)]},gr=function(t){var e,r,n,o,i,a,u=Ut(t),s="function"==typeof this?this:Array,c=arguments.length,f=c>1?arguments[1]:void 0,l=void 0!==f,h=vr(u),p=0;if(l&&(f=re(f,c>2?arguments[2]:void 0,2)),null==h||s==Array&&ur(h))for(r=new s(e=ft(u.length));e>p;p++)a=l?f(u[p],p):u[p],sr(r,p,a);else for(i=(o=h.call(u)).next,r=new s;!(n=i.call(o)).done;p++)a=l?or(o,f,[n.value,p],!0):n.value,sr(r,p,a);return r.length=p,r},yr=qt("iterator"),mr=!1;try{var br=0,wr={next:function(){return{done:!!br++}},return:function(){mr=!0}};wr[yr]=function(){return this},Array.from(wr,function(){throw 2})}catch(t){}var Sr=function(t,e){if(!e&&!mr)return!1;var r=!1;try{var n={};n[yr]=function(){return{next:function(){return{done:r=!0}}}},t(n)}catch(t){}return r},Er=!Sr(function(t){Array.from(t)});Lt({target:"Array",stat:!0,forced:Er},{from:gr});var xr=vt.includes,Ar=de("indexOf",{ACCESSORS:!0,1:0});Lt({target:"Array",proto:!0,forced:!Ar},{includes:function(t){return xr(this,t,arguments.length>1?arguments[1]:void 0)}}),te("includes"),oe("Array","includes");var Or="Array Iterator",Rr=et.set,jr=et.getterFor(Or),Pr=Ze(Array,"Array",function(t,e){Rr(this,{type:Or,target:g(t),index:0,kind:e})},function(){var t=jr(this),e=t.target,r=t.kind,n=t.index++;return!e||n>=e.length?(t.target=void 0,{value:void 0,done:!0}):"keys"==r?{value:n,done:!1}:"values"==r?{value:e[n],done:!1}:{value:[n,e[n]],done:!1}},"values");De.Arguments=De.Array,te("keys"),te("values"),te("entries"),oe("Array","values");var Ir=o(function(){function t(){}return!(Array.of.call(t)instanceof t)});Lt({target:"Array",stat:!0,forced:Ir},{of:function(){for(var t=0,e=arguments.length,r=new("function"==typeof this?this:Array)(e);e>t;)sr(r,t,arguments[t++]);return r.length=e,r}});var Tr=qt("hasInstance"),kr=Function.prototype;Tr in kr||I.f(kr,Tr,{value:function(t){if("function"!=typeof this||!y(t))return!1;if(!y(this.prototype))return t instanceof this;for(;t=Ue(t);)if(this.prototype===t)return!0;return!1}}),qt("hasInstance");var Lr=Function.prototype,Ur=Lr.toString,Mr=/^\s*function ([^ (]*)/,_r="name";i&&!(_r in Lr)&&(0,I.f)(Lr,_r,{configurable:!0,get:function(){try{return Ur.call(this).match(Mr)[1]}catch(t){return""}}});var Nr=!o(function(){return Object.isExtensible(Object.preventExtensions({}))}),Cr=e(function(t){var e=I.f,r=G("meta"),n=0,o=Object.isExtensible||function(){return!0},i=function(t){e(t,r,{value:{objectID:"O"+ ++n,weakData:{}}})},a=t.exports={REQUIRED:!1,fastKey:function(t,e){if(!y(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!w(t,r)){if(!o(t))return"F";if(!e)return"E";i(t)}return t[r].objectID},getWeakData:function(t,e){if(!w(t,r)){if(!o(t))return!0;if(!e)return!1;i(t)}return t[r].weakData},onFreeze:function(t){return Nr&&a.REQUIRED&&o(t)&&!w(t,r)&&i(t),t}};H[r]=!0}),Fr=e(function(t){var e=function(t,e){this.stopped=t,this.result=e},r=t.exports=function(t,r,n,o,i){var a,u,s,c,f,l,h,p=re(r,n,o?2:1);if(i)a=t;else{if("function"!=typeof(u=vr(t)))throw TypeError("Target is not iterable");if(ur(u)){for(s=0,c=ft(t.length);c>s;s++)if((f=o?p(j(h=t[s])[0],h[1]):p(t[s]))&&f instanceof e)return f;return new e(!1)}a=u.call(t)}for(l=a.next;!(h=l.call(a)).done;)if("object"==typeof(f=or(a,p,h.value,o))&&f&&f instanceof e)return f;return new e(!1)};r.stop=function(t){return new e(!0,t)}}),Br=function(t,e,r){if(!(t instanceof e))throw TypeError("Incorrect "+(r?r+" ":"")+"invocation");return t},Dr=function(t,e,r){var n,o;return Ge&&"function"==typeof(n=e.constructor)&&n!==r&&y(o=n.prototype)&&o!==r.prototype&&Ge(t,o),t},qr=function(t,e,r){var i=-1!==t.indexOf("Map"),a=-1!==t.indexOf("Weak"),u=i?"set":"add",s=n[t],c=s&&s.prototype,f=s,l={},h=function(t){var e=c[t];rt(c,t,"add"==t?function(t){return e.call(this,0===t?0:t),this}:"delete"==t?function(t){return!(a&&!y(t))&&e.call(this,0===t?0:t)}:"get"==t?function(t){return a&&!y(t)?void 0:e.call(this,0===t?0:t)}:"has"==t?function(t){return!(a&&!y(t))&&e.call(this,0===t?0:t)}:function(t,r){return e.call(this,0===t?0:t,r),this})};if(Tt(t,"function"!=typeof s||!(a||c.forEach&&!o(function(){(new s).entries().next()}))))f=r.getConstructor(e,t,i,u),Cr.REQUIRED=!0;else if(Tt(t,!0)){var p=new f,d=p[u](a?{}:-0,1)!=p,v=o(function(){p.has(1)}),g=Sr(function(t){new s(t)}),m=!a&&o(function(){for(var t=new s,e=5;e--;)t[u](e,e);return!t.has(-0)});g||((f=e(function(e,r){Br(e,f,t);var n=Dr(new s,e,f);return null!=r&&Fr(r,n[u],n,i),n})).prototype=c,c.constructor=f),(v||m)&&(h("delete"),h("has"),i&&h("get")),(m||d)&&h(u),a&&c.clear&&delete c.clear}return l[t]=f,Lt({global:!0,forced:f!=s},l),Be(f,t),a||r.setStrong(f,t,i),f},zr=function(t,e,r){for(var n in e)rt(t,n,e[n],r);return t},Wr=qt("species"),Kr=function(t){var e=it(t);i&&e&&!e[Wr]&&(0,I.f)(e,Wr,{configurable:!0,get:function(){return this}})},Gr=I.f,$r=Cr.fastKey,Vr=et.set,Hr=et.getterFor,Xr={getConstructor:function(t,e,r,n){var o=t(function(t,a){Br(t,o,e),Vr(t,{type:e,index:Jt(null),first:void 0,last:void 0,size:0}),i||(t.size=0),null!=a&&Fr(a,t[n],t,r)}),a=Hr(e),u=function(t,e,r){var n,o,u=a(t),c=s(t,e);return c?c.value=r:(u.last=c={index:o=$r(e,!0),key:e,value:r,previous:n=u.last,next:void 0,removed:!1},u.first||(u.first=c),n&&(n.next=c),i?u.size++:t.size++,"F"!==o&&(u.index[o]=c)),t},s=function(t,e){var r,n=a(t),o=$r(e);if("F"!==o)return n.index[o];for(r=n.first;r;r=r.next)if(r.key==e)return r};return zr(o.prototype,{clear:function(){for(var t=a(this),e=t.index,r=t.first;r;)r.removed=!0,r.previous&&(r.previous=r.previous.next=void 0),delete e[r.index],r=r.next;t.first=t.last=void 0,i?t.size=0:this.size=0},delete:function(t){var e=this,r=a(e),n=s(e,t);if(n){var o=n.next,u=n.previous;delete r.index[n.index],n.removed=!0,u&&(u.next=o),o&&(o.previous=u),r.first==n&&(r.first=o),r.last==n&&(r.last=u),i?r.size--:e.size--}return!!n},forEach:function(t){for(var e,r=a(this),n=re(t,arguments.length>1?arguments[1]:void 0,3);e=e?e.next:r.first;)for(n(e.value,e.key,this);e&&e.removed;)e=e.previous},has:function(t){return!!s(this,t)}}),zr(o.prototype,r?{get:function(t){var e=s(this,t);return e&&e.value},set:function(t,e){return u(this,0===t?0:t,e)}}:{add:function(t){return u(this,t=0===t?0:t,t)}}),i&&Gr(o.prototype,"size",{get:function(){return a(this).size}}),o},setStrong:function(t,e,r){var n=e+" Iterator",o=Hr(e),i=Hr(n);Ze(t,e,function(t,e){Vr(this,{type:n,target:t,state:o(t),kind:e,last:void 0})},function(){for(var t=i(this),e=t.kind,r=t.last;r&&r.removed;)r=r.previous;return t.target&&(t.last=r=r?r.next:t.state.first)?"keys"==e?{value:r.key,done:!1}:"values"==e?{value:r.value,done:!1}:{value:[r.key,r.value],done:!1}:(t.target=void 0,{value:void 0,done:!0})},r?"entries":"values",!r,!0),Kr(e)}},Yr=qr("Map",function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}},Xr);fr||rt(Object.prototype,"toString",fr?{}.toString:function(){return"[object "+pr(this)+"]"},{unsafe:!0});var Jr={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0},Qr=qt("iterator"),Zr=qt("toStringTag"),tn=Pr.values;for(var en in Jr){var rn=n[en],nn=rn&&rn.prototype;if(nn){if(nn[Qr]!==tn)try{T(nn,Qr,tn)}catch(t){nn[Qr]=tn}if(nn[Zr]||T(nn,Zr,en),Jr[en])for(var on in Pr)if(nn[on]!==Pr[on])try{T(nn,on,Pr[on])}catch(t){nn[on]=Pr[on]}}}var an=function(t){var e,r,n,o,i=arguments.length,a=i>1?arguments[1]:void 0;return ee(this),(e=void 0!==a)&&ee(a),null==t?new this:(r=[],e?(n=0,o=re(a,i>2?arguments[2]:void 0,2),Fr(t,function(t){r.push(o(t,n++))})):Fr(t,r.push,r),new this(r))};Lt({target:"Map",stat:!0},{from:an});var un=function(){for(var t=arguments.length,e=new Array(t);t--;)e[t]=arguments[t];return new this(e)};Lt({target:"Map",stat:!0},{of:un});var sn=function(){for(var t,e=j(this),r=ee(e.delete),n=!0,o=0,i=arguments.length;o<i;o++)t=r.call(e,arguments[o]),n=n&&t;return!!n};Lt({target:"Map",proto:!0,real:!0,forced:q},{deleteAll:function(){return sn.apply(this,arguments)}});var cn=function(t){var e=vr(t);if("function"!=typeof e)throw TypeError(String(t)+" is not iterable");return j(e.call(t))},fn=function(t){return Map.prototype.entries.call(t)};Lt({target:"Map",proto:!0,real:!0,forced:q},{every:function(t){var e=j(this),r=fn(e),n=re(t,arguments.length>1?arguments[1]:void 0,3);return!Fr(r,function(t,r){if(!n(r,t,e))return Fr.stop()},void 0,!0,!0).stopped}});var ln=qt("species"),hn=function(t,e){var r,n=j(t).constructor;return void 0===n||null==(r=j(n)[ln])?e:ee(r)};Lt({target:"Map",proto:!0,real:!0,forced:q},{filter:function(t){var e=j(this),r=fn(e),n=re(t,arguments.length>1?arguments[1]:void 0,3),o=new(hn(e,it("Map"))),i=ee(o.set);return Fr(r,function(t,r){n(r,t,e)&&i.call(o,t,r)},void 0,!0,!0),o}}),Lt({target:"Map",proto:!0,real:!0,forced:q},{find:function(t){var e=j(this),r=fn(e),n=re(t,arguments.length>1?arguments[1]:void 0,3);return Fr(r,function(t,r){if(n(r,t,e))return Fr.stop(r)},void 0,!0,!0).result}}),Lt({target:"Map",proto:!0,real:!0,forced:q},{findKey:function(t){var e=j(this),r=fn(e),n=re(t,arguments.length>1?arguments[1]:void 0,3);return Fr(r,function(t,r){if(n(r,t,e))return Fr.stop(t)},void 0,!0,!0).result}}),Lt({target:"Map",stat:!0},{groupBy:function(t,e){var r=new this;ee(e);var n=ee(r.has),o=ee(r.get),i=ee(r.set);return Fr(t,function(t){var a=e(t);n.call(r,a)?o.call(r,a).push(t):i.call(r,a,[t])}),r}}),Lt({target:"Map",proto:!0,real:!0,forced:q},{includes:function(t){return Fr(fn(j(this)),function(e,r){if((n=r)===(o=t)||n!=n&&o!=o)return Fr.stop();var n,o},void 0,!0,!0).stopped}}),Lt({target:"Map",stat:!0},{keyBy:function(t,e){var r=new this;ee(e);var n=ee(r.set);return Fr(t,function(t){n.call(r,e(t),t)}),r}}),Lt({target:"Map",proto:!0,real:!0,forced:q},{keyOf:function(t){return Fr(fn(j(this)),function(e,r){if(r===t)return Fr.stop(e)},void 0,!0,!0).result}}),Lt({target:"Map",proto:!0,real:!0,forced:q},{mapKeys:function(t){var e=j(this),r=fn(e),n=re(t,arguments.length>1?arguments[1]:void 0,3),o=new(hn(e,it("Map"))),i=ee(o.set);return Fr(r,function(t,r){i.call(o,n(r,t,e),r)},void 0,!0,!0),o}}),Lt({target:"Map",proto:!0,real:!0,forced:q},{mapValues:function(t){var e=j(this),r=fn(e),n=re(t,arguments.length>1?arguments[1]:void 0,3),o=new(hn(e,it("Map"))),i=ee(o.set);return Fr(r,function(t,r){i.call(o,t,n(r,t,e))},void 0,!0,!0),o}}),Lt({target:"Map",proto:!0,real:!0,forced:q},{merge:function(t){for(var e=j(this),r=ee(e.set),n=0;n<arguments.length;)Fr(arguments[n++],r,e,!0);return e}}),Lt({target:"Map",proto:!0,real:!0,forced:q},{reduce:function(t){var e=j(this),r=fn(e),n=arguments.length<2,o=n?void 0:arguments[1];if(ee(t),Fr(r,function(r,i){n?(n=!1,o=i):o=t(o,i,r,e)},void 0,!0,!0),n)throw TypeError("Reduce of empty map with no initial value");return o}}),Lt({target:"Map",proto:!0,real:!0,forced:q},{some:function(t){var e=j(this),r=fn(e),n=re(t,arguments.length>1?arguments[1]:void 0,3);return Fr(r,function(t,r){if(n(r,t,e))return Fr.stop()},void 0,!0,!0).stopped}}),Lt({target:"Map",proto:!0,real:!0,forced:q},{update:function(t,e){var r=j(this),n=arguments.length;ee(e);var o=r.has(t);if(!o&&n<3)throw TypeError("Updating absent value");var i=o?r.get(t):ee(n>2?arguments[2]:void 0)(t,r);return r.set(t,e(i,t,r)),r}});var pn=function(t,e){var r,n=j(this),o=arguments.length>2?arguments[2]:void 0;if("function"!=typeof e&&"function"!=typeof o)throw TypeError("At least one callback required");return n.has(t)?(r=n.get(t),"function"==typeof e&&(r=e(r),n.set(t,r))):"function"==typeof o&&(r=o(),n.set(t,r)),r};Lt({target:"Map",proto:!0,real:!0,forced:q},{upsert:pn}),Lt({target:"Map",proto:!0,real:!0,forced:q},{updateOrInsert:pn});var dn="\t\n\v\f\r \u2028\u2029\ufeff",vn="["+dn+"]",gn=RegExp("^"+vn+vn+"*"),yn=RegExp(vn+vn+"*$"),mn=function(t){return function(e){var r=String(v(e));return 1&t&&(r=r.replace(gn,"")),2&t&&(r=r.replace(yn,"")),r}},bn={start:mn(1),end:mn(2),trim:mn(3)},wn=wt.f,Sn=R.f,En=I.f,xn=bn.trim,An="Number",On=n[An],Rn=On.prototype,jn=h(Jt(Rn))==An,Pn=function(t){var e,r,n,o,i,a,u,s,c=m(t,!1);if("string"==typeof c&&c.length>2)if(43===(e=(c=xn(c)).charCodeAt(0))||45===e){if(88===(r=c.charCodeAt(2))||120===r)return NaN}else if(48===e){switch(c.charCodeAt(1)){case 66:case 98:n=2,o=49;break;case 79:case 111:n=8,o=55;break;default:return+c}for(a=(i=c.slice(2)).length,u=0;u<a;u++)if((s=i.charCodeAt(u))<48||s>o)return NaN;return parseInt(i,n)}return+c};if(Tt(An,!On(" 0o1")||!On("0b1")||On("+0x1"))){for(var In,Tn=function(t){var e=arguments.length<1?0:t,r=this;return r instanceof Tn&&(jn?o(function(){Rn.valueOf.call(r)}):h(r)!=An)?Dr(new On(Pn(e)),r,Tn):Pn(e)},kn=i?wn(On):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),Ln=0;kn.length>Ln;Ln++)w(On,In=kn[Ln])&&!w(Tn,In)&&En(Tn,In,Sn(On,In));Tn.prototype=Rn,Rn.constructor=Tn,rt(n,An,Tn)}Lt({target:"Number",stat:!0},{EPSILON:Math.pow(2,-52)});var Un=n.isFinite;Lt({target:"Number",stat:!0},{isFinite:Number.isFinite||function(t){return"number"==typeof t&&Un(t)}});var Mn=Math.floor,_n=function(t){return!y(t)&&isFinite(t)&&Mn(t)===t};Lt({target:"Number",stat:!0},{isInteger:_n}),Lt({target:"Number",stat:!0},{isNaN:function(t){return t!=t}});var Nn=Math.abs;Lt({target:"Number",stat:!0},{isSafeInteger:function(t){return _n(t)&&Nn(t)<=9007199254740991}}),Lt({target:"Number",stat:!0},{MAX_SAFE_INTEGER:9007199254740991}),Lt({target:"Number",stat:!0},{MIN_SAFE_INTEGER:-9007199254740991});var Cn=bn.trim,Fn=n.parseFloat,Bn=1/Fn(dn+"-0")!=-Infinity?function(t){var e=Cn(String(t)),r=Fn(e);return 0===r&&"-"==e.charAt(0)?-0:r}:Fn;Lt({target:"Number",stat:!0,forced:Number.parseFloat!=Bn},{parseFloat:Bn});var Dn=bn.trim,qn=n.parseInt,zn=/^[+-]?0[Xx]/,Wn=8!==qn(dn+"08")||22!==qn(dn+"0x16")?function(t,e){var r=Dn(String(t));return qn(r,e>>>0||(zn.test(r)?16:10))}:qn;Lt({target:"Number",stat:!0,forced:Number.parseInt!=Wn},{parseInt:Wn});var Kn=c.f,Gn=function(t){return function(e){for(var r,n=g(e),o=zt(n),a=o.length,u=0,s=[];a>u;)r=o[u++],i&&!Kn.call(n,r)||s.push(t?[r,n[r]]:n[r]);return s}},$n={entries:Gn(!0),values:Gn(!1)},Vn=$n.entries;Lt({target:"Object",stat:!0},{entries:function(t){return Vn(t)}}),Lt({target:"Object",stat:!0,sham:!i},{getOwnPropertyDescriptors:function(t){for(var e,r,n=g(t),o=R.f,i=Et(n),a={},u=0;i.length>u;)void 0!==(r=o(n,e=i[u++]))&&sr(a,e,r);return a}});var Hn=o(function(){zt(1)});Lt({target:"Object",stat:!0,forced:Hn},{keys:function(t){return zt(Ut(t))}});var Xn=Object.is||function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e};Lt({target:"Object",stat:!0},{is:Xn});var Yn=$n.values;Lt({target:"Object",stat:!0},{values:function(t){return Yn(t)}});var Jn=it("Reflect","apply"),Qn=Function.apply,Zn=!o(function(){Jn(function(){})});Lt({target:"Reflect",stat:!0,forced:Zn},{apply:function(t,e,r){return ee(t),j(r),Jn?Jn(t,e,r):Qn.call(t,e,r)}});var to=[].slice,eo={},ro=Function.bind||function(t){var e=ee(this),r=to.call(arguments,1),n=function(){var o=r.concat(to.call(arguments));return this instanceof n?function(t,e,r){if(!(e in eo)){for(var n=[],o=0;o<e;o++)n[o]="a["+o+"]";eo[e]=Function("C,a","return new C("+n.join(",")+")")}return eo[e](t,r)}(e,o.length,o):e.apply(t,o)};return y(e.prototype)&&(n.prototype=e.prototype),n},no=it("Reflect","construct"),oo=o(function(){function t(){}return!(no(function(){},[],t)instanceof t)}),io=!o(function(){no(function(){})}),ao=oo||io;Lt({target:"Reflect",stat:!0,forced:ao,sham:ao},{construct:function(t,e){ee(t),j(e);var r=arguments.length<3?t:ee(arguments[2]);if(io&&!oo)return no(t,e,r);if(t==r){switch(e.length){case 0:return new t;case 1:return new t(e[0]);case 2:return new t(e[0],e[1]);case 3:return new t(e[0],e[1],e[2]);case 4:return new t(e[0],e[1],e[2],e[3])}var n=[null];return n.push.apply(n,e),new(ro.apply(t,n))}var o=r.prototype,i=Jt(y(o)?o:Object.prototype),a=Function.apply.call(t,i,e);return y(a)?a:i}});var uo=o(function(){Reflect.defineProperty(I.f({},1,{value:1}),1,{value:2})});Lt({target:"Reflect",stat:!0,forced:uo,sham:!i},{defineProperty:function(t,e,r){j(t);var n=m(e,!0);j(r);try{return I.f(t,n,r),!0}catch(t){return!1}}});var so=R.f;Lt({target:"Reflect",stat:!0},{deleteProperty:function(t,e){var r=so(j(t),e);return!(r&&!r.configurable)&&delete t[e]}}),Lt({target:"Reflect",stat:!0},{get:function t(e,r){var n,o,i=arguments.length<3?e:arguments[2];return j(e)===i?e[r]:(n=R.f(e,r))?w(n,"value")?n.value:void 0===n.get?void 0:n.get.call(i):y(o=Ue(e))?t(o,r,i):void 0}}),Lt({target:"Reflect",stat:!0,sham:!i},{getOwnPropertyDescriptor:function(t,e){return R.f(j(t),e)}}),Lt({target:"Reflect",stat:!0,sham:!Te},{getPrototypeOf:function(t){return Ue(j(t))}}),Lt({target:"Reflect",stat:!0},{has:function(t,e){return e in t}});var co=Object.isExtensible;Lt({target:"Reflect",stat:!0},{isExtensible:function(t){return j(t),!co||co(t)}}),Lt({target:"Reflect",stat:!0},{ownKeys:Et}),Lt({target:"Reflect",stat:!0,sham:!Nr},{preventExtensions:function(t){j(t);try{var e=it("Object","preventExtensions");return e&&e(t),!0}catch(t){return!1}}});var fo=o(function(){var t=I.f({},"a",{configurable:!0});return!1!==Reflect.set(Ue(t),"a",1,t)});Lt({target:"Reflect",stat:!0,forced:fo},{set:function t(e,r,n){var o,i,a=arguments.length<4?e:arguments[3],u=R.f(j(e),r);if(!u){if(y(i=Ue(e)))return t(i,r,n,a);u=f(0)}if(w(u,"value")){if(!1===u.writable||!y(a))return!1;if(o=R.f(a,r)){if(o.get||o.set||!1===o.writable)return!1;o.value=n,I.f(a,r,o)}else I.f(a,r,f(0,n));return!0}return void 0!==u.set&&(u.set.call(a,n),!0)}}),Ge&&Lt({target:"Reflect",stat:!0},{setPrototypeOf:function(t,e){j(t),Ke(e);try{return Ge(t,e),!0}catch(t){return!1}}});var lo=Cr.getWeakData,ho=et.set,po=et.getterFor,vo=fe.find,go=fe.findIndex,yo=0,mo=function(t){return t.frozen||(t.frozen=new bo)},bo=function(){this.entries=[]},wo=function(t,e){return vo(t.entries,function(t){return t[0]===e})};bo.prototype={get:function(t){var e=wo(this,t);if(e)return e[1]},has:function(t){return!!wo(this,t)},set:function(t,e){var r=wo(this,t);r?r[1]=e:this.entries.push([t,e])},delete:function(t){var e=go(this.entries,function(e){return e[0]===t});return~e&&this.entries.splice(e,1),!!~e}};var So={getConstructor:function(t,e,r,n){var o=t(function(t,i){Br(t,o,e),ho(t,{type:e,id:yo++,frozen:void 0}),null!=i&&Fr(i,t[n],t,r)}),i=po(e),a=function(t,e,r){var n=i(t),o=lo(j(e),!0);return!0===o?mo(n).set(e,r):o[n.id]=r,t};return zr(o.prototype,{delete:function(t){var e=i(this);if(!y(t))return!1;var r=lo(t);return!0===r?mo(e).delete(t):r&&w(r,e.id)&&delete r[e.id]},has:function(t){var e=i(this);if(!y(t))return!1;var r=lo(t);return!0===r?mo(e).has(t):r&&w(r,e.id)}}),zr(o.prototype,r?{get:function(t){var e=i(this);if(y(t)){var r=lo(t);return!0===r?mo(e).get(t):r?r[e.id]:void 0}},set:function(t,e){return a(this,t,e)}}:{add:function(t){return a(this,t,!0)}}),o}},Eo=e(function(t){var e,r=et.enforce,o=!n.ActiveXObject&&"ActiveXObject"in n,i=Object.isExtensible,a=function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}},u=t.exports=qr("WeakMap",a,So);if(D&&o){e=So.getConstructor(a,"WeakMap",!0),Cr.REQUIRED=!0;var s=u.prototype,c=s.delete,f=s.has,l=s.get,h=s.set;zr(s,{delete:function(t){if(y(t)&&!i(t)){var n=r(this);return n.frozen||(n.frozen=new e),c.call(this,t)||n.frozen.delete(t)}return c.call(this,t)},has:function(t){if(y(t)&&!i(t)){var n=r(this);return n.frozen||(n.frozen=new e),f.call(this,t)||n.frozen.has(t)}return f.call(this,t)},get:function(t){if(y(t)&&!i(t)){var n=r(this);return n.frozen||(n.frozen=new e),f.call(this,t)?l.call(this,t):n.frozen.get(t)}return l.call(this,t)},set:function(t,n){if(y(t)&&!i(t)){var o=r(this);o.frozen||(o.frozen=new e),f.call(this,t)?h.call(this,t,n):o.frozen.set(t,n)}else h.call(this,t,n);return this}})}}),xo=z("metadata"),Ao=xo.store||(xo.store=new Eo),Oo=function(t,e,r){var n=Ao.get(t);if(!n){if(!r)return;Ao.set(t,n=new Yr)}var o=n.get(e);if(!o){if(!r)return;n.set(e,o=new Yr)}return o},Ro={store:Ao,getMap:Oo,has:function(t,e,r){var n=Oo(e,r,!1);return void 0!==n&&n.has(t)},get:function(t,e,r){var n=Oo(e,r,!1);return void 0===n?void 0:n.get(t)},set:function(t,e,r,n){Oo(r,n,!0).set(t,e)},keys:function(t,e){var r=Oo(t,e,!1),n=[];return r&&r.forEach(function(t,e){n.push(e)}),n},toKey:function(t){return void 0===t||"symbol"==typeof t?t:String(t)}},jo=Ro.toKey,Po=Ro.set;Lt({target:"Reflect",stat:!0},{defineMetadata:function(t,e,r){var n=arguments.length<4?void 0:jo(arguments[3]);Po(t,e,j(r),n)}});var Io=Ro.toKey,To=Ro.getMap,ko=Ro.store;Lt({target:"Reflect",stat:!0},{deleteMetadata:function(t,e){var r=arguments.length<3?void 0:Io(arguments[2]),n=To(j(e),r,!1);if(void 0===n||!n.delete(t))return!1;if(n.size)return!0;var o=ko.get(e);return o.delete(r),!!o.size||ko.delete(e)}});var Lo=Ro.has,Uo=Ro.get,Mo=Ro.toKey,_o=function(t,e,r){if(Lo(t,e,r))return Uo(t,e,r);var n=Ue(e);return null!==n?_o(t,n,r):void 0};Lt({target:"Reflect",stat:!0},{getMetadata:function(t,e){var r=arguments.length<3?void 0:Mo(arguments[2]);return _o(t,j(e),r)}});var No=qr("Set",function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}},Xr),Co=Ro.keys,Fo=Ro.toKey,Bo=function(t,e){var r=Co(t,e),n=Ue(t);if(null===n)return r;var o,i,a=Bo(n,e);return a.length?r.length?(o=new No(r.concat(a)),Fr(o,(i=[]).push,i),i):a:r};Lt({target:"Reflect",stat:!0},{getMetadataKeys:function(t){var e=arguments.length<2?void 0:Fo(arguments[1]);return Bo(j(t),e)}});var Do=Ro.get,qo=Ro.toKey;Lt({target:"Reflect",stat:!0},{getOwnMetadata:function(t,e){var r=arguments.length<3?void 0:qo(arguments[2]);return Do(t,j(e),r)}});var zo=Ro.keys,Wo=Ro.toKey;Lt({target:"Reflect",stat:!0},{getOwnMetadataKeys:function(t){var e=arguments.length<2?void 0:Wo(arguments[1]);return zo(j(t),e)}});var Ko=Ro.has,Go=Ro.toKey,$o=function(t,e,r){if(Ko(t,e,r))return!0;var n=Ue(e);return null!==n&&$o(t,n,r)};Lt({target:"Reflect",stat:!0},{hasMetadata:function(t,e){var r=arguments.length<3?void 0:Go(arguments[2]);return $o(t,j(e),r)}});var Vo=Ro.has,Ho=Ro.toKey;Lt({target:"Reflect",stat:!0},{hasOwnMetadata:function(t,e){var r=arguments.length<3?void 0:Ho(arguments[2]);return Vo(t,j(e),r)}});var Xo=Ro.toKey,Yo=Ro.set;Lt({target:"Reflect",stat:!0},{metadata:function(t,e){return function(r,n){Yo(t,e,j(r),Xo(n))}}});var Jo=qt("match"),Qo=function(t){var e;return y(t)&&(void 0!==(e=t[Jo])?!!e:"RegExp"==h(t))},Zo=function(){var t=j(this),e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.dotAll&&(e+="s"),t.unicode&&(e+="u"),t.sticky&&(e+="y"),e};function ti(t,e){return RegExp(t,e)}var ei=o(function(){var t=ti("a","y");return t.lastIndex=2,null!=t.exec("abcd")}),ri=o(function(){var t=ti("^r","gy");return t.lastIndex=2,null!=t.exec("str")}),ni={UNSUPPORTED_Y:ei,BROKEN_CARET:ri},oi=I.f,ii=wt.f,ai=et.set,ui=qt("match"),si=n.RegExp,ci=si.prototype,fi=/a/g,li=/a/g,hi=new si(fi)!==fi,pi=ni.UNSUPPORTED_Y;if(i&&Tt("RegExp",!hi||pi||o(function(){return li[ui]=!1,si(fi)!=fi||si(li)==li||"/a/i"!=si(fi,"i")}))){for(var di=function(t,e){var r,n=this instanceof di,o=Qo(t),i=void 0===e;if(!n&&o&&t.constructor===di&&i)return t;hi?o&&!i&&(t=t.source):t instanceof di&&(i&&(e=Zo.call(t)),t=t.source),pi&&(r=!!e&&e.indexOf("y")>-1)&&(e=e.replace(/y/g,""));var a=Dr(hi?new si(t,e):si(t,e),n?this:ci,di);return pi&&r&&ai(a,{sticky:r}),a},vi=function(t){t in di||oi(di,t,{configurable:!0,get:function(){return si[t]},set:function(e){si[t]=e}})},gi=ii(si),yi=0;gi.length>yi;)vi(gi[yi++]);ci.constructor=di,di.prototype=ci,rt(n,"RegExp",di)}Kr("RegExp");var mi="toString",bi=RegExp.prototype,wi=bi[mi];(o(function(){return"/a/b"!=wi.call({source:"a",flags:"b"})})||wi.name!=mi)&&rt(RegExp.prototype,mi,function(){var t=j(this),e=String(t.source),r=t.flags;return"/"+e+"/"+String(void 0===r&&t instanceof RegExp&&!("flags"in bi)?Zo.call(t):r)},{unsafe:!0});var Si=RegExp.prototype.exec,Ei=String.prototype.replace,xi=Si,Ai=function(){var t=/a/,e=/b*/g;return Si.call(t,"a"),Si.call(e,"a"),0!==t.lastIndex||0!==e.lastIndex}(),Oi=ni.UNSUPPORTED_Y||ni.BROKEN_CARET,Ri=void 0!==/()??/.exec("")[1];(Ai||Ri||Oi)&&(xi=function(t){var e,r,n,o,i=this,a=Oi&&i.sticky,u=Zo.call(i),s=i.source,c=0,f=t;return a&&(-1===(u=u.replace("y","")).indexOf("g")&&(u+="g"),f=String(t).slice(i.lastIndex),i.lastIndex>0&&(!i.multiline||i.multiline&&"\n"!==t[i.lastIndex-1])&&(s="(?: "+s+")",f=" "+f,c++),r=new RegExp("^(?:"+s+")",u)),Ri&&(r=new RegExp("^"+s+"$(?!\\s)",u)),Ai&&(e=i.lastIndex),n=Si.call(a?r:i,f),a?n?(n.input=n.input.slice(c),n[0]=n[0].slice(c),n.index=i.lastIndex,i.lastIndex+=n[0].length):i.lastIndex=0:Ai&&n&&(i.lastIndex=i.global?n.index+n[0].length:e),Ri&&n&&n.length>1&&Ei.call(n[0],r,function(){for(o=1;o<arguments.length-2;o++)void 0===arguments[o]&&(n[o]=void 0)}),n});var ji=xi;Lt({target:"RegExp",proto:!0,forced:/./.exec!==ji},{exec:ji}),i&&("g"!=/./g.flags||ni.UNSUPPORTED_Y)&&I.f(RegExp.prototype,"flags",{configurable:!0,get:Zo});var Pi=et.get,Ii=RegExp.prototype;i&&ni.UNSUPPORTED_Y&&(0,I.f)(RegExp.prototype,"sticky",{configurable:!0,get:function(){if(this!==Ii){if(this instanceof RegExp)return!!Pi(this).sticky;throw TypeError("Incompatible receiver, RegExp required")}}});var Ti,ki,Li=(Ti=!1,(ki=/[ac]/).exec=function(){return Ti=!0,/./.exec.apply(this,arguments)},!0===ki.test("abc")&&Ti),Ui=/./.test;Lt({target:"RegExp",proto:!0,forced:!Li},{test:function(t){if("function"!=typeof this.exec)return Ui.call(this,t);var e=this.exec(t);if(null!==e&&!y(e))throw new Error("RegExp exec method returned something other than an Object or null");return!!e}});var Mi=qt("species"),_i=!o(function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")}),Ni="$0"==="a".replace(/./,"$0"),Ci=qt("replace"),Fi=!!/./[Ci]&&""===/./[Ci]("a","$0"),Bi=!o(function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var r="ab".split(t);return 2!==r.length||"a"!==r[0]||"b"!==r[1]}),Di=function(t,e,r,n){var i=qt(t),a=!o(function(){var e={};return e[i]=function(){return 7},7!=""[t](e)}),u=a&&!o(function(){var e=!1,r=/a/;return"split"===t&&((r={}).constructor={},r.constructor[Mi]=function(){return r},r.flags="",r[i]=/./[i]),r.exec=function(){return e=!0,null},r[i](""),!e});if(!a||!u||"replace"===t&&(!_i||!Ni||Fi)||"split"===t&&!Bi){var s=/./[i],c=r(i,""[t],function(t,e,r,n,o){return e.exec===ji?a&&!o?{done:!0,value:s.call(e,r,n)}:{done:!0,value:t.call(r,e,n)}:{done:!1}},{REPLACE_KEEPS_$0:Ni,REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE:Fi}),f=c[1];rt(String.prototype,t,c[0]),rt(RegExp.prototype,i,2==e?function(t,e){return f.call(t,this,e)}:function(t){return f.call(t,this)})}n&&T(RegExp.prototype[i],"sham",!0)},qi=Ie.charAt,zi=function(t,e,r){return e+(r?qi(t,e).length:1)},Wi=function(t,e){var r=t.exec;if("function"==typeof r){var n=r.call(t,e);if("object"!=typeof n)throw TypeError("RegExp exec method returned something other than an Object or null");return n}if("RegExp"!==h(t))throw TypeError("RegExp#exec called on incompatible receiver");return ji.call(t,e)};Di("match",1,function(t,e,r){return[function(e){var r=v(this),n=null==e?void 0:e[t];return void 0!==n?n.call(e,r):new RegExp(e)[t](String(r))},function(t){var n=r(e,t,this);if(n.done)return n.value;var o=j(t),i=String(this);if(!o.global)return Wi(o,i);var a=o.unicode;o.lastIndex=0;for(var u,s=[],c=0;null!==(u=Wi(o,i));){var f=String(u[0]);s[c]=f,""===f&&(o.lastIndex=zi(i,ft(o.lastIndex),a)),c++}return 0===c?null:s}]});var Ki=Math.max,Gi=Math.min,$i=Math.floor,Vi=/\$([$&'`]|\d\d?|<[^>]*>)/g,Hi=/\$([$&'`]|\d\d?)/g;Di("replace",2,function(t,e,r,n){var o=n.REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE,i=n.REPLACE_KEEPS_$0,a=o?"$":"$0";return[function(r,n){var o=v(this),i=null==r?void 0:r[t];return void 0!==i?i.call(r,o,n):e.call(String(o),r,n)},function(t,n){if(!o&&i||"string"==typeof n&&-1===n.indexOf(a)){var s=r(e,t,this,n);if(s.done)return s.value}var c=j(t),f=String(this),l="function"==typeof n;l||(n=String(n));var h=c.global;if(h){var p=c.unicode;c.lastIndex=0}for(var d=[];;){var v=Wi(c,f);if(null===v)break;if(d.push(v),!h)break;""===String(v[0])&&(c.lastIndex=zi(f,ft(c.lastIndex),p))}for(var g,y="",m=0,b=0;b<d.length;b++){v=d[b];for(var w=String(v[0]),S=Ki(Gi(st(v.index),f.length),0),E=[],x=1;x<v.length;x++)E.push(void 0===(g=v[x])?g:String(g));var A=v.groups;if(l){var O=[w].concat(E,S,f);void 0!==A&&O.push(A);var R=String(n.apply(void 0,O))}else R=u(w,f,S,E,A,n);S>=m&&(y+=f.slice(m,S)+R,m=S+w.length)}return y+f.slice(m)}];function u(t,r,n,o,i,a){var u=n+t.length,s=o.length,c=Hi;return void 0!==i&&(i=Ut(i),c=Vi),e.call(a,c,function(e,a){var c;switch(a.charAt(0)){case"$":return"$";case"&":return t;case"`":return r.slice(0,n);case"'":return r.slice(u);case"<":c=i[a.slice(1,-1)];break;default:var f=+a;if(0===f)return e;if(f>s){var l=$i(f/10);return 0===l?e:l<=s?void 0===o[l-1]?a.charAt(1):o[l-1]+a.charAt(1):e}c=o[f-1]}return void 0===c?"":c})}}),Di("search",1,function(t,e,r){return[function(e){var r=v(this),n=null==e?void 0:e[t];return void 0!==n?n.call(e,r):new RegExp(e)[t](String(r))},function(t){var n=r(e,t,this);if(n.done)return n.value;var o=j(t),i=String(this),a=o.lastIndex;Xn(a,0)||(o.lastIndex=0);var u=Wi(o,i);return Xn(o.lastIndex,a)||(o.lastIndex=a),null===u?-1:u.index}]});var Xi=[].push,Yi=Math.min,Ji=4294967295,Qi=!o(function(){return!RegExp(Ji,"y")});Di("split",2,function(t,e,r){var n;return n="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(t,r){var n=String(v(this)),o=void 0===r?Ji:r>>>0;if(0===o)return[];if(void 0===t)return[n];if(!Qo(t))return e.call(n,t,o);for(var i,a,u,s=[],c=0,f=new RegExp(t.source,(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":"")+"g");(i=ji.call(f,n))&&!((a=f.lastIndex)>c&&(s.push(n.slice(c,i.index)),i.length>1&&i.index<n.length&&Xi.apply(s,i.slice(1)),u=i[0].length,c=a,s.length>=o));)f.lastIndex===i.index&&f.lastIndex++;return c===n.length?!u&&f.test("")||s.push(""):s.push(n.slice(c)),s.length>o?s.slice(0,o):s}:"0".split(void 0,0).length?function(t,r){return void 0===t&&0===r?[]:e.call(this,t,r)}:e,[function(e,r){var o=v(this),i=null==e?void 0:e[t];return void 0!==i?i.call(e,o,r):n.call(String(o),e,r)},function(t,o){var i=r(n,t,this,o,n!==e);if(i.done)return i.value;var a=j(t),u=String(this),s=hn(a,RegExp),c=a.unicode,f=new s(Qi?a:"^(?:"+a.source+")",(a.ignoreCase?"i":"")+(a.multiline?"m":"")+(a.unicode?"u":"")+(Qi?"y":"g")),l=void 0===o?Ji:o>>>0;if(0===l)return[];if(0===u.length)return null===Wi(f,u)?[u]:[];for(var h=0,p=0,d=[];p<u.length;){f.lastIndex=Qi?p:0;var v,g=Wi(f,Qi?u:u.slice(p));if(null===g||(v=Yi(ft(f.lastIndex+(Qi?0:p)),u.length))===h)p=zi(u,p,c);else{if(d.push(u.slice(h,p)),d.length===l)return d;for(var y=1;y<=g.length-1;y++)if(d.push(g[y]),d.length===l)return d;p=h=v}}return d.push(u.slice(h)),d}]},!Qi),Lt({target:"Set",stat:!0},{from:an}),Lt({target:"Set",stat:!0},{of:un});var Zi=function(){for(var t=j(this),e=ee(t.add),r=0,n=arguments.length;r<n;r++)e.call(t,arguments[r]);return t};Lt({target:"Set",proto:!0,real:!0,forced:q},{addAll:function(){return Zi.apply(this,arguments)}}),Lt({target:"Set",proto:!0,real:!0,forced:q},{deleteAll:function(){return sn.apply(this,arguments)}});var ta=function(t){return Set.prototype.values.call(t)};Lt({target:"Set",proto:!0,real:!0,forced:q},{every:function(t){var e=j(this),r=ta(e),n=re(t,arguments.length>1?arguments[1]:void 0,3);return!Fr(r,function(t){if(!n(t,t,e))return Fr.stop()},void 0,!1,!0).stopped}}),Lt({target:"Set",proto:!0,real:!0,forced:q},{difference:function(t){var e=j(this),r=new(hn(e,it("Set")))(e),n=ee(r.delete);return Fr(t,function(t){n.call(r,t)}),r}}),Lt({target:"Set",proto:!0,real:!0,forced:q},{filter:function(t){var e=j(this),r=ta(e),n=re(t,arguments.length>1?arguments[1]:void 0,3),o=new(hn(e,it("Set"))),i=ee(o.add);return Fr(r,function(t){n(t,t,e)&&i.call(o,t)},void 0,!1,!0),o}}),Lt({target:"Set",proto:!0,real:!0,forced:q},{find:function(t){var e=j(this),r=ta(e),n=re(t,arguments.length>1?arguments[1]:void 0,3);return Fr(r,function(t){if(n(t,t,e))return Fr.stop(t)},void 0,!1,!0).result}}),Lt({target:"Set",proto:!0,real:!0,forced:q},{intersection:function(t){var e=j(this),r=new(hn(e,it("Set"))),n=ee(e.has),o=ee(r.add);return Fr(t,function(t){n.call(e,t)&&o.call(r,t)}),r}}),Lt({target:"Set",proto:!0,real:!0,forced:q},{isDisjointFrom:function(t){var e=j(this),r=ee(e.has);return!Fr(t,function(t){if(!0===r.call(e,t))return Fr.stop()}).stopped}}),Lt({target:"Set",proto:!0,real:!0,forced:q},{isSubsetOf:function(t){var e=cn(this),r=j(t),n=r.has;return"function"!=typeof n&&(r=new(it("Set"))(t),n=ee(r.has)),!Fr(e,function(t){if(!1===n.call(r,t))return Fr.stop()},void 0,!1,!0).stopped}}),Lt({target:"Set",proto:!0,real:!0,forced:q},{isSupersetOf:function(t){var e=j(this),r=ee(e.has);return!Fr(t,function(t){if(!1===r.call(e,t))return Fr.stop()}).stopped}}),Lt({target:"Set",proto:!0,real:!0,forced:q},{join:function(t){var e=j(this),r=ta(e),n=void 0===t?",":String(t),o=[];return Fr(r,o.push,o,!1,!0),o.join(n)}}),Lt({target:"Set",proto:!0,real:!0,forced:q},{map:function(t){var e=j(this),r=ta(e),n=re(t,arguments.length>1?arguments[1]:void 0,3),o=new(hn(e,it("Set"))),i=ee(o.add);return Fr(r,function(t){i.call(o,n(t,t,e))},void 0,!1,!0),o}}),Lt({target:"Set",proto:!0,real:!0,forced:q},{reduce:function(t){var e=j(this),r=ta(e),n=arguments.length<2,o=n?void 0:arguments[1];if(ee(t),Fr(r,function(r){n?(n=!1,o=r):o=t(o,r,r,e)},void 0,!1,!0),n)throw TypeError("Reduce of empty set with no initial value");return o}}),Lt({target:"Set",proto:!0,real:!0,forced:q},{some:function(t){var e=j(this),r=ta(e),n=re(t,arguments.length>1?arguments[1]:void 0,3);return Fr(r,function(t){if(n(t,t,e))return Fr.stop()},void 0,!1,!0).stopped}}),Lt({target:"Set",proto:!0,real:!0,forced:q},{symmetricDifference:function(t){var e=j(this),r=new(hn(e,it("Set")))(e),n=ee(r.delete),o=ee(r.add);return Fr(t,function(t){n.call(r,t)||o.call(r,t)}),r}}),Lt({target:"Set",proto:!0,real:!0,forced:q},{union:function(t){var e=j(this),r=new(hn(e,it("Set")))(e);return Fr(t,ee(r.add),r),r}});var ea,ra,na=it("navigator","userAgent")||"",oa=n.process,ia=oa&&oa.versions,aa=ia&&ia.v8;aa?ra=(ea=aa.split("."))[0]+ea[1]:na&&(!(ea=na.match(/Edge\/(\d+)/))||ea[1]>=74)&&(ea=na.match(/Chrome\/(\d+)/))&&(ra=ea[1]);var ua=ra&&+ra,sa=qt("species"),ca=qt("isConcatSpreadable"),fa=9007199254740991,la="Maximum allowed index exceeded",ha=ua>=51||!o(function(){var t=[];return t[ca]=!1,t.concat()[0]!==t}),pa=ua>=51||!o(function(){var t=[];return(t.constructor={})[sa]=function(){return{foo:1}},1!==t.concat(Boolean).foo}),da=function(t){if(!y(t))return!1;var e=t[ca];return void 0!==e?!!e:ie(t)};Lt({target:"Array",proto:!0,forced:!ha||!pa},{concat:function(t){var e,r,n,o,i,a=Ut(this),u=ue(a,0),s=0;for(e=-1,n=arguments.length;e<n;e++)if(da(i=-1===e?a:arguments[e])){if(s+(o=ft(i.length))>fa)throw TypeError(la);for(r=0;r<o;r++,s++)r in i&&sr(u,s,i[r])}else{if(s>=fa)throw TypeError(la);sr(u,s++,i)}return u.length=s,u}});var va=wt.f,ga={}.toString,ya="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],ma={f:function(t){return ya&&"[object Window]"==ga.call(t)?function(t){try{return va(t)}catch(t){return ya.slice()}}(t):va(g(t))}},ba={f:qt},wa=I.f,Sa=function(t){var e=nt.Symbol||(nt.Symbol={});w(e,t)||wa(e,t,{value:ba.f(t)})},Ea=fe.forEach,xa=V("hidden"),Aa="Symbol",Oa="prototype",Ra=qt("toPrimitive"),ja=et.set,Pa=et.getterFor(Aa),Ia=Object[Oa],Ta=n.Symbol,ka=it("JSON","stringify"),La=R.f,Ua=I.f,Ma=ma.f,_a=c.f,Na=z("symbols"),Ca=z("op-symbols"),Fa=z("string-to-symbol-registry"),Ba=z("symbol-to-string-registry"),Da=z("wks"),qa=n.QObject,za=!qa||!qa[Oa]||!qa[Oa].findChild,Wa=i&&o(function(){return 7!=Jt(Ua({},"a",{get:function(){return Ua(this,"a",{value:7}).a}})).a})?function(t,e,r){var n=La(Ia,e);n&&delete Ia[e],Ua(t,e,r),n&&t!==Ia&&Ua(Ia,e,n)}:Ua,Ka=function(t,e){var r=Na[t]=Jt(Ta[Oa]);return ja(r,{type:Aa,tag:t,description:e}),i||(r.description=e),r},Ga=Ct?function(t){return"symbol"==typeof t}:function(t){return Object(t)instanceof Ta},$a=function(t,e,r){t===Ia&&$a(Ca,e,r),j(t);var n=m(e,!0);return j(r),w(Na,n)?(r.enumerable?(w(t,xa)&&t[xa][n]&&(t[xa][n]=!1),r=Jt(r,{enumerable:f(0,!1)})):(w(t,xa)||Ua(t,xa,f(1,{})),t[xa][n]=!0),Wa(t,n,r)):Ua(t,n,r)},Va=function(t,e){j(t);var r=g(e),n=zt(r).concat(Ja(r));return Ea(n,function(e){i&&!Ha.call(r,e)||$a(t,e,r[e])}),t},Ha=function(t){var e=m(t,!0),r=_a.call(this,e);return!(this===Ia&&w(Na,e)&&!w(Ca,e))&&(!(r||!w(this,e)||!w(Na,e)||w(this,xa)&&this[xa][e])||r)},Xa=function(t,e){var r=g(t),n=m(e,!0);if(r!==Ia||!w(Na,n)||w(Ca,n)){var o=La(r,n);return!o||!w(Na,n)||w(r,xa)&&r[xa][n]||(o.enumerable=!0),o}},Ya=function(t){var e=Ma(g(t)),r=[];return Ea(e,function(t){w(Na,t)||w(H,t)||r.push(t)}),r},Ja=function(t){var e=t===Ia,r=Ma(e?Ca:g(t)),n=[];return Ea(r,function(t){!w(Na,t)||e&&!w(Ia,t)||n.push(Na[t])}),n};if(Nt||(Ta=function(){if(this instanceof Ta)throw TypeError("Symbol is not a constructor");var t=arguments.length&&void 0!==arguments[0]?String(arguments[0]):void 0,e=G(t),r=function(t){this===Ia&&r.call(Ca,t),w(this,xa)&&w(this[xa],e)&&(this[xa][e]=!1),Wa(this,e,f(1,t))};return i&&za&&Wa(Ia,e,{configurable:!0,set:r}),Ka(e,t)},rt(Ta[Oa],"toString",function(){return Pa(this).tag}),rt(Ta,"withoutSetter",function(t){return Ka(G(t),t)}),c.f=Ha,I.f=$a,R.f=Xa,wt.f=ma.f=Ya,St.f=Ja,ba.f=function(t){return Ka(qt(t),t)},i&&(Ua(Ta[Oa],"description",{configurable:!0,get:function(){return Pa(this).description}}),rt(Ia,"propertyIsEnumerable",Ha,{unsafe:!0}))),Lt({global:!0,wrap:!0,forced:!Nt,sham:!Nt},{Symbol:Ta}),Ea(zt(Da),function(t){Sa(t)}),Lt({target:Aa,stat:!0,forced:!Nt},{for:function(t){var e=String(t);if(w(Fa,e))return Fa[e];var r=Ta(e);return Fa[e]=r,Ba[r]=e,r},keyFor:function(t){if(!Ga(t))throw TypeError(t+" is not a symbol");if(w(Ba,t))return Ba[t]},useSetter:function(){za=!0},useSimple:function(){za=!1}}),Lt({target:"Object",stat:!0,forced:!Nt,sham:!i},{create:function(t,e){return void 0===e?Jt(t):Va(Jt(t),e)},defineProperty:$a,defineProperties:Va,getOwnPropertyDescriptor:Xa}),Lt({target:"Object",stat:!0,forced:!Nt},{getOwnPropertyNames:Ya,getOwnPropertySymbols:Ja}),Lt({target:"Object",stat:!0,forced:o(function(){St.f(1)})},{getOwnPropertySymbols:function(t){return St.f(Ut(t))}}),ka){var Qa=!Nt||o(function(){var t=Ta();return"[null]"!=ka([t])||"{}"!=ka({a:t})||"{}"!=ka(Object(t))});Lt({target:"JSON",stat:!0,forced:Qa},{stringify:function(t,e,r){for(var n,o=[t],i=1;arguments.length>i;)o.push(arguments[i++]);if(n=e,(y(e)||void 0!==t)&&!Ga(t))return ie(e)||(e=function(t,e){if("function"==typeof n&&(e=n.call(this,t,e)),!Ga(e))return e}),o[1]=e,ka.apply(null,o)}})}Ta[Oa][Ra]||T(Ta[Oa],Ra,Ta[Oa].valueOf),Be(Ta,Aa),H[xa]=!0,Sa("asyncIterator");var Za=I.f,tu=n.Symbol;if(i&&"function"==typeof tu&&(!("description"in tu.prototype)||void 0!==tu().description)){var eu={},ru=function(){var t=arguments.length<1||void 0===arguments[0]?void 0:String(arguments[0]),e=this instanceof ru?new tu(t):void 0===t?tu():tu(t);return""===t&&(eu[e]=!0),e};xt(ru,tu);var nu=ru.prototype=tu.prototype;nu.constructor=ru;var ou=nu.toString,iu="Symbol(test)"==String(tu("test")),au=/^Symbol\((.*)\)[^)]+$/;Za(nu,"description",{configurable:!0,get:function(){var t=y(this)?this.valueOf():this,e=ou.call(t);if(w(eu,t))return"";var r=iu?e.slice(7,-1):e.replace(au,"$1");return""===r?void 0:r}}),Lt({global:!0,forced:!0},{Symbol:ru})}Sa("hasInstance"),Sa("isConcatSpreadable"),Sa("iterator"),Sa("match"),Sa("matchAll"),Sa("replace"),Sa("search"),Sa("species"),Sa("split"),Sa("toPrimitive"),Sa("toStringTag"),Sa("unscopables"),Be(Math,"Math",!0),Be(n.JSON,"JSON",!0),Sa("asyncDispose"),Sa("dispose"),Sa("observable"),Sa("patternMatch"),Sa("replaceAll"),ba.f("asyncIterator");var uu=Ie.codeAt;Lt({target:"String",proto:!0},{codePointAt:function(t){return uu(this,t)}}),oe("String","codePointAt");var su,cu=function(t){if(Qo(t))throw TypeError("The method doesn't accept regular expressions");return t},fu=qt("match"),lu=function(t){var e=/./;try{"/./"[t](e)}catch(r){try{return e[fu]=!1,"/./"[t](e)}catch(t){}}return!1},hu=R.f,pu="".endsWith,du=Math.min,vu=lu("endsWith"),gu=!(vu||(su=hu(String.prototype,"endsWith"),!su||su.writable));Lt({target:"String",proto:!0,forced:!gu&&!vu},{endsWith:function(t){var e=String(v(this));cu(t);var r=arguments.length>1?arguments[1]:void 0,n=ft(e.length),o=void 0===r?n:du(ft(r),n),i=String(t);return pu?pu.call(e,i,o):e.slice(o-i.length,o)===i}}),oe("String","endsWith");var yu=String.fromCharCode,mu=String.fromCodePoint;Lt({target:"String",stat:!0,forced:!!mu&&1!=mu.length},{fromCodePoint:function(t){for(var e,r=[],n=arguments.length,o=0;n>o;){if(e=+arguments[o++],pt(e,1114111)!==e)throw RangeError(e+" is not a valid code point");r.push(e<65536?yu(e):yu(55296+((e-=65536)>>10),e%1024+56320))}return r.join("")}}),Lt({target:"String",proto:!0,forced:!lu("includes")},{includes:function(t){return!!~String(v(this)).indexOf(cu(t),arguments.length>1?arguments[1]:void 0)}}),oe("String","includes");var bu="".repeat||function(t){var e=String(v(this)),r="",n=st(t);if(n<0||Infinity==n)throw RangeError("Wrong number of repetitions");for(;n>0;(n>>>=1)&&(e+=e))1&n&&(r+=e);return r},wu=Math.ceil,Su=function(t){return function(e,r,n){var o,i,a=String(v(e)),u=a.length,s=void 0===n?" ":String(n),c=ft(r);return c<=u||""==s?a:((i=bu.call(s,wu((o=c-u)/s.length))).length>o&&(i=i.slice(0,o)),t?a+i:i+a)}},Eu={start:Su(!1),end:Su(!0)},xu=/Version\/10\.\d+(\.\d+)?( Mobile\/\w+)? Safari\//.test(na),Au=Eu.start;Lt({target:"String",proto:!0,forced:xu},{padStart:function(t){return Au(this,t,arguments.length>1?arguments[1]:void 0)}}),oe("String","padStart");var Ou=Eu.end;Lt({target:"String",proto:!0,forced:xu},{padEnd:function(t){return Ou(this,t,arguments.length>1?arguments[1]:void 0)}}),oe("String","padEnd"),Lt({target:"String",stat:!0},{raw:function(t){for(var e=g(t.raw),r=ft(e.length),n=arguments.length,o=[],i=0;r>i;)o.push(String(e[i++])),i<n&&o.push(String(arguments[i]));return o.join("")}}),Lt({target:"String",proto:!0},{repeat:bu}),oe("String","repeat");var Ru=R.f,ju="".startsWith,Pu=Math.min,Iu=lu("startsWith"),Tu=!Iu&&!!function(){var t=Ru(String.prototype,"startsWith");return t&&!t.writable}();Lt({target:"String",proto:!0,forced:!Tu&&!Iu},{startsWith:function(t){var e=String(v(this));cu(t);var r=ft(Pu(arguments.length>1?arguments[1]:void 0,e.length)),n=String(t);return ju?ju.call(e,n,r):e.slice(r,r+n.length)===n}}),oe("String","startsWith");var ku=function(t){return o(function(){return!!dn[t]()||"
"!="
"[t]()||dn[t].name!==t})},Lu=bn.start,Uu=ku("trimStart"),Mu=Uu?function(){return Lu(this)}:"".trimStart;Lt({target:"String",proto:!0,forced:Uu},{trimStart:Mu,trimLeft:Mu}),oe("String","trimLeft");var _u=bn.end,Nu=ku("trimEnd"),Cu=Nu?function(){return _u(this)}:"".trimEnd;Lt({target:"String",proto:!0,forced:Nu},{trimEnd:Cu,trimRight:Cu}),oe("String","trimRight");var Fu=qt("iterator"),Bu=!o(function(){var t=new URL("b?a=1&b=2&c=3","http://a"),e=t.searchParams,r="";return t.pathname="c%20d",e.forEach(function(t,n){e.delete("b"),r+=n+t}),!e.sort||"http://a/c%20d?a=1&c=3"!==t.href||"3"!==e.get("c")||"a=1"!==String(new URLSearchParams("?a=1"))||!e[Fu]||"a"!==new URL("https://a@b").username||"b"!==new URLSearchParams(new URLSearchParams("a=b")).get("a")||"xn--e1aybc"!==new URL("http://тест").host||"#%D0%B1"!==new URL("http://a#б").hash||"a1c3"!==r||"x"!==new URL("http://x",void 0).host}),Du=Object.assign,qu=Object.defineProperty,zu=!Du||o(function(){if(i&&1!==Du({b:1},Du(qu({},"a",{enumerable:!0,get:function(){qu(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},r=Symbol(),n="abcdefghijklmnopqrst";return t[r]=7,n.split("").forEach(function(t){e[t]=t}),7!=Du({},t)[r]||zt(Du({},e)).join("")!=n})?function(t,e){for(var r=Ut(t),n=arguments.length,o=1,a=St.f,u=c.f;n>o;)for(var s,f=d(arguments[o++]),l=a?zt(f).concat(a(f)):zt(f),h=l.length,p=0;h>p;)s=l[p++],i&&!u.call(f,s)||(r[s]=f[s]);return r}:Du,Wu=2147483647,Ku=/[^\0-\u007E]/,Gu=/[.\u3002\uFF0E\uFF61]/g,$u="Overflow: input needs wider integers to process",Vu=Math.floor,Hu=String.fromCharCode,Xu=function(t){return t+22+75*(t<26)},Yu=function(t,e,r){var n=0;for(t=r?Vu(t/700):t>>1,t+=Vu(t/e);t>455;n+=36)t=Vu(t/35);return Vu(n+36*t/(t+38))},Ju=function(t){var e=[];t=function(t){for(var e=[],r=0,n=t.length;r<n;){var o=t.charCodeAt(r++);if(o>=55296&&o<=56319&&r<n){var i=t.charCodeAt(r++);56320==(64512&i)?e.push(((1023&o)<<10)+(1023&i)+65536):(e.push(o),r--)}else e.push(o)}return e}(t);var r,n,o=t.length,i=128,a=0,u=72;for(r=0;r<t.length;r++)(n=t[r])<128&&e.push(Hu(n));var s=e.length,c=s;for(s&&e.push("-");c<o;){var f=Wu;for(r=0;r<t.length;r++)(n=t[r])>=i&&n<f&&(f=n);var l=c+1;if(f-i>Vu((Wu-a)/l))throw RangeError($u);for(a+=(f-i)*l,i=f,r=0;r<t.length;r++){if((n=t[r])<i&&++a>Wu)throw RangeError($u);if(n==i){for(var h=a,p=36;;p+=36){var d=p<=u?1:p>=u+26?26:p-u;if(h<d)break;var v=h-d,g=36-d;e.push(Hu(Xu(d+v%g))),h=Vu(v/g)}e.push(Hu(Xu(h))),u=Yu(a,l,c==s),a=0,++c}}++a,++i}return e.join("")},Qu=it("fetch"),Zu=it("Headers"),ts=qt("iterator"),es="URLSearchParams",rs=es+"Iterator",ns=et.set,os=et.getterFor(es),is=et.getterFor(rs),as=/\+/g,us=Array(4),ss=function(t){return us[t-1]||(us[t-1]=RegExp("((?:%[\\da-f]{2}){"+t+"})","gi"))},cs=function(t){try{return decodeURIComponent(t)}catch(e){return t}},fs=function(t){var e=t.replace(as," "),r=4;try{return decodeURIComponent(e)}catch(t){for(;r;)e=e.replace(ss(r--),cs);return e}},ls=/[!'()~]|%20/g,hs={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+"},ps=function(t){return hs[t]},ds=function(t){return encodeURIComponent(t).replace(ls,ps)},vs=function(t,e){if(e)for(var r,n,o=e.split("&"),i=0;i<o.length;)(r=o[i++]).length&&(n=r.split("="),t.push({key:fs(n.shift()),value:fs(n.join("="))}))},gs=function(t){this.entries.length=0,vs(this.entries,t)},ys=function(t,e){if(t<e)throw TypeError("Not enough arguments")},ms=We(function(t,e){ns(this,{type:rs,iterator:cn(os(t).entries),kind:e})},"Iterator",function(){var t=is(this),e=t.kind,r=t.iterator.next(),n=r.value;return r.done||(r.value="keys"===e?n.key:"values"===e?n.value:[n.key,n.value]),r}),bs=function(){Br(this,bs,es);var t,e,r,n,o,i,a,u,s,c=arguments.length>0?arguments[0]:void 0,f=[];if(ns(this,{type:es,entries:f,updateURL:function(){},updateSearchParams:gs}),void 0!==c)if(y(c))if("function"==typeof(t=vr(c)))for(r=(e=t.call(c)).next;!(n=r.call(e)).done;){if((a=(i=(o=cn(j(n.value))).next).call(o)).done||(u=i.call(o)).done||!i.call(o).done)throw TypeError("Expected sequence with length 2");f.push({key:a.value+"",value:u.value+""})}else for(s in c)w(c,s)&&f.push({key:s,value:c[s]+""});else vs(f,"string"==typeof c?"?"===c.charAt(0)?c.slice(1):c:c+"")},ws=bs.prototype;zr(ws,{append:function(t,e){ys(arguments.length,2);var r=os(this);r.entries.push({key:t+"",value:e+""}),r.updateURL()},delete:function(t){ys(arguments.length,1);for(var e=os(this),r=e.entries,n=t+"",o=0;o<r.length;)r[o].key===n?r.splice(o,1):o++;e.updateURL()},get:function(t){ys(arguments.length,1);for(var e=os(this).entries,r=t+"",n=0;n<e.length;n++)if(e[n].key===r)return e[n].value;return null},getAll:function(t){ys(arguments.length,1);for(var e=os(this).entries,r=t+"",n=[],o=0;o<e.length;o++)e[o].key===r&&n.push(e[o].value);return n},has:function(t){ys(arguments.length,1);for(var e=os(this).entries,r=t+"",n=0;n<e.length;)if(e[n++].key===r)return!0;return!1},set:function(t,e){ys(arguments.length,1);for(var r,n=os(this),o=n.entries,i=!1,a=t+"",u=e+"",s=0;s<o.length;s++)(r=o[s]).key===a&&(i?o.splice(s--,1):(i=!0,r.value=u));i||o.push({key:a,value:u}),n.updateURL()},sort:function(){var t,e,r,n=os(this),o=n.entries,i=o.slice();for(o.length=0,r=0;r<i.length;r++){for(t=i[r],e=0;e<r;e++)if(o[e].key>t.key){o.splice(e,0,t);break}e===r&&o.push(t)}n.updateURL()},forEach:function(t){for(var e,r=os(this).entries,n=re(t,arguments.length>1?arguments[1]:void 0,3),o=0;o<r.length;)n((e=r[o++]).value,e.key,this)},keys:function(){return new ms(this,"keys")},values:function(){return new ms(this,"values")},entries:function(){return new ms(this,"entries")}},{enumerable:!0}),rt(ws,ts,ws.entries),rt(ws,"toString",function(){for(var t,e=os(this).entries,r=[],n=0;n<e.length;)t=e[n++],r.push(ds(t.key)+"="+ds(t.value));return r.join("&")},{enumerable:!0}),Be(bs,es),Lt({global:!0,forced:!Bu},{URLSearchParams:bs}),Bu||"function"!=typeof Qu||"function"!=typeof Zu||Lt({global:!0,enumerable:!0,forced:!0},{fetch:function(t){var e,r,n,o=[t];return arguments.length>1&&(y(e=arguments[1])&&pr(r=e.body)===es&&((n=e.headers?new Zu(e.headers):new Zu).has("content-type")||n.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"),e=Jt(e,{body:f(0,String(r)),headers:f(0,n)})),o.push(e)),Qu.apply(this,o)}});var Ss,Es={URLSearchParams:bs,getState:os},xs=Ie.codeAt,As=n.URL,Os=Es.URLSearchParams,Rs=Es.getState,js=et.set,Ps=et.getterFor("URL"),Is=Math.floor,Ts=Math.pow,ks="Invalid scheme",Ls="Invalid host",Us="Invalid port",Ms=/[A-Za-z]/,_s=/[\d+-.A-Za-z]/,Ns=/\d/,Cs=/^(0x|0X)/,Fs=/^[0-7]+$/,Bs=/^\d+$/,Ds=/^[\dA-Fa-f]+$/,qs=/[\u0000\u0009\u000A\u000D #%/:?@[\\]]/,zs=/[\u0000\u0009\u000A\u000D #/:?@[\\]]/,Ws=/^[\u0000-\u001F ]+|[\u0000-\u001F ]+$/g,Ks=/[\u0009\u000A\u000D]/g,Gs=function(t,e){var r,n,o;if("["==e.charAt(0)){if("]"!=e.charAt(e.length-1))return Ls;if(!(r=Vs(e.slice(1,-1))))return Ls;t.host=r}else if(ec(t)){if(e=function(t){var e,r,n=[],o=t.toLowerCase().replace(Gu,".").split(".");for(e=0;e<o.length;e++)n.push(Ku.test(r=o[e])?"xn--"+Ju(r):r);return n.join(".")}(e),qs.test(e))return Ls;if(null===(r=$s(e)))return Ls;t.host=r}else{if(zs.test(e))return Ls;for(r="",n=gr(e),o=0;o<n.length;o++)r+=Zs(n[o],Xs);t.host=r}},$s=function(t){var e,r,n,o,i,a,u,s=t.split(".");if(s.length&&""==s[s.length-1]&&s.pop(),(e=s.length)>4)return t;for(r=[],n=0;n<e;n++){if(""==(o=s[n]))return t;if(i=10,o.length>1&&"0"==o.charAt(0)&&(i=Cs.test(o)?16:8,o=o.slice(8==i?1:2)),""===o)a=0;else{if(!(10==i?Bs:8==i?Fs:Ds).test(o))return t;a=parseInt(o,i)}r.push(a)}for(n=0;n<e;n++)if(a=r[n],n==e-1){if(a>=Ts(256,5-e))return null}else if(a>255)return null;for(u=r.pop(),n=0;n<r.length;n++)u+=r[n]*Ts(256,3-n);return u},Vs=function(t){var e,r,n,o,i,a,u,s=[0,0,0,0,0,0,0,0],c=0,f=null,l=0,h=function(){return t.charAt(l)};if(":"==h()){if(":"!=t.charAt(1))return;l+=2,f=++c}for(;h();){if(8==c)return;if(":"!=h()){for(e=r=0;r<4&&Ds.test(h());)e=16*e+parseInt(h(),16),l++,r++;if("."==h()){if(0==r)return;if(l-=r,c>6)return;for(n=0;h();){if(o=null,n>0){if(!("."==h()&&n<4))return;l++}if(!Ns.test(h()))return;for(;Ns.test(h());){if(i=parseInt(h(),10),null===o)o=i;else{if(0==o)return;o=10*o+i}if(o>255)return;l++}s[c]=256*s[c]+o,2!=++n&&4!=n||c++}if(4!=n)return;break}if(":"==h()){if(l++,!h())return}else if(h())return;s[c++]=e}else{if(null!==f)return;l++,f=++c}}if(null!==f)for(a=c-f,c=7;0!=c&&a>0;)u=s[c],s[c--]=s[f+a-1],s[f+--a]=u;else if(8!=c)return;return s},Hs=function(t){var e,r,n,o;if("number"==typeof t){for(e=[],r=0;r<4;r++)e.unshift(t%256),t=Is(t/256);return e.join(".")}if("object"==typeof t){for(e="",n=function(t){for(var e=null,r=1,n=null,o=0,i=0;i<8;i++)0!==t[i]?(o>r&&(e=n,r=o),n=null,o=0):(null===n&&(n=i),++o);return o>r&&(e=n,r=o),e}(t),r=0;r<8;r++)o&&0===t[r]||(o&&(o=!1),n===r?(e+=r?":":"::",o=!0):(e+=t[r].toString(16),r<7&&(e+=":")));return"["+e+"]"}return t},Xs={},Ys=zu({},Xs,{" ":1,'"':1,"<":1,">":1,"`":1}),Js=zu({},Ys,{"#":1,"?":1,"{":1,"}":1}),Qs=zu({},Js,{"/":1,":":1,";":1,"=":1,"@":1,"[":1,"\\":1,"]":1,"^":1,"|":1}),Zs=function(t,e){var r=xs(t,0);return r>32&&r<127&&!w(e,t)?t:encodeURIComponent(t)},tc={ftp:21,file:null,http:80,https:443,ws:80,wss:443},ec=function(t){return w(tc,t.scheme)},rc=function(t){return""!=t.username||""!=t.password},nc=function(t){return!t.host||t.cannotBeABaseURL||"file"==t.scheme},oc=function(t,e){var r;return 2==t.length&&Ms.test(t.charAt(0))&&(":"==(r=t.charAt(1))||!e&&"|"==r)},ic=function(t){var e;return t.length>1&&oc(t.slice(0,2))&&(2==t.length||"/"===(e=t.charAt(2))||"\\"===e||"?"===e||"#"===e)},ac=function(t){var e=t.path,r=e.length;!r||"file"==t.scheme&&1==r&&oc(e[0],!0)||e.pop()},uc=function(t){return"."===t||"%2e"===t.toLowerCase()},sc={},cc={},fc={},lc={},hc={},pc={},dc={},vc={},gc={},yc={},mc={},bc={},wc={},Sc={},Ec={},xc={},Ac={},Oc={},Rc={},jc={},Pc={},Ic=function(t,e,r,n){var o,i,a,u,s,c=r||sc,f=0,l="",h=!1,p=!1,d=!1;for(r||(t.scheme="",t.username="",t.password="",t.host=null,t.port=null,t.path=[],t.query=null,t.fragment=null,t.cannotBeABaseURL=!1,e=e.replace(Ws,"")),e=e.replace(Ks,""),o=gr(e);f<=o.length;){switch(i=o[f],c){case sc:if(!i||!Ms.test(i)){if(r)return ks;c=fc;continue}l+=i.toLowerCase(),c=cc;break;case cc:if(i&&(_s.test(i)||"+"==i||"-"==i||"."==i))l+=i.toLowerCase();else{if(":"!=i){if(r)return ks;l="",c=fc,f=0;continue}if(r&&(ec(t)!=w(tc,l)||"file"==l&&(rc(t)||null!==t.port)||"file"==t.scheme&&!t.host))return;if(t.scheme=l,r)return void(ec(t)&&tc[t.scheme]==t.port&&(t.port=null));l="","file"==t.scheme?c=Sc:ec(t)&&n&&n.scheme==t.scheme?c=lc:ec(t)?c=vc:"/"==o[f+1]?(c=hc,f++):(t.cannotBeABaseURL=!0,t.path.push(""),c=Rc)}break;case fc:if(!n||n.cannotBeABaseURL&&"#"!=i)return ks;if(n.cannotBeABaseURL&&"#"==i){t.scheme=n.scheme,t.path=n.path.slice(),t.query=n.query,t.fragment="",t.cannotBeABaseURL=!0,c=Pc;break}c="file"==n.scheme?Sc:pc;continue;case lc:if("/"!=i||"/"!=o[f+1]){c=pc;continue}c=gc,f++;break;case hc:if("/"==i){c=yc;break}c=Oc;continue;case pc:if(t.scheme=n.scheme,i==Ss)t.username=n.username,t.password=n.password,t.host=n.host,t.port=n.port,t.path=n.path.slice(),t.query=n.query;else if("/"==i||"\\"==i&&ec(t))c=dc;else if("?"==i)t.username=n.username,t.password=n.password,t.host=n.host,t.port=n.port,t.path=n.path.slice(),t.query="",c=jc;else{if("#"!=i){t.username=n.username,t.password=n.password,t.host=n.host,t.port=n.port,t.path=n.path.slice(),t.path.pop(),c=Oc;continue}t.username=n.username,t.password=n.password,t.host=n.host,t.port=n.port,t.path=n.path.slice(),t.query=n.query,t.fragment="",c=Pc}break;case dc:if(!ec(t)||"/"!=i&&"\\"!=i){if("/"!=i){t.username=n.username,t.password=n.password,t.host=n.host,t.port=n.port,c=Oc;continue}c=yc}else c=gc;break;case vc:if(c=gc,"/"!=i||"/"!=l.charAt(f+1))continue;f++;break;case gc:if("/"!=i&&"\\"!=i){c=yc;continue}break;case yc:if("@"==i){h&&(l="%40"+l),h=!0,a=gr(l);for(var v=0;v<a.length;v++){var g=a[v];if(":"!=g||d){var y=Zs(g,Qs);d?t.password+=y:t.username+=y}else d=!0}l=""}else if(i==Ss||"/"==i||"?"==i||"#"==i||"\\"==i&&ec(t)){if(h&&""==l)return"Invalid authority";f-=gr(l).length+1,l="",c=mc}else l+=i;break;case mc:case bc:if(r&&"file"==t.scheme){c=xc;continue}if(":"!=i||p){if(i==Ss||"/"==i||"?"==i||"#"==i||"\\"==i&&ec(t)){if(ec(t)&&""==l)return Ls;if(r&&""==l&&(rc(t)||null!==t.port))return;if(u=Gs(t,l))return u;if(l="",c=Ac,r)return;continue}"["==i?p=!0:"]"==i&&(p=!1),l+=i}else{if(""==l)return Ls;if(u=Gs(t,l))return u;if(l="",c=wc,r==bc)return}break;case wc:if(!Ns.test(i)){if(i==Ss||"/"==i||"?"==i||"#"==i||"\\"==i&&ec(t)||r){if(""!=l){var m=parseInt(l,10);if(m>65535)return Us;t.port=ec(t)&&m===tc[t.scheme]?null:m,l=""}if(r)return;c=Ac;continue}return Us}l+=i;break;case Sc:if(t.scheme="file","/"==i||"\\"==i)c=Ec;else{if(!n||"file"!=n.scheme){c=Oc;continue}if(i==Ss)t.host=n.host,t.path=n.path.slice(),t.query=n.query;else if("?"==i)t.host=n.host,t.path=n.path.slice(),t.query="",c=jc;else{if("#"!=i){ic(o.slice(f).join(""))||(t.host=n.host,t.path=n.path.slice(),ac(t)),c=Oc;continue}t.host=n.host,t.path=n.path.slice(),t.query=n.query,t.fragment="",c=Pc}}break;case Ec:if("/"==i||"\\"==i){c=xc;break}n&&"file"==n.scheme&&!ic(o.slice(f).join(""))&&(oc(n.path[0],!0)?t.path.push(n.path[0]):t.host=n.host),c=Oc;continue;case xc:if(i==Ss||"/"==i||"\\"==i||"?"==i||"#"==i){if(!r&&oc(l))c=Oc;else if(""==l){if(t.host="",r)return;c=Ac}else{if(u=Gs(t,l))return u;if("localhost"==t.host&&(t.host=""),r)return;l="",c=Ac}continue}l+=i;break;case Ac:if(ec(t)){if(c=Oc,"/"!=i&&"\\"!=i)continue}else if(r||"?"!=i)if(r||"#"!=i){if(i!=Ss&&(c=Oc,"/"!=i))continue}else t.fragment="",c=Pc;else t.query="",c=jc;break;case Oc:if(i==Ss||"/"==i||"\\"==i&&ec(t)||!r&&("?"==i||"#"==i)){if(".."===(s=(s=l).toLowerCase())||"%2e."===s||".%2e"===s||"%2e%2e"===s?(ac(t),"/"==i||"\\"==i&&ec(t)||t.path.push("")):uc(l)?"/"==i||"\\"==i&&ec(t)||t.path.push(""):("file"==t.scheme&&!t.path.length&&oc(l)&&(t.host&&(t.host=""),l=l.charAt(0)+":"),t.path.push(l)),l="","file"==t.scheme&&(i==Ss||"?"==i||"#"==i))for(;t.path.length>1&&""===t.path[0];)t.path.shift();"?"==i?(t.query="",c=jc):"#"==i&&(t.fragment="",c=Pc)}else l+=Zs(i,Js);break;case Rc:"?"==i?(t.query="",c=jc):"#"==i?(t.fragment="",c=Pc):i!=Ss&&(t.path[0]+=Zs(i,Xs));break;case jc:r||"#"!=i?i!=Ss&&("'"==i&&ec(t)?t.query+="%27":t.query+="#"==i?"%23":Zs(i,Xs)):(t.fragment="",c=Pc);break;case Pc:i!=Ss&&(t.fragment+=Zs(i,Ys))}f++}},Tc=function(t){var e,r,n=Br(this,Tc,"URL"),o=arguments.length>1?arguments[1]:void 0,a=String(t),u=js(n,{type:"URL"});if(void 0!==o)if(o instanceof Tc)e=Ps(o);else if(r=Ic(e={},String(o)))throw TypeError(r);if(r=Ic(u,a,null,e))throw TypeError(r);var s=u.searchParams=new Os,c=Rs(s);c.updateSearchParams(u.query),c.updateURL=function(){u.query=String(s)||null},i||(n.href=Lc.call(n),n.origin=Uc.call(n),n.protocol=Mc.call(n),n.username=_c.call(n),n.password=Nc.call(n),n.host=Cc.call(n),n.hostname=Fc.call(n),n.port=Bc.call(n),n.pathname=Dc.call(n),n.search=qc.call(n),n.searchParams=zc.call(n),n.hash=Wc.call(n))},kc=Tc.prototype,Lc=function(){var t=Ps(this),e=t.scheme,r=t.username,n=t.password,o=t.host,i=t.port,a=t.path,u=t.query,s=t.fragment,c=e+":";return null!==o?(c+="//",rc(t)&&(c+=r+(n?":"+n:"")+"@"),c+=Hs(o),null!==i&&(c+=":"+i)):"file"==e&&(c+="//"),c+=t.cannotBeABaseURL?a[0]:a.length?"/"+a.join("/"):"",null!==u&&(c+="?"+u),null!==s&&(c+="#"+s),c},Uc=function(){var t=Ps(this),e=t.scheme,r=t.port;if("blob"==e)try{return new URL(e.path[0]).origin}catch(t){return"null"}return"file"!=e&&ec(t)?e+"://"+Hs(t.host)+(null!==r?":"+r:""):"null"},Mc=function(){return Ps(this).scheme+":"},_c=function(){return Ps(this).username},Nc=function(){return Ps(this).password},Cc=function(){var t=Ps(this),e=t.host,r=t.port;return null===e?"":null===r?Hs(e):Hs(e)+":"+r},Fc=function(){var t=Ps(this).host;return null===t?"":Hs(t)},Bc=function(){var t=Ps(this).port;return null===t?"":String(t)},Dc=function(){var t=Ps(this),e=t.path;return t.cannotBeABaseURL?e[0]:e.length?"/"+e.join("/"):""},qc=function(){var t=Ps(this).query;return t?"?"+t:""},zc=function(){return Ps(this).searchParams},Wc=function(){var t=Ps(this).fragment;return t?"#"+t:""},Kc=function(t,e){return{get:t,set:e,configurable:!0,enumerable:!0}};if(i&&Wt(kc,{href:Kc(Lc,function(t){var e=Ps(this),r=String(t),n=Ic(e,r);if(n)throw TypeError(n);Rs(e.searchParams).updateSearchParams(e.query)}),origin:Kc(Uc),protocol:Kc(Mc,function(t){var e=Ps(this);Ic(e,String(t)+":",sc)}),username:Kc(_c,function(t){var e=Ps(this),r=gr(String(t));if(!nc(e)){e.username="";for(var n=0;n<r.length;n++)e.username+=Zs(r[n],Qs)}}),password:Kc(Nc,function(t){var e=Ps(this),r=gr(String(t));if(!nc(e)){e.password="";for(var n=0;n<r.length;n++)e.password+=Zs(r[n],Qs)}}),host:Kc(Cc,function(t){var e=Ps(this);e.cannotBeABaseURL||Ic(e,String(t),mc)}),hostname:Kc(Fc,function(t){var e=Ps(this);e.cannotBeABaseURL||Ic(e,String(t),bc)}),port:Kc(Bc,function(t){var e=Ps(this);nc(e)||(""==(t=String(t))?e.port=null:Ic(e,t,wc))}),pathname:Kc(Dc,function(t){var e=Ps(this);e.cannotBeABaseURL||(e.path=[],Ic(e,t+"",Ac))}),search:Kc(qc,function(t){var e=Ps(this);""==(t=String(t))?e.query=null:("?"==t.charAt(0)&&(t=t.slice(1)),e.query="",Ic(e,t,jc)),Rs(e.searchParams).updateSearchParams(e.query)}),searchParams:Kc(zc),hash:Kc(Wc,function(t){var e=Ps(this);""!=(t=String(t))?("#"==t.charAt(0)&&(t=t.slice(1)),e.fragment="",Ic(e,t,Pc)):e.fragment=null})}),rt(kc,"toJSON",function(){return Lc.call(this)},{enumerable:!0}),rt(kc,"toString",function(){return Lc.call(this)},{enumerable:!0}),As){var Gc=As.createObjectURL,$c=As.revokeObjectURL;Gc&&rt(Tc,"createObjectURL",function(t){return Gc.apply(As,arguments)}),$c&&rt(Tc,"revokeObjectURL",function(t){return $c.apply(As,arguments)})}Be(Tc,"URL"),Lt({global:!0,forced:!Bu,sham:!i},{URL:Tc}),Lt({target:"URL",proto:!0,enumerable:!0},{toJSON:function(){return URL.prototype.toString.call(this)}}),Lt({target:"WeakMap",stat:!0},{from:an}),Lt({target:"WeakMap",stat:!0},{of:un}),Lt({target:"WeakMap",proto:!0,real:!0,forced:q},{deleteAll:function(){return sn.apply(this,arguments)}}),Lt({target:"WeakMap",proto:!0,real:!0,forced:q},{upsert:pn}),qr("WeakSet",function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}},So),Lt({target:"WeakSet",proto:!0,real:!0,forced:q},{addAll:function(){return Zi.apply(this,arguments)}}),Lt({target:"WeakSet",proto:!0,real:!0,forced:q},{deleteAll:function(){return sn.apply(this,arguments)}}),Lt({target:"WeakSet",stat:!0},{from:an}),Lt({target:"WeakSet",stat:!0},{of:un});var Vc,Hc,Xc,Yc=n.Promise,Jc=/(iphone|ipod|ipad).*applewebkit/i.test(na),Qc=n.location,Zc=n.setImmediate,tf=n.clearImmediate,ef=n.process,rf=n.MessageChannel,nf=n.Dispatch,of=0,af={},uf="onreadystatechange",sf=function(t){if(af.hasOwnProperty(t)){var e=af[t];delete af[t],e()}},cf=function(t){return function(){sf(t)}},ff=function(t){sf(t.data)},lf=function(t){n.postMessage(t+"",Qc.protocol+"//"+Qc.host)};Zc&&tf||(Zc=function(t){for(var e=[],r=1;arguments.length>r;)e.push(arguments[r++]);return af[++of]=function(){("function"==typeof t?t:Function(t)).apply(void 0,e)},Vc(of),of},tf=function(t){delete af[t]},"process"==h(ef)?Vc=function(t){ef.nextTick(cf(t))}:nf&&nf.now?Vc=function(t){nf.now(cf(t))}:rf&&!Jc?(Xc=(Hc=new rf).port2,Hc.port1.onmessage=ff,Vc=re(Xc.postMessage,Xc,1)):!n.addEventListener||"function"!=typeof postMessage||n.importScripts||o(lf)||"file:"===Qc.protocol?Vc=uf in x("script")?function(t){Kt.appendChild(x("script"))[uf]=function(){Kt.removeChild(this),sf(t)}}:function(t){setTimeout(cf(t),0)}:(Vc=lf,n.addEventListener("message",ff,!1)));var hf,pf,df,vf,gf,yf,mf,bf,wf={set:Zc,clear:tf},Sf=R.f,Ef=wf.set,xf=n.MutationObserver||n.WebKitMutationObserver,Af=n.process,Of=n.Promise,Rf="process"==h(Af),jf=Sf(n,"queueMicrotask"),Pf=jf&&jf.value;Pf||(hf=function(){var t,e;for(Rf&&(t=Af.domain)&&t.exit();pf;){e=pf.fn,pf=pf.next;try{e()}catch(t){throw pf?vf():df=void 0,t}}df=void 0,t&&t.enter()},Rf?vf=function(){Af.nextTick(hf)}:xf&&!Jc?(gf=!0,yf=document.createTextNode(""),new xf(hf).observe(yf,{characterData:!0}),vf=function(){yf.data=gf=!gf}):Of&&Of.resolve?(mf=Of.resolve(void 0),bf=mf.then,vf=function(){bf.call(mf,hf)}):vf=function(){Ef.call(n,hf)});var If,Tf,kf,Lf,Uf=Pf||function(t){var e={fn:t,next:void 0};df&&(df.next=e),pf||(pf=e,vf()),df=e},Mf=function(t){var e,r;this.promise=new t(function(t,n){if(void 0!==e||void 0!==r)throw TypeError("Bad Promise constructor");e=t,r=n}),this.resolve=ee(e),this.reject=ee(r)},_f={f:function(t){return new Mf(t)}},Nf=function(t,e){if(j(t),y(e)&&e.constructor===t)return e;var r=_f.f(t);return(0,r.resolve)(e),r.promise},Cf=function(t){try{return{error:!1,value:t()}}catch(t){return{error:!0,value:t}}},Ff=wf.set,Bf=qt("species"),Df="Promise",qf=et.get,zf=et.set,Wf=et.getterFor(Df),Kf=Yc,Gf=n.TypeError,$f=n.document,Vf=n.process,Hf=it("fetch"),Xf=_f.f,Yf=Xf,Jf="process"==h(Vf),Qf=!!($f&&$f.createEvent&&n.dispatchEvent),Zf="unhandledrejection",tl=Tt(Df,function(){if(F(Kf)===String(Kf)){if(66===ua)return!0;if(!Jf&&"function"!=typeof PromiseRejectionEvent)return!0}if(ua>=51&&/native code/.test(Kf))return!1;var t=Kf.resolve(1),e=function(t){t(function(){},function(){})};return(t.constructor={})[Bf]=e,!(t.then(function(){})instanceof e)}),el=tl||!Sr(function(t){Kf.all(t).catch(function(){})}),rl=function(t){var e;return!(!y(t)||"function"!=typeof(e=t.then))&&e},nl=function(t,e,r){if(!e.notified){e.notified=!0;var n=e.reactions;Uf(function(){for(var o=e.value,i=1==e.state,a=0;n.length>a;){var u,s,c,f=n[a++],l=i?f.ok:f.fail,h=f.resolve,p=f.reject,d=f.domain;try{l?(i||(2===e.rejection&&ul(t,e),e.rejection=1),!0===l?u=o:(d&&d.enter(),u=l(o),d&&(d.exit(),c=!0)),u===f.promise?p(Gf("Promise-chain cycle")):(s=rl(u))?s.call(u,h,p):h(u)):p(o)}catch(t){d&&!c&&d.exit(),p(t)}}e.reactions=[],e.notified=!1,r&&!e.rejection&&il(t,e)})}},ol=function(t,e,r){var o,i;Qf?((o=$f.createEvent("Event")).promise=e,o.reason=r,o.initEvent(t,!1,!0),n.dispatchEvent(o)):o={promise:e,reason:r},(i=n["on"+t])?i(o):t===Zf&&function(t,e){var r=n.console;r&&r.error&&(1===arguments.length?r.error(t):r.error(t,e))}("Unhandled promise rejection",r)},il=function(t,e){Ff.call(n,function(){var r,n=e.value;if(al(e)&&(r=Cf(function(){Jf?Vf.emit("unhandledRejection",n,t):ol(Zf,t,n)}),e.rejection=Jf||al(e)?2:1,r.error))throw r.value})},al=function(t){return 1!==t.rejection&&!t.parent},ul=function(t,e){Ff.call(n,function(){Jf?Vf.emit("rejectionHandled",t):ol("rejectionhandled",t,e.value)})},sl=function(t,e,r,n){return function(o){t(e,r,o,n)}},cl=function(t,e,r,n){e.done||(e.done=!0,n&&(e=n),e.value=r,e.state=2,nl(t,e,!0))},fl=function(t,e,r,n){if(!e.done){e.done=!0,n&&(e=n);try{if(t===r)throw Gf("Promise can't be resolved itself");var o=rl(r);o?Uf(function(){var n={done:!1};try{o.call(r,sl(fl,t,n,e),sl(cl,t,n,e))}catch(r){cl(t,n,r,e)}}):(e.value=r,e.state=1,nl(t,e,!1))}catch(r){cl(t,{done:!1},r,e)}}};tl&&(Kf=function(t){Br(this,Kf,Df),ee(t),If.call(this);var e=qf(this);try{t(sl(fl,this,e),sl(cl,this,e))}catch(t){cl(this,e,t)}},(If=function(t){zf(this,{type:Df,done:!1,notified:!1,parent:!1,reactions:[],rejection:!1,state:0,value:void 0})}).prototype=zr(Kf.prototype,{then:function(t,e){var r=Wf(this),n=Xf(hn(this,Kf));return n.ok="function"!=typeof t||t,n.fail="function"==typeof e&&e,n.domain=Jf?Vf.domain:void 0,r.parent=!0,r.reactions.push(n),0!=r.state&&nl(this,r,!1),n.promise},catch:function(t){return this.then(void 0,t)}}),Tf=function(){var t=new If,e=qf(t);this.promise=t,this.resolve=sl(fl,t,e),this.reject=sl(cl,t,e)},_f.f=Xf=function(t){return t===Kf||t===kf?new Tf(t):Yf(t)},"function"==typeof Yc&&(Lf=Yc.prototype.then,rt(Yc.prototype,"then",function(t,e){var r=this;return new Kf(function(t,e){Lf.call(r,t,e)}).then(t,e)},{unsafe:!0}),"function"==typeof Hf&&Lt({global:!0,enumerable:!0,forced:!0},{fetch:function(t){return Nf(Kf,Hf.apply(n,arguments))}}))),Lt({global:!0,wrap:!0,forced:tl},{Promise:Kf}),Be(Kf,Df,!1),Kr(Df),kf=it(Df),Lt({target:Df,stat:!0,forced:tl},{reject:function(t){var e=Xf(this);return e.reject.call(void 0,t),e.promise}}),Lt({target:Df,stat:!0,forced:tl},{resolve:function(t){return Nf(this,t)}}),Lt({target:Df,stat:!0,forced:el},{all:function(t){var e=this,r=Xf(e),n=r.resolve,o=r.reject,i=Cf(function(){var r=ee(e.resolve),i=[],a=0,u=1;Fr(t,function(t){var s=a++,c=!1;i.push(void 0),u++,r.call(e,t).then(function(t){c||(c=!0,i[s]=t,--u||n(i))},o)}),--u||n(i)});return i.error&&o(i.value),r.promise},race:function(t){var e=this,r=Xf(e),n=r.reject,o=Cf(function(){var o=ee(e.resolve);Fr(t,function(t){o.call(e,t).then(r.resolve,n)})});return o.error&&n(o.value),r.promise}}),Lt({target:"Promise",stat:!0},{allSettled:function(t){var e=this,r=_f.f(e),n=r.resolve,o=r.reject,i=Cf(function(){var r=ee(e.resolve),o=[],i=0,a=1;Fr(t,function(t){var u=i++,s=!1;o.push(void 0),a++,r.call(e,t).then(function(t){s||(s=!0,o[u]={status:"fulfilled",value:t},--a||n(o))},function(t){s||(s=!0,o[u]={status:"rejected",reason:t},--a||n(o))})}),--a||n(o)});return i.error&&o(i.value),r.promise}});var ll=!!Yc&&o(function(){Yc.prototype.finally.call({then:function(){}},function(){})});Lt({target:"Promise",proto:!0,real:!0,forced:ll},{finally:function(t){var e=hn(this,it("Promise")),r="function"==typeof t;return this.then(r?function(r){return Nf(e,t()).then(function(){return r})}:t,r?function(r){return Nf(e,t()).then(function(){throw r})}:t)}}),"function"!=typeof Yc||Yc.prototype.finally||rt(Yc.prototype,"finally",it("Promise").prototype.finally);var hl=et.set,pl=et.getterFor("AggregateError"),dl=function(t,e){var r=this;if(!(r instanceof dl))return new dl(t,e);Ge&&(r=Ge(new Error(e),Ue(r)));var n=[];return Fr(t,n.push,n),i?hl(r,{errors:n,type:"AggregateError"}):r.errors=n,void 0!==e&&T(r,"message",String(e)),r};dl.prototype=Jt(Error.prototype,{constructor:f(5,dl),message:f(5,""),name:f(5,"AggregateError")}),i&&I.f(dl.prototype,"errors",{get:function(){return pl(this).errors},configurable:!0}),Lt({global:!0},{AggregateError:dl}),Lt({target:"Promise",stat:!0},{try:function(t){var e=_f.f(this),r=Cf(t);return(r.error?e.reject:e.resolve)(r.value),e.promise}});var vl="No one promise resolved";Lt({target:"Promise",stat:!0},{any:function(t){var e=this,r=_f.f(e),n=r.resolve,o=r.reject,i=Cf(function(){var r=ee(e.resolve),i=[],a=0,u=1,s=!1;Fr(t,function(t){var c=a++,f=!1;i.push(void 0),u++,r.call(e,t).then(function(t){f||s||(s=!0,n(t))},function(t){f||s||(f=!0,i[c]=t,--u||o(new(it("AggregateError"))(i,vl)))})}),--u||o(new(it("AggregateError"))(i,vl))});return i.error&&o(i.value),r.promise}}),oe("Promise","finally");var gl="URLSearchParams"in self,yl="Symbol"in self&&"iterator"in Symbol,ml="FileReader"in self&&"Blob"in self&&function(){try{return new Blob,!0}catch(t){return!1}}(),bl="FormData"in self,wl="ArrayBuffer"in self;if(wl)var Sl=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],El=ArrayBuffer.isView||function(t){return t&&Sl.indexOf(Object.prototype.toString.call(t))>-1};function xl(t){if("string"!=typeof t&&(t=String(t)),/[^a-z0-9\-#$%&'*+.^_`|~]/i.test(t))throw new TypeError("Invalid character in header field name");return t.toLowerCase()}function Al(t){return"string"!=typeof t&&(t=String(t)),t}function Ol(t){var e={next:function(){var e=t.shift();return{done:void 0===e,value:e}}};return yl&&(e[Symbol.iterator]=function(){return e}),e}function Rl(t){this.map={},t instanceof Rl?t.forEach(function(t,e){this.append(e,t)},this):Array.isArray(t)?t.forEach(function(t){this.append(t[0],t[1])},this):t&&Object.getOwnPropertyNames(t).forEach(function(e){this.append(e,t[e])},this)}function jl(t){if(t.bodyUsed)return Promise.reject(new TypeError("Already read"));t.bodyUsed=!0}function Pl(t){return new Promise(function(e,r){t.onload=function(){e(t.result)},t.onerror=function(){r(t.error)}})}function Il(t){var e=new FileReader,r=Pl(e);return e.readAsArrayBuffer(t),r}function Tl(t){if(t.slice)return t.slice(0);var e=new Uint8Array(t.byteLength);return e.set(new Uint8Array(t)),e.buffer}function kl(){return this.bodyUsed=!1,this._initBody=function(t){var e;this._bodyInit=t,t?"string"==typeof t?this._bodyText=t:ml&&Blob.prototype.isPrototypeOf(t)?this._bodyBlob=t:bl&&FormData.prototype.isPrototypeOf(t)?this._bodyFormData=t:gl&&URLSearchParams.prototype.isPrototypeOf(t)?this._bodyText=t.toString():wl&&ml&&(e=t)&&DataView.prototype.isPrototypeOf(e)?(this._bodyArrayBuffer=Tl(t.buffer),this._bodyInit=new Blob([this._bodyArrayBuffer])):wl&&(ArrayBuffer.prototype.isPrototypeOf(t)||El(t))?this._bodyArrayBuffer=Tl(t):this._bodyText=t=Object.prototype.toString.call(t):this._bodyText="",this.headers.get("content-type")||("string"==typeof t?this.headers.set("content-type","text/plain;charset=UTF-8"):this._bodyBlob&&this._bodyBlob.type?this.headers.set("content-type",this._bodyBlob.type):gl&&URLSearchParams.prototype.isPrototypeOf(t)&&this.headers.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"))},ml&&(this.blob=function(){var t=jl(this);if(t)return t;if(this._bodyBlob)return Promise.resolve(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(new Blob([this._bodyArrayBuffer]));if(this._bodyFormData)throw new Error("could not read FormData body as blob");return Promise.resolve(new Blob([this._bodyText]))},this.arrayBuffer=function(){return this._bodyArrayBuffer?jl(this)||Promise.resolve(this._bodyArrayBuffer):this.blob().then(Il)}),this.text=function(){var t=jl(this);if(t)return t;if(this._bodyBlob)return function(t){var e=new FileReader,r=Pl(e);return e.readAsText(t),r}(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(function(t){for(var e=new Uint8Array(t),r=new Array(e.length),n=0;n<e.length;n++)r[n]=String.fromCharCode(e[n]);return r.join("")}(this._bodyArrayBuffer));if(this._bodyFormData)throw new Error("could not read FormData body as text");return Promise.resolve(this._bodyText)},bl&&(this.formData=function(){return this.text().then(Ml)}),this.json=function(){return this.text().then(JSON.parse)},this}Rl.prototype.append=function(t,e){t=xl(t),e=Al(e);var r=this.map[t];this.map[t]=r?r+", "+e:e},Rl.prototype.delete=function(t){delete this.map[xl(t)]},Rl.prototype.get=function(t){return t=xl(t),this.has(t)?this.map[t]:null},Rl.prototype.has=function(t){return this.map.hasOwnProperty(xl(t))},Rl.prototype.set=function(t,e){this.map[xl(t)]=Al(e)},Rl.prototype.forEach=function(t,e){for(var r in this.map)this.map.hasOwnProperty(r)&&t.call(e,this.map[r],r,this)},Rl.prototype.keys=function(){var t=[];return this.forEach(function(e,r){t.push(r)}),Ol(t)},Rl.prototype.values=function(){var t=[];return this.forEach(function(e){t.push(e)}),Ol(t)},Rl.prototype.entries=function(){var t=[];return this.forEach(function(e,r){t.push([r,e])}),Ol(t)},yl&&(Rl.prototype[Symbol.iterator]=Rl.prototype.entries);var Ll=["DELETE","GET","HEAD","OPTIONS","POST","PUT"];function Ul(t,e){var r,n,o=(e=e||{}).body;if(t instanceof Ul){if(t.bodyUsed)throw new TypeError("Already read");this.url=t.url,this.credentials=t.credentials,e.headers||(this.headers=new Rl(t.headers)),this.method=t.method,this.mode=t.mode,this.signal=t.signal,o||null==t._bodyInit||(o=t._bodyInit,t.bodyUsed=!0)}else this.url=String(t);if(this.credentials=e.credentials||this.credentials||"same-origin",!e.headers&&this.headers||(this.headers=new Rl(e.headers)),this.method=(n=(r=e.method||this.method||"GET").toUpperCase(),Ll.indexOf(n)>-1?n:r),this.mode=e.mode||this.mode||null,this.signal=e.signal||this.signal,this.referrer=null,("GET"===this.method||"HEAD"===this.method)&&o)throw new TypeError("Body not allowed for GET or HEAD requests");this._initBody(o)}function Ml(t){var e=new FormData;return t.trim().split("&").forEach(function(t){if(t){var r=t.split("="),n=r.shift().replace(/\+/g," "),o=r.join("=").replace(/\+/g," ");e.append(decodeURIComponent(n),decodeURIComponent(o))}}),e}function _l(t,e){e||(e={}),this.type="default",this.status=void 0===e.status?200:e.status,this.ok=this.status>=200&&this.status<300,this.statusText="statusText"in e?e.statusText:"OK",this.headers=new Rl(e.headers),this.url=e.url||"",this._initBody(t)}Ul.prototype.clone=function(){return new Ul(this,{body:this._bodyInit})},kl.call(Ul.prototype),kl.call(_l.prototype),_l.prototype.clone=function(){return new _l(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new Rl(this.headers),url:this.url})},_l.error=function(){var t=new _l(null,{status:0,statusText:""});return t.type="error",t};var Nl=[301,302,303,307,308];_l.redirect=function(t,e){if(-1===Nl.indexOf(e))throw new RangeError("Invalid status code");return new _l(null,{status:e,headers:{location:t}})};var Cl=self.DOMException;try{new Cl}catch(t){(Cl=function(t,e){this.message=t,this.name=e;var r=Error(t);this.stack=r.stack}).prototype=Object.create(Error.prototype),Cl.prototype.constructor=Cl}function Fl(t,e){return new Promise(function(r,n){var o=new Ul(t,e);if(o.signal&&o.signal.aborted)return n(new Cl("Aborted","AbortError"));var i=new XMLHttpRequest;function a(){i.abort()}i.onload=function(){var t,e,n={status:i.status,statusText:i.statusText,headers:(t=i.getAllResponseHeaders()||"",e=new Rl,t.replace(/\r?\n[\t ]+/g," ").split(/\r?\n/).forEach(function(t){var r=t.split(":"),n=r.shift().trim();if(n){var o=r.join(":").trim();e.append(n,o)}}),e)};n.url="responseURL"in i?i.responseURL:n.headers.get("X-Request-URL"),r(new _l("response"in i?i.response:i.responseText,n))},i.onerror=function(){n(new TypeError("Network request failed"))},i.ontimeout=function(){n(new TypeError("Network request failed"))},i.onabort=function(){n(new Cl("Aborted","AbortError"))},i.open(o.method,o.url,!0),"include"===o.credentials?i.withCredentials=!0:"omit"===o.credentials&&(i.withCredentials=!1),"responseType"in i&&ml&&(i.responseType="blob"),o.headers.forEach(function(t,e){i.setRequestHeader(e,t)}),o.signal&&(o.signal.addEventListener("abort",a),i.onreadystatechange=function(){4===i.readyState&&o.signal.removeEventListener("abort",a)}),i.send(void 0===o._bodyInit?null:o._bodyInit)})}Fl.polyfill=!0,self.fetch||(self.fetch=Fl,self.Headers=Rl,self.Request=Ul,self.Response=_l);var Bl=Object.getOwnPropertySymbols,Dl=Object.prototype.hasOwnProperty,ql=Object.prototype.propertyIsEnumerable,zl=function(){try{if(!Object.assign)return!1;var t=new String("abc");if(t[5]="de","5"===Object.getOwnPropertyNames(t)[0])return!1;for(var e={},r=0;r<10;r++)e["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(e).map(function(t){return e[t]}).join(""))return!1;var n={};return"abcdefghijklmnopqrst".split("").forEach(function(t){n[t]=t}),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},n)).join("")}catch(t){return!1}}()?Object.assign:function(t,e){for(var r,n,o=function(t){if(null==t)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(t)}(t),i=1;i<arguments.length;i++){for(var a in r=Object(arguments[i]))Dl.call(r,a)&&(o[a]=r[a]);if(Bl){n=Bl(r);for(var u=0;u<n.length;u++)ql.call(r,n[u])&&(o[n[u]]=r[n[u]])}}return o};Object.assign=zl}();
|
Api/src/out/_next/static/chunks/webpack-17abec1bd4bca978.js
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
!function(){"use strict";var e,t,n,r,o,u,i,c,f,a={},l={};function d(e){var t=l[e];if(void 0!==t)return t.exports;var n=l[e]={exports:{}},r=!0;try{a[e](n,n.exports,d),r=!1}finally{r&&delete l[e]}return n.exports}d.m=a,e=[],d.O=function(t,n,r,o){if(n){o=o||0;for(var u=e.length;u>0&&e[u-1][2]>o;u--)e[u]=e[u-1];e[u]=[n,r,o];return}for(var i=1/0,u=0;u<e.length;u++){for(var n=e[u][0],r=e[u][1],o=e[u][2],c=!0,f=0;f<n.length;f++)i>=o&&Object.keys(d.O).every(function(e){return d.O[e](n[f])})?n.splice(f--,1):(c=!1,o<i&&(i=o));if(c){e.splice(u--,1);var a=r();void 0!==a&&(t=a)}}return t},d.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return d.d(t,{a:t}),t},n=Object.getPrototypeOf?function(e){return Object.getPrototypeOf(e)}:function(e){return e.__proto__},d.t=function(e,r){if(1&r&&(e=this(e)),8&r||"object"==typeof e&&e&&(4&r&&e.__esModule||16&r&&"function"==typeof e.then))return e;var o=Object.create(null);d.r(o);var u={};t=t||[null,n({}),n([]),n(n)];for(var i=2&r&&e;"object"==typeof i&&!~t.indexOf(i);i=n(i))Object.getOwnPropertyNames(i).forEach(function(t){u[t]=function(){return e[t]}});return u.default=function(){return e},d.d(o,u),o},d.d=function(e,t){for(var n in t)d.o(t,n)&&!d.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},d.f={},d.e=function(e){return Promise.all(Object.keys(d.f).reduce(function(t,n){return d.f[n](e,t),t},[]))},d.u=function(e){},d.miniCssF=function(e){},d.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r={},o="_N_E:",d.l=function(e,t,n,u){if(r[e]){r[e].push(t);return}if(void 0!==n)for(var i,c,f=document.getElementsByTagName("script"),a=0;a<f.length;a++){var l=f[a];if(l.getAttribute("src")==e||l.getAttribute("data-webpack")==o+n){i=l;break}}i||(c=!0,(i=document.createElement("script")).charset="utf-8",i.timeout=120,d.nc&&i.setAttribute("nonce",d.nc),i.setAttribute("data-webpack",o+n),i.src=d.tu(e)),r[e]=[t];var s=function(t,n){i.onerror=i.onload=null,clearTimeout(p);var o=r[e];if(delete r[e],i.parentNode&&i.parentNode.removeChild(i),o&&o.forEach(function(e){return e(n)}),t)return t(n)},p=setTimeout(s.bind(null,void 0,{type:"timeout",target:i}),12e4);i.onerror=s.bind(null,i.onerror),i.onload=s.bind(null,i.onload),c&&document.head.appendChild(i)},d.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},d.tt=function(){return void 0===u&&(u={createScriptURL:function(e){return e}},"undefined"!=typeof trustedTypes&&trustedTypes.createPolicy&&(u=trustedTypes.createPolicy("nextjs#bundler",u))),u},d.tu=function(e){return d.tt().createScriptURL(e)},d.p="/_next/",i={272:0},d.f.j=function(e,t){var n=d.o(i,e)?i[e]:void 0;if(0!==n){if(n)t.push(n[2]);else if(272!=e){var r=new Promise(function(t,r){n=i[e]=[t,r]});t.push(n[2]=r);var o=d.p+d.u(e),u=Error();d.l(o,function(t){if(d.o(i,e)&&(0!==(n=i[e])&&(i[e]=void 0),n)){var r=t&&("load"===t.type?"missing":t.type),o=t&&t.target&&t.target.src;u.message="Loading chunk "+e+" failed.\n("+r+": "+o+")",u.name="ChunkLoadError",u.type=r,u.request=o,n[1](u)}},"chunk-"+e,e)}else i[e]=0}},d.O.j=function(e){return 0===i[e]},c=function(e,t){var n,r,o=t[0],u=t[1],c=t[2],f=0;if(o.some(function(e){return 0!==i[e]})){for(n in u)d.o(u,n)&&(d.m[n]=u[n]);if(c)var a=c(d)}for(e&&e(t);f<o.length;f++)r=o[f],d.o(i,r)&&i[r]&&i[r][0](),i[r]=0;return d.O(a)},(f=self.webpackChunk_N_E=self.webpackChunk_N_E||[]).forEach(c.bind(null,0)),f.push=c.bind(null,f.push.bind(f))}();
|
Api/src/out/index.html
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-17abec1bd4bca978.js"/><script src="/_next/static/chunks/fd9d1056-90960e0a7e77703c.js" async=""></script><script src="/_next/static/chunks/23-e94121395991ed2e.js" async=""></script><script src="/_next/static/chunks/main-app-f4f564f56624dcb5.js" async=""></script><script src="/_next/static/chunks/324-5c86793bec652c55.js" async=""></script><script src="/_next/static/chunks/app/page-10e8a35fca12752e.js" async=""></script><title>Next.js</title><meta name="description" content="Generated by Next.js"/><script src="/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js" noModule=""></script></head><body><style data-emotion="css ir78zx">.css-ir78zx{--Grid-columns:12;--Grid-columnSpacing:0px;--Grid-rowSpacing:0px;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;min-width:0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:calc(var(--Grid-rowSpacing) / -2) calc(var(--Grid-columnSpacing) / -2);margin-top:8px;}</style><div class="MuiGrid2-root MuiGrid2-container MuiGrid2-direction-xs-row css-ir78zx" style="height:97vh"><style data-emotion="css z7veqk">.css-z7veqk{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto;width:calc(100% * 12 / var(--Grid-columns));min-width:0;box-sizing:border-box;padding:calc(var(--Grid-rowSpacing) / 2) calc(var(--Grid-columnSpacing) / 2);padding:8px;}@media (min-width:600px){.css-z7veqk{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto;width:calc(100% * 5 / var(--Grid-columns));}}</style><div class="MuiGrid2-root MuiGrid2-direction-xs-row MuiGrid2-grid-xs-12 MuiGrid2-grid-sm-5 css-z7veqk" style="display:flex;flex-direction:column;height:100%"><style data-emotion="css 1lx3an4">.css-1lx3an4{--Grid-columns:12;--Grid-columnSpacing:0px;--Grid-rowSpacing:0px;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;min-width:0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:calc(var(--Grid-rowSpacing) / -2) calc(var(--Grid-columnSpacing) / -2);margin-bottom:16px;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border:1px solid;border-color:rgba(0, 0, 0, 0.23);border-radius:8px;padding:16px;background-color:rgba(237, 232, 208, 0.35);}</style><div class="MuiGrid2-root MuiGrid2-container MuiGrid2-direction-xs-row css-1lx3an4"><style data-emotion="css 1rgm56i">.css-1rgm56i{min-width:0;box-sizing:border-box;padding:calc(var(--Grid-rowSpacing) / 2) calc(var(--Grid-columnSpacing) / 2);}@media (min-width:600px){.css-1rgm56i{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto;width:calc(100% * 3 / var(--Grid-columns));}}</style><div class="MuiGrid2-root MuiGrid2-direction-xs-row MuiGrid2-grid-sm-3 css-1rgm56i"><style data-emotion="css 1k7brch">.css-1k7brch{margin:0;font-size:1.1rem;font-weight:500;line-height:1.5;font-family:'DM Sans',Inter,sans-serif;}@media (min-width:600px){.css-1k7brch{font-size:1.1667rem;}}@media (min-width:900px){.css-1k7brch{font-size:1.1667rem;}}@media (min-width:1200px){.css-1k7brch{font-size:1.1667rem;}}</style><h4 class="MuiTypography-root MuiTypography-h4 css-1k7brch">Select Model:</h4></div><style data-emotion="css 1zcb48">.css-1zcb48{--Grid-columnsLevel1:var(--Grid-columns);--Grid-columnSpacingLevel1:var(--Grid-columnSpacing);--Grid-rowSpacingLevel1:var(--Grid-rowSpacing);-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;min-width:0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:calc(var(--Grid-rowSpacingLevel1) / -2) calc(var(--Grid-columnSpacingLevel1) / -2);padding:calc(var(--Grid-rowSpacing) / 2) calc(var(--Grid-columnSpacing) / 2);-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;border:1px solid;border-color:rgba(0, 0, 0, 0.23);border-radius:8px;background-color:white;}@media (min-width:600px){.css-1zcb48{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto;width:calc(100% * 2.5 / var(--Grid-columns) + var(--Grid-columnSpacingLevel1));}}</style><div class="MuiGrid2-root MuiGrid2-container MuiGrid2-direction-xs-row MuiGrid2-grid-sm-2.5 css-1zcb48"><style data-emotion="css 2xvjrj">.css-2xvjrj{font-family:'DM Sans',Inter,sans-serif;font-weight:500;font-size:0.875rem;line-height:1.75;text-transform:uppercase;min-width:64px;padding:6px 16px;border:0;border-radius:4px;-webkit-transition:background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;padding:6px 8px;color:var(--variant-textColor);background-color:var(--variant-textBg);--variant-textColor:#EDE8D0;--variant-outlinedColor:#EDE8D0;--variant-outlinedBorder:rgba(237, 232, 208, 0.5);--variant-containedColor:rgba(0, 0, 0, 0.87);--variant-containedBg:#EDE8D0;}.css-2xvjrj:hover{-webkit-text-decoration:none;text-decoration:none;}.css-2xvjrj.Mui-disabled{color:rgba(0, 0, 0, 0.26);}@media (hover: hover){.css-2xvjrj:hover{--variant-containedBg:rgb(165, 162, 145);--variant-textBg:rgba(237, 232, 208, 0.04);--variant-outlinedBorder:#EDE8D0;--variant-outlinedBg:rgba(237, 232, 208, 0.04);}}</style><style data-emotion="css doqe7d">.css-doqe7d{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;position:relative;box-sizing:border-box;-webkit-tap-highlight-color:transparent;background-color:transparent;outline:0;border:0;margin:0;border-radius:0;padding:0;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;-moz-appearance:none;-webkit-appearance:none;-webkit-text-decoration:none;text-decoration:none;color:inherit;font-family:'DM Sans',Inter,sans-serif;font-weight:500;font-size:0.875rem;line-height:1.75;text-transform:uppercase;min-width:64px;padding:6px 16px;border:0;border-radius:4px;-webkit-transition:background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;padding:6px 8px;color:var(--variant-textColor);background-color:var(--variant-textBg);--variant-textColor:#EDE8D0;--variant-outlinedColor:#EDE8D0;--variant-outlinedBorder:rgba(237, 232, 208, 0.5);--variant-containedColor:rgba(0, 0, 0, 0.87);--variant-containedBg:#EDE8D0;}.css-doqe7d::-moz-focus-inner{border-style:none;}.css-doqe7d.Mui-disabled{pointer-events:none;cursor:default;}@media print{.css-doqe7d{-webkit-print-color-adjust:exact;color-adjust:exact;}}.css-doqe7d:hover{-webkit-text-decoration:none;text-decoration:none;}.css-doqe7d.Mui-disabled{color:rgba(0, 0, 0, 0.26);}@media (hover: hover){.css-doqe7d:hover{--variant-containedBg:rgb(165, 162, 145);--variant-textBg:rgba(237, 232, 208, 0.04);--variant-outlinedBorder:#EDE8D0;--variant-outlinedBg:rgba(237, 232, 208, 0.04);}}</style><button class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-colorPrimary MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-colorPrimary css-doqe7d" tabindex="0" type="button"><style data-emotion="css 53qohs">.css-53qohs{margin:0;font-size:0.9rem;font-weight:400;line-height:1.6;font-family:'DM Sans',Inter,sans-serif;color:black;}</style><h6 class="MuiTypography-root MuiTypography-h6 css-53qohs">Model 1</h6></button></div><style data-emotion="css 1l2fi73">.css-1l2fi73{--Grid-columnsLevel1:var(--Grid-columns);--Grid-columnSpacingLevel1:var(--Grid-columnSpacing);--Grid-rowSpacingLevel1:var(--Grid-rowSpacing);-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;min-width:0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:calc(var(--Grid-rowSpacingLevel1) / -2) calc(var(--Grid-columnSpacingLevel1) / -2);padding:calc(var(--Grid-rowSpacing) / 2) calc(var(--Grid-columnSpacing) / 2);margin-left:16px;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;border:1px solid;border-color:rgba(0, 0, 0, 0.23);border-radius:8px;background-color:white;}@media (min-width:600px){.css-1l2fi73{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto;width:calc(100% * 2.5 / var(--Grid-columns) + var(--Grid-columnSpacingLevel1));}}</style><div class="MuiGrid2-root MuiGrid2-container MuiGrid2-direction-xs-row MuiGrid2-grid-sm-2.5 css-1l2fi73"><style data-emotion="css 2xvjrj">.css-2xvjrj{font-family:'DM Sans',Inter,sans-serif;font-weight:500;font-size:0.875rem;line-height:1.75;text-transform:uppercase;min-width:64px;padding:6px 16px;border:0;border-radius:4px;-webkit-transition:background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;padding:6px 8px;color:var(--variant-textColor);background-color:var(--variant-textBg);--variant-textColor:#EDE8D0;--variant-outlinedColor:#EDE8D0;--variant-outlinedBorder:rgba(237, 232, 208, 0.5);--variant-containedColor:rgba(0, 0, 0, 0.87);--variant-containedBg:#EDE8D0;}.css-2xvjrj:hover{-webkit-text-decoration:none;text-decoration:none;}.css-2xvjrj.Mui-disabled{color:rgba(0, 0, 0, 0.26);}@media (hover: hover){.css-2xvjrj:hover{--variant-containedBg:rgb(165, 162, 145);--variant-textBg:rgba(237, 232, 208, 0.04);--variant-outlinedBorder:#EDE8D0;--variant-outlinedBg:rgba(237, 232, 208, 0.04);}}</style><style data-emotion="css doqe7d">.css-doqe7d{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;position:relative;box-sizing:border-box;-webkit-tap-highlight-color:transparent;background-color:transparent;outline:0;border:0;margin:0;border-radius:0;padding:0;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;-moz-appearance:none;-webkit-appearance:none;-webkit-text-decoration:none;text-decoration:none;color:inherit;font-family:'DM Sans',Inter,sans-serif;font-weight:500;font-size:0.875rem;line-height:1.75;text-transform:uppercase;min-width:64px;padding:6px 16px;border:0;border-radius:4px;-webkit-transition:background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;padding:6px 8px;color:var(--variant-textColor);background-color:var(--variant-textBg);--variant-textColor:#EDE8D0;--variant-outlinedColor:#EDE8D0;--variant-outlinedBorder:rgba(237, 232, 208, 0.5);--variant-containedColor:rgba(0, 0, 0, 0.87);--variant-containedBg:#EDE8D0;}.css-doqe7d::-moz-focus-inner{border-style:none;}.css-doqe7d.Mui-disabled{pointer-events:none;cursor:default;}@media print{.css-doqe7d{-webkit-print-color-adjust:exact;color-adjust:exact;}}.css-doqe7d:hover{-webkit-text-decoration:none;text-decoration:none;}.css-doqe7d.Mui-disabled{color:rgba(0, 0, 0, 0.26);}@media (hover: hover){.css-doqe7d:hover{--variant-containedBg:rgb(165, 162, 145);--variant-textBg:rgba(237, 232, 208, 0.04);--variant-outlinedBorder:#EDE8D0;--variant-outlinedBg:rgba(237, 232, 208, 0.04);}}</style><button class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-colorPrimary MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-colorPrimary css-doqe7d" tabindex="0" type="button"><style data-emotion="css 53qohs">.css-53qohs{margin:0;font-size:0.9rem;font-weight:400;line-height:1.6;font-family:'DM Sans',Inter,sans-serif;color:black;}</style><h6 class="MuiTypography-root MuiTypography-h6 css-53qohs">Model 2</h6></button></div><div class="MuiGrid2-root MuiGrid2-container MuiGrid2-direction-xs-row MuiGrid2-grid-sm-2.5 css-1l2fi73"><style data-emotion="css 2xvjrj">.css-2xvjrj{font-family:'DM Sans',Inter,sans-serif;font-weight:500;font-size:0.875rem;line-height:1.75;text-transform:uppercase;min-width:64px;padding:6px 16px;border:0;border-radius:4px;-webkit-transition:background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;padding:6px 8px;color:var(--variant-textColor);background-color:var(--variant-textBg);--variant-textColor:#EDE8D0;--variant-outlinedColor:#EDE8D0;--variant-outlinedBorder:rgba(237, 232, 208, 0.5);--variant-containedColor:rgba(0, 0, 0, 0.87);--variant-containedBg:#EDE8D0;}.css-2xvjrj:hover{-webkit-text-decoration:none;text-decoration:none;}.css-2xvjrj.Mui-disabled{color:rgba(0, 0, 0, 0.26);}@media (hover: hover){.css-2xvjrj:hover{--variant-containedBg:rgb(165, 162, 145);--variant-textBg:rgba(237, 232, 208, 0.04);--variant-outlinedBorder:#EDE8D0;--variant-outlinedBg:rgba(237, 232, 208, 0.04);}}</style><style data-emotion="css doqe7d">.css-doqe7d{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;position:relative;box-sizing:border-box;-webkit-tap-highlight-color:transparent;background-color:transparent;outline:0;border:0;margin:0;border-radius:0;padding:0;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;-moz-appearance:none;-webkit-appearance:none;-webkit-text-decoration:none;text-decoration:none;color:inherit;font-family:'DM Sans',Inter,sans-serif;font-weight:500;font-size:0.875rem;line-height:1.75;text-transform:uppercase;min-width:64px;padding:6px 16px;border:0;border-radius:4px;-webkit-transition:background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;padding:6px 8px;color:var(--variant-textColor);background-color:var(--variant-textBg);--variant-textColor:#EDE8D0;--variant-outlinedColor:#EDE8D0;--variant-outlinedBorder:rgba(237, 232, 208, 0.5);--variant-containedColor:rgba(0, 0, 0, 0.87);--variant-containedBg:#EDE8D0;}.css-doqe7d::-moz-focus-inner{border-style:none;}.css-doqe7d.Mui-disabled{pointer-events:none;cursor:default;}@media print{.css-doqe7d{-webkit-print-color-adjust:exact;color-adjust:exact;}}.css-doqe7d:hover{-webkit-text-decoration:none;text-decoration:none;}.css-doqe7d.Mui-disabled{color:rgba(0, 0, 0, 0.26);}@media (hover: hover){.css-doqe7d:hover{--variant-containedBg:rgb(165, 162, 145);--variant-textBg:rgba(237, 232, 208, 0.04);--variant-outlinedBorder:#EDE8D0;--variant-outlinedBg:rgba(237, 232, 208, 0.04);}}</style><button class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-colorPrimary MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-colorPrimary css-doqe7d" tabindex="0" type="button"><style data-emotion="css 53qohs">.css-53qohs{margin:0;font-size:0.9rem;font-weight:400;line-height:1.6;font-family:'DM Sans',Inter,sans-serif;color:black;}</style><h6 class="MuiTypography-root MuiTypography-h6 css-53qohs">Model 3</h6></button></div></div><style data-emotion="css 1m9zxq2">.css-1m9zxq2{margin-bottom:16px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;padding:16px;}</style><div class="MuiBox-root css-1m9zxq2" style="border:1px solid #ccc;overflow:hidden;overflow-y:scroll;border-radius:8px;background-color:rgba(237, 232, 208, 0.35)"></div><style data-emotion="css 13l7vf1">.css-13l7vf1{--Grid-columns:12;--Grid-columnSpacing:0px;--Grid-rowSpacing:0px;-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto;width:calc(100% * 12 / var(--Grid-columns));-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;min-width:0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:calc(var(--Grid-rowSpacing) / -2) calc(var(--Grid-columnSpacing) / -2);-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:16px;padding-left:24px;border:1px solid;border-radius:8px;border-color:rgba(0, 0, 0, 0.23);background-color:rgba(237, 232, 208, 0.35);}@media (min-width:600px){.css-13l7vf1{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto;width:calc(100% * 12 / var(--Grid-columns));}}</style><div class="MuiGrid2-root MuiGrid2-container MuiGrid2-direction-xs-row MuiGrid2-grid-xs-12 MuiGrid2-grid-sm-12 css-13l7vf1"><style data-emotion="css 1am8pay">.css-1am8pay{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto;width:calc(100% * 12 / var(--Grid-columns));min-width:0;box-sizing:border-box;padding:calc(var(--Grid-rowSpacing) / 2) calc(var(--Grid-columnSpacing) / 2);}@media (min-width:600px){.css-1am8pay{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto;width:calc(100% * 10 / var(--Grid-columns));}}</style><div class="MuiGrid2-root MuiGrid2-direction-xs-row MuiGrid2-grid-xs-12 MuiGrid2-grid-sm-10 css-1am8pay"><style data-emotion="css 6175j8">.css-6175j8{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;position:relative;min-width:0;padding:0;margin:0;border:0;vertical-align:top;width:100%;}</style><div class="MuiFormControl-root MuiFormControl-fullWidth MuiTextField-root css-6175j8"><style data-emotion="css 1st7xkc">.css-1st7xkc{display:block;transform-origin:top left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%;position:absolute;left:0;top:0;-webkit-transform:translate(0, 20px) scale(1);-moz-transform:translate(0, 20px) scale(1);-ms-transform:translate(0, 20px) scale(1);transform:translate(0, 20px) scale(1);-webkit-transform:translate(0, 17px) scale(1);-moz-transform:translate(0, 17px) scale(1);-ms-transform:translate(0, 17px) scale(1);transform:translate(0, 17px) scale(1);-webkit-transition:color 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms,-webkit-transform 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms,max-width 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms;transition:color 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms,transform 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms,max-width 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms;z-index:1;pointer-events:none;-webkit-transform:translate(14px, 16px) scale(1);-moz-transform:translate(14px, 16px) scale(1);-ms-transform:translate(14px, 16px) scale(1);transform:translate(14px, 16px) scale(1);max-width:calc(100% - 24px);-webkit-transform:translate(14px, 9px) scale(1);-moz-transform:translate(14px, 9px) scale(1);-ms-transform:translate(14px, 9px) scale(1);transform:translate(14px, 9px) scale(1);}</style><style data-emotion="css nujwq0">.css-nujwq0{color:rgba(0, 0, 0, 0.6);font-size:1rem;font-weight:400;line-height:1.4375em;font-family:'DM Sans',Inter,sans-serif;padding:0;position:relative;display:block;transform-origin:top left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%;position:absolute;left:0;top:0;-webkit-transform:translate(0, 20px) scale(1);-moz-transform:translate(0, 20px) scale(1);-ms-transform:translate(0, 20px) scale(1);transform:translate(0, 20px) scale(1);-webkit-transform:translate(0, 17px) scale(1);-moz-transform:translate(0, 17px) scale(1);-ms-transform:translate(0, 17px) scale(1);transform:translate(0, 17px) scale(1);-webkit-transition:color 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms,-webkit-transform 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms,max-width 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms;transition:color 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms,transform 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms,max-width 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms;z-index:1;pointer-events:none;-webkit-transform:translate(14px, 16px) scale(1);-moz-transform:translate(14px, 16px) scale(1);-ms-transform:translate(14px, 16px) scale(1);transform:translate(14px, 16px) scale(1);max-width:calc(100% - 24px);-webkit-transform:translate(14px, 9px) scale(1);-moz-transform:translate(14px, 9px) scale(1);-ms-transform:translate(14px, 9px) scale(1);transform:translate(14px, 9px) scale(1);}.css-nujwq0.Mui-focused{color:#EDE8D0;}.css-nujwq0.Mui-disabled{color:rgba(0, 0, 0, 0.38);}.css-nujwq0.Mui-error{color:#d32f2f;}</style><label class="MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-sizeSmall MuiInputLabel-outlined MuiFormLabel-colorPrimary MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-sizeSmall MuiInputLabel-outlined css-nujwq0" data-shrink="false" for=":Rcrj6fja:" id=":Rcrj6fja:-label">Ask me anything</label><style data-emotion="css-global 1prfaxn">@-webkit-keyframes mui-auto-fill{from{display:block;}}@keyframes mui-auto-fill{from{display:block;}}@-webkit-keyframes mui-auto-fill-cancel{from{display:block;}}@keyframes mui-auto-fill-cancel{from{display:block;}}</style><style data-emotion="css 1uer1sc">.css-1uer1sc{font-size:1rem;font-weight:400;line-height:1.4375em;font-family:'DM Sans',Inter,sans-serif;color:rgba(0, 0, 0, 0.87);box-sizing:border-box;position:relative;cursor:text;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;position:relative;border-radius:4px;background-color:white;border-radius:4px;}.css-1uer1sc.Mui-disabled{color:rgba(0, 0, 0, 0.38);cursor:default;}.css-1uer1sc:hover .MuiOutlinedInput-notchedOutline{border-color:rgba(0, 0, 0, 0.87);}.css-1uer1sc.Mui-focused .MuiOutlinedInput-notchedOutline{border-width:2px;}.css-1uer1sc.Mui-focused .MuiOutlinedInput-notchedOutline{border-color:#EDE8D0;}@media (hover: none){.css-1uer1sc:hover .MuiOutlinedInput-notchedOutline{border-color:rgba(0, 0, 0, 0.23);}}.css-1uer1sc.Mui-error .MuiOutlinedInput-notchedOutline{border-color:#d32f2f;}.css-1uer1sc.Mui-disabled .MuiOutlinedInput-notchedOutline{border-color:rgba(0, 0, 0, 0.26);}</style><div class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl MuiInputBase-sizeSmall css-1uer1sc"><style data-emotion="css 1ruewdp">.css-1ruewdp{font:inherit;letter-spacing:inherit;color:currentColor;padding:4px 0 5px;border:0;box-sizing:content-box;background:none;height:1.4375em;margin:0;-webkit-tap-highlight-color:transparent;display:block;min-width:0;width:100%;-webkit-animation-name:mui-auto-fill-cancel;animation-name:mui-auto-fill-cancel;-webkit-animation-duration:10ms;animation-duration:10ms;padding-top:1px;padding:16.5px 14px;padding:8.5px 14px;}.css-1ruewdp::-webkit-input-placeholder{color:currentColor;opacity:0.42;-webkit-transition:opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;}.css-1ruewdp::-moz-placeholder{color:currentColor;opacity:0.42;-webkit-transition:opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;}.css-1ruewdp::-ms-input-placeholder{color:currentColor;opacity:0.42;-webkit-transition:opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;}.css-1ruewdp:focus{outline:0;}.css-1ruewdp:invalid{box-shadow:none;}.css-1ruewdp::-webkit-search-decoration{-webkit-appearance:none;}label[data-shrink=false]+.MuiInputBase-formControl .css-1ruewdp::-webkit-input-placeholder{opacity:0!important;}label[data-shrink=false]+.MuiInputBase-formControl .css-1ruewdp::-moz-placeholder{opacity:0!important;}label[data-shrink=false]+.MuiInputBase-formControl .css-1ruewdp::-ms-input-placeholder{opacity:0!important;}label[data-shrink=false]+.MuiInputBase-formControl .css-1ruewdp:focus::-webkit-input-placeholder{opacity:0.42;}label[data-shrink=false]+.MuiInputBase-formControl .css-1ruewdp:focus::-moz-placeholder{opacity:0.42;}label[data-shrink=false]+.MuiInputBase-formControl .css-1ruewdp:focus::-ms-input-placeholder{opacity:0.42;}.css-1ruewdp.Mui-disabled{opacity:1;-webkit-text-fill-color:rgba(0, 0, 0, 0.38);}.css-1ruewdp:-webkit-autofill{-webkit-animation-duration:5000s;animation-duration:5000s;-webkit-animation-name:mui-auto-fill;animation-name:mui-auto-fill;}.css-1ruewdp:-webkit-autofill{border-radius:inherit;}</style><input aria-invalid="false" id=":Rcrj6fja:" type="text" class="MuiInputBase-input MuiOutlinedInput-input MuiInputBase-inputSizeSmall css-1ruewdp"/><style data-emotion="css 19w1uun">.css-19w1uun{border-color:rgba(0, 0, 0, 0.23);}</style><style data-emotion="css igs3ac">.css-igs3ac{text-align:left;position:absolute;bottom:0;right:0;top:-5px;left:0;margin:0;padding:0 8px;pointer-events:none;border-radius:inherit;border-style:solid;border-width:1px;overflow:hidden;min-width:0%;border-color:rgba(0, 0, 0, 0.23);}</style><fieldset aria-hidden="true" class="MuiOutlinedInput-notchedOutline css-igs3ac"><style data-emotion="css 1pbc52w">.css-1pbc52w{float:unset;width:auto;overflow:hidden;display:block;padding:0;height:11px;font-size:0.75em;visibility:hidden;max-width:0.01px;-webkit-transition:max-width 50ms cubic-bezier(0.0, 0, 0.2, 1) 0ms;transition:max-width 50ms cubic-bezier(0.0, 0, 0.2, 1) 0ms;white-space:nowrap;}.css-1pbc52w>span{padding-left:5px;padding-right:5px;display:inline-block;opacity:0;visibility:visible;}</style><legend class="css-1pbc52w"><span>Ask me anything</span></legend></fieldset></div></div></div><style data-emotion="css g1bfo2">.css-g1bfo2{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto;width:calc(100% * 12 / var(--Grid-columns));min-width:0;box-sizing:border-box;padding:calc(var(--Grid-rowSpacing) / 2) calc(var(--Grid-columnSpacing) / 2);margin-left:32px;border:1px solid;border-color:rgba(0, 0, 0, 0.23);border-radius:80px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:rgba(139, 90, 43, 0.4);width:35px;height:35px;}</style><div class="MuiGrid2-root MuiGrid2-direction-xs-row MuiGrid2-grid-xs-12 css-g1bfo2"><style data-emotion="css 2xvjrj">.css-2xvjrj{font-family:'DM Sans',Inter,sans-serif;font-weight:500;font-size:0.875rem;line-height:1.75;text-transform:uppercase;min-width:64px;padding:6px 16px;border:0;border-radius:4px;-webkit-transition:background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;padding:6px 8px;color:var(--variant-textColor);background-color:var(--variant-textBg);--variant-textColor:#EDE8D0;--variant-outlinedColor:#EDE8D0;--variant-outlinedBorder:rgba(237, 232, 208, 0.5);--variant-containedColor:rgba(0, 0, 0, 0.87);--variant-containedBg:#EDE8D0;}.css-2xvjrj:hover{-webkit-text-decoration:none;text-decoration:none;}.css-2xvjrj.Mui-disabled{color:rgba(0, 0, 0, 0.26);}@media (hover: hover){.css-2xvjrj:hover{--variant-containedBg:rgb(165, 162, 145);--variant-textBg:rgba(237, 232, 208, 0.04);--variant-outlinedBorder:#EDE8D0;--variant-outlinedBg:rgba(237, 232, 208, 0.04);}}</style><style data-emotion="css doqe7d">.css-doqe7d{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;position:relative;box-sizing:border-box;-webkit-tap-highlight-color:transparent;background-color:transparent;outline:0;border:0;margin:0;border-radius:0;padding:0;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;-moz-appearance:none;-webkit-appearance:none;-webkit-text-decoration:none;text-decoration:none;color:inherit;font-family:'DM Sans',Inter,sans-serif;font-weight:500;font-size:0.875rem;line-height:1.75;text-transform:uppercase;min-width:64px;padding:6px 16px;border:0;border-radius:4px;-webkit-transition:background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;padding:6px 8px;color:var(--variant-textColor);background-color:var(--variant-textBg);--variant-textColor:#EDE8D0;--variant-outlinedColor:#EDE8D0;--variant-outlinedBorder:rgba(237, 232, 208, 0.5);--variant-containedColor:rgba(0, 0, 0, 0.87);--variant-containedBg:#EDE8D0;}.css-doqe7d::-moz-focus-inner{border-style:none;}.css-doqe7d.Mui-disabled{pointer-events:none;cursor:default;}@media print{.css-doqe7d{-webkit-print-color-adjust:exact;color-adjust:exact;}}.css-doqe7d:hover{-webkit-text-decoration:none;text-decoration:none;}.css-doqe7d.Mui-disabled{color:rgba(0, 0, 0, 0.26);}@media (hover: hover){.css-doqe7d:hover{--variant-containedBg:rgb(165, 162, 145);--variant-textBg:rgba(237, 232, 208, 0.04);--variant-outlinedBorder:#EDE8D0;--variant-outlinedBg:rgba(237, 232, 208, 0.04);}}</style><button class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-colorPrimary MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-colorPrimary css-doqe7d" tabindex="0" type="button"><style data-emotion="css sa17fa">.css-sa17fa{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:1em;height:1em;display:inline-block;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-transition:fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;fill:currentColor;font-size:1.25rem;color:rgba(0, 0, 0, 0.23);}</style><svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeSmall css-sa17fa" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="SendIcon"><path d="M2.01 21 23 12 2.01 3 2 10l15 2-15 2z"></path></svg></button></div></div></div><style data-emotion="css 1wnka9y">.css-1wnka9y{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto;width:calc(100% * 12 / var(--Grid-columns));min-width:0;box-sizing:border-box;padding:calc(var(--Grid-rowSpacing) / 2) calc(var(--Grid-columnSpacing) / 2);padding:8px;}@media (min-width:600px){.css-1wnka9y{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto;width:calc(100% * 2 / var(--Grid-columns));}}</style><div class="MuiGrid2-root MuiGrid2-direction-xs-row MuiGrid2-grid-xs-12 MuiGrid2-grid-sm-2 css-1wnka9y" style="display:flex;flex-direction:column;height:100%"><style data-emotion="css 75z6af">.css-75z6af{--Grid-columns:12;--Grid-columnSpacing:0px;--Grid-rowSpacing:0px;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;min-width:0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:calc(var(--Grid-rowSpacing) / -2) calc(var(--Grid-columnSpacing) / -2);border:1px solid;margin-bottom:16px;border-color:rgba(0, 0, 0, 0.23);border-radius:8px;padding:9.6px;background-color:rgba(237, 232, 208, 0.35);}</style><div class="MuiGrid2-root MuiGrid2-container MuiGrid2-direction-xs-row css-75z6af"><style data-emotion="css 1prgr9g">.css-1prgr9g{min-width:0;box-sizing:border-box;padding:calc(var(--Grid-rowSpacing) / 2) calc(var(--Grid-columnSpacing) / 2);border:1px solid;border-color:rgba(0, 0, 0, 0.23);border-radius:8px;-webkit-align-content:center;-ms-flex-line-pack:center;align-content:center;text-align:center;background-color:white;}@media (min-width:600px){.css-1prgr9g{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto;width:calc(100% * 5.5 / var(--Grid-columns));}}</style><div class="MuiGrid2-root MuiGrid2-direction-xs-row MuiGrid2-grid-sm-5.5 css-1prgr9g"><style data-emotion="css uqrexh">.css-uqrexh{margin:0;font-size:0.9rem;font-weight:400;line-height:1.6;font-family:'DM Sans',Inter,sans-serif;}</style><h6 class="MuiTypography-root MuiTypography-h6 css-uqrexh">Nº chunks: <br/> <!-- -->2<!-- --> </h6></div><style data-emotion="css pk5yqf">.css-pk5yqf{min-width:0;box-sizing:border-box;padding:calc(var(--Grid-rowSpacing) / 2) calc(var(--Grid-columnSpacing) / 2);margin-left:8px;border:1px solid;border-color:rgba(0, 0, 0, 0.23);border-radius:8px;-webkit-align-content:center;-ms-flex-line-pack:center;align-content:center;text-align:center;background-color:white;}@media (min-width:600px){.css-pk5yqf{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto;width:calc(100% * 5.5 / var(--Grid-columns));}}</style><div class="MuiGrid2-root MuiGrid2-direction-xs-row MuiGrid2-grid-sm-5.5 css-pk5yqf"><style data-emotion="css uqrexh">.css-uqrexh{margin:0;font-size:0.9rem;font-weight:400;line-height:1.6;font-family:'DM Sans',Inter,sans-serif;}</style><h6 class="MuiTypography-root MuiTypography-h6 css-uqrexh">Nº Doc: <br/>1</h6></div></div><style data-emotion="css hvucj6">.css-hvucj6{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;padding:16px;margin-bottom:16px;}</style><div class="MuiBox-root css-hvucj6" style="border:1px solid #ccc;overflow:hidden;overflow-y:scroll;border-radius:8px;background-color:rgba(237, 232, 208, 0.35);height:60%"></div><style data-emotion="css hvucj6">.css-hvucj6{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;padding:16px;margin-bottom:16px;}</style><div class="MuiBox-root css-hvucj6" style="border:1px solid #ccc;overflow:hidden;overflow-y:scroll;border-radius:8px;background-color:rgba(237, 232, 208, 0.35);height:40%"></div><style data-emotion="css 1iim22x">.css-1iim22x{--Grid-columns:12;--Grid-columnSpacing:0px;--Grid-rowSpacing:0px;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;min-width:0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:calc(var(--Grid-rowSpacing) / -2) calc(var(--Grid-columnSpacing) / -2);border:1px solid;border-color:rgba(0, 0, 0, 0.23);border-radius:8px;padding:8px;background-color:rgba(237, 232, 208, 0.35);}</style><div class="MuiGrid2-root MuiGrid2-container MuiGrid2-direction-xs-row css-1iim22x"><style data-emotion="css dog4p7">.css-dog4p7{font-family:'DM Sans',Inter,sans-serif;font-weight:500;font-size:0.875rem;line-height:1.75;text-transform:uppercase;min-width:64px;padding:6px 16px;border:0;border-radius:4px;-webkit-transition:background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;padding:6px 8px;color:var(--variant-textColor);background-color:var(--variant-textBg);--variant-textColor:#EDE8D0;--variant-outlinedColor:#EDE8D0;--variant-outlinedBorder:rgba(237, 232, 208, 0.5);--variant-containedColor:rgba(0, 0, 0, 0.87);--variant-containedBg:#EDE8D0;width:100%;text-transform:none;}.css-dog4p7:hover{-webkit-text-decoration:none;text-decoration:none;}.css-dog4p7.Mui-disabled{color:rgba(0, 0, 0, 0.26);}@media (hover: hover){.css-dog4p7:hover{--variant-containedBg:rgb(165, 162, 145);--variant-textBg:rgba(237, 232, 208, 0.04);--variant-outlinedBorder:#EDE8D0;--variant-outlinedBg:rgba(237, 232, 208, 0.04);}}</style><style data-emotion="css 4rbmtr">.css-4rbmtr{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;position:relative;box-sizing:border-box;-webkit-tap-highlight-color:transparent;background-color:transparent;outline:0;border:0;margin:0;border-radius:0;padding:0;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;-moz-appearance:none;-webkit-appearance:none;-webkit-text-decoration:none;text-decoration:none;color:inherit;font-family:'DM Sans',Inter,sans-serif;font-weight:500;font-size:0.875rem;line-height:1.75;text-transform:uppercase;min-width:64px;padding:6px 16px;border:0;border-radius:4px;-webkit-transition:background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;padding:6px 8px;color:var(--variant-textColor);background-color:var(--variant-textBg);--variant-textColor:#EDE8D0;--variant-outlinedColor:#EDE8D0;--variant-outlinedBorder:rgba(237, 232, 208, 0.5);--variant-containedColor:rgba(0, 0, 0, 0.87);--variant-containedBg:#EDE8D0;width:100%;text-transform:none;}.css-4rbmtr::-moz-focus-inner{border-style:none;}.css-4rbmtr.Mui-disabled{pointer-events:none;cursor:default;}@media print{.css-4rbmtr{-webkit-print-color-adjust:exact;color-adjust:exact;}}.css-4rbmtr:hover{-webkit-text-decoration:none;text-decoration:none;}.css-4rbmtr.Mui-disabled{color:rgba(0, 0, 0, 0.26);}@media (hover: hover){.css-4rbmtr:hover{--variant-containedBg:rgb(165, 162, 145);--variant-textBg:rgba(237, 232, 208, 0.04);--variant-outlinedBorder:#EDE8D0;--variant-outlinedBg:rgba(237, 232, 208, 0.04);}}</style><button class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-colorPrimary MuiButton-fullWidth MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-sizeMedium MuiButton-textSizeMedium MuiButton-colorPrimary MuiButton-fullWidth css-4rbmtr" tabindex="0" type="button"><style data-emotion="css o0ock3">.css-o0ock3{--Grid-columns:12;--Grid-columnSpacing:0px;--Grid-rowSpacing:0px;-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto;width:calc(100% * 12 / var(--Grid-columns));-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;min-width:0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:calc(var(--Grid-rowSpacing) / -2) calc(var(--Grid-columnSpacing) / -2);-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;border:1px solid;border-color:rgba(0, 0, 0, 0.12);border-radius:4px;padding:8px;background-color:white;}</style><div class="MuiGrid2-root MuiGrid2-container MuiGrid2-direction-xs-row MuiGrid2-grid-xs-12 css-o0ock3"><input type="file" style="display:none" accept=".pdf"/><style data-emotion="css 124fws5">.css-124fws5{min-width:0;box-sizing:border-box;padding:calc(var(--Grid-rowSpacing) / 2) calc(var(--Grid-columnSpacing) / 2);}</style><div class="MuiGrid2-root MuiGrid2-direction-xs-row css-124fws5"><style data-emotion="css 53qohs">.css-53qohs{margin:0;font-size:0.9rem;font-weight:400;line-height:1.6;font-family:'DM Sans',Inter,sans-serif;color:black;}</style><h6 class="MuiTypography-root MuiTypography-h6 css-53qohs">Upload File</h6></div><style data-emotion="css 1xyyh3n">.css-1xyyh3n{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:1em;height:1em;display:inline-block;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-transition:fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;fill:currentColor;font-size:1.5rem;color:black;}</style><svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1xyyh3n" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="FileUploadIcon"><path d="M9 16h6v-6h4l-7-7-7 7h4zm-4 2h14v2H5z"></path></svg></div></button></div></div><div class="MuiGrid2-root MuiGrid2-direction-xs-row MuiGrid2-grid-xs-12 MuiGrid2-grid-sm-5 css-z7veqk" style="display:flex;flex-direction:column;height:100%"><style data-emotion="css k17f51">.css-k17f51{--Grid-columns:12;--Grid-columnSpacing:0px;--Grid-rowSpacing:0px;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;min-width:0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:calc(var(--Grid-rowSpacing) / -2) calc(var(--Grid-columnSpacing) / -2);border:1px solid;border-color:rgba(0, 0, 0, 0.23);border-radius:8px;margin-bottom:16px;padding:9.6px;background-color:rgba(237, 232, 208, 0.35);}</style><div class="MuiGrid2-root MuiGrid2-container MuiGrid2-direction-xs-row css-k17f51"><style data-emotion="css a616wi">.css-a616wi{min-width:0;box-sizing:border-box;padding:calc(var(--Grid-rowSpacing) / 2) calc(var(--Grid-columnSpacing) / 2);margin-left:8px;padding:9.6px;border:1px solid;border-color:rgba(0, 0, 0, 0.23);border-radius:8px;-webkit-align-content:center;-ms-flex-line-pack:center;align-content:center;text-align:center;background-color:white;}@media (min-width:600px){.css-a616wi{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto;width:calc(100% * 5 / var(--Grid-columns));}}</style><div class="MuiGrid2-root MuiGrid2-direction-xs-row MuiGrid2-grid-sm-5 css-a616wi"><style data-emotion="css 1dzk2p6">.css-1dzk2p6{margin:0;font-size:1rem;font-weight:400;line-height:1.6;font-family:'DM Sans',Inter,sans-serif;}</style><h5 class="MuiTypography-root MuiTypography-h5 css-1dzk2p6">Nº chunks: <br/> <!-- --> </h5></div><style data-emotion="css 1xbwy1j">.css-1xbwy1j{min-width:0;box-sizing:border-box;padding:calc(var(--Grid-rowSpacing) / 2) calc(var(--Grid-columnSpacing) / 2);margin-left:80px;padding:9.6px;border:1px solid;border-color:rgba(0, 0, 0, 0.23);border-radius:8px;-webkit-align-content:center;-ms-flex-line-pack:center;align-content:center;text-align:center;background-color:white;}@media (min-width:600px){.css-1xbwy1j{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-basis:auto;-ms-flex-preferred-size:auto;flex-basis:auto;width:calc(100% * 5 / var(--Grid-columns));}}</style><div class="MuiGrid2-root MuiGrid2-direction-xs-row MuiGrid2-grid-sm-5 css-1xbwy1j"><style data-emotion="css 1dzk2p6">.css-1dzk2p6{margin:0;font-size:1rem;font-weight:400;line-height:1.6;font-family:'DM Sans',Inter,sans-serif;}</style><h5 class="MuiTypography-root MuiTypography-h5 css-1dzk2p6">Nº tokens: <br/> <!-- --> </h5></div></div><style data-emotion="css z8khg1">.css-z8khg1{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;padding:16px;}</style><div class="MuiBox-root css-z8khg1" style="border:1px solid #ccc;overflow:hidden;overflow-y:scroll;border-radius:8px;background-color:rgba(237, 232, 208, 0.35);height:50%"></div></div></div><script src="/_next/static/chunks/webpack-17abec1bd4bca978.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:I[5751,[],\"\"]\n3:I[6513,[],\"ClientPageRoot\"]\n4:I[9471,[\"324\",\"static/chunks/324-5c86793bec652c55.js\",\"931\",\"static/chunks/app/page-10e8a35fca12752e.js\"],\"default\"]\n5:I[9275,[],\"\"]\n6:I[1343,[],\"\"]\n8:I[6130,[],\"\"]\n9:[]\n0:[null,[\"$\",\"$L1\",null,{\"buildId\":\"8pPextYjcRlStoVtEQkF_\",\"assetPrefix\":\"\",\"initialCanonicalUrl\":\"/\",\"initialTree\":[\"\",{\"children\":[\"__PAGE__\",{}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"__PAGE__\",{},[[\"$L2\",[\"$\",\"$L3\",null,{\"props\":{\"params\":{},\"searchParams\":{}},\"Component\":\"$4\"}]],null],null]},[[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[],\"styles\":null}]}]}],null],null],\"couldBeIntercepted\":false,\"initialHead\":[nul"])</script><script>self.__next_f.push([1,"l,\"$L7\"],\"globalErrorComponent\":\"$8\",\"missingSlots\":\"$W9\"}]]\n"])</script><script>self.__next_f.push([1,"7:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"Next.js\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Generated by Next.js\"}]]\n2:null\n"])</script></body></html>
|
Api/src/out/index.txt
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
2:I[6513,[],"ClientPageRoot"]
|
2 |
+
3:I[9471,["324","static/chunks/324-5c86793bec652c55.js","931","static/chunks/app/page-10e8a35fca12752e.js"],"default"]
|
3 |
+
4:I[9275,[],""]
|
4 |
+
5:I[1343,[],""]
|
5 |
+
0:["8pPextYjcRlStoVtEQkF_",[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],["",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}]],null],null]},[["$","html",null,{"lang":"en","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"styles":null}]}]}],null],null],[null,[null,"$L6"]]]]]
|
6 |
+
6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Next.js"}],["$","meta","3",{"name":"description","content":"Generated by Next.js"}]]
|
7 |
+
1:null
|